/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include bool AstModule::dump(RegistryKey& rKey) { RegistryKey localKey; if ( getNodeType() == NT_root ) { localKey = rKey; }else { if (rKey.createKey( OStringToOUString(getFullName(), RTL_TEXTENCODING_UTF8 ), localKey) != RegError::NO_ERROR) { fprintf(stderr, "%s: warning, could not create key '%s' in '%s'\n", idlc()->getOptions()->getProgramName().getStr(), getFullName().getStr(), OUStringToOString(rKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr()); return false; } } sal_uInt16 nConst = getNodeCount(NT_const); if ( nConst > 0 ) { RTTypeClass typeClass = RT_TYPE_MODULE; if ( getNodeType() == NT_constants ) typeClass = RT_TYPE_CONSTANTS; typereg::Writer aBlob( m_bPublished ? TYPEREG_VERSION_1 : TYPEREG_VERSION_0, getDocumentation(), "", typeClass, m_bPublished, OStringToOUString(getRelativName(), RTL_TEXTENCODING_UTF8), 0, nConst, 0, 0); DeclList::const_iterator iter = getIteratorBegin(); DeclList::const_iterator end = getIteratorEnd(); sal_uInt16 index = 0; while ( iter != end ) { AstDeclaration* pDecl = *iter; if ( pDecl->getNodeType() == NT_const && pDecl->isInMainfile() ) { static_cast(pDecl)->dumpBlob( aBlob, index++, getNodeType() == NT_module && pDecl->isPublished()); } ++iter; } sal_uInt32 aBlobSize; void const * pBlob = aBlob.getBlob(&aBlobSize); if (localKey.setValue("", RegValueType::BINARY, const_cast(pBlob), aBlobSize) != RegError::NO_ERROR) { fprintf(stderr, "%s: warning, could not set value of key \"%s\" in %s\n", idlc()->getOptions()->getProgramName().getStr(), getFullName().getStr(), OUStringToOString(localKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr()); return false; } } else { RTTypeClass typeClass = RT_TYPE_MODULE; if ( getNodeType() == NT_constants ) typeClass = RT_TYPE_CONSTANTS; typereg::Writer aBlob( m_bPublished ? TYPEREG_VERSION_1 : TYPEREG_VERSION_0, getDocumentation(), "", typeClass, m_bPublished, OStringToOUString(getRelativName(), RTL_TEXTENCODING_UTF8), 0, 0, 0, 0); sal_uInt32 aBlobSize; void const * pBlob = aBlob.getBlob(&aBlobSize); if ( getNodeType() != NT_root ) { if (localKey.setValue("", RegValueType::BINARY, const_cast(pBlob), aBlobSize) != RegError::NO_ERROR) { fprintf(stderr, "%s: warning, could not set value of key \"%s\" in %s\n", idlc()->getOptions()->getProgramName().getStr(), getFullName().getStr(), OUStringToOString(localKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr()); return false; } } } if ( getNodeType() == NT_root ) { localKey.releaseKey(); } return AstDeclaration::dump(rKey); } bool AstTypeDef::dump(RegistryKey& rKey) { RegistryKey localKey; if (rKey.createKey( OStringToOUString(getFullName(), RTL_TEXTENCODING_UTF8 ), localKey) != RegError::NO_ERROR) { fprintf(stderr, "%s: warning, could not create key '%s' in '%s'\n", idlc()->getOptions()->getProgramName().getStr(), getFullName().getStr(), OUStringToOString(rKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr()); return false; } typereg::Writer aBlob( m_bPublished ? TYPEREG_VERSION_1 : TYPEREG_VERSION_0, getDocumentation(), "", RT_TYPE_TYPEDEF, m_bPublished, OStringToOUString(getRelativName(), RTL_TEXTENCODING_UTF8), 1, 0, 0, 0); aBlob.setSuperTypeName( 0, OStringToOUString( getBaseType()->getRelativName(), RTL_TEXTENCODING_UTF8)); sal_uInt32 aBlobSize; void const * pBlob = aBlob.getBlob(&aBlobSize); if (localKey.setValue("", RegValueType::BINARY, const_cast(pBlob), aBlobSize) != RegError::NO_ERROR) { fprintf(stderr, "%s: warning, could not set value of key \"%s\" in %s\n", idlc()->getOptions()->getProgramName().getStr(), getFullName().getStr(), OUStringToOString(localKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr()); return false; } return true; } bool AstService::dump(RegistryKey& rKey) { typereg_Version version = m_bPublished ? TYPEREG_VERSION_1 : TYPEREG_VERSION_0; OString superName; sal_uInt16 constructors = 0; sal_uInt16 properties = 0; sal_uInt16 references = 0; for (DeclList::const_iterator i(getIteratorBegin()); i != getIteratorEnd(); ++i) { switch ((*i)->getNodeType()) { case NT_interface: case NT_typedef: version = TYPEREG_VERSION_1; OSL_ASSERT(superName.isEmpty()); superName = (*i)->getRelativName(); break; case NT_operation: OSL_ASSERT(getNodeType() == NT_service); ++constructors; break; case NT_property: OSL_ASSERT(getNodeType() == NT_service); ++properties; break; case NT_service_member: if (getNodeType() == NT_singleton) { OSL_ASSERT(superName.isEmpty()); superName = static_cast(*i)-> getRealService()->getRelativName(); break; } SAL_FALLTHROUGH; case NT_interface_member: case NT_observes: case NT_needs: OSL_ASSERT(getNodeType() == NT_service); ++references; break; default: OSL_ASSERT(false); break; } } OSL_ASSERT(constructors == 0 || !m_defaultConstructor); if (m_defaultConstructor) { constructors = 1; } RegistryKey localKey; if (rKey.createKey( OStringToOUString(getFullName(), RTL_TEXTENCODING_UTF8), localKey) != RegError::NO_ERROR) { fprintf( stderr, "%s: warning, could not create key '%s' in '%s'\n", idlc()->getOptions()->getProgramName().getStr(), getFullName().getStr(), OUStringToOString( rKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr()); return false; } typereg::Writer writer( version, getDocumentation(), "", getNodeType() == NT_singleton ? RT_TYPE_SINGLETON : RT_TYPE_SERVICE, m_bPublished, OStringToOUString(getRelativName(), RTL_TEXTENCODING_UTF8), superName.isEmpty() ? 0 : 1, properties, constructors, references); if (!superName.isEmpty()) { writer.setSuperTypeName( 0, OStringToOUString(superName, RTL_TEXTENCODING_UTF8)); } sal_uInt16 constructorIndex = 0; sal_uInt16 propertyIndex = 0; sal_uInt16 referenceIndex = 0; for (DeclList::const_iterator i(getIteratorBegin()); i != getIteratorEnd(); ++i) { switch ((*i)->getNodeType()) { case NT_operation: static_cast(*i)->dumpBlob(writer, constructorIndex++); break; case NT_property: static_cast(*i)->dumpBlob(writer, propertyIndex++, nullptr); break; case NT_interface_member: { AstInterfaceMember * decl = static_cast(*i); writer.setReferenceData( referenceIndex++, decl->getDocumentation(), RTReferenceType::SUPPORTS, (decl->isOptional() ? RTFieldAccess::OPTIONAL : RTFieldAccess::INVALID), OStringToOUString( decl->getRealInterface()->getRelativName(), RTL_TEXTENCODING_UTF8)); break; } case NT_service_member: if (getNodeType() == NT_service) { AstServiceMember * decl = static_cast(*i); writer.setReferenceData(referenceIndex++, decl->getDocumentation(), RTReferenceType::EXPORTS, (decl->isOptional() ? RTFieldAccess::OPTIONAL : RTFieldAccess::INVALID), OStringToOUString(decl->getRealService()->getRelativName(), RTL_TEXTENCODING_UTF8)); } break; case NT_observes: { AstObserves * decl = static_cast(*i); writer.setReferenceData(referenceIndex++, decl->getDocumentation(), RTReferenceType::OBSERVES, RTFieldAccess::INVALID, OStringToOUString( decl->getRealInterface()->getRelativName(), RTL_TEXTENCODING_UTF8)); break; } case NT_needs: { AstNeeds * decl = static_cast(*i); writer.setReferenceData( referenceIndex++, decl->getDocumentation(), RTReferenceType::NEEDS, RTFieldAccess::INVALID, OStringToOUString( decl->getRealService()->getRelativName(), RTL_TEXTENCODING_UTF8)); break; } default: OSL_ASSERT( (*i)->getNodeType() == NT_interface || (*i)->getNodeType() == NT_typedef); break; } } if (m_defaultConstructor) { writer.setMethodData( constructorIndex++, "", RTMethodMode::TWOWAY, "", "void", 0, 0); } sal_uInt32 size; void const * blob = writer.getBlob(&size); if (localKey.setValue( "", RegValueType::BINARY, const_cast< void * >(blob), size) != RegError::NO_ERROR) { fprintf( stderr, "%s: warning, could not set value of key \"%s\" in %s\n", idlc()->getOptions()->getProgramName().getStr(), getFullName().getStr(), OUStringToOString( localKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr()); return false; } return true; } void AstAttribute::dumpBlob( typereg::Writer & rBlob, sal_uInt16 index, sal_uInt16 * methodIndex) const { RTFieldAccess accessMode = RTFieldAccess::INVALID; if (isReadonly()) { accessMode |= RTFieldAccess::READONLY; } else { accessMode |= RTFieldAccess::READWRITE; } if (isOptional()) { accessMode |= RTFieldAccess::OPTIONAL; } if (isBound()) { accessMode |= RTFieldAccess::BOUND; } if (isMayBeVoid()) { accessMode |= RTFieldAccess::MAYBEVOID; } if (isConstrained()) { accessMode |= RTFieldAccess::CONSTRAINED; } if (isTransient()) { accessMode |= RTFieldAccess::TRANSIENT; } if (isMayBeAmbiguous()) { accessMode |= RTFieldAccess::MAYBEAMBIGUOUS; } if (isMayBeDefault()) { accessMode |= RTFieldAccess::MAYBEDEFAULT; } if (isRemoveable()) { accessMode |= RTFieldAccess::REMOVABLE; } OUString name(OStringToOUString(getLocalName(), RTL_TEXTENCODING_UTF8)); rBlob.setFieldData( index, getDocumentation(), OUString(), accessMode, name, OStringToOUString(m_pType->getRelativName(), RTL_TEXTENCODING_UTF8), RTConstValue()); dumpExceptions( rBlob, m_getDocumentation, m_getExceptions, RTMethodMode::ATTRIBUTE_GET, methodIndex); dumpExceptions( rBlob, m_setDocumentation, m_setExceptions, RTMethodMode::ATTRIBUTE_SET, methodIndex); } void AstAttribute::dumpExceptions( typereg::Writer & writer, OUString const & documentation, DeclList const & exceptions, RTMethodMode flags, sal_uInt16 * methodIndex) const { if (!exceptions.empty()) { OSL_ASSERT(methodIndex != nullptr); sal_uInt16 idx = (*methodIndex)++; // exceptions.size() <= SAL_MAX_UINT16 already checked in // AstInterface::dump: writer.setMethodData( idx, documentation, flags, OStringToOUString(getLocalName(), RTL_TEXTENCODING_UTF8), "void", 0, static_cast< sal_uInt16 >(exceptions.size())); sal_uInt16 exceptionIndex = 0; for (auto const& elem : exceptions) { writer.setMethodExceptionTypeName( idx, exceptionIndex++, OStringToOUString( elem->getRelativName(), RTL_TEXTENCODING_UTF8)); } } } const sal_Char* AstSequence::getRelativName() const { if ( !m_pRelativName ) { m_pRelativName.reset( new OString("[]") ); AstDeclaration const * pType = resolveTypedefs( m_pMemberType ); *m_pRelativName += pType->getRelativName(); } return m_pRelativName->getStr(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ on> LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-12-07 19:50:04 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-12-07 19:51:15 +0100
commitcdfaa521c1ae3d7e579b0a8004ccd4878fa4411d (patch)
tree7183498d178cde85e9ec004ad223ae9493019803 /source/ca-valencia/helpcontent2
parent0369e1b2008d9af7b917a8348bec867d2f9334a0 (diff)
update translations for master/7.5.0 beta1
and force-fix errors using pocheck Change-Id: Icd98b0989374eb876ff12151843b981dc723dba5
Diffstat (limited to 'source/ca-valencia/helpcontent2')
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/guide.po108
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/python.po254
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po2506
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/01.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/02.po170
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po800
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc.po490
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po1906
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/02.po202
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/04.po26
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/guide.po1051
-rw-r--r--source/ca-valencia/helpcontent2/source/text/schart.po22
-rw-r--r--source/ca-valencia/helpcontent2/source/text/schart/01.po270
-rw-r--r--source/ca-valencia/helpcontent2/source/text/schart/02.po34
-rw-r--r--source/ca-valencia/helpcontent2/source/text/schart/04.po14
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdatabase.po416
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw.po364
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw/01.po36
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw/04.po20
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw/guide.po162
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared.po228
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po206
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po2850
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/02.po1318
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/04.po20
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/05.po108
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/07.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/autokorr.po76
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/autopi.po566
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po1458
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/menu.po18
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po654
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress.po448
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/01.po612
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/02.po306
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/04.po20
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/guide.po288
-rw-r--r--source/ca-valencia/helpcontent2/source/text/smath.po140
-rw-r--r--source/ca-valencia/helpcontent2/source/text/smath/01.po422
-rw-r--r--source/ca-valencia/helpcontent2/source/text/smath/04.po14
-rw-r--r--source/ca-valencia/helpcontent2/source/text/smath/guide.po64
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter.po592
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po1742
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/02.po514
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/04.po30
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po1278
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/librelogo.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/menu.po28
49 files changed, 11521 insertions, 11368 deletions
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/guide.po b/source/ca-valencia/helpcontent2/source/text/sbasic/guide.po
index 10fb654c5a9..34f997a53d7 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-07-04 18:04+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/ca_VALENCIA/>\n"
@@ -80,14 +80,14 @@ msgctxt ""
msgid "The API provided by Access2Base is intended to be more concise, intuitive and easy to learn than the standard UNO API (API = Application Programming Interface)."
msgstr "L'API de l'Access2Base està dissenyada per ser més concisa, intuïtiva i fàcil d'aprendre que l'API estàndard de l'UNO (API = interfície de programació d'aplicacions, per les seues sigles en anglés)."
-#. DHfDb
+#. 88c4V
#: access2base.xhp
msgctxt ""
"access2base.xhp\n"
"par_idA2B007\n"
"help.text"
-msgid "<emph>The library is documented online on </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>."
-msgstr "<emph>La biblioteca està documentada al web </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>"
+msgid "<emph>The library is documented online on </emph><link href=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>."
+msgstr "<emph>La biblioteca està documentada al web </emph><link href=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>"
#. fGJgF
#: access2base.xhp
@@ -206,14 +206,14 @@ msgctxt ""
msgid "<bookmark_value>Basic;Calling Python</bookmark_value> <bookmark_value>API;SimpleFileAccess</bookmark_value> <bookmark_value>API;PathSettings</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr "<bookmark_value>Basic;crida a Python</bookmark_value><bookmark_value>API;SimpleFileAccess</bookmark_value><bookmark_value>API;PathSettings</bookmark_value><bookmark_value>API;XScript</bookmark_value>"
-#. 8tB4f
+#. GD9hZ
#: basic_2_python.xhp
msgctxt ""
"basic_2_python.xhp\n"
"hd_id811571848401485\n"
"help.text"
-msgid "<variable id=\"basic2python\"><link href=\"text/sbasic/guide/basic_2_python.xhp\" name=\"Basic Programming Examples\">Calling Python Scripts from Basic</link></variable>"
-msgstr "<variable id=\"basic2python\"><link href=\"text/sbasic/guide/basic_2_python.xhp\" name=\"Exemples de programació en Basic \">Cridar scripts de Python des de Basic</link></variable>"
+msgid "<variable id=\"basic2python\"><link href=\"text/sbasic/guide/basic_2_python.xhp\">Calling Python Scripts from Basic</link></variable>"
+msgstr "<variable id=\"basic2python\"><link href=\"text/sbasic/guide/basic_2_python.xhp\">Cridar scripts de Python des de Basic</link></variable>"
#. P7E4G
#: basic_2_python.xhp
@@ -233,23 +233,23 @@ msgctxt ""
msgid "<literal>ComputerName</literal> identification or <literal>OSName</literal> detection are possible,"
msgstr "la possibilitat d'identificació <literal>ComputerName</literal> i la detecció de l'<literal>OSName</literal>,"
-#. AW7Lr
+#. RW3Yq
#: basic_2_python.xhp
msgctxt ""
"basic_2_python.xhp\n"
"N0434\n"
"help.text"
-msgid "Basic <literal>FileLen()</literal> function and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ucb_1_1SimpleFileAccess.html\" name=\"ucb.SimpleFileAccess\">com.sun.star.ucb.SimpleFileAccess.</link><literal>getSize()</literal> API function exhibit a 2 Gigabytes file size upper limit that Python helps to overcome,"
-msgstr "Les funcions <literal>FileLen()</literal> del Basic i <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ucb_1_1SimpleFileAccess.html\" name=\"ucb.SimpleFileAccess\"> com.sun.star.ucb.SimpleFileAccess.</link><literal>getSize()</literal> de l'API tenen un límit màxim de la mida del fitxer de 2 Gigabytes que es pot superar amb Python,"
+msgid "Basic <literal>FileLen()</literal> function and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ucb_1_1SimpleFileAccess.html\">com.sun.star.ucb.SimpleFileAccess.</link><literal>getSize()</literal> API function exhibit a 2 Gigabytes file size upper limit that Python helps to overcome,"
+msgstr "Les funcions <literal>FileLen()</literal> del Basic i <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ucb_1_1SimpleFileAccess.html\"> com.sun.star.ucb.SimpleFileAccess.</link><literal>getSize()</literal> de l'API tenen un límit màxim de la mida del fitxer de 2 Gigabytes que es pot superar amb Python,"
-#. At8D2
+#. UuEjr
#: basic_2_python.xhp
msgctxt ""
"basic_2_python.xhp\n"
"N0435\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1util_1_1PathSettings.html\" name=\"util.PathSettings\">com.sun.star.util.PathSettings</link> can be normalized,"
-msgstr "Es pot normalitzar <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1util_1_1PathSettings.html\" name=\"util.PathSettings\">com.sun.star.util.PathSettings</link>,"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1util_1_1PathSettings.html\">com.sun.star.util.PathSettings</link> can be normalized,"
+msgstr "Es pot normalitzar <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1util_1_1PathSettings.html\">com.sun.star.util.PathSettings</link>,"
#. CPd9K
#: basic_2_python.xhp
@@ -260,14 +260,14 @@ msgctxt ""
msgid "and many more."
msgstr "entre altres funcionalitats."
-#. JvzSR
+#. FdkpF
#: basic_2_python.xhp
msgctxt ""
"basic_2_python.xhp\n"
"N0437\n"
"help.text"
-msgid "A reasonable exposure to %PRODUCTNAME Basic and to <link href=\"https://api.libreoffice.org/\" name=\"Application Programming Interface\">Application Programming Interface (API)</link> features is recommended prior to perform inter-language calls from Basic to Python, to JavaScript or any other script engine."
-msgstr "És recomanable familiaritzar-se amb les característiques de %PRODUCTNAME Basic i la <link href=\"https://api.libreoffice.org/\" name=\"Application Programming Interface\">interfície de programació d'aplicacions (API)</link> abans de fer crides de Basic a Python, JavaScript o un altre motor de scripts."
+msgid "A reasonable exposure to %PRODUCTNAME Basic and to <link href=\"https://api.libreoffice.org/\">Application Programming Interface (API)</link> features is recommended prior to perform inter-language calls from Basic to Python, to JavaScript or any other script engine."
+msgstr "És recomanable familiaritzar-se amb les característiques de %PRODUCTNAME Basic i la <link href=\"https://api.libreoffice.org/\">interfície de programació d'aplicacions (API)</link> abans de fer crides de Basic a Python, JavaScript o un altre motor de scripts."
#. 4jY8s
#: basic_2_python.xhp
@@ -278,14 +278,14 @@ msgctxt ""
msgid "Retrieving Python Scripts"
msgstr "Recuperació d'scripts Python"
-#. bBTqb
+#. rPSP7
#: basic_2_python.xhp
msgctxt ""
"basic_2_python.xhp\n"
"N0439\n"
"help.text"
-msgid "Python scripts can be personal, shared, or embedded in documents. In order to execute them, %PRODUCTNAME Basic needs to be provided with Python script locations. Locating <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html\" name=\"script.provider.XScript\">com.sun.star.script.provider.XScript</link> interface compliant UNO objects allows the execution of Python scripts:"
-msgstr "Els scripts de Python poden ser independents, compartits o estar incrustats en els documents. Per a executar-los, s'han d'incloure les ubicacions dels scripts de Python en %PRODUCTNAME Basic. Cercar objectes UNO compatibles amb la interfície <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html\" name=\"script.provider.XScript\"> com.sun.star.script.provider.XScript</link> permet que s'executen els scripts de Python:"
+msgid "Python scripts can be personal, shared, or embedded in documents. In order to execute them, %PRODUCTNAME Basic needs to be provided with Python script locations. Locating <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html\">com.sun.star.script.provider.XScript</link> interface compliant UNO objects allows the execution of Python scripts:"
+msgstr "Els scripts de Python poden ser independents, compartits o estar incrustats en els documents. Per a executar-los, s'han d'incloure les ubicacions dels scripts de Python en %PRODUCTNAME Basic. Cercar objectes UNO compatibles amb la interfície <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html\"> com.sun.star.script.provider.XScript</link> permet que s'executen els scripts de Python:"
#. AZwVA
#: basic_2_python.xhp
@@ -674,14 +674,14 @@ msgctxt ""
msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
msgstr "<bookmark_value>Basic;exemples de programació</bookmark_value>"
-#. DdPKY
+#. 9kPoD
#: basic_examples.xhp
msgctxt ""
"basic_examples.xhp\n"
"hd_id471559139063621\n"
"help.text"
-msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
-msgstr "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Exemples de programació en Basic\">Exemples de programació en Basic</link></variable>"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\">Basic Programming Examples</link></variable>"
+msgstr "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\">Exemples de programació en Basic</link></variable>"
#. GKzpN
#: calc_borders.xhp
@@ -692,13 +692,13 @@ msgctxt ""
msgid "Formatting Borders in Calc with Macros"
msgstr ""
-#. gDaEd
+#. RKGKF
#: calc_borders.xhp
msgctxt ""
"calc_borders.xhp\n"
"hd_id461623364876507\n"
"help.text"
-msgid "<variable id=\"title\"><link href=\"text/sbasic/guide/calc_borders.xhp\" name=\"Calc_Borders_h1\">Formatting Borders in Calc with Macros</link></variable>"
+msgid "<variable id=\"title\"><link href=\"text/sbasic/guide/calc_borders.xhp\">Formatting Borders in Calc with Macros</link></variable>"
msgstr ""
#. JyRxe
@@ -773,13 +773,13 @@ msgctxt ""
msgid "<emph>cellAddress</emph> is a string denoting the range to be formatted in the format \"A1\"."
msgstr ""
-#. dfuE6
+#. xpGBx
#: calc_borders.xhp
msgctxt ""
"calc_borders.xhp\n"
"par_id821630538210271\n"
"help.text"
-msgid "<emph>newStyle</emph> is an integer value that corresponds to the border line style (see <link href=\"text/sbasic/guide/calc_borders.xhp#LineStyles_h2\" name=\"LineStyles_link\">Line Styles</link> below)."
+msgid "<emph>newStyle</emph> is an integer value that corresponds to the border line style (see <link href=\"text/sbasic/guide/calc_borders.xhp#LineStyles_h2\">Line Styles</link> below)."
msgstr ""
#. gKaYD
@@ -791,13 +791,13 @@ msgctxt ""
msgid "<emph>newWidth</emph> is an integer value that defines the line width."
msgstr ""
-#. wVnmn
+#. 6Tv9V
#: calc_borders.xhp
msgctxt ""
"calc_borders.xhp\n"
"par_id71630538211142\n"
"help.text"
-msgid "<emph>newColor</emph> is an integer value corresponding to a color defined using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB_link\">RGB</link> function."
+msgid "<emph>newColor</emph> is an integer value corresponding to a color defined using the <link href=\"text/sbasic/shared/03010305.xhp\">RGB</link> function."
msgstr ""
#. 3gYJs
@@ -872,13 +872,13 @@ msgctxt ""
msgid "The code snippet below implements a macro named <literal>myMacro</literal> that calls <literal>formatCellBorder</literal>:"
msgstr ""
-#. zmvzf
+#. 3zyiA
#: calc_borders.xhp
msgctxt ""
"calc_borders.xhp\n"
"par_id261630541889040\n"
"help.text"
-msgid "The Python code presented above uses the <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_link\">ScriptForge library</link> that is available since %PRODUCTNAME 7.2."
+msgid "The Python code presented above uses the <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\">ScriptForge library</link> that is available since %PRODUCTNAME 7.2."
msgstr ""
#. FfECT
@@ -989,13 +989,13 @@ msgctxt ""
msgid "Dash dot dot"
msgstr ""
-#. A9PVK
+#. jTEcr
#: calc_borders.xhp
msgctxt ""
"calc_borders.xhp\n"
"par_id751630539680866\n"
"help.text"
-msgid "Refer to the <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1table_1_1BorderLineStyle.html\" name=\"BorderLineStyle_link\">BorderLineStyle Constant Reference</link> in the LibreOffice API documentation to learn more about line style constants."
+msgid "Refer to the <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1table_1_1BorderLineStyle.html\">BorderLineStyle Constant Reference</link> in the LibreOffice API documentation to learn more about line style constants."
msgstr ""
#. aJTNw
@@ -1061,13 +1061,13 @@ msgctxt ""
msgid "The macro can be implemented in Python as follows:"
msgstr ""
-#. aipfb
+#. cYZYt
#: calc_borders.xhp
msgctxt ""
"calc_borders.xhp\n"
"par_id751630539680102\n"
"help.text"
-msgid "Refer to the <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1table_1_1TableBorder2.html\" name=\"BorderLineStyle_link\">TableBorder2 Struct Reference</link> in the LibreOffice API documentation to learn more about its attributes."
+msgid "Refer to the <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1table_1_1TableBorder2.html\">TableBorder2 Struct Reference</link> in the LibreOffice API documentation to learn more about its attributes."
msgstr ""
#. YLjtF
@@ -1088,14 +1088,14 @@ msgctxt ""
msgid "<bookmark_value>properties; controls in dialog editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialog editor;changing control properties</bookmark_value>"
msgstr "<bookmark_value>propietats; controls de l'editor de diàlegs</bookmark_value><bookmark_value>canvi;propietats dels controls</bookmark_value><bookmark_value>controls;canvi de propietats</bookmark_value><bookmark_value>editor de diàlegs;canvi de les propietats dels controls</bookmark_value>"
-#. NFh5G
+#. tLFhk
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
"hd_id3145786\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=\"Canvi de les propietats dels controls de l'editor de diàlegs\">Canvi de les propietats dels controls de l'editor de diàlegs</link></variable>"
+msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\">Canvi de les propietats dels controls de l'editor de diàlegs</link></variable>"
#. Es8Xy
#: control_properties.xhp
@@ -1133,14 +1133,14 @@ msgctxt ""
msgid "<bookmark_value>dialogs;creating Basic dialogs</bookmark_value>"
msgstr "<bookmark_value>diàlegs;creació de diàlegs amb el Basic</bookmark_value>"
-#. TKtFE
+#. CGEVb
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Creating a Basic Dialog</link></variable>"
-msgstr "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Creating a Basic Dialog\">Creació d'un diàleg amb el Basic</link></variable>"
+msgid "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\">Creating a Basic Dialog</link></variable>"
+msgstr "<variable id=\"create_dialog\"><link href=\"text/sbasic/guide/create_dialog.xhp\">Creació d'un diàleg amb el Basic</link></variable>"
#. xBcR4
#: create_dialog.xhp
@@ -1205,14 +1205,14 @@ msgctxt ""
msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
msgstr "<bookmark_value>controls; creació en l'editor de diàlegs</bookmark_value><bookmark_value>editor de diàlegs;creació de controls</bookmark_value>"
-#. UAc5k
+#. fy7KC
#: insert_control.xhp
msgctxt ""
"insert_control.xhp\n"
"hd_id3149182\n"
"help.text"
-msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creating Controls in the Dialog Editor\">Creating Controls in the Dialog Editor</link></variable>"
-msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\" name=\"Creació de controls amb l'editor de diàlegs\">Creació de controls amb l'editor de diàlegs</link></variable>"
+msgid "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\">Creating Controls in the Dialog Editor</link></variable>"
+msgstr "<variable id=\"insert_control\"><link href=\"text/sbasic/guide/insert_control.xhp\">Creació de controls amb l'editor de diàlegs</link></variable>"
#. rCdw2
#: insert_control.xhp
@@ -1259,13 +1259,13 @@ msgctxt ""
msgid "Reading and Writing values to Ranges"
msgstr ""
-#. 3hH3s
+#. 4icyW
#: read_write_values.xhp
msgctxt ""
"read_write_values.xhp\n"
"hd_id461623364876507\n"
"help.text"
-msgid "<variable id=\"title\"><link href=\"text/sbasic/guide/read_write_values.xhp\" name=\"ReadWriteValues_h1\">Reading and Writing values to Ranges</link></variable>"
+msgid "<variable id=\"title\"><link href=\"text/sbasic/guide/read_write_values.xhp\">Reading and Writing values to Ranges</link></variable>"
msgstr ""
#. ZKUBE
@@ -1610,23 +1610,23 @@ msgctxt ""
msgid "<bookmark_value>programming examples for controls</bookmark_value> <bookmark_value>dialogs;loading (example)</bookmark_value> <bookmark_value>dialogs;displaying (example)</bookmark_value> <bookmark_value>controls;reading or editing properties (example)</bookmark_value> <bookmark_value>list boxes;removing entries from (example)</bookmark_value> <bookmark_value>list boxes;adding entries to (example)</bookmark_value> <bookmark_value>examples; programming controls</bookmark_value> <bookmark_value>dialog editor;programming examples for controls</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr "<bookmark_value>exemples de programmació per a controls</bookmark_value> <bookmark_value>diàlegs;càrrega (exemple)</bookmark_value> <bookmark_value>diàlegs;visualització (exemple)</bookmark_value> <bookmark_value>controls;lectura i edició de les proprietats (exemple)</bookmark_value> <bookmark_value>quadres de llista;supressió d'entrades (exemple)</bookmark_value> <bookmark_value>quadres de llista;addició d'entrades (exemple)</bookmark_value> <bookmark_value>exemples; programació de controls</bookmark_value> <bookmark_value>editor de diàlegs;exemples de programació per a controls</bookmark_value> <bookmark_value>Eines;LoadDialog</bookmark_value>"
-#. XFqTD
+#. 8rpap
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
"hd_id3155338\n"
"help.text"
-msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link> </variable>"
-msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Exemples de programació dels controls de l'editor de diàlegs\">Exemples de programació dels controls de l'editor de diàlegs</link> </variable>"
+msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\">Programming Examples for Controls in the Dialog Editor</link> </variable>"
+msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\">Exemples de programació dels controls de l'editor de diàlegs</link> </variable>"
-#. uFxhk
+#. GwPP9
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
"par_id3153031\n"
"help.text"
-msgid "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog\">dialog</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
-msgstr "Els exemples següents fan referència a un <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"diàleg\">diàleg</link> nou anomenat \"Dialog1\". Utilitzeu les eines que hi ha en el <emph>Quadre d'eines</emph> de l'editor de diàlegs per crear el diàleg i afegiu els controls següents: una <emph>Casella de selecció</emph> anomenada \"Casella de selecció 1\", un <emph>Camp d'etiqueta</emph> anomenat \"Etiqueta 1\", un <emph>Botó</emph> anomenat \"Botó d'ordes 1\" i un <emph>quadre de llista</emph> anomenat \"Quadre de llista 1\"."
+msgid "The following examples are for a new <link href=\"text/sbasic/guide/create_dialog.xhp\">dialog</link> called \"Dialog1\". Use the tools on the <emph>Toolbox</emph> bar in the dialog editor to create the dialog and add the following controls: a <emph>Check Box</emph> called \"CheckBox1\", a <emph>Label Field</emph> called \"Label1\", a <emph>Button</emph> called \"CommandButton1\", and a <emph>List Box</emph> called \"ListBox1\"."
+msgstr "Els exemples següents fan referència a un <link href=\"text/sbasic/guide/create_dialog.xhp\">diàleg</link> nou anomenat \"Dialog1\". Utilitzeu les eines que hi ha en el <emph>Quadre d'eines</emph> de l'editor de diàlegs per crear el diàleg i afegiu els controls següents: una <emph>Casella de selecció</emph> anomenada \"Casella de selecció 1\", un <emph>Camp d'etiqueta</emph> anomenat \"Etiqueta 1\", un <emph>Botó</emph> anomenat \"Botó d'ordes 1\" i un <emph>quadre de llista</emph> anomenat \"Quadre de llista 1\"."
#. bfDTG
#: sample_code.xhp
@@ -1826,14 +1826,14 @@ msgctxt ""
msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr ""
-#. 7KfDE
+#. TArAY
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"hd_id3154140\n"
"help.text"
-msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Basic\">Opening a Dialog With Basic</link></variable>"
-msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Basic\">Obertura d'un diàleg amb el Basic</link></variable>"
+msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\">Opening a Dialog With Basic</link></variable>"
+msgstr "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\">Obertura d'un diàleg amb el Basic</link></variable>"
#. PXLvB
#: show_dialog.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/python.po b/source/ca-valencia/helpcontent2/source/text/sbasic/python.po
index 8c982f7b42d..44d7ac2e162 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/python.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-31 19:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/ca_VALENCIA/>\n"
@@ -33,32 +33,32 @@ msgctxt ""
msgid "<bookmark_value>macros;Python scripts</bookmark_value> <bookmark_value>Python;macros</bookmark_value> <bookmark_value>scripts;Python</bookmark_value>"
msgstr "<bookmark_value>macros;Python scripts</bookmark_value> <bookmark_value>Python;macros</bookmark_value> <bookmark_value>scripts;Python</bookmark_value>"
-#. vAoRU
+#. KSaCr
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<variable id=\"pythonscriptshelp\"><link href=\"text/sbasic/python/main0000.xhp\" name=\"mainpython\">%PRODUCTNAME Python Scripts Help</link></variable>"
-msgstr "<variable id=\"pythonscriptshelp\"><link href=\"text/sbasic/python/main0000.xhp\" name=\"mainpython\">Ajuda dels scripts de Python en el %PRODUCTNAME</link></variable>"
+msgid "<variable id=\"pythonscriptshelp\"><link href=\"text/sbasic/python/main0000.xhp\">%PRODUCTNAME Python Scripts Help</link></variable>"
+msgstr "<variable id=\"pythonscriptshelp\"><link href=\"text/sbasic/python/main0000.xhp\">Ajuda dels scripts de Python en el %PRODUCTNAME</link></variable>"
-#. snE38
+#. nFipH
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"par_id3153894\n"
"help.text"
-msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
-msgstr "El %PRODUCTNAME proporciona una interfície de programació d'aplicacions (API per les seues sigles en anglés) que permet controlar les components del $[officename] amb diversos llenguatges de programació mitjançant l'ús del paquet de desenvolupament de programari (SDK per les seues sigles en anglés) del $[officename]. Per a més informació sobre l'API del $[officename] i el paquet de desenvolupament de programari, visiteu <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">api.libreoffice.org</link>"
+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=\"https://api.libreoffice.org/\">https://api.libreoffice.org</link>"
+msgstr "El %PRODUCTNAME proporciona una interfície de programació d'aplicacions (API per les seues sigles en anglés) que permet controlar les components del $[officename] amb diversos llenguatges de programació mitjançant l'ús del paquet de desenvolupament de programari (SDK per les seues sigles en anglés) del $[officename]. Per a més informació sobre l'API del $[officename] i el paquet de desenvolupament de programari, visiteu <link href=\"https://api.libreoffice.org/\">api.libreoffice.org</link>"
-#. 9EUoJ
+#. yEBNs
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"par_id3147226\n"
"help.text"
-msgid "This help section explains the most common Python script functions for %PRODUCTNAME. For more in-depth information please refer to the <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"wiki.documentfoundation.org PYTHON Guide\">Designing & Developing Python Applications</link> on the Wiki."
-msgstr "Aquesta secció explica les funcions més comuns de l'script Python per al %PRODUCTNAME. Per a obtindre més informació, visiteu <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"wiki.documentfoundation.org PYTHON Guide\">Disseny i desenvolupament d'aplicacions amb Python</link> en el wiki."
+msgid "This help section explains the most common Python script functions for %PRODUCTNAME. For more in-depth information please refer to the <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\">Designing & Developing Python Applications</link> on the Wiki."
+msgstr "Aquesta secció explica les funcions més comuns de l'script Python per al %PRODUCTNAME. Per a obtindre més informació, visiteu <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\">Disseny i desenvolupament d'aplicacions amb Python</link> en el wiki."
#. FjaiD
#: main0000.xhp
@@ -96,31 +96,31 @@ msgctxt ""
msgid "%PRODUCTNAME Python Modules"
msgstr ""
-#. XUBsA
+#. dtVM5
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"par_id21655367848705\n"
"help.text"
-msgid "<link href=\"text/sbasic/python/python_screen.xhp\" name=\"msgbox module\"><literal>msgbox</literal> module</link>"
+msgid "<link href=\"text/sbasic/python/python_screen.xhp\"><literal>msgbox</literal> module</link>"
msgstr ""
-#. 9tiEm
+#. vzq4f
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"par_id801655368030968\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"scriptforge module\"><literal>scriptforge</literal> module</link>"
+msgid "<link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\"><literal>scriptforge</literal> module</link>"
msgstr ""
-#. GBraq
+#. LN2JT
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"par_id12655637848750\n"
"help.text"
-msgid "<link href=\"text/sbasic/python/python_programming.xhp#uno\" name=\"uno module\"><literal>uno</literal> module</link>"
+msgid "<link href=\"text/sbasic/python/python_programming.xhp#uno\"><literal>uno</literal> module</link>"
msgstr ""
#. naZBV
@@ -141,14 +141,14 @@ msgctxt ""
msgid "<bookmark_value>Python;Calling Basic</bookmark_value> <bookmark_value>ParamArray</bookmark_value>"
msgstr "<bookmark_value>Python;Crida bàsica</bookmark_value>·<bookmark_value>ParamArray</bookmark_value>"
-#. rGfKE
+#. GAu3K
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0331\n"
"help.text"
-msgid "<variable id=\"py2ba_h1\"><link href=\"text/sbasic/python/python_2_basic.xhp\" name=\"Calling Basic macros from Python\">Calling Basic Macros from Python</link></variable>"
-msgstr "<variable id=\"py2ba_h1\"><link href=\"text/sbasic/python/python_2_basic.xhp\" name=\"Crida a macros bàsiques des de Python\">Crida a macros bàsiques des de Python</link></variable>"
+msgid "<variable id=\"py2ba_h1\"><link href=\"text/sbasic/python/python_2_basic.xhp\">Calling Basic Macros from Python</link></variable>"
+msgstr "<variable id=\"py2ba_h1\"><link href=\"text/sbasic/python/python_2_basic.xhp\">Crida a macros bàsiques des de Python</link></variable>"
#. XzJcA
#: python_2_basic.xhp
@@ -204,13 +204,13 @@ msgctxt ""
msgid "It is recommended to have knowledge of Python standard modules and %PRODUCTNAME API features prior to perform inter-language calls from Python to Basic, JavaScript or any other script engine."
msgstr "Es recomana tindre coneixement dels mòduls estàndard de Python i de les característiques de l'API de %PRODUCTNAME abans de realitzar crides des de Python al Basic, JavaScript o qualsevol altre motor d'scripts."
-#. Sffwq
+#. raHqP
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0338\n"
"help.text"
-msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME-embedded Basic engine may be absent. Avoid Python-to-%PRODUCTNAME Basic calls in such contexts. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
+msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME-embedded Basic engine may be absent. Avoid Python-to-%PRODUCTNAME Basic calls in such contexts. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\">Setting Up an Integrated IDE for Python</link> for more information."
msgstr ""
#. NcuDF
@@ -222,14 +222,14 @@ msgctxt ""
msgid "Retrieving %PRODUCTNAME Basic Scripts"
msgstr "S'estan recuperant els scripts de %PRODUCTNAME Basic"
-#. yiTqz
+#. yS5os
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0340\n"
"help.text"
-msgid "%PRODUCTNAME Basic macros can be personal, shared, or embedded in documents. In order to execute them, Python run time needs to be provided with Basic macro locations. Implementing the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html\" name=\"XScriptProvider interface\">com.sun.star.script.provider.XScriptProvider</link> interface allows the retrieval of executable scripts:"
-msgstr "Les macros %PRODUCTNAME Basic poden ser personals, compartides, o incrustades en documents. Per tal d'executar-les, cal proporcionar a l'entorn d'execució de Python les ubicacions de les macro de Basic. Implementar la interfície <link href=\"https//api.libreoffice.org/docs/idl/ref/interfacecom11sun11star11script11provider11XScript.html\" name=\"XScriptProvider interface\">com.sun.star.script.provider.XScriptProvider</link> permet la recuperació d'scripts executables"
+msgid "%PRODUCTNAME Basic macros can be personal, shared, or embedded in documents. In order to execute them, Python run time needs to be provided with Basic macro locations. Implementing the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html\">com.sun.star.script.provider.XScriptProvider</link> interface allows the retrieval of executable scripts:"
+msgstr "Les macros %PRODUCTNAME Basic poden ser personals, compartides, o incrustades en documents. Per tal d'executar-les, cal proporcionar a l'entorn d'execució de Python les ubicacions de les macro de Basic. Implementar la interfície <link href=\"https//api.libreoffice.org/docs/idl/ref/interfacecom11sun11star11script11provider11XScript.html\">com.sun.star.script.provider.XScriptProvider</link> permet la recuperació d'scripts executables"
#. w4UAs
#: python_2_basic.xhp
@@ -267,14 +267,14 @@ msgctxt ""
msgid "<bookmark_value>API;script.provider.XScript : Executing Basic scripts</bookmark_value>"
msgstr "<bookmark_value>API;script.provider.XScript Executa scripts Basic</bookmark_value>"
-#. 7BfDh
+#. cHSHW
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0364\n"
"help.text"
-msgid "The %PRODUCTNAME Software Development Kit (SDK) documentation for <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html#a11a551f5a2520f74c5109cd8c9f8c7b7\" name=\"XScript interface\">com.sun.star.script.provider.XScript</link> interface details the calling convention for inter-language calls. Invocation of functions requires three arrays:"
-msgstr "La documentació del Software Development Kit (SDK) del %PRODUCTNAME corresponent a la interfície <link href=\"https//api.libreoffice.org/docs/idl/ref/interfacecom11sun11star11script11provider11XScript.html#a11a551f5a2520f74c5109cd8c9f8c7b7\" name=\"XScript interface\">com.sun.star.script.provider.XScript</link> detalla la convenció de crides entre llenguatges. La invocació de funcions requereix tres matrius:"
+msgid "The %PRODUCTNAME Software Development Kit (SDK) documentation for <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScript.html#a11a551f5a2520f74c5109cd8c9f8c7b7\">com.sun.star.script.provider.XScript</link> interface details the calling convention for inter-language calls. Invocation of functions requires three arrays:"
+msgstr "La documentació del Software Development Kit (SDK) del %PRODUCTNAME corresponent a la interfície <link href=\"https//api.libreoffice.org/docs/idl/ref/interfacecom11sun11star11script11provider11XScript.html#a11a551f5a2520f74c5109cd8c9f8c7b7\">com.sun.star.script.provider.XScript</link> detalla la convenció de crides entre llenguatges. La invocació de funcions requereix tres matrius:"
#. UDhtt
#: python_2_basic.xhp
@@ -321,23 +321,23 @@ msgctxt ""
msgid "Examples of Personal or Shared Scripts"
msgstr "Exemples d'scripts personals o compartits"
-#. nyNGG
+#. Grgdj
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0373\n"
"help.text"
-msgid "Examples in <link href=\"text/sbasic/python/python_screen.xhp\" name=\"Input/Output to Screen\">Input/Output to Screen</link> detail Python to Basic invocation calls. <link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Monitoring Document Events</link> illustrates the usage of *args Python idiom to print a variable number of parameters to <literal>Access2Base</literal> logging console dialog."
-msgstr "Exemples a <link href=\"text/sbasic/python/pythonscreen.xhp\" name=\"Entrada/Eixida a Pantalla\">Entrada/Eixida a Pantalla</link> detall de crides d'invocació Python a Basic. El <link href=\"text/sbasic/python/pythondocumentevents.xhp\" name=\"Monitoratge d'esdeveniments dels documents\">Monitoratge d'esdeveniments dels documents</link> mostra l'ús de *args de Python per imprimir el nombre variable de paràmetres a la consola <literal>Access2Base</literal>."
+msgid "Examples in <link href=\"text/sbasic/python/python_screen.xhp\">Input/Output to Screen</link> detail Python to Basic invocation calls. <link href=\"text/sbasic/python/python_document_events.xhp\">Monitoring Document Events</link> illustrates the usage of *args Python idiom to print a variable number of parameters to <literal>Access2Base</literal> logging console dialog."
+msgstr "Exemples a <link href=\"text/sbasic/python/pythonscreen.xhp\">Entrada/Eixida a Pantalla</link> detall de crides d'invocació Python a Basic. El <link href=\"text/sbasic/python/pythondocumentevents.xhp\">Monitoratge d'esdeveniments dels documents</link> mostra l'ús de *args de Python per imprimir el nombre variable de paràmetres a la consola <literal>Access2Base</literal>."
-#. dt25D
+#. vPub5
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0374\n"
"help.text"
-msgid "At time of development you can interrupt Python script execution using <link href=\"https://berma.pagesperso-orange.fr/index2.html\" name=\"Xray extension\">Xray extension</link> in order to inspect properties and methods of UNO objects. The APSO extension debugger allows object introspection using either Xray either MRI extensions."
-msgstr "En el moment del desenvolupament podeu interrompre l'execució dels scripts en Python utilitzant l' <link href=\"https//berma.pagesperso-orange.fr/index2.html\" name=\"Extensió xray\">Extensió xray</link> per tal d'inspeccionar propietats i mètodes d'objectes UNO. L'extensió APSO per a la depurarció, permet la introspecció d'objectes utilitzant qualsevol de les extensions Xray o MRI."
+msgid "At time of development you can interrupt Python script execution using <link href=\"https://berma.pagesperso-orange.fr/index2.html\">Xray extension</link> in order to inspect properties and methods of UNO objects. The APSO extension debugger allows object introspection using either Xray either MRI extensions."
+msgstr "En el moment del desenvolupament podeu interrompre l'execució dels scripts en Python utilitzant l' <link href=\"https//berma.pagesperso-orange.fr/index2.html\">Extensió xray</link> per tal d'inspeccionar propietats i mètodes d'objectes UNO. L'extensió APSO per a la depurarció, permet la introspecció d'objectes utilitzant qualsevol de les extensions Xray o MRI."
#. F8dF9
#: python_2_basic.xhp
@@ -429,22 +429,22 @@ msgctxt ""
msgid "<bookmark_value>Python;dialogs</bookmark_value> <bookmark_value>dialog box;Python</bookmark_value> <bookmark_value>dialogs;Python</bookmark_value>"
msgstr "<bookmark_value>Python;dialogs</bookmark_value> <bookmark_value>quadre de diàleg;Python</bookmark_value> <bookmark_value>diàlegs;Python</bookmark_value>"
-#. rXdUF
+#. D6egS
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/pythondialogs.xhp\" name=\"commandname\">Obri un diàleg amb Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\">Opening a Dialog with Python</link></variable>"
+msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/pythondialogs.xhp\">Obri un diàleg amb Python</link></variable>"
-#. MZJA9
+#. X8omL
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0337\n"
"help.text"
-msgid "%PRODUCTNAME static dialogs are created with the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog editor\">Dialog editor</link> and are stored in varying places according to their personal (My Macros), shared (Application Macros) or document-embedded nature. In reverse, dynamic dialogs are constructed at runtime, from Basic or Python scripts, or using any other <link href=\"text/shared/guide/scripting.xhp\">%PRODUCTNAME supported language</link> for that matter. Opening static dialogs with Python is illustrated herewith. Exception handling and internationalization are omitted for clarity."
+msgid "%PRODUCTNAME static dialogs are created with the <link href=\"text/sbasic/guide/create_dialog.xhp\">Dialog editor</link> and are stored in varying places according to their personal (My Macros), shared (Application Macros) or document-embedded nature. In reverse, dynamic dialogs are constructed at runtime, from Basic or Python scripts, or using any other <link href=\"text/shared/guide/scripting.xhp\">%PRODUCTNAME supported language</link> for that matter. Opening static dialogs with Python is illustrated herewith. Exception handling and internationalization are omitted for clarity."
msgstr ""
#. AbdfS
@@ -519,13 +519,13 @@ msgctxt ""
msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>API;document.DocumentEvent: Monitoring Document Event</bookmark_value> <bookmark_value>API;document.XDocumentEventBroadcaster: Monitoring Document Event</bookmark_value> <bookmark_value>API;document.XDocumentEventListener: Monitoring Document Event</bookmark_value> <bookmark_value>API;lang.EventObject: Monitoring Document Event</bookmark_value>"
msgstr ""
-#. D6i78
+#. CXFbV
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0527\n"
"help.text"
-msgid "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Listening to Document Events</link></variable>"
+msgid "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\">Listening to Document Events</link></variable>"
msgstr ""
#. 9kSGW
@@ -573,14 +573,14 @@ msgctxt ""
msgid "Import math Python packages before opening a Calc document. Release these packages when the document closes."
msgstr ""
-#. bXprs
+#. MviLj
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0528\n"
"help.text"
-msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">assigning macros to events</link>, one can monitor events raised by %PRODUCTNAME documents. Application Programming Interface (API) broadcasters are responsible for calling event scripts. Unlike listeners that require to define all supported methods, even if unused, document monitors require only two methods next to hooked event scripts."
-msgstr "Al costat de <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigna macros als esdeveniments\">assignar macros als esdeveniments</link>, es poden monitoritzar els esdeveniments llençats pels documents %PRODUCTNAME. Els emissors de la interfície de programació d'aplicacions (API) són responsables de cridar als scripts dels esdeveniments. A diferència dels oients que requereixen definir tots els mètodes suportats, encara que no s'utilitzen, els monitors de documents només requereixen dos mètodes junt amb els scripts dels esdeveniments connectats."
+msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\">assigning macros to events</link>, one can monitor events raised by %PRODUCTNAME documents. Application Programming Interface (API) broadcasters are responsible for calling event scripts. Unlike listeners that require to define all supported methods, even if unused, document monitors require only two methods next to hooked event scripts."
+msgstr "Al costat de <link href=\"text/sbasic/shared/01040000.xhp\">assignar macros als esdeveniments</link>, es poden monitoritzar els esdeveniments llençats pels documents %PRODUCTNAME. Els emissors de la interfície de programació d'aplicacions (API) són responsables de cridar als scripts dels esdeveniments. A diferència dels oients que requereixen definir tots els mètodes suportats, encara que no s'utilitzen, els monitors de documents només requereixen dos mètodes junt amb els scripts dels esdeveniments connectats."
#. 6j5Bu
#: python_document_events.xhp
@@ -897,13 +897,13 @@ msgctxt ""
msgid "Mind the misspelled <literal>documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
msgstr "Observeu l'error que hi ha al mètode <literal>documentEventOccured</literal>, que ha heretat una falta d'ortografia de la interfície de programació d'aplicacions (API, segles en anglés) del %PRODUCTNAME."
-#. qNVD4
+#. notj8
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0648\n"
"help.text"
-msgid "<menuitem>Start application</menuitem> and <menuitem>Close application</menuitem> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
+msgid "<menuitem>Start application</menuitem> and <menuitem>Close application</menuitem> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <menuitem>Open document</menuitem> and <menuitem>Document closed</menuitem> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\">Importing Python Modules</link> for more information."
msgstr ""
#. 8pHCg
@@ -1185,13 +1185,13 @@ msgctxt ""
msgid "adapted from DisplayAvailableEvents() by A. Pitonyak"
msgstr ""
-#. wXN8p
+#. o2YTy
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0747\n"
"help.text"
-msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer\">Alternative Python Script Organizer (APSO)</link> extension is used to render events information on screen."
+msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\">Alternative Python Script Organizer (APSO)</link> extension is used to render events information on screen."
msgstr ""
#. kgY8m
@@ -1230,14 +1230,14 @@ msgctxt ""
msgid "<bookmark_value>Python;examples</bookmark_value> <bookmark_value>Python;platform</bookmark_value> <bookmark_value>Python;session</bookmark_value> <bookmark_value>Python;screen input/output</bookmark_value>"
msgstr ""
-#. 2vmkq
+#. QbiDM
#: python_examples.xhp
msgctxt ""
"python_examples.xhp\n"
"hd_id201901031407\n"
"help.text"
-msgid "<variable id=\"pythonexamples2\"><link href=\"text/sbasic/python/python_examples.xhp\" name=\"python examples\">Python programming examples</link></variable>"
-msgstr "<variable id=\"pythonexamples2\"><link href=\"text/sbasic/python/python_examples.xhp\" name=\"Exemples en Python\">Exemples de programació en Python</link></variable>"
+msgid "<variable id=\"pythonexamples2\"><link href=\"text/sbasic/python/python_examples.xhp\">Python programming examples</link></variable>"
+msgstr "<variable id=\"pythonexamples2\"><link href=\"text/sbasic/python/python_examples.xhp\">Exemples de programació en Python</link></variable>"
#. xkeov
#: python_handler.xhp
@@ -1257,22 +1257,22 @@ msgctxt ""
msgid "<bookmark_value>Basic;Dialog Handler</bookmark_value> <bookmark_value>Python;Dialog Handler</bookmark_value> <bookmark_value>Access2Base;dlgTrace</bookmark_value> <bookmark_value>Access2Base;_DumpToFile</bookmark_value> <bookmark_value>API;DialogProvider2</bookmark_value> <bookmark_value>API;XDialogEventHandler</bookmark_value>"
msgstr ""
-#. MQUtw
+#. 6ADFX
#: python_handler.xhp
msgctxt ""
"python_handler.xhp\n"
"N0665\n"
"help.text"
-msgid "<variable id=\"pythonhandler_h1\"><link href=\"text/sbasic/python/python_handler.xhp\" name=\"Creating a Dialog Handler\">Creating a Dialog Handler</link></variable>"
+msgid "<variable id=\"pythonhandler_h1\"><link href=\"text/sbasic/python/python_handler.xhp\">Creating a Dialog Handler</link></variable>"
msgstr ""
-#. AxGAd
+#. ykPkA
#: python_handler.xhp
msgctxt ""
"python_handler.xhp\n"
"N0666\n"
"help.text"
-msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Assigning macros to events\">assigning macros to events</link> or <link href=\"text/sbasic/basic/python/python_listener\" name=\"creating event listeners\">creating event listeners</link>, one can use dialog handlers, whose principle is to define UNO keywords, or methods, that are mapped to events to watch for. The event handler is responsible for executing methods using the <literal>vnd.sun.star.UNO:<method_name></literal> protocol. Unlike listeners that require to define all supported methods, even if unused, dialog handlers require only two methods on top of intended control hook scripts."
+msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\">assigning macros to events</link> or <link href=\"text/sbasic/basic/python/python_listener\">creating event listeners</link>, one can use dialog handlers, whose principle is to define UNO keywords, or methods, that are mapped to events to watch for. The event handler is responsible for executing methods using the <literal>vnd.sun.star.UNO:<method_name></literal> protocol. Unlike listeners that require to define all supported methods, even if unused, dialog handlers require only two methods on top of intended control hook scripts."
msgstr ""
#. Waa56
@@ -1329,13 +1329,13 @@ msgctxt ""
msgid "Export <literal>Access2Base</literal> <literal>dlgTrace</literal> dialog and import it into <literal>MyLib</literal> application library."
msgstr ""
-#. QKmBa
+#. vFWDG
#: python_handler.xhp
msgctxt ""
"python_handler.xhp\n"
"N0673\n"
"help.text"
-msgid "Inside the control properties pane of the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>, use the Events tab to replace macro assignments by component assignments, and type in the intended method names:"
+msgid "Inside the control properties pane of the <link href=\"text/sbasic/guide/create_dialog.xhp\">Dialog Editor</link>, use the Events tab to replace macro assignments by component assignments, and type in the intended method names:"
msgstr ""
#. qNEVD
@@ -1383,13 +1383,13 @@ msgctxt ""
msgid "Creating the handler"
msgstr ""
-#. nHvEi
+#. BN7Lo
#: python_handler.xhp
msgctxt ""
"python_handler.xhp\n"
"N0679\n"
"help.text"
-msgid "<literal>createDialogWithHandler</literal> method of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1DialogProvider2.html\" name=\"com.sun.star.awt.DialogProvider2\">com.sun.star.awt.DialogProvider2</link> service is used to set the dialog and its handler. The handler is responsible for implementing <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XDialogEventHandler.html\" name=\"com.sun.star.awt.XDialogEventHandler\">com.sun.star.awt.XDialogEventHandler</link> interface."
+msgid "<literal>createDialogWithHandler</literal> method of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1DialogProvider2.html\">com.sun.star.awt.DialogProvider2</link> service is used to set the dialog and its handler. The handler is responsible for implementing <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XDialogEventHandler.html\">com.sun.star.awt.XDialogEventHandler</link> interface."
msgstr ""
#. 2CCEz
@@ -1464,13 +1464,13 @@ msgctxt ""
msgid "As expected, <literal>onOkHasFocus</literal> missing method throws an exception."
msgstr ""
-#. 63rxz
+#. vC7GW
#: python_handler.xhp
msgctxt ""
"python_handler.xhp\n"
"N0741\n"
"help.text"
-msgid "Refer to <link href=\"text/sbasic/python/python_2_basic.xhp\" name=\"Python calls to %PRODUCTNAME Basic\">Python calls to %PRODUCTNAME Basic</link> page for <literal>getBasicScript</literal> routine description and for details about cross-language scripting execution."
+msgid "Refer to <link href=\"text/sbasic/python/python_2_basic.xhp\">Python calls to %PRODUCTNAME Basic</link> page for <literal>getBasicScript</literal> routine description and for details about cross-language scripting execution."
msgstr ""
#. b6xGw
@@ -1536,13 +1536,13 @@ msgctxt ""
msgid "As expected, <literal>onOkHasFocus</literal> missing method throws an exception."
msgstr ""
-#. 4RevF
+#. EX74b
#: python_handler.xhp
msgctxt ""
"python_handler.xhp\n"
"N0505\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">CreateUnoListener Function</link>"
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\">CreateUnoListener Function</link>"
msgstr ""
#. Ur3DA
@@ -1563,13 +1563,13 @@ msgctxt ""
msgid "<bookmark_value>APSO</bookmark_value> <bookmark_value>Alternative Python Scripts Organizer</bookmark_value> <bookmark_value>python;IDE - integrated development environment</bookmark_value> <bookmark_value>python;editor</bookmark_value>"
msgstr ""
-#. cANSA
+#. fzoAS
#: python_ide.xhp
msgctxt ""
"python_ide.xhp\n"
"hd_id151543348965464\n"
"help.text"
-msgid "<variable id=\"pythonideh1\"><link href=\"text/sbasic/python/python_ide.xhp\" name=\"Python IDE Setup\">Setting up an Integrated Development Environment (IDE) for Python</link></variable>"
+msgid "<variable id=\"pythonideh1\"><link href=\"text/sbasic/python/python_ide.xhp\">Setting up an Integrated Development Environment (IDE) for Python</link></variable>"
msgstr ""
#. k7syF
@@ -1581,13 +1581,13 @@ msgctxt ""
msgid "Writing Python macros requires extra configuration steps to set an IDE of choice."
msgstr ""
-#. NGxNi
+#. pYeKm
#: python_ide.xhp
msgctxt ""
"python_ide.xhp\n"
"N0106\n"
"help.text"
-msgid "Unlike Basic language macros development in %PRODUCTNAME, developing Python scripts for %PRODUCTNAME requires to configure an external Integrated Development Environment (IDE). Multiple IDEs are available that range from beginners to advanced Python coders. While using a Python IDE programmers benefit from numerous features such as syntax highlighting, code folding, class browsing, code completion, coding standard enforcement, test driven development, debugging, version control and many more. You can refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"Designing & Developing Python Applications\">Designing & Developing Python Applications</link> on the Wiki for more in-depth information about the setup of a bridge between your IDE and a running instance %PRODUCTNAME."
+msgid "Unlike Basic language macros development in %PRODUCTNAME, developing Python scripts for %PRODUCTNAME requires to configure an external Integrated Development Environment (IDE). Multiple IDEs are available that range from beginners to advanced Python coders. While using a Python IDE programmers benefit from numerous features such as syntax highlighting, code folding, class browsing, code completion, coding standard enforcement, test driven development, debugging, version control and many more. You can refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\">Designing & Developing Python Applications</link> on the Wiki for more in-depth information about the setup of a bridge between your IDE and a running instance %PRODUCTNAME."
msgstr ""
#. u2xio
@@ -1599,13 +1599,13 @@ msgctxt ""
msgid "The APSO Extension"
msgstr "L'extensió APSO"
-#. 4isF2
+#. TZvni
#: python_ide.xhp
msgctxt ""
"python_ide.xhp\n"
"N0104\n"
"help.text"
-msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer (APSO)\">Alternative Python Script Organizer (APSO)</link> extension eases the edition of Python scripts, in particular when embedded in a document. Using APSO you can configure your preferred source code editor, start the integrated Python shell and debug Python scripts. Extensions exist that help inspect arbitrary UNO objects, refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"eDesigning & Developing Python Applications\">Designing & Developing Python Applications</link> for additional details on such extensions."
+msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\">Alternative Python Script Organizer (APSO)</link> extension eases the edition of Python scripts, in particular when embedded in a document. Using APSO you can configure your preferred source code editor, start the integrated Python shell and debug Python scripts. Extensions exist that help inspect arbitrary UNO objects, refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\">Designing & Developing Python Applications</link> for additional details on such extensions."
msgstr ""
#. 5E2EV
@@ -1626,13 +1626,13 @@ msgctxt ""
msgid "<bookmark_value>Python;import</bookmark_value> <bookmark_value>Python;Modules</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
msgstr ""
-#. 5QqdJ
+#. MHcrX
#: python_import.xhp
msgctxt ""
"python_import.xhp\n"
"N0462\n"
"help.text"
-msgid "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Importing Python Modules</link></variable>"
+msgid "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\">Importing Python Modules</link></variable>"
msgstr ""
#. VHAM5
@@ -1959,22 +1959,22 @@ msgctxt ""
msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
-#. Pjc9z
+#. o4QUC
#: python_listener.xhp
msgctxt ""
"python_listener.xhp\n"
"N0386\n"
"help.text"
-msgid "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\" name=\"python listeners\">Creating Event Listeners</link></variable>"
+msgid "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\">Creating Event Listeners</link></variable>"
msgstr ""
-#. DGgrp
+#. S8UHm
#: python_listener.xhp
msgctxt ""
"python_listener.xhp\n"
"N0387\n"
"help.text"
-msgid "Events raised by dialogs, documents, forms or graphical controls can be linked to macros, which is referred to as event-driven programming. The most common method to relate events to macros are the <literal>Events</literal> tab in <menuitem>Tools – Customize</menuitem> menu and the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Create dialog\">Dialog Editor</link> Control properties pane from <menuitem>Tools - Macros – Organise Dialogs...</menuitem> menu."
+msgid "Events raised by dialogs, documents, forms or graphical controls can be linked to macros, which is referred to as event-driven programming. The most common method to relate events to macros are the <literal>Events</literal> tab in <menuitem>Tools – Customize</menuitem> menu and the <link href=\"text/sbasic/guide/create_dialog.xhp\">Dialog Editor</link> Control properties pane from <menuitem>Tools - Macros – Organise Dialogs...</menuitem> menu."
msgstr ""
#. Dd2YW
@@ -2148,31 +2148,31 @@ msgctxt ""
msgid "Other Event Listeners"
msgstr ""
-#. HsXBE
+#. 5CsEJ
#: python_listener.xhp
msgctxt ""
"python_listener.xhp\n"
"N0499\n"
"help.text"
-msgid "Listeners are usually coded along with <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"dialog opening\">dialog opening</link>. Numerous listener approaches are possible such as event handlers for dialogs or event monitors for documents or forms."
+msgid "Listeners are usually coded along with <link href=\"text/sbasic/python/python_dialogs.xhp\">dialog opening</link>. Numerous listener approaches are possible such as event handlers for dialogs or event monitors for documents or forms."
msgstr ""
-#. zKQhy
+#. 2u4dC
#: python_listener.xhp
msgctxt ""
"python_listener.xhp\n"
"N0506\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Events mapping to objects</link>"
+msgid "<link href=\"text/swriter/01/05060700.xhp\">Events mapping to objects</link>"
msgstr ""
-#. Xbxfm
+#. CWePB
#: python_listener.xhp
msgctxt ""
"python_listener.xhp\n"
"N0509\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Form events</link>."
+msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\">Form events</link>."
msgstr ""
#. GC8Ny
@@ -2184,14 +2184,14 @@ msgctxt ""
msgid "Python Scripts Organization"
msgstr "Organització dels scripts en Python"
-#. KKGnc
+#. ENGH2
#: python_locations.xhp
msgctxt ""
"python_locations.xhp\n"
"hd_id391543358231021\n"
"help.text"
-msgid "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\" name=\"command_name\">Python Scripts Organization and Location</link></variable>"
-msgstr "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\" name=\"command_name\">Organització i ubicació dels scripts en Python</link></variable>"
+msgid "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link></variable>"
+msgstr "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\">Organització i ubicació dels scripts en Python</link></variable>"
#. rRufi
#: python_locations.xhp
@@ -2283,13 +2283,13 @@ msgctxt ""
msgid "Python Script Locations"
msgstr "Ubicacions dels scripts en Python"
-#. cmghv
+#. AMBK6
#: python_locations.xhp
msgctxt ""
"python_locations.xhp\n"
"par_id121551089455774\n"
"help.text"
-msgid "Refer to <link href=\"text/sbasic/python/python_session.xhp\" name=\"Getting Session Information\">Getting Session Information</link> in order to get programmatic access to Python script locations."
+msgid "Refer to <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> in order to get programmatic access to Python script locations."
msgstr ""
#. GDrUs
@@ -2436,14 +2436,14 @@ msgctxt ""
msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
-#. uMBGn
+#. drCq4
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
"N0509\n"
"help.text"
-msgid "<variable id=\"pythonplatform\"><link href=\"text/sbasic/python/python_platform.xhp\" name=\"platform01\">Identifying the operating system</link></variable>"
-msgstr "<variable id=\"pythonplatform\"><link href=\"text/sbasic/python/python_platform.xhp\" name=\"platform01\">Identificació del sistema operatiu</link></variable>"
+msgid "<variable id=\"pythonplatform\"><link href=\"text/sbasic/python/python_platform.xhp\">Identifying the operating system</link></variable>"
+msgstr "<variable id=\"pythonplatform\"><link href=\"text/sbasic/python/python_platform.xhp\">Identificació del sistema operatiu</link></variable>"
#. vqduy
#: python_platform.xhp
@@ -2607,22 +2607,22 @@ msgctxt ""
msgid "<bookmark_value>Python;Programming</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;Python</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;getComponentContext</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;getDesktop</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;getDocument</bookmark_value> <bookmark_value>uno.py;getComponentContext</bookmark_value> <bookmark_value>uno.py;getDesktop</bookmark_value> <bookmark_value>uno.py;getDocument</bookmark_value>"
msgstr ""
-#. CU6JS
+#. sZPDY
#: python_programming.xhp
msgctxt ""
"python_programming.xhp\n"
"hd_id691546462755220\n"
"help.text"
-msgid "<variable id=\"pythonprogrammingheading\"><link href=\"text/sbasic/python/python_programming.xhp\" name=\"python programming\">Programming with Python Scripts</link></variable>"
-msgstr "<variable id=\"pythonprogrammingheading\"><link href=\"text/sbasic/python/python_programming.xhp\" name=\"Programació amb el Python\">Programació amb scripts en Python</link></variable>"
+msgid "<variable id=\"pythonprogrammingheading\"><link href=\"text/sbasic/python/python_programming.xhp\">Programming with Python Scripts</link></variable>"
+msgstr "<variable id=\"pythonprogrammingheading\"><link href=\"text/sbasic/python/python_programming.xhp\">Programació amb scripts en Python</link></variable>"
-#. BjiFe
+#. Mc7G4
#: python_programming.xhp
msgctxt ""
"python_programming.xhp\n"
"N0220\n"
"help.text"
-msgid "A Python macro is a function within a .py file, identified as a module. Unlike %PRODUCTNAME Basic and its dozen of <link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects functions or services\">UNO objects functions or services</link>, Python macros use the <literal>XSCRIPTCONTEXT</literal> UNO single object, shared with JavaScript and BeanShell. The <literal>g_exportedScripts</literal> global tuple explicitly lists selectable macros from a module. Python modules hold autonomous code logic, and are independent from one another."
+msgid "A Python macro is a function within a .py file, identified as a module. Unlike %PRODUCTNAME Basic and its dozen of <link href=\"text/sbasic/shared/uno_objects.xhp\">UNO objects functions or services</link>, Python macros use the <literal>XSCRIPTCONTEXT</literal> UNO single object, shared with JavaScript and BeanShell. The <literal>g_exportedScripts</literal> global tuple explicitly lists selectable macros from a module. Python modules hold autonomous code logic, and are independent from one another."
msgstr ""
#. 8Ri8m
@@ -2634,13 +2634,13 @@ msgctxt ""
msgid "XSCRIPTCONTEXT Global Variable"
msgstr "Variable global XSCRIPTCONTEXT"
-#. xnRGE
+#. 8GP6t
#: python_programming.xhp
msgctxt ""
"python_programming.xhp\n"
"N0222\n"
"help.text"
-msgid "Genuine Basic UNO facilities can be inferred from <literal>XSCRIPTCONTEXT</literal> global variable. Refer to %PRODUCTNAME API for a complete <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScriptContext.html\" name=\"description of XSCRIPTCONTEXT\">description of XSCRIPTCONTEXT</link>. <literal>XSCRIPTCONTEXT</literal> methods summarize as:"
+msgid "Genuine Basic UNO facilities can be inferred from <literal>XSCRIPTCONTEXT</literal> global variable. Refer to %PRODUCTNAME API for a complete <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScriptContext.html\">description of XSCRIPTCONTEXT</link>. <literal>XSCRIPTCONTEXT</literal> methods summarize as:"
msgstr ""
#. U6KbS
@@ -2733,22 +2733,22 @@ msgctxt ""
msgid "<literal>XSCRIPTCONTEXT</literal> is not provided to imported modules."
msgstr ""
-#. dURCV
+#. FxPgc
#: python_programming.xhp
msgctxt ""
"python_programming.xhp\n"
"N0241\n"
"help.text"
-msgid "%PRODUCTNAME Basic libraries contain classes, routines and variables, Python modules contain classes, functions and variables. Common pieces of reusable Python or UNO features must be stored in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"My macros\">My macros</link> within <literal>(User Profile)/Scripts/python/pythonpath</literal>. Python libraries help organize modules in order to prevent module name collisions. Import <literal>uno.py</literal> inside shared modules."
+msgid "%PRODUCTNAME Basic libraries contain classes, routines and variables, Python modules contain classes, functions and variables. Common pieces of reusable Python or UNO features must be stored in <link href=\"text/sbasic/python/python_locations.xhp\">My macros</link> within <literal>(User Profile)/Scripts/python/pythonpath</literal>. Python libraries help organize modules in order to prevent module name collisions. Import <literal>uno.py</literal> inside shared modules."
msgstr ""
-#. a2xVe
+#. EGdaE
#: python_programming.xhp
msgctxt ""
"python_programming.xhp\n"
"N0242\n"
"help.text"
-msgid "Genuine BASIC UNO facilities can be inferred using <literal>uno.py</literal> module. Use <link href=\"text/sbasic/python/python_shell.xhp\" name=\"Python interactive shell\">Python interactive shell</link> to get a complete module description using <literal>dir()</literal> and <literal>help()</literal> Python commands."
+msgid "Genuine BASIC UNO facilities can be inferred using <literal>uno.py</literal> module. Use <link href=\"text/sbasic/python/python_shell.xhp\">Python interactive shell</link> to get a complete module description using <literal>dir()</literal> and <literal>help()</literal> Python commands."
msgstr ""
#. SsAZa
@@ -2904,22 +2904,22 @@ msgctxt ""
msgid "Basic UNO features"
msgstr "Funcionalitats bàsiques de l'UNO"
-#. 8EWYh
+#. wSBYY
#: python_programming.xhp
msgctxt ""
"python_programming.xhp\n"
"N0284\n"
"help.text"
-msgid "See <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Opening a Dialog</link>"
+msgid "See <link href=\"text/sbasic/python/python_dialogs.xhp\">Opening a Dialog</link>"
msgstr ""
-#. F2cFF
+#. ucBDS
#: python_programming.xhp
msgctxt ""
"python_programming.xhp\n"
"N0286\n"
"help.text"
-msgid "See <link href=\"text/sbasic/python/python_listener.xhp\" name=\"Creating a Listener\">Creating a Listener</link>"
+msgid "See <link href=\"text/sbasic/python/python_listener.xhp\">Creating a Listener</link>"
msgstr ""
#. LNUaK
@@ -2940,13 +2940,13 @@ msgctxt ""
msgid "Importing an embedded Module"
msgstr ""
-#. AngYv
+#. GPRuc
#: python_programming.xhp
msgctxt ""
"python_programming.xhp\n"
"N1298\n"
"help.text"
-msgid "Similarly to %PRODUCTNAME Basic that supports browsing and dynamic loading of libraries, Python libraries can be explored and imported on demand. For more information on library containers, visit <link href=\"https://api.libreoffice.org/\" name=\"API Documentation site\">%PRODUCTNAME Application Programming Interface</link> (API) or download <link href=\"https://www.libreoffice.org/download/download/\" name=\"SDK download page\">%PRODUCTNAME Software Development Kit</link> (SDK)."
+msgid "Similarly to %PRODUCTNAME Basic that supports browsing and dynamic loading of libraries, Python libraries can be explored and imported on demand. For more information on library containers, visit <link href=\"https://api.libreoffice.org/\">%PRODUCTNAME Application Programming Interface</link> (API) or download <link href=\"https://www.libreoffice.org/download/download/\">%PRODUCTNAME Software Development Kit</link> (SDK)."
msgstr ""
#. SEeXV
@@ -3030,13 +3030,13 @@ msgctxt ""
msgid "ui = load_library(\"my_gui\",'screen_io') # add <lib> path + import <module>"
msgstr ""
-#. HFcCm
+#. yjHXX
#: python_programming.xhp
msgctxt ""
"python_programming.xhp\n"
"N0321\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects page\">Basic UNO Objects, Functions and Services</link>"
+msgid "<link href=\"text/sbasic/shared/uno_objects.xhp\">Basic UNO Objects, Functions and Services</link>"
msgstr ""
#. zRBRa
@@ -3057,13 +3057,13 @@ msgctxt ""
msgid "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Print</bookmark_value> <bookmark_value>API;script.provider.MasterScriptProvider: Screen Input/Output</bookmark_value> <bookmark_value>API;script.provider.XScript: Screen Input/Output</bookmark_value>"
msgstr ""
-#. fovpz
+#. aSpmm
#: python_screen.xhp
msgctxt ""
"python_screen.xhp\n"
"N0434\n"
"help.text"
-msgid "<variable id=\"ioscreen\"><link href=\"text/sbasic/python/python_screen.xhp\" name=\"IO to screen\">Input/Output to Screen</link></variable>"
+msgid "<variable id=\"ioscreen\"><link href=\"text/sbasic/python/python_screen.xhp\">Input/Output to Screen</link></variable>"
msgstr ""
#. qCLEs
@@ -3075,13 +3075,13 @@ msgctxt ""
msgid "Python standard output file is not available when running Python macros from <menuitem>Tools – Macros - Run Macro</menuitem>... menu. Presenting the output of a module requires the Python interactive console. Features such as <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> and <literal>str()</literal> are available from the Python shell."
msgstr ""
-#. sqd5d
+#. ftsGT
#: python_screen.xhp
msgctxt ""
"python_screen.xhp\n"
"msgbox_tip\n"
"help.text"
-msgid "%PRODUCTNAME <literal>msgbox</literal> Python module proposes a <literal>msgbox()</literal> method that is illustrated in <link href=\"text/sbasic/python/python_handler.xhp\" name=\"msgbox example\">Creating Event Listeners</link> and <link href=\"text/sbasic/python/python_handler.xhp\" name=\"msgbox_example\">Creating a dialog handler</link> example pages."
+msgid "%PRODUCTNAME <literal>msgbox</literal> Python module proposes a <literal>msgbox()</literal> method that is illustrated in <link href=\"text/sbasic/python/python_handler.xhp\">Creating Event Listeners</link> and <link href=\"text/sbasic/python/python_handler.xhp\">Creating a dialog handler</link> example pages."
msgstr ""
#. aPSDz
@@ -3120,22 +3120,22 @@ msgctxt ""
msgid "Installation:"
msgstr "Instal·lació:"
-#. QDrDk
+#. 6J2px
#: python_screen.xhp
msgctxt ""
"python_screen.xhp\n"
"N0450\n"
"help.text"
-msgid "Copy <literal>screen_io</literal> Python module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> within <UserProfile>/Scripts/python/pythonpath,"
+msgid "Copy <literal>screen_io</literal> Python module in <link href=\"text/sbasic/python/python_locations.xhp\">My macros</link> within <UserProfile>/Scripts/python/pythonpath,"
msgstr ""
-#. bckjW
+#. g98C5
#: python_screen.xhp
msgctxt ""
"python_screen.xhp\n"
"N0451\n"
"help.text"
-msgid "Copy <literal>uiScripts</literal> Basic module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> Standard Basic library,"
+msgid "Copy <literal>uiScripts</literal> Basic module in <link href=\"text/sbasic/python/python_locations.xhp\">My macros</link> Standard Basic library,"
msgstr ""
#. XAthB
@@ -3183,13 +3183,13 @@ msgctxt ""
msgid "\"\"\"Outputs the specified strings or numeric expressions in a dialog box.\"\"\""
msgstr ""
-#. qTYPW
+#. L833Z
#: python_screen.xhp
msgctxt ""
"python_screen.xhp\n"
"par_id161655364816553\n"
"help.text"
-msgid "<literal>MsgBox</literal> and <literal>InputBox</literal> methods from the <link href=\"text/sbasic/shared/03/sf_basic.xhp\" name=\"Basic service\">Basic service</link> included in <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"scriptforge module\"> the ScriptForge libraries</link> call directly their native Basic counterparts."
+msgid "<literal>MsgBox</literal> and <literal>InputBox</literal> methods from the <link href=\"text/sbasic/shared/03/sf_basic.xhp\">Basic service</link> included in <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\"> the ScriptForge libraries</link> call directly their native Basic counterparts."
msgstr ""
#. EYqxJ
@@ -3201,13 +3201,13 @@ msgctxt ""
msgid "<literal>uiScripts</literal> Basic module"
msgstr "Mòdul <literal>uiScripts</literal> del Basic"
-#. DGYAX
+#. enXba
#: python_screen.xhp
msgctxt ""
"python_screen.xhp\n"
"tip_APSO\n"
"help.text"
-msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"apso\">Alternative Python Script Organizer</link> (APSO) extension offers a msgbox() function out of its <literal>apso_utils</literal> module."
+msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\">Alternative Python Script Organizer</link> (APSO) extension offers a msgbox() function out of its <literal>apso_utils</literal> module."
msgstr ""
#. CGnPe
@@ -3228,13 +3228,13 @@ msgctxt ""
msgid "<bookmark_value>Session;UserName</bookmark_value> <bookmark_value>Session;SharedScripts</bookmark_value> <bookmark_value>Session;SharedPythonScripts</bookmark_value> <bookmark_value>Session;UserProfile</bookmark_value> <bookmark_value>Session;UserScripts</bookmark_value> <bookmark_value>Session;UserPythonScripts</bookmark_value> <bookmark_value>API;PathSubstitution</bookmark_value>"
msgstr ""
-#. EvmoA
+#. qBME3
#: python_session.xhp
msgctxt ""
"python_session.xhp\n"
"N0340\n"
"help.text"
-msgid "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\" name=\"session01\">Getting Session Information</link></variable>"
+msgid "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link></variable>"
msgstr ""
#. nmTjF
@@ -3543,13 +3543,13 @@ msgctxt ""
msgid "<bookmark_value>Python console</bookmark_value> <bookmark_value>Python Interactive Shell</bookmark_value> <bookmark_value>Python;Shell</bookmark_value>"
msgstr ""
-#. PmoqF
+#. 6dAy2
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"N0118\n"
"help.text"
-msgid "<variable id=\"pythonshell1\"><link href=\"text/sbasic/python/python_shell.xhp\" name=\"python shell\">Running Python Interactive Console</link></variable>"
+msgid "<variable id=\"pythonshell1\"><link href=\"text/sbasic/python/python_shell.xhp\">Running Python Interactive Console</link></variable>"
msgstr ""
#. Met9b
@@ -3642,13 +3642,13 @@ msgctxt ""
msgid "Alternative console"
msgstr ""
-#. d8DCA
+#. R53nU
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"par_id81632760673283\n"
"help.text"
-msgid "Use <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\" name=\"APSO extension\">APSO extension</link> console as an alternative:"
+msgid "Use <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-Python\">APSO extension</link> console as an alternative:"
msgstr ""
#. 6h9CS
@@ -3660,11 +3660,11 @@ msgctxt ""
msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0144\"><alt id=\"N0144\">APSO console</alt></image>"
msgstr ""
-#. MxGkV
+#. MRf8v
#: python_shell.xhp
msgctxt ""
"python_shell.xhp\n"
"par_id351633599611244\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link> service"
+msgid "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.xhp\"><literal>ScriptForge.Exception</literal></link> service"
msgstr ""
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
index 3c66e2e1d23..76eeb568f72 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-29 00:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/ca_VALENCIA/>\n"
@@ -26,14 +26,14 @@ msgctxt ""
msgid "$[officename] Basic Glossary"
msgstr "Glossari del $[officename] Basic"
-#. rQALz
+#. tF45H
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"hd_id3145068\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=\"Glossari del $[officename] Basic\">Glossari del $[officename] Basic</link>"
+msgid "<link href=\"text/sbasic/shared/00000002.xhp\">$[officename] Basic Glossary</link>"
+msgstr "<link href=\"text/sbasic/shared/00000002.xhp\">Glossari del $[officename] Basic</link>"
#. jo5hZ
#: 00000002.xhp
@@ -62,14 +62,14 @@ msgctxt ""
msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
msgstr "Per convertir nombres, el $[officename] Basic utilitza la configuració regional del sistema per determinar el tipus de separador decimal i de milers."
-#. NfzqE
+#. ks9tn
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3153092\n"
"help.text"
-msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
-msgstr "El comportament té un efecte tant en la conversió implícita ( 1 + \"2,3\" = 3,3 ) com en la funció <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
+msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the function <link href=\"text/sbasic/shared/03102700.xhp\">IsNumeric</link>."
+msgstr "El comportament té un efecte tant en la conversió implícita ( 1 + \"2,3\" = 3,3 ) com en la funció <link href=\"text/sbasic/shared/03102700.xhp\">IsNumeric</link>."
#. 2zeFJ
#: 00000002.xhp
@@ -80,14 +80,14 @@ msgctxt ""
msgid "Colors"
msgstr "Colors"
-#. ELCNB
+#. rdtxx
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3145366\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 "Al $[officename] Basic, els colors es tracten com a valor enter llarg. El valor de retorn de les consultes de color també és sempre un valor enter llarg. Quan es defineixen les propietats, els colors es poden especificar amb el seu codi RGB que es converteix en un valor enter llarg amb la funció <link href=\"text/sbasic/shared/03010305.xhp\" name=\"funció RGB\">funció RGB</link>."
+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\">RGB function</link>."
+msgstr "Al $[officename] Basic, els colors es tracten com a valor enter llarg. El valor de retorn de les consultes de color també és sempre un valor enter llarg. Quan es defineixen les propietats, els colors es poden especificar amb el seu codi RGB que es converteix en un valor enter llarg amb la funció <link href=\"text/sbasic/shared/03010305.xhp\">funció RGB</link>."
#. mWfzF
#: 00000002.xhp
@@ -557,14 +557,14 @@ msgctxt ""
msgid "<variable id=\"basiclibrarynote\">This library must be loaded before execution. Execute the following statement before running any macro that uses this library:</variable>"
msgstr ""
-#. 8ipLK
+#. R9TFi
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
"par_id051920171018124524\n"
"help.text"
-msgid "This constant, function or object is enabled with the statement <link href=\"text/sbasic/shared/03103350.xhp\" name=\"optionvbasupport\"><literal>Option VBASupport 1</literal></link> placed before the executable program code in a module."
-msgstr "Aquesta constant, funció o objecte s'activa mitjançant l'expressió <link href=\"text/sbasic/shared/03103350.xhp\" name=\"optionvbasupport\"><literal>Option VBASupport 1</literal></link>, col·locada abans del codi executable del programa en un mòdul."
+msgid "This constant, function or object is enabled with the statement <link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link> placed before the executable program code in a module."
+msgstr "Aquesta constant, funció o objecte s'activa mitjançant l'expressió <link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>, col·locada abans del codi executable del programa en un mòdul."
#. DYo4K
#: 00000003.xhp
@@ -647,13 +647,13 @@ msgctxt ""
msgid "This method is only available for <emph>Python</emph> scripts."
msgstr ""
-#. DmRoP
+#. A6VSZ
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
"par_id81621427048241\n"
"help.text"
-msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Link\">APSO (Alternative Script Organizer for Python)</link> extension. In turn APSO requires the presence of %PRODUCTNAME Python scripting framework. If APSO or Python are missing, an error occurs."
+msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\">APSO (Alternative Script Organizer for Python)</link> extension. In turn APSO requires the presence of %PRODUCTNAME Python scripting framework. If APSO or Python are missing, an error occurs."
msgstr ""
#. yJwvF
@@ -665,13 +665,13 @@ msgctxt ""
msgid "This service is fully supported in both Basic and Python languages. All examples are expressed using the Basic programming language and can be easily converted to Python."
msgstr ""
-#. TV2YL
+#. VSTRZ
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
"par_id161599082457466\n"
"help.text"
-msgid "<variable id=\"stringfunctions\"><link href=\"text/sbasic/shared/03120300.xhp\" name=\"string functions\">String functions</link></variable>"
+msgid "<variable id=\"stringfunctions\"><link href=\"text/sbasic/shared/03120300.xhp\">String functions</link></variable>"
msgstr ""
#. CGSvh
@@ -1826,14 +1826,14 @@ msgctxt ""
msgid "Programming with $[officename] Basic"
msgstr "Programació amb el $[officename] Basic"
-#. igduS
+#. X4DGD
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
-msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programació amb el $[officename] Basic \">Programació amb el $[officename] Basic </link></variable>"
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\">Programming with $[officename] Basic </link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\">Programació amb el $[officename] Basic </link></variable>"
#. rPjbv
#: 01000000.xhp
@@ -1862,14 +1862,14 @@ msgctxt ""
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>fonaments</bookmark_value><bookmark_value>subrutines</bookmark_value><bookmark_value>variables;globals i locals</bookmark_value><bookmark_value>mòduls;subrutines i funcions</bookmark_value>"
-#. 8jyfu
+#. vHHET
#: 01010210.xhp
msgctxt ""
"01010210.xhp\n"
"hd_id3154927\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
-msgstr "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Bàsics\">Bàsics</link>"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\">Basics</link>"
+msgstr "<link href=\"text/sbasic/shared/01010210.xhp\">Bàsics</link>"
#. WiqRM
#: 01010210.xhp
@@ -1880,14 +1880,14 @@ msgctxt ""
msgid "This section provides the fundamentals for working with $[officename] Basic."
msgstr "En esta secció es proporcionen els fonaments per treballar amb el $[officename] Basic."
-#. Qa4R2
+#. ZDGbs
#: 01010210.xhp
msgctxt ""
"01010210.xhp\n"
"par_id3147560\n"
"help.text"
-msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
-msgstr "El codi del $[officename] Basic es basa en subrutines i funcions que s'especifiquen entre les seccions <emph>sub...end sub</emph> i <emph>function...end function</emph>. Cada Sub o Funció pot cridar altres Subs i Funcions. Si aneu amb compte d'escriure codi genèric per a una Sub o Funció, probablement podreu reutilitzar-lo en altres programes. Consulteu també <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procediments i funcions\">Procediments i funcions</link>."
+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\">Procedures and Functions</link>."
+msgstr "El codi del $[officename] Basic es basa en subrutines i funcions que s'especifiquen entre les seccions <emph>sub...end sub</emph> i <emph>function...end function</emph>. Cada Sub o Funció pot cridar altres Subs i Funcions. Si aneu amb compte d'escriure codi genèric per a una Sub o Funció, probablement podreu reutilitzar-lo en altres programes. Consulteu també <link href=\"text/sbasic/shared/01020300.xhp\">Procediments i funcions</link>."
#. x5DbE
#: 01010210.xhp
@@ -1988,23 +1988,23 @@ msgctxt ""
msgid "Structuring"
msgstr "Estructura"
-#. XbRBP
+#. JnjvX
#: 01010210.xhp
msgctxt ""
"01010210.xhp\n"
"par_id3153727\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 "Després de separar el programa en procediments i funcions (Subs i Funcions), podeu guardar estos procediments i funcions com a fitxers per reutilitzar-los en altres projectes. El $[officename] Basic admet <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Mòduls i biblioteques\">Mòduls i biblioteques</link>. Les subs i les funcions sempre s'inclouen en mòduls. Podeu definir que els mòduls siguen globals, o bé que formin part d'un document. Es poden combinar diferents mòduls en una biblioteca."
+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\">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 "Després de separar el programa en procediments i funcions (Subs i Funcions), podeu guardar estos procediments i funcions com a fitxers per reutilitzar-los en altres projectes. El $[officename] Basic admet <link href=\"text/sbasic/shared/01020500.xhp\">Mòduls i biblioteques</link>. Les subs i les funcions sempre s'inclouen en mòduls. Podeu definir que els mòduls siguen globals, o bé que formin part d'un document. Es poden combinar diferents mòduls en una biblioteca."
-#. g2VDj
+#. jEXBk
#: 01010210.xhp
msgctxt ""
"01010210.xhp\n"
"par_id3152578\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 "Podeu copiar o moure subs, funcions, mòduls i biblioteques d'un fitxer a un altre mitjançant el diàleg <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macros\">Macros</link>."
+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\">Macro</link> dialog."
+msgstr "Podeu copiar o moure subs, funcions, mòduls i biblioteques d'un fitxer a un altre mitjançant el diàleg <link href=\"text/sbasic/shared/01/06130000.xhp\">Macros</link>."
#. FAmpm
#: 01020000.xhp
@@ -2015,14 +2015,14 @@ msgctxt ""
msgid "Syntax"
msgstr "Sintaxi"
-#. LVCBL
+#. N6B3F
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3148946\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
-msgstr "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Sintaxi\">Sintaxi</link>"
+msgid "<link href=\"text/sbasic/shared/01020000.xhp\">Syntax</link>"
+msgstr "<link href=\"text/sbasic/shared/01020000.xhp\">Sintaxi</link>"
#. 85FmX
#: 01020000.xhp
@@ -2051,14 +2051,14 @@ msgctxt ""
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>literals;date</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;floating point</bookmark_value> <bookmark_value>constants</bookmark_value> <bookmark_value>arrays;declaring</bookmark_value> <bookmark_value>defining;constants</bookmark_value>"
msgstr ""
-#. VAkCC
+#. CHiPM
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"hd_id3149346\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 de variables\">Ús de variables</link>"
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\">Using Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/01020100.xhp\">Ús de variables</link>"
#. invc4
#: 01020100.xhp
@@ -2276,13 +2276,13 @@ msgctxt ""
msgid "' A variable can also be explicitly declared as a Variant"
msgstr ""
-#. uQD9L
+#. EFef2
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id521619551687371\n"
"help.text"
-msgid "The <emph>Variant</emph> type is a special data type that can store any kind of value. To learn more, refer to the section <link href=\"text/sbasic/shared/01020100.xhp#VariantTypeH2\" name=\"Variant Type\">The Variant type</link> below."
+msgid "The <emph>Variant</emph> type is a special data type that can store any kind of value. To learn more, refer to the section <link href=\"text/sbasic/shared/01020100.xhp#VariantTypeH2\">The Variant type</link> below."
msgstr ""
#. RENXG
@@ -2573,14 +2573,14 @@ msgctxt ""
msgid "Date Variables"
msgstr "Variables de data"
-#. GgWky
+#. Nuihs
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id3159116\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 "Les variables de data només poden contindre valors de data i d'hora emmagatzemats en un format intern. Els valors assignats a les variables de data amb <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> o <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> es converteixen automàticament al format intern. Les variables de data es converteixen en números normals mitjançant les funcions <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> o <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>. El format intern permet una comparació dels valors de data/hora calculant la diferència entre dos nombres. Estes variables només es poden declarar amb la paraula clau <emph>Date</emph>."
+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\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\"><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\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\"><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 "Les variables de data només poden contindre valors de data i d'hora emmagatzemats en un format intern. Els valors assignats a les variables de data amb <link href=\"text/sbasic/shared/03030101.xhp\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\"><emph>Timeserial</emph></link> o <link href=\"text/sbasic/shared/03030206.xhp\"><emph>Timevalue</emph></link> es converteixen automàticament al format intern. Les variables de data es converteixen en números normals mitjançant les funcions <link href=\"text/sbasic/shared/03030103.xhp\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\"><emph>Year</emph></link> o <link href=\"text/sbasic/shared/03030201.xhp\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\"><emph>Second</emph></link>. El format intern permet una comparació dels valors de data/hora calculant la diferència entre dos nombres. Estes variables només es poden declarar amb la paraula clau <emph>Date</emph>."
#. RzVub
#: 01020100.xhp
@@ -2672,22 +2672,22 @@ msgctxt ""
msgid "varC = \"abc\" ' Previously undeclared variables are treated as Variants"
msgstr ""
-#. PDFED
+#. qG3EB
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id631619552417343\n"
"help.text"
-msgid "The example below uses the <link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName function\">TypeName function</link> to show how the type of a <emph>Variant</emph> variable changes upon assignment."
+msgid "The example below uses the <link href=\"text/sbasic/shared/03103600.xhp\">TypeName function</link> to show how the type of a <emph>Variant</emph> variable changes upon assignment."
msgstr ""
-#. smtqw
+#. FmCC2
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id141619553442668\n"
"help.text"
-msgid "A <emph>Variant</emph> variable is initialized with the <link href=\"text/sbasic/shared/03040000.xhp#objectconstants\" name=\" object constants\">Empty</link> special data type. You can use the <link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty function\">IsEmpty function</link> to test if a variable is an <emph>Empty Variant</emph>."
+msgid "A <emph>Variant</emph> variable is initialized with the <link href=\"text/sbasic/shared/03040000.xhp#objectconstants\">Empty</link> special data type. You can use the <link href=\"text/sbasic/shared/03102400.xhp\">IsEmpty function</link> to test if a variable is an <emph>Empty Variant</emph>."
msgstr ""
#. aervF
@@ -2744,14 +2744,14 @@ msgctxt ""
msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
msgstr "A les variables <emph>numèriques</emph> se'ls assigna el valor \"0\" tan prompte com es declaren."
-#. XETAf
+#. vpahG
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id3150693\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 "Les <emph>variables de data</emph> tenen assignat el valor 0 internament; equivalent a convertir el valor a \"0\" amb la funció <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> o <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>."
+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\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\"><emph>Second</emph></link> function."
+msgstr "Les <emph>variables de data</emph> tenen assignat el valor 0 internament; equivalent a convertir el valor a \"0\" amb la funció <link href=\"text/sbasic/shared/03030103.xhp\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\"><emph>Year</emph></link> o <link href=\"text/sbasic/shared/03030201.xhp\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\"><emph>Second</emph></link>."
#. WiXVw
#: 01020100.xhp
@@ -3356,31 +3356,31 @@ msgctxt ""
msgid "As with variables, include a type-declaration character after the function name, or the type indicated by <literal>As</literal> and the corresponding data type at the end of the parameter list to define the type of the function or property's return value, for example:"
msgstr ""
-#. t7xWM
+#. 3tb4N
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"N0237\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional keyword\">Optional keyword</link>"
+msgid "<link href=\"text/sbasic/shared/03104100.xhp\">Optional keyword</link>"
msgstr ""
-#. JCc9m
+#. YnkCN
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"N0238\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/property.xhp\" name=\"Property Statement\">Property Statement</link>"
+msgid "<link href=\"text/sbasic/shared/property.xhp\">Property Statement</link>"
msgstr ""
-#. CcJXo
+#. edNax
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"N0239\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement\">Static Statement</link>"
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\">Static Statement</link>"
msgstr ""
#. HrqsB
@@ -3392,14 +3392,14 @@ msgctxt ""
msgid "Libraries, Modules and Dialogs"
msgstr "Biblioteques, mòduls i diàlegs"
-#. 2JnVg
+#. vGB4P
#: 01020500.xhp
msgctxt ""
"01020500.xhp\n"
"hd_id3147317\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=\"Biblioteques, mòduls i diàlegs\">Biblioteques, mòduls i diàlegs</link>"
+msgid "<link href=\"text/sbasic/shared/01020500.xhp\">Libraries, Modules and Dialogs</link>"
+msgstr "<link href=\"text/sbasic/shared/01020500.xhp\">Biblioteques, mòduls i diàlegs</link>"
#. 9f6EM
#: 01020500.xhp
@@ -3500,14 +3500,14 @@ msgctxt ""
msgid "<bookmark_value>Basic IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
msgstr "<bookmark_value>EID del Basic;Entorn integrat de desenvolupament</bookmark_value><bookmark_value>EID;Entorn integrat de desenvolupament</bookmark_value>"
-#. JDDCp
+#. 5X92n
#: 01030000.xhp
msgctxt ""
"01030000.xhp\n"
"hd_id3145090\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=\"Entorn integrat de desenvolupament (EID)\">Entorn integrat de desenvolupament (EID)</link>"
+msgid "<link href=\"text/sbasic/shared/01030000.xhp\">Integrated Development Environment (IDE)</link>"
+msgstr "<link href=\"text/sbasic/shared/01030000.xhp\">Entorn integrat de desenvolupament (EID)</link>"
#. jdrPS
#: 01030000.xhp
@@ -3527,41 +3527,41 @@ msgctxt ""
msgid "IDE Overview"
msgstr "Visió general de l'EID"
-#. CCFLo
+#. KEGor
#: 01030100.xhp
msgctxt ""
"01030100.xhp\n"
"hd_id3147291\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=\"Visió general de l'EID\">Visió general de l'EID</link>"
+msgid "<link href=\"text/sbasic/shared/01030100.xhp\">IDE Overview</link>"
+msgstr "<link href=\"text/sbasic/shared/01030100.xhp\">Visió general de l'EID</link>"
-#. mhzWe
+#. uCsWW
#: 01030100.xhp
msgctxt ""
"01030100.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
-msgstr "La <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Barra d'eines Macros\"><emph>barra d'eines Macros</emph></link> de l'EID proporciona diferents icones per editar i provar els programes."
+msgid "The <link href=\"text/sbasic/shared/main0211.xhp\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
+msgstr "La <link href=\"text/sbasic/shared/main0211.xhp\"><emph>barra d'eines Macros</emph></link> de l'EID proporciona diferents icones per editar i provar els programes."
-#. tG68D
+#. j8XDr
#: 01030100.xhp
msgctxt ""
"01030100.xhp\n"
"par_id3151210\n"
"help.text"
-msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
-msgstr "A la <link href=\"text/sbasic/shared/01030200.xhp\" name=\"finestra Editor\"><emph>finestra Editor</emph></link>, directament a sota de la barra d'eines Macros, podeu editar el codi del programa del Basic. La columna de l'esquerra s'utilitza per definir punts de ruptura al codi del programa."
+msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
+msgstr "A la <link href=\"text/sbasic/shared/01030200.xhp\"><emph>finestra Editor</emph></link>, directament a sota de la barra d'eines Macros, podeu editar el codi del programa del Basic. La columna de l'esquerra s'utilitza per definir punts de ruptura al codi del programa."
-#. YTyba
+#. ekYQq
#: 01030100.xhp
msgctxt ""
"01030100.xhp\n"
"par_id3154686\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 "La <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Observador\"><emph>finestra Observador</emph></link> es troba a sota de la finestra Editor a l'esquerra, i mostra el contingut de les variables o les matrius durant un procés d'un únic pas."
+msgid "The <link href=\"text/sbasic/shared/01050100.xhp\"><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 "La <link href=\"text/sbasic/shared/01050100.xhp\"><emph>finestra Observador</emph></link> es troba a sota de la finestra Editor a l'esquerra, i mostra el contingut de les variables o les matrius durant un procés d'un únic pas."
#. NSnQN
#: 01030100.xhp
@@ -3572,14 +3572,14 @@ msgctxt ""
msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
msgstr "La finestra <emph>Pila de crides</emph> de la dreta proporciona informació sobre la pila de crides de SUBS i de FUNCTIONS quan s'executa un programa."
-#. 6Jo3c
+#. usoXG
#: 01030100.xhp
msgctxt ""
"01030100.xhp\n"
"par_id3147434\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=\"EID del Basic\">EID del Basic</link>"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\">EID del Basic</link>"
#. B22aQ
#: 01030200.xhp
@@ -3599,14 +3599,14 @@ msgctxt ""
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>guardar;codi del Basic</bookmark_value><bookmark_value>càrrega;codi del Basic</bookmark_value><bookmark_value>editor del Basic</bookmark_value><bookmark_value>navegació;en projectes del Basic</bookmark_value><bookmark_value>línies llargues;a l'editor del Basic</bookmark_value><bookmark_value>línies de text;a l'editor del Basic</bookmark_value><bookmark_value>continuació;línies llargues a l'editor</bookmark_value>"
-#. jdhKC
+#. QV6SA
#: 01030200.xhp
msgctxt ""
"01030200.xhp\n"
"hd_id3147264\n"
"help.text"
-msgid "<variable id=\"thebasiceditorh1\"><link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link></variable>"
-msgstr "<variable id=\"thebasiceditorh1\"><link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">L'editor bàsic</link></variable>"
+msgid "<variable id=\"thebasiceditorh1\"><link href=\"text/sbasic/shared/01030200.xhp\">The Basic Editor</link></variable>"
+msgstr "<variable id=\"thebasiceditorh1\"><link href=\"text/sbasic/shared/01030200.xhp\">L'editor bàsic</link></variable>"
#. dSemx
#: 01030200.xhp
@@ -3788,14 +3788,14 @@ msgctxt ""
msgid "Select the text file containing the source code and click <emph>OK</emph>."
msgstr "Seleccioneu el fitxer de text que conté el codi font i feu clic a <emph>D'acord</emph>."
-#. WasN7
+#. u7UMo
#: 01030200.xhp
msgctxt ""
"01030200.xhp\n"
"par_id3153198\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=\"EID del Basic\">EID del Basic</link>"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\">Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/01050000.xhp\">EID del Basic</link>"
#. oUyP8
#: 01030300.xhp
@@ -4076,13 +4076,13 @@ msgctxt ""
msgid "<emph>Document</emph>: libraries stored in the document container are only available for the document and are accessible only when the document is open. You cannot access macros of a document from another document."
msgstr ""
-#. fP4ya
+#. ZmKf5
#: 01030400.xhp
msgctxt ""
"01030400.xhp\n"
"par_id881574081445896\n"
"help.text"
-msgid "To access macros stored in libraries of <emph>Application Macros</emph> or <emph>My Macros</emph> from another container, including the document container, use the <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link>."
+msgid "To access macros stored in libraries of <emph>Application Macros</emph> or <emph>My Macros</emph> from another container, including the document container, use the <link href=\"text/sbasic/shared/03131900.xhp\">GlobalScope specifier</link>."
msgstr ""
#. bGzjL
@@ -4589,14 +4589,14 @@ msgctxt ""
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>documents; events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value> <bookmark_value>events; in documents</bookmark_value> <bookmark_value>API; XDocumentEventListener</bookmark_value>"
msgstr ""
-#. 7uCwS
+#. zGhet
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"hd_id3147348\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Document Event-Driven Macros</link>"
-msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Documenta les macros generades per esdeveniments</link>"
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\">Document Event-Driven Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/01040000.xhp\">Documenta les macros generades per esdeveniments</link>"
#. LRvA8
#: 01040000.xhp
@@ -5399,13 +5399,13 @@ msgctxt ""
msgid "Click <emph>OK</emph> to close the dialog."
msgstr "Feu clic a <emph>D'acord</emph> per tancar el diàleg."
-#. ruyPz
+#. 95hhB
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id341600162682135\n"
"help.text"
-msgid "In addition to assigning macros to events, one can <link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitor events\">monitor events</link> triggered in %PRODUCTNAME documents."
+msgid "In addition to assigning macros to events, one can <link href=\"text/sbasic/python/python_document_events.xhp\">monitor events</link> triggered in %PRODUCTNAME documents."
msgstr ""
#. XcdRk
@@ -5417,14 +5417,14 @@ msgctxt ""
msgid "$[officename] Basic IDE"
msgstr "EID del $[officename] Basic"
-#. 6zAS7
+#. XA6EG
#: 01050000.xhp
msgctxt ""
"01050000.xhp\n"
"hd_id3154422\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=\"EID del $[officename] Basic\">EID del $[officename] Basic</link></variable>"
+msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\">$[officename] Basic IDE</link></variable>"
+msgstr "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\">EID del $[officename] Basic</link></variable>"
#. YTpwx
#: 01050000.xhp
@@ -5561,14 +5561,14 @@ msgctxt ""
msgid "Modules"
msgstr "Mòduls"
-#. JotdN
+#. 9iQHn
#: 01050000.xhp
msgctxt ""
"01050000.xhp\n"
"par_id3153965\n"
"help.text"
-msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
-msgstr "Obri el diàleg <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Organitzador de macros\"><emph>Organitzador de macros</emph></link>."
+msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\"><emph>Macro Organizer</emph></link> dialog."
+msgstr "Obri el diàleg <link href=\"text/sbasic/shared/01/06130000.xhp\"><emph>Organitzador de macros</emph></link>."
#. EHXTp
#: 01050100.xhp
@@ -5678,14 +5678,14 @@ msgctxt ""
msgid "Call Stack Window (Calls)"
msgstr "Finestra Pila de crides (crides)"
-#. J83GK
+#. VEj9z
#: 01050200.xhp
msgctxt ""
"01050200.xhp\n"
"hd_id3146794\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=\"Finestra Pila de crides (Crides)\">Finestra Pila de crides (Crides)</link>"
+msgid "<link href=\"text/sbasic/shared/01050200.xhp\">Call Stack Window (Calls)</link>"
+msgstr "<link href=\"text/sbasic/shared/01050200.xhp\">Finestra Pila de crides (Crides)</link>"
#. CnvX5
#: 01050200.xhp
@@ -5705,14 +5705,14 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Gestiona els punts de ruptura"
-#. SuyRz
+#. wFspG
#: 01050300.xhp
msgctxt ""
"01050300.xhp\n"
"hd_id3154927\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=\"Gestiona els punts de ruptura\">Gestiona els punts de ruptura</link>"
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\">Manage Breakpoints</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\">Gestiona els punts de ruptura</link>"
#. JksJ4
#: 01050300.xhp
@@ -5831,14 +5831,14 @@ msgctxt ""
msgid "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogs</bookmark_value><bookmark_value>dialogs; properties</bookmark_value>"
msgstr "<bookmark_value>controls; propietats</bookmark_value><bookmark_value>propietats; controls i diàlegs</bookmark_value><bookmark_value>diàlegs; propietats</bookmark_value>"
-#. xdRFW
+#. EmmPi
#: 01170100.xhp
msgctxt ""
"01170100.xhp\n"
"hd_id3153379\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=\"Propietats de control i diàleg\">Propietats de control i diàleg</link>"
+msgid "<link href=\"text/sbasic/shared/01170100.xhp\">Control and Dialog Properties</link>"
+msgstr "<link href=\"text/sbasic/shared/01170100.xhp\">Propietats de control i diàleg</link>"
#. WPmT4
#: 01170100.xhp
@@ -6002,14 +6002,14 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. fqGGQ
+#. YF5rN
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"hd_id3147436\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/sbasic/shared/01170101.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/sbasic/shared/01170101.xhp\">General</link>"
+msgstr "<link href=\"text/sbasic/shared/01170101.xhp\">General</link>"
#. xTQUU
#: 01170101.xhp
@@ -7694,14 +7694,14 @@ msgctxt ""
msgid "Events"
msgstr "Esdeveniments"
-#. EGJFt
+#. ADtA4
#: 01170103.xhp
msgctxt ""
"01170103.xhp\n"
"hd_id3155506\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Esdeveniments\">Esdeveniments</link>"
+msgid "<link href=\"text/sbasic/shared/01170103.xhp\">Events</link>"
+msgstr "<link href=\"text/sbasic/shared/01170103.xhp\">Esdeveniments</link>"
#. 2ZBSR
#: 01170103.xhp
@@ -7973,14 +7973,14 @@ msgctxt ""
msgid "Run-Time Functions"
msgstr "Funcions en temps d'execució"
-#. xaCyL
+#. frD6t
#: 03000000.xhp
msgctxt ""
"03000000.xhp\n"
"hd_id3152895\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=\"Funcions en temps d'execució\">Funcions en temps d'execució</link></variable>"
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\">Run-Time Functions</link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\">Funcions en temps d'execució</link></variable>"
#. Row63
#: 03000000.xhp
@@ -8000,13 +8000,13 @@ msgctxt ""
msgid "Screen I/O Functions"
msgstr "Funcions d'E/S de pantalla"
-#. XKT3p
+#. WzpBN
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
"hd_id3156280\n"
"help.text"
-msgid "<variable id=\"BasicScreenIO\"><link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link></variable>"
+msgid "<variable id=\"BasicScreenIO\"><link href=\"text/sbasic/shared/03010000.xhp\">Screen I/O Functions</link></variable>"
msgstr ""
#. A5xZH
@@ -8027,14 +8027,14 @@ msgctxt ""
msgid "Display Functions"
msgstr "Funcions de visualització"
-#. UBEUG
+#. pAxoi
#: 03010100.xhp
msgctxt ""
"03010100.xhp\n"
"hd_id3151384\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=\"Funcions de visualització\">Funcions de visualització</link>"
+msgid "<link href=\"text/sbasic/shared/03010100.xhp\">Display Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010100.xhp\">Funcions de visualització</link>"
#. pABDY
#: 03010100.xhp
@@ -8297,14 +8297,14 @@ msgctxt ""
msgid "<bookmark_value>MsgBox function</bookmark_value>"
msgstr "<bookmark_value>Funció MsgBox</bookmark_value>"
-#. XBBGv
+#. KymCo
#: 03010102.xhp
msgctxt ""
"03010102.xhp\n"
"hd_id3153379\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function\">MsgBox Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"Funció MsgBox\">Funció MsgBox</link>"
+msgid "<link href=\"text/sbasic/shared/03010102.xhp\">MsgBox Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03010102.xhp\">Funció MsgBox</link>"
#. 27uTq
#: 03010102.xhp
@@ -8477,13 +8477,13 @@ msgctxt ""
msgid "<bookmark_value>Print statement</bookmark_value> <bookmark_value>Print statement; Tab function</bookmark_value> <bookmark_value>Print statement; Spc function</bookmark_value> <bookmark_value>Spc function; in Print statement</bookmark_value> <bookmark_value>Tab function; in Print statement</bookmark_value>"
msgstr ""
-#. ARzns
+#. AuF5o
#: 03010103.xhp
msgctxt ""
"03010103.xhp\n"
"hd_id3147230\n"
"help.text"
-msgid "<variable id=\"Print_h1\"><link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print# Statement\">Print# Statement</link></variable>"
+msgid "<variable id=\"Print_h1\"><link href=\"text/sbasic/shared/03010103.xhp\">Print# Statement</link></variable>"
msgstr ""
#. ZDGAu
@@ -8603,14 +8603,14 @@ msgctxt ""
msgid "Functions for Screen Input"
msgstr "Funcions per a l'entrada en pantalla"
-#. C7uXG
+#. bmrim
#: 03010200.xhp
msgctxt ""
"03010200.xhp\n"
"hd_id3149456\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=\"Funcions d'entrada en pantalla\">Funcions d'entrada en pantalla</link>"
+msgid "<link href=\"text/sbasic/shared/03010200.xhp\">Functions for Screen Input</link>"
+msgstr "<link href=\"text/sbasic/shared/03010200.xhp\">Funcions d'entrada en pantalla</link>"
#. sC5Ui
#: 03010200.xhp
@@ -8639,14 +8639,14 @@ msgctxt ""
msgid "<bookmark_value>InputBox function</bookmark_value>"
msgstr "<bookmark_value>Funció InputBox</bookmark_value>"
-#. dAWUv
+#. nxu6Y
#: 03010201.xhp
msgctxt ""
"03010201.xhp\n"
"hd_id3148932\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function\">InputBox Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"Funció InputBox\">Funció InputBox</link>"
+msgid "<link href=\"text/sbasic/shared/03010201.xhp\">InputBox Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03010201.xhp\">Funció InputBox</link>"
#. S674v
#: 03010201.xhp
@@ -8711,13 +8711,13 @@ msgctxt ""
msgid "<emph>ypostwips</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 %PRODUCTNAME."
msgstr ""
-#. ABQBS
+#. 5EWrw
#: 03010201.xhp
msgctxt ""
"03010201.xhp\n"
"par_id3153897\n"
"help.text"
-msgid "If <literal>xpostwips</literal> and <literal>ypostwips</literal> 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>."
+msgid "If <literal>xpostwips</literal> and <literal>ypostwips</literal> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\">twips</link>."
msgstr ""
#. Mh8Z6
@@ -8756,14 +8756,14 @@ msgctxt ""
msgid "Color Functions"
msgstr "Funcions de color"
-#. 5EtGk
+#. T8VAz
#: 03010300.xhp
msgctxt ""
"03010300.xhp\n"
"hd_id3157896\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=\"Funcions de color\">Funcions de color</link>"
+msgid "<link href=\"text/sbasic/shared/03010300.xhp\">Color Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03010300.xhp\">Funcions de color</link>"
#. RNMp9
#: 03010300.xhp
@@ -8792,14 +8792,14 @@ msgctxt ""
msgid "<bookmark_value>Blue function</bookmark_value>"
msgstr "<bookmark_value>Funció Blue</bookmark_value>"
-#. 8uoQH
+#. gWX6D
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
"hd_id3149180\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function\">Blue Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Funció Blue\">Funció Blue</link>"
+msgid "<link href=\"text/sbasic/shared/03010301.xhp\">Blue Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03010301.xhp\">Funció Blue</link>"
#. G3QmN
#: 03010301.xhp
@@ -8837,13 +8837,13 @@ msgctxt ""
msgid "<emph>Color value</emph>: Long integer expression that specifies any composite color code for which to return the blue component."
msgstr ""
-#. NEqxG
+#. Hmk8k
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
"par_id671639922129017\n"
"help.text"
-msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the function Blue() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\" name=\"linkrgbvba\"><literal>function RGB [VBA]</literal></link> is passed."
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), the function Blue() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\"><literal>function RGB [VBA]</literal></link> is passed."
msgstr ""
#. a3s7N
@@ -8900,14 +8900,14 @@ msgctxt ""
msgid "<bookmark_value>Green function</bookmark_value>"
msgstr "<bookmark_value>Funció Green</bookmark_value>"
-#. 9no7Z
+#. 4m3zF
#: 03010302.xhp
msgctxt ""
"03010302.xhp\n"
"hd_id3148947\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function\">Green Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Funció Green\">Funció Green</link>"
+msgid "<link href=\"text/sbasic/shared/03010302.xhp\">Green Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03010302.xhp\">Funció Green</link>"
#. bmBSR
#: 03010302.xhp
@@ -8999,14 +8999,14 @@ msgctxt ""
msgid "<bookmark_value>Red function</bookmark_value>"
msgstr "<bookmark_value>Funció Red</bookmark_value>"
-#. 3FU4x
+#. 8HYXv
#: 03010303.xhp
msgctxt ""
"03010303.xhp\n"
"hd_id3148947\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function\">Red Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Funció Red\">Funció Red</link>"
+msgid "<link href=\"text/sbasic/shared/03010303.xhp\">Red Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03010303.xhp\">Funció Red</link>"
#. UCdBi
#: 03010303.xhp
@@ -9044,22 +9044,22 @@ msgctxt ""
msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any composite color code for which to return the Red component."
msgstr ""
-#. YDBFF
+#. LGAYK
#: 03010303.xhp
msgctxt ""
"03010303.xhp\n"
"par_id671639922129017\n"
"help.text"
-msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the function Red() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\" name=\"linkrgbvba\"><literal>function RGB [VBA]</literal></link> is passed."
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), the function Red() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\"><literal>function RGB [VBA]</literal></link> is passed."
msgstr ""
-#. iiUNB
+#. upYaQ
#: 03010303.xhp
msgctxt ""
"03010303.xhp\n"
"par_id961588421825749\n"
"help.text"
-msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> details the red, green and blue components of a composite color code, as well as its hexadecimal expression. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgid "The <link href=\"text/shared/optionen/01010501.xhp\">color picker dialog</link> details the red, green and blue components of a composite color code, as well as its hexadecimal expression. <link href=\"text/shared/guide/text_color.xhp\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
msgstr ""
#. 4txDN
@@ -9116,23 +9116,23 @@ msgctxt ""
msgid "<bookmark_value>QBColor function</bookmark_value>"
msgstr "<bookmark_value>funció QBColor</bookmark_value>"
-#. aBL98
+#. dikqG
#: 03010304.xhp
msgctxt ""
"03010304.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function\">QBColor Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function\">Funció QBColor</link>"
+msgid "<link href=\"text/sbasic/shared/03010304.xhp\">QBColor Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03010304.xhp\">Funció QBColor</link>"
-#. yVSAA
+#. 3CXBy
#: 03010304.xhp
msgctxt ""
"03010304.xhp\n"
"par_id3150359\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 "Torna el codi de color <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> del color passat com a valor de color a través d'un sistema de programació anterior basat en l'MS-DOS."
+msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
+msgstr "Torna el codi de color <link href=\"text/sbasic/shared/03010305.xhp\">RGB</link> del color passat com a valor de color a través d'un sistema de programació anterior basat en l'MS-DOS."
#. scoHN
#: 03010304.xhp
@@ -9341,14 +9341,14 @@ msgctxt ""
msgid "<bookmark_value>RGB function</bookmark_value>"
msgstr "<bookmark_value>funció RGB</bookmark_value>"
-#. LaGGq
+#. PHEBe
#: 03010305.xhp
msgctxt ""
"03010305.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function\">RGB Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function\">Funció RGB</link>"
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\">RGB Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03010305.xhp\">Funció RGB</link>"
#. iRBsy
#: 03010305.xhp
@@ -9404,22 +9404,22 @@ msgctxt ""
msgid "The resulting <literal>Long</literal> value is calculated with the following formula:<br/><literal>Result = red×65536 + green×256 + blue</literal>."
msgstr ""
-#. iDgoc
+#. RktBy
#: 03010305.xhp
msgctxt ""
"03010305.xhp\n"
"par_id671639922129017\n"
"help.text"
-msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal><br/>See <link href=\"text/sbasic/shared/03010306.xhp\" name=\"rgbvba\">RGB Function [VBA]</link>"
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal><br/>See <link href=\"text/sbasic/shared/03010306.xhp\">RGB Function [VBA]</link>"
msgstr ""
-#. cFpDD
+#. Fo6ZS
#: 03010305.xhp
msgctxt ""
"03010305.xhp\n"
"par_id211587653651037\n"
"help.text"
-msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> helps computing red, green and blue components of a composite color. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgid "The <link href=\"text/shared/optionen/01010501.xhp\">color picker dialog</link> helps computing red, green and blue components of a composite color. <link href=\"text/shared/guide/text_color.xhp\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
msgstr ""
#. GWhFy
@@ -9476,13 +9476,13 @@ msgctxt ""
msgid "<bookmark_value>RGB function [VBA]</bookmark_value>"
msgstr ""
-#. RSnVb
+#. mBeiz
#: 03010306.xhp
msgctxt ""
"03010306.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function\">RGB Function [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\">RGB Function [VBA]</link>"
msgstr ""
#. ZMjZi
@@ -9494,13 +9494,13 @@ msgctxt ""
msgid "Returns a <literal>Long</literal> integer color value consisting of red, green, and blue components, according to VBA color formula."
msgstr ""
-#. LNVC5
+#. 2XAYm
#: 03010306.xhp
msgctxt ""
"03010306.xhp\n"
"par_id671639922129017\n"
"help.text"
-msgid "Because of the VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal>."
+msgid "Because of the VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal>."
msgstr ""
#. cDKcg
@@ -9521,14 +9521,14 @@ msgctxt ""
msgid "File I/O Functions"
msgstr "Funcions d'E/S de fitxer"
-#. xQYzw
+#. 5tRMn
#: 03020000.xhp
msgctxt ""
"03020000.xhp\n"
"hd_id3156344\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=\"Funcions d'E/S de fitxer\">Funcions d'E/S de fitxer</link>"
+msgid "<link href=\"text/sbasic/shared/03020000.xhp\">File I/O Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020000.xhp\">Funcions d'E/S de fitxer</link>"
#. WhBg4
#: 03020000.xhp
@@ -9557,14 +9557,14 @@ msgctxt ""
msgid "Opening and Closing Files"
msgstr "Obertura i tancament de fitxers"
-#. 8dG9o
+#. mVSiy
#: 03020100.xhp
msgctxt ""
"03020100.xhp\n"
"hd_id3152924\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=\"Obertura i tancament de fitxers\">Obertura i tancament de fitxers</link>"
+msgid "<link href=\"text/sbasic/shared/03020100.xhp\">Opening and Closing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020100.xhp\">Obertura i tancament de fitxers</link>"
#. BHU9A
#: 03020101.xhp
@@ -9584,13 +9584,13 @@ msgctxt ""
msgid "<bookmark_value>Close statement</bookmark_value>"
msgstr "<bookmark_value>expressió Close</bookmark_value>"
-#. GPAtd
+#. 3nJEh
#: 03020101.xhp
msgctxt ""
"03020101.xhp\n"
"hd_id3157896\n"
"help.text"
-msgid "<variable id=\"Close_h1\"><link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement\">Close Statement</link></variable>"
+msgid "<variable id=\"Close_h1\"><link href=\"text/sbasic/shared/03020101.xhp\">Close Statement</link></variable>"
msgstr ""
#. UxFz9
@@ -9647,13 +9647,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>Funció FreeFile</bookmark_value>"
-#. RGVUt
+#. 4GG4w
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9701,13 +9701,13 @@ msgctxt ""
msgid "<bookmark_value>Open statement</bookmark_value>"
msgstr "<bookmark_value>expressió Open</bookmark_value>"
-#. CRFKQ
+#. FjTEo
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"hd_id3150791\n"
"help.text"
-msgid "<variable id=\"Open_h1\"><link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement\">Open Statement</link></variable>"
+msgid "<variable id=\"Open_h1\"><link href=\"text/sbasic/shared/03020103.xhp\">Open Statement</link></variable>"
msgstr ""
#. Etqck
@@ -9926,14 +9926,14 @@ msgctxt ""
msgid "File Input/Output Functions"
msgstr "Funcions d'Entrada/Eixida de fitxer"
-#. uBJKi
+#. S9pL5
#: 03020200.xhp
msgctxt ""
"03020200.xhp\n"
"hd_id3150791\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=\"Funcions d'Entrada/Eixida de fitxer\">Funcions d'Entrada/Eixida de fitxer</link>"
+msgid "<link href=\"text/sbasic/shared/03020200.xhp\">File Input/Output Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03020200.xhp\">Funcions d'Entrada/Eixida de fitxer</link>"
#. HZt2r
#: 03020201.xhp
@@ -9971,14 +9971,14 @@ msgctxt ""
msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
msgstr "Llig un registre d'un fitxer relatiu, o una seqüència de bytes d'un fitxer binari, en una variable."
-#. yCDgR
+#. fbMGA
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3154346\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\">Expressió <item type=\"literal\">PUT</item></link>"
+msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\"><item type=\"literal\">PUT</item></link> Statement"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03020204.xhp\">Expressió <item type=\"literal\">PUT</item></link>"
#. UqKMH
#: 03020201.xhp
@@ -10187,13 +10187,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>expressió Input</bookmark_value>"
-#. 2BhMB
+#. HBjLU
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10313,13 +10313,13 @@ msgctxt ""
msgid "<bookmark_value>Line Input statement</bookmark_value>"
msgstr "<bookmark_value>expressió Line Input</bookmark_value>"
-#. DBAiv
+#. METKX
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"hd_id3153361\n"
"help.text"
-msgid "<variable id=\"LineInput_h1\"><link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input# Statement\">Line Input# Statement</link></variable>"
+msgid "<variable id=\"LineInput_h1\"><link href=\"text/sbasic/shared/03020203.xhp\">Line Input# Statement</link></variable>"
msgstr ""
#. 5FZ8D
@@ -10385,13 +10385,13 @@ msgctxt ""
msgid "<bookmark_value>Put statement</bookmark_value>"
msgstr "<bookmark_value>expressió Put</bookmark_value>"
-#. bD34J
+#. 2kDTi
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"hd_id3150360\n"
"help.text"
-msgid "<variable id=\"Put_h1\"><link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement\">Put# Statement</link></variable>"
+msgid "<variable id=\"Put_h1\"><link href=\"text/sbasic/shared/03020204.xhp\">Put# Statement</link></variable>"
msgstr ""
#. e8rUp
@@ -10502,14 +10502,14 @@ msgctxt ""
msgid "<bookmark_value>Write statement</bookmark_value>"
msgstr "<bookmark_value>expressió Write</bookmark_value>"
-#. xn3Ji
+#. vGy7V
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
"hd_id3147229\n"
"help.text"
-msgid "<variable id=\"Write_h1\"><link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write# Statement\">Write# Statement</link></variable>"
-msgstr "<variable id=\"Write_h1\"><link href=\"text/sbasic/shared/03020205.xhp\" name=\"Expressió Write#\">Expressió Write#</link></variable>"
+msgid "<variable id=\"Write_h1\"><link href=\"text/sbasic/shared/03020205.xhp\">Write# Statement</link></variable>"
+msgstr "<variable id=\"Write_h1\"><link href=\"text/sbasic/shared/03020205.xhp\">Expressió Write#</link></variable>"
#. G4X6k
#: 03020205.xhp
@@ -10619,14 +10619,14 @@ msgctxt ""
msgid "<bookmark_value>Eof function</bookmark_value>"
msgstr "<bookmark_value>Funció Eof</bookmark_value>"
-#. mqFFB
+#. Bm8Bu
#: 03020301.xhp
msgctxt ""
"03020301.xhp\n"
"hd_id3154598\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function\">Eof Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Funció Eof\">Funció Eof</link>"
+msgid "<link href=\"text/sbasic/shared/03020301.xhp\">Eof Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020301.xhp\">Funció Eof</link>"
#. ZBjAi
#: 03020301.xhp
@@ -10691,14 +10691,14 @@ msgctxt ""
msgid "<bookmark_value>Loc function</bookmark_value>"
msgstr "<bookmark_value>Funció Loc</bookmark_value>"
-#. Wf8wH
+#. DypgB
#: 03020302.xhp
msgctxt ""
"03020302.xhp\n"
"hd_id3148663\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function\">Loc Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Funció Loc\">Funció Loc</link>"
+msgid "<link href=\"text/sbasic/shared/03020302.xhp\">Loc Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020302.xhp\">Funció Loc</link>"
#. xBjCr
#: 03020302.xhp
@@ -10790,14 +10790,14 @@ msgctxt ""
msgid "<bookmark_value>Lof function</bookmark_value>"
msgstr "<bookmark_value>Funció Lof</bookmark_value>"
-#. 5diJq
+#. mDAPF
#: 03020303.xhp
msgctxt ""
"03020303.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function\">Lof Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Funció Lof\">Funció Lof</link>"
+msgid "<link href=\"text/sbasic/shared/03020303.xhp\">Lof Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020303.xhp\">Funció Lof</link>"
#. 3PR3T
#: 03020303.xhp
@@ -10826,13 +10826,13 @@ msgctxt ""
msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the <literal>Open</literal> statement."
msgstr ""
-#. EAe7H
+#. kFTvh
#: 03020303.xhp
msgctxt ""
"03020303.xhp\n"
"par_id3147349\n"
"help.text"
-msgid "To obtain the length of a file that is not open, use the <link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen function\"><literal>FileLen</literal></link> function."
+msgid "To obtain the length of a file that is not open, use the <link href=\"text/sbasic/shared/03020408.xhp\"><literal>FileLen</literal></link> function."
msgstr ""
#. AGL3X
@@ -10853,14 +10853,14 @@ msgctxt ""
msgid "<bookmark_value>Seek function</bookmark_value>"
msgstr "<bookmark_value>Funció Seek</bookmark_value>"
-#. XqpLF
+#. NpAfb
#: 03020304.xhp
msgctxt ""
"03020304.xhp\n"
"hd_id3154367\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function\">Seek Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Funció Seek\">Funció Seek</link>"
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\">Seek Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020304.xhp\">Funció Seek</link>"
#. GFYoD
#: 03020304.xhp
@@ -10889,14 +10889,14 @@ msgctxt ""
msgid "For all other files, the function returns the byte position at which the next operation is to occur."
msgstr "Per a la resta de fitxers, la funció torna la posició de bytes en la qual s'ha de produir l'operació següent."
-#. MDLGC
+#. JMgNQ
#: 03020304.xhp
msgctxt ""
"03020304.xhp\n"
"par_id3155854\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 "Vegeu també: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\">Seek</link>."
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03020103.xhp\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\">Seek</link>."
#. CnFrv
#: 03020304.xhp
@@ -10961,13 +10961,13 @@ msgctxt ""
msgid "<bookmark_value>Seek statement</bookmark_value>"
msgstr "<bookmark_value>expressió Seek</bookmark_value>"
-#. 9HcVZ
+#. 8pVA4
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
"hd_id3159413\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek# Statement\">Seek Statement</link>"
+msgid "<link href=\"text/sbasic/shared/03020305.xhp\">Seek Statement</link>"
msgstr ""
#. RBPKW
@@ -11042,14 +11042,14 @@ msgctxt ""
msgid "<emph>filePos, recordNum</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 ""
-#. 5LDFE
+#. bvTXC
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
"par_id491596468328575\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link> function"
-msgstr "Funció <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>"
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\">Seek</link> function"
+msgstr "Funció <link href=\"text/sbasic/shared/03020304.xhp\">Seek</link>"
#. Nwouh
#: 03020400.xhp
@@ -11060,14 +11060,14 @@ msgctxt ""
msgid "Managing Files"
msgstr "Gestió de fitxers"
-#. diQGx
+#. cL6Jm
#: 03020400.xhp
msgctxt ""
"03020400.xhp\n"
"hd_id3145136\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
-msgstr "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Gestió de fitxers\">Gestió de fitxers</link>"
+msgid "<link href=\"text/sbasic/shared/03020400.xhp\">Managing Files</link>"
+msgstr "<link href=\"text/sbasic/shared/03020400.xhp\">Gestió de fitxers</link>"
#. E5FsL
#: 03020400.xhp
@@ -11096,14 +11096,14 @@ msgctxt ""
msgid "<bookmark_value>ChDir statement</bookmark_value>"
msgstr "<bookmark_value>expressió ChDir</bookmark_value>"
-#. Ets3f
+#. fFyj5
#: 03020401.xhp
msgctxt ""
"03020401.xhp\n"
"hd_id3150178\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement\">ChDir Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"Expressió ChDir\">Expressió ChDir</link>"
+msgid "<link href=\"text/sbasic/shared/03020401.xhp\">ChDir Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03020401.xhp\">Expressió ChDir</link>"
#. yr6FQ
#: 03020401.xhp
@@ -11123,13 +11123,13 @@ msgctxt ""
msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
msgstr ""
-#. EQYDk
+#. e4feF
#: 03020401.xhp
msgctxt ""
"03020401.xhp\n"
"par_id321620859565917\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem_Service\">FileSystem</link> service with methods to handle files and folders in user scripts."
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\">FileSystem</link> service with methods to handle files and folders in user scripts."
msgstr ""
#. WXPPp
@@ -11177,14 +11177,14 @@ msgctxt ""
msgid "<bookmark_value>ChDrive statement</bookmark_value>"
msgstr "<bookmark_value>expressió ChDrive</bookmark_value>"
-#. oPgBF
+#. eHmCk
#: 03020402.xhp
msgctxt ""
"03020402.xhp\n"
"hd_id3145068\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement\">ChDrive Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Expressió ChDrive\">Expressió ChDrive</link>"
+msgid "<link href=\"text/sbasic/shared/03020402.xhp\">ChDrive Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03020402.xhp\">Expressió ChDrive</link>"
#. mdSba
#: 03020402.xhp
@@ -11195,14 +11195,14 @@ msgctxt ""
msgid "Changes the current drive."
msgstr "Canvia la unitat actual."
-#. ncuAv
+#. D7GmP
#: 03020402.xhp
msgctxt ""
"03020402.xhp\n"
"par_id3145172\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> Qualsevol expressió de cadena que conté la lletra d'unitat de la unitat nova. Si ho voleu, podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+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\">URL notation</link>."
+msgstr "<emph>Text:</emph> Qualsevol expressió de cadena que conté la lletra d'unitat de la unitat nova. Si ho voleu, podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. WcKDC
#: 03020402.xhp
@@ -11321,14 +11321,14 @@ msgctxt ""
msgid "<bookmark_value>Dir function</bookmark_value>"
msgstr "<bookmark_value>Funció Dir</bookmark_value>"
-#. 4tvPw
+#. DfqBo
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
"hd_id3154347\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function\">Dir Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Funció Dir\">Funció Dir</link>"
+msgid "<link href=\"text/sbasic/shared/03020404.xhp\">Dir Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020404.xhp\">Funció Dir</link>"
#. Xrc6C
#: 03020404.xhp
@@ -11357,14 +11357,14 @@ msgctxt ""
msgid "String"
msgstr "Cadena"
-#. Ygfz9
+#. E2gFw
#: 03020404.xhp
msgctxt ""
"03020404.xhp\n"
"par_id3161831\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>Text:</emph> Qualsevol expressió de cadena que especifica el camí, directori o fitxer de busca. Este argument només es pot especificar la primera vegada que crideu la funció Dir. Si ho voleu, podeu introduir el camí en <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+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\">URL notation</link>."
+msgstr "<emph>Text:</emph> Qualsevol expressió de cadena que especifica el camí, directori o fitxer de busca. Este argument només es pot especificar la primera vegada que crideu la funció Dir. Si ho voleu, podeu introduir el camí en <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. Curme
#: 03020404.xhp
@@ -11474,14 +11474,14 @@ msgctxt ""
msgid "<bookmark_value>FileAttr function</bookmark_value>"
msgstr "<bookmark_value>Funció FileAttr</bookmark_value>"
-#. Wkyz8
+#. Xd6Wc
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"hd_id3153380\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr Function\">FileAttr Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr Function\">Funció FileAttr</link>"
+msgid "<link href=\"text/sbasic/shared/03020405.xhp\">FileAttr Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020405.xhp\">Funció FileAttr</link>"
#. eWQDF
#: 03020405.xhp
@@ -11501,14 +11501,14 @@ msgctxt ""
msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
msgstr "Si disposeu d'un sistema operatiu de 32 bits, no podeu utilitzar la funció FileAttr per determinar el número d'accés del fitxer."
-#. gBQEA
+#. rrzGc
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3163713\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Obri\">Obri</link>"
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\">Open</link>"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03020103.xhp\">Obri</link>"
#. AhrBC
#: 03020405.xhp
@@ -11663,14 +11663,14 @@ msgctxt ""
msgid "<bookmark_value>FileCopy statement</bookmark_value>"
msgstr "<bookmark_value>expressió FileCopy</bookmark_value>"
-#. FAVwC
+#. xXPBx
#: 03020406.xhp
msgctxt ""
"03020406.xhp\n"
"hd_id3154840\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement\">FileCopy Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Expressió FileCopy\">Expressió FileCopy</link>"
+msgid "<link href=\"text/sbasic/shared/03020406.xhp\">FileCopy Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03020406.xhp\">Expressió FileCopy</link>"
#. cgLqA
#: 03020406.xhp
@@ -11708,14 +11708,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paràmetres:"
-#. s3sxx
+#. AEzbY
#: 03020406.xhp
msgctxt ""
"03020406.xhp\n"
"par_id3155390\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> Qualsevol expressió d'enter que especifica el nom del fitxer que voleu copiar. L'expressió pot contindre informació addicional del camí i de la unitat. Si ho voleu, podeu introduir un camí en <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+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\">URL notation</link>."
+msgstr "<emph>TextFrom:</emph> Qualsevol expressió d'enter que especifica el nom del fitxer que voleu copiar. L'expressió pot contindre informació addicional del camí i de la unitat. Si ho voleu, podeu introduir un camí en <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. zbMfy
#: 03020406.xhp
@@ -11762,14 +11762,14 @@ msgctxt ""
msgid "<bookmark_value>FileDateTime function</bookmark_value>"
msgstr "<bookmark_value>Funció FileDateTime</bookmark_value>"
-#. hykgY
+#. xMEL7
#: 03020407.xhp
msgctxt ""
"03020407.xhp\n"
"hd_id3153361\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function\">FileDateTime Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"Funció FileDateTime\">Funció FileDateTime</link>"
+msgid "<link href=\"text/sbasic/shared/03020407.xhp\">FileDateTime Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020407.xhp\">Funció FileDateTime</link>"
#. 8fZwF
#: 03020407.xhp
@@ -11807,14 +11807,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paràmetres:"
-#. nLoTT
+#. kC2pZ
#: 03020407.xhp
msgctxt ""
"03020407.xhp\n"
"par_id3159153\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>Text:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua (sense comodins). També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+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\">URL notation</link>."
+msgstr "<emph>Text:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua (sense comodins). També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. qqouA
#: 03020407.xhp
@@ -11852,14 +11852,14 @@ msgctxt ""
msgid "<bookmark_value>FileLen function</bookmark_value>"
msgstr "<bookmark_value>Funció FileLen</bookmark_value>"
-#. Xq2cS
+#. 6Pt5C
#: 03020408.xhp
msgctxt ""
"03020408.xhp\n"
"hd_id3153126\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen Function\">FileLen Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"Funció FileLen\">Funció FileLen</link>"
+msgid "<link href=\"text/sbasic/shared/03020408.xhp\">FileLen Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020408.xhp\">Funció FileLen</link>"
#. aJChP
#: 03020408.xhp
@@ -11870,31 +11870,31 @@ msgctxt ""
msgid "Returns the length of a file in bytes."
msgstr "Torna la longitud d'un fitxer en bytes."
-#. RpGc5
+#. WyEgK
#: 03020408.xhp
msgctxt ""
"03020408.xhp\n"
"par_id401651744449325\n"
"help.text"
-msgid "Use <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"ScriptForge.FileSystem service\">ScriptForge.FileSystem</link> service <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#GetFileLen\" name=\"GetFileLen method\">GetFileLen()</link> method when size is expected to be over 2 gigabytes."
+msgid "Use <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\">ScriptForge.FileSystem</link> service <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#GetFileLen\">GetFileLen()</link> method when size is expected to be over 2 gigabytes."
msgstr ""
-#. Fo2XH
+#. dGhBp
#: 03020408.xhp
msgctxt ""
"03020408.xhp\n"
"par_id3153193\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>Text:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\">URL notation</link>."
+msgstr "<emph>Text:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
-#. 7RtHj
+#. Dm9GT
#: 03020408.xhp
msgctxt ""
"03020408.xhp\n"
"par_id3150439\n"
"help.text"
-msgid "This function determines the length of a file. If the <literal>FileLen</literal> 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 <link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof function\"><literal>Lof</literal></link> function."
+msgid "This function determines the length of a file. If the <literal>FileLen</literal> 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 <link href=\"text/sbasic/shared/03020303.xhp\"><literal>Lof</literal></link> function."
msgstr ""
#. FerKv
@@ -11915,14 +11915,14 @@ msgctxt ""
msgid "<bookmark_value>GetAttr function</bookmark_value>"
msgstr "<bookmark_value>Funció GetAttr</bookmark_value>"
-#. sTMcc
+#. FAzGr
#: 03020409.xhp
msgctxt ""
"03020409.xhp\n"
"hd_id3150984\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function\">GetAttr Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"Funció GetAttr\">Funció GetAttr</link>"
+msgid "<link href=\"text/sbasic/shared/03020409.xhp\">GetAttr Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020409.xhp\">Funció GetAttr</link>"
#. WnrAC
#: 03020409.xhp
@@ -11978,14 +11978,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paràmetres:"
-#. 8MoGx
+#. LeSga
#: 03020409.xhp
msgctxt ""
"03020409.xhp\n"
"par_id3151042\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>Text:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\">URL notation</link>."
+msgstr "<emph>Text:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. 9AAaj
#: 03020409.xhp
@@ -12140,14 +12140,14 @@ msgctxt ""
msgid "<bookmark_value>Kill statement</bookmark_value>"
msgstr "<bookmark_value>expressió Kill</bookmark_value>"
-#. JWiBA
+#. aKxRG
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"hd_id3153360\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement\">Kill Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Expressió Kill\">Expressió Kill</link>"
+msgid "<link href=\"text/sbasic/shared/03020410.xhp\">Kill Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03020410.xhp\">Expressió Kill</link>"
#. gJGP8
#: 03020410.xhp
@@ -12167,14 +12167,14 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. FDnBF
+#. Gf45T
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3150440\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>Fitxer:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\">URL notation</link>."
+msgstr "<emph>Fitxer:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. PXEE3
#: 03020410.xhp
@@ -12203,14 +12203,14 @@ msgctxt ""
msgid "<bookmark_value>MkDir statement</bookmark_value>"
msgstr "<bookmark_value>expressió MkDir</bookmark_value>"
-#. mTqrj
+#. BAJt5
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"hd_id3156421\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Expressió MkDir\">Expressió MkDir</link>"
+msgid "<link href=\"text/sbasic/shared/03020411.xhp\">MkDir Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03020411.xhp\">Expressió MkDir</link>"
#. Fu6rt
#: 03020411.xhp
@@ -12239,13 +12239,13 @@ msgctxt ""
msgid "MkDir path"
msgstr ""
-#. PaEBs
+#. FMr94
#: 03020411.xhp
msgctxt ""
"03020411.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<emph>path:</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>."
+msgid "<emph>path:</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\">URL notation</link>."
msgstr ""
#. PLopZ
@@ -12410,14 +12410,14 @@ msgctxt ""
msgid "<bookmark_value>Name statement</bookmark_value>"
msgstr "<bookmark_value>expressió Name</bookmark_value>"
-#. DrXJF
+#. G2wMY
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
"hd_id3143268\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement\">Name Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Expressió Name\">Expressió Name</link>"
+msgid "<link href=\"text/sbasic/shared/03020412.xhp\">Name Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03020412.xhp\">Expressió Name</link>"
#. H2NFb
#: 03020412.xhp
@@ -12455,14 +12455,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paràmetres:"
-#. a4nFq
+#. zRdHw
#: 03020412.xhp
msgctxt ""
"03020412.xhp\n"
"par_id3151210\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> Qualsevol expressió de cadena que especifica el nom de fitxer, inclòs el camí. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+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\">URL notation</link>."
+msgstr "<emph>OldName, NewName:</emph> Qualsevol expressió de cadena que especifica el nom de fitxer, inclòs el camí. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. CLjrW
#: 03020412.xhp
@@ -12500,14 +12500,14 @@ msgctxt ""
msgid "<bookmark_value>RmDir statement</bookmark_value>"
msgstr "<bookmark_value>expressió RmDir</bookmark_value>"
-#. fj6w7
+#. Zctny
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
"hd_id3148947\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement\">RmDir Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"Expressió RmDir\">Expressió RmDir</link>"
+msgid "<link href=\"text/sbasic/shared/03020413.xhp\">RmDir Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03020413.xhp\">Expressió RmDir</link>"
#. VRYbm
#: 03020413.xhp
@@ -12536,14 +12536,14 @@ msgctxt ""
msgid "RmDir Text As String"
msgstr "RmDir Text As String"
-#. 2mpBg
+#. qD622
#: 03020413.xhp
msgctxt ""
"03020413.xhp\n"
"par_id3151042\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> Qualsevol expressió de cadena que especifica el nom i el camí del directori que voleu suprimir. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+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\">URL notation</link>."
+msgstr "<emph>Text:</emph> Qualsevol expressió de cadena que especifica el nom i el camí del directori que voleu suprimir. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. 3SCF3
#: 03020413.xhp
@@ -12572,14 +12572,14 @@ msgctxt ""
msgid "<bookmark_value>SetAttr statement</bookmark_value>"
msgstr "<bookmark_value>expressió SetAttr</bookmark_value>"
-#. yxCw2
+#. LvBHq
#: 03020414.xhp
msgctxt ""
"03020414.xhp\n"
"hd_id3147559\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement\">SetAttr Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"Expressió SetAttr\">Expressió SetAttr</link>"
+msgid "<link href=\"text/sbasic/shared/03020414.xhp\">SetAttr Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03020414.xhp\">Expressió SetAttr</link>"
#. XPYqB
#: 03020414.xhp
@@ -12617,14 +12617,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paràmetres:"
-#. oQcEN
+#. FCaJX
#: 03020414.xhp
msgctxt ""
"03020414.xhp\n"
"par_id3154909\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 "FileName: Nom del fitxer, inclòs el camí, del qual voleu provar els atributs. Si no introduïu un camí, <emph>SetAttr</emph> busca el fitxer al directori actual. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+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\">URL notation</link>."
+msgstr "FileName: Nom del fitxer, inclòs el camí, del qual voleu provar els atributs. Si no introduïu un camí, <emph>SetAttr</emph> busca el fitxer al directori actual. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. x9krq
#: 03020414.xhp
@@ -12743,14 +12743,14 @@ msgctxt ""
msgid "<bookmark_value>FileExists function</bookmark_value>"
msgstr "<bookmark_value>Funció FileExists</bookmark_value>"
-#. BM9CV
+#. DMA45
#: 03020415.xhp
msgctxt ""
"03020415.xhp\n"
"hd_id3148946\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function\">FileExists Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"Funció FileExists\">Funció FileExists</link>"
+msgid "<link href=\"text/sbasic/shared/03020415.xhp\">FileExists Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03020415.xhp\">Funció FileExists</link>"
#. FkmEu
#: 03020415.xhp
@@ -12806,14 +12806,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paràmetres:"
-#. 4qmwy
+#. EBMCG
#: 03020415.xhp
msgctxt ""
"03020415.xhp\n"
"par_id3147349\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: Qualsevol expressió d'enter que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
+msgid "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\">URL notation</link>."
+msgstr "FileName | DirectoryName: Qualsevol expressió d'enter que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\">notació URL</link>."
#. uHp57
#: 03020415.xhp
@@ -12833,14 +12833,14 @@ msgctxt ""
msgid "Date and Time Functions"
msgstr "Funcions Date i Time"
-#. gJne8
+#. HvdHW
#: 03030000.xhp
msgctxt ""
"03030000.xhp\n"
"hd_id3150502\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=\"Funcions de data i hora\">Funcions de data i hora</link>"
+msgid "<link href=\"text/sbasic/shared/03030000.xhp\">Date and Time Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03030000.xhp\">Funcions de data i hora</link>"
#. UjGFG
#: 03030000.xhp
@@ -12878,14 +12878,14 @@ msgctxt ""
msgid "Converting Date Values"
msgstr "Conversió de valors de dates"
-#. EzFNZ
+#. R5oGG
#: 03030100.xhp
msgctxt ""
"03030100.xhp\n"
"hd_id3147573\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
-msgstr "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Conversió de valors de dates\">Conversió de valors de dates</link>"
+msgid "<link href=\"text/sbasic/shared/03030100.xhp\">Converting Date Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030100.xhp\">Conversió de valors de dates</link>"
#. mtRPg
#: 03030100.xhp
@@ -12914,13 +12914,13 @@ msgctxt ""
msgid "<bookmark_value>DateSerial function</bookmark_value>"
msgstr "<bookmark_value>Funció DateSerial</bookmark_value>"
-#. A5cpz
+#. y8PDg
#: 03030101.xhp
msgctxt ""
"03030101.xhp\n"
"hd_id381619878817271\n"
"help.text"
-msgid "<variable id=\"DateSerial_H1\"><link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function\">DateSerial Function</link></variable>"
+msgid "<variable id=\"DateSerial_H1\"><link href=\"text/sbasic/shared/03030101.xhp\">DateSerial Function</link></variable>"
msgstr ""
#. d3jbM
@@ -13049,13 +13049,13 @@ msgctxt ""
msgid "<bookmark_value>DateValue function</bookmark_value>"
msgstr "<bookmark_value>Funció DateValue</bookmark_value>"
-#. mELDZ
+#. iNyJG
#: 03030102.xhp
msgctxt ""
"03030102.xhp\n"
"hd_id3156344\n"
"help.text"
-msgid "<variable id=\"DateValue_H1\"><link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function\">DateValue Function</link></variable>"
+msgid "<variable id=\"DateValue_H1\"><link href=\"text/sbasic/shared/03030102.xhp\">DateValue Function</link></variable>"
msgstr ""
#. CDPDz
@@ -13148,14 +13148,14 @@ msgctxt ""
msgid "<bookmark_value>Day function</bookmark_value>"
msgstr "<bookmark_value>Funció Day</bookmark_value>"
-#. fTDhy
+#. wptgJ
#: 03030103.xhp
msgctxt ""
"03030103.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function\">Day Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function\">Funció Day</link>"
+msgid "<link href=\"text/sbasic/shared/03030103.xhp\">Day Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030103.xhp\">Funció Day</link>"
#. BBAea
#: 03030103.xhp
@@ -13274,14 +13274,14 @@ msgctxt ""
msgid "<bookmark_value>Month function</bookmark_value>"
msgstr "<bookmark_value>Funció Month</bookmark_value>"
-#. dZKyL
+#. c2QjL
#: 03030104.xhp
msgctxt ""
"03030104.xhp\n"
"hd_id3153127\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function\">Month Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function\">Funció Month</link>"
+msgid "<link href=\"text/sbasic/shared/03030104.xhp\">Month Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030104.xhp\">Funció Month</link>"
#. fCRok
#: 03030104.xhp
@@ -13400,13 +13400,13 @@ msgctxt ""
msgid "<bookmark_value>WeekDay function</bookmark_value>"
msgstr "<bookmark_value>Funció WeekDay</bookmark_value>"
-#. 5BQqf
+#. XPh8B
#: 03030105.xhp
msgctxt ""
"03030105.xhp\n"
"hd_id3153127\n"
"help.text"
-msgid "<variable id=\"WeekDay_H1\"><link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function\">WeekDay Function</link></variable>"
+msgid "<variable id=\"WeekDay_H1\"><link href=\"text/sbasic/shared/03030105.xhp\">WeekDay Function</link></variable>"
msgstr ""
#. knGHF
@@ -13418,13 +13418,13 @@ msgctxt ""
msgid "This function returns the number corresponding to the weekday represented by a serial date number that is generated by the <literal>DateSerial</literal> or the <literal>DateValue</literal> functions."
msgstr ""
-#. mDEaF
+#. PzQWB
#: 03030105.xhp
msgctxt ""
"03030105.xhp\n"
"par_id91620239579003\n"
"help.text"
-msgid "This help page describes the <literal>WeekDay</literal> function used in Basic scripts. If you are interested in the <literal>WeekDay</literal> function used in %PRODUCTNAME Calc, refer to <link href=\"text/scalc/01/func_weekday.xhp\" name=\"WeekDay_Calc Function\">this help page</link>."
+msgid "This help page describes the <literal>WeekDay</literal> function used in Basic scripts. If you are interested in the <literal>WeekDay</literal> function used in %PRODUCTNAME Calc, refer to <link href=\"text/scalc/01/func_weekday.xhp\">this help page</link>."
msgstr ""
#. Gq6UR
@@ -13562,13 +13562,13 @@ msgctxt ""
msgid "Saturday"
msgstr ""
-#. BcGEp
+#. CYgPf
#: 03030105.xhp
msgctxt ""
"03030105.xhp\n"
"par_id451619720094202\n"
"help.text"
-msgid "The VBA constants listed above are only available if VBA support has been enabled. For more information, read the <link href=\"text/sbasic/shared/03103350.xhp\" name=\"VBASupport_Statement\">VBASupport Statement</link> help page."
+msgid "The VBA constants listed above are only available if VBA support has been enabled. For more information, read the <link href=\"text/sbasic/shared/03103350.xhp\">VBASupport Statement</link> help page."
msgstr ""
#. CPXVo
@@ -13724,14 +13724,14 @@ msgctxt ""
msgid "<bookmark_value>Year function</bookmark_value>"
msgstr "<bookmark_value>Funció Year</bookmark_value>"
-#. 8DvUr
+#. 9HGdK
#: 03030106.xhp
msgctxt ""
"03030106.xhp\n"
"hd_id3148664\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function\">Year Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function\">Funció Year</link>"
+msgid "<link href=\"text/sbasic/shared/03030106.xhp\">Year Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030106.xhp\">Funció Year</link>"
#. My6Uq
#: 03030106.xhp
@@ -13850,14 +13850,14 @@ msgctxt ""
msgid "<bookmark_value>CdateToIso function</bookmark_value>"
msgstr "<bookmark_value>Funció CdateToIso</bookmark_value>"
-#. i3HEH
+#. ZfAxc
#: 03030107.xhp
msgctxt ""
"03030107.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function\">CDateToIso Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function\">Funció CDateToIso</link>"
+msgid "<link href=\"text/sbasic/shared/03030107.xhp\">CDateToIso Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030107.xhp\">Funció CDateToIso</link>"
#. YAouB
#: 03030107.xhp
@@ -13976,14 +13976,14 @@ msgctxt ""
msgid "<bookmark_value>CdateFromIso function</bookmark_value>"
msgstr "<bookmark_value>Funció CdateFromIso</bookmark_value>"
-#. R29ws
+#. hF2a7
#: 03030108.xhp
msgctxt ""
"03030108.xhp\n"
"hd_id3153127\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function\">CDateFromIso Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function\">Funció CDateFromIso</link>"
+msgid "<link href=\"text/sbasic/shared/03030108.xhp\">CDateFromIso Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030108.xhp\">Funció CDateFromIso</link>"
#. AaWgB
#: 03030108.xhp
@@ -14012,14 +14012,14 @@ msgctxt ""
msgid "An invalid date results in an error. Year 0 is not accepted, the last day BCE is -0001-12-31 and the next day CE is 0001-01-01. Dates before 1582-10-15 are in the proleptic Gregorian calendar."
msgstr "Una data no vàlida produeix un error. L'any 0 no s'accepta, l'últim dia aC és el -0001-12-31 i el següent dia de l'era actual és el 0001-01-01. Les dates d'abans del 1582-10-15 són al calendari gregorià prolèptic."
-#. CzhoN
+#. w6yxV
#: 03030108.xhp
msgctxt ""
"03030108.xhp\n"
"par_id3148553\n"
"help.text"
-msgid "When converting a date serial number to a printable string, for example for the Print or MsgBox command, the locale's default calendar is used and at that 1582-10-15 cutover date may switch to the Julian calendar, which can result in a different date being displayed than expected. Use the <link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function\">CDateToIso Function</link> to convert such date number to a string representation in the proleptic Gregorian calendar."
-msgstr "Quan es converteix un número de sèrie d'una data en una cadena imprimible, per exemple per a l'ordre Impressió o MsgBox, es fa servir el calendari per defecte de la configuració local i a la data de transició del 1582-10-15 pot canviar al calendari julià, la qual cosa pot fer que es mostre una data diferent de l'esperada. Feu servir la <link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function\">Funció CDateToIso</link> per a convertir el número d'aquesta data en una representació de cadena del calendari gregorià prolèptic."
+msgid "When converting a date serial number to a printable string, for example for the Print or MsgBox command, the locale's default calendar is used and at that 1582-10-15 cutover date may switch to the Julian calendar, which can result in a different date being displayed than expected. Use the <link href=\"text/sbasic/shared/03030107.xhp\">CDateToIso Function</link> to convert such date number to a string representation in the proleptic Gregorian calendar."
+msgstr "Quan es converteix un número de sèrie d'una data en una cadena imprimible, per exemple per a l'ordre Impressió o MsgBox, es fa servir el calendari per defecte de la configuració local i a la data de transició del 1582-10-15 pot canviar al calendari julià, la qual cosa pot fer que es mostre una data diferent de l'esperada. Feu servir la <link href=\"text/sbasic/shared/03030107.xhp\">Funció CDateToIso</link> per a convertir el número d'aquesta data en una representació de cadena del calendari gregorià prolèptic."
#. xDmcF
#: 03030108.xhp
@@ -14309,14 +14309,14 @@ msgctxt ""
msgid "<bookmark_value>CDateToUnoDate function</bookmark_value>"
msgstr "<bookmark_value>Funció CDateToUnoDate</bookmark_value>"
-#. Fh47U
+#. qBur8
#: 03030111.xhp
msgctxt ""
"03030111.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030111.xhp\" name=\"CDateToUnoDate Function\">CDateToUnoDate Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030111.xhp\" name=\"Funció CDateToUnoDate\">Funció CDateToUnoDate</link>"
+msgid "<link href=\"text/sbasic/shared/03030111.xhp\">CDateToUnoDate Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030111.xhp\">Funció CDateToUnoDate</link>"
#. xtYRQ
#: 03030111.xhp
@@ -14408,14 +14408,14 @@ msgctxt ""
msgid "<bookmark_value>CDateFromUnoDate function</bookmark_value>"
msgstr "<bookmark_value>Funció CDateFromUnoDate</bookmark_value>"
-#. wbhZD
+#. E4xcw
#: 03030112.xhp
msgctxt ""
"03030112.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030112.xhp\" name=\"CDateFromUnoDate Function\">CDateFromUnoDate Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030112.xhp\" name=\"Funció CDateFromUnoDate\">Funció CDateFromUnoDate</link>"
+msgid "<link href=\"text/sbasic/shared/03030112.xhp\">CDateFromUnoDate Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030112.xhp\">Funció CDateFromUnoDate</link>"
#. DsANV
#: 03030112.xhp
@@ -14498,14 +14498,14 @@ msgctxt ""
msgid "<bookmark_value>CDateToUnoTime function</bookmark_value>"
msgstr "<bookmark_value>Funció CDateToUnoTime</bookmark_value>"
-#. GkSRQ
+#. JgHk8
#: 03030113.xhp
msgctxt ""
"03030113.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030113.xhp\" name=\"CDateToUnoTime Function\">CDateToUnoTime Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030113.xhp\" name=\"Funció CDateToUnoTime\">Funció CDateToUnoTime</link>"
+msgid "<link href=\"text/sbasic/shared/03030113.xhp\">CDateToUnoTime Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030113.xhp\">Funció CDateToUnoTime</link>"
#. 6QMEs
#: 03030113.xhp
@@ -14597,14 +14597,14 @@ msgctxt ""
msgid "<bookmark_value>CDateFromUnoTime function</bookmark_value>"
msgstr "<bookmark_value>Funció CDateFromUnoTime</bookmark_value>"
-#. MErZW
+#. vkoBM
#: 03030114.xhp
msgctxt ""
"03030114.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030114.xhp\" name=\"CDateFromUnoTime Function\">CDateFromUnoTime Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030114.xhp\" name=\"Funció CDateFromUnoTime\">Funció CDateFromUnoTime</link>"
+msgid "<link href=\"text/sbasic/shared/03030114.xhp\">CDateFromUnoTime Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030114.xhp\">Funció CDateFromUnoTime</link>"
#. QfMkH
#: 03030114.xhp
@@ -14696,14 +14696,14 @@ msgctxt ""
msgid "<bookmark_value>CDateToUnoDateTime function</bookmark_value>"
msgstr "<bookmark_value>Funció CDateToUnoDateTime</bookmark_value>"
-#. PN5Bq
+#. DNRMR
#: 03030115.xhp
msgctxt ""
"03030115.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030115.xhp\" name=\"CDateToUnoDateTime Function\">CDateToUnoDateTime Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030115.xhp\" name=\"Funció CDateToUnoDateTime\">Funció CDateToUnoDateTime</link>"
+msgid "<link href=\"text/sbasic/shared/03030115.xhp\">CDateToUnoDateTime Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030115.xhp\">Funció CDateToUnoDateTime</link>"
#. aJkaU
#: 03030115.xhp
@@ -14795,14 +14795,14 @@ msgctxt ""
msgid "<bookmark_value>CDateFromUnoDateTime function</bookmark_value>"
msgstr "<bookmark_value>Funció CDateFromUnoDateTime</bookmark_value>"
-#. gbW7P
+#. fAjNB
#: 03030116.xhp
msgctxt ""
"03030116.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030116.xhp\" name=\"CDateFromUnoDateTime Function\">CDateFromUnoDateTime Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030116.xhp\" name=\"Funció CDateFromUnoDateTime\">Funció CDateFromUnoDateTime</link>"
+msgid "<link href=\"text/sbasic/shared/03030116.xhp\">CDateFromUnoDateTime Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030116.xhp\">Funció CDateFromUnoDateTime</link>"
#. GgYqn
#: 03030116.xhp
@@ -15317,14 +15317,14 @@ msgctxt ""
msgid "Converting Time Values"
msgstr "Conversió de valors d'hora"
-#. dJYDD
+#. Sx9Jy
#: 03030200.xhp
msgctxt ""
"03030200.xhp\n"
"hd_id3147226\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
-msgstr "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Conversió de valors d'hora\">Conversió de valors d'hora</link>"
+msgid "<link href=\"text/sbasic/shared/03030200.xhp\">Converting Time Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03030200.xhp\">Conversió de valors d'hora</link>"
#. SdvsV
#: 03030200.xhp
@@ -15353,14 +15353,14 @@ msgctxt ""
msgid "<bookmark_value>Hour function</bookmark_value>"
msgstr "<bookmark_value>Funció Hour</bookmark_value>"
-#. 6thEB
+#. DSaiz
#: 03030201.xhp
msgctxt ""
"03030201.xhp\n"
"hd_id3156042\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function\">Hour Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Funció Hour\">Funció Hour</link>"
+msgid "<link href=\"text/sbasic/shared/03030201.xhp\">Hour Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030201.xhp\">Funció Hour</link>"
#. AEpQ4
#: 03030201.xhp
@@ -15479,13 +15479,13 @@ msgctxt ""
msgid "<bookmark_value>Minute function</bookmark_value>"
msgstr "<bookmark_value>Funció Minut</bookmark_value>"
-#. PcZfm
+#. rcDDE
#: 03030202.xhp
msgctxt ""
"03030202.xhp\n"
"hd_id3155419\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function\">Minute Function (BASIC)</link>"
+msgid "<link href=\"text/sbasic/shared/03030202.xhp\">Minute Function (BASIC)</link>"
msgstr ""
#. 8nzwM
@@ -15569,13 +15569,13 @@ msgctxt ""
msgid "<bookmark_value>Now function</bookmark_value>"
msgstr "<bookmark_value>Funció Now</bookmark_value>"
-#. vYrqB
+#. Cb5u6
#: 03030203.xhp
msgctxt ""
"03030203.xhp\n"
"hd_id641619720735711\n"
"help.text"
-msgid "<variable id=\"Now_H1\"><link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function\">Now Function</link></variable>"
+msgid "<variable id=\"Now_H1\"><link href=\"text/sbasic/shared/03030203.xhp\">Now Function</link></variable>"
msgstr ""
#. TdbJF
@@ -15605,13 +15605,13 @@ msgctxt ""
msgid "MsgBox \"It is now \" & Now"
msgstr "Msgbox \"Ara és \" & Now"
-#. LoGnz
+#. BPBqU
#: 03030203.xhp
msgctxt ""
"03030203.xhp\n"
"par_id491610993401822\n"
"help.text"
-msgid "The <literal>Now</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\"><literal>Timer</literal> service</link>."
+msgid "The <literal>Now</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\"><literal>Timer</literal> service</link>."
msgstr ""
#. LDkTk
@@ -15641,14 +15641,14 @@ msgctxt ""
msgid "<bookmark_value>Second function</bookmark_value>"
msgstr "<bookmark_value>Funció Second</bookmark_value>"
-#. sesGV
+#. F2F8f
#: 03030204.xhp
msgctxt ""
"03030204.xhp\n"
"hd_id3153346\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function\">Second Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Funció Second\">Funció Second</link>"
+msgid "<link href=\"text/sbasic/shared/03030204.xhp\">Second Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030204.xhp\">Funció Second</link>"
#. 7idcY
#: 03030204.xhp
@@ -15767,14 +15767,14 @@ msgctxt ""
msgid "<bookmark_value>TimeSerial function</bookmark_value>"
msgstr "<bookmark_value>Funció TimeSerial </bookmark_value>"
-#. SMCrm
+#. JavZH
#: 03030205.xhp
msgctxt ""
"03030205.xhp\n"
"hd_id3143271\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function\">TimeSerial Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"Funció TimeSerial\">Funció TimeSerial</link>"
+msgid "<link href=\"text/sbasic/shared/03030205.xhp\">TimeSerial Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030205.xhp\">Funció TimeSerial</link>"
#. 6jATi
#: 03030205.xhp
@@ -15974,14 +15974,14 @@ msgctxt ""
msgid "<bookmark_value>TimeValue function</bookmark_value>"
msgstr "<bookmark_value>Funció TimeValue</bookmark_value>"
-#. cVq8u
+#. FfEgo
#: 03030206.xhp
msgctxt ""
"03030206.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function\">TimeValue Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"Funció TimeValue\">Funció TimeValue</link>"
+msgid "<link href=\"text/sbasic/shared/03030206.xhp\">TimeValue Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03030206.xhp\">Funció TimeValue</link>"
#. F7fEy
#: 03030206.xhp
@@ -16127,14 +16127,14 @@ msgctxt ""
msgid "System Date and Time"
msgstr "Data i hora del sistema"
-#. BHuhu
+#. 3RD4F
#: 03030300.xhp
msgctxt ""
"03030300.xhp\n"
"hd_id3154923\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=\"Data i hora del sistema\">Data i hora del sistema</link>"
+msgid "<link href=\"text/sbasic/shared/03030300.xhp\">System Date and Time</link>"
+msgstr "<link href=\"text/sbasic/shared/03030300.xhp\">Data i hora del sistema</link>"
#. GWeGk
#: 03030300.xhp
@@ -16163,13 +16163,13 @@ msgctxt ""
msgid "<bookmark_value>Date function</bookmark_value>"
msgstr ""
-#. u9AkG
+#. gBZEP
#: 03030301.xhp
msgctxt ""
"03030301.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Function\">Date Function</link>"
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\">Date Function</link>"
msgstr ""
#. AaA3G
@@ -16208,13 +16208,13 @@ msgctxt ""
msgid "<bookmark_value>Time function</bookmark_value>"
msgstr ""
-#. tBoRS
+#. VDwjY
#: 03030302.xhp
msgctxt ""
"03030302.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030302.xhp\" name=\"Time Function\">Time Function</link>"
+msgid "<link href=\"text/sbasic/shared/03030302.xhp\">Time Function</link>"
msgstr ""
#. FHKSk
@@ -16253,13 +16253,13 @@ msgctxt ""
msgid "<bookmark_value>Timer function</bookmark_value>"
msgstr "<bookmark_value>Funció Timer</bookmark_value>"
-#. 2AGeD
+#. tFAgp
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<variable id=\"Timer_H1\"><link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function\">Timer Function</link></variable>"
+msgid "<variable id=\"Timer_H1\"><link href=\"text/sbasic/shared/03030303.xhp\">Timer Function</link></variable>"
msgstr ""
#. AKDaG
@@ -16307,13 +16307,13 @@ msgctxt ""
msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2), 0, \"The time is\""
msgstr ""
-#. oYudq
+#. qCtkb
#: 03030303.xhp
msgctxt ""
"03030303.xhp\n"
"par_id491610993401822\n"
"help.text"
-msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"Timer_link\">Timer service</link> available in the <literal>ScriptForge</literal> library."
+msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\">Timer service</link> available in the <literal>ScriptForge</literal> library."
msgstr ""
#. ATnCy
@@ -16838,13 +16838,13 @@ msgctxt ""
msgid "Error-Handling Functions"
msgstr "Funcions de gestió d'errors"
-#. yMyAz
+#. u4AgT
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"hd_id3143271\n"
"help.text"
-msgid "<variable id=\"ErrHandlingh1\"><link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link></variable>"
+msgid "<variable id=\"ErrHandlingh1\"><link href=\"text/sbasic/shared/03050000.xhp\">Error-Handling Functions</link></variable>"
msgstr ""
#. KsiEx
@@ -16883,14 +16883,14 @@ msgctxt ""
msgid "<bookmark_value>Erl function</bookmark_value>"
msgstr "<bookmark_value>Funció Erl</bookmark_value>"
-#. wmnFw
+#. 4oCiF
#: 03050100.xhp
msgctxt ""
"03050100.xhp\n"
"hd_id3157896\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function\">Erl Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function\">Funció Erl</link>"
+msgid "<link href=\"text/sbasic/shared/03050100.xhp\">Erl Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03050100.xhp\">Funció Erl</link>"
#. jDwdD
#: 03050100.xhp
@@ -17000,14 +17000,14 @@ msgctxt ""
msgid "<bookmark_value>Err function</bookmark_value>"
msgstr "<bookmark_value>Funció Err</bookmark_value>"
-#. Pih45
+#. bUW3P
#: 03050200.xhp
msgctxt ""
"03050200.xhp\n"
"hd_id3156343\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function\">Err Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function\">Funció Err</link>"
+msgid "<link href=\"text/sbasic/shared/03050200.xhp\">Err Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03050200.xhp\">Funció Err</link>"
#. fYQVz
#: 03050200.xhp
@@ -17117,14 +17117,14 @@ msgctxt ""
msgid "<bookmark_value>Error function</bookmark_value>"
msgstr "<bookmark_value>Funció Error</bookmark_value>"
-#. bYtGD
+#. e9iSg
#: 03050300.xhp
msgctxt ""
"03050300.xhp\n"
"hd_id3159413\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function\">Error Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Funció Error\">Funció Error</link>"
+msgid "<link href=\"text/sbasic/shared/03050300.xhp\">Error Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03050300.xhp\">Funció Error</link>"
#. rMs2R
#: 03050300.xhp
@@ -17243,14 +17243,14 @@ msgctxt ""
msgid "<bookmark_value>Resume Next parameter</bookmark_value> <bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
msgstr "<bookmark_value>paràmetre Resume Next</bookmark_value> <bookmark_value>expressió On Error GoTo ... Resume</bookmark_value>"
-#. AQeFr
+#. jtcsB
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"hd_id3146795\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement\">On Error GoTo ... Resume Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"Expressió On Error GoTo … Resume\">Expressió On Error GoTo … Resume</link>"
+msgid "<link href=\"text/sbasic/shared/03050500.xhp\">On Error GoTo ... Resume Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03050500.xhp\">Expressió On Error GoTo … Resume</link>"
#. WtSRF
#: 03050500.xhp
@@ -17351,13 +17351,13 @@ msgctxt ""
msgid "Logical Operators"
msgstr "Operadors lògics"
-#. 8jdra
+#. KGvBW
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"hd_id3147559\n"
"help.text"
-msgid "<variable id=\"BoolOper_h1\"><link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link></variable>"
+msgid "<variable id=\"BoolOper_h1\"><link href=\"text/sbasic/shared/03060000.xhp\">Logical Operators</link></variable>"
msgstr ""
#. E9c8W
@@ -17396,14 +17396,14 @@ msgctxt ""
msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
msgstr "<bookmark_value>operador AND (lògic)</bookmark_value>"
-#. E9eBH
+#. AsRzu
#: 03060100.xhp
msgctxt ""
"03060100.xhp\n"
"hd_id3146117\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator\">AND Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"Operador AND\">Operador AND</link>"
+msgid "<link href=\"text/sbasic/shared/03060100.xhp\">AND Operator</link>"
+msgstr "<link href=\"text/sbasic/shared/03060100.xhp\">Operador AND</link>"
#. 3PFwA
#: 03060100.xhp
@@ -17558,14 +17558,14 @@ msgctxt ""
msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
msgstr "<bookmark_value>Operador Eqv (lògic)</bookmark_value>"
-#. eCbAp
+#. EQ8cg
#: 03060200.xhp
msgctxt ""
"03060200.xhp\n"
"hd_id3156344\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator\">Eqv Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Operador Eqv\">Operador Eqv</link>"
+msgid "<link href=\"text/sbasic/shared/03060200.xhp\">Eqv Operator</link>"
+msgstr "<link href=\"text/sbasic/shared/03060200.xhp\">Operador Eqv</link>"
#. oTT4F
#: 03060200.xhp
@@ -17711,14 +17711,14 @@ msgctxt ""
msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
msgstr "<bookmark_value>Operador Imp (lògic)</bookmark_value>"
-#. PnSuL
+#. UMvpF
#: 03060300.xhp
msgctxt ""
"03060300.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator\">Imp Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Operador Imp\">Operador Imp</link>"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\">Imp Operator</link>"
+msgstr "<link href=\"text/sbasic/shared/03060300.xhp\">Operador Imp</link>"
#. Zk7uh
#: 03060300.xhp
@@ -17864,14 +17864,14 @@ msgctxt ""
msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
msgstr "<bookmark_value>Operador Not (lògic)</bookmark_value>"
-#. 2T39N
+#. JEEa2
#: 03060400.xhp
msgctxt ""
"03060400.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator\">Not Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator\">Operador Not</link>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\">Not Operator</link>"
+msgstr "<link href=\"text/sbasic/shared/03060400.xhp\">Operador Not</link>"
#. ejJg3
#: 03060400.xhp
@@ -18008,14 +18008,14 @@ msgctxt ""
msgid "<bookmark_value>Or operator (logical)</bookmark_value>"
msgstr "<bookmark_value>Operador Or (lògic)</bookmark_value>"
-#. gpY4c
+#. eXYR8
#: 03060500.xhp
msgctxt ""
"03060500.xhp\n"
"hd_id3150986\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator\">Or Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Operador Or\">Operador Or</link>"
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\">Or Operator</link>"
+msgstr "<link href=\"text/sbasic/shared/03060500.xhp\">Operador Or</link>"
#. nTnSR
#: 03060500.xhp
@@ -18116,14 +18116,14 @@ msgctxt ""
msgid "<bookmark_value>XOR operator (logical)</bookmark_value>"
msgstr "<bookmark_value>operador XOR (lògic)</bookmark_value>"
-#. uc4fX
+#. AaD4r
#: 03060600.xhp
msgctxt ""
"03060600.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"XOR Operator\">XOR Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Operador XOR\">Operador XOR</link>"
+msgid "<link href=\"text/sbasic/shared/03060600.xhp\">XOR Operator</link>"
+msgstr "<link href=\"text/sbasic/shared/03060600.xhp\">Operador XOR</link>"
#. kbfD6
#: 03060600.xhp
@@ -18260,13 +18260,13 @@ msgctxt ""
msgid "Mathematical Operators"
msgstr "Operadors matemàtics"
-#. LGC5F
+#. A7Ep3
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3149234\n"
"help.text"
-msgid "<variable id=\"MathOper_h1\"><link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link></variable>"
+msgid "<variable id=\"MathOper_h1\"><link href=\"text/sbasic/shared/03070000.xhp\">Mathematical Operators</link></variable>"
msgstr ""
#. YBZiW
@@ -18773,13 +18773,13 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>Operador MOD (matemàtic)</bookmark_value>"
-#. u5igy
+#. nvJnG
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\">Mod Operator</link></variable>"
msgstr ""
#. YEMEy
@@ -18845,13 +18845,13 @@ msgctxt ""
msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
msgstr ""
-#. FQW9C
+#. LMG4b
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id921617302349290\n"
"help.text"
-msgid "Be aware that BASIC's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they are not rounded before division, thus the resulting remainder may be a decimal value."
+msgid "Be aware that BASIC's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they are not rounded before division, thus the resulting remainder may be a decimal value."
msgstr ""
#. xEXBJ
@@ -18917,13 +18917,13 @@ msgctxt ""
msgid "Print a Mod b 'Returns 4"
msgstr ""
-#. agWNB
+#. U4FxB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id771617305550403\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\">MOD Function</link>"
msgstr ""
#. zzEFW
@@ -19025,14 +19025,14 @@ msgctxt ""
msgid "Numeric Functions"
msgstr "Funcions numèriques"
-#. 9FiDu
+#. CGMNV
#: 03080000.xhp
msgctxt ""
"03080000.xhp\n"
"hd_id3153127\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=\"Funcions numèriques\">Funcions numèriques</link>"
+msgid "<link href=\"text/sbasic/shared/03080000.xhp\">Numeric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080000.xhp\">Funcions numèriques</link>"
#. XNbA4
#: 03080000.xhp
@@ -19052,14 +19052,14 @@ msgctxt ""
msgid "Trigonometric Functions"
msgstr "Funcions trigonomètriques"
-#. W2faa
+#. fUmD6
#: 03080100.xhp
msgctxt ""
"03080100.xhp\n"
"hd_id3159201\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=\"Funcions trigonomètriques\">Funcions trigonomètriques</link>"
+msgid "<link href=\"text/sbasic/shared/03080100.xhp\">Trigonometric Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080100.xhp\">Funcions trigonomètriques</link>"
#. dtf2u
#: 03080100.xhp
@@ -19088,13 +19088,13 @@ msgctxt ""
msgid "<bookmark_value>Atn function</bookmark_value>"
msgstr "<bookmark_value>Funció Atn</bookmark_value>"
-#. KDeey
+#. DCNvX
#: 03080101.xhp
msgctxt ""
"03080101.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"Atn_h1\"><link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function\">Atn Function</link></variable>"
+msgid "<variable id=\"Atn_h1\"><link href=\"text/sbasic/shared/03080101.xhp\">Atn Function</link></variable>"
msgstr ""
#. yugFQ
@@ -19169,13 +19169,13 @@ msgctxt ""
msgid "radian=(degree*pi)/180"
msgstr "radian=(grau*pi)/180"
-#. AGhFY
+#. 7cWUW
#: 03080101.xhp
msgctxt ""
"03080101.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "<literal>Pi</literal> is here the fixed circle constant with the rounded value 3.14159. <literal>Pi</literal> is a <link href=\"text/sbasic/shared/03040000.xhp#mathconstants\" name=\"pi\">Basic mathematical constant</link>."
+msgid "<literal>Pi</literal> is here the fixed circle constant with the rounded value 3.14159. <literal>Pi</literal> is a <link href=\"text/sbasic/shared/03040000.xhp#mathconstants\">Basic mathematical constant</link>."
msgstr ""
#. BBQTN
@@ -19250,13 +19250,13 @@ msgctxt ""
msgid "<bookmark_value>Cos function</bookmark_value>"
msgstr "<bookmark_value>Funció Cos</bookmark_value>"
-#. BEjXP
+#. XCGJJ
#: 03080102.xhp
msgctxt ""
"03080102.xhp\n"
"hd_id3154923\n"
"help.text"
-msgid "<variable id=\"Cos_h1\"><link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function\">Cos Function</link></variable>"
+msgid "<variable id=\"Cos_h1\"><link href=\"text/sbasic/shared/03080102.xhp\">Cos Function</link></variable>"
msgstr ""
#. EEVjg
@@ -19412,13 +19412,13 @@ msgctxt ""
msgid "<bookmark_value>Sin function</bookmark_value>"
msgstr "<bookmark_value>Funció Sin</bookmark_value>"
-#. pvAzD
+#. 8Q7Jm
#: 03080103.xhp
msgctxt ""
"03080103.xhp\n"
"hd_id3153896\n"
"help.text"
-msgid "<variable id=\"Sin_h1\"><link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function\">Sin Function</link></variable>"
+msgid "<variable id=\"Sin_h1\"><link href=\"text/sbasic/shared/03080103.xhp\">Sin Function</link></variable>"
msgstr ""
#. fEasV
@@ -19574,13 +19574,13 @@ msgctxt ""
msgid "<bookmark_value>Tan function</bookmark_value>"
msgstr "<bookmark_value>Funció Tan</bookmark_value>"
-#. GBYJZ
+#. 8hVBJ
#: 03080104.xhp
msgctxt ""
"03080104.xhp\n"
"hd_id3148550\n"
"help.text"
-msgid "<variable id=\"Tan_h1\"><link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function\">Tan Function</link></variable>"
+msgid "<variable id=\"Tan_h1\"><link href=\"text/sbasic/shared/03080104.xhp\">Tan Function</link></variable>"
msgstr ""
#. juT9e
@@ -19727,14 +19727,14 @@ msgctxt ""
msgid "Exponential and Logarithmic Functions"
msgstr "Funcions exponencials i logarítmiques"
-#. QugjZ
+#. BMwqG
#: 03080200.xhp
msgctxt ""
"03080200.xhp\n"
"hd_id3154758\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=\"Funcions exponencials i logarítmiques\">Funcions exponencials i logarítmiques</link>"
+msgid "<link href=\"text/sbasic/shared/03080200.xhp\">Exponential and Logarithmic Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03080200.xhp\">Funcions exponencials i logarítmiques</link>"
#. 5AGHm
#: 03080200.xhp
@@ -19763,14 +19763,14 @@ msgctxt ""
msgid "<bookmark_value>Exp function</bookmark_value>"
msgstr "<bookmark_value>Funció Exp</bookmark_value>"
-#. HTnJN
+#. EXMZv
#: 03080201.xhp
msgctxt ""
"03080201.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function\">Exp Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Funció Exp\">Funció Exp</link>"
+msgid "<link href=\"text/sbasic/shared/03080201.xhp\">Exp Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080201.xhp\">Funció Exp</link>"
#. Zu9Dr
#: 03080201.xhp
@@ -19862,13 +19862,13 @@ msgctxt ""
msgid "<bookmark_value>Log function</bookmark_value>"
msgstr "<bookmark_value>Funció Log</bookmark_value>"
-#. MjSTm
+#. GutGe
#: 03080202.xhp
msgctxt ""
"03080202.xhp\n"
"hd_id3149416\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function\">Log Function (BASIC)</link>"
+msgid "<link href=\"text/sbasic/shared/03080202.xhp\">Log Function (BASIC)</link>"
msgstr ""
#. g9AWW
@@ -19943,14 +19943,14 @@ msgctxt ""
msgid "Generating Random Numbers"
msgstr "Generació de nombres aleatoris"
-#. z6M3v
+#. CVQ7A
#: 03080300.xhp
msgctxt ""
"03080300.xhp\n"
"hd_id3143270\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generació de nombres aleatoris\">Generació de nombres aleatoris</link>"
+msgid "<link href=\"text/sbasic/shared/03080300.xhp\">Generating Random Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080300.xhp\">Generació de nombres aleatoris</link>"
#. 9oAAh
#: 03080300.xhp
@@ -19979,14 +19979,14 @@ msgctxt ""
msgid "<bookmark_value>Randomize statement</bookmark_value>"
msgstr "<bookmark_value>expressió Randomize</bookmark_value>"
-#. GzBbR
+#. GFvxU
#: 03080301.xhp
msgctxt ""
"03080301.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"heading_randomize\"><link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement\">Randomize Statement</link></variable>"
-msgstr "<variable id=\"heading_randomize\"><link href=\"text/sbasic/shared/03080301.xhp\" name=\"Expressió Randomize\">Expressió Randomize</link></variable>"
+msgid "<variable id=\"heading_randomize\"><link href=\"text/sbasic/shared/03080301.xhp\">Randomize Statement</link></variable>"
+msgstr "<variable id=\"heading_randomize\"><link href=\"text/sbasic/shared/03080301.xhp\">Expressió Randomize</link></variable>"
#. rWksA
#: 03080301.xhp
@@ -20096,14 +20096,14 @@ msgctxt ""
msgid "<bookmark_value>Rnd function</bookmark_value>"
msgstr "<bookmark_value>Funció Rnd</bookmark_value>"
-#. UkA7G
+#. z7xMw
#: 03080302.xhp
msgctxt ""
"03080302.xhp\n"
"hd_id3148685\n"
"help.text"
-msgid "<variable id=\"heading_rnd\"><link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function\">Rnd Function</link></variable>"
-msgstr "<variable id=\"heading_rnd\"><link href=\"text/sbasic/shared/03080302.xhp\" name=\"Funció Rnd\">Funció Rnd</link></variable>"
+msgid "<variable id=\"heading_rnd\"><link href=\"text/sbasic/shared/03080302.xhp\">Rnd Function</link></variable>"
+msgstr "<variable id=\"heading_rnd\"><link href=\"text/sbasic/shared/03080302.xhp\">Funció Rnd</link></variable>"
#. CgGQF
#: 03080302.xhp
@@ -20222,14 +20222,14 @@ msgctxt ""
msgid "Square Root Calculation"
msgstr "Càlcul de l'arrel quadrada"
-#. tF9ZA
+#. jDnzu
#: 03080400.xhp
msgctxt ""
"03080400.xhp\n"
"hd_id3148946\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
-msgstr "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Càlcul de l'arrel quadrada\">Càlcul de l'arrel quadrada</link>"
+msgid "<link href=\"text/sbasic/shared/03080400.xhp\">Square Root Calculation</link>"
+msgstr "<link href=\"text/sbasic/shared/03080400.xhp\">Càlcul de l'arrel quadrada</link>"
#. cR7qM
#: 03080400.xhp
@@ -20258,14 +20258,14 @@ msgctxt ""
msgid "<bookmark_value>Sqr function</bookmark_value>"
msgstr "<bookmark_value>Funció Sqr</bookmark_value>"
-#. Wdcxc
+#. 3vK8N
#: 03080401.xhp
msgctxt ""
"03080401.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function\">Sqr Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Funció Sqr\">Funció Sqr</link>"
+msgid "<link href=\"text/sbasic/shared/03080401.xhp\">Sqr Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080401.xhp\">Funció Sqr</link>"
#. 92Pyd
#: 03080401.xhp
@@ -20348,14 +20348,14 @@ msgctxt ""
msgid "Integers"
msgstr "Enters"
-#. n7D29
+#. dXCCi
#: 03080500.xhp
msgctxt ""
"03080500.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers and Fractional</link>"
-msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Enters\">Enters i fraccionaris</link>"
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\">Integers and Fractional</link>"
+msgstr "<link href=\"text/sbasic/shared/03080500.xhp\">Enters i fraccionaris</link>"
#. GDH6b
#: 03080500.xhp
@@ -20384,14 +20384,14 @@ msgctxt ""
msgid "<bookmark_value>Fix function</bookmark_value>"
msgstr "<bookmark_value>Funció Fix</bookmark_value>"
-#. 2TxpU
+#. mA4HE
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
"hd_id3159201\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Funció Fix\">Funció Fix</link>"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\">Fix Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\">Funció Fix</link>"
#. nDHDK
#: 03080501.xhp
@@ -20447,23 +20447,23 @@ msgctxt ""
msgid "Print Fix(-3.14159) ' returns -3."
msgstr "Print Fix(-3.14159) ' Torna -3."
-#. Ymamx
+#. HRyFR
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
"par_id391546195157714\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Funció Int\">Funció Int</link>"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\">Int Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\">Funció Int</link>"
-#. QhZpR
+#. ZBbCV
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
"par_id51546195168056\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Funció Frac\">Funció Frac</link>"
+msgid "<link href=\"text/sbasic/shared/03080503.xhp\">Frac Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080503.xhp\">Funció Frac</link>"
#. D7BBT
#: 03080502.xhp
@@ -20483,14 +20483,14 @@ msgctxt ""
msgid "<bookmark_value>Int function</bookmark_value>"
msgstr "<bookmark_value>Funció Int</bookmark_value>"
-#. HwiDW
+#. cdtMv
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Funció Int\">Funció Int</link>"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\">Int Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\">Funció Int</link>"
#. urGrY
#: 03080502.xhp
@@ -20546,23 +20546,23 @@ msgctxt ""
msgid "Print Int(-3.14159) ' returns the value -4"
msgstr "Print Int(-3.14159) ' retorna el valor -4"
-#. dGANe
+#. cpG6z
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
"par_id461546195246946\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Funció Fix\">Funció Fix</link>"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\">Fix Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\">Funció Fix</link>"
-#. PWWrL
+#. AZ4TG
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
"par_id51546195168056\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Funció Frac\">Funció Frac</link>"
+msgid "<link href=\"text/sbasic/shared/03080503.xhp\">Frac Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080503.xhp\">Funció Frac</link>"
#. zZFwE
#: 03080503.xhp
@@ -20582,14 +20582,14 @@ msgctxt ""
msgid "<bookmark_value>Frac function</bookmark_value>"
msgstr "<bookmark_value>funció Frac</bookmark_value>"
-#. 6KBuj
+#. 5ExAJ
#: 03080503.xhp
msgctxt ""
"03080503.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Funció Frac\">Funció Frac</link>"
+msgid "<link href=\"text/sbasic/shared/03080503.xhp\">Frac Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080503.xhp\">Funció Frac</link>"
#. AwHT9
#: 03080503.xhp
@@ -20654,23 +20654,23 @@ msgctxt ""
msgid "Print Frac(-3.14159) ' returns the value -0.14159"
msgstr "Print Frac(-3.14159) ' retorna el valor −0,14159"
-#. 4u3Pk
+#. AEbCW
#: 03080503.xhp
msgctxt ""
"03080503.xhp\n"
"par_id461546195246946\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Funció Fix\">Funció Fix</link>"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\">Fix Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\">Funció Fix</link>"
-#. G9EiU
+#. 4AmmH
#: 03080503.xhp
msgctxt ""
"03080503.xhp\n"
"par_id391546195157714\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Funció Int\">Funció Int</link>"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\">Int Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\">Funció Int</link>"
#. BbtLE
#: 03080600.xhp
@@ -20681,14 +20681,14 @@ msgctxt ""
msgid "Absolute Values"
msgstr "Valors absoluts"
-#. THpdK
+#. xyu7E
#: 03080600.xhp
msgctxt ""
"03080600.xhp\n"
"hd_id3146958\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=\"Valors absoluts\">Valors absoluts</link>"
+msgid "<link href=\"text/sbasic/shared/03080600.xhp\">Absolute Values</link>"
+msgstr "<link href=\"text/sbasic/shared/03080600.xhp\">Valors absoluts</link>"
#. L28VB
#: 03080600.xhp
@@ -20717,14 +20717,14 @@ msgctxt ""
msgid "<bookmark_value>Abs function</bookmark_value>"
msgstr "<bookmark_value>Funció Abs</bookmark_value>"
-#. wLbzU
+#. pqK6s
#: 03080601.xhp
msgctxt ""
"03080601.xhp\n"
"hd_id3159201\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function\">Abs Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Funció Abs\">Funció Abs</link>"
+msgid "<link href=\"text/sbasic/shared/03080601.xhp\">Abs Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080601.xhp\">Funció Abs</link>"
#. vGAGF
#: 03080601.xhp
@@ -20834,14 +20834,14 @@ msgctxt ""
msgid "Expression Signs"
msgstr "Signes d'expressió"
-#. EiQHG
+#. ersW6
#: 03080700.xhp
msgctxt ""
"03080700.xhp\n"
"hd_id3150702\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=\"Signes d'expressió\">Signes d'expressió</link>"
+msgid "<link href=\"text/sbasic/shared/03080700.xhp\">Expression Signs</link>"
+msgstr "<link href=\"text/sbasic/shared/03080700.xhp\">Signes d'expressió</link>"
#. zhw5K
#: 03080700.xhp
@@ -20870,14 +20870,14 @@ msgctxt ""
msgid "<bookmark_value>Sgn function</bookmark_value>"
msgstr "<bookmark_value>Funció Sgn</bookmark_value>"
-#. BaCb2
+#. MQwDK
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
"hd_id3148474\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function\">Sgn Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Funció Sgn\">Funció Sgn</link>"
+msgid "<link href=\"text/sbasic/shared/03080701.xhp\">Sgn Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080701.xhp\">Funció Sgn</link>"
#. 7BADP
#: 03080701.xhp
@@ -21041,14 +21041,14 @@ msgctxt ""
msgid "Converting Numbers"
msgstr "Conversió de números"
-#. DDJr9
+#. RPnwu
#: 03080800.xhp
msgctxt ""
"03080800.xhp\n"
"hd_id3145315\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Conversió de números\">Conversió de números</link>"
+msgid "<link href=\"text/sbasic/shared/03080800.xhp\">Converting Numbers</link>"
+msgstr "<link href=\"text/sbasic/shared/03080800.xhp\">Conversió de números</link>"
#. ZRJWv
#: 03080800.xhp
@@ -21077,14 +21077,14 @@ msgctxt ""
msgid "<bookmark_value>Hex function</bookmark_value>"
msgstr "<bookmark_value>Funció Hex</bookmark_value>"
-#. 9DtGW
+#. 4WpqB
#: 03080801.xhp
msgctxt ""
"03080801.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function\">Hex Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Funció Hex\">Funció Hex</link>"
+msgid "<link href=\"text/sbasic/shared/03080801.xhp\">Hex Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080801.xhp\">Funció Hex</link>"
#. X79sx
#: 03080801.xhp
@@ -21203,14 +21203,14 @@ msgctxt ""
msgid "<bookmark_value>Oct function</bookmark_value>"
msgstr "<bookmark_value>Funció Oct</bookmark_value>"
-#. HBZvQ
+#. 8WFiU
#: 03080802.xhp
msgctxt ""
"03080802.xhp\n"
"hd_id3155420\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function\">Oct Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Funció Oct\">Funció Oct</link>"
+msgid "<link href=\"text/sbasic/shared/03080802.xhp\">Oct Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03080802.xhp\">Funció Oct</link>"
#. ApoGj
#: 03080802.xhp
@@ -21293,14 +21293,14 @@ msgctxt ""
msgid "Controlling Program Execution"
msgstr "Control de l'execució del programa"
-#. AjaX7
+#. xoHdj
#: 03090000.xhp
msgctxt ""
"03090000.xhp\n"
"hd_id3145136\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=\"Control de l'execució del programa\">Control de l'execució del programa</link>"
+msgid "<link href=\"text/sbasic/shared/03090000.xhp\">Controlling Program Execution</link>"
+msgstr "<link href=\"text/sbasic/shared/03090000.xhp\">Control de l'execució del programa</link>"
#. s6wg5
#: 03090000.xhp
@@ -21329,14 +21329,14 @@ msgctxt ""
msgid "Condition Statements"
msgstr "Expressions de condició"
-#. 8sarN
+#. GCLBh
#: 03090100.xhp
msgctxt ""
"03090100.xhp\n"
"hd_id3154422\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=\"Expressions Condition\">Expressions Condition</link>"
+msgid "<link href=\"text/sbasic/shared/03090100.xhp\">Condition Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090100.xhp\">Expressions Condition</link>"
#. TLban
#: 03090100.xhp
@@ -21365,13 +21365,13 @@ msgctxt ""
msgid "<bookmark_value>If statement</bookmark_value> <bookmark_value>ElseIf; If statement</bookmark_value> <bookmark_value>Else If;If statement</bookmark_value> <bookmark_value>Else;If statement</bookmark_value> <bookmark_value>Else;If statement</bookmark_value> <bookmark_value>End If;If statement</bookmark_value> <bookmark_value>EndIf;If statement</bookmark_value>"
msgstr ""
-#. iGHxs
+#. rEEbh
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"hd_id81592320644826\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement\">If...Then...Else Statement</link>"
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\">If...Then...Else Statement</link>"
msgstr ""
#. aPd9F
@@ -21509,22 +21509,22 @@ msgctxt ""
msgid "MsgBox \"The expiration date is today\""
msgstr "MsgBox \"La data de venciment és hui\""
-#. 7qi2i
+#. ZSGxr
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"par_id161588865796615\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select Case statement\">Select Case</link> statement"
+msgid "<link href=\"text/sbasic/shared/03090102.xhp\">Select Case</link> statement"
msgstr ""
-#. W4Sgi
+#. knngj
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"par_id281588865818334\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Iif function\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> functions"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\">Switch</link> functions"
msgstr ""
#. ArPEq
@@ -21545,13 +21545,13 @@ msgctxt ""
msgid "<bookmark_value>Select Case statement</bookmark_value> <bookmark_value>Case keyword; in Select Case statement</bookmark_value>"
msgstr ""
-#. 5sc6Y
+#. aFMUq
#: 03090102.xhp
msgctxt ""
"03090102.xhp\n"
"hd_id3149416\n"
"help.text"
-msgid "<variable id=\"Select_h1\"><link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement\">Select...Case Statement</link></variable>"
+msgid "<variable id=\"Select_h1\"><link href=\"text/sbasic/shared/03090102.xhp\">Select...Case Statement</link></variable>"
msgstr ""
#. je8zE
@@ -21698,22 +21698,22 @@ msgctxt ""
msgid "Print \"Out of range 1 to 10\""
msgstr "Print \"Fora de l'interval de l'1 al 10\""
-#. UtJXY
+#. 4x2KT
#: 03090102.xhp
msgctxt ""
"03090102.xhp\n"
"par_id161588865796615\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else statement\">If</link> statement"
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\">If</link> statement"
msgstr ""
-#. mqu6n
+#. uH3m4
#: 03090102.xhp
msgctxt ""
"03090102.xhp\n"
"par_id281588865818334\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Iif function\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> functions"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\">Switch</link> functions"
msgstr ""
#. pm7E8
@@ -21734,13 +21734,13 @@ msgctxt ""
msgid "<bookmark_value>IIf function</bookmark_value>"
msgstr ""
-#. ZvPAM
+#. TfzcA
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
"hd_id3155420\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Function\">IIf Function</link>"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\">IIf Function</link>"
msgstr ""
#. nYxhE
@@ -21806,22 +21806,22 @@ msgctxt ""
msgid "REM Bad usage of function IIf"
msgstr ""
-#. dNxFE
+#. keK5U
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
"par_id161588865796615\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else statement\">If</link> or <link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select Case statement\">Select Case</link> statements"
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\">If</link> or <link href=\"text/sbasic/shared/03090102.xhp\">Select Case</link> statements"
msgstr ""
-#. DjnF7
+#. KxSDU
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
"par_id281588865818334\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> function"
+msgid "<link href=\"text/sbasic/shared/03090410.xhp\">Switch</link> function"
msgstr ""
#. RKALL
@@ -21833,14 +21833,14 @@ msgctxt ""
msgid "Loops"
msgstr "Bucles"
-#. vamnD
+#. NKXNr
#: 03090200.xhp
msgctxt ""
"03090200.xhp\n"
"hd_id3153990\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
-msgstr "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Bucles\">Bucles</link>"
+msgid "<link href=\"text/sbasic/shared/03090200.xhp\">Loops</link>"
+msgstr "<link href=\"text/sbasic/shared/03090200.xhp\">Bucles</link>"
#. gDVek
#: 03090200.xhp
@@ -21869,14 +21869,14 @@ msgctxt ""
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>expressió Do...Loop</bookmark_value> <bookmark_value>While; Do loop</bookmark_value> <bookmark_value>Until</bookmark_value> <bookmark_value>bucles</bookmark_value>"
-#. AFBxo
+#. muTe9
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
"hd_id3156116\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement\">Do...Loop Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Expressió Do… Loop\">Expressió Do… Loop</link>"
+msgid "<link href=\"text/sbasic/shared/03090201.xhp\">Do...Loop Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03090201.xhp\">Expressió Do… Loop</link>"
#. iC6SG
#: 03090201.xhp
@@ -21977,22 +21977,22 @@ msgctxt ""
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 "Utilitzeu l'expressió <emph>Exit Do</emph> per finalitzar incondicionalment el bucle. Podeu afegir esta expressió a qualsevol lloc d'una expressió <emph>Do</emph>...<emph>Loop</emph>. També podeu definir una condició de eixida amb l'estructura <emph>If...Then</emph> de la forma següent:"
-#. pGFcg
+#. FZoqi
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
"par_id161588865796615\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For statement\">For</link>, <link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select Case statement\">Select Case</link> or <link href=\"text/sbasic/shared/03090203.xhp\" name=\"While statement\">While</link> statements"
+msgid "<link href=\"text/sbasic/shared/03090202.xhp\">For</link>, <link href=\"text/sbasic/shared/03090102.xhp\">Select Case</link> or <link href=\"text/sbasic/shared/03090203.xhp\">While</link> statements"
msgstr ""
-#. NEcfM
+#. BB6L9
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
"par_id281588865818334\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Iif function\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> functions"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\">Switch</link> functions"
msgstr ""
#. QECNJ
@@ -22013,14 +22013,14 @@ msgctxt ""
msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>For Each statement</bookmark_value><bookmark_value>In keyword</bookmark_value><bookmark_value>Next keyword</bookmark_value><bookmark_value>Step keyword</bookmark_value><bookmark_value>To keyword</bookmark_value>"
msgstr ""
-#. LVP76
+#. nDNK5
#: 03090202.xhp
msgctxt ""
"03090202.xhp\n"
"hd_id3149205\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement\">For...Next Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"Expressió For… Next\">Expressió For… Next</link>"
+msgid "<link href=\"text/sbasic/shared/03090202.xhp\">For...Next Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03090202.xhp\">Expressió For… Next</link>"
#. AFEvH
#: 03090202.xhp
@@ -22319,14 +22319,14 @@ msgctxt ""
msgid "<bookmark_value>While;While...Wend loop</bookmark_value> <bookmark_value>While;While Wend loop</bookmark_value>"
msgstr ""
-#. 4Gx4Q
+#. piD5w
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement\">While...Wend Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"Expressió While… Wend\">Expressió While… Wend</link>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\">While...Wend Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03090203.xhp\">Expressió While… Wend</link>"
#. QMYRt
#: 03090203.xhp
@@ -22337,13 +22337,13 @@ msgctxt ""
msgid "When a program encounters a <literal>While</literal> statement, it tests the condition. If the condition is <literal>False</literal>, the program continues directly following the <literal>Wend</literal> statement. If the condition is <literal>True</literal>, the loop is executed until the program finds <literal>Wend</literal> and then jumps back to the <emph>While</emph> statement. If the condition is still <literal>True</literal>, the loop is executed again."
msgstr ""
-#. 2WnLN
+#. McvNv
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id3151041\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 <literal>While...Wend</literal> loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
+msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\">Exit</link>. Never exit a <literal>While...Wend</literal> loop with <link href=\"text/sbasic/shared/03090302.xhp\">GoTo</link>, since this can cause a run-time error."
msgstr ""
#. s8j22
@@ -22382,22 +22382,22 @@ msgctxt ""
msgid "MsgBox sText,0,\"Text encoded\""
msgstr "MsgBox sText,0,\"Text codificat\""
-#. iADnG
+#. Tu4uw
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id161588865796615\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop statement\">Do...Until</link> or <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...While statement\">Do...While</link> statement"
+msgid "<link href=\"text/sbasic/shared/03090201.xhp\">Do...Until</link> or <link href=\"text/sbasic/shared/03090201.xhp\">Do...While</link> statement"
msgstr ""
-#. JAoLW
+#. CroFU
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id281588865818334\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit statement\">Exit</link> statement"
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\">Exit</link> statement"
msgstr ""
#. kSjtx
@@ -22409,14 +22409,14 @@ msgctxt ""
msgid "Jumps"
msgstr "Salts"
-#. YJd94
+#. hMrhK
#: 03090300.xhp
msgctxt ""
"03090300.xhp\n"
"hd_id3151262\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
-msgstr "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Salts\">Salts</link>"
+msgid "<link href=\"text/sbasic/shared/03090300.xhp\">Jumps</link>"
+msgstr "<link href=\"text/sbasic/shared/03090300.xhp\">Salts</link>"
#. eLVNY
#: 03090300.xhp
@@ -22445,13 +22445,13 @@ msgctxt ""
msgid "<bookmark_value>GoSub...Return statement</bookmark_value> <bookmark_value>label; in GoSub...Return statement</bookmark_value>"
msgstr ""
-#. gVEdC
+#. cfNGR
#: 03090301.xhp
msgctxt ""
"03090301.xhp\n"
"hd_id3147242\n"
"help.text"
-msgid "<variable id=\"GoSubh1\"><link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement\">GoSub...Return Statement</link></variable>"
+msgid "<variable id=\"GoSubh1\"><link href=\"text/sbasic/shared/03090301.xhp\">GoSub...Return Statement</link></variable>"
msgstr ""
#. HSYep
@@ -22589,13 +22589,13 @@ msgctxt ""
msgid "<bookmark_value>GoTo statement</bookmark_value> <bookmark_value>label; in GoTo statement</bookmark_value>"
msgstr ""
-#. 6PsQf
+#. cLxHY
#: 03090302.xhp
msgctxt ""
"03090302.xhp\n"
"hd_id3159413\n"
"help.text"
-msgid "<variable id=\"GoToh1\"><link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement\">GoTo Statement</link></variable>"
+msgid "<variable id=\"GoToh1\"><link href=\"text/sbasic/shared/03090302.xhp\">GoTo Statement</link></variable>"
msgstr ""
#. zmo8E
@@ -22706,13 +22706,13 @@ msgctxt ""
msgid "<bookmark_value>On...GoSub statement</bookmark_value> <bookmark_value>On...GoTo statement</bookmark_value> <bookmark_value>label; in On...GoSub statement</bookmark_value> <bookmark_value>label; in On...GoTo statement</bookmark_value>"
msgstr ""
-#. 2xMSm
+#. nDExE
#: 03090303.xhp
msgctxt ""
"03090303.xhp\n"
"hd_id3153897\n"
"help.text"
-msgid "<variable id=\"OnGoSubGoToh1\"><link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement\">On...GoSub Statement; On...GoTo Statement</link></variable>"
+msgid "<variable id=\"OnGoSubGoToh1\"><link href=\"text/sbasic/shared/03090303.xhp\">On...GoSub Statement; On...GoTo Statement</link></variable>"
msgstr ""
#. 9AaZW
@@ -22823,14 +22823,14 @@ msgctxt ""
msgid "Further Statements"
msgstr "Més expressions"
-#. xxBLj
+#. ML48g
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
"hd_id3145316\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=\"Més expressions\">Més expressions</link>"
+msgid "<link href=\"text/sbasic/shared/03090400.xhp\">Further Statements</link>"
+msgstr "<link href=\"text/sbasic/shared/03090400.xhp\">Més expressions</link>"
#. qFvDF
#: 03090400.xhp
@@ -22859,22 +22859,22 @@ msgctxt ""
msgid "<bookmark_value>Call statement</bookmark_value>"
msgstr "<bookmark_value>expressió Call</bookmark_value>"
-#. HW8av
+#. ynyEA
#: 03090401.xhp
msgctxt ""
"03090401.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<variable id=\"Call_h1\"><link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">Call Statement</link></variable>"
+msgid "<variable id=\"Call_h1\"><link href=\"text/sbasic/shared/03090401.xhp\">Call Statement</link></variable>"
msgstr ""
-#. nPKzF
+#. FdEBA
#: 03090401.xhp
msgctxt ""
"03090401.xhp\n"
"par_id3153394\n"
"help.text"
-msgid "Transfers the control of the program to a subroutine, a function, or a procedure of a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">Dynamic Link Library (DLL)</link>. The keyword, type and number of parameters is dependent on the routine that is being called."
+msgid "Transfers the control of the program to a subroutine, a function, or a procedure of a <link href=\"text/sbasic/shared/03090403.xhp\">Dynamic Link Library (DLL)</link>. The keyword, type and number of parameters is dependent on the routine that is being called."
msgstr ""
#. CXLBw
@@ -22895,13 +22895,13 @@ msgctxt ""
msgid "[Call] name [(] [param :=] value, ... [)]"
msgstr ""
-#. C2MXB
+#. 75EPa
#: 03090401.xhp
msgctxt ""
"03090401.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "<emph>name:</emph> Name of the subroutine, the function, or the <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">DLL</link> that you want to call"
+msgid "<emph>name:</emph> Name of the subroutine, the function, or the <link href=\"text/sbasic/shared/03090403.xhp\">DLL</link> that you want to call"
msgstr ""
#. 23rrr
@@ -22931,13 +22931,13 @@ msgctxt ""
msgid "When mixing positional and keyword parameters, make sure positional parameters are following the routine declaration order."
msgstr ""
-#. xFXk8
+#. cLUAB
#: 03090401.xhp
msgctxt ""
"03090401.xhp\n"
"par_id3154216\n"
"help.text"
-msgid "When a function is used as an expression, enclosing parameters with brackets becomes necessary. Using a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Declare statement</link> is compulsory prior to call a DLL."
+msgid "When a function is used as an expression, enclosing parameters with brackets becomes necessary. Using a <link href=\"text/sbasic/shared/03090403.xhp\">Declare statement</link> is compulsory prior to call a DLL."
msgstr ""
#. eyeVE
@@ -22958,13 +22958,13 @@ msgctxt ""
msgid "<bookmark_value>Choose function</bookmark_value>"
msgstr "<bookmark_value>Funció Choose</bookmark_value>"
-#. xBTpx
+#. acMxU
#: 03090402.xhp
msgctxt ""
"03090402.xhp\n"
"hd_id3143271\n"
"help.text"
-msgid "<variable id=\"Choose_h1\"><link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function\">Choose Function</link></variable>"
+msgid "<variable id=\"Choose_h1\"><link href=\"text/sbasic/shared/03090402.xhp\">Choose Function</link></variable>"
msgstr ""
#. mSQHZ
@@ -23075,14 +23075,14 @@ msgctxt ""
msgid "<bookmark_value>Declare statement</bookmark_value>"
msgstr "<bookmark_value>expressió Declare</bookmark_value>"
-#. EdjGK
+#. 9FWFc
#: 03090403.xhp
msgctxt ""
"03090403.xhp\n"
"hd_id3148473\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Declare Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Expressió Declare\">Expressió Declare</link>"
+msgid "<link href=\"text/sbasic/shared/03090403.xhp\">Declare Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03090403.xhp\">Expressió Declare</link>"
#. prHYx
#: 03090403.xhp
@@ -23102,14 +23102,14 @@ msgctxt ""
msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
msgstr "Declara i defineix una subrutina en un fitxer de DLL que voleu executar des del $[officename] Basic."
-#. zvxCx
+#. zD3YU
#: 03090403.xhp
msgctxt ""
"03090403.xhp\n"
"par_id3146795\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
+msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\">FreeLibrary</link>"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03090405.xhp\">FreeLibrary</link>"
#. X9NcC
#: 03090403.xhp
@@ -23219,14 +23219,14 @@ msgctxt ""
msgid "<bookmark_value>End statement</bookmark_value>"
msgstr "<bookmark_value>expressió End</bookmark_value>"
-#. DzB6L
+#. 2XaKk
#: 03090404.xhp
msgctxt ""
"03090404.xhp\n"
"hd_id3150771\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement\">End Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"Expressió End\">Expressió End</link>"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\">End Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03090404.xhp\">Expressió End</link>"
#. s5S7Q
#: 03090404.xhp
@@ -23408,23 +23408,23 @@ msgctxt ""
msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
msgstr "<bookmark_value>Funció FreeLibrary</bookmark_value>"
-#. 99F9U
+#. emy4u
#: 03090405.xhp
msgctxt ""
"03090405.xhp\n"
"hd_id3143270\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function\">FreeLibrary Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"Funció FreeLibrary\">Funció FreeLibrary</link>"
+msgid "<link href=\"text/sbasic/shared/03090405.xhp\">FreeLibrary Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03090405.xhp\">Funció FreeLibrary</link>"
-#. BBTbS
+#. r8bFB
#: 03090405.xhp
msgctxt ""
"03090405.xhp\n"
"par_id3147559\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 "Allibera les DLL que es van carregar amb una expressió Declare. Una DLL alliberada es recarrega automàticament si es crida una de les seues funcions. Vegeu també: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
+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\">Declare</link>"
+msgstr "Allibera les DLL que es van carregar amb una expressió Declare. Una DLL alliberada es recarrega automàticament si es crida una de les seues funcions. Vegeu també: <link href=\"text/sbasic/shared/03090403.xhp\">Declare</link>"
#. 4Dgqd
#: 03090405.xhp
@@ -23498,13 +23498,13 @@ msgctxt ""
msgid "<bookmark_value>Function statement</bookmark_value>"
msgstr "<bookmark_value>expressió Function</bookmark_value>"
-#. 4AZJf
+#. kny6X
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"hd_id3153346\n"
"help.text"
-msgid "<variable id=\"Function_h1\"><link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">Function Statement</link></variable>"
+msgid "<variable id=\"Function_h1\"><link href=\"text/sbasic/shared/03090406.xhp\">Function Statement</link></variable>"
msgstr ""
#. i3BLj
@@ -23633,13 +23633,13 @@ msgctxt ""
msgid "Exit For ' sItem found"
msgstr "Exit For ' sItem trobat"
-#. FTf7A
+#. YSmVG
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"par_id181647247913872\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\">Subroutines basics</link>"
msgstr ""
#. yZEAJ
@@ -23660,13 +23660,13 @@ msgctxt ""
msgid "<bookmark_value>Rem statement</bookmark_value> <bookmark_value>comments;Rem statement</bookmark_value>"
msgstr "<bookmark_value>expressió Rem</bookmark_value> <bookmark_value>comentaris;expressió Rem</bookmark_value>"
-#. FgQDY
+#. Jha5e
#: 03090407.xhp
msgctxt ""
"03090407.xhp\n"
"hd_id3154347\n"
"help.text"
-msgid "<variable id=\"remstatement\"><link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement\">Rem Statement</link></variable>"
+msgid "<variable id=\"remstatement\"><link href=\"text/sbasic/shared/03090407.xhp\">Rem Statement</link></variable>"
msgstr ""
#. 2fJEm
@@ -23732,14 +23732,14 @@ msgctxt ""
msgid "<bookmark_value>Stop statement</bookmark_value>"
msgstr "<bookmark_value>expressió Stop</bookmark_value>"
-#. xasPB
+#. WPPbc
#: 03090408.xhp
msgctxt ""
"03090408.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement\">Stop Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Expressió Stop\">Expressió Stop</link>"
+msgid "<link href=\"text/sbasic/shared/03090408.xhp\">Stop Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03090408.xhp\">Expressió Stop</link>"
#. mFJE4
#: 03090408.xhp
@@ -23777,13 +23777,13 @@ msgctxt ""
msgid "<bookmark_value>Sub statement</bookmark_value>"
msgstr "<bookmark_value>expressió Sub</bookmark_value>"
-#. ZjnGN
+#. eRCuT
#: 03090409.xhp
msgctxt ""
"03090409.xhp\n"
"hd_id3147226\n"
"help.text"
-msgid "<variable id=\"Sub_h1\"><link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement\">Sub Statement</link></variable>"
+msgid "<variable id=\"Sub_h1\"><link href=\"text/sbasic/shared/03090409.xhp\">Sub Statement</link></variable>"
msgstr ""
#. YELg8
@@ -23840,13 +23840,13 @@ msgctxt ""
msgid "<emph>arguments:</emph> Optional parameters that you want to pass to the subroutine."
msgstr ""
-#. gPQ9W
+#. xyFGR
#: 03090409.xhp
msgctxt ""
"03090409.xhp\n"
"par_id181647247913872\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\">Subroutines basics</link>"
msgstr ""
#. CCDzt
@@ -23867,13 +23867,13 @@ msgctxt ""
msgid "<bookmark_value>Switch function</bookmark_value>"
msgstr "<bookmark_value>Funció Switch</bookmark_value>"
-#. KAwzM
+#. s4MEf
#: 03090410.xhp
msgctxt ""
"03090410.xhp\n"
"hd_id3148554\n"
"help.text"
-msgid "<variable id=\"Switch_h1\"><link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function\">Switch Function</link></variable>"
+msgid "<variable id=\"Switch_h1\"><link href=\"text/sbasic/shared/03090410.xhp\">Switch Function</link></variable>"
msgstr ""
#. yBnoz
@@ -23957,14 +23957,14 @@ msgctxt ""
msgid "<bookmark_value>With statement</bookmark_value>"
msgstr "<bookmark_value>expressió With</bookmark_value>"
-#. JzE2a
+#. QCp6n
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Expressió With\">Expressió With</link>"
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\">With Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03090411.xhp\">Expressió With</link>"
#. 3GcPs
#: 03090411.xhp
@@ -24002,13 +24002,13 @@ msgctxt ""
msgid "Nesting <literal>With</literal> statements helps writing and reading Basic routines."
msgstr ""
-#. C8YyY
+#. MEBvy
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
"par_id921606840180540\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\">Type Statement</link>"
msgstr ""
#. zLuzY
@@ -24029,14 +24029,14 @@ msgctxt ""
msgid "<bookmark_value>Exit statement</bookmark_value>"
msgstr "<bookmark_value>expressió Exit</bookmark_value>"
-#. DqJrY
+#. nZPqc
#: 03090412.xhp
msgctxt ""
"03090412.xhp\n"
"hd_id3152924\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement\">Exit Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Expressió Exit\">Expressió Exit</link>"
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\">Exit Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03090412.xhp\">Expressió Exit</link>"
#. Kmb47
#: 03090412.xhp
@@ -24164,13 +24164,13 @@ msgctxt ""
msgid "<bookmark_value>Type statement</bookmark_value>"
msgstr "<bookmark_value>expressió Type</bookmark_value>"
-#. pipio
+#. 9LuBk
#: 03090413.xhp
msgctxt ""
"03090413.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<variable id=\"Type_h1\"><link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link></variable>"
+msgid "<variable id=\"Type_h1\"><link href=\"text/sbasic/shared/03090413.xhp\">Type Statement</link></variable>"
msgstr ""
#. TYvyD
@@ -24200,13 +24200,13 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Type_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Type statement diagram</alt></image>"
msgstr ""
-#. sSoso
+#. edCVA
#: 03090413.xhp
msgctxt ""
"03090413.xhp\n"
"par_id701574739564765\n"
"help.text"
-msgid "Extended types such as <literal>Type</literal> statement structures, UNO objects or <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule\">ClassModule</link> objects are valid typenames."
+msgid "Extended types such as <literal>Type</literal> statement structures, UNO objects or <link href=\"text/sbasic/shared/classmodule.xhp\">ClassModule</link> objects are valid typenames."
msgstr ""
#. TTALN
@@ -24218,23 +24218,23 @@ msgctxt ""
msgid "A Type structure scope is that of the module it belongs to."
msgstr ""
-#. eGJzD
+#. TtH8F
#: 03090413.xhp
msgctxt ""
"03090413.xhp\n"
"par_id701573639564765\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"enumerations\">Enumerations</link> can be created using Type statement definitions. <link href=\"text/sbasic/guide/basic_2_python.xhp\" name=\"Calling Python Scripts from Basic\">Calling Python Scripts from Basic</link> illustrates that mechanism."
+msgid "<link href=\"text/sbasic/shared/enum.xhp\">Enumerations</link> can be created using Type statement definitions. <link href=\"text/sbasic/guide/basic_2_python.xhp\">Calling Python Scripts from Basic</link> illustrates that mechanism."
msgstr ""
-#. 2VyE8
+#. iSJAV
#: 03090413.xhp
msgctxt ""
"03090413.xhp\n"
"par_id211512215755793\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132400.xhp\" name=\"CreateObject function\">CreateObject function</link>"
-msgstr "<link href=\"text/sbasic/shared/03132400.xhp\" name=\"Funció CreateObject\">Funció CreateObject</link>"
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject function</link>"
+msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">Funció CreateObject</link>"
#. AQRhq
#: 03100000.xhp
@@ -24245,14 +24245,14 @@ msgctxt ""
msgid "Variables"
msgstr "Variables"
-#. YBCXD
+#. mK5W5
#: 03100000.xhp
msgctxt ""
"03100000.xhp\n"
"hd_id3149669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
-msgstr "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+msgid "<link href=\"text/sbasic/shared/03100000.xhp\">Variables</link>"
+msgstr "<link href=\"text/sbasic/shared/03100000.xhp\">Variables</link>"
#. 9BAUk
#: 03100000.xhp
@@ -24614,13 +24614,13 @@ msgctxt ""
msgid "<bookmark_value>CBool function</bookmark_value>"
msgstr "<bookmark_value>Funció CBool</bookmark_value>"
-#. wkGF9
+#. g6FfB
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"CBool_h1\"><link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function\">CBool Function</link></variable>"
+msgid "<variable id=\"CBool_h1\"><link href=\"text/sbasic/shared/03100100.xhp\">CBool Function</link></variable>"
msgstr ""
#. fENzo
@@ -24650,13 +24650,13 @@ msgctxt ""
msgid "Boolean"
msgstr ""
-#. ZqnCA
+#. BCw6W
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id791636986444058\n"
"help.text"
-msgid "<emph>expression</emph>: A logical expression, a mathematical formula, a numeric expression or a set of expressions combined with operators. During expression evaluation <link href=\"text/sbasic/shared/03060000.xhp\" name=\"logical operators\">logical operators</link> take preceedence over <link href=\"text/sbasic/shared/03110100.xhp\" name=\"comparison operators\">comparison operators</link>, which in turn take preceedence over <link href=\"text/sbasic/shared/03070000.xhp\" name=\"mathematical operators\">mathematical operators</link>."
+msgid "<emph>expression</emph>: A logical expression, a mathematical formula, a numeric expression or a set of expressions combined with operators. During expression evaluation <link href=\"text/sbasic/shared/03060000.xhp\">logical operators</link> take preceedence over <link href=\"text/sbasic/shared/03110100.xhp\">comparison operators</link>, which in turn take preceedence over <link href=\"text/sbasic/shared/03070000.xhp\">mathematical operators</link>."
msgstr ""
#. LEuzF
@@ -24668,13 +24668,13 @@ msgctxt ""
msgid "The <literal>expression</literal> can be a number or mathematical formula. When equals to 0, <literal>False</literal> is returned, otherwise <literal>True</literal> is returned."
msgstr ""
-#. 4jZzA
+#. KRa9G
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id3149655\n"
"help.text"
-msgid "Multiple expressions such as <input>expr1 [[{operator] expr2]..]</input> can be combined. <input>expr1</input> and <input>expr2</input> can be any string or numeric expressions that you want to evaluate. <literal>CBool</literal> combines the expressions and returns either <literal>True</literal> or <literal>False</literal>. <input>operator</input> can be a <link href=\"text/sbasic/shared/03070000.xhp\" name=\"mathematical operator\">mathematical operator</link>, <link href=\"text/sbasic/shared/03060000.xhp\" name=\"logical operator\">logical operator</link> or <link href=\"text/sbasic/shared/03110100.xhp\" name=\"comparison operator\">comparison operator</link>."
+msgid "Multiple expressions such as <input>expr1 [[{operator] expr2]..]</input> can be combined. <input>expr1</input> and <input>expr2</input> can be any string or numeric expressions that you want to evaluate. <literal>CBool</literal> combines the expressions and returns either <literal>True</literal> or <literal>False</literal>. <input>operator</input> can be a <link href=\"text/sbasic/shared/03070000.xhp\">mathematical operator</link>, <link href=\"text/sbasic/shared/03060000.xhp\">logical operator</link> or <link href=\"text/sbasic/shared/03110100.xhp\">comparison operator</link>."
msgstr ""
#. Fvovz
@@ -24767,14 +24767,14 @@ msgctxt ""
msgid "<bookmark_value>CDate function</bookmark_value>"
msgstr "<bookmark_value>Funció CDate</bookmark_value>"
-#. nCwCG
+#. 7Sonr
#: 03100300.xhp
msgctxt ""
"03100300.xhp\n"
"hd_id3150772\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function\">CDate Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"Funció CDate\">Funció CDate</link>"
+msgid "<link href=\"text/sbasic/shared/03100300.xhp\">CDate Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03100300.xhp\">Funció CDate</link>"
#. DYpHk
#: 03100300.xhp
@@ -24839,14 +24839,14 @@ msgctxt ""
msgid "<bookmark_value>CDbl function</bookmark_value>"
msgstr "<bookmark_value>Funció CDbl</bookmark_value>"
-#. eByNV
+#. srMKR
#: 03100400.xhp
msgctxt ""
"03100400.xhp\n"
"hd_id3153750\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function\">CDbl Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"Funció CDbl\">Funció CDbl</link>"
+msgid "<link href=\"text/sbasic/shared/03100400.xhp\">CDbl Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03100400.xhp\">Funció CDbl</link>"
#. EwDaU
#: 03100400.xhp
@@ -24884,14 +24884,14 @@ msgctxt ""
msgid "<bookmark_value>CInt function</bookmark_value>"
msgstr "<bookmark_value>Funció CInt</bookmark_value>"
-#. 4QpXT
+#. zGC6k
#: 03100500.xhp
msgctxt ""
"03100500.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function\">CInt Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"Funció CInt\">Funció CInt</link>"
+msgid "<link href=\"text/sbasic/shared/03100500.xhp\">CInt Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03100500.xhp\">Funció CInt</link>"
#. dESLg
#: 03100500.xhp
@@ -25001,14 +25001,14 @@ msgctxt ""
msgid "<bookmark_value>CLng function</bookmark_value>"
msgstr "<bookmark_value>Funció CLng</bookmark_value>"
-#. mfcTR
+#. eNxuW
#: 03100600.xhp
msgctxt ""
"03100600.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function\">CLng Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"Funció CLng\">Funció CLng</link>"
+msgid "<link href=\"text/sbasic/shared/03100600.xhp\">CLng Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03100600.xhp\">Funció CLng</link>"
#. aLcQC
#: 03100600.xhp
@@ -25064,13 +25064,13 @@ msgctxt ""
msgid "<bookmark_value>Const statement</bookmark_value>"
msgstr "<bookmark_value>expressió Const</bookmark_value>"
-#. BnbzF
+#. KSFiw
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
"hd_id3146958\n"
"help.text"
-msgid "<variable id=\"const_h1\"><link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement\">Const Statement</link></variable>"
+msgid "<variable id=\"const_h1\"><link href=\"text/sbasic/shared/03100700.xhp\">Const Statement</link></variable>"
msgstr ""
#. xPBxj
@@ -25217,22 +25217,22 @@ msgctxt ""
msgid "MsgBox SUN,, MOON ' SUN global constant is unchanged"
msgstr ""
-#. e9BxY
+#. FAHwE
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
"par_id111593694878677\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum\">Enum</link> statement"
+msgid "<link href=\"text/sbasic/shared/enum.xhp\">Enum</link> statement"
msgstr ""
-#. ZYFUV
+#. 8yhh2
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
"par_id111953694878677\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Enum\">Type</link> statement"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\">Type</link> statement"
msgstr ""
#. FmimE
@@ -25253,14 +25253,14 @@ msgctxt ""
msgid "<bookmark_value>CSng function</bookmark_value>"
msgstr "<bookmark_value>Funció CSng</bookmark_value>"
-#. 5x5UH
+#. oYHMQ
#: 03100900.xhp
msgctxt ""
"03100900.xhp\n"
"hd_id3153753\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"CSng Function\">CSng Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"Funció CSng\">Funció CSng</link>"
+msgid "<link href=\"text/sbasic/shared/03100900.xhp\">CSng Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03100900.xhp\">Funció CSng</link>"
#. 8RgCe
#: 03100900.xhp
@@ -25280,22 +25280,22 @@ msgctxt ""
msgid "CSng (Expression As Variant) As Single"
msgstr ""
-#. ZodWe
+#. x4B4M
#: 03100900.xhp
msgctxt ""
"03100900.xhp\n"
"par_id3153897\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 using a dot \".\" as the decimal point and a comma \",\" as the thousands separator (for instance 123,456.78), which may differ from your %PRODUCTNAME <link href=\"text/shared/optionen/01140000.xhp\" name=\"language settings\">language settings</link>."
+msgid "<emph>Expression</emph>: Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered using a dot \".\" as the decimal point and a comma \",\" as the thousands separator (for instance 123,456.78), which may differ from your %PRODUCTNAME <link href=\"text/shared/optionen/01140000.xhp\">language settings</link>."
msgstr ""
-#. hD5Lk
+#. tgSuU
#: 03100900.xhp
msgctxt ""
"03100900.xhp\n"
"par_id761652451117906\n"
"help.text"
-msgid "Numeric expressions are displayed according to %PRODUCTNAME <link href=\"text/shared/optionen/01140000.xhp\" name=\"language settings\">language settings</link>:"
+msgid "Numeric expressions are displayed according to %PRODUCTNAME <link href=\"text/shared/optionen/01140000.xhp\">language settings</link>:"
msgstr ""
#. DirnZ
@@ -25352,14 +25352,14 @@ msgctxt ""
msgid "<bookmark_value>CStr function</bookmark_value>"
msgstr "<bookmark_value>Funció CStr</bookmark_value>"
-#. kRSvD
+#. DQkiY
#: 03101000.xhp
msgctxt ""
"03101000.xhp\n"
"hd_id3146958\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function\">CStr Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"Funció CStr\">Funció CStr</link>"
+msgid "<link href=\"text/sbasic/shared/03101000.xhp\">CStr Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03101000.xhp\">Funció CStr</link>"
#. 3CEMW
#: 03101000.xhp
@@ -25505,14 +25505,14 @@ msgctxt ""
msgid "<bookmark_value>DefBool statement</bookmark_value>"
msgstr "<bookmark_value>expressió DefBool</bookmark_value>"
-#. DFbBc
+#. 4sW4T
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
"hd_id3145759\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement\">DefBool Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"Expressió DefBool\">Expressió DefBool</link>"
+msgid "<link href=\"text/sbasic/shared/03101100.xhp\">DefBool Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03101100.xhp\">Expressió DefBool</link>"
#. JCPLq
#: 03101100.xhp
@@ -25802,14 +25802,14 @@ msgctxt ""
msgid "<bookmark_value>DefDate statement</bookmark_value>"
msgstr "<bookmark_value>expressió DefDate</bookmark_value>"
-#. CFt2k
+#. 8jkba
#: 03101300.xhp
msgctxt ""
"03101300.xhp\n"
"hd_id3150504\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement\">DefDate Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"Expressió DefDate\">Expressió DefDate</link>"
+msgid "<link href=\"text/sbasic/shared/03101300.xhp\">DefDate Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03101300.xhp\">Expressió DefDate</link>"
#. 7EJB8
#: 03101300.xhp
@@ -25856,14 +25856,14 @@ msgctxt ""
msgid "<bookmark_value>DefDbl statement</bookmark_value>"
msgstr "<bookmark_value>expressió DefDbl</bookmark_value>"
-#. AcRJZ
+#. gX7T8
#: 03101400.xhp
msgctxt ""
"03101400.xhp\n"
"hd_id3147242\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement\">DefDbl Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"Expressió DefDbl\">Expressió DefDbl</link>"
+msgid "<link href=\"text/sbasic/shared/03101400.xhp\">DefDbl Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03101400.xhp\">Expressió DefDbl</link>"
#. gJGCw
#: 03101400.xhp
@@ -25910,14 +25910,14 @@ msgctxt ""
msgid "<bookmark_value>DefInt statement</bookmark_value>"
msgstr "<bookmark_value>expressió DefInt</bookmark_value>"
-#. zFBiu
+#. 2Fhxz
#: 03101500.xhp
msgctxt ""
"03101500.xhp\n"
"hd_id3149811\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement\">DefInt Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"Expressió DefInt\">Expressió DefInt</link>"
+msgid "<link href=\"text/sbasic/shared/03101500.xhp\">DefInt Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03101500.xhp\">Expressió DefInt</link>"
#. 8QFfR
#: 03101500.xhp
@@ -25964,14 +25964,14 @@ msgctxt ""
msgid "<bookmark_value>DefLng statement</bookmark_value>"
msgstr "<bookmark_value>expressió DefLng</bookmark_value>"
-#. SEAJt
+#. z3DrG
#: 03101600.xhp
msgctxt ""
"03101600.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement\">DefLng Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"Expressió DefLng\">Expressió DefLng</link>"
+msgid "<link href=\"text/sbasic/shared/03101600.xhp\">DefLng Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03101600.xhp\">Expressió DefLng</link>"
#. RECCG
#: 03101600.xhp
@@ -26018,14 +26018,14 @@ msgctxt ""
msgid "<bookmark_value>DefObj statement</bookmark_value>"
msgstr "<bookmark_value>expressió DefObj</bookmark_value>"
-#. FinA5
+#. 3DF7A
#: 03101700.xhp
msgctxt ""
"03101700.xhp\n"
"hd_id3149811\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement\">DefObj Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"Expressió DefObj\">Expressió DefObj</link>"
+msgid "<link href=\"text/sbasic/shared/03101700.xhp\">DefObj Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03101700.xhp\">Expressió DefObj</link>"
#. vzCDm
#: 03101700.xhp
@@ -26063,14 +26063,14 @@ msgctxt ""
msgid "<bookmark_value>DefVar statement</bookmark_value>"
msgstr "<bookmark_value>expressió DefVar</bookmark_value>"
-#. vrP75
+#. 2a43C
#: 03102000.xhp
msgctxt ""
"03102000.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement\">DefVar Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"Expressió DefVar\">Expressió DefVar</link>"
+msgid "<link href=\"text/sbasic/shared/03102000.xhp\">DefVar Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03102000.xhp\">Expressió DefVar</link>"
#. rLx6D
#: 03102000.xhp
@@ -26126,13 +26126,13 @@ msgctxt ""
msgid "<bookmark_value>Dim statement</bookmark_value> <bookmark_value>arrays; dimensioning</bookmark_value> <bookmark_value>dimensioning arrays</bookmark_value>"
msgstr "<bookmark_value>expressió Dim</bookmark_value> <bookmark_value>matrius; redimensionament</bookmark_value> <bookmark_value>redimensionament de matrius</bookmark_value>"
-#. HnQSe
+#. ESKNC
#: 03102100.xhp
msgctxt ""
"03102100.xhp\n"
"hd_id3149812\n"
"help.text"
-msgid "<variable id=\"Dimh1\"><link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement\">Dim Statement</link></variable>"
+msgid "<variable id=\"Dimh1\"><link href=\"text/sbasic/shared/03102100.xhp\">Dim Statement</link></variable>"
msgstr ""
#. 9gRSS
@@ -26180,13 +26180,13 @@ msgctxt ""
msgid "Dim variable [(start To end)] [As typename][, variable2[char] [(start To end)] [,...]]"
msgstr ""
-#. yZw2F
+#. LHb6y
#: 03102100.xhp
msgctxt ""
"03102100.xhp\n"
"par_id221651071987432\n"
"help.text"
-msgid "<literal>New</literal> operator is optional when setting <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> option."
+msgid "<literal>New</literal> operator is optional when setting <link href=\"text/sbasic/shared/compatible.xhp\">Option Compatible</link> option."
msgstr ""
#. JBuCh
@@ -26315,13 +26315,13 @@ msgctxt ""
msgid "<emph>Variant:</emph> Variant variable type (contains all types, specified by definition). If a type name is not specified, variables are automatically defined as Variant Type, unless a statement from <literal>DefBool</literal> to <literal>DefVar</literal> is used."
msgstr ""
-#. 2GyLr
+#. JGjKs
#: 03102100.xhp
msgctxt ""
"03102100.xhp\n"
"par_id21587667790810\n"
"help.text"
-msgid "<emph>object:</emph> Universal Network object (UNO) object or <link href=\"text/sbasic/shared/classmodule\" name=\"Class module\">ClassModule</link> object instance."
+msgid "<emph>object:</emph> Universal Network object (UNO) object or <link href=\"text/sbasic/shared/classmodule\">ClassModule</link> object instance."
msgstr ""
#. NbDcm
@@ -26495,14 +26495,14 @@ msgctxt ""
msgid "<bookmark_value>ReDim statement</bookmark_value>"
msgstr "<bookmark_value>expressió ReDim</bookmark_value>"
-#. yLRec
+#. EWARY
#: 03102101.xhp
msgctxt ""
"03102101.xhp\n"
"hd_id3150398\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim Statement\">ReDim Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"Expressió ReDim\">Expressió ReDim</link>"
+msgid "<link href=\"text/sbasic/shared/03102101.xhp\">ReDim Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03102101.xhp\">Expressió ReDim</link>"
#. F9HMw
#: 03102101.xhp
@@ -26567,14 +26567,14 @@ msgctxt ""
msgid "<bookmark_value>IsArray function</bookmark_value>"
msgstr "<bookmark_value>Funció IsArray</bookmark_value>"
-#. CZhKF
+#. JfFRY
#: 03102200.xhp
msgctxt ""
"03102200.xhp\n"
"hd_id3154346\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function\">IsArray Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"Funció IsArray\">Funció IsArray</link>"
+msgid "<link href=\"text/sbasic/shared/03102200.xhp\">IsArray Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03102200.xhp\">Funció IsArray</link>"
#. 6uXeM
#: 03102200.xhp
@@ -26657,14 +26657,14 @@ msgctxt ""
msgid "<bookmark_value>IsDate function</bookmark_value>"
msgstr "<bookmark_value>Funció IsDate</bookmark_value>"
-#. yNKXW
+#. AeABQ
#: 03102300.xhp
msgctxt ""
"03102300.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function\">IsDate Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"Funció IsDate\">Funció IsDate</link>"
+msgid "<link href=\"text/sbasic/shared/03102300.xhp\">IsDate Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03102300.xhp\">Funció IsDate</link>"
#. GHcvs
#: 03102300.xhp
@@ -26747,14 +26747,14 @@ msgctxt ""
msgid "<bookmark_value>IsEmpty function</bookmark_value>"
msgstr "<bookmark_value>Funció IsEmpty</bookmark_value>"
-#. X7Hn4
+#. XoSo2
#: 03102400.xhp
msgctxt ""
"03102400.xhp\n"
"hd_id3153394\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function\">IsEmpty Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"Funció IsEmpty\">Funció IsEmpty</link>"
+msgid "<link href=\"text/sbasic/shared/03102400.xhp\">IsEmpty Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03102400.xhp\">Funció IsEmpty</link>"
#. CvCEz
#: 03102400.xhp
@@ -26918,14 +26918,14 @@ msgctxt ""
msgid "<bookmark_value>IsNull function</bookmark_value> <bookmark_value>Null value</bookmark_value>"
msgstr "<bookmark_value>Funció IsNull</bookmark_value> <bookmark_value>Valor nul</bookmark_value>"
-#. 4BicJ
+#. zHiAW
#: 03102600.xhp
msgctxt ""
"03102600.xhp\n"
"hd_id3155555\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function\">IsNull Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"Funció IsNull\">Funció IsNull</link>"
+msgid "<link href=\"text/sbasic/shared/03102600.xhp\">IsNull Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03102600.xhp\">Funció IsNull</link>"
#. sJ5h3
#: 03102600.xhp
@@ -27017,23 +27017,23 @@ msgctxt ""
msgid "<bookmark_value>IsNumeric function</bookmark_value>"
msgstr "<bookmark_value>Funció IsNumeric</bookmark_value>"
-#. HXDaH
+#. 77Kcm
#: 03102700.xhp
msgctxt ""
"03102700.xhp\n"
"hd_id3145136\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function\">IsNumeric Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"Funció IsNumeric\">Funció IsNumeric</link>"
+msgid "<link href=\"text/sbasic/shared/03102700.xhp\">IsNumeric Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03102700.xhp\">Funció IsNumeric</link>"
-#. 2YPjv
+#. CXQ5r
#: 03102700.xhp
msgctxt ""
"03102700.xhp\n"
"par_id3149177\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 "Prova si una expressió és un número. Si l'expressió és un <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"número\">número</link>, la funció torna Cert, si no, la funció torna Fals."
+msgid "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\">number</link>, the function returns True, otherwise the function returns False."
+msgstr "Prova si una expressió és un número. Si l'expressió és un <link href=\"text/sbasic/shared/00000002.xhp#dezimal\">número</link>, la funció torna Cert, si no, la funció torna Fals."
#. 6vASf
#: 03102700.xhp
@@ -27107,13 +27107,13 @@ msgctxt ""
msgid "<bookmark_value>IsObject function</bookmark_value>"
msgstr "<bookmark_value>Funció IsObject</bookmark_value>"
-#. MF9nS
+#. ZTeih
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
"hd_id51633474369322\n"
"help.text"
-msgid "<variable id=\"IsObject_h1\"><link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">IsObject Function</link></variable>"
+msgid "<variable id=\"IsObject_h1\"><link href=\"text/sbasic/shared/03102800.xhp\">IsObject Function</link></variable>"
msgstr ""
#. AyVCR
@@ -27143,22 +27143,22 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">OLE objects or </caseinline></switchinline>UNO objects"
msgstr ""
-#. mBGyY
+#. D5UDc
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
"par_id451575892264518\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/classmodule.xhp\" name=\"Class module\">Class module</link> object instances"
+msgid "<link href=\"text/sbasic/shared/classmodule.xhp\">Class module</link> object instances"
msgstr ""
-#. DgPrD
+#. FQiXE
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
"par_id851575882379006\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Extended types\">Extended types</link> or <link href=\"text/sbasic/shared/enum.xhp\" name=\"enumerations\">enumerations</link>"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\">Extended types</link> or <link href=\"text/sbasic/shared/enum.xhp\">enumerations</link>"
msgstr ""
#. TFDZQ
@@ -27206,32 +27206,32 @@ msgctxt ""
msgid "<emph>var:</emph> The variable to be tested."
msgstr ""
-#. yHDkt
+#. CTnv9
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
"par_id191575887649871\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum statement\">Enum statement</link>"
+msgid "<link href=\"text/sbasic/shared/enum.xhp\">Enum statement</link>"
msgstr ""
-#. Dg4st
+#. 8hCnP
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
"par_id51575897210153\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type statement\">Type statement</link>"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\">Type statement</link>"
msgstr ""
-#. WEgzG
+#. DAnD5
#: 03102800.xhp
msgctxt ""
"03102800.xhp\n"
"par_id811575887627196\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 de variables\">Ús de variables</link>"
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\">Using variables</link>"
+msgstr "<link href=\"text/sbasic/shared/01020100.xhp\">Ús de variables</link>"
#. dj7fW
#: 03102900.xhp
@@ -27251,14 +27251,14 @@ msgctxt ""
msgid "<bookmark_value>LBound function</bookmark_value>"
msgstr "<bookmark_value>Funció LBound</bookmark_value>"
-#. SrYG2
+#. nVQSS
#: 03102900.xhp
msgctxt ""
"03102900.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function\">LBound Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"Funció LBound\">Funció LBound</link>"
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\">LBound Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03102900.xhp\">Funció LBound</link>"
#. tPdvo
#: 03102900.xhp
@@ -27323,14 +27323,14 @@ msgctxt ""
msgid "<bookmark_value>UBound function</bookmark_value>"
msgstr "<bookmark_value>Funció UBound</bookmark_value>"
-#. DSgUD
+#. kwd7d
#: 03103000.xhp
msgctxt ""
"03103000.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function\">UBound Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"Funció UBound\">Funció Ubound</link>"
+msgid "<link href=\"text/sbasic/shared/03103000.xhp\">UBound Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03103000.xhp\">Funció Ubound</link>"
#. AEcfy
#: 03103000.xhp
@@ -27386,14 +27386,14 @@ msgctxt ""
msgid "<bookmark_value>Let statement</bookmark_value>"
msgstr "<bookmark_value>expressió Let</bookmark_value>"
-#. EdbYW
+#. PFo8B
#: 03103100.xhp
msgctxt ""
"03103100.xhp\n"
"hd_id3147242\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement\">Let Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Expressió Let\">Expressió Let</link>"
+msgid "<link href=\"text/sbasic/shared/03103100.xhp\">Let Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03103100.xhp\">Expressió Let</link>"
#. SiQNq
#: 03103100.xhp
@@ -27485,13 +27485,13 @@ msgctxt ""
msgid "<bookmark_value>Option Base statement</bookmark_value>"
msgstr "<bookmark_value>expressió Option Base</bookmark_value>"
-#. CKGCG
+#. aN2F8
#: 03103200.xhp
msgctxt ""
"03103200.xhp\n"
"hd_id3155805\n"
"help.text"
-msgid "<variable id=\"optionbasestatement\"><link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement\">Option Base Statement</link></variable>"
+msgid "<variable id=\"optionbasestatement\"><link href=\"text/sbasic/shared/03103200.xhp\">Option Base Statement</link></variable>"
msgstr ""
#. 7SyG9
@@ -27530,13 +27530,13 @@ msgctxt ""
msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
msgstr "<bookmark_value>expressió Option Explicit</bookmark_value>"
-#. vDdUe
+#. r5HhA
#: 03103300.xhp
msgctxt ""
"03103300.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement\">Option Explicit Statement</link></variable>"
+msgid "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\">Option Explicit Statement</link></variable>"
msgstr ""
#. kHGHE
@@ -27575,13 +27575,13 @@ msgctxt ""
msgid "<bookmark_value>Microsoft Excel macros support;Enable</bookmark_value> <bookmark_value>Microsoft Excel macros support;Option VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Option VBASupport statement</bookmark_value> <bookmark_value>Option VBASupport statement</bookmark_value>"
msgstr ""
-#. vfiEk
+#. dLDx6
#: 03103350.xhp
msgctxt ""
"03103350.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport Statement\">Option VBASupport Statement</link></variable>"
+msgid "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\">Option VBASupport Statement</link></variable>"
msgstr ""
#. Cp5GM
@@ -27665,14 +27665,14 @@ msgctxt ""
msgid "<bookmark_value>Public statement</bookmark_value>"
msgstr "<bookmark_value>expressió Public</bookmark_value>"
-#. b35UC
+#. aAijE
#: 03103400.xhp
msgctxt ""
"03103400.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement\">Public Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Expressió Public\">Expressió Public</link>"
+msgid "<link href=\"text/sbasic/shared/03103400.xhp\">Public Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03103400.xhp\">Expressió Public</link>"
#. f5QpN
#: 03103400.xhp
@@ -27728,13 +27728,13 @@ msgctxt ""
msgid "<bookmark_value>Global keyword</bookmark_value>"
msgstr ""
-#. D6Aqe
+#. 7Jwha
#: 03103450.xhp
msgctxt ""
"03103450.xhp\n"
"hd_id3159201\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global keyword\">Global keyword</link>"
+msgid "<link href=\"text/sbasic/shared/03103450.xhp\">Global keyword</link>"
msgstr ""
#. rrYQS
@@ -27791,14 +27791,14 @@ msgctxt ""
msgid "<bookmark_value>Static statement</bookmark_value>"
msgstr "<bookmark_value>expressió Static</bookmark_value>"
-#. qtNB5
+#. iHDtz
#: 03103500.xhp
msgctxt ""
"03103500.xhp\n"
"hd_id3149798\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement\">Static Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Expressió Static\">Expressió Static</link>"
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\">Static Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03103500.xhp\">Expressió Static</link>"
#. eod6b
#: 03103500.xhp
@@ -27899,14 +27899,14 @@ msgctxt ""
msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value><bookmark_value>Basic Variable Type constants</bookmark_value>"
msgstr ""
-#. QYE2E
+#. 2vqaB
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function\">TypeName Function; VarType Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"Funció TypeName; Funció VarType\">Funció TypeName; Funció VarType</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\">TypeName Function; VarType Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03103600.xhp\">Funció TypeName; Funció VarType</link>"
#. zkF9a
#: 03103600.xhp
@@ -28169,13 +28169,13 @@ msgctxt ""
msgid "<bookmark_value>Set statement</bookmark_value> <bookmark_value>Nothing object</bookmark_value>"
msgstr "<bookmark_value>expressió Set</bookmark_value> <bookmark_value>objecte Nothing</bookmark_value>"
-#. MT9CF
+#. PaNUT
#: 03103700.xhp
msgctxt ""
"03103700.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<variable id=\"Set_h1\"><link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement\">Set Statement</link></variable>"
+msgid "<variable id=\"Set_h1\"><link href=\"text/sbasic/shared/03103700.xhp\">Set Statement</link></variable>"
msgstr ""
#. qNuUW
@@ -28250,13 +28250,13 @@ msgctxt ""
msgid "<literal>Set</literal> keyword is optional. <literal>Nothing</literal> is the default value for objects."
msgstr ""
-#. GhsMS
+#. 9GzzW
#: 03103700.xhp
msgctxt ""
"03103700.xhp\n"
"par_id841586014507226\n"
"help.text"
-msgid "<literal>New</literal> creates UNO objects or <link href=\"text/sbasic/shared/classmodule\" name=\"ClassModule\">class module</link> objects, before assigning it to a variable."
+msgid "<literal>New</literal> creates UNO objects or <link href=\"text/sbasic/shared/classmodule\">class module</link> objects, before assigning it to a variable."
msgstr ""
#. ukqdX
@@ -28277,14 +28277,14 @@ msgctxt ""
msgid "<bookmark_value>FindObject function</bookmark_value>"
msgstr "<bookmark_value>Funció FindObject</bookmark_value>"
-#. DrvAD
+#. ZPfhh
#: 03103800.xhp
msgctxt ""
"03103800.xhp\n"
"hd_id3145136\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function\">FindObject Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"Funció FindObject\">Funció FindObject</link>"
+msgid "<link href=\"text/sbasic/shared/03103800.xhp\">FindObject Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03103800.xhp\">Funció FindObject</link>"
#. aFznu
#: 03103800.xhp
@@ -28331,14 +28331,14 @@ msgctxt ""
msgid "\"TextEdit1\" to \"TextEdit5\" in a loop to create five control names."
msgstr "\"TextEdit1\" a TextEdit5\" en un bucle per crear cinc noms de control."
-#. i7KFL
+#. Eb7mA
#: 03103800.xhp
msgctxt ""
"03103800.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\">FindPropertyObject</link>"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03103900.xhp\">FindPropertyObject</link>"
#. 9UEzR
#: 03103800.xhp
@@ -28385,14 +28385,14 @@ msgctxt ""
msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
msgstr "<bookmark_value>Funció FindPropertyObject</bookmark_value>"
-#. LA7R9
+#. v7jtc
#: 03103900.xhp
msgctxt ""
"03103900.xhp\n"
"hd_id3146958\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function\">FindPropertyObject Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"Funció FindPropertyObject\">Funció FindPropertyObject</link>"
+msgid "<link href=\"text/sbasic/shared/03103900.xhp\">FindPropertyObject Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03103900.xhp\">Funció FindPropertyObject</link>"
#. pkBYN
#: 03103900.xhp
@@ -28403,14 +28403,14 @@ msgctxt ""
msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
msgstr "Habilita els objectes que s'adreçaran durant l'execució com a paràmetres de cadena mitjançant el nom d'objecte."
-#. DM2Ab
+#. JDuA7
#: 03103900.xhp
msgctxt ""
"03103900.xhp\n"
"par_id3150868\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\">FindObject</link>"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03103800.xhp\">FindObject</link>"
#. jBFme
#: 03103900.xhp
@@ -28466,14 +28466,14 @@ msgctxt ""
msgid "<bookmark_value>IsMissing function</bookmark_value>"
msgstr "<bookmark_value>Funció IsMissing</bookmark_value>"
-#. JBWGn
+#. N3Uk9
#: 03104000.xhp
msgctxt ""
"03104000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function\">IsMissing Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"Funció IsMissing\">Funció IsMissing</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\">IsMissing Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03104000.xhp\">Funció IsMissing</link>"
#. ZMKxG
#: 03104000.xhp
@@ -28484,14 +28484,14 @@ msgctxt ""
msgid "Tests if a function is called with an optional parameter."
msgstr "Prova si una funció es crida amb un paràmetre opcional."
-#. UAMEd
+#. DiCzU
#: 03104000.xhp
msgctxt ""
"03104000.xhp\n"
"par_id3150669\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Opcional\">Opcional</link>"
+msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\">Optional</link>"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03104100.xhp\">Opcional</link>"
#. fdBus
#: 03104000.xhp
@@ -28538,14 +28538,14 @@ msgctxt ""
msgid "IsMissing returns True if no value has been passed for the ArgumentName; otherwise, it returns False."
msgstr ""
-#. 6SiYx
+#. 6L5QH
#: 03104000.xhp
msgctxt ""
"03104000.xhp\n"
"par_id3148798\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "Vegeu també <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Exemples\">Exemples</link>."
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\">Examples</link>."
+msgstr "Vegeu també <link href=\"text/sbasic/guide/sample_code.xhp\">Exemples</link>."
#. bdNXC
#: 03104100.xhp
@@ -28565,14 +28565,14 @@ msgctxt ""
msgid "<bookmark_value>Optional function</bookmark_value>"
msgstr "<bookmark_value>Funció Optional</bookmark_value>"
-#. qAzL8
+#. RA8tP
#: 03104100.xhp
msgctxt ""
"03104100.xhp\n"
"hd_id3149205\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement)\">Optional (in Function Statement)</link>"
-msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (a l'expressió Function)\">Optional (a l'expressió Function)</link>"
+msgid "<link href=\"text/sbasic/shared/03104100.xhp\">Optional (in Function Statement)</link>"
+msgstr "<link href=\"text/sbasic/shared/03104100.xhp\">Optional (a l'expressió Function)</link>"
#. Ebzjt
#: 03104100.xhp
@@ -28583,14 +28583,14 @@ msgctxt ""
msgid "Allows you to define parameters that are passed to a function as optional."
msgstr "Vos permet definir paràmetres que es passen a una funció com a opcionals."
-#. okfFX
+#. sshCf
#: 03104100.xhp
msgctxt ""
"03104100.xhp\n"
"par_id3155419\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\">IsMissing</link>"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03104000.xhp\">IsMissing</link>"
#. rCRu8
#: 03104100.xhp
@@ -28637,14 +28637,14 @@ msgctxt ""
msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
msgstr "Resultat = MyFunction(\"Prova\", ,1) ' falta el segon argument."
-#. upgxF
+#. FaFyC
#: 03104100.xhp
msgctxt ""
"03104100.xhp\n"
"par_id3153897\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "Vegeu també <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Exemples\">Exemples</link>."
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\">Examples</link>."
+msgstr "Vegeu també <link href=\"text/sbasic/guide/sample_code.xhp\">Exemples</link>."
#. HDj6B
#: 03104200.xhp
@@ -28664,13 +28664,13 @@ msgctxt ""
msgid "<bookmark_value>Array function</bookmark_value>"
msgstr "<bookmark_value>Funció Array</bookmark_value>"
-#. vj7XR
+#. aXJZm
#: 03104200.xhp
msgctxt ""
"03104200.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<variable id=\"Array_h1\"><link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function\">Array Function</link></variable>"
+msgid "<variable id=\"Array_h1\"><link href=\"text/sbasic/shared/03104200.xhp\">Array Function</link></variable>"
msgstr ""
#. ZFAuc
@@ -28691,14 +28691,14 @@ msgctxt ""
msgid "Array (ArgumentList)"
msgstr ""
-#. EuCLG
+#. ktFWK
#: 03104200.xhp
msgctxt ""
"03104200.xhp\n"
"par_id3155419\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
-msgstr "Vegeu també <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\">DimArray</link>"
+msgstr "Vegeu també <link href=\"text/sbasic/shared/03104300.xhp\">DimArray</link>"
#. VXL3Y
#: 03104200.xhp
@@ -28727,14 +28727,14 @@ msgctxt ""
msgid "<bookmark_value>DimArray function</bookmark_value>"
msgstr "<bookmark_value>Funció DimArray</bookmark_value>"
-#. FTJ3A
+#. UEPYF
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function\">DimArray Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"Funció DimArray\">Funció DimArray</link>"
+msgid "<link href=\"text/sbasic/shared/03104300.xhp\">DimArray Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03104300.xhp\">Funció DimArray</link>"
#. D6knK
#: 03104300.xhp
@@ -28763,14 +28763,14 @@ msgctxt ""
msgid "DimArray (ArgumentList)"
msgstr ""
-#. xfuoC
+#. FHKtR
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
-msgstr "Vegeu també <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Matriu\">Matriu</link>"
+msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\">Array</link>"
+msgstr "Vegeu també <link href=\"text/sbasic/shared/03104200.xhp\">Matriu</link>"
#. ajAXE
#: 03104300.xhp
@@ -28835,14 +28835,14 @@ msgctxt ""
msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
msgstr "<bookmark_value>Funció HasUnoInterfaces</bookmark_value>"
-#. pqAXW
+#. kE9xe
#: 03104400.xhp
msgctxt ""
"03104400.xhp\n"
"hd_id3149987\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function\">HasUnoInterfaces Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"Funció HasUnoInterfaces\">Funció HasUnoInterfaces</link>"
+msgid "<link href=\"text/sbasic/shared/03104400.xhp\">HasUnoInterfaces Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03104400.xhp\">Funció HasUnoInterfaces</link>"
#. JUPxm
#: 03104400.xhp
@@ -28907,14 +28907,14 @@ msgctxt ""
msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
msgstr "<bookmark_value>Funció IsUnoStruct</bookmark_value>"
-#. myocU
+#. JG2fN
#: 03104500.xhp
msgctxt ""
"03104500.xhp\n"
"hd_id3146117\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function\">IsUnoStruct Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"Funció IsUnoStruct\">Funció IsUnoStruct</link>"
+msgid "<link href=\"text/sbasic/shared/03104500.xhp\">IsUnoStruct Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03104500.xhp\">Funció IsUnoStruct</link>"
#. fN4db
#: 03104500.xhp
@@ -29006,13 +29006,13 @@ msgctxt ""
msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
msgstr "<bookmark_value>Funció EqualUnoObjects</bookmark_value>"
-#. DxBM3
+#. zeBDF
#: 03104600.xhp
msgctxt ""
"03104600.xhp\n"
"hd_id791633472607429\n"
"help.text"
-msgid "<variable id=\"EqualUnoObjects_h1\"><link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function\">EqualUnoObjects Function</link></variable>"
+msgid "<variable id=\"EqualUnoObjects_h1\"><link href=\"text/sbasic/shared/03104600.xhp\">EqualUnoObjects Function</link></variable>"
msgstr ""
#. Gc4cj
@@ -29141,31 +29141,31 @@ msgctxt ""
msgid "Erase b, c(0) ' everything gets cleared"
msgstr ""
-#. LvkX5
+#. gSa7g
#: 03104700.xhp
msgctxt ""
"03104700.xhp\n"
"par_id161588865796615\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim statement\">Dim</link> or <link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim statement\">ReDim</link> statements"
+msgid "<link href=\"text/sbasic/shared/03102100.xhp\">Dim</link> or <link href=\"text/sbasic/shared/03102101.xhp\">ReDim</link> statements"
msgstr ""
-#. h7XZF
+#. CtoLf
#: 03104700.xhp
msgctxt ""
"03104700.xhp\n"
"par_id281588865818334\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array function\">Array</link> or <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray function\">DimArray</link> functions"
+msgid "<link href=\"text/sbasic/shared/03104200.xhp\">Array</link> or <link href=\"text/sbasic/shared/03104300.xhp\">DimArray</link> functions"
msgstr ""
-#. FA4C9
+#. XxNXe
#: 03104700.xhp
msgctxt ""
"03104700.xhp\n"
"par_id761588867124078\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\">Ubound</link> functions"
msgstr ""
#. bDVn8
@@ -29186,13 +29186,13 @@ msgctxt ""
msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value> <bookmark_value>Operators;comparison</bookmark_value> <bookmark_value>Operators;equal sign (=)</bookmark_value> <bookmark_value>Operators;greater than (>)</bookmark_value> <bookmark_value>Operators;greater than or equal to (>=)</bookmark_value> <bookmark_value>Operators;less than (<)</bookmark_value> <bookmark_value>Operators;less than or equal to (<=)</bookmark_value> <bookmark_value>Operators;not equal to (<>)</bookmark_value>"
msgstr ""
-#. k9nDv
+#. 4FCDn
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"hd_id3150682\n"
"help.text"
-msgid "<variable id=\"CompOper_h1\"><link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators\">Comparison Operators</link></variable>"
+msgid "<variable id=\"CompOper_h1\"><link href=\"text/sbasic/shared/03110100.xhp\">Comparison Operators</link></variable>"
msgstr ""
#. vzC53
@@ -29303,14 +29303,14 @@ msgctxt ""
msgid "Strings"
msgstr "Cadenes"
-#. qSsdJ
+#. sECRS
#: 03120000.xhp
msgctxt ""
"03120000.xhp\n"
"hd_id3156153\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
-msgstr "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Cadenes\">Cadenes</link>"
+msgid "<link href=\"text/sbasic/shared/03120000.xhp\">Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120000.xhp\">Cadenes</link>"
#. mfoZX
#: 03120000.xhp
@@ -29339,14 +29339,14 @@ msgctxt ""
msgid "ASCII/ANSI Conversion in Strings"
msgstr "Conversió ASCII/ANSI en cadenes"
-#. f2kFt
+#. vnjCN
#: 03120100.xhp
msgctxt ""
"03120100.xhp\n"
"hd_id3147443\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=\"Conversió ASCII/ANSI en cadenes\">Conversió ASCII/ANSI en cadenes</link>"
+msgid "<link href=\"text/sbasic/shared/03120100.xhp\">ASCII/ANSI Conversion in Strings</link>"
+msgstr "<link href=\"text/sbasic/shared/03120100.xhp\">Conversió ASCII/ANSI en cadenes</link>"
#. ZDP63
#: 03120100.xhp
@@ -29375,13 +29375,13 @@ msgctxt ""
msgid "<bookmark_value>Asc function</bookmark_value>"
msgstr "<bookmark_value>Funció Asc</bookmark_value>"
-#. NmqT7
+#. qJX8t
#: 03120101.xhp
msgctxt ""
"03120101.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<variable id=\"Asc_h1\"><link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function\">Asc Function (BASIC)</link></variable>"
+msgid "<variable id=\"Asc_h1\"><link href=\"text/sbasic/shared/03120101.xhp\">Asc Function (BASIC)</link></variable>"
msgstr ""
#. 8jiwA
@@ -29465,13 +29465,13 @@ msgctxt ""
msgid "<bookmark_value>Chr function</bookmark_value>"
msgstr "<bookmark_value>Funció Chr</bookmark_value>"
-#. vBnDE
+#. DEUG6
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
"hd_id3149205\n"
"help.text"
-msgid "<variable id=\"Chr_h1\"><link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function\">Chr Function</link></variable>"
+msgid "<variable id=\"Chr_h1\"><link href=\"text/sbasic/shared/03120102.xhp\">Chr Function</link></variable>"
msgstr ""
#. UTy3n
@@ -29501,13 +29501,13 @@ msgctxt ""
msgid "<emph>charcode</emph>: a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value. (To support expressions with a nominally negative argument like <emph>Chr(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.)"
msgstr ""
-#. Xyjgr
+#. Fe8YR
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
"par_id991552913928635\n"
"help.text"
-msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), <literal>charcode</literal> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
+msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\"><literal>Option VBASupport 1</literal></link>), <literal>charcode</literal> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
msgstr ""
#. sw8rF
@@ -29582,13 +29582,13 @@ msgctxt ""
msgid "<bookmark_value>Str function</bookmark_value>"
msgstr "<bookmark_value>Funció Str</bookmark_value>"
-#. 29Gzu
+#. R4trJ
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
"hd_id3143272\n"
"help.text"
-msgid "<variable id=\"Str_h1\"><link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function\">Str Function</link></variable>"
+msgid "<variable id=\"Str_h1\"><link href=\"text/sbasic/shared/03120103.xhp\">Str Function</link></variable>"
msgstr ""
#. Z8JfH
@@ -29717,13 +29717,13 @@ msgctxt ""
msgid "<bookmark_value>Val function</bookmark_value>"
msgstr "<bookmark_value>Funció Val</bookmark_value>"
-#. h82YR
+#. 6GkjG
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
"hd_id3149205\n"
"help.text"
-msgid "<variable id=\"Val_h1\"><link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function\">Val Function</link></variable>"
+msgid "<variable id=\"Val_h1\"><link href=\"text/sbasic/shared/03120104.xhp\">Val Function</link></variable>"
msgstr ""
#. VDZFx
@@ -29825,13 +29825,13 @@ msgctxt ""
msgid "<bookmark_value>CByte function</bookmark_value>"
msgstr "<bookmark_value>Funció CByte</bookmark_value>"
-#. VkMAp
+#. upwSd
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<variable id=\"CByte_h1\"><link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function\">CByte Function</link></variable>"
+msgid "<variable id=\"CByte_h1\"><link href=\"text/sbasic/shared/03120105.xhp\">CByte Function</link></variable>"
msgstr ""
#. qP4eK
@@ -29888,13 +29888,13 @@ msgctxt ""
msgid "<bookmark_value>AscW function</bookmark_value>"
msgstr "<bookmark_value>Funció AscW</bookmark_value>"
-#. 8JuD6
+#. 4NGHc
#: 03120111.xhp
msgctxt ""
"03120111.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<variable id=\"AscW_h1\"><link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [VBA]\">AscW Function [VBA]</link></variable>"
+msgid "<variable id=\"AscW_h1\"><link href=\"text/sbasic/shared/03120111.xhp\">AscW Function [VBA]</link></variable>"
msgstr ""
#. XujWF
@@ -29969,13 +29969,13 @@ msgctxt ""
msgid "<bookmark_value>ChrW function</bookmark_value>"
msgstr "<bookmark_value>funció ChrW</bookmark_value>"
-#. C6uF5
+#. agcrG
#: 03120112.xhp
msgctxt ""
"03120112.xhp\n"
"hd_id3149205\n"
"help.text"
-msgid "<variable id=\"ChrW_h1\"><link href=\"text/sbasic/shared/03120112.xhp\" name=\"ChrW Function\">ChrW Function [VBA]</link></variable>"
+msgid "<variable id=\"ChrW_h1\"><link href=\"text/sbasic/shared/03120112.xhp\">ChrW Function [VBA]</link></variable>"
msgstr ""
#. yFpZL
@@ -30050,14 +30050,14 @@ msgctxt ""
msgid "Repeating Contents"
msgstr "Repetició de continguts"
-#. uMuGE
+#. pPfQw
#: 03120200.xhp
msgctxt ""
"03120200.xhp\n"
"hd_id3152363\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repeating Contents\">Repeating Contents</link>"
-msgstr "<link href=\"text/sbasic/shared/03120200.xhp\" name=\"Repetició de continguts\">Repetició de continguts</link>"
+msgid "<link href=\"text/sbasic/shared/03120200.xhp\">Repeating Contents</link>"
+msgstr "<link href=\"text/sbasic/shared/03120200.xhp\">Repetició de continguts</link>"
#. QtA2F
#: 03120200.xhp
@@ -30086,14 +30086,14 @@ msgctxt ""
msgid "<bookmark_value>Space function</bookmark_value> <bookmark_value>Spc function</bookmark_value>"
msgstr "<bookmark_value>funció Space</bookmark_value><bookmark_value>funció Spc</bookmark_value>"
-#. r9KyV
+#. ZLFYB
#: 03120201.xhp
msgctxt ""
"03120201.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function\">Space and Spc Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Funció Space\">Funcions Space i Spc</link>"
+msgid "<link href=\"text/sbasic/shared/03120201.xhp\">Space and Spc Functions</link>"
+msgstr "<link href=\"text/sbasic/shared/03120201.xhp\">Funcions Space i Spc</link>"
#. M6CED
#: 03120201.xhp
@@ -30158,13 +30158,13 @@ msgctxt ""
msgid "<bookmark_value>String function</bookmark_value>"
msgstr "<bookmark_value>Funció String</bookmark_value>"
-#. C8tf8
+#. HhMNZ
#: 03120202.xhp
msgctxt ""
"03120202.xhp\n"
"hd_id3147291\n"
"help.text"
-msgid "<variable id=\"String_h1\"><link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function\">String Function</link></variable>"
+msgid "<variable id=\"String_h1\"><link href=\"text/sbasic/shared/03120202.xhp\">String Function</link></variable>"
msgstr ""
#. YVCRg
@@ -30230,14 +30230,14 @@ msgctxt ""
msgid "Editing String Contents"
msgstr "Edició del contingut de les cadenes"
-#. qvgJA
+#. CEa3P
#: 03120300.xhp
msgctxt ""
"03120300.xhp\n"
"hd_id3153894\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=\"Edició del contingut de les cadenes\">Edició del contingut de les cadenes</link>"
+msgid "<link href=\"text/sbasic/shared/03120300.xhp\">Editing String Contents</link>"
+msgstr "<link href=\"text/sbasic/shared/03120300.xhp\">Edició del contingut de les cadenes</link>"
#. pHEcz
#: 03120300.xhp
@@ -30275,14 +30275,14 @@ msgctxt ""
msgid "<bookmark_value>Format function</bookmark_value>"
msgstr "<bookmark_value>funció Format</bookmark_value>"
-#. 9VgHM
+#. ArxQy
#: 03120301.xhp
msgctxt ""
"03120301.xhp\n"
"hd_id3153539\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function\">Format Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Funció Format\">Funció Format</link>"
+msgid "<link href=\"text/sbasic/shared/03120301.xhp\">Format Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120301.xhp\">Funció Format</link>"
#. AfW2N
#: 03120301.xhp
@@ -30608,14 +30608,14 @@ msgctxt ""
msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
msgstr "' mostra per exemple 6,328.20 a la configuració regional anglesa, 6.328,20 a l'alemanya."
-#. 8KMxc
+#. 7EK7J
#: 03120301.xhp
msgctxt ""
"03120301.xhp\n"
"par_id381513082126889\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Number format codes</link>"
-msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Codis de format numèric\">Codis de format numèric</link>"
+msgid "<link href=\"text/shared/01/05020301.xhp\">Number format codes</link>"
+msgstr "<link href=\"text/shared/01/05020301.xhp\">Codis de format numèric</link>"
#. oZYHq
#: 03120302.xhp
@@ -30635,14 +30635,14 @@ msgctxt ""
msgid "<bookmark_value>LCase function</bookmark_value>"
msgstr "<bookmark_value>Funció LCase</bookmark_value>"
-#. sLQre
+#. wrBBN
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
"hd_id3152363\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"Funció LCase\">Funció LCase</link>"
+msgid "<link href=\"text/sbasic/shared/03120302.xhp\">LCase Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120302.xhp\">Funció LCase</link>"
#. dkB32
#: 03120302.xhp
@@ -30653,14 +30653,14 @@ msgctxt ""
msgid "Converts all uppercase letters in a string to lowercase."
msgstr "Converteix totes les lletres majúscules d'una cadena en minúscules."
-#. DYSWC
+#. sQC4R
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
"par_id3154347\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">Funció UCase</link>"
+msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\">UCase</link> Function"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03120310.xhp\">Funció UCase</link>"
#. chngB
#: 03120302.xhp
@@ -30698,14 +30698,14 @@ msgctxt ""
msgid "<bookmark_value>Left function</bookmark_value>"
msgstr "<bookmark_value>Funció Left</bookmark_value>"
-#. uFGkL
+#. BWtW3
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Funció Left\">Funció Left</link>"
+msgid "<link href=\"text/sbasic/shared/03120303.xhp\">Left Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120303.xhp\">Funció Left</link>"
#. DVEfF
#: 03120303.xhp
@@ -30788,14 +30788,14 @@ msgctxt ""
msgid "<bookmark_value>LSet statement</bookmark_value>"
msgstr "<bookmark_value>expressió LSet</bookmark_value>"
-#. s4j5Y
+#. YEt5X
#: 03120304.xhp
msgctxt ""
"03120304.xhp\n"
"hd_id3143268\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement\">LSet Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"Expressió LSet\">Expressió LSet</link>"
+msgid "<link href=\"text/sbasic/shared/03120304.xhp\">LSet Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03120304.xhp\">Expressió LSet</link>"
#. 2y5bo
#: 03120304.xhp
@@ -30905,14 +30905,14 @@ msgctxt ""
msgid "<bookmark_value>LTrim function</bookmark_value>"
msgstr "<bookmark_value>Funció LTrim</bookmark_value>"
-#. EHCLJ
+#. vt2hD
#: 03120305.xhp
msgctxt ""
"03120305.xhp\n"
"hd_id3147574\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"Funció LTrim\">Funció LTrim</link>"
+msgid "<link href=\"text/sbasic/shared/03120305.xhp\">LTrim Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120305.xhp\">Funció LTrim</link>"
#. mFiGU
#: 03120305.xhp
@@ -30968,14 +30968,14 @@ msgctxt ""
msgid "<bookmark_value>Mid function</bookmark_value> <bookmark_value>Mid statement</bookmark_value>"
msgstr "<bookmark_value>funció Mid</bookmark_value> <bookmark_value>expressió Mid</bookmark_value>"
-#. jRxXo
+#. CGKgP
#: 03120306.xhp
msgctxt ""
"03120306.xhp\n"
"hd_id3143268\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement\">Mid Function, Mid Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Funció Mid, Expressió Mid\">Funció Mid, Expressió Mid</link>"
+msgid "<link href=\"text/sbasic/shared/03120306.xhp\">Mid Function, Mid Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03120306.xhp\">Funció Mid, Expressió Mid</link>"
#. oznEx
#: 03120306.xhp
@@ -31085,14 +31085,14 @@ msgctxt ""
msgid "<bookmark_value>Right function</bookmark_value>"
msgstr "<bookmark_value>Funció Right</bookmark_value>"
-#. dbxZX
+#. 6CtGD
#: 03120307.xhp
msgctxt ""
"03120307.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function\">Right Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Funció Right\">Funció Right</link>"
+msgid "<link href=\"text/sbasic/shared/03120307.xhp\">Right Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120307.xhp\">Funció Right</link>"
#. w9pxb
#: 03120307.xhp
@@ -31103,14 +31103,14 @@ msgctxt ""
msgid "Returns the rightmost \"n\" characters of a string expression."
msgstr "Torna els caràcters més a la dreta de \"n\" d'una expressió de cadena."
-#. p4Lba
+#. ojqvK
#: 03120307.xhp
msgctxt ""
"03120307.xhp\n"
"par_id3149763\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Funció Left\">Funció Left</link>."
+msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\">Left Function</link>."
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03120303.xhp\">Funció Left</link>."
#. A3Rzn
#: 03120307.xhp
@@ -31184,14 +31184,14 @@ msgctxt ""
msgid "<bookmark_value>RSet statement</bookmark_value>"
msgstr "<bookmark_value>expressió RSet</bookmark_value>"
-#. QBt7J
+#. ZQwBe
#: 03120308.xhp
msgctxt ""
"03120308.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement\">RSet Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"Expressió RSet\">Expressió RSet</link>"
+msgid "<link href=\"text/sbasic/shared/03120308.xhp\">RSet Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03120308.xhp\">Expressió RSet</link>"
#. 9BREa
#: 03120308.xhp
@@ -31319,14 +31319,14 @@ msgctxt ""
msgid "<bookmark_value>RTrim function</bookmark_value>"
msgstr "<bookmark_value>Funció RTrim</bookmark_value>"
-#. SXFDZ
+#. a6gJf
#: 03120309.xhp
msgctxt ""
"03120309.xhp\n"
"hd_id3154286\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function\">RTrim Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"Funció RTrim\">Funció RTrim</link>"
+msgid "<link href=\"text/sbasic/shared/03120309.xhp\">RTrim Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120309.xhp\">Funció RTrim</link>"
#. eXjba
#: 03120309.xhp
@@ -31337,14 +31337,14 @@ msgctxt ""
msgid "Deletes the spaces at the end of a string expression."
msgstr "Suprimeix els espais del final d'una expressió de cadena."
-#. QnpJz
+#. rHBUf
#: 03120309.xhp
msgctxt ""
"03120309.xhp\n"
"par_id3153062\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"Funció LTrim\">Funció LTrim</link>"
+msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\">LTrim Function</link>"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03120305.xhp\">Funció LTrim</link>"
#. 3KFbV
#: 03120309.xhp
@@ -31382,14 +31382,14 @@ msgctxt ""
msgid "<bookmark_value>UCase function</bookmark_value>"
msgstr "<bookmark_value>Funció UCase</bookmark_value>"
-#. TRQNt
+#. LgJKC
#: 03120310.xhp
msgctxt ""
"03120310.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function\">UCase Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"Funció UCase\">Funció UCase</link>"
+msgid "<link href=\"text/sbasic/shared/03120310.xhp\">UCase Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120310.xhp\">Funció UCase</link>"
#. vSKnv
#: 03120310.xhp
@@ -31400,14 +31400,14 @@ msgctxt ""
msgid "Converts lowercase characters in a string to uppercase."
msgstr "Converteix les lletres minúscules d'una cadena en majúscules."
-#. bHkMs
+#. 46E6R
#: 03120310.xhp
msgctxt ""
"03120310.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
-msgstr "Vegeu també: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"Funció LCase\">Funció LCase</link>"
+msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\">LCase Function</link>"
+msgstr "Vegeu també: <link href=\"text/sbasic/shared/03120302.xhp\">Funció LCase</link>"
#. PDUSQ
#: 03120310.xhp
@@ -31445,14 +31445,14 @@ msgctxt ""
msgid "<bookmark_value>Trim function</bookmark_value>"
msgstr "<bookmark_value>Funció Trim</bookmark_value>"
-#. HjEjn
+#. PBuV6
#: 03120311.xhp
msgctxt ""
"03120311.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function\">Trim Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Funció Trim\">Funció Trim</link>"
+msgid "<link href=\"text/sbasic/shared/03120311.xhp\">Trim Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120311.xhp\">Funció Trim</link>"
#. gJTc8
#: 03120311.xhp
@@ -31499,14 +31499,14 @@ msgctxt ""
msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
msgstr "<bookmark_value>Funció ConvertToURL</bookmark_value>"
-#. GEiUq
+#. rMLMq
#: 03120312.xhp
msgctxt ""
"03120312.xhp\n"
"hd_id3152801\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function\">ConvertToURL Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"Funció ConvertToURL\">Funció ConvertToURL</link>"
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\">ConvertToURL Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120312.xhp\">Funció ConvertToURL</link>"
#. 9Xdmw
#: 03120312.xhp
@@ -31553,14 +31553,14 @@ msgctxt ""
msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
msgstr "<bookmark_value>Funció ConvertFromURL</bookmark_value>"
-#. ueTH4
+#. sZXPG
#: 03120313.xhp
msgctxt ""
"03120313.xhp\n"
"hd_id3153894\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function\">ConvertFromURL Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"Funció ConvertFromURL\">Funció ConvertFromURL</link>"
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\">ConvertFromURL Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120313.xhp\">Funció ConvertFromURL</link>"
#. wiX8u
#: 03120313.xhp
@@ -31607,14 +31607,14 @@ msgctxt ""
msgid "<bookmark_value>Split function</bookmark_value>"
msgstr "<bookmark_value>Funció Split</bookmark_value>"
-#. GFRhn
+#. ajUVP
#: 03120314.xhp
msgctxt ""
"03120314.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function\">Split Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Funció Split\">Funció Split</link>"
+msgid "<link href=\"text/sbasic/shared/03120314.xhp\">Split Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120314.xhp\">Funció Split</link>"
#. LmvGz
#: 03120314.xhp
@@ -31688,14 +31688,14 @@ msgctxt ""
msgid "<bookmark_value>Join function</bookmark_value>"
msgstr "<bookmark_value>Funció Join</bookmark_value>"
-#. FjCTF
+#. aNFzb
#: 03120315.xhp
msgctxt ""
"03120315.xhp\n"
"hd_id3149416\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function\">Join Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Funció Join\">Funció Join</link>"
+msgid "<link href=\"text/sbasic/shared/03120315.xhp\">Join Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120315.xhp\">Funció Join</link>"
#. DQFTH
#: 03120315.xhp
@@ -31742,14 +31742,14 @@ msgctxt ""
msgid "Editing String Length"
msgstr "Edició de la longitud d'una cadena"
-#. aZQ3y
+#. 9BDSS
#: 03120400.xhp
msgctxt ""
"03120400.xhp\n"
"hd_id3155150\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=\"Edició de la longitud d'una cadena\">Edició de la longitud d'una cadena</link>"
+msgid "<link href=\"text/sbasic/shared/03120400.xhp\">Editing String Length</link>"
+msgstr "<link href=\"text/sbasic/shared/03120400.xhp\">Edició de la longitud d'una cadena</link>"
#. Ewh7N
#: 03120400.xhp
@@ -31778,14 +31778,14 @@ msgctxt ""
msgid "<bookmark_value>InStr function</bookmark_value>"
msgstr "<bookmark_value>Funció InStr</bookmark_value>"
-#. 74Qua
+#. hv79s
#: 03120401.xhp
msgctxt ""
"03120401.xhp\n"
"hd_id3155934\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function\">InStr Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"Funció InStr\">Funció InStr</link>"
+msgid "<link href=\"text/sbasic/shared/03120401.xhp\">InStr Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\">Funció InStr</link>"
#. b3faC
#: 03120401.xhp
@@ -31913,14 +31913,14 @@ msgctxt ""
msgid "<bookmark_value>Len function</bookmark_value>"
msgstr "<bookmark_value>Funció Len</bookmark_value>"
-#. HzQYT
+#. EPWj7
#: 03120402.xhp
msgctxt ""
"03120402.xhp\n"
"hd_id3154136\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function\">Len Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Funció Len\">Funció Len</link>"
+msgid "<link href=\"text/sbasic/shared/03120402.xhp\">Len Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120402.xhp\">Funció Len</link>"
#. zQW3g
#: 03120402.xhp
@@ -32003,14 +32003,14 @@ msgctxt ""
msgid "<bookmark_value>StrComp function</bookmark_value>"
msgstr "<bookmark_value>Funció StrComp</bookmark_value>"
-#. hyUAD
+#. iH74F
#: 03120403.xhp
msgctxt ""
"03120403.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function\">StrComp Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"Funció StrComp\">Funció StrComp</link>"
+msgid "<link href=\"text/sbasic/shared/03120403.xhp\">StrComp Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03120403.xhp\">Funció StrComp</link>"
#. 8buFG
#: 03120403.xhp
@@ -32147,14 +32147,14 @@ msgctxt ""
msgid "<bookmark_value>InStrRev function</bookmark_value>"
msgstr "<bookmark_value>funció InStrRev</bookmark_value>"
-#. F8BJZ
+#. 7KMBe
#: 03120411.xhp
msgctxt ""
"03120411.xhp\n"
"hd_id3155934\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"InStrRev Function\">InStrRev Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"Funció InStrRev\">Funció InStrRev [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03120411.xhp\">InStrRev Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120411.xhp\">Funció InStrRev [VBA]</link>"
#. kgxfQ
#: 03120411.xhp
@@ -32282,14 +32282,14 @@ msgctxt ""
msgid "<bookmark_value>StrReverse function</bookmark_value>"
msgstr "<bookmark_value>funció StrReverse</bookmark_value>"
-#. DUKLC
+#. 6dxWE
#: 03120412.xhp
msgctxt ""
"03120412.xhp\n"
"hd_id3155934\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse Function\">StrReverse Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"Funció StrReverse\">Funció StrReverse [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03120412.xhp\">StrReverse Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120412.xhp\">Funció StrReverse [VBA]</link>"
#. HnA2J
#: 03120412.xhp
@@ -32327,14 +32327,14 @@ msgctxt ""
msgid "Other Commands"
msgstr "Altres ordes"
-#. zUJBH
+#. TKXnZ
#: 03130000.xhp
msgctxt ""
"03130000.xhp\n"
"hd_id3156027\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=\"Altres ordes\">Altres ordes</link>"
+msgid "<link href=\"text/sbasic/shared/03130000.xhp\">Other Commands</link>"
+msgstr "<link href=\"text/sbasic/shared/03130000.xhp\">Altres ordes</link>"
#. 6DD4P
#: 03130000.xhp
@@ -32363,14 +32363,14 @@ msgctxt ""
msgid "<bookmark_value>Beep statement</bookmark_value>"
msgstr "<bookmark_value>expressió Beep</bookmark_value>"
-#. Ck4Ae
+#. 7YKm6
#: 03130100.xhp
msgctxt ""
"03130100.xhp\n"
"hd_id3143284\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement\">Beep Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Expressió Beep\">Expressió Beep</link>"
+msgid "<link href=\"text/sbasic/shared/03130100.xhp\">Beep Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03130100.xhp\">Expressió Beep</link>"
#. uh3FV
#: 03130100.xhp
@@ -32408,14 +32408,14 @@ msgctxt ""
msgid "<bookmark_value>Shell function</bookmark_value>"
msgstr "<bookmark_value>Funció Shell</bookmark_value>"
-#. 9arQE
+#. FU2Py
#: 03130500.xhp
msgctxt ""
"03130500.xhp\n"
"hd_id3150040\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function\">Shell Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Funció Shell\">Funció Shell</link>"
+msgid "<link href=\"text/sbasic/shared/03130500.xhp\">Shell Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03130500.xhp\">Funció Shell</link>"
#. DK4MC
#: 03130500.xhp
@@ -32597,14 +32597,14 @@ msgctxt ""
msgid "<bookmark_value>Wait statement</bookmark_value>"
msgstr "<bookmark_value>expressió Wait</bookmark_value>"
-#. 4bjCE
+#. BzeTW
#: 03130600.xhp
msgctxt ""
"03130600.xhp\n"
"hd_id3154136\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement\">Wait Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Expressió Wait\">Expressió Wait</link>"
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\">Wait Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03130600.xhp\">Expressió Wait</link>"
#. a6kxb
#: 03130600.xhp
@@ -32642,14 +32642,14 @@ msgctxt ""
msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
msgstr "MsgBox \"\" & lTick & \" Ticks\" ,0,\"La pausa ha durat\""
-#. jbkXE
+#. V5MGd
#: 03130600.xhp
msgctxt ""
"03130600.xhp\n"
"par_id251546102545124\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil statement\">WaitUntil statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"Expressió WaitUntil\">Expressió WaitUntil</link>"
+msgid "<link href=\"text/sbasic/shared/03130610.xhp\">WaitUntil statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03130610.xhp\">Expressió WaitUntil</link>"
#. M3BNe
#: 03130610.xhp
@@ -32669,14 +32669,14 @@ msgctxt ""
msgid "<bookmark_value>WaitUntil statement</bookmark_value>"
msgstr "<bookmark_value>expressió WaitUntil</bookmark_value>"
-#. NZ5Zc
+#. vrA77
#: 03130610.xhp
msgctxt ""
"03130610.xhp\n"
"hd_id3154136\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil Statement\">WaitUntil Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"Expressió WaitUntil\">Expressió WaitUntil</link>"
+msgid "<link href=\"text/sbasic/shared/03130610.xhp\">WaitUntil Statement</link>"
+msgstr "<link href=\"text/sbasic/shared/03130610.xhp\">Expressió WaitUntil</link>"
#. 2Cmcm
#: 03130610.xhp
@@ -32723,13 +32723,13 @@ msgctxt ""
msgid "REM If after 6:00 PM, exit."
msgstr "REM Si ocorre després de les 18.00, finalitza."
-#. tP7b8
+#. oyAyY
#: 03130610.xhp
msgctxt ""
"03130610.xhp\n"
"par_id251546102545124\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait statement\">Wait statement</link>"
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\">Wait statement</link>"
msgstr ""
#. UAAuS
@@ -32750,14 +32750,14 @@ msgctxt ""
msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
msgstr "<bookmark_value>Funció GetSystemTicks</bookmark_value>"
-#. 997y3
+#. fQQbR
#: 03130700.xhp
msgctxt ""
"03130700.xhp\n"
"hd_id3147143\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function\">GetSystemTicks Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"Funció GetSystemTicks\">Funció GetSystemTicks</link>"
+msgid "<link href=\"text/sbasic/shared/03130700.xhp\">GetSystemTicks Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03130700.xhp\">Funció GetSystemTicks</link>"
#. 3fFGL
#: 03130700.xhp
@@ -32831,14 +32831,14 @@ msgctxt ""
msgid "<bookmark_value>Environ function</bookmark_value>"
msgstr "<bookmark_value>Funció Environ</bookmark_value>"
-#. qti6S
+#. 3JaYP
#: 03130800.xhp
msgctxt ""
"03130800.xhp\n"
"hd_id3155364\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Environ Function\">Environ Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Funció Environ\">Funció Environ</link>"
+msgid "<link href=\"text/sbasic/shared/03130800.xhp\">Environ Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03130800.xhp\">Funció Environ</link>"
#. BGRpE
#: 03130800.xhp
@@ -32930,14 +32930,14 @@ msgctxt ""
msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
msgstr "<bookmark_value>Funció GetSolarVersion</bookmark_value>"
-#. ZPTFC
+#. DrBNK
#: 03131000.xhp
msgctxt ""
"03131000.xhp\n"
"hd_id3157898\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function\">GetSolarVersion Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"Funció GetSolarVersion\">Funció GetSolarVersion</link>"
+msgid "<link href=\"text/sbasic/shared/03131000.xhp\">GetSolarVersion Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03131000.xhp\">Funció GetSolarVersion</link>"
#. nmGAh
#: 03131000.xhp
@@ -33011,14 +33011,14 @@ msgctxt ""
msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
msgstr "<bookmark_value>Funció TwipsPerPixelX</bookmark_value>"
-#. PX34j
+#. BGD45
#: 03131300.xhp
msgctxt ""
"03131300.xhp\n"
"hd_id3153539\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function\">TwipsPerPixelX Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"Funció TwipsPerPixelX\">Funció TwipsPerPixelX</link>"
+msgid "<link href=\"text/sbasic/shared/03131300.xhp\">TwipsPerPixelX Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03131300.xhp\">Funció TwipsPerPixelX</link>"
#. bmYpd
#: 03131300.xhp
@@ -33092,14 +33092,14 @@ msgctxt ""
msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
msgstr "<bookmark_value>Funció TwipsPerPixelY</bookmark_value>"
-#. De4V7
+#. NDkKA
#: 03131400.xhp
msgctxt ""
"03131400.xhp\n"
"hd_id3150040\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function\">TwipsPerPixelY Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"Funció TwipsPerPixelY\">Funció TwipsPerPixelY</link>"
+msgid "<link href=\"text/sbasic/shared/03131400.xhp\">TwipsPerPixelY Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03131400.xhp\">Funció TwipsPerPixelY</link>"
#. DZE99
#: 03131400.xhp
@@ -33173,14 +33173,14 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
msgstr "<bookmark_value>Funció CreateUnoStruct</bookmark_value>"
-#. QJFXF
+#. WdGcZ
#: 03131500.xhp
msgctxt ""
"03131500.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function\">CreateUnoStruct Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"Funció CreateUnoStruct\">Funció CreateUnoStruct</link>"
+msgid "<link href=\"text/sbasic/shared/03131500.xhp\">CreateUnoStruct Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03131500.xhp\">Funció CreateUnoStruct</link>"
#. XVkg2
#: 03131500.xhp
@@ -33227,13 +33227,13 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoService function</bookmark_value> <bookmark_value>API;FilePicker</bookmark_value> <bookmark_value>API;SimpleFileAccess</bookmark_value>"
msgstr ""
-#. aeYuT
+#. aSjzR
#: 03131600.xhp
msgctxt ""
"03131600.xhp\n"
"hd_id3150682\n"
"help.text"
-msgid "<variable id=\"createunoserviceh1\"><link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function\">CreateUnoService Function</link></variable>"
+msgid "<variable id=\"createunoserviceh1\"><link href=\"text/sbasic/shared/03131600.xhp\">CreateUnoService Function</link></variable>"
msgstr ""
#. ztccV
@@ -33245,13 +33245,13 @@ msgctxt ""
msgid "Instantiates a Uno service with the <literal>ProcessServiceManager</literal>."
msgstr ""
-#. 5oFHA
+#. D7K6z
#: 03131600.xhp
msgctxt ""
"03131600.xhp\n"
"par_id921629989537850\n"
"help.text"
-msgid "For a list of available services, visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\" name=\"UNO_Service_Names\">com::sun::star Module</link> reference page."
+msgid "For a list of available services, visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\">com::sun::star Module</link> reference page."
msgstr ""
#. BSPFS
@@ -33263,13 +33263,13 @@ msgctxt ""
msgid "The example below creates the function <literal>FileExists</literal> that uses the service <literal>com.sun.star.ucb.SimpleFileAccess</literal> to test if a given path is an existing file."
msgstr ""
-#. be6H2
+#. szCvu
#: 03131600.xhp
msgctxt ""
"03131600.xhp\n"
"par_id351629989310797\n"
"help.text"
-msgid "UNO services have an extensive online documentation in the <link href=\"https://api.libreoffice.org/\" name=\"API_Website\">api.libreoffice.org</link> website. Visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ucb_1_1SimpleFileAccess.html\" name=\"SimpleFileAccess_Page\">SimpleFileAccess Service</link> reference page to learn more about the methods provided by the service used in the example above."
+msgid "UNO services have an extensive online documentation in the <link href=\"https://api.libreoffice.org/\">api.libreoffice.org</link> website. Visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ucb_1_1SimpleFileAccess.html\">SimpleFileAccess Service</link> reference page to learn more about the methods provided by the service used in the example above."
msgstr ""
#. U26ti
@@ -33326,14 +33326,14 @@ msgctxt ""
msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
msgstr "<bookmark_value>Funció GetProcessServiceManager</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
-#. 9igPo
+#. Gyu32
#: 03131700.xhp
msgctxt ""
"03131700.xhp\n"
"hd_id3153255\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function\">GetProcessServiceManager Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"Funció GetProcessServiceManager\">Funció GetProcessServiceManager</link>"
+msgid "<link href=\"text/sbasic/shared/03131700.xhp\">GetProcessServiceManager Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03131700.xhp\">Funció GetProcessServiceManager</link>"
#. L2WEC
#: 03131700.xhp
@@ -33380,14 +33380,14 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
msgstr "<bookmark_value>Funció CreateUnoDialog</bookmark_value>"
-#. iSyTd
+#. 6LvCD
#: 03131800.xhp
msgctxt ""
"03131800.xhp\n"
"hd_id3150040\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function\">CreateUnoDialog Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"Funció CreateUnoDialog\">Funció CreateUnoDialog</link>"
+msgid "<link href=\"text/sbasic/shared/03131800.xhp\">CreateUnoDialog Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03131800.xhp\">Funció CreateUnoDialog</link>"
#. ryoxW
#: 03131800.xhp
@@ -33407,14 +33407,14 @@ msgctxt ""
msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
msgstr "Els diàlegs es defineixen a les biblioteques de diàleg. Per visualitzar un diàleg, s'ha de crear un diàleg \"en viu\" des de la biblioteca."
-#. A4Fe3
+#. WbRvi
#: 03131800.xhp
msgctxt ""
"03131800.xhp\n"
"par_id3153681\n"
"help.text"
-msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr "Consulteu els <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Exemples\">Exemples</link>."
+msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\">Examples</link>."
+msgstr "Consulteu els <link href=\"text/sbasic/guide/sample_code.xhp\">Exemples</link>."
#. 4W3aw
#: 03131800.xhp
@@ -33452,13 +33452,13 @@ msgctxt ""
msgid "<bookmark_value>GlobalScope specifier</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>Library container</bookmark_value><bookmark_value>GlobalScope</bookmark_value><bookmark_value>API; BasicLibraries</bookmark_value><bookmark_value>API; DialogLibraries</bookmark_value><bookmark_value>BasicLibraries; library container</bookmark_value><bookmark_value>DialogLibraries; library container</bookmark_value>"
msgstr ""
-#. 4nALX
+#. ZAFpM
#: 03131900.xhp
msgctxt ""
"03131900.xhp\n"
"hd_id3150682\n"
"help.text"
-msgid "<variable id=\"GlobalScope_h1\"><link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link></variable>"
+msgid "<variable id=\"GlobalScope_h1\"><link href=\"text/sbasic/shared/03131900.xhp\">GlobalScope specifier</link></variable>"
msgstr ""
#. Bp3q2
@@ -33488,13 +33488,13 @@ msgctxt ""
msgid "In Basic:"
msgstr "Al Basic:"
-#. JLAkk
+#. WJ2Ei
#: 03131900.xhp
msgctxt ""
"03131900.xhp\n"
"par_id3153061\n"
"help.text"
-msgid "Basic libraries and modules can be managed with the <literal>BasicLibraries</literal> object. Libraries can be searched, explored and loaded on request. <link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring document events\">Monitoring Documents Events</link> illustrates %PRODUCTNAME library loading."
+msgid "Basic libraries and modules can be managed with the <literal>BasicLibraries</literal> object. Libraries can be searched, explored and loaded on request. <link href=\"text/sbasic/python/python_document_events.xhp\">Monitoring Documents Events</link> illustrates %PRODUCTNAME library loading."
msgstr ""
#. retJJ
@@ -33506,13 +33506,13 @@ msgctxt ""
msgid "In dialogs:"
msgstr "Als diàlegs:"
-#. tQBVS
+#. 3r2Rm
#: 03131900.xhp
msgctxt ""
"03131900.xhp\n"
"par_id3148663\n"
"help.text"
-msgid "Dialog libraries and dialogs can be managed with the <literal>DialogLibraries</literal> object. <link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog\">Opening a Dialog With Basic</link> illustrates how to display %PRODUCTNAME shared dialogs."
+msgid "Dialog libraries and dialogs can be managed with the <literal>DialogLibraries</literal> object. <link href=\"text/sbasic/guide/show_dialog.xhp\">Opening a Dialog With Basic</link> illustrates how to display %PRODUCTNAME shared dialogs."
msgstr ""
#. XUR24
@@ -33569,13 +33569,13 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
msgstr "<bookmark_value>Funció CreateUnoListener</bookmark_value>"
-#. k47rL
+#. vGyFF
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"hd_id3155150\n"
"help.text"
-msgid "<variable id=\"CreateUnoListener\"><link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">CreateUnoListener Function</link></variable>"
+msgid "<variable id=\"CreateUnoListener\"><link href=\"text/sbasic/shared/03132000.xhp\">CreateUnoListener Function</link></variable>"
msgstr ""
#. KPYNU
@@ -33641,13 +33641,13 @@ msgctxt ""
msgid "The <literal>CreateUnoListener</literal> method requires two parameters. The first is <emph>Prefix</emph> and is explained in detail below. <emph>Typename</emph> second parameter is the fully qualified name of the listener interface."
msgstr ""
-#. FDJUE
+#. Fkb3G
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"par_id3149670\n"
"help.text"
-msgid "Every listener must be registered to %PRODUCTNAME broadcaster feature. This is performed by binding each listener to its associated object. Bind methods always follow the pattern '<literal>add</literal>Foo<literal>Listener</literal>', where 'Foo' is the object type of the listener interface, without the 'X'. In this example, the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainer.html#a69e03a743cfa3e99935cac90b5f4e291\" name=\"com.sun.star.container.XContainer\"><literal>addContainerListener</literal></link> method is called to register the <literal>XContainerListener</literal>:"
+msgid "Every listener must be registered to %PRODUCTNAME broadcaster feature. This is performed by binding each listener to its associated object. Bind methods always follow the pattern '<literal>add</literal>Foo<literal>Listener</literal>', where 'Foo' is the object type of the listener interface, without the 'X'. In this example, the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainer.html#a69e03a743cfa3e99935cac90b5f4e291\"><literal>addContainerListener</literal></link> method is called to register the <literal>XContainerListener</literal>:"
msgstr ""
#. dbBi5
@@ -33668,13 +33668,13 @@ msgctxt ""
msgid "oLib.addContainerListener( oListener ) ' Register the listener"
msgstr "oLib.addContainerListener( oListener ) ' Registra l'oient"
-#. Rw3Ef
+#. JQmnw
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "The listener is now registered. When an event occurs, the active listener calls the appropriate method defined in <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener.html\" name=\"XContainerListener interface\">com.sun.star.container.XContainerListener</link> interface."
+msgid "The listener is now registered. When an event occurs, the active listener calls the appropriate method defined in <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener.html\">com.sun.star.container.XContainerListener</link> interface."
msgstr ""
#. khXGf
@@ -33686,13 +33686,13 @@ msgctxt ""
msgid "Event-driven registered BASIC subroutines require to use a defined <emph>Prefix</emph>. The BASIC run-time system searches for subroutines or functions that have the name 'Prefix+ListenerMethod' and calls them when found. Otherwise, a run-time error occurs."
msgstr ""
-#. cP2wB
+#. mH8Hp
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"par_id3150768\n"
"help.text"
-msgid "In this example, <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener-members.html\" name=\"container.XContainerListener\">com.sun.star.container.XContainerListener</link> interface defines the following methods:"
+msgid "In this example, <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener-members.html\">com.sun.star.container.XContainerListener</link> interface defines the following methods:"
msgstr ""
#. 6D4uk
@@ -33722,13 +33722,13 @@ msgctxt ""
msgid "<literal>disposing</literal>"
msgstr ""
-#. CxGrq
+#. GxFCE
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"par_id841666342054257\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1lang_1_1XEventListener.html\" name=\"lang.XEventListener\">com.sun.star.lang.XEventListener</link> base interface for all Listener Interfaces"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1lang_1_1XEventListener.html\">com.sun.star.lang.XEventListener</link> base interface for all Listener Interfaces"
msgstr ""
#. TwAfR
@@ -33740,13 +33740,13 @@ msgctxt ""
msgid "<literal>elementInserted</literal>"
msgstr ""
-#. UBt9Q
+#. 5dACv
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"par_id841666342054258\n"
"help.text"
-msgid "Method of the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener-members.html\" name=\"container.XContainerListener\">com.sun.star.container.XContainerListener</link> interface"
+msgid "Method of the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener-members.html\">com.sun.star.container.XContainerListener</link> interface"
msgstr ""
#. XAffE
@@ -33758,13 +33758,13 @@ msgctxt ""
msgid "elementRemoved"
msgstr ""
-#. mm4Ae
+#. pEuic
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"par_id841666342054259\n"
"help.text"
-msgid "Method of the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener-members.html\" name=\"container.XContainerListener\">com.sun.star.container.XContainerListener</link> interface"
+msgid "Method of the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener-members.html\">com.sun.star.container.XContainerListener</link> interface"
msgstr ""
#. 4vonG
@@ -33776,13 +33776,13 @@ msgctxt ""
msgid "elementReplaced"
msgstr ""
-#. RgCiV
+#. NwDxn
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"par_id841666342054267\n"
"help.text"
-msgid "Method of the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener-members.html\" name=\"container.XContainerListener\">com.sun.star.container.XContainerListener</link> interface"
+msgid "Method of the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1container_1_1XContainerListener-members.html\">com.sun.star.container.XContainerListener</link> interface"
msgstr ""
#. foQYD
@@ -33830,13 +33830,13 @@ msgctxt ""
msgid "Listener methods must <emph>always</emph> be implemented to avoid BASIC run-time errors."
msgstr ""
-#. RzAWE
+#. gjzCM
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"par_id101666620765251\n"
"help.text"
-msgid "Use <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge\"><literal>ScriptForge</literal></link> library console when the BASIC IDE is not easily accessible, that is during events processing. Use the <link href=\"text/sbasic/shared/03/sf_exception.xhp#DebugPrint\" name=\"DebugPrint\"><literal>DebugPrint</literal></link> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window. Use <literal>Trace</literal> module of <link href=\"text/sbasic/guide/access2base.xhp\" name=\"Access2Base library\"><literal>Access2Base</literal></link> library as an alternative"
+msgid "Use <link href=\"text/sbasic/shared/03/sf_exception.xhp\"><literal>ScriptForge</literal></link> library console when the BASIC IDE is not easily accessible, that is during events processing. Use the <link href=\"text/sbasic/shared/03/sf_exception.xhp#DebugPrint\"><literal>DebugPrint</literal></link> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window. Use <literal>Trace</literal> module of <link href=\"text/sbasic/guide/access2base.xhp\"><literal>Access2Base</literal></link> library as an alternative"
msgstr ""
#. 866fR
@@ -33938,22 +33938,22 @@ msgctxt ""
msgid "End Sub ' A2B_Trace"
msgstr ""
-#. sAUGi
+#. 6zG9c
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"N0506\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Events mapping to objects</link>"
+msgid "<link href=\"text/swriter/01/05060700.xhp\">Events mapping to objects</link>"
msgstr ""
-#. NRvBQ
+#. LRVPx
#: 03132000.xhp
msgctxt ""
"03132000.xhp\n"
"N0509\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Form events</link>."
+msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\">Form events</link>."
msgstr ""
#. DkK8h
@@ -33974,13 +33974,13 @@ msgctxt ""
msgid "<bookmark_value>GetGuiType function</bookmark_value>"
msgstr "<bookmark_value>Funció GetGuiType</bookmark_value>"
-#. JzY2R
+#. SCAmq
#: 03132100.xhp
msgctxt ""
"03132100.xhp\n"
"hd_id3155310\n"
"help.text"
-msgid "<variable id=\"getguitype2\"><link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType Function</link></variable>"
+msgid "<variable id=\"getguitype2\"><link href=\"text/sbasic/shared/03132100.xhp\">GetGuiType Function</link></variable>"
msgstr ""
#. 2DTJG
@@ -34082,13 +34082,13 @@ msgctxt ""
msgid "<bookmark_value>ThisComponent object</bookmark_value> <bookmark_value>components;addressing</bookmark_value>"
msgstr ""
-#. 88n2h
+#. 7vAYp
#: 03132200.xhp
msgctxt ""
"03132200.xhp\n"
"hd_id3155342\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Object\">ThisComponent Object</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\">ThisComponent Object</link>"
msgstr ""
#. ECFFs
@@ -34145,67 +34145,67 @@ msgctxt ""
msgid "' use the default name for Table of Contents and a 1"
msgstr "' utilitzeu el nom per defecte per a l'Índex de continguts i a 1"
-#. XF28a
+#. zSJZn
#: 03132200.xhp
msgctxt ""
"03132200.xhp\n"
"par_id101622646874083\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1text_1_1TextDocument.html\" name=\"TextDocument API service\">com.sun.star.text.TextDocument</link> API service"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1text_1_1TextDocument.html\">com.sun.star.text.TextDocument</link> API service"
msgstr ""
-#. E7kt6
+#. TzEXw
#: 03132200.xhp
msgctxt ""
"03132200.xhp\n"
"par_id102622646874083\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sheet_1_1SpreadsheetDocument.html\" name=\"SpreadsheetDocument API service\">com.sun.star.sheet.SpreadsheetDocument</link> API service"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sheet_1_1SpreadsheetDocument.html\">com.sun.star.sheet.SpreadsheetDocument</link> API service"
msgstr ""
-#. jsHZ7
+#. GFDaw
#: 03132200.xhp
msgctxt ""
"03132200.xhp\n"
"par_id103622646874083\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1presentation_1_1PresentationDocument.html\" name=\"PresentationDocument API service\">com.sun.star.presentation.PresentationDocument</link> API service"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1presentation_1_1PresentationDocument.html\">com.sun.star.presentation.PresentationDocument</link> API service"
msgstr ""
-#. uQFSg
+#. JmDBV
#: 03132200.xhp
msgctxt ""
"03132200.xhp\n"
"par_id104622646874083\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1drawing_1_1DrawingDocument.html\" name=\"DrawingDocument API service\">com.sun.star.drawing.DrawingDocument</link> API service"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1drawing_1_1DrawingDocument.html\">com.sun.star.drawing.DrawingDocument</link> API service"
msgstr ""
-#. HjxZi
+#. jDqz7
#: 03132200.xhp
msgctxt ""
"03132200.xhp\n"
"par_id105622646874083\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1formula_1_1FormulaProperties.html\" name=\"FormulaProperties API service\">com.sun.star.formula.FormulaProperties</link> API service"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1formula_1_1FormulaProperties.html\">com.sun.star.formula.FormulaProperties</link> API service"
msgstr ""
-#. FLbnX
+#. xpG9X
#: 03132200.xhp
msgctxt ""
"03132200.xhp\n"
"par_id106622646874083\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link> API service"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\">com.sun.star.sdb.OfficeDatabaseDocument</link> API service"
msgstr ""
-#. vZW9w
+#. edFXK
#: 03132200.xhp
msgctxt ""
"03132200.xhp\n"
"par_id581622646875379\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link> API service"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\">com.sun.star.document.OfficeDocument</link> API service"
msgstr ""
#. QgZSF
@@ -34226,14 +34226,14 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
msgstr "<bookmark_value>Funció CreateUnoValue</bookmark_value>"
-#. d8Ftc
+#. 7qL7K
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
"hd_id3150682\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function\">CreateUnoValue Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"Funció CreateUnoValue\">Funció CreateUnoValue</link>"
+msgid "<link href=\"text/sbasic/shared/03132300.xhp\">CreateUnoValue Function</link>"
+msgstr "<link href=\"text/sbasic/shared/03132300.xhp\">Funció CreateUnoValue</link>"
#. abSpa
#: 03132300.xhp
@@ -34397,14 +34397,14 @@ msgctxt ""
msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
msgstr "Torna el context per defecte de la fàbrica de servei de procés, si existeix; en cas contrari, torna una referència nul·la."
-#. SanWM
+#. hdBK5
#: 03132500.xhp
msgctxt ""
"03132500.xhp\n"
"par_idN10593\n"
"help.text"
-msgid "This 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=\"https://api.libreoffice.org\" name=\"api.libreoffice.org\">api.libreoffice.org</link> for more information."
-msgstr "Aquesta funció retorna el context per defecte del component que cal utilitzar, si s'instancien els serveis via XmultiServiceFactory. Vegeu el capítol <item type=\"literal\">Professional UNO</item> al document <item type=\"literal\">Developer's Guide</item> (en anglés) a <link href=\"https://api.libreoffice.org\" name=\"api.libreoffice.org\">api.libreoffice.org</link> per a obtindre més informació."
+msgid "This 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=\"https://api.libreoffice.org\">api.libreoffice.org</link> for more information."
+msgstr "Aquesta funció retorna el context per defecte del component que cal utilitzar, si s'instancien els serveis via XmultiServiceFactory. Vegeu el capítol <item type=\"literal\">Professional UNO</item> al document <item type=\"literal\">Developer's Guide</item> (en anglés) a <link href=\"https://api.libreoffice.org\">api.libreoffice.org</link> per a obtindre més informació."
#. DJUpk
#: 03140000.xhp
@@ -34424,14 +34424,14 @@ msgctxt ""
msgid "<bookmark_value>DDB function</bookmark_value>"
msgstr "<bookmark_value>funció DDB</bookmark_value>"
-#. E85CC
+#. LiiR8
#: 03140000.xhp
msgctxt ""
"03140000.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [VBA]\">DDB Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"Funció DDB [VBA]\">Funció DDB [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140000.xhp\">DDB Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140000.xhp\">Funció DDB [VBA]</link>"
#. rGkXG
#: 03140000.xhp
@@ -34532,14 +34532,14 @@ msgctxt ""
msgid "<bookmark_value>FV function</bookmark_value>"
msgstr "<bookmark_value>funció FV</bookmark_value>"
-#. 4mJEP
+#. MUt9s
#: 03140001.xhp
msgctxt ""
"03140001.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [VBA]\">FV Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"Funció FV [VBA]\">Funció FV [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140001.xhp\">FV Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140001.xhp\">Funció FV [VBA]</link>"
#. xLDE6
#: 03140001.xhp
@@ -34649,14 +34649,14 @@ msgctxt ""
msgid "<bookmark_value>IPmt function</bookmark_value>"
msgstr "<bookmark_value>funció IPmt</bookmark_value>"
-#. j6Dqb
+#. 7c9dy
#: 03140002.xhp
msgctxt ""
"03140002.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [VBA]\">IPmt Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"Funció IPmt [VBA]\">Funció IPmt [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140002.xhp\">IPmt Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140002.xhp\">Funció IPmt [VBA]</link>"
#. NhJBQ
#: 03140002.xhp
@@ -34775,14 +34775,14 @@ msgctxt ""
msgid "<bookmark_value>IRR function</bookmark_value>"
msgstr "<bookmark_value>funció IRR</bookmark_value>"
-#. htTGN
+#. Aiorb
#: 03140003.xhp
msgctxt ""
"03140003.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [VBA]\">IRR Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"Funció IRR [VBA]\">Funció IRR [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140003.xhp\">IRR Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140003.xhp\">Funció IRR [VBA]</link>"
#. GC4DC
#: 03140003.xhp
@@ -34847,14 +34847,14 @@ msgctxt ""
msgid "<bookmark_value>MIRR function</bookmark_value>"
msgstr "<bookmark_value>funció MIRR</bookmark_value>"
-#. ztrr4
+#. hjGpR
#: 03140004.xhp
msgctxt ""
"03140004.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [VBA]\">MIRR Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"Funció MIRR [VBA]\">Funció MIRR [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140004.xhp\">MIRR Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140004.xhp\">Funció MIRR [VBA]</link>"
#. iEx4J
#: 03140004.xhp
@@ -34928,14 +34928,14 @@ msgctxt ""
msgid "<bookmark_value>NPer function</bookmark_value>"
msgstr "<bookmark_value>funció NPer</bookmark_value>"
-#. ZmG2N
+#. ciLD9
#: 03140005.xhp
msgctxt ""
"03140005.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [VBA]\">NPer Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"Funció NPer [VBA]\">Funció NPer [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140005.xhp\">NPer Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140005.xhp\">Funció NPer [VBA]</link>"
#. SExLZ
#: 03140005.xhp
@@ -35045,14 +35045,14 @@ msgctxt ""
msgid "<bookmark_value>NPV function</bookmark_value>"
msgstr "<bookmark_value>funció NPV</bookmark_value>"
-#. oTyBY
+#. EG2GA
#: 03140006.xhp
msgctxt ""
"03140006.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140006.xhp\" name=\"NPV Function [VBA]\">NPV Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140006.xhp\" name=\"Funció NPV [VBA]\">Funció NPV [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140006.xhp\">NPV Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140006.xhp\">Funció NPV [VBA]</link>"
#. TFoMM
#: 03140006.xhp
@@ -35117,14 +35117,14 @@ msgctxt ""
msgid "<bookmark_value>Pmt function</bookmark_value>"
msgstr "<bookmark_value>funció Pmt</bookmark_value>"
-#. UgwFi
+#. CB4yD
#: 03140007.xhp
msgctxt ""
"03140007.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140007.xhp\" name=\"Pmt Function [VBA]\">Pmt Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140007.xhp\" name=\"Funció Pmt [VBA]\">Funció Pmt [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140007.xhp\">Pmt Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140007.xhp\">Funció Pmt [VBA]</link>"
#. rtk8j
#: 03140007.xhp
@@ -35252,14 +35252,14 @@ msgctxt ""
msgid "<bookmark_value>PPmt function</bookmark_value>"
msgstr "<bookmark_value>funció PPmt</bookmark_value>"
-#. nu8jw
+#. znLCY
#: 03140008.xhp
msgctxt ""
"03140008.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140008.xhp\" name=\"PPmt Function [VBA]\">PPmt Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140008.xhp\" name=\"Funció PPmt [VBA]\">Funció PPmt [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140008.xhp\">PPmt Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140008.xhp\">Funció PPmt [VBA]</link>"
#. rqzFy
#: 03140008.xhp
@@ -35423,14 +35423,14 @@ msgctxt ""
msgid "<bookmark_value>PV function</bookmark_value>"
msgstr "<bookmark_value>funció PV</bookmark_value>"
-#. Apiz9
+#. U7pfn
#: 03140009.xhp
msgctxt ""
"03140009.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140009.xhp\" name=\"PV Function [VBA]\">PV Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140009.xhp\" name=\"Funció PV [VBA]\">Funció PV [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140009.xhp\">PV Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140009.xhp\">Funció PV [VBA]</link>"
#. W2mK8
#: 03140009.xhp
@@ -35558,14 +35558,14 @@ msgctxt ""
msgid "<bookmark_value>Rate function</bookmark_value>"
msgstr "<bookmark_value>funció Rate</bookmark_value>"
-#. cFGDM
+#. jLrMj
#: 03140010.xhp
msgctxt ""
"03140010.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140010.xhp\" name=\"Rate Function [VBA]\">Rate Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140010.xhp\" name=\"Funció Rate [VBA]\">Funció Rate [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140010.xhp\">Rate Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140010.xhp\">Funció Rate [VBA]</link>"
#. wd5A3
#: 03140010.xhp
@@ -35702,14 +35702,14 @@ msgctxt ""
msgid "<bookmark_value>SLN function</bookmark_value>"
msgstr "<bookmark_value>funció SLN</bookmark_value>"
-#. iFETE
+#. 6AwFn
#: 03140011.xhp
msgctxt ""
"03140011.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140011.xhp\" name=\"SLN Function [VBA]\">SLN Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140011.xhp\" name=\"Funció SLN [VBA]\">Funció SLN [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140011.xhp\">SLN Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140011.xhp\">Funció SLN [VBA]</link>"
#. ikzyz
#: 03140011.xhp
@@ -35801,14 +35801,14 @@ msgctxt ""
msgid "<bookmark_value>SYD function</bookmark_value>"
msgstr "<bookmark_value>funció SYD</bookmark_value>"
-#. QAv7h
+#. ydHGN
#: 03140012.xhp
msgctxt ""
"03140012.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03140012.xhp\" name=\"SYD Function [VBA]\">SYD Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03140012.xhp\" name=\"Funció SYD [VBA]\">Funció SYD [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03140012.xhp\">SYD Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03140012.xhp\">Funció SYD [VBA]</link>"
#. MAefZ
#: 03140012.xhp
@@ -35918,14 +35918,14 @@ msgctxt ""
msgid "<bookmark_value>FormatDateTime function</bookmark_value>"
msgstr "<bookmark_value>funció FormatDateTime</bookmark_value>"
-#. R4FFx
+#. ioqgs
#: 03150000.xhp
msgctxt ""
"03150000.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03150000.xhp\" name=\"FormatDateTime Function [VBA]\">FormatDateTime Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03150000.xhp\" name=\"Funció FormatDateTime [VBA]\">Funció FormatDateTime [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03150000.xhp\">FormatDateTime Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03150000.xhp\">Funció FormatDateTime [VBA]</link>"
#. EFKxm
#: 03150000.xhp
@@ -36098,14 +36098,14 @@ msgctxt ""
msgid "<bookmark_value>WeekdayName function</bookmark_value>"
msgstr "<bookmark_value>funció WeekdayName</bookmark_value>"
-#. pe4vX
+#. Tsx48
#: 03150001.xhp
msgctxt ""
"03150001.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"WeekdayName Function [VBA]\">WeekdayName Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"Funció WeekdayName [VBA]\">Funció WeekdayName [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03150001.xhp\">WeekdayName Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03150001.xhp\">Funció WeekdayName [VBA]</link>"
#. cApru
#: 03150001.xhp
@@ -36278,14 +36278,14 @@ msgctxt ""
msgid "<bookmark_value>MonthName function</bookmark_value>"
msgstr "<bookmark_value>funció MonthName</bookmark_value>"
-#. 2DaT8
+#. awMU4
#: 03150002.xhp
msgctxt ""
"03150002.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"MonthName Function [VBA]\">MonthName Function [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"Funció MonthName [VBA]\">Funció MonthName [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03150002.xhp\">MonthName Function [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03150002.xhp\">Funció MonthName [VBA]</link>"
#. zW82k
#: 03150002.xhp
@@ -36332,13 +36332,13 @@ msgctxt ""
msgid "<bookmark_value>Input function</bookmark_value>"
msgstr "<bookmark_value>funció Input</bookmark_value>"
-#. 98TG4
+#. 5rfjC
#: 03160000.xhp
msgctxt ""
"03160000.xhp\n"
"hd_id141626276767913\n"
"help.text"
-msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input Function [VBA]\">Input Function [VBA]</link></variable>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03160000.xhp\">Input Function [VBA]</link></variable>"
msgstr ""
#. FGDak
@@ -36395,13 +36395,13 @@ msgctxt ""
msgid "<bookmark_value>Round function (VBA)</bookmark_value>"
msgstr ""
-#. oVQUL
+#. GNHFQ
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<variable id=\"Round_VBA_h1\"><link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link></variable>"
+msgid "<variable id=\"Round_VBA_h1\"><link href=\"text/sbasic/shared/03170000.xhp\">Round Function [VBA]</link></variable>"
msgstr ""
#. B6tFP
@@ -36413,13 +36413,13 @@ msgctxt ""
msgid "Rounds a numeric value to a specified number of decimal digits."
msgstr ""
-#. yUTFN
+#. kfZ8A
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"par_id741634154499890\n"
"help.text"
-msgid "This function implements the rounding rule known as \"round-to-even\". With this rule, whenever the difference between the number to be rounded and its nearest integer is equal to 0.5, the number is rounded to the nearest even number. See the examples <link href=\"text/sbasic/shared/03170000.xhp#round_example\" name=\"round_ex_link\">below</link> to learn more about this rule."
+msgid "This function implements the rounding rule known as \"round-to-even\". With this rule, whenever the difference between the number to be rounded and its nearest integer is equal to 0.5, the number is rounded to the nearest even number. See the examples <link href=\"text/sbasic/shared/03170000.xhp#round_example\">below</link> to learn more about this rule."
msgstr ""
#. r5HMd
@@ -36503,14 +36503,14 @@ msgctxt ""
msgid "<bookmark_value>FormatNumber function</bookmark_value>"
msgstr "<bookmark_value>funció FormatNumber</bookmark_value>"
-#. aaK4B
+#. NUyRb
#: 03170010.xhp
msgctxt ""
"03170010.xhp\n"
"hd_id871542193473857\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03170010.xhp\" name=\"FormatNumber Function [VBA]\">FormatNumber [VBA]</link>"
-msgstr "<link href=\"text/sbasic/shared/03170010.xhp\" name=\"Funció FormatNumber [VBA]\">Funció FormatNumber [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/03170010.xhp\">FormatNumber [VBA]</link>"
+msgstr "<link href=\"text/sbasic/shared/03170010.xhp\">Funció FormatNumber [VBA]</link>"
#. GEgN3
#: 03170010.xhp
@@ -36548,13 +36548,13 @@ msgctxt ""
msgid "<emph>numDigitsAfterDecimal</emph>: Optional. A numeric value specifying the number of digits that should be displayed after the decimal. If omitted, it defaults to the value -1, meaning that the default settings for user interface locale should be used."
msgstr ""
-#. BN3xY
+#. iFkar
#: 03170010.xhp
msgctxt ""
"03170010.xhp\n"
"par_id961542200034362\n"
"help.text"
-msgid "<emph>includeLeadingDigit</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value, specifying whether a leading zero should be displayed for fractional values."
+msgid "<emph>includeLeadingDigit</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\">vbTriState</link> enumeration value, specifying whether a leading zero should be displayed for fractional values."
msgstr ""
#. cNFTu
@@ -36584,13 +36584,13 @@ msgctxt ""
msgid "<emph>vbUseDefaults or -2</emph>: Use the user interface locale settings. This is the default when omitted."
msgstr ""
-#. CyTLd
+#. xEHZb
#: 03170010.xhp
msgctxt ""
"03170010.xhp\n"
"par_id311542201637647\n"
"help.text"
-msgid "<emph>useParensForNegativeNumbers</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying whether negative numbers should be encased in parenthesis."
+msgid "<emph>useParensForNegativeNumbers</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\">vbTriState</link> enumeration value specifying whether negative numbers should be encased in parenthesis."
msgstr ""
#. CgCCe
@@ -36620,13 +36620,13 @@ msgctxt ""
msgid "<emph>vbUseDefaults or -2</emph>: Same as vbFalse. This is the default when omitted."
msgstr ""
-#. dsg88
+#. pj4ES
#: 03170010.xhp
msgctxt ""
"03170010.xhp\n"
"par_id531542201968815\n"
"help.text"
-msgid "<emph>groupDigits</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying the number should be grouped (into thousands, etc.), using the group delimiter that is specified on the system's regional settings."
+msgid "<emph>groupDigits</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\">vbTriState</link> enumeration value specifying the number should be grouped (into thousands, etc.), using the group delimiter that is specified on the system's regional settings."
msgstr ""
#. raMda
@@ -36674,14 +36674,14 @@ msgctxt ""
msgid "<bookmark_value>events;linked to objects</bookmark_value>"
msgstr "<bookmark_value>esdeveniments;enllaçats a objectes</bookmark_value>"
-#. YEDsK
+#. DrNzT
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
"hd_id3153894\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
-msgstr "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgid "<link href=\"text/sbasic/shared/05060700.xhp\">Macro</link>"
+msgstr "<link href=\"text/sbasic/shared/05060700.xhp\">Macro</link>"
#. ZcEaC
#: 05060700.xhp
@@ -37196,13 +37196,13 @@ msgctxt ""
msgid "<emph>result</emph>: An optional variable that contains the result of the called method or property."
msgstr ""
-#. 6Hx3V
+#. qDp7h
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"par_id3150448\n"
"help.text"
-msgid "<emph>object</emph>: A Basic module, <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule\">ClassModule</link> instance or UNO service holding properties or methods."
+msgid "<emph>object</emph>: A Basic module, <link href=\"text/sbasic/shared/classmodule.xhp\">ClassModule</link> instance or UNO service holding properties or methods."
msgstr ""
#. EiVq3
@@ -37313,13 +37313,13 @@ msgctxt ""
msgid "<literal>ScriptForge.Platform.Architecture</literal> information is retrieved."
msgstr ""
-#. rvtXD
+#. JpUmu
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"par_id651644588404943\n"
"help.text"
-msgid "<literal>DisplayDirectory</literal> property of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker-members.html\" name=\"FilePicker\">com.sun.star.ui.dialogs.FilePicker</link> UNO service is set to the user home folder, its content is read twice."
+msgid "<literal>DisplayDirectory</literal> property of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker-members.html\">com.sun.star.ui.dialogs.FilePicker</link> UNO service is set to the user home folder, its content is read twice."
msgstr ""
#. 3DsDt
@@ -37376,13 +37376,13 @@ msgctxt ""
msgid "<bookmark_value>Compiler Options</bookmark_value> <bookmark_value>Runtime conditions</bookmark_value>"
msgstr ""
-#. xtwLp
+#. aLn5V
#: Compiler_options.xhp
msgctxt ""
"Compiler_options.xhp\n"
"hd_id951592401835244\n"
"help.text"
-msgid "<variable id=\"compileroptions\"><link href=\"text/sbasic/shared/Compiler_options.xhp\" name=\"Compiler Options\">Compiler Options, Runtime Conditions</link></variable>"
+msgid "<variable id=\"compileroptions\"><link href=\"text/sbasic/shared/Compiler_options.xhp\">Compiler Options, Runtime Conditions</link></variable>"
msgstr ""
#. PEuT6
@@ -37439,13 +37439,13 @@ msgctxt ""
msgid "Options specified at the module level also affect %PRODUCTNAME <emph>Basic runtime conditions</emph>. The behaviour of %PRODUCTNAME Basic instructions can differ."
msgstr ""
-#. cGCiF
+#. 6D8B8
#: Compiler_options.xhp
msgctxt ""
"Compiler_options.xhp\n"
"par_id291592407073335\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/property.xhp\" name=\"Property statement\">Property statement</link>"
+msgid "<link href=\"text/sbasic/shared/property.xhp\">Property statement</link>"
msgstr ""
#. tWPnu
@@ -37466,13 +37466,13 @@ msgctxt ""
msgid "<bookmark_value>CreateUnoServiceWithArguments function</bookmark_value> <bookmark_value>API;FilePicker</bookmark_value>"
msgstr ""
-#. CidCW
+#. jy6GG
#: CreateUnoSvcWithArgs.xhp
msgctxt ""
"CreateUnoSvcWithArgs.xhp\n"
"hd_id3150682\n"
"help.text"
-msgid "<variable id=\"UnoSvcWithArgs_h1\"><link href=\"text/sbasic/shared/CreateUnoSvcWithArgs.xhp\" name=\"CreateUnoServiceWithArguments Function\">CreateUnoServiceWithArguments Function</link></variable>"
+msgid "<variable id=\"UnoSvcWithArgs_h1\"><link href=\"text/sbasic/shared/CreateUnoSvcWithArgs.xhp\">CreateUnoServiceWithArguments Function</link></variable>"
msgstr ""
#. hpwH8
@@ -37520,13 +37520,13 @@ msgctxt ""
msgid "An instance of the given UNO service name, otherwise <literal>Null</literal> value."
msgstr ""
-#. Jjw2G
+#. J5VwA
#: CreateUnoSvcWithArgs.xhp
msgctxt ""
"CreateUnoSvcWithArgs.xhp\n"
"par_id921629989537850\n"
"help.text"
-msgid "For a list of available services, visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\" name=\"UNO_Service_Names\">com::sun::star Module</link> reference page."
+msgid "For a list of available services, visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\">com::sun::star Module</link> reference page."
msgstr ""
#. aZvnx
@@ -37538,13 +37538,13 @@ msgctxt ""
msgid "The <literal>com.sun.star.ui.dialogs.FilePicker</literal> example below displays a <emph>Save As</emph> dialog with two extra controls: a listbox and a checkbox."
msgstr ""
-#. cArbv
+#. Br5yC
#: CreateUnoSvcWithArgs.xhp
msgctxt ""
"CreateUnoSvcWithArgs.xhp\n"
"par_id351629989310797\n"
"help.text"
-msgid "UNO services have an extensive online documentation in the <link href=\"https://api.libreoffice.org/\" name=\"API_Website\">api.libreoffice.org</link> website. Visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker.html\" name=\"FilePicker_Page\">FilePicker Service</link> reference page to learn more about the methods provided by the service used in the example above."
+msgid "UNO services have an extensive online documentation in the <link href=\"https://api.libreoffice.org/\">api.libreoffice.org</link> website. Visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker.html\">FilePicker Service</link> reference page to learn more about the methods provided by the service used in the example above."
msgstr ""
#. 3HnqR
@@ -37565,13 +37565,13 @@ msgctxt ""
msgid "The following code uses the service <literal>com.sun.star.security.DocumentDigitalSignatures</literal> to sign the current document:"
msgstr ""
-#. GooEd
+#. Gx523
#: CreateUnoSvcWithArgs.xhp
msgctxt ""
"CreateUnoSvcWithArgs.xhp\n"
"par_id921666951609352\n"
"help.text"
-msgid "<literal>CreateWithVersion</literal> and <literal>createWithVersionAndValidSignature</literal> constructor methods in <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1security_1_1DocumentDigitalSignatures.html\" name=\"DocumentDigitalSignatures\">com.sun.star.security.DocumentDigitalSignatures</link> UNO service indicate two different ways of instantiating this service with <literal>CreateUnoServiceWithArguments</literal> function."
+msgid "<literal>CreateWithVersion</literal> and <literal>createWithVersionAndValidSignature</literal> constructor methods in <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1security_1_1DocumentDigitalSignatures.html\">com.sun.star.security.DocumentDigitalSignatures</link> UNO service indicate two different ways of instantiating this service with <literal>CreateUnoServiceWithArguments</literal> function."
msgstr ""
#. ZbXw2
@@ -37592,13 +37592,13 @@ msgctxt ""
msgid "<bookmark_value>Err object</bookmark_value> <bookmark_value>Error;raising</bookmark_value> <bookmark_value>Error;handling</bookmark_value>"
msgstr ""
-#. pPqhS
+#. AENEA
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0011\n"
"help.text"
-msgid "<variable id=\"ErrVBAh1\"><link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"Err object [VBA]\">Err Object [VBA]</link></variable>"
+msgid "<variable id=\"ErrVBAh1\"><link href=\"text/sbasic/shared/ErrVBA.xhp\">Err Object [VBA]</link></variable>"
msgstr ""
#. RZpQL
@@ -37673,22 +37673,22 @@ msgctxt ""
msgid "Properties"
msgstr "Propietats"
-#. FtD5A
+#. D5j9D
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0020\n"
"help.text"
-msgid "The <emph>Description</emph> property gives the nature of the error. <emph>Description</emph> details the various reasons that may be the cause of the error. Ideally, it provides the multiple course of actions to help solve the issue and prevent its reoccurrence. The Basic alias is the <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error function\">Error</link> function for %PRODUCTNAME predefined errors."
+msgid "The <emph>Description</emph> property gives the nature of the error. <emph>Description</emph> details the various reasons that may be the cause of the error. Ideally, it provides the multiple course of actions to help solve the issue and prevent its reoccurrence. The Basic alias is the <link href=\"text/sbasic/shared/03050300.xhp\">Error</link> function for %PRODUCTNAME predefined errors."
msgstr ""
-#. jfSHu
+#. TBtJy
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0022\n"
"help.text"
-msgid "The error code associated with the error. <literal>Err</literal> object default property is <emph>Number</emph>. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err\">Err</link> function."
+msgid "The error code associated with the error. <literal>Err</literal> object default property is <emph>Number</emph>. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\">Err</link> function."
msgstr ""
#. NJEmn
@@ -37709,22 +37709,22 @@ msgctxt ""
msgid "Methods"
msgstr "Mètodes"
-#. y5Ne4
+#. Fi3FW
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0027\n"
"help.text"
-msgid "Resets description, <link href=\"text/sbasic/shared/03050100.xhp\" name=\"error line\">Erl</link>, number and source properties of current error. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050500.xhp\" name=\"Resume statement\">Resume</link> statement."
+msgid "Resets description, <link href=\"text/sbasic/shared/03050100.xhp\">Erl</link>, number and source properties of current error. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050500.xhp\">Resume</link> statement."
msgstr ""
-#. jnyJG
+#. mACWG
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0029\n"
"help.text"
-msgid "Throws user-defined errors or predefined errors. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Error statement\">Error</link> statement."
+msgid "Throws user-defined errors or predefined errors. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\">Error</link> statement."
msgstr ""
#. EyCJv
@@ -37799,13 +37799,13 @@ msgctxt ""
msgid "Exception ClassModule"
msgstr ""
-#. RK2AX
+#. bxhGF
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0049\n"
"help.text"
-msgid "A short <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule option\">ClassModule</link>, that wraps VBA <literal>Err</literal> object, can distribute <literal>Err</literal> properties and methods for standard %PRODUCTNAME Basic modules."
+msgid "A short <link href=\"text/sbasic/shared/classmodule.xhp\">ClassModule</link>, that wraps VBA <literal>Err</literal> object, can distribute <literal>Err</literal> properties and methods for standard %PRODUCTNAME Basic modules."
msgstr ""
#. tECEu
@@ -37844,13 +37844,13 @@ msgctxt ""
msgid "errTitle = \"Error \"& Exc.Number &\" at line \"& Erl &\" in \"& Exc.Source"
msgstr ""
-#. kBsGp
+#. s4Eso
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0088\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error statement\">Error</link> statement or an Exception-like class module can be used interchangeably, while the latter adds extra features."
+msgid "The <link href=\"text/sbasic/shared/03050300.xhp\">Error</link> statement or an Exception-like class module can be used interchangeably, while the latter adds extra features."
msgstr ""
#. h6V9P
@@ -37871,13 +37871,13 @@ msgctxt ""
msgid "<bookmark_value>GetPathSeparator function</bookmark_value>"
msgstr ""
-#. GXeyZ
+#. DXtQk
#: GetPathSeparator.xhp
msgctxt ""
"GetPathSeparator.xhp\n"
"N0002\n"
"help.text"
-msgid "<variable id=\"getpathseparator01\"><link href=\"text/sbasic/shared/GetPathSeparator.xhp\" name=\"GetPathSeparator\">GetPathSeparator Function</link></variable>"
+msgid "<variable id=\"getpathseparator01\"><link href=\"text/sbasic/shared/GetPathSeparator.xhp\">GetPathSeparator Function</link></variable>"
msgstr ""
#. dWBDB
@@ -37916,32 +37916,32 @@ msgctxt ""
msgid "It is recommended to use:"
msgstr "Es recomana utilitzar:"
-#. 6U58g
+#. JaELK
#: GetPathSeparator.xhp
msgctxt ""
"GetPathSeparator.xhp\n"
"N0018\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"external\">ConvertFromURL</link> function to convert a file URL to a system file name."
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\">ConvertFromURL</link> function to convert a file URL to a system file name."
msgstr ""
-#. aFzF4
+#. FoteC
#: GetPathSeparator.xhp
msgctxt ""
"GetPathSeparator.xhp\n"
"N0019\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"external\">ConvertToURL</link> function to convert a system file name to a file URL."
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\">ConvertToURL</link> function to convert a system file name to a file URL."
msgstr ""
-#. vCq5c
+#. Ebp5F
#: GetPathSeparator.xhp
msgctxt ""
"GetPathSeparator.xhp\n"
"N0020\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/00000002.xhp\" name=\"external\">URL Notation</link>"
-msgstr "Vegeu també <link href=\"text/sbasic/shared/00000002.xhp\" name=\"external\">Notació URL</link>"
+msgid "See also <link href=\"text/sbasic/shared/00000002.xhp\">URL Notation</link>"
+msgstr "Vegeu també <link href=\"text/sbasic/shared/00000002.xhp\">Notació URL</link>"
#. PRG9t
#: Resume.xhp
@@ -37961,13 +37961,13 @@ msgctxt ""
msgid "<bookmark_value>Resume statement</bookmark_value>"
msgstr ""
-#. LTupm
+#. zjXXC
#: Resume.xhp
msgctxt ""
"Resume.xhp\n"
"N0002\n"
"help.text"
-msgid "<variable id=\"resumeh1\"><link href=\"text/sbasic/shared/Resume.xhp\" name=\"Resume statement\">Resume Statement</link></variable>"
+msgid "<variable id=\"resumeh1\"><link href=\"text/sbasic/shared/Resume.xhp\">Resume Statement</link></variable>"
msgstr ""
#. AVhyb
@@ -38141,13 +38141,13 @@ msgctxt ""
msgid "<bookmark_value>calling Calc function;macros</bookmark_value> <bookmark_value>setting Calc function;macros</bookmark_value> <bookmark_value>macros;calling Calc function</bookmark_value> <bookmark_value>macros;setting Calc function</bookmark_value> <bookmark_value>createUNOservice function;calling Calc function</bookmark_value> <bookmark_value>API;sheet.addin.Analysis</bookmark_value> <bookmark_value>API;sheet.FunctionAccess</bookmark_value>"
msgstr ""
-#. oDKGc
+#. wHDmE
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"hd_id91592352089011\n"
"help.text"
-msgid "<variable id=\"CallingCalcFunctionsh1\"><link href=\"text/sbasic/shared/calc_functions.xhp\" name=\"Calling Calc Functions\">Using Calc Functions in Macros</link></variable>"
+msgid "<variable id=\"CallingCalcFunctionsh1\"><link href=\"text/sbasic/shared/calc_functions.xhp\">Using Calc Functions in Macros</link></variable>"
msgstr ""
#. vixak
@@ -38330,13 +38330,13 @@ msgctxt ""
msgid "Calling Add-In Calc Functions in BASIC"
msgstr ""
-#. q7CYD
+#. xtVYE
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id261592359338681\n"
"help.text"
-msgid "The Calc Add-In functions are in the UNO services <link href=\"text/sbasic/shared/calc_functions.xhp#analysis\" name=\"analysis\"><literal>com.sun.star.sheet.addin.Analysis</literal></link>, <link href=\"text/sbasic/shared/calc_functions.xhp#dates\" name=\"dates\"><literal>com.sun.star.sheet.addin.DateFunctions</literal></link> and <link href=\"text/sbasic/shared/calc_functions.xhp#pricing\" name=\"pricing\"><literal>com.sun.star.sheet.addin.PricingFunctions</literal></link>."
+msgid "The Calc Add-In functions are in the UNO services <link href=\"text/sbasic/shared/calc_functions.xhp#analysis\"><literal>com.sun.star.sheet.addin.Analysis</literal></link>, <link href=\"text/sbasic/shared/calc_functions.xhp#dates\"><literal>com.sun.star.sheet.addin.DateFunctions</literal></link> and <link href=\"text/sbasic/shared/calc_functions.xhp#pricing\"><literal>com.sun.star.sheet.addin.PricingFunctions</literal></link>."
msgstr ""
#. 94wim
@@ -39518,13 +39518,13 @@ msgctxt ""
msgid "OPT_TOUCH"
msgstr ""
-#. WS3B9
+#. 7oWmd
#: classmodule.xhp
msgctxt ""
"classmodule.xhp\n"
"N0083\n"
"help.text"
-msgid "<variable id=\"classmodulestatement\"><link href=\"text/sbasic/shared/classmodule.xhp\" name=\"option classmodule\">Option ClassModule Statement</link></variable>"
+msgid "<variable id=\"classmodulestatement\"><link href=\"text/sbasic/shared/classmodule.xhp\">Option ClassModule Statement</link></variable>"
msgstr ""
#. 4MQj9
@@ -39644,13 +39644,13 @@ msgctxt ""
msgid "<bookmark_value>Collection Object</bookmark_value>"
msgstr ""
-#. 68sg6
+#. zhFUm
#: collection.xhp
msgctxt ""
"collection.xhp\n"
"hd_id791633472607429\n"
"help.text"
-msgid "<variable id=\"Collection_h1\"><link href=\"text/sbasic/shared/collection.xhp\" name=\"New_Operator\">Collection Object</link></variable>"
+msgid "<variable id=\"Collection_h1\"><link href=\"text/sbasic/shared/collection.xhp\">Collection Object</link></variable>"
msgstr ""
#. 7xSei
@@ -39716,13 +39716,13 @@ msgctxt ""
msgid "Items in a Collection can be accessed either by their indices (as in a 1-based single-dimensional Array) or by their associated keys."
msgstr ""
-#. PheLX
+#. FyEKE
#: collection.xhp
msgctxt ""
"collection.xhp\n"
"par_id811634214809970\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"SFDic_link\"><literal>ScriptForge Dictionary</literal></link> service extends the <literal>Collection</literal> object by providing supplemental features as key retrieval and replacement, as well as import/export to Array objects and JSON strings."
+msgid "The <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\"><literal>ScriptForge Dictionary</literal></link> service extends the <literal>Collection</literal> object by providing supplemental features as key retrieval and replacement, as well as import/export to Array objects and JSON strings."
msgstr ""
#. pJAht
@@ -39986,13 +39986,13 @@ msgctxt ""
msgid "<bookmark_value>CompatibilityMode</bookmark_value> <bookmark_value>VBA compatibility mode</bookmark_value>"
msgstr ""
-#. WL5ei
+#. DHaWu
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"N0118\n"
"help.text"
-msgid "<variable id=\"compatibilitymodeh1\"><link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
+msgid "<variable id=\"compatibilitymodeh1\"><link href=\"text/sbasic/shared/compatibilitymode.xhp\">CompatibilityMode() Function</link></variable>"
msgstr ""
#. 4EEry
@@ -40040,13 +40040,13 @@ msgctxt ""
msgid "<emph>Enable</emph>: Sets or unsets new compatibility mode when the argument is present."
msgstr ""
-#. ouFEB
+#. GuAGi
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"par_id371648123169691\n"
"help.text"
-msgid "<literal>CompatibilityMode</literal> function relates to <link href=\"text/sbasic/shared/03103350.xhp#vbasupportstatement\" name=\"VBASupport compiler option\">Option VBASupport 1</link>, in which case it always returns <literal>True</literal>. It is unrelated to <link href=\"text/sbasic/shared/compatible.xhp#compatiblestatement\" name=\"Option Compatible compiler directive\">Option Compatible</link> compiler directive."
+msgid "<literal>CompatibilityMode</literal> function relates to <link href=\"text/sbasic/shared/03103350.xhp#vbasupportstatement\">Option VBASupport 1</link>, in which case it always returns <literal>True</literal>. It is unrelated to <link href=\"text/sbasic/shared/compatible.xhp#compatiblestatement\">Option Compatible</link> compiler directive."
msgstr ""
#. NM3yP
@@ -40085,13 +40085,13 @@ msgctxt ""
msgid "Changing behavior of Basic <literal>Dir</literal> command. The directory flag (16) for the <literal>Dir</literal> command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned."
msgstr ""
-#. DMpTx
+#. u6HCV
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"par_id901639929393688\n"
"help.text"
-msgid "Color components calculation with the <link href=\"text/sbasic/shared/03010303.xhp\" name=\"linkred\"><literal>Red</literal></link> and <link href=\"text/sbasic/shared/03010301.xhp\" name=\"linkblue\"><literal>Blue</literal></link> functions which <emph>are interchanged</emph> (The <link href=\"text/sbasic/shared/03010302.xhp\" name=\"linkgreen\"><literal>Green</literal></link> function is not affected)."
+msgid "Color components calculation with the <link href=\"text/sbasic/shared/03010303.xhp\"><literal>Red</literal></link> and <link href=\"text/sbasic/shared/03010301.xhp\"><literal>Blue</literal></link> functions which <emph>are interchanged</emph> (The <link href=\"text/sbasic/shared/03010302.xhp\"><literal>Green</literal></link> function is not affected)."
msgstr ""
#. cFz7C
@@ -40148,13 +40148,13 @@ msgctxt ""
msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
msgstr ""
-#. imVdb
+#. cULB3
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"N0104\n"
"help.text"
-msgid "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Option Compatible Statement</link></variable>"
+msgid "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\">Option Compatible Statement</link></variable>"
msgstr ""
#. 6HFov
@@ -40184,13 +40184,13 @@ msgctxt ""
msgid "Allow special characters as identifiers. all characters that are defined as letter in the Latin-1 (ISO 8859-1) character set, are accepted as part of identifiers."
msgstr ""
-#. iEB4s
+#. hUmEG
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"N0109\n"
"help.text"
-msgid "Create <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"addvbaconstants\">VBA constants including non-printable characters</link>."
+msgid "Create <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\">VBA constants including non-printable characters</link>."
msgstr ""
#. rjfZs
@@ -40301,13 +40301,13 @@ msgctxt ""
msgid "<bookmark_value>Syntax diagrams; How to read</bookmark_value> <bookmark_value>Statements syntax;How to read</bookmark_value> <bookmark_value>Typographical conventions</bookmark_value>"
msgstr ""
-#. VTTA3
+#. aBBaD
#: conventions.xhp
msgctxt ""
"conventions.xhp\n"
"hd_id221543446540070\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/conventions.xhp\" name=\"conventions\">How to Read Syntax Diagrams and Statements</link>"
+msgid "<link href=\"text/sbasic/shared/conventions.xhp\">How to Read Syntax Diagrams and Statements</link>"
msgstr ""
#. jJGWn
@@ -40499,13 +40499,13 @@ msgctxt ""
msgid "<bookmark_value>DoEvents function</bookmark_value>"
msgstr ""
-#. KysmX
+#. ifjPn
#: doEvents.xhp
msgctxt ""
"doEvents.xhp\n"
"hd_id401544551916353\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/doEvents.xhp\" name=\"DoEvents\">DoEvents Function</link>"
+msgid "<link href=\"text/sbasic/shared/doEvents.xhp\">DoEvents Function</link>"
msgstr ""
#. 8CBiS
@@ -40571,13 +40571,13 @@ msgctxt ""
msgid "<bookmark_value>Enum statement</bookmark_value> <bookmark_value>constant groups</bookmark_value> <bookmark_value>enumerations</bookmark_value>"
msgstr ""
-#. nqumw
+#. 7dbBy
#: enum.xhp
msgctxt ""
"enum.xhp\n"
"hd_id221543446540070\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"command_name\">Enum Statement [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/enum.xhp\">Enum Statement [VBA]</link>"
msgstr ""
#. nCNts
@@ -40643,40 +40643,40 @@ msgctxt ""
msgid "Display WindowManager grouped constant values:"
msgstr ""
-#. HBPCv
+#. wJZW9
#: enum.xhp
msgctxt ""
"enum.xhp\n"
"par_id731573636687662\n"
"help.text"
-msgid "Enumerations can be extended to other data types using <link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type statement\">Type statement</link> definitions. <link href=\"text/sbasic/guide/basic_2_python.xhp\" name=\"Calling Python Scripts from Basic\">Calling Python Scripts from Basic</link> illustrates that mechanism."
+msgid "Enumerations can be extended to other data types using <link href=\"text/sbasic/shared/03090413.xhp\">Type statement</link> definitions. <link href=\"text/sbasic/guide/basic_2_python.xhp\">Calling Python Scripts from Basic</link> illustrates that mechanism."
msgstr ""
-#. N48Xe
+#. wwvYq
#: enum.xhp
msgctxt ""
"enum.xhp\n"
"N0051\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"const\">Const</link> statement, <link href=\"text/sbasic/shared/01020100.xhp\" name=\"external\">constants</link>"
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\">Const</link> statement, <link href=\"text/sbasic/shared/01020100.xhp\">constants</link>"
msgstr ""
-#. PEGnc
+#. ifRYx
#: enum.xhp
msgctxt ""
"enum.xhp\n"
"N0053\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport\">Option VBASupport</link> statement"
+msgid "<link href=\"text/sbasic/shared/03103350.xhp\">Option VBASupport</link> statement"
msgstr ""
-#. gfQpy
+#. uytT7
#: enum.xhp
msgctxt ""
"enum.xhp\n"
"N0061\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With\">With</link> statement"
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\">With</link> statement"
msgstr ""
#. FFWQn
@@ -40688,13 +40688,13 @@ msgctxt ""
msgid "Basic syntax diagrams fragments"
msgstr ""
-#. y2yz2
+#. yKqgV
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"hd_id541587044867073\n"
"help.text"
-msgid "<variable id=\"fragmentsh1\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"Syntax fragments\">Syntax fragments</link></variable>"
+msgid "<variable id=\"fragmentsh1\"><link href=\"text/sbasic/shared/fragments.xhp\">Syntax fragments</link></variable>"
msgstr ""
#. qdgmB
@@ -40706,13 +40706,13 @@ msgctxt ""
msgid "%PRODUCTNAME Basic syntax fragments."
msgstr "Fragments de sintaxi del %PRODUCTNAME Basic."
-#. 4eH7M
+#. aZXf3
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"hd_id431587045941514\n"
"help.text"
-msgid "<variable id=\"argumenth2\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"arguments in Function, Sub and Property statements\"/>argument fragment</variable>"
+msgid "<variable id=\"argumenth2\"><link href=\"text/sbasic/shared/fragments.xhp\"/>argument fragment</variable>"
msgstr ""
#. pfHq8
@@ -40796,31 +40796,31 @@ msgctxt ""
msgid "<literal>ParamArray</literal>: Use <literal>ParamArray</literal> when the number of parameters is undetermined. A typical scenario is that of a Calc user-defined function. Using <literal>ParamArray</literal> should be limited to the last argument of a routine."
msgstr ""
-#. GWSD4
+#. VBQVA
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"par_id851587050837107\n"
"help.text"
-msgid "Using<literal>ParamArray</literal> or <emph>= expression</emph> require <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> to be placed before the executable program code in a module."
+msgid "Using<literal>ParamArray</literal> or <emph>= expression</emph> require <link href=\"text/sbasic/shared/compatible.xhp\">Option Compatible</link> to be placed before the executable program code in a module."
msgstr ""
-#. EDCLX
+#. X2WBz
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"par_id391587571321063\n"
"help.text"
-msgid "When using <link href=\"text/sbasic/shared/vbasupport.xhp\" name=\"Option VBASupport\">Option VBASupport 1</link>, <literal>Optional</literal> arguments with no default value (<emph>= expression</emph>) are initialized according to their data type, except if <literal>Variant</literal>."
+msgid "When using <link href=\"text/sbasic/shared/vbasupport.xhp\">Option VBASupport 1</link>, <literal>Optional</literal> arguments with no default value (<emph>= expression</emph>) are initialized according to their data type, except if <literal>Variant</literal>."
msgstr ""
-#. fDUEu
+#. 48EEb
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"hd_id231587046013456\n"
"help.text"
-msgid "<variable id=\"arrayh4\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"array syntax fragment\">array fragment</link></variable>"
+msgid "<variable id=\"arrayh4\"><link href=\"text/sbasic/shared/fragments.xhp\">array fragment</link></variable>"
msgstr ""
#. YD32W
@@ -40922,13 +40922,13 @@ msgctxt ""
msgid "<bookmark_value>Is Operator</bookmark_value>"
msgstr ""
-#. 7otAB
+#. foEEB
#: is_keyword.xhp
msgctxt ""
"is_keyword.xhp\n"
"hd_id791633472607429\n"
"help.text"
-msgid "<variable id=\"IsOperator_h1\"><link href=\"text/sbasic/shared/is_keyword.xhp\" name=\"Is_Operator\">Is Operator</link></variable>"
+msgid "<variable id=\"IsOperator_h1\"><link href=\"text/sbasic/shared/is_keyword.xhp\">Is Operator</link></variable>"
msgstr ""
#. mwGMA
@@ -40994,14 +40994,14 @@ msgctxt ""
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>teclat; a l'EID</bookmark_value><bookmark_value>tecles de drecera;EID del Basic</bookmark_value><bookmark_value>EID;tecles de drecera</bookmark_value>"
-#. xoRnY
+#. 2wbaM
#: keys.xhp
msgctxt ""
"keys.xhp\n"
"hd_id3154760\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=\"Tecles de drecera de l'EID del Basic\">Tecles de drecera de l'EID del Basic</link>"
+msgid "<link href=\"text/sbasic/shared/keys.xhp\">Keyboard Shortcuts in the Basic IDE</link>"
+msgstr "<link href=\"text/sbasic/shared/keys.xhp\">Tecles de drecera de l'EID del Basic</link>"
#. BRjJ7
#: keys.xhp
@@ -41066,14 +41066,14 @@ msgctxt ""
msgid "Shift+F5"
msgstr "Maj+F5"
-#. w8dBL
+#. sTGfk
#: keys.xhp
msgctxt ""
"keys.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor."
-msgstr "Afig un <link href=\"text/sbasic/shared/01050100.xhp\" name=\"observador\">observador</link> per a la variable al cursor."
+msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\">watch</link> for the variable at the cursor."
+msgstr "Afig un <link href=\"text/sbasic/shared/01050100.xhp\">observador</link> per a la variable al cursor."
#. denBK
#: keys.xhp
@@ -41120,14 +41120,14 @@ msgctxt ""
msgid "Shift+F8"
msgstr "Maj+F8"
-#. FkKFQ
+#. nWEaG
#: keys.xhp
msgctxt ""
"keys.xhp\n"
"par_id3150323\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 "Estableix o elimina un <link href=\"text/sbasic/shared/01030300.xhp\" name=\"punt de ruptura\">punt de ruptura</link> a la línia actual o tots els punts de ruptura de la selecció actual."
+msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\">breakpoint</link> at the current line or all breakpoints in the current selection."
+msgstr "Estableix o elimina un <link href=\"text/sbasic/shared/01030300.xhp\">punt de ruptura</link> a la línia actual o tots els punts de ruptura de la selecció actual."
#. 5GBBt
#: keys.xhp
@@ -41183,14 +41183,14 @@ msgctxt ""
msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
msgstr "<bookmark_value>barres d'eines; EID del Basic</bookmark_value><bookmark_value>barra d'eines Macros</bookmark_value>"
-#. TBsaV
+#. KmGsi
#: main0211.xhp
msgctxt ""
"main0211.xhp\n"
"hd_id3150543\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=\"Barra d'eines Macro\">Barra d'eines Macro</link>"
+msgid "<link href=\"text/sbasic/shared/main0211.xhp\">Macro Toolbar</link>"
+msgstr "<link href=\"text/sbasic/shared/main0211.xhp\">Barra d'eines Macro</link>"
#. ukJ8n
#: main0211.xhp
@@ -41210,31 +41210,31 @@ msgctxt ""
msgid "$[officename] Basic Help"
msgstr "Ajuda del $[officename] Basic"
-#. Fa5sa
+#. kMkD6
#: main0601.xhp
msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
-#. 6cHZD
+#. hXBSE
#: main0601.xhp
msgctxt ""
"main0601.xhp\n"
"par_id3153894\n"
"help.text"
-msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
-msgstr "El %PRODUCTNAME proporciona una interfície de programació d'aplicacions (API per les seues sigles en anglés) que permet controlar les components del $[officename] amb diversos llenguatges de programació mitjançant l'ús del paquet de desenvolupament de programari (SDK per les seues sigles en anglés) del $[officename]. Per a més informació sobre l'API del $[officename] i el paquet de desenvolupament de programari, visiteu <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">api.libreoffice.org</link>"
+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=\"https://api.libreoffice.org/\">https://api.libreoffice.org</link>"
+msgstr "El %PRODUCTNAME proporciona una interfície de programació d'aplicacions (API per les seues sigles en anglés) que permet controlar les components del $[officename] amb diversos llenguatges de programació mitjançant l'ús del paquet de desenvolupament de programari (SDK per les seues sigles en anglés) del $[officename]. Per a més informació sobre l'API del $[officename] i el paquet de desenvolupament de programari, visiteu <link href=\"https://api.libreoffice.org/\">api.libreoffice.org</link>"
-#. iXmNA
+#. dUWcX
#: main0601.xhp
msgctxt ""
"main0601.xhp\n"
"par_id3147226\n"
"help.text"
-msgid "This help section explains the most common functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/BASIC_Guide\" name=\"wiki.documentfoundation.org BASIC Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
+msgid "This help section explains the most common functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
msgstr ""
#. s6H2V
@@ -41300,13 +41300,13 @@ msgctxt ""
msgid "<bookmark_value>New Operator</bookmark_value>"
msgstr ""
-#. T3AA8
+#. TJKFL
#: new_keyword.xhp
msgctxt ""
"new_keyword.xhp\n"
"hd_id791633472607429\n"
"help.text"
-msgid "<variable id=\"NewOperator_h1\"><link href=\"text/sbasic/shared/new_keyword.xhp\" name=\"New_Operator\">New Operator</link></variable>"
+msgid "<variable id=\"NewOperator_h1\"><link href=\"text/sbasic/shared/new_keyword.xhp\">New Operator</link></variable>"
msgstr ""
#. BWufp
@@ -41381,13 +41381,13 @@ msgctxt ""
msgid "<bookmark_value>Partition Function</bookmark_value>"
msgstr ""
-#. s5UqC
+#. B7UPn
#: partition.xhp
msgctxt ""
"partition.xhp\n"
"hd_id171548419512929\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/partition.xhp\" name=\"Partition function\">Partition Function [VBA]</link>"
+msgid "<link href=\"text/sbasic/shared/partition.xhp\">Partition Function [VBA]</link>"
msgstr ""
#. LDTcg
@@ -41507,13 +41507,13 @@ msgctxt ""
msgid "<bookmark_value>Property statement</bookmark_value>"
msgstr ""
-#. a5AX6
+#. xSGwG
#: property.xhp
msgctxt ""
"property.xhp\n"
"N0182\n"
"help.text"
-msgid "<variable id=\"Property_h1\"><link href=\"text/sbasic/shared/Property.xhp\" name=\"Property statement\">Property Statement</link></variable>"
+msgid "<variable id=\"Property_h1\"><link href=\"text/sbasic/shared/Property.xhp\">Property Statement</link></variable>"
msgstr ""
#. CxW74
@@ -41525,13 +41525,13 @@ msgctxt ""
msgid "A property, also called field or attribute, characterizes a given object or piece of information. Properties can be used to control access to data. It is common use to include instructions at setting or reading time of properties. Code can vary from simple assignment to complex context dependent routines. Using <emph>Get</emph>, <emph>Let</emph> or <emph>Set</emph> accessors enforces properties' consistency when necessary."
msgstr ""
-#. hD9fA
+#. 232hK
#: property.xhp
msgctxt ""
"property.xhp\n"
"N0184\n"
"help.text"
-msgid "This statement requires <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> to be placed before the executable program code in a module."
+msgid "This statement requires <link href=\"text/sbasic/shared/compatible.xhp\">Option Compatible</link> to be placed before the executable program code in a module."
msgstr ""
#. gSJbV
@@ -41660,22 +41660,22 @@ msgctxt ""
msgid "Use <emph>Let</emph> or <emph>Set</emph> when handling UNO services or class objects:"
msgstr ""
-#. mbhy9
+#. ZGw6o
#: property.xhp
msgctxt ""
"property.xhp\n"
"par_id181647247913872\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\">Subroutines basics</link>"
msgstr ""
-#. KbzAx
+#. wvCZY
#: property.xhp
msgctxt ""
"property.xhp\n"
"N0237\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> statements"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\">Exit</link> statements"
msgstr ""
#. uM2zs
@@ -41696,13 +41696,13 @@ msgctxt ""
msgid "<bookmark_value>Replace function</bookmark_value>"
msgstr ""
-#. ChEvF
+#. Xp9DU
#: replace.xhp
msgctxt ""
"replace.xhp\n"
"hd_id781552551013521\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/replace.xhp\" name=\"Replace Function\">Replace Function</link>"
+msgid "<link href=\"text/sbasic/shared/replace.xhp\">Replace Function</link>"
msgstr ""
#. 4xq3F
@@ -42029,13 +42029,13 @@ msgctxt ""
msgid "<bookmark_value>StarDesktop</bookmark_value> <bookmark_value>API; Desktop</bookmark_value>"
msgstr ""
-#. awFbD
+#. gX4sH
#: stardesktop.xhp
msgctxt ""
"stardesktop.xhp\n"
"hd_id401544551916353\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/stardesktop.xhp\" name=\"StarDesktop\">StarDesktop object</link>"
+msgid "<link href=\"text/sbasic/shared/stardesktop.xhp\">StarDesktop object</link>"
msgstr ""
#. VZcw3
@@ -42074,13 +42074,13 @@ msgctxt ""
msgid "<bookmark_value>StrConv function</bookmark_value>"
msgstr ""
-#. jBFFC
+#. 3m7hv
#: strconv.xhp
msgctxt ""
"strconv.xhp\n"
"hd_id791622761498015\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/strconv.xhp\" name=\"StrConv Function\">StrConv Function</link>"
+msgid "<link href=\"text/sbasic/shared/strconv.xhp\">StrConv Function</link>"
msgstr ""
#. V3uyt
@@ -42173,22 +42173,22 @@ msgctxt ""
msgid "Converts the first letter of every word in <emph>Text</emph> to uppercase."
msgstr ""
-#. AF58D
+#. TB54v
#: strconv.xhp
msgctxt ""
"strconv.xhp\n"
"par_id881622764192628\n"
"help.text"
-msgid "Converts narrow (<link href=\"text/shared/00/00000005.xhp#halfwidth\" name=\"halfwidth\">half-width</link>) characters in <emph>Text</emph> to wide (<link href=\"text/shared/00/00000005.xhp#halfwidth\" name=\"halfwidth\">full-width</link>) characters."
+msgid "Converts narrow (<link href=\"text/shared/00/00000005.xhp#halfwidth\">half-width</link>) characters in <emph>Text</emph> to wide (<link href=\"text/shared/00/00000005.xhp#halfwidth\">full-width</link>) characters."
msgstr ""
-#. RAUq6
+#. gw9Tg
#: strconv.xhp
msgctxt ""
"strconv.xhp\n"
"par_id71622764459352\n"
"help.text"
-msgid "Converts wide (<link href=\"text/shared/00/00000005.xhp#halfwidth\" name=\"halfwidth\">full-width</link>) characters in <emph>Text</emph> to narrow (<link href=\"text/shared/00/00000005.xhp#halfwidth\" name=\"halfwidth\">half-width</link>) characters."
+msgid "Converts wide (<link href=\"text/shared/00/00000005.xhp#halfwidth\">full-width</link>) characters in <emph>Text</emph> to narrow (<link href=\"text/shared/00/00000005.xhp#halfwidth\">half-width</link>) characters."
msgstr ""
#. fAVnd
@@ -42227,13 +42227,13 @@ msgctxt ""
msgid "Converts <emph>Text</emph> characters from Unicode to the default code page of the system."
msgstr ""
-#. B2oeo
+#. HFmNb
#: strconv.xhp
msgctxt ""
"strconv.xhp\n"
"par_id761622765118156\n"
"help.text"
-msgid "<emph>LCID</emph> Optional. The Locale ID in decimal number. If this parameter is omitted, it assumes the system Locale ID. Refer to the file <link href=\"https://opengrok.libreoffice.org/xref/core/l10ntools/source/ulfconv/msi-encodinglist.txt\" name=\"LCID\">msi-encodinglist.txt</link> for the available LCID values."
+msgid "<emph>LCID</emph> Optional. The Locale ID in decimal number. If this parameter is omitted, it assumes the system Locale ID. Refer to the file <link href=\"https://opengrok.libreoffice.org/xref/core/l10ntools/source/ulfconv/msi-encodinglist.txt\">msi-encodinglist.txt</link> for the available LCID values."
msgstr ""
#. CdCwD
@@ -42308,13 +42308,13 @@ msgctxt ""
msgid "<bookmark_value>ThisDatabaseDocument</bookmark_value> <bookmark_value>API; Database document</bookmark_value>"
msgstr ""
-#. v4XLY
+#. nvD6v
#: thisdbdoc.xhp
msgctxt ""
"thisdbdoc.xhp\n"
"hd_id401544551916353\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/thisdbdoc.xhp\" name=\"ThisDatabaseDocument\">ThisDatabaseDocument object</link>"
+msgid "<link href=\"text/sbasic/shared/thisdbdoc.xhp\">ThisDatabaseDocument object</link>"
msgstr ""
#. CT58E
@@ -42326,13 +42326,13 @@ msgctxt ""
msgid "<literal>ThisDatabaseDocument</literal> addresses the active <literal>Base</literal> document whose properties can be read and set, and whose methods can be called."
msgstr ""
-#. umGF9
+#. ZyJVH
#: thisdbdoc.xhp
msgctxt ""
"thisdbdoc.xhp\n"
"par_id241622646033201\n"
"help.text"
-msgid "<literal>ThisDatabaseDocument</literal> returns an object of type <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"XOfficeDatabaseDocument interface\">com.sun.star.sdb.XOfficeDatabaseDocument</link>."
+msgid "<literal>ThisDatabaseDocument</literal> returns an object of type <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\">com.sun.star.sdb.XOfficeDatabaseDocument</link>."
msgstr ""
#. EFj3T
@@ -42362,31 +42362,31 @@ msgctxt ""
msgid "Opening current database \"formName\" and maximizing it can be achieved as shown:"
msgstr ""
-#. wxbXC
+#. iAvQC
#: thisdbdoc.xhp
msgctxt ""
"thisdbdoc.xhp\n"
"par_id251622800540402\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent object\">ThisComponent</link> object"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\">ThisComponent</link> object"
msgstr ""
-#. 7k6AR
+#. qEnoF
#: thisdbdoc.xhp
msgctxt ""
"thisdbdoc.xhp\n"
"par_id101622646874083\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link> API service"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\">com.sun.star.sdb.OfficeDatabaseDocument</link> API service"
msgstr ""
-#. 7Znag
+#. GamyT
#: thisdbdoc.xhp
msgctxt ""
"thisdbdoc.xhp\n"
"par_id581622646875379\n"
"help.text"
-msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link> API service"
+msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\">com.sun.star.document.OfficeDocument</link> API service"
msgstr ""
#. WMVc9
@@ -42407,13 +42407,13 @@ msgctxt ""
msgid "<bookmark_value>programming;UNO objects</bookmark_value> <bookmark_value>UNO objects</bookmark_value> <bookmark_value>UNO functions</bookmark_value>"
msgstr ""
-#. DhRpt
+#. a6G4P
#: uno_objects.xhp
msgctxt ""
"uno_objects.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<variable id=\"UnoObjects_h1\"><link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UnoObjects_help\">UNO Objects, Functions and Services</link></variable>"
+msgid "<variable id=\"UnoObjects_h1\"><link href=\"text/sbasic/shared/uno_objects.xhp\">UNO Objects, Functions and Services</link></variable>"
msgstr ""
#. 9xsDp
@@ -42452,23 +42452,23 @@ msgctxt ""
msgid "The following objects can be used from the active document."
msgstr ""
-#. yFvUL
+#. GS9um
#: uno_objects.xhp
msgctxt ""
"uno_objects.xhp\n"
"hd_id91572461246639\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\" name=\"basicanddialog\">BasicLibraries Object</link>"
-msgstr "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\" name=\"basicanddialog\">Objecte BasicLibraries</link>"
+msgid "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\">BasicLibraries Object</link>"
+msgstr "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\">Objecte BasicLibraries</link>"
-#. PDDjd
+#. yia7C
#: uno_objects.xhp
msgctxt ""
"uno_objects.xhp\n"
"hd_id91572461246640\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\" name=\"basicanddialog\">DialogLibraries Object</link>"
-msgstr "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\" name=\"basicanddialog\">Objecte DialogLibraries</link>"
+msgid "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\">DialogLibraries Object</link>"
+msgstr "<link href=\"text/sbasic/shared/03131900.xhp#basicdialogs\">Objecte DialogLibraries</link>"
#. G58ts
#: uno_objects.xhp
@@ -42488,13 +42488,13 @@ msgctxt ""
msgid "Use the following methods to manage or query Unified Network Objects (UNO)."
msgstr ""
-#. 8GF88
+#. DKxss
#: uno_objects.xhp
msgctxt ""
"uno_objects.xhp\n"
"par_id81572615048011\n"
"help.text"
-msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
+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=\"https://api.libreoffice.org/\">https://api.libreoffice.org</link>"
msgstr ""
#. V3Wow
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/01.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared/01.po
index 7a9091c1cbe..64c447122e7 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:46+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared01/ca_VALENCIA/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
"X-POOTLE-MTIME: 1542196413.000000\n"
@@ -359,14 +359,14 @@ msgctxt ""
msgid "Password"
msgstr "Contrasenya"
-#. FBAaE
+#. 5A2it
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
"par_id3166430\n"
"help.text"
-msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">Assigns or edits the <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library. \"Standard\" libraries cannot have a password.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">Assigna o edita la <link href=\"text/sbasic/shared/01/06130100.xhp\" name=\"contrasenya\">contrasenya</link> de la biblioteca seleccionada. Les biblioteques \"Estàndard\" no poden tindre contrasenya.</ahelp>"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">Assigns or edits the <link href=\"text/sbasic/shared/01/06130100.xhp\">password</link> for the selected library. \"Standard\" libraries cannot have a password.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">Assigna o edita la <link href=\"text/sbasic/shared/01/06130100.xhp\">contrasenya</link> de la biblioteca seleccionada. Les biblioteques \"Estàndard\" no poden tindre contrasenya.</ahelp>"
#. pGEKe
#: 06130000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/02.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared/02.po
index e8cdba91104..1cc73f5491b 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/ca-valencia/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.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-04 19:51+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:46+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared02/ca_VALENCIA/>\n"
@@ -26,14 +26,14 @@ msgctxt ""
msgid "Library"
msgstr "Biblioteca"
-#. uR2gG
+#. SUqwz
#: 11010000.xhp
msgctxt ""
"11010000.xhp\n"
"hd_id3151100\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=\"Biblioteca\">Biblioteca</link>"
+msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\">Library</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11010000.xhp\">Biblioteca</link>"
#. MCJF5
#: 11010000.xhp
@@ -71,14 +71,14 @@ msgctxt ""
msgid "Compile"
msgstr "Compila"
-#. sG7ET
+#. zTzxA
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
"hd_id3148983\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=\"Compila\">Compila</link>"
+msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\">Compile</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11020000.xhp\">Compila</link>"
#. FkJqv
#: 11020000.xhp
@@ -116,14 +116,14 @@ msgctxt ""
msgid "Run"
msgstr "Executa"
-#. n3bkD
+#. eTVMQ
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
"hd_id3153255\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=\"Executa\">Executa</link>"
+msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\">Run</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11030000.xhp\">Executa</link>"
#. Vi9DY
#: 11030000.xhp
@@ -170,14 +170,14 @@ msgctxt ""
msgid "<bookmark_value>macros; stopping</bookmark_value><bookmark_value>program stops</bookmark_value><bookmark_value>stopping macros</bookmark_value>"
msgstr "<bookmark_value>macros; aturar</bookmark_value><bookmark_value>aturar el programa</bookmark_value><bookmark_value>aturar macros</bookmark_value>"
-#. ZV5Z3
+#. EUFsx
#: 11040000.xhp
msgctxt ""
"11040000.xhp\n"
"hd_id3154863\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Stop\">Stop</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11040000.xhp\" name=\"Atura\">Atura</link>"
+msgid "<link href=\"text/sbasic/shared/02/11040000.xhp\">Stop</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11040000.xhp\">Atura</link>"
#. XevvQ
#: 11040000.xhp
@@ -215,14 +215,14 @@ msgctxt ""
msgid "Single Step"
msgstr "Pas únic"
-#. HrJ7h
+#. BfoCA
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
"hd_id3155934\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=\"Pas únic\">Pas únic</link>"
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\">Single Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\">Pas únic</link>"
#. 5NkKq
#: 11050000.xhp
@@ -233,14 +233,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepInto\">Executa la macro i l'atura després de l'orde següent.</ahelp>"
-#. nCFSZ
+#. v6MCD
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
"par_id3152801\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 "Podeu utilitzar esta orde juntament amb l'orde <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Observador\">Observador</link> per resoldre errors."
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\">Watch</link> command to troubleshoot errors."
+msgstr "Podeu utilitzar esta orde juntament amb l'orde <link href=\"text/sbasic/shared/02/11080000.xhp\">Observador</link> per resoldre errors."
#. SD8E7
#: 11050000.xhp
@@ -260,14 +260,14 @@ msgctxt ""
msgid "Single Step"
msgstr "Pas únic"
-#. NZffL
+#. fmm7T
#: 11050000.xhp
msgctxt ""
"11050000.xhp\n"
"par_id3149235\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=\"Funció del pas de procediment\">Funció del pas de procediment</link>"
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\">Procedure Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\">Funció del pas de procediment</link>"
#. JceSB
#: 11060000.xhp
@@ -278,14 +278,14 @@ msgctxt ""
msgid "Procedure Step"
msgstr "Pas del procediment"
-#. GCdz2
+#. BGWAS
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
"hd_id3148520\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=\"Pas de procediment\">Pas de procediment</link>"
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\">Procedure Step</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11060000.xhp\">Pas de procediment</link>"
#. narAD
#: 11060000.xhp
@@ -296,14 +296,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
msgstr "<ahelp hid=\".uno:BasicStepOver\">Executa la macro i l'atura després del procediment següent.</ahelp>"
-#. Re5BC
+#. cnCf7
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
"par_id3153394\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 "Podeu utilitzar esta orde juntament amb l'orde <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Observador\">Observador</link> per resoldre errors."
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\">Watch</link> command to troubleshoot errors."
+msgstr "Podeu utilitzar esta orde juntament amb l'orde <link href=\"text/sbasic/shared/02/11080000.xhp\">Observador</link> per resoldre errors."
#. 8z956
#: 11060000.xhp
@@ -323,14 +323,14 @@ msgctxt ""
msgid "Procedure Step"
msgstr "Pas del procediment"
-#. dy7AF
+#. tLjsB
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
"par_id3153562\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=\"Funció de pas simple\">Funció de pas simple</link>"
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\">Single Step function</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11050000.xhp\">Funció de pas simple</link>"
#. mK2Ph
#: 11070000.xhp
@@ -341,14 +341,14 @@ msgctxt ""
msgid "Breakpoint"
msgstr "Punt de ruptura"
-#. dSrmB
+#. hVDHU
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
"hd_id3154863\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=\"Punt de ruptura\">Punt de ruptura</link>"
+msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\">Breakpoint</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11070000.xhp\">Punt de ruptura</link>"
#. iTCUE
#: 11070000.xhp
@@ -359,14 +359,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
msgstr "<ahelp hid=\".uno:ToggleBreakPoint\">Insereix un punt de ruptura a la línia del programa.</ahelp>"
-#. 2S8i7
+#. KET2A
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
"par_id3149346\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 "El punt de ruptura s'insereix a la posició del cursor. Utilitzeu un punt de ruptura per interrompre un programa just abans que es produïsca un error. Podeu reiniciar el programa si l'executeu en mode de <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Pas únic\">Pas únic</link> fins que es produïsca l'error. També podeu utilitzar la icona <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Observador\">Observador</link> per comprovar el contingut de les variables rellevants."
+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\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\">Watch</link> icon to check the content of the relevant variables."
+msgstr "El punt de ruptura s'insereix a la posició del cursor. Utilitzeu un punt de ruptura per interrompre un programa just abans que es produïsca un error. Podeu reiniciar el programa si l'executeu en mode de <link href=\"text/sbasic/shared/02/11050000.xhp\">Pas únic</link> fins que es produïsca l'error. També podeu utilitzar la icona <link href=\"text/sbasic/shared/02/11080000.xhp\">Observador</link> per comprovar el contingut de les variables rellevants."
#. srCR5
#: 11070000.xhp
@@ -395,14 +395,14 @@ msgctxt ""
msgid "Enable Watch"
msgstr "Habilita el control"
-#. 4X56s
+#. MLDaG
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
"hd_id3154863\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=\"Habilita el control\">Habilita el control</link>"
+msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11080000.xhp\">Habilita el control</link>"
#. TRivb
#: 11080000.xhp
@@ -458,14 +458,14 @@ msgctxt ""
msgid "Object Catalog"
msgstr "Catàleg d'objectes"
-#. EKx2C
+#. ThBAt
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
"hd_id3153255\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=\"Catàleg d'objectes\">Catàleg d'objectes</link>"
+msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\">Object Catalog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11090000.xhp\">Catàleg d'objectes</link>"
#. bHCXS
#: 11090000.xhp
@@ -530,14 +530,14 @@ msgctxt ""
msgid "Macros"
msgstr "Macros"
-#. FLE8S
+#. 7FmMu
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
"hd_id3156183\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\" name=\"Macros\">Macros</link>"
+msgid "<link href=\"text/sbasic/shared/02/11100000.xhp\">Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11100000.xhp\">Macros</link>"
#. 5C9pN
#: 11100000.xhp
@@ -575,23 +575,23 @@ msgctxt ""
msgid "Modules"
msgstr "Mòduls"
-#. z4nD8
+#. 99Edc
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
"hd_id3148520\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òduls\">Mòduls</link>"
+msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\">Modules</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11110000.xhp\">Mòduls</link>"
-#. dGdth
+#. knaPi
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
"par_id3156414\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\">Feu clic ací per obrir el diàleg <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Organitzador de macros\"><emph>Organitzador de macros</emph></link>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Feu clic ací per obrir el diàleg <link href=\"text/sbasic/shared/01/06130000.xhp\"><emph>Organitzador de macros</emph></link>.</ahelp>"
#. 2pTWM
#: 11110000.xhp
@@ -620,14 +620,14 @@ msgctxt ""
msgid "Find Parentheses"
msgstr "Busca els parèntesis"
-#. awTDX
+#. fQkDR
#: 11120000.xhp
msgctxt ""
"11120000.xhp\n"
"hd_id3149497\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Find Parentheses\">Find Parentheses</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11120000.xhp\" name=\"Busca els parèntesis\">Busca els parèntesis</link>"
+msgid "<link href=\"text/sbasic/shared/02/11120000.xhp\">Find Parentheses</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11120000.xhp\">Busca els parèntesis</link>"
#. Kkd6M
#: 11120000.xhp
@@ -665,14 +665,14 @@ msgctxt ""
msgid "Insert Source Text"
msgstr "Insereix un text font"
-#. FBDRn
+#. kKdim
#: 11140000.xhp
msgctxt ""
"11140000.xhp\n"
"hd_id3154044\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=\"Insereix un text font\">Insereix un text font</link>"
+msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\">Insert Source Text</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11140000.xhp\">Insereix un text font</link>"
#. JscV7
#: 11140000.xhp
@@ -719,14 +719,14 @@ msgctxt ""
msgid "Save Source As"
msgstr "Guarda la font com a"
-#. QL8Bk
+#. UCFMa
#: 11150000.xhp
msgctxt ""
"11150000.xhp\n"
"hd_id3149497\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=\"Guarda la font com a\">Guarda la font com a</link>"
+msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\">Save Source As</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11150000.xhp\">Guarda la font com a</link>"
#. C4hju
#: 11150000.xhp
@@ -764,14 +764,14 @@ msgctxt ""
msgid "Step Out"
msgstr "Ix"
-#. KeqCM
+#. EQK5E
#: 11160000.xhp
msgctxt ""
"11160000.xhp\n"
"hd_id3148983\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=\"Ix\">Ix</link>"
+msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\">Step Out</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11160000.xhp\">Ix</link>"
#. 4rNBj
#: 11160000.xhp
@@ -809,14 +809,14 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Gestiona els punts de ruptura"
-#. 9xPeD
+#. 58Sgj
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
"hd_id3156183\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=\"Gestiona els punts de ruptura\">Gestiona els punts de ruptura</link>"
+msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\">Manage Breakpoints</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11170000.xhp\">Gestiona els punts de ruptura</link>"
#. XqJ6C
#: 11170000.xhp
@@ -845,14 +845,14 @@ msgctxt ""
msgid "Manage Breakpoints"
msgstr "Gestiona els punts de ruptura"
-#. VEXGo
+#. k7KJF
#: 11170000.xhp
msgctxt ""
"11170000.xhp\n"
"par_id3154897\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=\"Gestiona els punts de ruptura\">Diàleg <emph>Gestiona els punts de ruptura</emph></link>"
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\"><emph>Manage Breakpoints</emph> dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/01050300.xhp\">Diàleg <emph>Gestiona els punts de ruptura</emph></link>"
#. sBFuo
#: 11180000.xhp
@@ -863,14 +863,14 @@ msgctxt ""
msgid "Import Dialog"
msgstr "Importa un diàleg"
-#. DpFcB
+#. uKC9G
#: 11180000.xhp
msgctxt ""
"11180000.xhp\n"
"hd_id3156183\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Importa un diàleg\">Importa un diàleg</link>"
+msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\">Import Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11180000.xhp\">Importa un diàleg</link>"
#. XBChu
#: 11180000.xhp
@@ -962,14 +962,14 @@ msgctxt ""
msgid "Export Dialog"
msgstr "Exporta el diàleg"
-#. ZwGyC
+#. 9y6Pg
#: 11190000.xhp
msgctxt ""
"11190000.xhp\n"
"hd_id3156183\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
-msgstr "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Exporta el diàleg\">Exporta el diàleg</link>"
+msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\">Export Dialog</link>"
+msgstr "<link href=\"text/sbasic/shared/02/11190000.xhp\">Exporta el diàleg</link>"
#. aVo7E
#: 11190000.xhp
@@ -1016,14 +1016,14 @@ msgctxt ""
msgid "<bookmark_value>controls; in dialog editor</bookmark_value><bookmark_value>push button control in dialog editor</bookmark_value><bookmark_value>icon control</bookmark_value><bookmark_value>buttons; controls</bookmark_value><bookmark_value>image control</bookmark_value><bookmark_value>check box control</bookmark_value><bookmark_value>radio button control</bookmark_value><bookmark_value>option button control</bookmark_value><bookmark_value>fixed text control</bookmark_value><bookmark_value>label field control</bookmark_value><bookmark_value>editing; controls</bookmark_value><bookmark_value>text boxes; controls</bookmark_value><bookmark_value>list boxes; controls</bookmark_value><bookmark_value>combo box control</bookmark_value><bookmark_value>scroll bar control</bookmark_value><bookmark_value>horizontal scrollbar control</bookmark_value><bookmark_value>vertical scrollbar control</bookmark_value><bookmark_value>group box control</bookmark_value><bookmark_value>progress bar control</bookmark_value><bookmark_value>fixed line control</bookmark_value><bookmark_value>horizontal line control</bookmark_value><bookmark_value>line control</bookmark_value><bookmark_value>vertical line control</bookmark_value><bookmark_value>date field control</bookmark_value><bookmark_value>time field control</bookmark_value><bookmark_value>numerical field control</bookmark_value><bookmark_value>currency field control</bookmark_value><bookmark_value>formatted field control</bookmark_value><bookmark_value>pattern field control</bookmark_value><bookmark_value>masked field control</bookmark_value><bookmark_value>file selection control</bookmark_value><bookmark_value>selection options for controls</bookmark_value><bookmark_value>test mode control</bookmark_value>"
msgstr "<bookmark_value>controls; a l'editor del diàleg</bookmark_value><bookmark_value>prendre el botó control a l'editor del diàleg</bookmark_value><bookmark_value>control de la icona</bookmark_value><bookmark_value>botons; controls</bookmark_value><bookmark_value>control de la imatge</bookmark_value><bookmark_value>control de la casella de selecció</bookmark_value><bookmark_value>control del botó d'opció</bookmark_value><bookmark_value>control de text fix</bookmark_value><bookmark_value>control del camp d'etiqueta</bookmark_value><bookmark_value>edició; controls</bookmark_value><bookmark_value>quadres de text; controls</bookmark_value><bookmark_value>quadres de llista; controls</bookmark_value><bookmark_value>control del quadre combinat</bookmark_value><bookmark_value>control de la barra de desplaçament</bookmark_value><bookmark_value>control de la barra de desplaçament horitzontal</bookmark_value><bookmark_value>control de la barra de desplaçament vertical</bookmark_value><bookmark_value>control del quadre de grup</bookmark_value><bookmark_value>control de la barra de progrés</bookmark_value><bookmark_value>control de línia fixa</bookmark_value><bookmark_value>control de la línia horitzontal</bookmark_value><bookmark_value>control de línia</bookmark_value><bookmark_value>control de línia vertical</bookmark_value><bookmark_value>control del camp de data</bookmark_value><bookmark_value>control del camp d'hora</bookmark_value><bookmark_value>control del camp numèric</bookmark_value><bookmark_value>control del camp de moneda</bookmark_value><bookmark_value>control del camp formatat</bookmark_value><bookmark_value>control del camp de patró</bookmark_value><bookmark_value>control de camp emmascarat</bookmark_value><bookmark_value>control de selecció de fitxers</bookmark_value><bookmark_value>opcions de selecció per als controls</bookmark_value><bookmark_value>control del mode de verificació</bookmark_value>"
-#. YL3Za
+#. dVPiE
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
"hd_id3150402\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insert Controls\">Insert Controls</link>"
-msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\" name=\"Insereix controls\">Insereix controls</link>"
+msgid "<link href=\"text/sbasic/shared/02/20000000.xhp\">Insert Controls</link>"
+msgstr "<link href=\"text/sbasic/shared/02/20000000.xhp\">Insereix controls</link>"
#. jnfj9
#: 20000000.xhp
@@ -1052,14 +1052,14 @@ msgctxt ""
msgid "Insert Controls"
msgstr "Insereix controls"
-#. BjneK
+#. 5qZGJ
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
"par_id3157958\n"
"help.text"
-msgid "In edit mode, double-click a control to open the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties dialog\">properties dialog</link>."
-msgstr "En el mode d'edició, feu doble clic a un control per obrir el <link href=\"text/sbasic/shared/01170100.xhp\" name=\"diàleg propietats\">diàleg propietats</link>."
+msgid "In edit mode, double-click a control to open the <link href=\"text/sbasic/shared/01170100.xhp\">properties dialog</link>."
+msgstr "En el mode d'edició, feu doble clic a un control per obrir el <link href=\"text/sbasic/shared/01170100.xhp\">diàleg propietats</link>."
#. eo4TR
#: 20000000.xhp
@@ -1709,14 +1709,14 @@ msgctxt ""
msgid "<image id=\"img_id3146874\" src=\"cmd/sc_controlproperties.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146874\">Icon Properties</alt></image>"
msgstr ""
-#. pjygv
+#. DToMk
#: 20000000.xhp
msgctxt ""
"20000000.xhp\n"
"par_id3151105\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowPropBrowser\">Opens a dialog where you can edit the <link href=\"text/sbasic/shared/01170100.xhp\" name=\"properties\">properties</link> of the selected control.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowPropBrowser\">Obri un diàleg on podeu editar les <link href=\"text/sbasic/shared/01170100.xhp\" name=\"propietats\">propietats</link> del control seleccionat.</ahelp>"
+msgid "<ahelp hid=\".uno:ShowPropBrowser\">Opens a dialog where you can edit the <link href=\"text/sbasic/shared/01170100.xhp\">properties</link> of the selected control.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowPropBrowser\">Obri un diàleg on podeu editar les <link href=\"text/sbasic/shared/01170100.xhp\">propietats</link> del control seleccionat.</ahelp>"
#. GqGSX
#: 20000000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po
index 3550ee90289..b21c69686ae 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-10-22 14:13+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ca_VALENCIA/>\n"
@@ -151,13 +151,13 @@ msgctxt ""
msgid "ScriptForge Libraries"
msgstr ""
-#. ADEeP
+#. dcmiK
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"ScriptForge library\">The <literal>ScriptForge</literal> Library</link></variable>"
+msgid "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\">The <literal>ScriptForge</literal> Library</link></variable>"
msgstr ""
#. Poeai
@@ -187,13 +187,13 @@ msgctxt ""
msgid "• Basic macros require to load <literal>ScriptForge</literal> library using the following statement:<br/><literal>GlobalScope.BasicLibraries.loadLibrary(\"ScriptForge\")</literal><br/><br/>• Python scripts require an import from <literal>scriptforge</literal> module:<br/><literal>from scriptforge import CreateScriptService</literal>"
msgstr ""
-#. eotwE
+#. MmFGR
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id1001623412767893\n"
"help.text"
-msgid "To learn more about how to create and execute Python scripts using the <literal>ScriptForge</literal> library, read the help page <link href=\"text/sbasic/shared/03/sf_intro.xhp\" name=\"sfintro_link\">Creating Python Scripts with ScriptForge</link>."
+msgid "To learn more about how to create and execute Python scripts using the <literal>ScriptForge</literal> library, read the help page <link href=\"text/sbasic/shared/03/sf_intro.xhp\">Creating Python Scripts with ScriptForge</link>."
msgstr ""
#. 2Fr3S
@@ -313,14 +313,14 @@ msgctxt ""
msgid "DEPOT Library"
msgstr "Biblioteca DEPOT"
-#. rNFGR
+#. KBtpf
#: lib_depot.xhp
msgctxt ""
"lib_depot.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"depot_lib\"><link href=\"text/sbasic/shared/03/lib_depot.xhp\" name=\"Depot library\">The <item type=\"literal\">Depot</item> Library</link></variable>"
-msgstr "<variable id=\"depot_lib\"><link href=\"text/sbasic/shared/03/lib_depot.xhp\" name=\"Biblioteca Depot\">La biblioteca <item type=\"literal\">Depot</item></link></variable>"
+msgid "<variable id=\"depot_lib\"><link href=\"text/sbasic/shared/03/lib_depot.xhp\">The <item type=\"literal\">Depot</item> Library</link></variable>"
+msgstr "<variable id=\"depot_lib\"><link href=\"text/sbasic/shared/03/lib_depot.xhp\">La biblioteca <item type=\"literal\">Depot</item></link></variable>"
#. Us2HT
#: lib_euro.xhp
@@ -331,14 +331,14 @@ msgctxt ""
msgid "EURO Library"
msgstr "Biblioteca EURO"
-#. 5sJCA
+#. uJsnP
#: lib_euro.xhp
msgctxt ""
"lib_euro.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"euro_lib\"><link href=\"text/sbasic/shared/03/lib_euro.xhp\" name=\"Euro library\">The <item type=\"literal\">Euro</item> Library</link></variable>"
-msgstr "<variable id=\"euro_lib\"><link href=\"text/sbasic/shared/03/lib_euro.xhp\" name=\"Biblioteca Euro\">La biblioteca <item type=\"literal\">Euro</item></link></variable>"
+msgid "<variable id=\"euro_lib\"><link href=\"text/sbasic/shared/03/lib_euro.xhp\">The <item type=\"literal\">Euro</item> Library</link></variable>"
+msgstr "<variable id=\"euro_lib\"><link href=\"text/sbasic/shared/03/lib_euro.xhp\">La biblioteca <item type=\"literal\">Euro</item></link></variable>"
#. rH2AG
#: lib_euro.xhp
@@ -394,22 +394,22 @@ msgctxt ""
msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
msgstr ""
-#. 5NFbA
+#. iT3Br
#: lib_euro.xhp
msgctxt ""
"lib_euro.xhp\n"
"par_id1001593520257636\n"
"help.text"
-msgid "ImportWizard and <link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic libraries"
+msgid "ImportWizard and <link href=\"text/sbasic/shared/03/lib_tools.xhp\">Tools</link> Basic libraries"
msgstr ""
-#. JbBaB
+#. DT897
#: lib_euro.xhp
msgctxt ""
"lib_euro.xhp\n"
"par_id251593518523704\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter Wizard\">Euro Converter Wizard</link> describes what the <emph>Euro</emph> library does."
+msgid "<link href=\"text/shared/autopi/01150000.xhp\">Euro Converter Wizard</link> describes what the <emph>Euro</emph> library does."
msgstr ""
#. G8mp2
@@ -421,14 +421,14 @@ msgctxt ""
msgid "FORMWIZARD Library"
msgstr "Biblioteca FORMWIZARD"
-#. Lehxm
+#. pMA4K
#: lib_formwizard.xhp
msgctxt ""
"lib_formwizard.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"formwizard_lib\"><link href=\"text/sbasic/shared/03/lib_formwizard.xhp\" name=\"FormWizard library\">The <item type=\"literal\">FormWizard</item> Library</link></variable>"
-msgstr "<variable id=\"formwizard_lib\"><link href=\"text/sbasic/shared/03/lib_formwizard.xhp\" name=\"Biblioteca FormWizard\">La biblioteca <item type=\"literal\">FormWizard</item></link></variable>"
+msgid "<variable id=\"formwizard_lib\"><link href=\"text/sbasic/shared/03/lib_formwizard.xhp\">The <item type=\"literal\">FormWizard</item> Library</link></variable>"
+msgstr "<variable id=\"formwizard_lib\"><link href=\"text/sbasic/shared/03/lib_formwizard.xhp\">La biblioteca <item type=\"literal\">FormWizard</item></link></variable>"
#. tmFTn
#: lib_gimmicks.xhp
@@ -439,14 +439,14 @@ msgctxt ""
msgid "GIMMICKS Library"
msgstr "Biblioteca GIMMICKS"
-#. Q67FR
+#. RjLy2
#: lib_gimmicks.xhp
msgctxt ""
"lib_gimmicks.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"gimmicks_lib\"><link href=\"text/sbasic/shared/03/lib_gimmicks.xhp\" name=\"Gimmicks library\">The <item type=\"literal\">Gimmicks</item> Library</link></variable>"
-msgstr "<variable id=\"gimmicks_lib\"><link href=\"text/sbasic/shared/03/lib_gimmicks.xhp\" name=\"Biblioteca Gimmicks\">La biblioteca <item type=\"literal\">Gimmicks</item></link></variable>"
+msgid "<variable id=\"gimmicks_lib\"><link href=\"text/sbasic/shared/03/lib_gimmicks.xhp\">The <item type=\"literal\">Gimmicks</item> Library</link></variable>"
+msgstr "<variable id=\"gimmicks_lib\"><link href=\"text/sbasic/shared/03/lib_gimmicks.xhp\">La biblioteca <item type=\"literal\">Gimmicks</item></link></variable>"
#. XD2GA
#: lib_gimmicks.xhp
@@ -502,22 +502,22 @@ msgctxt ""
msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
msgstr ""
-#. FGEdL
+#. XW9eu
#: lib_gimmicks.xhp
msgctxt ""
"lib_gimmicks.xhp\n"
"par_id1001593520257636\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic library"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\">Tools</link> Basic library"
msgstr ""
-#. 9DVHn
+#. RAiw5
#: lib_gimmicks.xhp
msgctxt ""
"lib_gimmicks.xhp\n"
"par_id251593518523704\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/autotext.xhp\" name=\"Using AutoText\">Using AutoText</link> explains what the <emph>Gimmicks</emph> library does."
+msgid "<link href=\"text/swriter/guide/autotext.xhp\">Using AutoText</link> explains what the <emph>Gimmicks</emph> library does."
msgstr ""
#. EwqqW
@@ -529,13 +529,13 @@ msgctxt ""
msgid "ImportWizard Library"
msgstr ""
-#. stDZt
+#. 7Rszk
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"importwiz_lib\"><link href=\"text/sbasic/shared/03/lib_importwiz.xhp\" name=\"ImportWizard library\">The <item type=\"literal\">ImportWizard</item> Library</link></variable>"
+msgid "<variable id=\"importwiz_lib\"><link href=\"text/sbasic/shared/03/lib_importwiz.xhp\">The <item type=\"literal\">ImportWizard</item> Library</link></variable>"
msgstr ""
#. pbesX
@@ -592,22 +592,22 @@ msgctxt ""
msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
msgstr ""
-#. ZCH7G
+#. w27Ax
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id1001593520257636\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic library"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\">Tools</link> Basic library"
msgstr ""
-#. ZT5z9
+#. FaMgp
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id251593518523704\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Document Converter</link> describes what the <emph>ImportWizard</emph> library does."
+msgid "<link href=\"text/shared/autopi/01130000.xhp\">Document Converter</link> describes what the <emph>ImportWizard</emph> library does."
msgstr ""
#. UWzWk
@@ -619,14 +619,14 @@ msgctxt ""
msgid "SCHEDULE Library"
msgstr "Biblioteca SCHEDULE"
-#. CBBt6
+#. kDKfi
#: lib_schedule.xhp
msgctxt ""
"lib_schedule.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"schedule_lib\"><link href=\"text/sbasic/shared/03/lib_schedule.xhp\" name=\"Schedule library\">The <item type=\"literal\">Schedule</item> Library</link></variable>"
-msgstr "<variable id=\"schedule_lib\"><link href=\"text/sbasic/shared/03/lib_schedule.xhp\" name=\"Biblioteca Schedule\">La biblioteca <item type=\"literal\">Schedule</item></link></variable>"
+msgid "<variable id=\"schedule_lib\"><link href=\"text/sbasic/shared/03/lib_schedule.xhp\">The <item type=\"literal\">Schedule</item> Library</link></variable>"
+msgstr "<variable id=\"schedule_lib\"><link href=\"text/sbasic/shared/03/lib_schedule.xhp\">La biblioteca <item type=\"literal\">Schedule</item></link></variable>"
#. CGA63
#: lib_schedule.xhp
@@ -646,14 +646,14 @@ msgctxt ""
msgid "SCRIPTBINDINGLIBRARY Library"
msgstr "Biblioteca SCRIPTBINDINGLIBRARY"
-#. KS8Yu
+#. ov8NG
#: lib_script.xhp
msgctxt ""
"lib_script.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"script_lib\"><link href=\"text/sbasic/shared/03/lib_script.xhp\" name=\"ScriptBindingLibrary library\">The <item type=\"literal\">ScriptBindingLibrary</item> Library</link></variable>"
-msgstr "<variable id=\"script_lib\"><link href=\"text/sbasic/shared/03/lib_script.xhp\" name=\"Biblioteca ScriptBindingLibrary\">La biblioteca <item type=\"literal\">ScriptBindingLibrary</item></link></variable>"
+msgid "<variable id=\"script_lib\"><link href=\"text/sbasic/shared/03/lib_script.xhp\">The <item type=\"literal\">ScriptBindingLibrary</item> Library</link></variable>"
+msgstr "<variable id=\"script_lib\"><link href=\"text/sbasic/shared/03/lib_script.xhp\">La biblioteca <item type=\"literal\">ScriptBindingLibrary</item></link></variable>"
#. m3NsC
#: lib_script.xhp
@@ -700,22 +700,22 @@ msgctxt ""
msgid "This library is not used by %PRODUCTNAME Basic."
msgstr "El %PRODUCTNAME Basic no empra aquesta biblioteca."
-#. Qh7KM
+#. P4psx
#: lib_script.xhp
msgctxt ""
"lib_script.xhp\n"
"par_id251593524531077\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130020.xhp\" name=\"Basic macro selector\">Basic macro selector</link>"
+msgid "<link href=\"text/shared/01/06130020.xhp\">Basic macro selector</link>"
msgstr ""
-#. wJqFF
+#. vAYvG
#: lib_script.xhp
msgctxt ""
"lib_script.xhp\n"
"par_id721593525163663\n"
"help.text"
-msgid "Beanshell, Java and JavaScript <link href=\"text/shared/01/06130030.xhp\" name=\"Scripts\">Scripts</link>"
+msgid "Beanshell, Java and JavaScript <link href=\"text/shared/01/06130030.xhp\">Scripts</link>"
msgstr ""
#. QZNvL
@@ -727,14 +727,14 @@ msgctxt ""
msgid "TEMPLATE Library"
msgstr "Biblioteca TEMPLATE"
-#. wzLe7
+#. 9Etvo
#: lib_template.xhp
msgctxt ""
"lib_template.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"template_lib\"><link href=\"text/sbasic/shared/03/lib_template.xhp\" name=\"Template library\">The <item type=\"literal\">Template</item> Library</link></variable>"
-msgstr "<variable id=\"template_lib\"><link href=\"text/sbasic/shared/03/lib_template.xhp\" name=\"Biblioteca Template\">La biblioteca <item type=\"literal\">Template</item></link></variable>"
+msgid "<variable id=\"template_lib\"><link href=\"text/sbasic/shared/03/lib_template.xhp\">The <item type=\"literal\">Template</item> Library</link></variable>"
+msgstr "<variable id=\"template_lib\"><link href=\"text/sbasic/shared/03/lib_template.xhp\">La biblioteca <item type=\"literal\">Template</item></link></variable>"
#. adfxB
#: lib_tools.xhp
@@ -745,14 +745,14 @@ msgctxt ""
msgid "Tools Library"
msgstr "Biblioteca Tools"
-#. vRB5r
+#. KA7S3
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"tools_lib\"><link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">The <item type=\"literal\">Tools</item> Library</link></variable>"
-msgstr "<variable id=\"tools_lib\"><link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Biblioteca Tools\">La biblioteca <item type=\"literal\">Tools</item></link></variable>"
+msgid "<variable id=\"tools_lib\"><link href=\"text/sbasic/shared/03/lib_tools.xhp\">The <item type=\"literal\">Tools</item> Library</link></variable>"
+msgstr "<variable id=\"tools_lib\"><link href=\"text/sbasic/shared/03/lib_tools.xhp\">La biblioteca <item type=\"literal\">Tools</item></link></variable>"
#. rUPPX
#: lib_tools.xhp
@@ -763,59 +763,59 @@ msgctxt ""
msgid "<bookmark_value>BASIC Tools library</bookmark_value>"
msgstr "<bookmark_value>biblioteca Tools del Basic</bookmark_value>"
-#. DKAzk
+#. Fzsaz
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
"par_id161529001339405\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#debug_module\" name=\"debug module\"><item type=\"literal\">Debug</item> Module</link>"
-msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#debug_module\" name=\"Mòdul Debug\">Mòdul <item type=\"literal\">Debug</item></link>"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#debug_module\"><item type=\"literal\">Debug</item> Module</link>"
+msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#debug_module\">Mòdul <item type=\"literal\">Debug</item></link>"
-#. pFFV7
+#. BCb4H
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
"par_id41529001348561\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#listbox_module\" name=\"listbox module\"><item type=\"literal\">ListBox</item> Module</link>"
-msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#listbox_module\" name=\"Mòdul ListBox\">Mòdul <item type=\"literal\">ListBox</item></link>"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#listbox_module\"><item type=\"literal\">ListBox</item> Module</link>"
+msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#listbox_module\">Mòdul <item type=\"literal\">ListBox</item></link>"
-#. BDvVs
+#. LjBYd
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
"par_id341529001354451\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#misc_module\" name=\"misc module\"><item type=\"literal\">Misc</item> Module</link>"
-msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#misc_module\" name=\"Mòdul Misc\">Mòdul <item type=\"literal\">Misc</item></link>"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#misc_module\"><item type=\"literal\">Misc</item> Module</link>"
+msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#misc_module\">Mòdul <item type=\"literal\">Misc</item></link>"
-#. 6NCFB
+#. WQgrA
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
"par_id311529001362049\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#modulecontrols_module\" name=\"module controls module\"><item type=\"literal\">ModuleControls</item> Module</link>"
-msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#modulecontrols_module\" name=\"Mòdul ModuleControls\">Mòdul <item type=\"literal\">ModuleControls</item></link>"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#modulecontrols_module\"><item type=\"literal\">ModuleControls</item> Module</link>"
+msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#modulecontrols_module\">Mòdul <item type=\"literal\">ModuleControls</item></link>"
-#. YaqDd
+#. BnXFA
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
"par_id701529001368064\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#strings_module\" name=\"strings module\"><item type=\"literal\">Strings</item> Module</link>"
-msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#strings_module\" name=\"Mòdul Strings\">Mòdul <item type=\"literal\">Strings</item></link>"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#strings_module\"><item type=\"literal\">Strings</item> Module</link>"
+msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#strings_module\">Mòdul <item type=\"literal\">Strings</item></link>"
-#. BjA4M
+#. 2bEmJ
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
"par_id251529001373426\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#ucb_module\" name=\"ucb module\"><item type=\"literal\">UCB</item> Module</link>"
-msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#ucb_module\" name=\"Mòdul UCB\">Mòdul <item type=\"literal\">UCB</item></link>"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp#ucb_module\"><item type=\"literal\">UCB</item> Module</link>"
+msgstr "<link href=\"text/sbasic/shared/03/lib_tools.xhp#ucb_module\">Mòdul <item type=\"literal\">UCB</item></link>"
#. ctfU3
#: lib_tools.xhp
@@ -925,14 +925,14 @@ msgctxt ""
msgid "Functions and subroutines for module control."
msgstr "Funcions i subrutines per al control dels mòduls."
-#. Wyk6n
+#. erTCL
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
"par_id261558858921700\n"
"help.text"
-msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
-msgstr "Consulteu <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Obertura d'un diàleg amb el Basic\">Obertura d'un diàleg amb el Basic</link> per a un exemple de la funció LoadDialog."
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr "Consulteu <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\">Obertura d'un diàleg amb el Basic</link> per a un exemple de la funció LoadDialog."
#. fVAXC
#: lib_tools.xhp
@@ -997,13 +997,13 @@ msgctxt ""
msgid "WikiEditor Library"
msgstr ""
-#. QDwwy
+#. FUfqM
#: lib_wikieditor.xhp
msgctxt ""
"lib_wikieditor.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"wikieditor_lib\"><link href=\"text/sbasic/shared/03/lib_wikieditor.xhp\" name=\"WikiEditor library\">The <item type=\"literal\">WikiEditor</item> Library</link></variable>"
+msgid "<variable id=\"wikieditor_lib\"><link href=\"text/sbasic/shared/03/lib_wikieditor.xhp\">The <item type=\"literal\">WikiEditor</item> Library</link></variable>"
msgstr ""
#. mBGxx
@@ -1060,13 +1060,13 @@ msgctxt ""
msgid "<bookmark_value>Array service</bookmark_value>"
msgstr ""
-#. DryH9
+#. vJZCW
#: sf_array.xhp
msgctxt ""
"sf_array.xhp\n"
"bm_id781582391760253\n"
"help.text"
-msgid "<variable id=\"ArrayService\"><link href=\"text/sbasic/shared/03/sf_array.xhp\" name=\"ScriptForge.Array Service\"><literal>ScriptForge</literal>.<literal>Array</literal> service</link></variable>"
+msgid "<variable id=\"ArrayService\"><link href=\"text/sbasic/shared/03/sf_array.xhp\"><literal>ScriptForge</literal>.<literal>Array</literal> service</link></variable>"
msgstr ""
#. jMjFA
@@ -1285,13 +1285,13 @@ msgctxt ""
msgid "<emph>sortorder</emph>: It can be either \"ASC\", \"DESC\" or \"\" (not sorted). The default value is \"\"."
msgstr ""
-#. HVqG3
+#. 7AGE6
#: sf_array.xhp
msgctxt ""
"sf_array.xhp\n"
"par_id71582557214489\n"
"help.text"
-msgid "Store the content of a 2-columns array into a <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"dictionary\">ScriptForge.Dictionary</link> object. <br/>The key will be extracted from the first column, the item from the second."
+msgid "Store the content of a 2-columns array into a <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\">ScriptForge.Dictionary</link> object. <br/>The key will be extracted from the first column, the item from the second."
msgstr ""
#. AdhMA
@@ -1465,13 +1465,13 @@ msgctxt ""
msgid "<emph>filename</emph>: The name of the text file where the data will be written to. The name must be expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service."
msgstr ""
-#. fAeZV
+#. LFxrX
#: sf_array.xhp
msgctxt ""
"sf_array.xhp\n"
"par_id70158617970791\n"
"help.text"
-msgid "<emph>encoding</emph>: The character set that should be used. Use one of the names listed in <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"IANA character sets\">IANA character sets</link>. Note that %PRODUCTNAME may not implement all existing character sets (Default is \"UTF-8\")."
+msgid "<emph>encoding</emph>: The character set that should be used. Use one of the names listed in <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\">IANA character sets</link>. Note that %PRODUCTNAME may not implement all existing character sets (Default is \"UTF-8\")."
msgstr ""
#. TtHbe
@@ -1627,13 +1627,13 @@ msgctxt ""
msgid "Import the data contained in a comma-separated values (CSV) file. The comma may be replaced by any character."
msgstr ""
-#. Fft9z
+#. HmC23
#: sf_array.xhp
msgctxt ""
"sf_array.xhp\n"
"par_id41585562158392\n"
"help.text"
-msgid "The applicable CSV format is described in <link href=\"https://tools.ietf.org/html/rfc4180\" name=\"CSV formats\">IETF Common Format and MIME Type for CSV Files</link>."
+msgid "The applicable CSV format is described in <link href=\"https://tools.ietf.org/html/rfc4180\">IETF Common Format and MIME Type for CSV Files</link>."
msgstr ""
#. PT3Pq
@@ -2446,13 +2446,13 @@ msgctxt ""
msgid "SFDocuments.Base service"
msgstr ""
-#. TiAmG
+#. RAHDf
#: sf_base.xhp
msgctxt ""
"sf_base.xhp\n"
"bm_id781582391760253\n"
"help.text"
-msgid "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"SFDocuments.Base service\"><literal>SFDocuments</literal>.<literal>Base</literal> service</link></variable>"
+msgid "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_base.xhp\"><literal>SFDocuments</literal>.<literal>Base</literal> service</link></variable>"
msgstr ""
#. 4KK8s
@@ -2500,13 +2500,13 @@ msgctxt ""
msgid "Check if a form document from a Base document is currently loaded."
msgstr ""
-#. myHaG
+#. BvCkZ
#: sf_base.xhp
msgctxt ""
"sf_base.xhp\n"
"par_id241619032941497\n"
"help.text"
-msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document Service\"><literal>Document</literal> service</link> to learn more about methods and properties that can be used to manage %PRODUCTNAME documents."
+msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_document.xhp\"><literal>Document</literal> service</link> to learn more about methods and properties that can be used to manage %PRODUCTNAME documents."
msgstr ""
#. bGpRM
@@ -2635,13 +2635,13 @@ msgctxt ""
msgid "The code snippet below prints the names of all form documents in the current Base document."
msgstr ""
-#. DQb6z
+#. Rr46X
#: sf_base.xhp
msgctxt ""
"sf_base.xhp\n"
"par_id921619036922844\n"
"help.text"
-msgid "To learn more about form documents, refer to the <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\"><literal>Form</literal> service help page</link>."
+msgid "To learn more about form documents, refer to the <link href=\"text/sbasic/shared/03/sf_form.xhp\"><literal>Form</literal> service help page</link>."
msgstr ""
#. gCGqW
@@ -2707,13 +2707,13 @@ msgctxt ""
msgid "The first line of the example below returns a list of all forms in the form document \"myFormDocument\". The second line returns an instance of the Form service representing the form \"myForm\"."
msgstr ""
-#. 9jA9n
+#. MGjWj
#: sf_base.xhp
msgctxt ""
"sf_base.xhp\n"
"par_id371619098340303\n"
"help.text"
-msgid "Returns an instance of the <link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"Database service\"><literal>Database</literal> service</link> that allows the execution of SQL commands on the database defined and/or stored in the current Base document"
+msgid "Returns an instance of the <link href=\"text/sbasic/shared/03/sf_database.xhp\"><literal>Database</literal> service</link> that allows the execution of SQL commands on the database defined and/or stored in the current Base document"
msgstr ""
#. 9Bncy
@@ -2905,13 +2905,13 @@ msgctxt ""
msgid "ScriptForge.Basic service"
msgstr ""
-#. GxEht
+#. PBb7U
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"hd_id731582733781114\n"
"help.text"
-msgid "<variable id=\"BasicService\"><link href=\"text/sbasic/shared/03/sf_basic.xhp\" name=\"Basic service\"><literal>ScriptForge</literal>.<literal>Basic</literal> service</link></variable>"
+msgid "<variable id=\"BasicService\"><link href=\"text/sbasic/shared/03/sf_basic.xhp\"><literal>ScriptForge</literal>.<literal>Basic</literal> service</link></variable>"
msgstr ""
#. G5jAV
@@ -3103,13 +3103,13 @@ msgctxt ""
msgid "UNO<br/>object"
msgstr ""
-#. AA95E
+#. GGcfX
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"par_id541619006255653\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/stardesktop.xhp\" name=\"StarDesktop\"><literal>StarDesktop</literal></link> object represents %PRODUCTNAME Start Center."
+msgid "<link href=\"text/sbasic/shared/stardesktop.xhp\"><literal>StarDesktop</literal></link> object represents %PRODUCTNAME Start Center."
msgstr ""
#. vXq8C
@@ -3130,13 +3130,13 @@ msgctxt ""
msgid "Converts a numeric expression or a string to a <literal>datetime</literal>.<literal>datetime</literal> Python native object."
msgstr ""
-#. SVk4F
+#. Myvas
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"par_id431621896441258\n"
"help.text"
-msgid "This method exposes the Basic builtin function <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate_Basic\">CDate</link> to Python scripts."
+msgid "This method exposes the Basic builtin function <link href=\"text/sbasic/shared/03100300.xhp\">CDate</link> to Python scripts."
msgstr ""
#. xvPTA
@@ -3445,22 +3445,22 @@ msgctxt ""
msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
msgstr ""
-#. d4EQf
+#. q4pGq
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"par_id881618848030897\n"
"help.text"
-msgid "<literal>GetDefaultContext</literal> is an alternative to the <link href=\"text/sbasic/python/python_programming.xhp\" name=\"getComponentContext method\">getComponentContext()</link> method available from <literal>XSCRIPTCONTEXT</literal> global variable or from <link href=\"text/sbasic/python/python_programming.xhp\" name=\"uno.py module\">uno.py</link> module."
+msgid "<literal>GetDefaultContext</literal> is an alternative to the <link href=\"text/sbasic/python/python_programming.xhp\">getComponentContext()</link> method available from <literal>XSCRIPTCONTEXT</literal> global variable or from <link href=\"text/sbasic/python/python_programming.xhp\">uno.py</link> module."
msgstr ""
-#. dk35X
+#. 8RLUK
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"par_id381618831451271\n"
"help.text"
-msgid "The default component context is used, when instantiating services via <literal>XMultiServiceFactory</literal>. See the <literal>Professional UNO</literal> chapter in the Developer's Guide on <link href=\"https://api.libreoffice.org/\" name=\"API Developer's Guide\">api.libreoffice.org</link> for more information."
+msgid "The default component context is used, when instantiating services via <literal>XMultiServiceFactory</literal>. See the <literal>Professional UNO</literal> chapter in the Developer's Guide on <link href=\"https://api.libreoffice.org/\">api.libreoffice.org</link> for more information."
msgstr ""
#. LACDh
@@ -3472,13 +3472,13 @@ msgctxt ""
msgid "Returns a numerical value that specifies the graphical user interface. This function is only provided for backward compatibility with previous versions."
msgstr ""
-#. SmsEL
+#. i7FGf
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"par_id341618848532640\n"
"help.text"
-msgid "Refer to <literal>system()</literal> method from <literal>platform</literal> Python module to <link href=\"text/sbasic/python/python_platform.xhp\" name=\"identify the operating system\">identify the operating system</link>."
+msgid "Refer to <literal>system()</literal> method from <literal>platform</literal> Python module to <link href=\"text/sbasic/python/python_platform.xhp\">identify the operating system</link>."
msgstr ""
#. BJTbw
@@ -3490,13 +3490,13 @@ msgctxt ""
msgid "Returns the operating system-dependent directory separator used to specify file paths."
msgstr ""
-#. BWvPB
+#. U4CR2
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"par_id341618848562340\n"
"help.text"
-msgid "Use <literal>os.pathsep</literal> from <literal>os</literal> Python module to <link href=\"text/sbasic/python/python_platform.xhp\" name=\"path delimiter\">identify the path separator</link>."
+msgid "Use <literal>os.pathsep</literal> from <literal>os</literal> Python module to <link href=\"text/sbasic/python/python_platform.xhp\">identify the path separator</link>."
msgstr ""
#. Jvd3v
@@ -3607,13 +3607,13 @@ msgctxt ""
msgid "s.MsgBox(txt, s.MB_ICONINFORMATION, \"Confirmation of phrase\")"
msgstr ""
-#. 42vSm
+#. znSLr
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"par_id651618921455396\n"
"help.text"
-msgid "For in-depth information please refer to <link href=\"https://wiki.documentfoundation.org/Macros/General/IO_to_Screen\" name=\"Input/Output to Screen with Python\">Input/Output to Screen with Python</link> on the Wiki."
+msgid "For in-depth information please refer to <link href=\"https://wiki.documentfoundation.org/Macros/General/IO_to_Screen\">Input/Output to Screen with Python</link> on the Wiki."
msgstr ""
#. WMifG
@@ -3733,13 +3733,13 @@ msgctxt ""
msgid "This method returns <literal>None</literal> otherwise."
msgstr ""
-#. q3CG8
+#. YvYx9
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"par_id201623153844931\n"
"help.text"
-msgid "Visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument\">OfficeDatabaseDocument</link> API page to learn more about Base's main component structure."
+msgid "Visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\">OfficeDatabaseDocument</link> API page to learn more about Base's main component structure."
msgstr ""
#. mAUuG
@@ -3769,13 +3769,13 @@ msgctxt ""
msgid "<emph>obj</emph>: A variable or UNO object."
msgstr ""
-#. fMbAm
+#. BwViD
#: sf_basic.xhp
msgctxt ""
"sf_basic.xhp\n"
"par_id951618554355538\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Macros/General/IO_to_Screen\" name=\"Input/Output to Screen with Python\">Input/Output to Screen with Python</link> on the wiki"
+msgid "<link href=\"https://wiki.documentfoundation.org/Macros/General/IO_to_Screen\">Input/Output to Screen with Python</link> on the wiki"
msgstr ""
#. RYwFj
@@ -3787,13 +3787,13 @@ msgctxt ""
msgid "SFDocuments.Calc service"
msgstr ""
-#. nXFgM
+#. sfRcw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"hd_id731582733781114\n"
"help.text"
-msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
+msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
msgstr ""
#. EkFAT
@@ -3805,13 +3805,13 @@ msgctxt ""
msgid "The <literal>SFDocuments</literal> shared library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME documents."
msgstr ""
-#. CBPyB
+#. WHqRB
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591014177269\n"
"help.text"
-msgid "The <literal>SFDocuments.Calc</literal> service is a subclass of the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"SF_Document_link\"><literal>SFDocuments.Document</literal></link> service. All methods and properties defined for the <literal>Document</literal> service can also be accessed using a <literal>Calc</literal> service instance."
+msgid "The <literal>SFDocuments.Calc</literal> service is a subclass of the <link href=\"text/sbasic/shared/03/sf_document.xhp\"><literal>SFDocuments.Document</literal></link> service. All methods and properties defined for the <literal>Document</literal> service can also be accessed using a <literal>Calc</literal> service instance."
msgstr ""
#. 4uAEX
@@ -4282,13 +4282,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. FeCia
+#. nntpM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id151591018231905\n"
"help.text"
-msgid "All the properties generic to any document are implicitly applicable also to Calc documents. For more information, read the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document service\">Document service Help page</link>."
+msgid "All the properties generic to any document are implicitly applicable also to Calc documents. For more information, read the <link href=\"text/sbasic/shared/03/sf_document.xhp\">Document service Help page</link>."
msgstr ""
#. DTzRF
@@ -4822,13 +4822,13 @@ msgctxt ""
msgid "A <literal>com.sun.star.sheet.XSpreadsheet</literal> UNO object."
msgstr ""
-#. hwjGf
+#. nZz4a
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321611613059105\n"
"help.text"
-msgid "Visit %PRODUCTNAME API Documentation's website to learn more about <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1table_1_1XCellRange.html\" name=\"XCellRange API\">XCellRange</link>, <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XSheetCellCursor.html\" name=\"XSheetCellCursor API\">XSheetCellCursor</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XSpreadsheet.html\" name=\"XSpreadsheet API\">XSpreadsheet</link> UNO objects."
+msgid "Visit %PRODUCTNAME API Documentation's website to learn more about <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1table_1_1XCellRange.html\">XCellRange</link>, <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XSheetCellCursor.html\">XSheetCellCursor</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XSpreadsheet.html\">XSpreadsheet</link> UNO objects."
msgstr ""
#. V5dF8
@@ -5146,13 +5146,13 @@ msgctxt ""
msgid "For example, suppose range <emph>A1:J200</emph> is selected (height = 200), so the default formula is <emph>=(COUNTBLANK(A1:A200)=200)</emph>. This means that if all 200 cells are empty in the first column (Column A), then the column is deleted. Note that the formula is expressed with respect to the first column only. Internally the <literal>CompactLeft</literal> method will generalize this formula for all the remaining columns."
msgstr ""
-#. viKpg
+#. LQz5G
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id431657568414625\n"
"help.text"
-msgid "Calc functions used in the <literal>filterformula</literal> argument must be expressed using their English names. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\" name=\"CalcFunctions\">List of Calc Functions</link> for a complete list of Calc functions in English."
+msgid "Calc functions used in the <literal>filterformula</literal> argument must be expressed using their English names. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\">List of Calc Functions</link> for a complete list of Calc functions in English."
msgstr ""
#. FDspT
@@ -5335,13 +5335,13 @@ msgctxt ""
msgid "For example, suppose range <emph>A1:J200</emph> is selected (width = 10), so the default formula is <emph>=(COUNTBLANK(A1:J1)=10)</emph>. This means that if all 10 cells are empty in the first row (Row 1), then the row is deleted. Note that the formula is expressed with respect to the first row only. Internally the <literal>CompactUp</literal> method will generalize this formula for all the remaining rows."
msgstr ""
-#. VCrie
+#. BxmHj
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id431657568414714\n"
"help.text"
-msgid "The Calc functions used in the formula specified in the <literal>filterformula</literal> argument must be expressed using their English names. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\" name=\"CalcFunctions\">List of Calc Functions</link> for a complete list of Calc functions in English."
+msgid "The Calc functions used in the formula specified in the <literal>filterformula</literal> argument must be expressed using their English names. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\">List of Calc Functions</link> for a complete list of Calc functions in English."
msgstr ""
#. GuWzD
@@ -5830,13 +5830,13 @@ msgctxt ""
msgid "The examples below in Basic and Python create a chart using the data contained in the range \"A1:B5\" of \"Sheet1\" and place the chart in \"Sheet2\"."
msgstr ""
-#. uBCvA
+#. NcUxk
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id231635441342180\n"
"help.text"
-msgid "Refer to the help page about ScriptForge's <link href=\"text/sbasic/shared/03/sf_chart.xhp\" name=\"Chart service\">Chart service</link> to learn more how to further manipulate chart objects. It is possible to change properties as the chart type, chart and axes titles and chart position."
+msgid "Refer to the help page about ScriptForge's <link href=\"text/sbasic/shared/03/sf_chart.xhp\">Chart service</link> to learn more how to further manipulate chart objects. It is possible to change properties as the chart type, chart and axes titles and chart position."
msgstr ""
#. DFCVe
@@ -6118,13 +6118,13 @@ msgctxt ""
msgid "[\"State\", \"Team\"], False)"
msgstr ""
-#. XsF9b
+#. scaEA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id231635441342284\n"
"help.text"
-msgid "To learn more about Pivot Tables in %PRODUCTNAME Calc, read the <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot table\">Pivot Table</link> help page."
+msgid "To learn more about Pivot Tables in %PRODUCTNAME Calc, read the <link href=\"text/scalc/guide/datapilot.xhp\">Pivot Table</link> help page."
msgstr ""
#. so8uw
@@ -6343,13 +6343,13 @@ msgctxt ""
msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings."
msgstr ""
-#. ojiDi
+#. P4bPd
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id291658146319931\n"
"help.text"
-msgid "The names of Calc functions used in the returned formulas are expressed in English. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\" name=\"CalcFunctions\">List of Calc Functions</link> for a complete list of Calc functions in English."
+msgid "The names of Calc functions used in the returned formulas are expressed in English. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\">List of Calc Functions</link> for a complete list of Calc functions in English."
msgstr ""
#. KDFkQ
@@ -6388,13 +6388,13 @@ msgctxt ""
msgid "<emph>range</emph>: The range where to get the values from, as a string."
msgstr ""
-#. ojRBo
+#. dw2RT
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id991611756492772\n"
"help.text"
-msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Basic\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\" name=\"CDate Python\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
+msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
msgstr ""
#. YYMuH
@@ -6523,13 +6523,13 @@ msgctxt ""
msgid "The language is English/US, which implies that the decimal separator is \".\" and the thousands separator is \",\"."
msgstr ""
-#. tDYGo
+#. AXK5G
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id531611757154931\n"
"help.text"
-msgid "To learn more about the CSV Filter Options, refer to the <link href=\"text/shared/guide/csv_params.xhp\" name=\"CSV Filter Options\">CSV Filter Options help page</link>."
+msgid "To learn more about the CSV Filter Options, refer to the <link href=\"text/shared/guide/csv_params.xhp\">CSV Filter Options help page</link>."
msgstr ""
#. vPPYx
@@ -6712,13 +6712,13 @@ msgctxt ""
msgid "Returns a new range (as a string) offset by a certain number of rows and columns from a given range."
msgstr ""
-#. VCUXL
+#. AgdZe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id61611768400376\n"
"help.text"
-msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\" name=\"Offset function\">Offset function</link>."
+msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\">Offset function</link>."
msgstr ""
#. G2oD2
@@ -7126,13 +7126,13 @@ msgctxt ""
msgid "<emph>value</emph>: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if <literal>targetcell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
-#. 7BCXQ
+#. eAuMT
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id331611776151376\n"
"help.text"
-msgid "The following example uses the builtin <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray function\">DimArray function</link> to create an array and then store it in cell \"A1\":"
+msgid "The following example uses the builtin <link href=\"text/sbasic/shared/03104300.xhp\">DimArray function</link> to create an array and then store it in cell \"A1\":"
msgstr ""
#. AheUb
@@ -7279,13 +7279,13 @@ msgctxt ""
msgid "Vectors are always expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
-#. XbQTz
+#. 9csnd
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id431657568413185\n"
"help.text"
-msgid "Calc functions used in the <literal>formula</literal> argument must be expressed using their English names. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\" name=\"CalcFunctions\">List of Calc Functions</link> for a complete list of Calc functions in English."
+msgid "Calc functions used in the <literal>formula</literal> argument must be expressed using their English names. Visit the Wiki page <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions\">List of Calc Functions</link> for a complete list of Calc functions in English."
msgstr ""
#. rNEEY
@@ -7837,13 +7837,13 @@ msgctxt ""
msgid "SFDocuments.Chart service"
msgstr ""
-#. bv49k
+#. yZMaG
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"ChartService\"><link href=\"text/sbasic/shared/03/sf_chart.xhp\" name=\"Chart service\"><literal>SFDocuments</literal>.<literal>Chart</literal> service</link></variable>"
+msgid "<variable id=\"ChartService\"><link href=\"text/sbasic/shared/03/sf_chart.xhp\"><literal>SFDocuments</literal>.<literal>Chart</literal> service</link></variable>"
msgstr ""
#. nPHDK
@@ -7972,13 +7972,13 @@ msgctxt ""
msgid "The following example instantiate the <literal>Chart</literal> service by creating a new chart object based on the data contained in the range \"Sheet1.A1:C10\"."
msgstr ""
-#. BZ2EU
+#. eFatU
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"par_id881635275036852\n"
"help.text"
-msgid "Read the <link href=\"text/sbasic/shared/03/sf_calc.xhp#CreateChart\" name=\"CreateChart_link\">CreateChart</link> method description to learn more about its arguments."
+msgid "Read the <link href=\"text/sbasic/shared/03/sf_calc.xhp#CreateChart\">CreateChart</link> method description to learn more about its arguments."
msgstr ""
#. gjYRg
@@ -8269,13 +8269,13 @@ msgctxt ""
msgid "UNO Object"
msgstr ""
-#. cDJES
+#. eDWVw
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"par_id661300789527859\n"
"help.text"
-msgid "Returns the object representing the chart, which is an instance of the <link href=\"https://docs.libreoffice.org/sc/html/classScChartObj.html\" name=\"ScChartObj\"><literal>ScChartObj</literal></link> class."
+msgid "Returns the object representing the chart, which is an instance of the <link href=\"https://docs.libreoffice.org/sc/html/classScChartObj.html\"><literal>ScChartObj</literal></link> class."
msgstr ""
#. kDUCf
@@ -8296,13 +8296,13 @@ msgctxt ""
msgid "UNO Object"
msgstr ""
-#. yRYAq
+#. 5f7Db
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"par_id631600789527859\n"
"help.text"
-msgid "Returns the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1chart_1_1XDiagram.html\" name=\"XDiagram\"><literal>com.sun.star.chart.XDiagram</literal></link> object representing the diagram of the chart."
+msgid "Returns the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1chart_1_1XDiagram.html\"><literal>com.sun.star.chart.XDiagram</literal></link> object representing the diagram of the chart."
msgstr ""
#. CAXYe
@@ -8323,13 +8323,13 @@ msgctxt ""
msgid "UNO Object"
msgstr ""
-#. FpeAy
+#. xAiNS
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"par_id631600789522587\n"
"help.text"
-msgid "Returns the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1drawing_1_1XShape.html\" name=\"XShape\"><literal>com.sun.star.drawing.XShape</literal></link> object representing the shape of the chart."
+msgid "Returns the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1drawing_1_1XShape.html\"><literal>com.sun.star.drawing.XShape</literal></link> object representing the shape of the chart."
msgstr ""
#. DdVs9
@@ -8350,13 +8350,13 @@ msgctxt ""
msgid "UNO Object"
msgstr ""
-#. 5GESc
+#. 95Sfn
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"par_id631600789527364\n"
"help.text"
-msgid "Returns the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1table_1_1XTableChart.html\" name=\"XTableChart\"><literal>com.sun.star.table.XTableChart</literal></link> object representing the data being displayed in the chart."
+msgid "Returns the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1table_1_1XTableChart.html\"><literal>com.sun.star.table.XTableChart</literal></link> object representing the data being displayed in the chart."
msgstr ""
#. A278T
@@ -8530,13 +8530,13 @@ msgctxt ""
msgid "SFDatabases.Database service"
msgstr ""
-#. K7nuj
+#. pc2rX
#: sf_database.xhp
msgctxt ""
"sf_database.xhp\n"
"hd_id371587913266310\n"
"help.text"
-msgid "<variable id=\"DatabaseService\"><link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"Database service\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link></variable>"
+msgid "<variable id=\"DatabaseService\"><link href=\"text/sbasic/shared/03/sf_database.xhp\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link></variable>"
msgstr ""
#. RByov
@@ -8584,13 +8584,13 @@ msgctxt ""
msgid "Each instance of the <literal>Database</literal> service represents a single database and gives access to its tables, queries and data."
msgstr ""
-#. JopCB
+#. kAfCA
#: sf_database.xhp
msgctxt ""
"sf_database.xhp\n"
"par_id111625692871642\n"
"help.text"
-msgid "This service does not provide access to forms or reports in the Base document that contains the database. To access forms in a Base document, refer to the method <link href=\"text/sbasic/shared/03/sf_base.xhp#FormDocuments\" name=\"FormDocuments\"><literal>FormDocuments</literal></link> of the <literal>Base</literal> service."
+msgid "This service does not provide access to forms or reports in the Base document that contains the database. To access forms in a Base document, refer to the method <link href=\"text/sbasic/shared/03/sf_base.xhp#FormDocuments\"><literal>FormDocuments</literal></link> of the <literal>Base</literal> service."
msgstr ""
#. Snu6R
@@ -8737,13 +8737,13 @@ msgctxt ""
msgid "Accessing Databases with the UI Service"
msgstr ""
-#. 5Kifs
+#. h6D6c
#: sf_database.xhp
msgctxt ""
"sf_database.xhp\n"
"par_id901599408410712\n"
"help.text"
-msgid "It is also possible to access the database associated with a Base document using the <link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"UI Service\"><literal>ScriptForge.UI</literal></link> service, as shown in the examples below:"
+msgid "It is also possible to access the database associated with a Base document using the <link href=\"text/sbasic/shared/03/sf_ui.xhp\"><literal>ScriptForge.UI</literal></link> service, as shown in the examples below:"
msgstr ""
#. T6mkQ
@@ -8782,13 +8782,13 @@ msgctxt ""
msgid "# Run queries, SQL statements, ..."
msgstr ""
-#. 2Znjy
+#. YwTLR
#: sf_database.xhp
msgctxt ""
"sf_database.xhp\n"
"par_id361619188184750\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/03/sf_base.xhp#GetDatabase\" name=\"GetDatabase method\">GetDatabase</link> method used in the example above is part of ScriptForge's <literal>Base</literal> service."
+msgid "The <link href=\"text/sbasic/shared/03/sf_base.xhp#GetDatabase\">GetDatabase</link> method used in the example above is part of ScriptForge's <literal>Base</literal> service."
msgstr ""
#. EF9Lc
@@ -9223,22 +9223,22 @@ msgctxt ""
msgid "SFDialogs.Dialog service"
msgstr ""
-#. LzQoS
+#. ZQBAD
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"bm_id781582391760253\n"
"help.text"
-msgid "<variable id=\"dlg_h1\"><link href=\"text/sbasic/shared/03/sf_dialog.xhp\" name=\"SFDialogs.Dialog\"><literal>SFDialogs</literal>.<literal>Dialog</literal> service</link></variable>"
+msgid "<variable id=\"dlg_h1\"><link href=\"text/sbasic/shared/03/sf_dialog.xhp\"><literal>SFDialogs</literal>.<literal>Dialog</literal> service</link></variable>"
msgstr ""
-#. ny8EV
+#. LSng5
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id931583589764919\n"
"help.text"
-msgid "The <literal>Dialog</literal> service contributes to the management of dialogs created with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>. Each instance of the current class represents a single dialog box displayed to the user."
+msgid "The <literal>Dialog</literal> service contributes to the management of dialogs created with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\">Dialog Editor</link>. Each instance of the current class represents a single dialog box displayed to the user."
msgstr ""
#. vxEvV
@@ -9313,13 +9313,13 @@ msgctxt ""
msgid "The <literal>Dialog</literal> service is invoked through the <literal>CreateScriptService</literal> method. It requires three positional arguments to specify the dialog box to activate:"
msgstr ""
-#. Ntzqh
+#. KyBGV
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id31612271944733\n"
"help.text"
-msgid "<emph>Container</emph>: \"<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope specifier\"><literal>GlobalScope</literal></link>\" for preinstalled libraries or a window name as defined by <link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI\"><literal>ScriptForge.UI</literal></link> service. Empty string \"\" default value stands for the current document."
+msgid "<emph>Container</emph>: \"<link href=\"text/sbasic/shared/03131900.xhp\"><literal>GlobalScope</literal></link>\" for preinstalled libraries or a window name as defined by <link href=\"text/sbasic/shared/03/sf_ui.xhp\"><literal>ScriptForge.UI</literal></link> service. Empty string \"\" default value stands for the current document."
msgstr ""
#. juLgm
@@ -9637,13 +9637,13 @@ msgctxt ""
msgid "Yes"
msgstr ""
-#. W2CkE
+#. 2DaKv
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id191598177924897\n"
"help.text"
-msgid "The UNO object representing the dialog model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"XControlModel interface\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialogModel-members.html\" name=\"css.awt.UnoControlDialogModel\">UnoControlDialogModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgid "The UNO object representing the dialog model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialogModel-members.html\">UnoControlDialogModel</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
#. YFYi4
@@ -9655,13 +9655,13 @@ msgctxt ""
msgid "Yes"
msgstr ""
-#. bmedG
+#. yexon
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id731598178083442\n"
"help.text"
-msgid "The UNO object representing the dialog view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"XControl interface\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog-members.html\" name=\"UnoControlDialog interface\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
+msgid "The UNO object representing the dialog view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog-members.html\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
#. S4DWL
@@ -9691,13 +9691,13 @@ msgctxt ""
msgid "Event properties"
msgstr ""
-#. tn52Y
+#. GyjGD
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id41612629140856\n"
"help.text"
-msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\">scripting framework URI specification</link>."
msgstr ""
#. XCC7C
@@ -10105,13 +10105,13 @@ msgctxt ""
msgid "Using Python:"
msgstr ""
-#. ML9Mz
+#. aizuC
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id81620201915101\n"
"help.text"
-msgid "Above <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1lang_1_1EventObject.html\" name=\"com.sun.star.lang.EventObject\">com.sun.star.lang.EventObject</link> mentions are optional. Such annotations help identify %PRODUCTNAME Application Programming Interface (API)."
+msgid "Above <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1lang_1_1EventObject.html\">com.sun.star.lang.EventObject</link> mentions are optional. Such annotations help identify %PRODUCTNAME Application Programming Interface (API)."
msgstr ""
#. FD9fr
@@ -10204,13 +10204,13 @@ msgctxt ""
msgid "The method returns <literal>True</literal> if successful."
msgstr ""
-#. v5Zt5
+#. 3wcE6
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id61637871260604\n"
"help.text"
-msgid "To create a list of translatable strings in a dialog use the <link href=\"text/sbasic/shared/03/sf_l10n.xhp#AddTextsFromDialog\" name=\"AddTextsFromDialog\">AddTextsFromDialog</link> method from the L10N service."
+msgid "To create a list of translatable strings in a dialog use the <link href=\"text/sbasic/shared/03/sf_l10n.xhp#AddTextsFromDialog\">AddTextsFromDialog</link> method from the L10N service."
msgstr ""
#. ECNVg
@@ -10231,13 +10231,13 @@ msgctxt ""
msgid "The following example loads translated strings and applies them to the dialog \"MyDialog\"."
msgstr ""
-#. p3KMX
+#. 3dcGG
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id901637872163895\n"
"help.text"
-msgid "Read the <link href=\"text/sbasic/shared/03/sf_l10n.xhp\" name=\"L10N\">L10N service</link> help page to learn more about how PO and POT files are handled."
+msgid "Read the <link href=\"text/sbasic/shared/03/sf_l10n.xhp\">L10N service</link> help page to learn more about how PO and POT files are handled."
msgstr ""
#. mA4Nm
@@ -10366,22 +10366,22 @@ msgctxt ""
msgid "SFDialogs.DialogControl service"
msgstr ""
-#. UBz5i
+#. 2KEBr
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"bm_id781582391760253\n"
"help.text"
-msgid "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp\" name=\"SFDialogs.DialogControl service\"><literal>SFDialogs</literal>.<literal>DialogControl</literal> service</link></variable>"
+msgid "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp\"><literal>SFDialogs</literal>.<literal>DialogControl</literal> service</link></variable>"
msgstr ""
-#. tZzKc
+#. RDcyi
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id931583589764919\n"
"help.text"
-msgid "The <literal>DialogControl</literal> service manages the controls belonging to a dialog defined with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>. Each instance of the current service represents a single control within a dialog box."
+msgid "The <literal>DialogControl</literal> service manages the controls belonging to a dialog defined with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\">Dialog Editor</link>. Each instance of the current service represents a single control within a dialog box."
msgstr ""
#. 7dDgL
@@ -10411,13 +10411,13 @@ msgctxt ""
msgid "A special attention is given to controls of type tree control. It is easy to populate a tree, either branch by branch, or with a set of branches at once. Populating a tree control can be performed statically or dynamically."
msgstr ""
-#. 9LpGF
+#. hag3A
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id891598188164936\n"
"help.text"
-msgid "The <literal>SFDialogs.DialogControl</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_dialog.xhp\" name=\"Dialog service\"><literal>SFDialogs.Dialog</literal></link> service."
+msgid "The <literal>SFDialogs.DialogControl</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_dialog.xhp\"><literal>SFDialogs.Dialog</literal></link> service."
msgstr ""
#. uGTGK
@@ -10654,13 +10654,13 @@ msgctxt ""
msgid "UNO<br/>object"
msgstr ""
-#. w2ZhT
+#. tM7T7
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id1001612705482919\n"
"help.text"
-msgid "The currently upmost node selected in the tree control. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgid "The currently upmost node selected in the tree control. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
#. veivJ
@@ -10960,13 +10960,13 @@ msgctxt ""
msgid "UNO<br/>object"
msgstr ""
-#. m4N4j
+#. m4uz7
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id11612700624514\n"
"help.text"
-msgid "An object representing the lowest root node (usually there is only one such root node). Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgid "An object representing the lowest root node (usually there is only one such root node). Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
#. PqsSY
@@ -11059,13 +11059,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. ZHrsm
+#. Cj2Rr
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id1001598540024225\n"
"help.text"
-msgid "Refer to <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#hd_id81598540704978\" name=\"Value property\">Value property</link>"
+msgid "Refer to <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#hd_id81598540704978\">Value property</link>"
msgstr ""
#. PqKgo
@@ -11122,13 +11122,13 @@ msgctxt ""
msgid "All"
msgstr ""
-#. F8rNE
+#. Erxx8
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id191598177924897\n"
"help.text"
-msgid "The UNO object representing the control model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"awt.XControlModel\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialogModel.html)\" name=\"awt.XControlDialogModel\">UnoControlDialogModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgid "The UNO object representing the control model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialogModel.html)\">UnoControlDialogModel</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
#. xfhaP
@@ -11158,13 +11158,13 @@ msgctxt ""
msgid "All"
msgstr ""
-#. ZM6sk
+#. TCTcr
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id731598178083442\n"
"help.text"
-msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\" name=\"awt.XControl\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog.html)\" name=\"awt.UnoControlDialog\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
+msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog.html)\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
#. SAkJX
@@ -11185,13 +11185,13 @@ msgctxt ""
msgid "UNO<br/>object"
msgstr ""
-#. 7XckG
+#. s7nM8
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id691612699446892\n"
"help.text"
-msgid "The UNO object representing the tree control data model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeDataModel.html\" name=\"awt.tree.XMutableTreeDataModel\">XMutableTreeDataModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgid "The UNO object representing the tree control data model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeDataModel.html\">XMutableTreeDataModel</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
#. dfWTW
@@ -11392,13 +11392,13 @@ msgctxt ""
msgid "Event properties"
msgstr ""
-#. Vo6Ch
+#. Y8TAs
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id41612629140856\n"
"help.text"
-msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\">scripting framework URI specification</link>."
msgstr ""
#. fkFAt
@@ -11734,13 +11734,13 @@ msgctxt ""
msgid "List of Methods in the DialogControl Service"
msgstr ""
-#. 5jtfg
+#. uHbTG
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id831612711823126\n"
"help.text"
-msgid "Create and return a new node of the tree control as a UNO object subordinate to a parent node. <variable id=\"XMutableTreeNode\">Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XMutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information.</variable>"
+msgid "Create and return a new node of the tree control as a UNO object subordinate to a parent node. <variable id=\"XMutableTreeNode\">Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\">XMutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information.</variable>"
msgstr ""
#. MrQnS
@@ -11896,13 +11896,13 @@ msgctxt ""
msgid "One argument out of <literal>displayvalue</literal> or <literal>datavalue</literal> must be specified. If both present, one match is sufficient to select the node."
msgstr ""
-#. MF7PA
+#. 4xxwd
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id591612781589560\n"
"help.text"
-msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
+msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
msgstr ""
#. BE58W
@@ -12058,13 +12058,13 @@ msgctxt ""
msgid "ScriptForge.Dictionary service"
msgstr ""
-#. 4L4A6
+#. RJbvj
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"hd_id731582733781114\n"
"help.text"
-msgid "<variable id=\"SFDictionary\"><link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"ScriptForge.Dictionary service\"><literal>ScriptForge</literal>.<literal>Dictionary</literal> service</link></variable>"
+msgid "<variable id=\"SFDictionary\"><link href=\"text/sbasic/shared/03/sf_dictionary.xhp\"><literal>ScriptForge</literal>.<literal>Dictionary</literal> service</link></variable>"
msgstr ""
#. LJG3Z
@@ -12391,13 +12391,13 @@ msgctxt ""
msgid "If the dictionary is empty, this method will return an empty <literal>Array</literal>."
msgstr ""
-#. MnEGs
+#. rAA3u
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id831601296836981\n"
"help.text"
-msgid "Converts the contents of a dictionary to <link href=\"https://en.wikipedia.org/wiki/JSON\" name=\"JSON text\">JSON (JavaScript Object Notation)</link> text."
+msgid "Converts the contents of a dictionary to <link href=\"https://en.wikipedia.org/wiki/JSON\">JSON (JavaScript Object Notation)</link> text."
msgstr ""
#. nAZ9s
@@ -12517,13 +12517,13 @@ msgctxt ""
msgid "'Adds some properties to the dictionary"
msgstr ""
-#. JBBVt
+#. 84fn2
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id791601391980978\n"
"help.text"
-msgid "Adds the content of a <link href=\"https://en.wikipedia.org/wiki/JSON\" name=\"JSON text\">JSON (JavaScript Object Notation)</link> string into the current dictionary. Returns <literal>True</literal> if successful."
+msgid "Adds the content of a <link href=\"https://en.wikipedia.org/wiki/JSON\">JSON (JavaScript Object Notation)</link> string into the current dictionary. Returns <literal>True</literal> if successful."
msgstr ""
#. NtQCD
@@ -12733,13 +12733,13 @@ msgctxt ""
msgid "SFDocuments.Document service"
msgstr ""
-#. KmD7j
+#. ypVGE
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"hd_id731582733781114\n"
"help.text"
-msgid "<variable id=\"DocumentService\"><link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Exception service\"><literal>SFDocuments</literal>.<literal>Document</literal> service</link></variable>"
+msgid "<variable id=\"DocumentService\"><link href=\"text/sbasic/shared/03/sf_document.xhp\"><literal>SFDocuments</literal>.<literal>Document</literal> service</link></variable>"
msgstr ""
#. VTWbF
@@ -12958,13 +12958,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. QEZC4
+#. ENrbA
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id581582885655885\n"
"help.text"
-msgid "Returns a <literal>ScriptForge.Dictionary</literal> object instance. After update, can be passed again to the property for updating the document.<br/>Individual items of the dictionary may be either strings, numbers, (Basic) dates or <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1util_1_1Duration.html\" name=\"Duration API\"><literal>com.sun.star.util.Duration</literal></link> items."
+msgid "Returns a <literal>ScriptForge.Dictionary</literal> object instance. After update, can be passed again to the property for updating the document.<br/>Individual items of the dictionary may be either strings, numbers, (Basic) dates or <link href=\"https://api.libreoffice.org/docs/idl/ref/structcom_1_1sun_1_1star_1_1util_1_1Duration.html\"><literal>com.sun.star.util.Duration</literal></link> items."
msgstr ""
#. DktDb
@@ -13165,13 +13165,13 @@ msgctxt ""
msgid "UNO Object"
msgstr ""
-#. 9TNH3
+#. BprB8
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id881582885195976\n"
"help.text"
-msgid "The UNO object <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1lang_1_1XComponent.html\" name=\"XComponent API\"><literal>com.sun.star.lang.XComponent</literal></link> or <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"ODatabaseDocument API\"><literal>com.sun.star.comp.dba.ODatabaseDocument</literal></link> representing the document"
+msgid "The UNO object <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1lang_1_1XComponent.html\"><literal>com.sun.star.lang.XComponent</literal></link> or <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\"><literal>com.sun.star.comp.dba.ODatabaseDocument</literal></link> representing the document"
msgstr ""
#. coFyk
@@ -13282,13 +13282,13 @@ msgctxt ""
msgid "Creates a new menu entry in the menubar of a given document window."
msgstr ""
-#. A7owo
+#. Cfyw4
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id981611149616155\n"
"help.text"
-msgid "This method returns an instance of the <link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu_link1\"><input>SFWidgets.Menu</input></link> service."
+msgid "This method returns an instance of the <link href=\"text/sbasic/shared/03/sf_menu.xhp\"><input>SFWidgets.Menu</input></link> service."
msgstr ""
#. GKeq5
@@ -13363,13 +13363,13 @@ msgctxt ""
msgid "menu = doc.CreateMenu(\"My Menu\")"
msgstr ""
-#. Jx4RF
+#. 5D4rC
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id271643139068194\n"
"help.text"
-msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu_link2\"><input>SFWidgets.Menu</input></link> help page to learn more about how to create/remove menus in %PRODUCTNAME document windows."
+msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_menu.xhp\"><input>SFWidgets.Menu</input></link> help page to learn more about how to create/remove menus in %PRODUCTNAME document windows."
msgstr ""
#. CGKZA
@@ -13381,13 +13381,13 @@ msgctxt ""
msgid "Exports the document directly as a PDF file to the specified location. Returns <literal>True</literal> if the PDF file was successfully created."
msgstr ""
-#. PBk4E
+#. FZYmR
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id811638276067119\n"
"help.text"
-msgid "The export options can be set either manually using the <menuitem>File - Export As - Export as PDF</menuitem> dialog or by calling the methods <literal>GetPDFExportOptions</literal> and <literal>SetPDFExportOptions</literal> from the <link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"SFSession\">Session</link> service."
+msgid "The export options can be set either manually using the <menuitem>File - Export As - Export as PDF</menuitem> dialog or by calling the methods <literal>GetPDFExportOptions</literal> and <literal>SetPDFExportOptions</literal> from the <link href=\"text/sbasic/shared/03/sf_session.xhp\">Session</link> service."
msgstr ""
#. SFwEd
@@ -13579,13 +13579,13 @@ msgctxt ""
msgid "Commands can be run with or without arguments. Arguments are not validated before running the command. If the command or its arguments are invalid, then nothing will happen."
msgstr ""
-#. w62Bk
+#. xgByz
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id31644182402479\n"
"help.text"
-msgid "For a complete list of UNO commands that can be run in %PRODUCTNAME, refer to the Wiki page <link href=\"https://wiki.documentfoundation.org/Development/DispatchCommands\" name=\"Commands_Wiki\">Development/DispatchCommands</link>."
+msgid "For a complete list of UNO commands that can be run in %PRODUCTNAME, refer to the Wiki page <link href=\"https://wiki.documentfoundation.org/Development/DispatchCommands\">Development/DispatchCommands</link>."
msgstr ""
#. HBVsV
@@ -13885,13 +13885,13 @@ msgctxt ""
msgid "ScriptForge.Exception service (SF_Exception)"
msgstr ""
-#. ikEsF
+#. PPqb2
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"hd_id521580038927003\n"
"help.text"
-msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"Exception service\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
+msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
msgstr ""
#. 4X7Xk
@@ -13912,13 +13912,13 @@ msgctxt ""
msgid "In <emph>Basic scripts</emph>, when a run-time error occurs, the methods and properties of the <literal>Exception</literal> service help identify the error context and allow to handle it."
msgstr ""
-#. ENY3v
+#. zF4vz
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id401621450898070\n"
"help.text"
-msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"VBA Err object\">VBA <literal>Err</literal> object</link>."
+msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\">VBA <literal>Err</literal> object</link>."
msgstr ""
#. vpB42
@@ -13948,13 +13948,13 @@ msgctxt ""
msgid "Errors and warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using the <literal>Console</literal> method."
msgstr ""
-#. CpBSQ
+#. ioDzp
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id411587141146677\n"
"help.text"
-msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing."
+msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\">Calc user defined functions (UDF)</link> or during events processing."
msgstr ""
#. NrY9C
@@ -14218,13 +14218,13 @@ msgctxt ""
msgid "'If division by zero, ignore the error"
msgstr ""
-#. afnTr
+#. DHZ5A
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id201610654368082\n"
"help.text"
-msgid "For a complete list of Basic run-time error codes, refer to <link href=\"text/sbasic/shared/01030300.xhp\" name=\"Run-Time Error Codes\">Debugging a Basic Program</link>."
+msgid "For a complete list of Basic run-time error codes, refer to <link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>."
msgstr ""
#. efEEX
@@ -14299,13 +14299,13 @@ msgctxt ""
msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns <literal>True</literal> if successful."
msgstr ""
-#. HEXvU
+#. cAusu
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id851587218077862\n"
"help.text"
-msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\">URL notation</link> and the native operating system's format are both admitted."
msgstr ""
#. F3tVM
@@ -14371,13 +14371,13 @@ msgctxt ""
msgid "The same string is added to the ScriptForge debug console."
msgstr ""
-#. yreJF
+#. kzBDb
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id551655563148866\n"
"help.text"
-msgid "If <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Python shell\">Python shell (APSO)</link> is active, <literal>PythonPrint</literal> content is written to APSO console in place of the platform console."
+msgid "If <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\">Python shell (APSO)</link> is active, <literal>PythonPrint</literal> content is written to APSO console in place of the platform console."
msgstr ""
#. ixNfF
@@ -14587,13 +14587,13 @@ msgctxt ""
msgid "ScriptForge.FileSystem service"
msgstr ""
-#. Nkwib
+#. P8P86
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"bm_id781582391760253\n"
"help.text"
-msgid "<variable id=\"FileSystemService\"><link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem service\"><literal>ScriptForge</literal>.<literal>FileSystem</literal> service</link></variable>"
+msgid "<variable id=\"FileSystemService\"><link href=\"text/sbasic/shared/03/sf_filesystem.xhp\"><literal>ScriptForge</literal>.<literal>FileSystem</literal> service</link></variable>"
msgstr ""
#. wXVQJ
@@ -14641,13 +14641,13 @@ msgctxt ""
msgid "Access the list of files in a folder, etc."
msgstr ""
-#. J2NqD
+#. 6TSXB
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id121612917368946\n"
"help.text"
-msgid "The methods in the FileSystem service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1ucb_1_1XSimpleFileAccess.html\" name=\"XSimpleFileAccess API\"><literal>XSimpleFileAccess</literal> UNO interface.</link>"
+msgid "The methods in the FileSystem service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1ucb_1_1XSimpleFileAccess.html\"><literal>XSimpleFileAccess</literal> UNO interface.</link>"
msgstr ""
#. wEqaV
@@ -14776,13 +14776,13 @@ msgctxt ""
msgid "The notation used to express file and folder names, both for arguments and returned values, is defined by the <literal>FileNaming</literal> property of the <literal>FileSystem</literal> service."
msgstr ""
-#. KV9FF
+#. jBsjM
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id951612918220255\n"
"help.text"
-msgid "In short, the possible representation types are \"URL\" (URL file notation), \"SYS\" (operating system notation) and \"ANY\" (default). See more information <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#properties\" name=\"Properties Table\">below</link>."
+msgid "In short, the possible representation types are \"URL\" (URL file notation), \"SYS\" (operating system notation) and \"ANY\" (default). See more information <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#properties\">below</link>."
msgstr ""
#. L84BJ
@@ -15361,13 +15361,13 @@ msgctxt ""
msgid "<emph>encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
-#. Pas6f
+#. z3d9F
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id141613001281573\n"
"help.text"
-msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Be aware that %PRODUCTNAME does not implement all existing character sets."
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\">IANA's Character Set</link> page. Be aware that %PRODUCTNAME does not implement all existing character sets."
msgstr ""
#. DVGxr
@@ -15496,13 +15496,13 @@ msgctxt ""
msgid "The current value of the property <literal>SF_FileSystem.FileNaming</literal> is used to determine the notation of the returned string."
msgstr ""
-#. jWSSt
+#. 3R4jx
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id891644442917193\n"
"help.text"
-msgid "Use the property <link href=\"text/sbasic/shared/03/sf_platform.xhp#hd_id711600788076834\" name=\"Extensions_link\"><literal>Extensions</literal></link> from the <literal>Platform</literal> service to get string array with the IDs of all installed extensions."
+msgid "Use the property <link href=\"text/sbasic/shared/03/sf_platform.xhp#hd_id711600788076834\"><literal>Extensions</literal></link> from the <literal>Platform</literal> service to get string array with the IDs of all installed extensions."
msgstr ""
#. w9vDF
@@ -16297,13 +16297,13 @@ msgctxt ""
msgid "SFDocuments.Form service"
msgstr ""
-#. kanuY
+#. cFDGc
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"bm_id781582391760253\n"
"help.text"
-msgid "<variable id=\"FormService\"><link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"SFDocuments.Form\"><literal>SFDocuments</literal>.<literal>Form</literal> service</link></variable>"
+msgid "<variable id=\"FormService\"><link href=\"text/sbasic/shared/03/sf_form.xhp\"><literal>SFDocuments</literal>.<literal>Form</literal> service</link></variable>"
msgstr ""
#. LDpRB
@@ -16360,22 +16360,22 @@ msgctxt ""
msgid "The <literal>SFDocuments</literal>.<literal>Form</literal> service is available from %PRODUCTNAME 7.2 onwards."
msgstr ""
-#. Ga5NU
+#. BqhwE
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"par_id451616765867881\n"
"help.text"
-msgid "Forms are usually used in %PRODUCTNAME documents to create user interfaces connected to relational databases. Hence, the <literal>Form</literal> service provides quick access to the linked database through the <link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"SFDatabases.Database\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link>."
+msgid "Forms are usually used in %PRODUCTNAME documents to create user interfaces connected to relational databases. Hence, the <literal>Form</literal> service provides quick access to the linked database through the <link href=\"text/sbasic/shared/03/sf_database.xhp\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link>."
msgstr ""
-#. rGB5M
+#. bkmyS
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"par_id891598188164936\n"
"help.text"
-msgid "The <literal>SFDocuments</literal>.<literal>Form</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp\" name=\"SFDocuments.FormControl\"><literal>SFDocuments</literal>.<literal>FormControl</literal> service.</link>"
+msgid "The <literal>SFDocuments</literal>.<literal>Form</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp\"><literal>SFDocuments</literal>.<literal>FormControl</literal> service.</link>"
msgstr ""
#. 3HUmh
@@ -16396,13 +16396,13 @@ msgctxt ""
msgid "Forms are usually created in Base documents, but they can be added to Writer and Calc documents as well."
msgstr ""
-#. nKUdb
+#. z79tf
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"par_id671618173380680\n"
"help.text"
-msgid "In Base, each form you create using the <menuitem>Insert - Form</menuitem> functionality or through the <link href=\"text/shared/autopi/01090000.xhp\" name=\"FormWizard\">Form Wizard</link> is actually a <literal>FormDocument</literal> that can be handled with the <literal>Form</literal> service. Base documents can contain an unlimited number of form documents."
+msgid "In Base, each form you create using the <menuitem>Insert - Form</menuitem> functionality or through the <link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link> is actually a <literal>FormDocument</literal> that can be handled with the <literal>Form</literal> service. Base documents can contain an unlimited number of form documents."
msgstr ""
#. kegBD
@@ -16432,13 +16432,13 @@ msgctxt ""
msgid "|-- EmployeeData (Main Form)"
msgstr ""
-#. k8nxK
+#. aD5yW
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"par_id221618173444457\n"
"help.text"
-msgid "A <literal>FormDocument</literal> can be seen as a set of forms that provide access to datasets such as database tables and queries from within %PRODUCTNAME documents. The names of forms and subforms inside a FormDocument can be accessed using the <link href=\"text/shared/02/01170600.xhp\" name=\"FormNavigator\">Form Navigator</link>."
+msgid "A <literal>FormDocument</literal> can be seen as a set of forms that provide access to datasets such as database tables and queries from within %PRODUCTNAME documents. The names of forms and subforms inside a FormDocument can be accessed using the <link href=\"text/shared/02/01170600.xhp\">Form Navigator</link>."
msgstr ""
#. AMFVt
@@ -16468,13 +16468,13 @@ msgctxt ""
msgid "In Calc and Writer documents, each form can be linked to datasets located in different databases. On the other hand, in Base documents the database contained in the document is common to all forms."
msgstr ""
-#. wDfhy
+#. GhipT
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"par_id191616837111507\n"
"help.text"
-msgid "To invoke the <literal>SFDocuments</literal>.<literal>Form</literal> service refer to the methods <literal>Forms()</literal>, <literal>FormDocuments()</literal> and <literal>OpenFormDocument()</literal> of the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"SFDocuments\"><literal>SFDocuments</literal>.<literal>Document</literal></link> service"
+msgid "To invoke the <literal>SFDocuments</literal>.<literal>Form</literal> service refer to the methods <literal>Forms()</literal>, <literal>FormDocuments()</literal> and <literal>OpenFormDocument()</literal> of the <link href=\"text/sbasic/shared/03/sf_document.xhp\"><literal>SFDocuments</literal>.<literal>Document</literal></link> service"
msgstr ""
#. gs4KC
@@ -16594,13 +16594,13 @@ msgctxt ""
msgid "' Or, alternatively, to access the form by its index ..."
msgstr ""
-#. 2v2aG
+#. BFQEU
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"par_id991618249636036\n"
"help.text"
-msgid "To perform any action on a form using the <literal>Form</literal> service, the <literal>FormDocument</literal> must have been opened either manually by the user or programmatically in a user script. The latter can be done by calling the <literal>OpenFormDocument</literal> method of the <link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"ScriptForge Base Service\"><literal>Base</literal> service</link>."
+msgid "To perform any action on a form using the <literal>Form</literal> service, the <literal>FormDocument</literal> must have been opened either manually by the user or programmatically in a user script. The latter can be done by calling the <literal>OpenFormDocument</literal> method of the <link href=\"text/sbasic/shared/03/sf_base.xhp\"><literal>Base</literal> service</link>."
msgstr ""
#. DDerZ
@@ -16972,13 +16972,13 @@ msgctxt ""
msgid "UNO<br/>object"
msgstr ""
-#. VYFDs
+#. 6xrep
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"par_id191598177924897\n"
"help.text"
-msgid "The UNO object representing interactions with the form. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1form_1_1XForm.html\" name=\"XForm interface\">XForm</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1form_1_1component_1_1DataForm.html\" name=\"DataForm service\">DataForm</link> in the API documentation for detailed information."
+msgid "The UNO object representing interactions with the form. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1form_1_1XForm.html\">XForm</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1form_1_1component_1_1DataForm.html\">DataForm</link> in the API documentation for detailed information."
msgstr ""
#. cwE3k
@@ -17296,13 +17296,13 @@ msgctxt ""
msgid "Before unloading"
msgstr ""
-#. EoCKE
+#. GWajw
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"par_id961618181634322\n"
"help.text"
-msgid "To learn more about URI strings, refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI specification\">Scripting Framework URI Specification</link>."
+msgid "To learn more about URI strings, refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\">Scripting Framework URI Specification</link>."
msgstr ""
#. bkBH8
@@ -17449,13 +17449,13 @@ msgctxt ""
msgid "<emph>controlname</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
msgstr ""
-#. unh4B
+#. PTqJ2
#: sf_form.xhp
msgctxt ""
"sf_form.xhp\n"
"par_id291616861407907\n"
"help.text"
-msgid "Return a <link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"DBService\"><literal>SFDatabases</literal>.<literal>Database</literal></link> instance giving access to the execution of SQL commands on the database the current form is connected to and/or that is stored in the current Base document."
+msgid "Return a <link href=\"text/sbasic/shared/03/sf_database.xhp\"><literal>SFDatabases</literal>.<literal>Database</literal></link> instance giving access to the execution of SQL commands on the database the current form is connected to and/or that is stored in the current Base document."
msgstr ""
#. fZRst
@@ -17602,13 +17602,13 @@ msgctxt ""
msgid "SFDocuments.FormControl service"
msgstr ""
-#. vND8Z
+#. U4CgG
#: sf_formcontrol.xhp
msgctxt ""
"sf_formcontrol.xhp\n"
"bm_id781582391760253\n"
"help.text"
-msgid "<variable id=\"FormControlService\"><link href=\"text/sbasic/shared/03/sf_formcontrol.xhp\" name=\"SFDocuments.FormControl service\"><literal>SFDocuments</literal>.<literal>FormControl</literal> service</link></variable>"
+msgid "<variable id=\"FormControlService\"><link href=\"text/sbasic/shared/03/sf_formcontrol.xhp\"><literal>SFDocuments</literal>.<literal>FormControl</literal> service</link></variable>"
msgstr ""
#. XFkrG
@@ -17674,13 +17674,13 @@ msgctxt ""
msgid "The main purpose of the <literal>FormControl</literal> service is setting and getting the properties and values displayed by the controls in a form."
msgstr ""
-#. K2Bgc
+#. egjZu
#: sf_formcontrol.xhp
msgctxt ""
"sf_formcontrol.xhp\n"
"par_id81618774023346\n"
"help.text"
-msgid "All controls have a <literal>Value</literal> property. However, its contents will vary according to the control type. For more information, read <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp#hd_id81598540704978\" name=\"Value property\">The <literal>Value</literal> Property</link> below."
+msgid "All controls have a <literal>Value</literal> property. However, its contents will vary according to the control type. For more information, read <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp#hd_id81598540704978\">The <literal>Value</literal> Property</link> below."
msgstr ""
#. kF29h
@@ -17692,13 +17692,13 @@ msgctxt ""
msgid "It is also possible to format the controls via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
msgstr ""
-#. WEST9
+#. SGsH8
#: sf_formcontrol.xhp
msgctxt ""
"sf_formcontrol.xhp\n"
"par_id891598188164936\n"
"help.text"
-msgid "The <literal>SFDocuments.FormControl</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\"><literal>SFDocuments.Form</literal></link> service."
+msgid "The <literal>SFDocuments.FormControl</literal> service is closely related to the <link href=\"text/sbasic/shared/03/sf_form.xhp\"><literal>SFDocuments.Form</literal></link> service."
msgstr ""
#. rUEuw
@@ -17737,13 +17737,13 @@ msgctxt ""
msgid "control.Value = 'Current Time = ' + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
msgstr ""
-#. FaP92
+#. LG9Md
#: sf_formcontrol.xhp
msgctxt ""
"sf_formcontrol.xhp\n"
"par_id781618772761258\n"
"help.text"
-msgid "To learn more about how to open a <literal>FormDocument</literal> and get access to its forms, refer to the <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\">SFDocuments.Form</link> service help page."
+msgid "To learn more about how to open a <literal>FormDocument</literal> and get access to its forms, refer to the <link href=\"text/sbasic/shared/03/sf_form.xhp\">SFDocuments.Form</link> service help page."
msgstr ""
#. qeXCN
@@ -18115,13 +18115,13 @@ msgctxt ""
msgid "Specifies the type of data contained in a combobox or a listbox."
msgstr ""
-#. Fdm4C
+#. GzpAN
#: sf_formcontrol.xhp
msgctxt ""
"sf_formcontrol.xhp\n"
"par_id881616944631341\n"
"help.text"
-msgid "It must be one of the <link href=\"https://api.libreoffice.org/docs/idl/ref/ListSourceType_8idl_source.html\" name=\"ListSourceType\"><literal>com.sun.star.form.ListSourceType.*</literal></link> constants."
+msgid "It must be one of the <link href=\"https://api.libreoffice.org/docs/idl/ref/ListSourceType_8idl_source.html\"><literal>com.sun.star.form.ListSourceType.*</literal></link> constants."
msgstr ""
#. BQ7JE
@@ -18322,13 +18322,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. mHxWu
+#. vD3X4
#: sf_formcontrol.xhp
msgctxt ""
"sf_formcontrol.xhp\n"
"par_id1001598540024225\n"
"help.text"
-msgid "This property depends on the current control type. Refer to <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp#hd_id81598540704978\" name=\"Value property\">The <literal>Value</literal> property</link> for more information."
+msgid "This property depends on the current control type. Refer to <link href=\"text/sbasic/shared/03/sf_formcontrol.xhp#hd_id81598540704978\">The <literal>Value</literal> property</link> for more information."
msgstr ""
#. ybVim
@@ -18385,13 +18385,13 @@ msgctxt ""
msgid "All"
msgstr ""
-#. 25EFH
+#. ceFhn
#: sf_formcontrol.xhp
msgctxt ""
"sf_formcontrol.xhp\n"
"par_id191598177924897\n"
"help.text"
-msgid "The UNO object representing the control model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"awt.XControlModel\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlModel.html\" name=\"awt.UnoControlModel\">UnoControlModel</link> in the API documentation for more information."
+msgid "The UNO object representing the control model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\">XControlModel</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlModel.html\">UnoControlModel</link> in the API documentation for more information."
msgstr ""
#. FzDR6
@@ -18421,13 +18421,13 @@ msgctxt ""
msgid "All"
msgstr ""
-#. XahSM
+#. fPcGS
#: sf_formcontrol.xhp
msgctxt ""
"sf_formcontrol.xhp\n"
"par_id731598178083442\n"
"help.text"
-msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\" name=\"awt.XControl\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControl.html\" name=\"awt.UnoControl\">UnoControl</link> in the API documentation for more information."
+msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControl.html\">UnoControl</link> in the API documentation for more information."
msgstr ""
#. pqsod
@@ -19033,13 +19033,13 @@ msgctxt ""
msgid "After updating"
msgstr ""
-#. CrwBN
+#. PuSPh
#: sf_formcontrol.xhp
msgctxt ""
"sf_formcontrol.xhp\n"
"par_id961618181634181\n"
"help.text"
-msgid "To learn more about URI strings, refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI specification\">Scripting Framework URI Specification</link>."
+msgid "To learn more about URI strings, refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\">Scripting Framework URI Specification</link>."
msgstr ""
#. RpNkd
@@ -19222,13 +19222,13 @@ msgctxt ""
msgid "Creating Python Scripts with ScriptForge"
msgstr ""
-#. 8BEWT
+#. QFG5C
#: sf_intro.xhp
msgctxt ""
"sf_intro.xhp\n"
"hd_id461623364876507\n"
"help.text"
-msgid "<variable id=\"title\"><link href=\"text/sbasic/shared/03/sf_intro.xhp\" name=\"SF_Intro_Page\">Creating Python Scripts with <literal>ScriptForge</literal></link></variable>"
+msgid "<variable id=\"title\"><link href=\"text/sbasic/shared/03/sf_intro.xhp\">Creating Python Scripts with <literal>ScriptForge</literal></link></variable>"
msgstr ""
#. 6JuA3
@@ -19240,13 +19240,13 @@ msgctxt ""
msgid "Differences between Basic and Python"
msgstr ""
-#. 3GzhB
+#. GwT9x
#: sf_intro.xhp
msgctxt ""
"sf_intro.xhp\n"
"par_id41623410443946\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge library</link> is available both for Basic and Python. Most services, methods and properties work identically in both programming languages. However, due to differences in how each language works, <literal>ScriptForge</literal> users must be aware of some characteristics of the library when using Python:"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\">ScriptForge library</link> is available both for Basic and Python. Most services, methods and properties work identically in both programming languages. However, due to differences in how each language works, <literal>ScriptForge</literal> users must be aware of some characteristics of the library when using Python:"
msgstr ""
#. HsKzK
@@ -19312,13 +19312,13 @@ msgctxt ""
msgid "<emph>Debugging:</emph> Whenever an error occurs in Python scripts that use <literal>ScriptForge</literal>, the error message provided by the Python execution stack displays the line of code that triggered the error. In Basic error messages do not display this information."
msgstr ""
-#. cPtYB
+#. 9zGtM
#: sf_intro.xhp
msgctxt ""
"sf_intro.xhp\n"
"par_id31623411828158\n"
"help.text"
-msgid "Visit <link href=\"text/sbasic/python/main0000.xhp#\" name=\"pyscripts_link\">%PRODUCTNAME Python Scripts Help</link> for more information on Python scripting using %PRODUCTNAME."
+msgid "Visit <link href=\"text/sbasic/python/main0000.xhp#\">%PRODUCTNAME Python Scripts Help</link> for more information on Python scripting using %PRODUCTNAME."
msgstr ""
#. CZiTF
@@ -19357,13 +19357,13 @@ msgctxt ""
msgid "<emph>Run Scripts separately from the %PRODUCTNAME process:</emph> Python scripts are executed from an external process that connects to an ongoing %PRODUCTNAME process using a socket."
msgstr ""
-#. uyCPN
+#. DzGf6
#: sf_intro.xhp
msgctxt ""
"sf_intro.xhp\n"
"par_id631623365667011\n"
"help.text"
-msgid "If you plan to run scripts from inside the %PRODUCTNAME process, it is recommended to install the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO\">APSO (Alternative Script Organizer for Python) extension</link>. However, to develop Python scripts from outside %PRODUCTNAME, you can choose your preferred Python IDE."
+msgid "If you plan to run scripts from inside the %PRODUCTNAME process, it is recommended to install the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\">APSO (Alternative Script Organizer for Python) extension</link>. However, to develop Python scripts from outside %PRODUCTNAME, you can choose your preferred Python IDE."
msgstr ""
#. R4Rfk
@@ -19465,13 +19465,13 @@ msgctxt ""
msgid "You can create your own Python files and edit them with your preferred text editor. Later you can call them from within any %PRODUCTNAME component."
msgstr ""
-#. arDpS
+#. AkXUk
#: sf_intro.xhp
msgctxt ""
"sf_intro.xhp\n"
"par_id51623367560321\n"
"help.text"
-msgid "The first step is to locate where your user scripts are stored. For that, refer to <link href=\"text/sbasic/python/python_locations.xhp\" name=\"Python_Scripts_Path\">Python Scripts Organization and Location</link> help page."
+msgid "The first step is to locate where your user scripts are stored. For that, refer to <link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link> help page."
msgstr ""
#. NdM4Y
@@ -19699,13 +19699,13 @@ msgctxt ""
msgid "Running an External Python Shell"
msgstr ""
-#. eBmVz
+#. NuNqn
#: sf_intro.xhp
msgctxt ""
"sf_intro.xhp\n"
"par_id621623371253647\n"
"help.text"
-msgid "Start the Python shell from within the <emph>program</emph> folder inside your %PRODUCTNAME installation path. Follow the steps <link href=\"text/sbasic/shared/03/sf_intro.xhp#InstallPath\" name=\"Install_Path\">above</link> to learn how to find your installation path."
+msgid "Start the Python shell from within the <emph>program</emph> folder inside your %PRODUCTNAME installation path. Follow the steps <link href=\"text/sbasic/shared/03/sf_intro.xhp#InstallPath\">above</link> to learn how to find your installation path."
msgstr ""
#. 69F7S
@@ -19762,13 +19762,13 @@ msgctxt ""
msgid "ScriptForge.L10N service"
msgstr ""
-#. q7BSh
+#. 5kFM4
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"hd_id521585843652750\n"
"help.text"
-msgid "<variable id=\"L10NService\"><link href=\"text/sbasic/shared/03/sf_l10n.xhp\" name=\"L10N service\"><literal>ScriptForge</literal>.<literal>L10N</literal> service</link></variable>"
+msgid "<variable id=\"L10NService\"><link href=\"text/sbasic/shared/03/sf_l10n.xhp\"><literal>ScriptForge</literal>.<literal>L10N</literal> service</link></variable>"
msgstr ""
#. FRAiJ
@@ -19825,13 +19825,13 @@ msgctxt ""
msgid "The main advantage of the PO format is dissociation of the programmer and the translator. PO files are independent text files, so the programmer can send POT template files to translators, who will then translate their contents and return the translated PO files for each supported language."
msgstr ""
-#. iBQxR
+#. vdQwG
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id811614352321187\n"
"help.text"
-msgid "The <literal>L10N</literal> service is based on the GNU implementation of PO (portable object) files. To learn more about this file format, visit <link href=\"https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html\" name=\"GetText\">GNU gettext Utilities: PO Files</link>."
+msgid "The <literal>L10N</literal> service is based on the GNU implementation of PO (portable object) files. To learn more about this file format, visit <link href=\"https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html\">GNU gettext Utilities: PO Files</link>."
msgstr ""
#. DGiG9
@@ -19960,13 +19960,13 @@ msgctxt ""
msgid "<emph>encoding2</emph>: The character set of the fallback PO file corresponding to the <literal>locale2</literal> argument. The default encoding is \"UTF-8\"."
msgstr ""
-#. M2NBE
+#. 6cmQr
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id141613001281573\n"
"help.text"
-msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Be aware that %PRODUCTNAME does not implement all existing character sets."
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\">IANA's Character Set</link> page. Be aware that %PRODUCTNAME does not implement all existing character sets."
msgstr ""
#. 3ApdD
@@ -19978,13 +19978,13 @@ msgctxt ""
msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods, which is useful for creating POT files."
msgstr ""
-#. rFfgF
+#. FaDSa
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id611614358672609\n"
"help.text"
-msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the locale defined for the %PRODUCTNAME user interface, which is the same locale defined in the <literal>OfficeLocale</literal> property of the <link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"OfficeLocale_link\">Platform</link> service."
+msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the locale defined for the %PRODUCTNAME user interface, which is the same locale defined in the <literal>OfficeLocale</literal> property of the <link href=\"text/sbasic/shared/03/sf_platform.xhp\">Platform</link> service."
msgstr ""
#. FewYJ
@@ -20104,13 +20104,13 @@ msgctxt ""
msgid "Yes"
msgstr ""
-#. uED9S
+#. EMof8
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id751585843652642\n"
"help.text"
-msgid "The folder containing the PO files (see the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#bm_id901612991354326\" name=\"FileNaming property\"><literal>FileSystem.FileNaming</literal></link> property to learn about the notation used)."
+msgid "The folder containing the PO files (see the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#bm_id901612991354326\"><literal>FileSystem.FileNaming</literal></link> property to learn about the notation used)."
msgstr ""
#. Zsp7p
@@ -20284,13 +20284,13 @@ msgctxt ""
msgid "The dialog from which strings will be extracted must not be open when the method is called."
msgstr ""
-#. 75EGY
+#. Aj4gB
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id911637864050221\n"
"help.text"
-msgid "When a <literal>L10N</literal> service instance is created from an existing PO file, use the <link href=\"text/sbasic/shared/03/sf_dialog.xhp#GetTextsFromL10N\" name=\"GetTextsFromL10N\">GetTextsFromL10N</link> method from the <literal>Dialog</literal> service to automatically load all translated strings into the dialog."
+msgid "When a <literal>L10N</literal> service instance is created from an existing PO file, use the <link href=\"text/sbasic/shared/03/sf_dialog.xhp#GetTextsFromL10N\">GetTextsFromL10N</link> method from the <literal>Dialog</literal> service to automatically load all translated strings into the dialog."
msgstr ""
#. ejhbN
@@ -20491,13 +20491,13 @@ msgctxt ""
msgid "SFWidgets.Menu service"
msgstr ""
-#. F5KPb
+#. mZUG7
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"MenuService\"><link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu service\"><literal>SFWidgets</literal>.<literal>Menu</literal> service</link></variable>"
+msgid "<variable id=\"MenuService\"><link href=\"text/sbasic/shared/03/sf_menu.xhp\"><literal>SFWidgets</literal>.<literal>Menu</literal> service</link></variable>"
msgstr ""
#. FqGPg
@@ -20563,13 +20563,13 @@ msgctxt ""
msgid "Before using the <literal>Menu</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
msgstr ""
-#. DzDmt
+#. EYjA8
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"par_id321614902851541\n"
"help.text"
-msgid "The <literal>Menu</literal> service is instantiated by calling the <link href=\"text/sbasic/shared/03/sf_document.xhp#CreateMenu\" name=\"CreateMenu_link\"><literal>CreateMenu</literal></link> method from the <literal>Document</literal> service. The code snippet below creates a menu named <emph>My Menu</emph> in the current document window with two entries <emph>Item A</emph> and <emph>Item B</emph>."
+msgid "The <literal>Menu</literal> service is instantiated by calling the <link href=\"text/sbasic/shared/03/sf_document.xhp#CreateMenu\"><literal>CreateMenu</literal></link> method from the <literal>Document</literal> service. The code snippet below creates a menu named <emph>My Menu</emph> in the current document window with two entries <emph>Item A</emph> and <emph>Item B</emph>."
msgstr ""
#. pf7FV
@@ -20977,13 +20977,13 @@ msgctxt ""
msgid "The arguments <literal>command</literal> and <literal>script</literal> are mutually exclusive, hence only one of them can be set for each menu item."
msgstr ""
-#. 57vEy
+#. iodMg
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"par_id31643148484084\n"
"help.text"
-msgid "Read <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\" name=\"URI_Notation\">Scripting Framework URI Specification</link> to learn more about the URI syntax used in the <literal>script</literal> argument."
+msgid "Read <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\">Scripting Framework URI Specification</link> to learn more about the URI syntax used in the <literal>script</literal> argument."
msgstr ""
#. Aj8cF
@@ -21175,13 +21175,13 @@ msgctxt ""
msgid "ScriptForge Method Signatures"
msgstr ""
-#. ycA6s
+#. GQoqb
#: sf_methods.xhp
msgctxt ""
"sf_methods.xhp\n"
"hd_id31529004750471\n"
"help.text"
-msgid "<variable id=\"SF_Signatures\"><link href=\"text/sbasic/shared/03/sf_methods.xhp\" name=\"ScriptForge Method Signatures\"><literal>ScriptForge</literal> Method Signatures</link></variable>"
+msgid "<variable id=\"SF_Signatures\"><link href=\"text/sbasic/shared/03/sf_methods.xhp\"><literal>ScriptForge</literal> Method Signatures</link></variable>"
msgstr ""
#. gEAos
@@ -21346,13 +21346,13 @@ msgctxt ""
msgid "ScriptForge.Platform service"
msgstr ""
-#. PCkEG
+#. GKXoF
#: sf_platform.xhp
msgctxt ""
"sf_platform.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"PlatformService\"><link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"Platform service\"><literal>ScriptForge</literal>.<literal>Platform</literal> service</link></variable>"
+msgid "<variable id=\"PlatformService\"><link href=\"text/sbasic/shared/03/sf_platform.xhp\"><literal>ScriptForge</literal>.<literal>Platform</literal> service</link></variable>"
msgstr ""
#. 7D6Dx
@@ -21922,13 +21922,13 @@ msgctxt ""
msgid "The following examples in Basic and Python illustrate how to use the <literal>Fonts</literal> property to write the names of all available fonts to the current Calc sheet starting at cell \"A1\":"
msgstr ""
-#. 3yeMr
+#. eEZPy
#: sf_platform.xhp
msgctxt ""
"sf_platform.xhp\n"
"par_id301613065794148\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060104.xhp#bm_id3691824\" name=\"Calc_Info\">Platform information with INFO(\"system\") Calc formula</link>"
+msgid "<link href=\"text/scalc/01/04060104.xhp#bm_id3691824\">Platform information with INFO(\"system\") Calc formula</link>"
msgstr ""
#. h6atN
@@ -21940,13 +21940,13 @@ msgctxt ""
msgid "SFWidgets.PopupMenu service"
msgstr ""
-#. QADne
+#. Vouog
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"PopupMenuService\"><link href=\"text/sbasic/shared/03/sf_popupmenu.xhp\" name=\"PopupMenu service\"><literal>SFWidgets</literal>.<literal>PopupMenu</literal> service</link></variable>"
+msgid "<variable id=\"PopupMenuService\"><link href=\"text/sbasic/shared/03/sf_popupmenu.xhp\"><literal>SFWidgets</literal>.<literal>PopupMenu</literal> service</link></variable>"
msgstr ""
#. DGbZ3
@@ -22516,13 +22516,13 @@ msgctxt ""
msgid "ScriptForge.Region service"
msgstr ""
-#. SYtNX
+#. H7HZZ
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"RegionService\"><link href=\"text/sbasic/shared/03/sf_region.xhp\" name=\"Region service\"><literal>ScriptForge</literal>.<literal>Region</literal> service</link></variable>"
+msgid "<variable id=\"RegionService\"><link href=\"text/sbasic/shared/03/sf_region.xhp\"><literal>ScriptForge</literal>.<literal>Region</literal> service</link></variable>"
msgstr ""
#. w3WgP
@@ -22606,13 +22606,13 @@ msgctxt ""
msgid "On some situations the full locale is not required and only the language or country may be specified."
msgstr ""
-#. 4qFTD
+#. ujAAt
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"par_id261656013132204\n"
"help.text"
-msgid "Most properties and methods accept a locale as argument. If no locale is specified, then the user-interface locale is used, which is defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgid "Most properties and methods accept a locale as argument. If no locale is specified, then the user-interface locale is used, which is defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
msgstr ""
#. 6ToTC
@@ -22624,13 +22624,13 @@ msgctxt ""
msgid "Timezone"
msgstr ""
-#. oTb3X
+#. GGBdC
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"par_id541656013854150\n"
"help.text"
-msgid "A string in the format \"Region/City\" such as \"Europe/Berlin\", or a timezone ID such as \"UTC\" or \"GMT-8:00\". Refer to the wiki page <link href=\"https://wikipedia.org/wiki/List_of_tz_database_time_zones\" name=\"TimeZones_List\">List of tz database timezones</link> for a list of possible timezone names and IDs."
+msgid "A string in the format \"Region/City\" such as \"Europe/Berlin\", or a timezone ID such as \"UTC\" or \"GMT-8:00\". Refer to the wiki page <link href=\"https://wikipedia.org/wiki/List_of_tz_database_time_zones\">List of tz database timezones</link> for a list of possible timezone names and IDs."
msgstr ""
#. exa3B
@@ -23137,13 +23137,13 @@ msgctxt ""
msgid "<emph>timezone</emph>: the timezone for which the offset will be calculated."
msgstr ""
-#. w5gKK
+#. LD3qm
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"par_id401621896675963\n"
"help.text"
-msgid "<emph>locale</emph>: the locale specifying the country for which the offset will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgid "<emph>locale</emph>: the locale specifying the country for which the offset will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
msgstr ""
#. cBF4y
@@ -23218,13 +23218,13 @@ msgctxt ""
msgid "<emph>timezone</emph>: the timezone for which the local time will be calculated."
msgstr ""
-#. YWDWQ
+#. tzvsE
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"par_id401621896675193\n"
"help.text"
-msgid "<emph>locale</emph>: the locale specifying the country for which the local time will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgid "<emph>locale</emph>: the locale specifying the country for which the local time will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
msgstr ""
#. 8UTFQ
@@ -23263,13 +23263,13 @@ msgctxt ""
msgid "Converts numbers and monetary values into written text for any of the currently supported languages."
msgstr ""
-#. qu8dt
+#. CTtMf
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"par_id971656026551328\n"
"help.text"
-msgid "For a list of all supported languages visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1linguistic2_1_1XNumberText.html\" name=\"XNumberText\">XNumberText Interface</link> API reference."
+msgid "For a list of all supported languages visit the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1linguistic2_1_1XNumberText.html\">XNumberText Interface</link> API reference."
msgstr ""
#. xTUD6
@@ -23281,13 +23281,13 @@ msgctxt ""
msgid "<emph>number</emph>: the number to be converted into written text. It can be provided either as a numeric type or as a string. When a string is provided, it can be preceded by a prefix informing how the numbers should be written. It is also possible to include ISO 4217 currency codes. See examples below for more information."
msgstr ""
-#. eppdr
+#. cNDim
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"par_id401621896675412\n"
"help.text"
-msgid "<emph>locale</emph>: the locale defining the language into which the number will be converted to, given either in \"la-CO\" or \"la\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgid "<emph>locale</emph>: the locale defining the language into which the number will be converted to, given either in \"la-CO\" or \"la\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
msgstr ""
#. QeBpA
@@ -23452,13 +23452,13 @@ msgctxt ""
msgid "<emph>timezone</emph>: the timezone for which the offset to the GMT will be calculated."
msgstr ""
-#. egZXu
+#. XuX3E
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"par_id401621896675691\n"
"help.text"
-msgid "<emph>locale</emph>: the locale specifying the country for which the offset will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgid "<emph>locale</emph>: the locale specifying the country for which the offset will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
msgstr ""
#. JiFjE
@@ -23488,13 +23488,13 @@ msgctxt ""
msgid "<emph>timezone</emph>: the timezone for which the <literal>localdatetime</literal> argument was given."
msgstr ""
-#. aEuir
+#. zSttY
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"par_id401621896675550\n"
"help.text"
-msgid "<emph>locale</emph>: the locale specifying the country for which the <literal>localdatetime</literal> argument was given, expressed either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgid "<emph>locale</emph>: the locale specifying the country for which the <literal>localdatetime</literal> argument was given, expressed either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
msgstr ""
#. y3NSm
@@ -23542,13 +23542,13 @@ msgctxt ""
msgid "<emph>timezone</emph>: the timezone for which the current UTC time will be calculated."
msgstr ""
-#. FDJ5e
+#. BHESq
#: sf_region.xhp
msgctxt ""
"sf_region.xhp\n"
"par_id401621896674831\n"
"help.text"
-msgid "<emph>locale</emph>: the locale specifying the country for which the current UTC time will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\" name=\"OfficeLocale_link\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
+msgid "<emph>locale</emph>: the locale specifying the country for which the current UTC time will be calculated, given either in \"la-CO\" or \"CO\" formats. The default value is the locale defined in the <link href=\"text/sbasic/shared/03/sf_platform.xhp#bm_id111614901524769\"><literal>OfficeLocale</literal></link> property of the <literal>Platform</literal> service."
msgstr ""
#. FWSJp
@@ -23587,13 +23587,13 @@ msgctxt ""
msgid "ScriptForge.Services service"
msgstr ""
-#. bFtkf
+#. Q5KAY
#: sf_services.xhp
msgctxt ""
"sf_services.xhp\n"
"hd_id471582710868716\n"
"help.text"
-msgid "<variable id=\"ScriptForgeServices\"><link href=\"text/sbasic/shared/03/sf_services.xhp\" name=\"Services service\"><literal>ScriptForge</literal>.<literal>Services</literal> service</link></variable>"
+msgid "<variable id=\"ScriptForgeServices\"><link href=\"text/sbasic/shared/03/sf_services.xhp\"><literal>ScriptForge</literal>.<literal>Services</literal> service</link></variable>"
msgstr ""
#. SDbDJ
@@ -23650,13 +23650,13 @@ msgctxt ""
msgid "<emph>service</emph>: The name of the service identified as a string in the format \"library.service\":"
msgstr ""
-#. CEqku
+#. swGGN
#: sf_services.xhp
msgctxt ""
"sf_services.xhp\n"
"par_id11627475954271\n"
"help.text"
-msgid "The <emph>library</emph> is a Basic library that must exist in the <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope</link>. The default value is \"ScriptForge\"."
+msgid "The <emph>library</emph> is a Basic library that must exist in the <link href=\"text/sbasic/shared/03131900.xhp\">GlobalScope</link>. The default value is \"ScriptForge\"."
msgstr ""
#. BBFeA
@@ -23794,13 +23794,13 @@ msgctxt ""
msgid "ScriptForge.Session service"
msgstr ""
-#. DxnDG
+#. yWao7
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"hd_id901582814720985\n"
"help.text"
-msgid "<variable id=\"SessionService\"><link href=\"text/sbasic/shared/03/sf_session.xhp\" name=\"Session service\"><literal>ScriptForge.Session</literal> service</link></variable>"
+msgid "<variable id=\"SessionService\"><link href=\"text/sbasic/shared/03/sf_session.xhp\"><literal>ScriptForge.Session</literal> service</link></variable>"
msgstr ""
#. yTgFK
@@ -24082,13 +24082,13 @@ msgctxt ""
msgid "The examples below show how to call <literal>DummyFunction</literal> from within Basic and Python scripts."
msgstr ""
-#. Yr22N
+#. uCzZs
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"par_id111582816585181\n"
"help.text"
-msgid "Execute a Calc function using its English name and based on the given arguments. <br/>If the arguments are arrays, the function is executed as an <link href=\"text/scalc/01/04060107.xhp\" name=\"array formula\">array formula</link>."
+msgid "Execute a Calc function using its English name and based on the given arguments. <br/>If the arguments are arrays, the function is executed as an <link href=\"text/scalc/01/04060107.xhp\">array formula</link>."
msgstr ""
#. EDU9x
@@ -24136,13 +24136,13 @@ msgctxt ""
msgid "If the script is not found, or if it returns nothing, the returned value is <literal>Empty</literal>."
msgstr ""
-#. jdWTU
+#. wFUB2
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"par_id791582818023246\n"
"help.text"
-msgid "<emph>scope</emph>: One of the applicable constants listed <link href=\"text/sbasic/shared/03/sf_session.xhp#constants\" name=\"Session constants\">above</link>. The default value is <literal>session.SCRIPTISSHARED</literal>."
+msgid "<emph>scope</emph>: One of the applicable constants listed <link href=\"text/sbasic/shared/03/sf_session.xhp#constants\">above</link>. The default value is <literal>session.SCRIPTISSHARED</literal>."
msgstr ""
#. ELfda
@@ -24208,13 +24208,13 @@ msgctxt ""
msgid "Consider the Python function <literal>odd_integers</literal> defined below that creates a list with odd integer values between <literal>v1</literal> and <literal>v2</literal>. Suppose this function is stored in a file named <emph>my_macros.py</emph> in your user scripts folder."
msgstr ""
-#. o6DUm
+#. HWGRK
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"par_id751626817335715\n"
"help.text"
-msgid "Read the help page <link href=\"text/sbasic/python/python_locations.xhp\" name=\"pylocation_link\">Python Scripts Organization and Location</link> to learn more about where Python scripts can be stored."
+msgid "Read the help page <link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link> to learn more about where Python scripts can be stored."
msgstr ""
#. vqBm9
@@ -24253,13 +24253,13 @@ msgctxt ""
msgid "This method returns a <literal>Dictionary</literal> object wherein each key represent export options and the corresponding values are the current PDF export settings."
msgstr ""
-#. 6kXBe
+#. GCDTK
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"par_id751638383457198\n"
"help.text"
-msgid "Read the <link href=\"https://wiki.openoffice.org/wiki/API/Tutorials/PDF_export\" name=\"PDFExport_Wiki\">PDF Export wiki page</link> to learn more about all available options."
+msgid "Read the <link href=\"https://wiki.openoffice.org/wiki/API/Tutorials/PDF_export\">PDF Export wiki page</link> to learn more about all available options."
msgstr ""
#. Lv4iA
@@ -24316,13 +24316,13 @@ msgctxt ""
msgid "<emph>propertyname</emph>: the property as a case-sensitive string"
msgstr ""
-#. QWaTF
+#. 75Rh4
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"par_id97160112964017\n"
"help.text"
-msgid "Open a Uniform Resource Locator (<link href=\"text/shared/00/00000002.xhp#URL\" name=\"URL\">URL</link>) in the default browser."
+msgid "Open a Uniform Resource Locator (<link href=\"text/shared/00/00000002.xhp#URL\">URL</link>) in the default browser."
msgstr ""
#. 4tFWV
@@ -24460,13 +24460,13 @@ msgctxt ""
msgid "This method returns <literal>True</literal> when successful."
msgstr ""
-#. 9BqH3
+#. zosG7
#: sf_session.xhp
msgctxt ""
"sf_session.xhp\n"
"par_id751638383457321\n"
"help.text"
-msgid "Read the <link href=\"https://wiki.openoffice.org/wiki/API/Tutorials/PDF_export\" name=\"PDFExport_Wiki\">PDF Export wiki page</link> to learn more about all available options."
+msgid "Read the <link href=\"https://wiki.openoffice.org/wiki/API/Tutorials/PDF_export\">PDF Export wiki page</link> to learn more about all available options."
msgstr ""
#. JhhXU
@@ -24568,13 +24568,13 @@ msgctxt ""
msgid "ScriptForge.String service (SF_String)"
msgstr ""
-#. ZhvDP
+#. qHoPA
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"hd_id521580038927003\n"
"help.text"
-msgid "<variable id=\"StringService\"><link href=\"text/sbasic/shared/03/sf_string.xhp\" name=\"String service\"><literal>ScriptForge</literal>.<literal>String</literal> service</link></variable>"
+msgid "<variable id=\"StringService\"><link href=\"text/sbasic/shared/03/sf_string.xhp\"><literal>ScriptForge</literal>.<literal>String</literal> service</link></variable>"
msgstr ""
#. yaisH
@@ -25144,13 +25144,13 @@ msgctxt ""
msgid "'Counts the number of words with only lowercase letters (returns 7)"
msgstr ""
-#. aJNDg
+#. zS3nb
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id131612223767126\n"
"help.text"
-msgid "To learn more about regular expressions, refer to the Python's documentation on <link href=\"https://docs.python.org/3/library/re.html\" name=\"Regular expressions\">Regular Expression Operations</link>."
+msgid "To learn more about regular expressions, refer to the Python's documentation on <link href=\"https://docs.python.org/3/library/re.html\">Regular Expression Operations</link>."
msgstr ""
#. CCzMc
@@ -25495,13 +25495,13 @@ msgctxt ""
msgid "If the format is invalid, the method returns <literal>False</literal>."
msgstr ""
-#. qFmWW
+#. 6B2Em
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id211612370427721\n"
"help.text"
-msgid "This method checks the format of the input string without performing any calendar-specific checks. Hence it does not test the input string for leap years or months with 30 or 31 days. For that, refer to the <link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate function\"><literal>IsDate</literal> built-in function</link>."
+msgid "This method checks the format of the input string without performing any calendar-specific checks. Hence it does not test the input string for leap years or months with 30 or 31 days. For that, refer to the <link href=\"text/sbasic/shared/03102300.xhp\"><literal>IsDate</literal> built-in function</link>."
msgstr ""
#. DJQFQ
@@ -25522,13 +25522,13 @@ msgctxt ""
msgid "Returns <literal>True</literal> if all characters in the string are alphabetic."
msgstr ""
-#. Cpeo3
+#. 25Avc
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id251579881615469\n"
"help.text"
-msgid "Alphabetic characters are those characters defined in the <link href=\"https://unicode.org/reports/tr44/\" name=\"Unicode documentation\">Unicode Character Database</link> as <literal>Letter</literal>."
+msgid "Alphabetic characters are those characters defined in the <link href=\"https://unicode.org/reports/tr44/\">Unicode Character Database</link> as <literal>Letter</literal>."
msgstr ""
#. a9rTa
@@ -26458,13 +26458,13 @@ msgctxt ""
msgid "Returns the input string in reversed order."
msgstr ""
-#. EEyG6
+#. RxpPa
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id141612387177873\n"
"help.text"
-msgid "This method is equivalent to the built-in <link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse function\"><literal>StrReverse</literal> Basic function</link>."
+msgid "This method is equivalent to the built-in <link href=\"text/sbasic/shared/03120412.xhp\"><literal>StrReverse</literal> Basic function</link>."
msgstr ""
#. ZEarP
@@ -26755,13 +26755,13 @@ msgctxt ""
msgid "In practice, this method returns a zero-based array of output lines, without newlines at the end, except for the pre-existing line-breaks."
msgstr ""
-#. qgd6X
+#. BN3eR
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id601612395193333\n"
"help.text"
-msgid "Tabs are expanded using the same procedure performed by the <link href=\"text/sbasic/shared/03/sf_string.xhp#ExpandTabs\" name=\"ExpandTabs method\">ExpandTabs</link> method."
+msgid "Tabs are expanded using the same procedure performed by the <link href=\"text/sbasic/shared/03/sf_string.xhp#ExpandTabs\">ExpandTabs</link> method."
msgstr ""
#. vLtDg
@@ -26818,13 +26818,13 @@ msgctxt ""
msgid "ScriptForge.TextStream service"
msgstr ""
-#. cEA5U
+#. yCCia
#: sf_textstream.xhp
msgctxt ""
"sf_textstream.xhp\n"
"bm_id351585330787295\n"
"help.text"
-msgid "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\"><literal>ScriptForge</literal>.<literal>TextStream</literal> service</link></variable>"
+msgid "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\"><literal>ScriptForge</literal>.<literal>TextStream</literal> service</link></variable>"
msgstr ""
#. nBJsE
@@ -26908,13 +26908,13 @@ msgctxt ""
msgid "Optionally, the resources used by the <literal>TextStream</literal> instance can be released using the <literal>Dispose</literal> method:"
msgstr ""
-#. nsGCZ
+#. L8vEQ
#: sf_textstream.xhp
msgctxt ""
"sf_textstream.xhp\n"
"par_id121612917368946\n"
"help.text"
-msgid "The methods in the <literal>TextStream</literal> service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputStream</literal></link> UNO interfaces."
+msgid "The methods in the <literal>TextStream</literal> service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\"><literal>XTextInputStream</literal></link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\"><literal>XTextOutputStream</literal></link> UNO interfaces."
msgstr ""
#. JAmgD
@@ -27070,13 +27070,13 @@ msgctxt ""
msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system."
msgstr ""
-#. EuWCP
+#. veDBj
#: sf_textstream.xhp
msgctxt ""
"sf_textstream.xhp\n"
"par_id141613001281573\n"
"help.text"
-msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Be aware that %PRODUCTNAME does not implement all existing character sets."
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\">IANA's Character Set</link> page. Be aware that %PRODUCTNAME does not implement all existing character sets."
msgstr ""
#. hKJkD
@@ -27331,13 +27331,13 @@ msgctxt ""
msgid "ScriptForge.Timer service"
msgstr ""
-#. cxRDS
+#. uvCrq
#: sf_timer.xhp
msgctxt ""
"sf_timer.xhp\n"
"hd_id731582733781114\n"
"help.text"
-msgid "<variable id=\"TimerService\"><link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\"><literal>ScriptForge</literal>.<literal>Timer</literal> service</link></variable>"
+msgid "<variable id=\"TimerService\"><link href=\"text/sbasic/shared/03/sf_timer.xhp\"><literal>ScriptForge</literal>.<literal>Timer</literal> service</link></variable>"
msgstr ""
#. WyVvH
@@ -27853,13 +27853,13 @@ msgctxt ""
msgid "ScriptForge.UI service"
msgstr ""
-#. QWA6E
+#. rJz4Z
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"hd_id371587913266310\n"
"help.text"
-msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
+msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
msgstr ""
#. cAtxQ
@@ -28420,13 +28420,13 @@ msgctxt ""
msgid "Returns an open document object referring to either the active window, a given window or the active document."
msgstr ""
-#. xgMAv
+#. SNDqY
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id851588520551368\n"
"help.text"
-msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used. UNO objects of types <literal>com.sun.star.lang.XComponent</literal> or <literal>com.sun.star.comp.dba.ODatabaseDocument</literal> are also accepted. Thus passing <literal>ThisComponent</literal> or <literal>ThisDatabaseDocument</literal> as argument creates a new <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document service\">SFDocuments.Document</link>, <link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"Base service\">Base</link> or <link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\">Calc</link> service."
+msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\">above</link>. If this argument is absent, the active window is used. UNO objects of types <literal>com.sun.star.lang.XComponent</literal> or <literal>com.sun.star.comp.dba.ODatabaseDocument</literal> are also accepted. Thus passing <literal>ThisComponent</literal> or <literal>ThisDatabaseDocument</literal> as argument creates a new <link href=\"text/sbasic/shared/03/sf_document.xhp\">SFDocuments.Document</link>, <link href=\"text/sbasic/shared/03/sf_base.xhp\">Base</link> or <link href=\"text/sbasic/shared/03/sf_calc.xhp\">Calc</link> service."
msgstr ""
#. AAjDB
@@ -28447,13 +28447,13 @@ msgctxt ""
msgid "Maximizes the active window or the given window."
msgstr ""
-#. hD4TC
+#. 7aoe6
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id951587986441954\n"
"help.text"
-msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\">above</link>. If this argument is absent, the active window is maximized."
msgstr ""
#. vzDdG
@@ -28465,13 +28465,13 @@ msgctxt ""
msgid "Minimizes the active window or the given window."
msgstr ""
-#. Enys5
+#. QXVTt
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id751587986592626\n"
"help.text"
-msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\">above</link>. If this argument is absent, the active window is minimized."
msgstr ""
#. WHDDQ
@@ -28654,13 +28654,13 @@ msgctxt ""
msgid "Commands can be run with or without arguments. Arguments are not validated before running the command. If the command or its arguments are invalid, then nothing will happen."
msgstr ""
-#. rhYJj
+#. MBfCP
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id31644182402479\n"
"help.text"
-msgid "For a complete list of UNO commands that can be run in %PRODUCTNAME, refer to the Wiki page <link href=\"https://wiki.documentfoundation.org/Development/DispatchCommands\" name=\"Commands_Wiki\">Development/DispatchCommands</link>."
+msgid "For a complete list of UNO commands that can be run in %PRODUCTNAME, refer to the Wiki page <link href=\"https://wiki.documentfoundation.org/Development/DispatchCommands\">Development/DispatchCommands</link>."
msgstr ""
#. Fkf3T
@@ -28852,13 +28852,13 @@ msgctxt ""
msgid "SFUnitTests.UnitTest service"
msgstr ""
-#. iVee6
+#. Yua3U
#: sf_unittest.xhp
msgctxt ""
"sf_unittest.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"UnitTestService\"><link href=\"text/sbasic/shared/03/sf_unittest.xhp\" name=\"UnitTest service\"><literal>SFUnitTests</literal>.<literal>UnitTest</literal> service</link></variable>"
+msgid "<variable id=\"UnitTestService\"><link href=\"text/sbasic/shared/03/sf_unittest.xhp\"><literal>SFUnitTests</literal>.<literal>UnitTest</literal> service</link></variable>"
msgstr ""
#. iRNwD
@@ -29266,13 +29266,13 @@ msgctxt ""
msgid "The test suite above consists of two test cases <literal>Test_Sum</literal> and <literal>Test_Multiply</literal>. To run all tests simply run the <literal>Main</literal> method from the \"AllTests\" module."
msgstr ""
-#. CFFEG
+#. mGjTt
#: sf_unittest.xhp
msgctxt ""
"sf_unittest.xhp\n"
"par_id681656423146183\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/03/sf_exception.xhp#Console\" name=\"Console\"><literal>Console</literal></link> from the <literal>Exception</literal> service is used as the default output to print test results. After running the example above, the following output will be displayed in the console:"
+msgid "The <link href=\"text/sbasic/shared/03/sf_exception.xhp#Console\"><literal>Console</literal></link> from the <literal>Exception</literal> service is used as the default output to print test results. After running the example above, the following output will be displayed in the console:"
msgstr ""
#. SX4Hy
@@ -30013,13 +30013,13 @@ msgctxt ""
msgid "Returns <literal>True</literal> when <emph>A</emph> and <emph>B</emph> are <emph>not</emph> considered to be equal."
msgstr ""
-#. f8xcB
+#. AyCxD
#: sf_unittest.xhp
msgctxt ""
"sf_unittest.xhp\n"
"par_id581656446598206\n"
"help.text"
-msgid "This method works both for scalars and arrays. Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertEqual\" name=\"AssertEqual\"><literal>AssertEqual</literal></link> for more information on what equality means in this assertion."
+msgid "This method works both for scalars and arrays. Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertEqual\"><literal>AssertEqual</literal></link> for more information on what equality means in this assertion."
msgstr ""
#. ENDBA
@@ -30031,13 +30031,13 @@ msgctxt ""
msgid "Returns <literal>True</literal> when A (a string) is <emph>not</emph> found in B."
msgstr ""
-#. KNFSF
+#. iGakQ
#: sf_unittest.xhp
msgctxt ""
"sf_unittest.xhp\n"
"par_id271656446302516\n"
"help.text"
-msgid "Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertIn\" name=\"AssertIn\"><literal>AssertIn</literal></link> for more information on the assumptions of this method."
+msgid "Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertIn\"><literal>AssertIn</literal></link> for more information on the assumptions of this method."
msgstr ""
#. BCzDu
@@ -30049,13 +30049,13 @@ msgctxt ""
msgid "Returns <literal>True</literal> when A is <emph>not</emph> an instance of a specified object type."
msgstr ""
-#. 2FDwf
+#. oa8bz
#: sf_unittest.xhp
msgctxt ""
"sf_unittest.xhp\n"
"par_id271656446949396\n"
"help.text"
-msgid "Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertIsInstance\" name=\"AssertIsInstance\"><literal>AssertIsInstance</literal></link> for more information on the assumptions of this method."
+msgid "Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertIsInstance\"><literal>AssertIsInstance</literal></link> for more information on the assumptions of this method."
msgstr ""
#. TRtFA
@@ -30067,13 +30067,13 @@ msgctxt ""
msgid "Returns <literal>True</literal> if string A <emph>does not</emph> match a given pattern containing wildcards."
msgstr ""
-#. aRFUp
+#. 2ubh9
#: sf_unittest.xhp
msgctxt ""
"sf_unittest.xhp\n"
"par_id271656446258396\n"
"help.text"
-msgid "Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertLike\" name=\"AssertLike\"><literal>AssertLike</literal></link> for more information on the assumptions of this method."
+msgid "Read the instructions in <link href=\"text/sbasic/shared/03/sf_unittest.xhp#AssertLike\"><literal>AssertLike</literal></link> for more information on the assumptions of this method."
msgstr ""
#. C9GJn
@@ -30337,13 +30337,13 @@ msgctxt ""
msgid "SFDocuments.Writer service"
msgstr ""
-#. 5i7vz
+#. FAFJi
#: sf_writer.xhp
msgctxt ""
"sf_writer.xhp\n"
"hd_id731582733781114\n"
"help.text"
-msgid "<variable id=\"WriterService\"><link href=\"text/sbasic/shared/03/sf_writer.xhp\" name=\"Writer service\"><literal>SFDocuments</literal>.<literal>Writer</literal> service</link></variable>"
+msgid "<variable id=\"WriterService\"><link href=\"text/sbasic/shared/03/sf_writer.xhp\"><literal>SFDocuments</literal>.<literal>Writer</literal> service</link></variable>"
msgstr ""
#. dUwYw
@@ -30526,13 +30526,13 @@ msgctxt ""
msgid "A <literal>SFDocuments.Form</literal> service instance representing the form specified as argument."
msgstr ""
-#. ULjtu
+#. qfLhH
#: sf_writer.xhp
msgctxt ""
"sf_writer.xhp\n"
"par_id821623076570573\n"
"help.text"
-msgid "This method is applicable only for Writer documents. Calc and Base documents have their own <literal>Forms</literal> method in the <link href=\"text/sbasic/shared/03/sf_calc.xhp#Forms\" name=\"Calc_Forms\">Calc</link> and <link href=\"text/sbasic/shared/03/sf_base.xhp#Forms\" name=\"Base_Forms\">Base</link> services, respectively."
+msgid "This method is applicable only for Writer documents. Calc and Base documents have their own <literal>Forms</literal> method in the <link href=\"text/sbasic/shared/03/sf_calc.xhp#Forms\">Calc</link> and <link href=\"text/sbasic/shared/03/sf_base.xhp#Forms\">Base</link> services, respectively."
msgstr ""
#. ty8pu
@@ -30553,13 +30553,13 @@ msgctxt ""
msgid "In the following examples, the first line gets the names of all forms in the document and the second line retrieves the <literal>Form</literal> object of the form named \"Form_A\"."
msgstr ""
-#. y684J
+#. 7FEdd
#: sf_writer.xhp
msgctxt ""
"sf_writer.xhp\n"
"par_id31592919577984\n"
"help.text"
-msgid "Send the contents of the document to the printer. The printer may be previously defined by default, by the user or by the <link href=\"text/sbasic/03/sf_document.xhp#SetPrinter\" name=\"SetPrinter method\"><literal>SetPrinter</literal></link> method of the <link href=\"text/sbasic/03/sf_document.xhp\" name=\"Document service\">Document</link> service. Returns <literal>True</literal> when successful."
+msgid "Send the contents of the document to the printer. The printer may be previously defined by default, by the user or by the <link href=\"text/sbasic/03/sf_document.xhp#SetPrinter\"><literal>SetPrinter</literal></link> method of the <link href=\"text/sbasic/03/sf_document.xhp\">Document</link> service. Returns <literal>True</literal> when successful."
msgstr ""
#. CKDb5
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc.po b/source/ca-valencia/helpcontent2/source/text/scalc.po
index 2ac24e6275a..22b4db3901b 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textscalc/ca_VALENCIA/>\n"
@@ -44,14 +44,14 @@ msgctxt ""
msgid "How to Work With $[officename] Calc"
msgstr "Com treballar amb el $[officename] Calc"
-#. hpSB8
+#. scHF2
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"par_id3147004\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=\"Llista de funcions per categoria\">Llista de funcions per categoria</link>"
+msgid "<link href=\"text/scalc/01/04060100.xhp\">List of Functions by Category</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\">Llista de funcions per categoria</link>"
#. SBdpw
#: main0000.xhp
@@ -71,14 +71,14 @@ msgctxt ""
msgid "Menus"
msgstr "Menús"
-#. JVoNZ
+#. 9PhSp
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
"hd_id3156023\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=\"Menús\">Menús</link></variable>"
+msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\">Menús</link></variable>"
#. cbjYY
#: main0100.xhp
@@ -98,14 +98,14 @@ msgctxt ""
msgid "File"
msgstr "Fitxer"
-#. 8jNU6
+#. t8CuN
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
"hd_id3156023\n"
"help.text"
-msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"Fitxer\">Fitxer</link>"
+msgid "<link href=\"text/scalc/main0101.xhp\">File</link>"
+msgstr "<link href=\"text/scalc/main0101.xhp\">Fitxer</link>"
#. k6sKj
#: main0101.xhp
@@ -125,14 +125,14 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. Ey57D
+#. GvZ4W
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id3156023\n"
"help.text"
-msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Edita\">Edita</link>"
+msgid "<link href=\"text/scalc/main0102.xhp\">Edit</link>"
+msgstr "<link href=\"text/scalc/main0102.xhp\">Edita</link>"
#. cRq5f
#: main0102.xhp
@@ -143,23 +143,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
msgstr "<ahelp hid=\".\">Este menú conté ordes per a editar el contingut del document actual.</ahelp>"
-#. p5xh3
+#. TonwU
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id3146919\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Enllaços\">Enllaços</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\">Enllaços</link>"
-#. pFCu3
+#. dPatw
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id0914201502131542\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Objecte\">Objecte</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\">Object</link>"
+msgstr "<link href=\"text/shared/01/02200000.xhp\">Objecte</link>"
#. zRW8E
#: main0103.xhp
@@ -170,14 +170,14 @@ msgctxt ""
msgid "View"
msgstr "Visualitza"
-#. nYmdC
+#. 9BgFL
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3151112\n"
"help.text"
-msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"Visualitza\">Visualitza</link>"
+msgid "<link href=\"text/scalc/main0103.xhp\">View</link>"
+msgstr "<link href=\"text/scalc/main0103.xhp\">Visualitza</link>"
#. Ecjbe
#: main0103.xhp
@@ -260,13 +260,13 @@ msgctxt ""
msgid "Comments"
msgstr ""
-#. oPaHx
+#. 2QmH5
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"par_id101636195413295\n"
"help.text"
-msgid "Display the <link href=\"text/shared/01/04050000.xhp\" name=\"linkname\">cell comments</link> for the current spreadsheet document."
+msgid "Display the <link href=\"text/shared/01/04050000.xhp\">cell comments</link> for the current spreadsheet document."
msgstr ""
#. 95G2n
@@ -287,14 +287,14 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/04080000.xhp#function_list_title\"/>"
msgstr ""
-#. f3nqY
+#. oGJEy
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3125863\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Escala\">Escala</link>"
+msgid "<link href=\"text/shared/01/03010000.xhp\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\">Escala</link>"
#. Dp7mC
#: main0104.xhp
@@ -305,14 +305,14 @@ msgctxt ""
msgid "Insert"
msgstr "Insereix"
-#. p4P57
+#. kQzbw
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3157909\n"
"help.text"
-msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"Insereix\">Insereix</link>"
+msgid "<link href=\"text/scalc/main0104.xhp\">Insert</link>"
+msgstr "<link href=\"text/scalc/main0104.xhp\">Insereix</link>"
#. S38tX
#: main0104.xhp
@@ -323,14 +323,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">The <emph>Insert</emph> menu contains commands for inserting new elements, such as images, text boxes, object, media, cell names and much more into the current sheet.</ahelp>"
msgstr "<ahelp hid=\".\">El menú <emph>Insereix</emph> conté ordres per a inserir elements nous, com ara imatges, quadres de text, objectes, multimèdia, noms de cel·les i molt més, en el full actual.</ahelp>"
-#. ZmgWG
+#. 2stQM
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3146918\n"
"help.text"
-msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagrama\">Diagrama</link>"
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\">Diagrama</link>"
#. QKdUC
#: main0104.xhp
@@ -341,32 +341,32 @@ msgctxt ""
msgid "Inserts a chart."
msgstr "Insereix un diagrama."
-#. beJfB
+#. YqHfD
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3147003\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=\"Marc flotant\">Marc flotant</link>"
+msgid "<link href=\"text/shared/01/04160500.xhp\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\">Marc flotant</link>"
-#. bAHCA
+#. mSQgW
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3156285\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Enllaç\">Enllaç</link>"
+msgid "<link href=\"text/shared/02/09070000.xhp\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\">Enllaç</link>"
-#. iAa73
+#. Acwm7
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3153726\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=\"Caràcter especial\">Caràcter especial</link>"
+msgid "<link href=\"text/shared/01/04100000.xhp\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\">Caràcter especial</link>"
#. FvWya
#: main0104.xhp
@@ -431,86 +431,86 @@ msgctxt ""
msgid "Format"
msgstr "Format"
-#. 9tCac
+#. ABAif
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3149669\n"
"help.text"
-msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
+msgid "<link href=\"text/scalc/main0105.xhp\">Format</link>"
+msgstr "<link href=\"text/scalc/main0105.xhp\">Format</link>"
-#. vqHQK
+#. CsMGr
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"par_id3145171\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#object\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
-msgstr "<ahelp hid=\".\">El menú <emph>Format</emph> conté ordres per a formatar les cel·les seleccionades, <link href=\"text/shared/00/00000005.xhp#object\" name=\"objects\">objectes</link> i continguts de cel·les del document.</ahelp>"
+msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for formatting selected cells, <link href=\"text/shared/00/00000005.xhp#object\">objects</link>, and cell contents in your document.</ahelp>"
+msgstr "<ahelp hid=\".\">El menú <emph>Format</emph> conté ordres per a formatar les cel·les seleccionades, <link href=\"text/shared/00/00000005.xhp#object\">objectes</link> i continguts de cel·les del document.</ahelp>"
-#. Ly37n
+#. KhDZu
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3154732\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
-msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cel·les\">Cel·les</link>"
+msgid "<link href=\"text/scalc/01/05020000.xhp\">Cells</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\">Cel·les</link>"
-#. 2T8EY
+#. V6AvZ
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3145748\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caràcter\">Caràcter</link>"
+msgid "<link href=\"text/shared/01/05020000.xhp\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\">Caràcter</link>"
-#. HiDBe
+#. KN9sa
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3154485\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paràgraf\">Paràgraf</link>"
+msgid "<link href=\"text/shared/01/05030000.xhp\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\">Paràgraf</link>"
-#. FDive
+#. 4uCuW
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3157980\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link>"
-msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Formatació automàtica\">Formatació automàtica</link>"
+msgid "<link href=\"text/scalc/01/05110000.xhp\">AutoFormat</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\">Formatació automàtica</link>"
-#. f5qPr
+#. 3Eg3G
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3159206\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link>"
-msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Formatació condicional\">Formatació condicional</link>"
+msgid "<link href=\"text/scalc/01/05120000.xhp\">Conditional Formatting</link>"
+msgstr "<link href=\"text/scalc/01/05120000.xhp\">Formatació condicional</link>"
-#. RugVk
+#. tnar9
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3154703\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
-msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link>"
+msgid "<link href=\"text/shared/02/01170100.xhp\">Control</link>"
+msgstr "<link href=\"text/shared/02/01170100.xhp\">Control</link>"
-#. ejmDA
+#. bReRT
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3147005\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
-msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Formulari\">Formulari</link>"
+msgid "<link href=\"text/shared/02/01170200.xhp\">Form</link>"
+msgstr "<link href=\"text/shared/02/01170200.xhp\">Formulari</link>"
#. r9nLs
#: main0106.xhp
@@ -521,14 +521,14 @@ msgctxt ""
msgid "Tools"
msgstr "Eines"
-#. J2ACm
+#. eCZ2E
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3150769\n"
"help.text"
-msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/scalc/main0106.xhp\" name=\"Eines\">Eines</link>"
+msgid "<link href=\"text/scalc/main0106.xhp\">Tools</link>"
+msgstr "<link href=\"text/scalc/main0106.xhp\">Eines</link>"
#. NwgnB
#: main0106.xhp
@@ -548,50 +548,50 @@ msgctxt ""
msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
msgstr "També podeu crear i assignar macros, així com configurar l'aparença i l'estil de les barres d'eines, els menús i el teclat; també podeu configurar les opcions per defecte per a les aplicacions del $[officename]."
-#. eoAXH
+#. CVDY6
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3154015\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Correcció automàtica\">Opcions de correcció automàtica</link>"
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\">Opcions de correcció automàtica</link>"
-#. eAavz
+#. aMGUB
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3148488\n"
"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgid "<link href=\"text/shared/01/02220000.xhp\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\">ImageMap</link>"
-#. ToZU6
+#. XZgEZ
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3149122\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=\"Busca de l'objectiu\">Busca de l'objectiu</link>"
+msgid "<link href=\"text/scalc/01/06040000.xhp\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\">Busca de l'objectiu</link>"
-#. MzvSo
+#. xGGAp
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3155768\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
-msgstr "<link href=\"text/scalc/01/06050000.xhp\" name=\"Escenaris\">Escenaris</link>"
+msgid "<link href=\"text/scalc/01/06050000.xhp\">Scenarios</link>"
+msgstr "<link href=\"text/scalc/01/06050000.xhp\">Escenaris</link>"
-#. SbKoe
+#. BoBWg
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3150086\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Personalitza\">Personalitza</link>"
+msgid "<link href=\"text/shared/01/06140000.xhp\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\">Personalitza</link>"
#. KRfJh
#: main0107.xhp
@@ -602,14 +602,14 @@ msgctxt ""
msgid "Window"
msgstr "Finestra"
-#. chBA8
+#. XpBDW
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
"hd_id3154758\n"
"help.text"
-msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Finestra\">Finestra</link>"
+msgid "<link href=\"text/scalc/main0107.xhp\">Window</link>"
+msgstr "<link href=\"text/scalc/main0107.xhp\">Finestra</link>"
#. 9UWue
#: main0107.xhp
@@ -629,14 +629,14 @@ msgctxt ""
msgid "Data"
msgstr "Dades"
-#. oCLhW
+#. 84mGe
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
"hd_id3153254\n"
"help.text"
-msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
-msgstr "<link href=\"text/scalc/main0112.xhp\" name=\"Dades\">Dades</link>"
+msgid "<link href=\"text/scalc/main0112.xhp\">Data</link>"
+msgstr "<link href=\"text/scalc/main0112.xhp\">Dades</link>"
#. gxhqm
#: main0112.xhp
@@ -647,13 +647,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">Utilitzeu les ordes del menú <emph>Dades</emph> per editar les dades del full actual. Podeu definir intervals, ordenar i filtrar dades, calcular resultats, esquematitzar dades i crear una taula dinàmica.</ahelp>"
-#. BDFbQ
+#. vv687
#: main0112.xhp
msgctxt ""
"main0112.xhp\n"
"hd_id231633127579389\n"
"help.text"
-msgid "<link href=\"text/scalc/01/live_data_stream.xhp\" name=\"Streams_link\">Streams</link>"
+msgid "<link href=\"text/scalc/01/live_data_stream.xhp\">Streams</link>"
msgstr ""
#. efuyu
@@ -683,50 +683,50 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains commands to modify and manage a sheet and its elements.</ahelp>"
msgstr "<ahelp hid=\".\">Este menú conté ordes per a modificar i gestionar un full i els seus elements.</ahelp>"
-#. qH2va
+#. vg558
#: main0116.xhp
msgctxt ""
"main0116.xhp\n"
"par_id0906201507414191\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insert Rows\">Insert Rows</link>"
-msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insereix files\">Insereix files</link>"
+msgid "<link href=\"text/scalc/01/04030000.xhp\">Insert Rows</link>"
+msgstr "<link href=\"text/scalc/01/04030000.xhp\">Insereix files</link>"
-#. VWDbt
+#. amygw
#: main0116.xhp
msgctxt ""
"main0116.xhp\n"
"par_id0906201507414192\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Insert Columns\">Insert Columns</link>"
-msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Insereix columnes\">Insereix columnes</link>"
+msgid "<link href=\"text/scalc/01/04040000.xhp\">Insert Columns</link>"
+msgstr "<link href=\"text/scalc/01/04040000.xhp\">Insereix columnes</link>"
-#. rkoqn
+#. Uszwv
#: main0116.xhp
msgctxt ""
"main0116.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move or Copy Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Mou/Copia\">Mou o copia un full</link>"
+msgid "<link href=\"text/scalc/01/02180000.xhp\">Move or Copy Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02180000.xhp\">Mou o copia un full</link>"
-#. sugSD
+#. 6pEDF
#: main0116.xhp
msgctxt ""
"main0116.xhp\n"
"hd_id3153968\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show Sheet</link>"
-msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Mostra\">Mostra el full</link>"
+msgid "<link href=\"text/scalc/01/05050300.xhp\">Show Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05050300.xhp\">Mostra el full</link>"
-#. EF3XK
+#. UnAKB
#: main0116.xhp
msgctxt ""
"main0116.xhp\n"
"hd_id3163708\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Suprimeix\">Suprimeix el full</link>"
+msgid "<link href=\"text/scalc/01/02170000.xhp\">Delete Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02170000.xhp\">Suprimeix el full</link>"
#. wbNHt
#: main0116.xhp
@@ -737,14 +737,14 @@ msgctxt ""
msgid "Sheet Tab Color"
msgstr "Color de pestanya del full"
-#. BosLg
+#. g7DYi
#: main0116.xhp
msgctxt ""
"main0116.xhp\n"
"hd_id3163733308\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Sheet Events</link>"
-msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Esdeveniments\">Esdeveniments del full</link>"
+msgid "<link href=\"text/shared/01/06140500.xhp\">Sheet Events</link>"
+msgstr "<link href=\"text/shared/01/06140500.xhp\">Esdeveniments del full</link>"
#. 5DRv5
#: main0200.xhp
@@ -755,14 +755,14 @@ msgctxt ""
msgid "Toolbars"
msgstr "Barres d'eines"
-#. mUvzp
+#. eSP96
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
"hd_id3154758\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=\"Barres d'eines\">Barres d'eines</link></variable>"
+msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\">Barres d'eines</link></variable>"
#. yvzAm
#: main0200.xhp
@@ -782,14 +782,14 @@ msgctxt ""
msgid "Formatting Bar"
msgstr "Barra de formatació"
-#. 8XR93
+#. VzJEC
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3150448\n"
"help.text"
-msgid "<link href=\"text/scalc/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
-msgstr "<link href=\"text/scalc/main0202.xhp\" name=\"Barra de formatació\">Barra de formatació</link>"
+msgid "<link href=\"text/scalc/main0202.xhp\">Formatting Bar</link>"
+msgstr "<link href=\"text/scalc/main0202.xhp\">Barra de formatació</link>"
#. ayoCz
#: main0202.xhp
@@ -800,77 +800,77 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">The <emph>Formatting</emph> bar contains basic commands for applying manually formatting.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TABLE\">La barra de <emph>formatació</emph> conté ordes bàsiques per aplicar una formatació manual.</ahelp>"
-#. Arm5j
+#. 7GEuZ
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3153160\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=\"Color del tipus de lletra\">Color del tipus de lletra</link>"
+msgid "<link href=\"text/shared/01/05020200.xhp\">Font Color</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\">Color del tipus de lletra</link>"
-#. Skg7A
+#. H2aV6
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3150715\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Left\">Align Left</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Alinea a l'esquerra\">Alinea a l'esquerra</link>"
+msgid "<link href=\"text/shared/01/05340300.xhp\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\">Alinea a l'esquerra</link>"
-#. 7BZfP
+#. XzJxt
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3155064\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Horizontally\">Align Center Horizontally</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Alinea al centre horitzontament\">Alinea al centre horitzontalment</link>"
+msgid "<link href=\"text/shared/01/05340300.xhp\">Align Center Horizontally</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\">Alinea al centre horitzontalment</link>"
-#. Qz94y
+#. X4ZVV
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3150042\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Right\">Align Right</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Alinea a la dreta\">Alinea a la dreta</link>"
+msgid "<link href=\"text/shared/01/05340300.xhp\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\">Alinea a la dreta</link>"
-#. UzBac
+#. T9Q2o
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3154703\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Justify\">Justify</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Justifica\">Justifica</link>"
+msgid "<link href=\"text/shared/01/05340300.xhp\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\">Justifica</link>"
-#. RB8dx
+#. F7CTh
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3152986\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Top\">Align Top</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Alinea a la part superior\">Alinea a la part superior</link>"
+msgid "<link href=\"text/shared/01/05340300.xhp\">Align Top</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\">Alinea a la part superior</link>"
-#. 6jCFX
+#. tYBsN
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3153306\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Center Vertically\">Align Center Vertically</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Alinea al centre verticalment\">Alinea al centre verticalment</link>"
+msgid "<link href=\"text/shared/01/05340300.xhp\">Align Center Vertically</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\">Alinea al centre verticalment</link>"
-#. VsDGR
+#. hGLD7
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3151240\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Align Bottom\">Align Bottom</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Alinea a la part inferior\">Alinea a la part inferior</link>"
+msgid "<link href=\"text/shared/01/05340300.xhp\">Align Bottom</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\">Alinea a la part inferior</link>"
#. GFJrp
#: main0202.xhp
@@ -917,14 +917,14 @@ msgctxt ""
msgid "Additional icons"
msgstr "Icones addicionals"
-#. BdMnG
+#. 9H9PE
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_idN10875\n"
"help.text"
-msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> support is enabled, two additional icons are visible."
-msgstr "Si s'habilita l'ús del <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link>, es visualitzaran dues icones addicionals."
+msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\">CTL</link> support is enabled, two additional icons are visible."
+msgstr "Si s'habilita l'ús del <link href=\"text/shared/00/00000005.xhp#ctl\">CTL</link>, es visualitzaran dues icones addicionals."
#. Ft8vF
#: main0202.xhp
@@ -1025,14 +1025,14 @@ msgctxt ""
msgid "Drawing Object Properties Bar"
msgstr "Barra de propietats dels objectes de dibuix"
-#. ddCKC
+#. PZcPA
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3154346\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=\"Barra de propietats de l'objecte de dibuix\">Barra de propietats de l'objecte de dibuix</link>"
+msgid "<link href=\"text/scalc/main0203.xhp\">Drawing Object Properties Bar</link>"
+msgstr "<link href=\"text/scalc/main0203.xhp\">Barra de propietats de l'objecte de dibuix</link>"
#. BHsxU
#: main0203.xhp
@@ -1043,41 +1043,41 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">La barra de <emph>propietats de l'objecte de dibuix</emph> per als objectes que heu seleccionat al full conté ordes de formatació i d'alineació.</ahelp>"
-#. ypZAt
+#. qe7FF
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3145748\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=\"Estil de la línia\">Estil de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Estil de la línia</link>"
-#. GJLtq
+#. aFoMu
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3151073\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=\"Amplada de la línia\">Amplada de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Amplada de la línia</link>"
-#. J3HZu
+#. MXcwv
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3153417\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=\"Color de la línia\">Color de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Color de la línia</link>"
-#. DAGaR
+#. QEYq6
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3147338\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=\"Color de fons\">Color de fons</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Background Color</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\">Color de fons</link>"
#. BgP3b
#: main0205.xhp
@@ -1088,14 +1088,14 @@ msgctxt ""
msgid "Text Formatting Bar"
msgstr "Barra de formatació del text"
-#. tCQyT
+#. A2hAJ
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3156330\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=\"Barra de formatació del text\">Barra de formatació del text</link>"
+msgid "<link href=\"text/scalc/main0205.xhp\">Text Formatting Bar</link>"
+msgstr "<link href=\"text/scalc/main0205.xhp\">Barra de formatació del text</link>"
#. h55fM
#: main0205.xhp
@@ -1106,113 +1106,113 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text box or a drawing object, contains formatting and alignment commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">La barra <emph>Formatació de text</emph> que es mostra quan el cursor és a un objecte de text, com ara un quadre de text o un objecte de dibuix, conté ordres de formatació i alineació.</ahelp>"
-#. qzSkC
+#. jnWok
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3148575\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=\"Color del tipus de lletra\">Color del tipus de lletra</link>"
+msgid "<link href=\"text/shared/01/05020200.xhp\">Font Color</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\">Color del tipus de lletra</link>"
-#. ZZMCx
+#. 4TNV9
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3154944\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=\"Interlineat: 1\">Interlineat: 1</link>"
+msgid "<link href=\"text/shared/01/05030100.xhp\">Line Spacing: 1</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\">Interlineat: 1</link>"
-#. wnVww
+#. uqB4L
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3146969\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=\"Interlineat: 1,5\">Interlineat: 1,5</link>"
+msgid "<link href=\"text/shared/01/05030100.xhp\">Line Spacing: 1.5</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\">Interlineat: 1,5</link>"
-#. AUwKK
+#. QCyNt
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3153711\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=\"Interlineat: 2\">Interlineat: 2</link>"
+msgid "<link href=\"text/shared/01/05030100.xhp\">Line Spacing: 2</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\">Interlineat: 2</link>"
-#. GB3jJ
+#. PFCrP
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3147345\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=\"Alinea a l'esquerra\">Alinea a l'esquerra</link>"
+msgid "<link href=\"text/shared/01/05030700.xhp\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\">Alinea a l'esquerra</link>"
-#. DUWnb
+#. Mkhar
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3155337\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Centrat\">Centrat</link>"
+msgid "<link href=\"text/shared/01/05030700.xhp\">Centered</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\">Centrat</link>"
-#. 26EW2
+#. VyFNF
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3147001\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=\"Alinea a la dreta\">Alinea a la dreta</link>"
+msgid "<link href=\"text/shared/01/05030700.xhp\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\">Alinea a la dreta</link>"
-#. ipyGL
+#. LKiD9
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3155115\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Justifica\">Justifica</link>"
+msgid "<link href=\"text/shared/01/05030700.xhp\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\">Justifica</link>"
-#. 3b4ep
+#. 8QMDx
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3150202\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Superíndex\">Superíndex</link>"
+msgid "<link href=\"text/shared/01/05020500.xhp\">Superscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\">Superíndex</link>"
-#. crEFA
+#. APeeB
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3155531\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Subíndex\">Subíndex</link>"
+msgid "<link href=\"text/shared/01/05020500.xhp\">Subscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\">Subíndex</link>"
-#. QLvQy
+#. DXoAZ
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3145387\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caràcter\">Caràcter</link>"
+msgid "<link href=\"text/shared/01/05020000.xhp\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\">Caràcter</link>"
-#. XCyBD
+#. cYecF
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3153067\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paràgraf\">Paràgraf</link>"
+msgid "<link href=\"text/shared/01/05030000.xhp\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\">Paràgraf</link>"
#. EDAGh
#: main0206.xhp
@@ -1223,14 +1223,14 @@ msgctxt ""
msgid "Formula Bar"
msgstr "Barra de fórmules"
-#. Bnx9x
+#. SsMkQ
#: main0206.xhp
msgctxt ""
"main0206.xhp\n"
"hd_id3147264\n"
"help.text"
-msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula Bar\">Formula Bar</link>"
-msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Barra de fórmules\">Barra de fórmules</link>"
+msgid "<link href=\"text/scalc/main0206.xhp\">Formula Bar</link>"
+msgstr "<link href=\"text/scalc/main0206.xhp\">Barra de fórmules</link>"
#. dnFAk
#: main0206.xhp
@@ -1250,14 +1250,14 @@ msgctxt ""
msgid "Status Bar"
msgstr "Barra d'estat"
-#. 8RA34
+#. xZZpr
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
"hd_id3151385\n"
"help.text"
-msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
-msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Barra d'estat\">Barra d'estat</link>"
+msgid "<link href=\"text/scalc/main0208.xhp\">Status Bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\">Barra d'estat</link>"
#. QDPFj
#: main0208.xhp
@@ -1295,14 +1295,14 @@ msgctxt ""
msgid "Print Preview Bar"
msgstr "Barra de previsualització de la pàgina"
-#. LiLyF
+#. dJTLd
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"hd_id3156023\n"
"help.text"
-msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Print Preview Bar\">Print Preview Bar</link>"
-msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Barra de previsualització d'impressió\">Barra de previsualització d'impressió</link>"
+msgid "<link href=\"text/scalc/main0210.xhp\">Print Preview Bar</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\">Barra de previsualització d'impressió</link>"
#. sMDPh
#: main0210.xhp
@@ -1331,14 +1331,14 @@ msgctxt ""
msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen</emph> button."
msgstr "Amaga els menús i les barres d'eines. Per eixir del mode de pantalla completa, feu clic al botó <emph>Pantalla completa activat/desactivat</emph>"
-#. owxGd
+#. hCPa2
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"hd_id3147394\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
-msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format de pàgina\">Format de pàgina</link>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\">Format Page</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\">Format de pàgina</link>"
#. w9KJc
#: main0210.xhp
@@ -1403,14 +1403,14 @@ msgctxt ""
msgid "Image Bar"
msgstr "Barra d'imatges"
-#. bZuGP
+#. MRMXs
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
"hd_id3153088\n"
"help.text"
-msgid "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">Image Bar</link>"
-msgstr "<link href=\"text/scalc/main0214.xhp\" name=\"Image Bar\">Barra d'imatges</link>"
+msgid "<link href=\"text/scalc/main0214.xhp\">Image Bar</link>"
+msgstr "<link href=\"text/scalc/main0214.xhp\">Barra d'imatges</link>"
#. MnQUQ
#: main0214.xhp
@@ -1430,14 +1430,14 @@ msgctxt ""
msgid "Tools Bar"
msgstr "Barra d'eines"
-#. FkEmk
+#. qbY86
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
"hd_id3143268\n"
"help.text"
-msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
-msgstr "<link href=\"text/scalc/main0218.xhp\" name=\"Barra d'eines\">Barra d'eines</link>"
+msgid "<link href=\"text/scalc/main0218.xhp\">Tools Bar</link>"
+msgstr "<link href=\"text/scalc/main0218.xhp\">Barra d'eines</link>"
#. nSzQ3
#: main0218.xhp
@@ -1448,32 +1448,32 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
msgstr "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Utilitzeu la barra d'eines per accedir a les ordes més utilitzades.</ahelp>"
-#. muQ5j
+#. GFPLo
#: 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=\"Controls\">Controls</link>"
+msgid "<link href=\"text/shared/02/01170000.xhp\">Controls</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\">Controls</link>"
-#. rXyMx
+#. BZMKM
#: main0218.xhp
msgctxt ""
"main0218.xhp\n"
"hd_id3154730\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=\"Seleccioneu els temes\">Seleccioneu els temes</link>"
+msgid "<link href=\"text/scalc/02/06080000.xhp\">Choose Themes</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\">Seleccioneu els temes</link>"
-#. 3hmW7
+#. 2mPEC
#: 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=\"Filtre avançat\">Filtre avançat</link>"
+msgid "<link href=\"text/scalc/01/12040300.xhp\">Advanced Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040300.xhp\">Filtre avançat</link>"
#. NgA6E
#: main0218.xhp
@@ -1484,14 +1484,14 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
msgstr "<link href=\"text/scalc/01/12090100.xhp\">Inicia</link>"
-#. AauQw
+#. G2qFY
#: 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=\"Convertidor d'euros\">Convertidor d'euros</link>"
+msgid "<link href=\"text/shared/autopi/01150000.xhp\">Euro Converter</link>"
+msgstr "<link href=\"text/shared/autopi/01150000.xhp\">Convertidor d'euros</link>"
#. Eu4wD
#: main0218.xhp
@@ -1502,14 +1502,14 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
msgstr "<link href=\"text/scalc/01/04070100.xhp\">Defineix</link>"
-#. HyrGS
+#. jje43
#: 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=\"Cerca de l'objectiu\">Cerca de l'objectiu</link>"
+msgid "<link href=\"text/scalc/01/06040000.xhp\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\">Cerca de l'objectiu</link>"
#. Fky5g
#: main0503.xhp
@@ -1520,14 +1520,14 @@ msgctxt ""
msgid "$[officename] Calc Features"
msgstr "Funcions del $[officename] Calc"
-#. NJ9KT
+#. Xj2By
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"hd_id3154758\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=\"Funcions del $[officename] Calc \">Funcions del $[officename] Calc </link></variable>"
+msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\">$[officename] Calc Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\">Funcions del $[officename] Calc </link></variable>"
#. ztyoG
#: main0503.xhp
@@ -1547,23 +1547,23 @@ msgctxt ""
msgid "Calculations"
msgstr "Càlculs"
-#. uiaMX
+#. p3tZu
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3145172\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 "El $[officename] Calc vos proporciona <link href=\"text/scalc/01/04060100.xhp\" name=\"funcions\">funcions</link>, incloent-hi funcions estadístiques i bancàries, que podeu utilitzar per crear fórmules que vos permeten realitzar càlculs complexos amb les dades."
+msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
+msgstr "El $[officename] Calc vos proporciona <link href=\"text/scalc/01/04060100.xhp\">funcions</link>, incloent-hi funcions estadístiques i bancàries, que podeu utilitzar per crear fórmules que vos permeten realitzar càlculs complexos amb les dades."
-#. ZWXQP
+#. QbkGw
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3145271\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 "També podeu utilitzar l'<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">auxiliar de funcions</link> perquè vos ajudi a crear fórmules."
+msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\">Function Wizard</link> to help you create your formulas."
+msgstr "També podeu utilitzar l'<link href=\"text/scalc/01/04060000.xhp\">auxiliar de funcions</link> perquè vos ajudi a crear fórmules."
#. jARFA
#: main0503.xhp
@@ -1655,11 +1655,11 @@ msgctxt ""
msgid "Opening and Saving Microsoft Files"
msgstr "Obertura i desament de fitxers Microsoft"
-#. HBc3E
+#. Xz6yr
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3157867\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 "Utilitzeu els filtres del $[officename] per convertir els fitxers de l'Excel o per obrir i guardar en altres <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
+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\">formats</link>."
+msgstr "Utilitzeu els filtres del $[officename] per convertir els fitxers de l'Excel o per obrir i guardar en altres <link href=\"text/shared/00/00000020.xhp\">formats</link>."
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/01.po b/source/ca-valencia/helpcontent2/source/text/scalc/01.po
index 604fa31b79e..9caa78d7714 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ca_VALENCIA/>\n"
@@ -80,14 +80,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the print preview, click the <emph>Close Preview</emph> button.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Per eixir de la previsualització d'impressió, feu clic al botó <emph>Tanca la previsualització</emph>.</ahelp>"
-#. 2uwLw
+#. Acaff
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
"par_id3155829\n"
"help.text"
-msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
-msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Barra de previsualització de la pàgina\">Barra de previsualització de la pàgina</link>"
+msgid "<link href=\"text/scalc/main0210.xhp\">Page View Object Bar</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\">Barra de previsualització de la pàgina</link>"
#. yzNBP
#: 02110000.xhp
@@ -107,22 +107,22 @@ msgctxt ""
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>Navegador;per a fulls</bookmark_value><bookmark_value>navegació;en fulls de càlcul</bookmark_value><bookmark_value>visualització; noms d'escenari</bookmark_value><bookmark_value>escenaris;visualització de noms</bookmark_value>"
-#. StZPy
+#. WoFyh
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3150791\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
-msgstr "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navegador\">Navegador</link>"
+msgid "<link href=\"text/scalc/01/02110000.xhp\">Navigator</link>"
+msgstr "<link href=\"text/scalc/01/02110000.xhp\">Navegador</link>"
-#. RJGLF
+#. GBdZm
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3156422\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#docking\" name=\"dockable window\">dockable window</link>."
+msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#docking\">dockable window</link>."
msgstr ""
#. tDkHa
@@ -323,14 +323,14 @@ msgctxt ""
msgid "Scenarios"
msgstr "Escenaris"
-#. 3b9Gu
+#. sfvb5
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153955\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/scenarios\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
-msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/scenarios\">Mostra tots els escenaris disponibles. Feu doble clic a un nom per aplicar l'escenari.</ahelp> El resultat es mostra en una fulla. Per obtindre'n més informació, trieu <link href=\"text/scalc/01/06050000.xhp\" name=\"Eines ▸ Escenaris\"><emph>Eines ▸ Escenaris</emph></link>."
+msgid "<ahelp hid=\"modules/scalc/ui/navigatorpanel/scenarios\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\"><emph>Tools - Scenarios</emph></link>."
+msgstr "<ahelp hid=\"modules/scalc/ui/navigatorpanel/scenarios\">Mostra tots els escenaris disponibles. Feu doble clic a un nom per aplicar l'escenari.</ahelp> El resultat es mostra en una fulla. Per obtindre'n més informació, trieu <link href=\"text/scalc/01/06050000.xhp\"><emph>Eines ▸ Escenaris</emph></link>."
#. rJfhC
#: 02110000.xhp
@@ -539,14 +539,14 @@ msgctxt ""
msgid "Headers & Footers"
msgstr "Capçaleres i peus de pàgina"
-#. 8CdQf
+#. Vm7Du
#: 02120000.xhp
msgctxt ""
"02120000.xhp\n"
"hd_id3145251\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=\"Capçaleres i peus de pàgina\">Capçaleres i peus de pàgina</link>"
+msgid "<link href=\"text/scalc/01/02120000.xhp\">Headers & Footers</link>"
+msgstr "<link href=\"text/scalc/01/02120000.xhp\">Capçaleres i peus de pàgina</link>"
#. b7G8C
#: 02120000.xhp
@@ -557,14 +557,14 @@ msgctxt ""
msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">Allows you to define and format headers and footers.</ahelp> </variable>"
msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">Vos permet definir i donar format a les capçaleres i peus de pàgina.</ahelp></variable>"
-#. EYDH4
+#. yaZ62
#: 02120000.xhp
msgctxt ""
"02120000.xhp\n"
"par_id3153415\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\"><emph>Page Style</emph></link> dialog."
-msgstr "El diàleg <emph>Capçaleres/Peus</emph> conté pestanyes per a definir capçaleres i peus de pàgina. Hi haurà pestanyes separades per a les capçaleres i els peus de pàgines esquerres i dretes si no s'ha activat l'opció <emph>El mateix contingut a les pàgines dreta i esquerra</emph> del diàleg <link href=\"text/scalc/01/05070000.xhp\" name=\"Estil de la pàgina\"><emph>Estil de la pàgina</emph></link>."
+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\"><emph>Page Style</emph></link> dialog."
+msgstr "El diàleg <emph>Capçaleres/Peus</emph> conté pestanyes per a definir capçaleres i peus de pàgina. Hi haurà pestanyes separades per a les capçaleres i els peus de pàgines esquerres i dretes si no s'ha activat l'opció <emph>El mateix contingut a les pàgines dreta i esquerra</emph> del diàleg <link href=\"text/scalc/01/05070000.xhp\"><emph>Estil de la pàgina</emph></link>."
#. CTq6U
#: 02120100.xhp
@@ -584,14 +584,14 @@ msgctxt ""
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>estils de pàgina; capçaleres</bookmark_value><bookmark_value>estils de pàgina; peus de pàgina</bookmark_value><bookmark_value>capçaleres; definició</bookmark_value><bookmark_value>peus de pàgina; definició</bookmark_value><bookmark_value>noms de fitxer a les capçaleres i als peus de pàgina</bookmark_value><bookmark_value>modificació;dates, automàticament</bookmark_value><bookmark_value>dates;actualització automàtica</bookmark_value><bookmark_value>actualitzacions automàtiques de dates</bookmark_value>"
-#. GDJKF
+#. Q3YxW
#: 02120100.xhp
msgctxt ""
"02120100.xhp\n"
"hd_id3153360\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=\"Capçalera/Peu de pàgina\">Capçalera/Peu de pàgina</link>"
+msgid "<link href=\"text/scalc/01/02120100.xhp\">Header/Footer</link>"
+msgstr "<link href=\"text/scalc/01/02120100.xhp\">Capçalera/Peu de pàgina</link>"
#. vEDP6
#: 02120100.xhp
@@ -683,14 +683,14 @@ msgctxt ""
msgid "Text attributes"
msgstr "Atributs del text"
-#. rjUzy
+#. n8HuZ
#: 02120100.xhp
msgctxt ""
"02120100.xhp\n"
"par_id3150717\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes</emph> dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\"><emph>Font</emph></link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\"><emph>Font Effects</emph></link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\"><emph>Font Position</emph></link>."
-msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Obri un diàleg per a assignar formatació a un text nou o seleccionat.</ahelp> El diàleg <emph>Atributs de text</emph> conté les pestanyes <link href=\"text/shared/01/05020100.xhp\" name=\"Tipus de lletra\"><emph>Tipus de lletra</emph></link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Efectes del tipus de lletra\"><emph>Efectes del tipus de lletra</emph></link> i <link href=\"text/shared/01/05020500.xhp\" name=\"Posició de la lletra\"><emph>Posició de la lletra</emph></link>."
+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\"><emph>Font</emph></link>, <link href=\"text/shared/01/05020200.xhp\"><emph>Font Effects</emph></link> and <link href=\"text/shared/01/05020500.xhp\"><emph>Font Position</emph></link>."
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Obri un diàleg per a assignar formatació a un text nou o seleccionat.</ahelp> El diàleg <emph>Atributs de text</emph> conté les pestanyes <link href=\"text/shared/01/05020100.xhp\"><emph>Tipus de lletra</emph></link>, <link href=\"text/shared/01/05020200.xhp\"><emph>Efectes del tipus de lletra</emph></link> i <link href=\"text/shared/01/05020500.xhp\"><emph>Posició de la lletra</emph></link>."
#. 5DMJG
#: 02120100.xhp
@@ -944,14 +944,14 @@ msgctxt ""
msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
msgstr "<bookmark_value>emplenament;llistes de selecció</bookmark_value><bookmark_value>llistes de selecció;emplenament de cel·les</bookmark_value>"
-#. sGEri
+#. eBEEA
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3153876\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
-msgstr "<link href=\"text/scalc/01/02140000.xhp\" name=\"Ompli\">Ompli</link>"
+msgid "<link href=\"text/scalc/01/02140000.xhp\">Fill</link>"
+msgstr "<link href=\"text/scalc/01/02140000.xhp\">Ompli</link>"
#. EGKxk
#: 02140000.xhp
@@ -962,32 +962,32 @@ msgctxt ""
msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
msgstr "<ahelp hid=\".\">Ompli automàticament les cel·les amb contingut.</ahelp>"
-#. 8KLWw
+#. re4Wm
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3147343\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 "Els menús contextuals del $[officename] Calc tenen <link href=\"text/scalc/01/02140000.xhp\" name=\"opcions addicionals\">opcions addicionals</link> per omplir les cel·les."
+msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\">additional options</link> for filling the cells."
+msgstr "Els menús contextuals del $[officename] Calc tenen <link href=\"text/scalc/01/02140000.xhp\">opcions addicionals</link> per omplir les cel·les."
-#. uFEZZ
+#. 3UCeC
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3149207\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02140500.xhp\" name=\"Full\">Full</link>"
+msgid "<link href=\"text/scalc/01/02140500.xhp\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02140500.xhp\">Full</link>"
-#. uaH3Y
+#. 7rYGG
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3155111\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
-msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Files\">Sèries</link>"
+msgid "<link href=\"text/scalc/01/02140600.xhp\">Series</link>"
+msgstr "<link href=\"text/scalc/01/02140600.xhp\">Sèries</link>"
#. GU6Ek
#: 02140000.xhp
@@ -998,13 +998,13 @@ msgctxt ""
msgid "<emph>Filling cells using context menus:</emph>"
msgstr "<emph>Emplenament de cel·les mitjançant menús contextuals:</emph>"
-#. 2j5RS
+#. YDNgA
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "Call the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#contextmenu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
msgstr ""
#. BzAsX
@@ -1034,14 +1034,14 @@ msgctxt ""
msgid "Down"
msgstr "Avall"
-#. WryFL
+#. CqgZP
#: 02140100.xhp
msgctxt ""
"02140100.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
-msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Avall\">Avall</link>"
+msgid "<link href=\"text/scalc/01/02140100.xhp\">Down</link>"
+msgstr "<link href=\"text/scalc/01/02140100.xhp\">Avall</link>"
#. ywHLJ
#: 02140100.xhp
@@ -1070,14 +1070,14 @@ msgctxt ""
msgid "Right"
msgstr "Dreta"
-#. D9LSg
+#. PFBK4
#: 02140200.xhp
msgctxt ""
"02140200.xhp\n"
"hd_id3153896\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
-msgstr "<link href=\"text/scalc/01/02140200.xhp\" name=\"Dreta\">Dreta</link>"
+msgid "<link href=\"text/scalc/01/02140200.xhp\">Right</link>"
+msgstr "<link href=\"text/scalc/01/02140200.xhp\">Dreta</link>"
#. vEYiU
#: 02140200.xhp
@@ -1106,14 +1106,14 @@ msgctxt ""
msgid "Up"
msgstr "Amunt"
-#. qsy7v
+#. 6tTPN
#: 02140300.xhp
msgctxt ""
"02140300.xhp\n"
"hd_id3147264\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
-msgstr "<link href=\"text/scalc/01/02140300.xhp\" name=\"Amunt\">Amunt</link>"
+msgid "<link href=\"text/scalc/01/02140300.xhp\">Up</link>"
+msgstr "<link href=\"text/scalc/01/02140300.xhp\">Amunt</link>"
#. o94hh
#: 02140300.xhp
@@ -1142,14 +1142,14 @@ msgctxt ""
msgid "Left"
msgstr "Esquerra"
-#. T2keF
+#. bU5cJ
#: 02140400.xhp
msgctxt ""
"02140400.xhp\n"
"hd_id3153896\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
-msgstr "<link href=\"text/scalc/01/02140400.xhp\" name=\"Esquerra\">Esquerra</link>"
+msgid "<link href=\"text/scalc/01/02140400.xhp\">Left</link>"
+msgstr "<link href=\"text/scalc/01/02140400.xhp\">Esquerra</link>"
#. z8GGE
#: 02140400.xhp
@@ -1268,14 +1268,14 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Feu clic a <emph>D'acord</emph>."
-#. fgzSQ
+#. d5MJG
#: 02140500.xhp
msgctxt ""
"02140500.xhp\n"
"par_id3156283\n"
"help.text"
-msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\"><emph>Paste Special</emph></link> dialog, where you can find additional tips."
-msgstr "Aquest diàleg és semblant al d'<link href=\"text/shared/01/02070000.xhp\" name=\"Enganxament especial\"><emph>Enganxament especial</emph></link>, on trobareu consells addicionals."
+msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\"><emph>Paste Special</emph></link> dialog, where you can find additional tips."
+msgstr "Aquest diàleg és semblant al d'<link href=\"text/shared/01/02070000.xhp\"><emph>Enganxament especial</emph></link>, on trobareu consells addicionals."
#. B6GAM
#: 02140600.xhp
@@ -2456,14 +2456,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
msgstr "<ahelp hid=\".uno:DeleteColumns\">Després de seleccionar almenys una cel·la, suprimeix la columna sencera del full.</ahelp>"
-#. TQEDi
+#. 727Hj
#: 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=\"Supressió del contingut\">Supressió del contingut</link>"
+msgid "<link href=\"text/scalc/01/02150000.xhp\">Deleting Contents</link>"
+msgstr "<link href=\"text/scalc/01/02150000.xhp\">Supressió del contingut</link>"
#. Ms7fx
#: 02170000.xhp
@@ -2654,14 +2654,14 @@ msgctxt ""
msgid "Delete Page Break"
msgstr "Suprimeix el salt de pàgina"
-#. QUGAg
+#. UjrbC
#: 02190000.xhp
msgctxt ""
"02190000.xhp\n"
"hd_id3150541\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Page Break\">Delete Page Break</link>"
-msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Suprimeix el salt de pàgina\">Suprimeix el salt de pàgina</link>"
+msgid "<link href=\"text/scalc/01/02190000.xhp\">Delete Page Break</link>"
+msgstr "<link href=\"text/scalc/01/02190000.xhp\">Suprimeix el salt de pàgina</link>"
#. uaEUi
#: 02190000.xhp
@@ -2690,14 +2690,14 @@ msgctxt ""
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>fulls de càlcul; supressió de salts de fila</bookmark_value><bookmark_value>supressió;salts de fila manuals</bookmark_value><bookmark_value>salts de fila; supressió</bookmark_value>"
-#. 2FkPg
+#. NsNQk
#: 02190100.xhp
msgctxt ""
"02190100.xhp\n"
"hd_id3156326\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=\"Salt de fila\">Salt de fila</link>"
+msgid "<link href=\"text/scalc/01/02190100.xhp\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/02190100.xhp\">Salt de fila</link>"
#. 4X2vf
#: 02190100.xhp
@@ -2735,14 +2735,14 @@ msgctxt ""
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>fulls de càlcul; supressió de salts de columna</bookmark_value><bookmark_value>supressió;salts de columna manuals</bookmark_value><bookmark_value>salts de columna; supressió</bookmark_value>"
-#. pAuZZ
+#. 8dBXb
#: 02190200.xhp
msgctxt ""
"02190200.xhp\n"
"hd_id3151384\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=\"Salt de columna\">Salt de columna</link>"
+msgid "<link href=\"text/scalc/01/02190200.xhp\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/02190200.xhp\">Salt de columna</link>"
#. Joj4v
#: 02190200.xhp
@@ -2771,14 +2771,14 @@ msgctxt ""
msgid "Sheet"
msgstr "Full"
-#. sm6m7
+#. uUB2P
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"hd_id3146794\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02200000.xhp\" name=\"Full\">Full</link>"
+msgid "<link href=\"text/scalc/01/02200000.xhp\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/02200000.xhp\">Full</link>"
#. ZEyEi
#: 02200000.xhp
@@ -2852,13 +2852,13 @@ msgctxt ""
msgid "<bookmark_value>Go to sheet</bookmark_value> <bookmark_value>jump; to given sheet</bookmark_value> <bookmark_value>sheet; go to directly</bookmark_value> <bookmark_value>sheet; search and go to</bookmark_value>"
msgstr ""
-#. svg9x
+#. Ky4LF
#: 02220000.xhp
msgctxt ""
"02220000.xhp\n"
"hd_id3156025\n"
"help.text"
-msgid "<variable id=\"GotoSheeth1\"><link href=\"text/scalc/01/02220000.xhp\" name=\"Go to Sheet\">Go to Sheet</link></variable>"
+msgid "<variable id=\"GotoSheeth1\"><link href=\"text/scalc/01/02220000.xhp\">Go to Sheet</link></variable>"
msgstr ""
#. UmffC
@@ -2933,14 +2933,14 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value> <bookmark_value>displaying; headers of columns/rows</bookmark_value>"
msgstr "<bookmark_value>fulls de càlcul; visualització de les capçaleres de les columnes/files</bookmark_value> <bookmark_value>visualització; capçaleres de columnes/files</bookmark_value>"
-#. 9J5cb
+#. yFUdS
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3156024\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=\"Capçaleres de files i columnes\">Capçaleres de files i columnes</link>"
+msgid "<link href=\"text/scalc/01/03070000.xhp\">Column & Row Headers</link>"
+msgstr "<link href=\"text/scalc/01/03070000.xhp\">Capçaleres de files i columnes</link>"
#. 5Cdt5
#: 03070000.xhp
@@ -2960,14 +2960,14 @@ msgctxt ""
msgid "To hide the column and row headers, unmark this menu entry."
msgstr "Per a amagar les capçaleres de la fila i de la columna, desactiveu esta entrada de menú."
-#. GL8VF
+#. G6jU8
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"par_id3156441\n"
"help.text"
-msgid "You can also set the view of the column and row headers in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\"><emph>%PRODUCTNAME Calc - View</emph></link>."
-msgstr "També podeu definir la vista de les capçaleres de fila i de columna a <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferències</item></caseinline><defaultinline><item type=\"menuitem\">Eines ▸ Opcions</item></defaultinline></switchinline><link href=\"text/shared/optionen/01060100.xhp\" name=\"Full de càlcul ▸ Visualització\"><emph>%PRODUCTNAME Calc ▸ Visualització</emph></link>."
+msgid "You can also set the view of the column and row headers in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\"><emph>%PRODUCTNAME Calc - View</emph></link>."
+msgstr "També podeu definir la vista de les capçaleres de fila i de columna a <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferències</item></caseinline><defaultinline><item type=\"menuitem\">Eines ▸ Opcions</item></defaultinline></switchinline><link href=\"text/shared/optionen/01060100.xhp\"><emph>%PRODUCTNAME Calc ▸ Visualització</emph></link>."
#. 2FynF
#: 03080000.xhp
@@ -2987,14 +2987,14 @@ msgctxt ""
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>fulls de càlcul; realçament dels valors</bookmark_value> <bookmark_value>valors;realçament</bookmark_value> <bookmark_value>realçament; valors dels fulls</bookmark_value> <bookmark_value>colors;valors</bookmark_value>"
-#. GQeVi
+#. iLMBi
#: 03080000.xhp
msgctxt ""
"03080000.xhp\n"
"hd_id3151384\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
-msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"Realçament dels valors\">Realçament dels valors</link>"
+msgid "<link href=\"text/scalc/01/03080000.xhp\">Value Highlighting</link>"
+msgstr "<link href=\"text/scalc/01/03080000.xhp\">Realçament dels valors</link>"
#. vS5Bm
#: 03080000.xhp
@@ -3068,14 +3068,14 @@ msgctxt ""
msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value> <bookmark_value>spreadsheets; formula bar</bookmark_value>"
msgstr "<bookmark_value>barra de fórmules;fulls de càlcul</bookmark_value> <bookmark_value>fulls de càlcul; barra de fórmules</bookmark_value>"
-#. 5kD7a
+#. LJXuz
#: 03090000.xhp
msgctxt ""
"03090000.xhp\n"
"hd_id3147264\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=\"Barra de fórmules\">Barra de fórmules</link>"
+msgid "<link href=\"text/scalc/01/03090000.xhp\">Formula Bar</link>"
+msgstr "<link href=\"text/scalc/01/03090000.xhp\">Barra de fórmules</link>"
#. ALATw
#: 03090000.xhp
@@ -3113,14 +3113,14 @@ msgctxt ""
msgid "Page Break View"
msgstr "Visualització dels salts de pàgina"
-#. zuUZD
+#. MJYHF
#: 03100000.xhp
msgctxt ""
"03100000.xhp\n"
"hd_id3151384\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break View\">Page Break View</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Visualització del salt de pàgina\">Visualització del salt de pàgina</link>"
+msgid "<link href=\"text/scalc/01/03100000.xhp\">Page Break View</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\">Visualització del salt de pàgina</link>"
#. 55rRr
#: 03100000.xhp
@@ -3194,14 +3194,14 @@ msgctxt ""
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>fulls de càlcul; inserció de salts</bookmark_value><bookmark_value>inserció; salts</bookmark_value><bookmark_value>salts de pàgina; inserció en els fulls de càlcul</bookmark_value>"
-#. yRa8D
+#. DEZfc
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3153192\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Insert Page Break\">Insert Page Break</link>"
-msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Insereix un salt de pàgina\">Insereix un salt de pàgina</link>"
+msgid "<link href=\"text/scalc/01/04010000.xhp\">Insert Page Break</link>"
+msgstr "<link href=\"text/scalc/01/04010000.xhp\">Insereix un salt de pàgina</link>"
#. 8EAxX
#: 04010000.xhp
@@ -3212,14 +3212,14 @@ msgctxt ""
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=\".\">Esta orde insereix salts manuals de columna o de fila per garantir que les dades s'imprimisquen correctament. Podeu inserir un salt de pàgina horitzontal sobre la cel·la activa o un salt de pàgina vertical a l'esquerra de la cel·la.</ahelp>"
-#. 3J4AR
+#. veGBu
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"par_id3155133\n"
"help.text"
-msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Sheet - Delete Page Break\">Sheet - Delete Page Break</link> to remove breaks created manually."
-msgstr "Trieu <link href=\"text/scalc/01/02190000.xhp\" name=\"Full ▸ Suprimeix el salt de pàgina\">Full ▸ Suprimeix el salt de pàgina</link> per a treure els salts creats manualment."
+msgid "Choose <link href=\"text/scalc/01/02190000.xhp\">Sheet - Delete Page Break</link> to remove breaks created manually."
+msgstr "Trieu <link href=\"text/scalc/01/02190000.xhp\">Full ▸ Suprimeix el salt de pàgina</link> per a treure els salts creats manualment."
#. iuDCz
#: 04010100.xhp
@@ -3239,14 +3239,14 @@ msgctxt ""
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>fulls; inserció de salts de fila</bookmark_value><bookmark_value>salts de fila; inserció</bookmark_value><bookmark_value>inserció; salts de fila manuals</bookmark_value><bookmark_value>salts de fila manuals</bookmark_value>"
-#. jN76G
+#. itBZb
#: 04010100.xhp
msgctxt ""
"04010100.xhp\n"
"hd_id3153821\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=\"Salt de fila\">Salt de fila</link>"
+msgid "<link href=\"text/scalc/01/04010100.xhp\">Row Break</link>"
+msgstr "<link href=\"text/scalc/01/04010100.xhp\">Salt de fila</link>"
#. BFATv
#: 04010100.xhp
@@ -3284,14 +3284,14 @@ msgctxt ""
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>fulls de càlcul; inserció de salts de columna</bookmark_value><bookmark_value>salts de columna; inserció</bookmark_value><bookmark_value>inserció; salts de columna manuals</bookmark_value><bookmark_value>salts de columna manuals</bookmark_value>"
-#. vo2Eq
+#. riZGP
#: 04010200.xhp
msgctxt ""
"04010200.xhp\n"
"hd_id3155923\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=\"Salt de columna\">Salt de columna</link>"
+msgid "<link href=\"text/scalc/01/04010200.xhp\">Column Break</link>"
+msgstr "<link href=\"text/scalc/01/04010200.xhp\">Salt de columna</link>"
#. THmx8
#: 04010200.xhp
@@ -3338,14 +3338,14 @@ msgctxt ""
msgid "Insert Cells"
msgstr "Insereix cel·les"
-#. dG824
+#. EuvPa
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
"par_id3150542\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\">Obri el quadre de diàleg<emph> Insereix cel·les</emph>, on podeu inserir cel·les noves en funció de les opcions que indiqueu.</ahelp></variable> Per suprimir cel·les, seleccioneu <link href=\"text/scalc/01/02160000.xhp\" name=\"Edita ▸ Suprimeix les cel·les\"><emph>Edita ▸ Suprimeix les cel·les</emph></link>."
+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\"><emph>Edit - Delete Cells</emph></link>."
+msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Obri el quadre de diàleg<emph> Insereix cel·les</emph>, on podeu inserir cel·les noves en funció de les opcions que indiqueu.</ahelp></variable> Per suprimir cel·les, seleccioneu <link href=\"text/scalc/01/02160000.xhp\"><emph>Edita ▸ Suprimeix les cel·les</emph></link>."
#. GNLr2
#: 04020000.xhp
@@ -3455,14 +3455,14 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value> <bookmark_value>rows; inserting</bookmark_value> <bookmark_value>inserting; rows</bookmark_value>"
msgstr "<bookmark_value>fulls de càlcul; inserció de files</bookmark_value><bookmark_value>files; inserció</bookmark_value><bookmark_value>inserció; files</bookmark_value>"
-#. YLWHa
+#. NPpLT
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"hd_id3150541\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insert Rows\">Insert Rows</link>"
-msgstr "<link href=\"text/scalc/01/04030000.xhp\" name=\"Insereix files\">Insereix files</link>"
+msgid "<link href=\"text/scalc/01/04030000.xhp\">Insert Rows</link>"
+msgstr "<link href=\"text/scalc/01/04030000.xhp\">Insereix files</link>"
#. CMEAW
#: 04030000.xhp
@@ -3527,14 +3527,14 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value> <bookmark_value>inserting; columns</bookmark_value> <bookmark_value>columns; inserting</bookmark_value>"
msgstr "<bookmark_value>fulls de càlcul; inserció de columnes</bookmark_value><bookmark_value>inserció; columnes</bookmark_value><bookmark_value>columnes; inserció</bookmark_value>"
-#. KALFz
+#. uTFJ3
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
"hd_id3155628\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Insert Columns\">Insert Columns</link>"
-msgstr "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columnes\">Columnes</link>"
+msgid "<link href=\"text/scalc/01/04040000.xhp\">Insert Columns</link>"
+msgstr "<link href=\"text/scalc/01/04040000.xhp\">Columnes</link>"
#. RMPZG
#: 04040000.xhp
@@ -3878,14 +3878,14 @@ msgctxt ""
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>inserció de funcions; Auxiliar de funcions</bookmark_value><bookmark_value>funcions;Auxiliar de funcions</bookmark_value><bookmark_value>auxiliars; funcions</bookmark_value>"
-#. KeWpp
+#. J8oG4
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3147426\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function</link>"
-msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Funció</link>"
+msgid "<link href=\"text/scalc/01/04060000.xhp\">Function</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\">Funció</link>"
#. wjD4H
#: 04060000.xhp
@@ -3968,14 +3968,14 @@ msgctxt ""
msgid "<variable id=\"kategorienliste\"><ahelp hid=\"formula/ui/functionpage/category\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used.</variable>"
msgstr "<variable id=\"kategorienliste\"><ahelp hid=\"formula/ui/functionpage/category\">Enumera les categories a les quals estan assignades les diverses funcions. Seleccioneu una categoria per a visualitzar les funcions adequades en el camp de llista que apareix a sota.</ahelp> Seleccioneu «Totes» per a visualitzar totes les funcions per ordre alfabètic, independentment de la categoria a la qual pertanyin. «Utilitzat per darrer cop» mostra les últimes funcions que heu fet servir.</variable>"
-#. KnP6B
+#. dSSCD
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3149378\n"
"help.text"
-msgid "You can browse the full <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\"><emph>List of Categories and Functions</emph></link>."
-msgstr "Podeu explorar la <link href=\"text/scalc/01/04060100.xhp\" name=\"Llista de categories i de funcions\"><emph>llista de categories i de funcions</emph></link> sencera."
+msgid "You can browse the full <link href=\"text/scalc/01/04060100.xhp\"><emph>List of Categories and Functions</emph></link>."
+msgstr "Podeu explorar la <link href=\"text/scalc/01/04060100.xhp\"><emph>llista de categories i de funcions</emph></link> sencera."
#. R4W8p
#: 04060000.xhp
@@ -4040,13 +4040,13 @@ msgctxt ""
msgid "Argument Input Fields"
msgstr "Camps d'entrada d'arguments"
-#. KJjBy
+#. KiDVp
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3145587\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\"><emph>date entries</emph></link>, make sure you use the correct format. Click <emph>OK</emph> to insert the result into the spreadsheet."
+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\"><emph>date entries</emph></link>, make sure you use the correct format. Click <emph>OK</emph> to insert the result into the spreadsheet."
msgstr ""
#. QwFQQ
@@ -4058,13 +4058,13 @@ msgctxt ""
msgid "Function Result"
msgstr "Resultat de la funció"
-#. hPtat
+#. WFjhR
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3155809\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\"><emph>error code</emph></link> is displayed."
+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\"><emph>error code</emph></link> is displayed."
msgstr ""
#. S2CCy
@@ -4310,14 +4310,14 @@ msgctxt ""
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>funcions;llistades per categoria</bookmark_value><bookmark_value>categories de funcions</bookmark_value><bookmark_value>llista de funcions</bookmark_value>"
-#. VArkk
+#. 6CyXU
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3154944\n"
"help.text"
-msgid "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\" name=\"Functions by Category\">Functions by Category</link></variable>"
-msgstr "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\" name=\"Funcions per categoria\">Funcions per categoria</link></variable>"
+msgid "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\">Functions by Category</link></variable>"
+msgstr "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\">Funcions per categoria</link></variable>"
#. FanRR
#: 04060100.xhp
@@ -4328,113 +4328,113 @@ msgctxt ""
msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
msgstr "Esta secció descriu les funcions del $[officename] Calc. A l'Auxiliar de funcions, les diverses funcions es divideixen en categories."
-#. JJJ2y
+#. W5LYA
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3146972\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
-msgstr "<link href=\"text/scalc/01/04060101.xhp\" name=\"Base de dades\">Base de dades</link>"
+msgid "<link href=\"text/scalc/01/04060101.xhp\">Database</link>"
+msgstr "<link href=\"text/scalc/01/04060101.xhp\">Base de dades</link>"
-#. m2kzD
+#. ttRtD
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3155443\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=\"Data i hora\">Data i hora</link>"
+msgid "<link href=\"text/scalc/01/04060102.xhp\">Date & Time</link>"
+msgstr "<link href=\"text/scalc/01/04060102.xhp\">Data i hora</link>"
-#. DLpQ4
+#. 4rXEd
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3147339\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
-msgstr "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financer\">Financer</link>"
+msgid "<link href=\"text/scalc/01/04060103.xhp\">Financial</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\">Financer</link>"
-#. yzu3D
+#. cnnmF
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3153963\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
-msgstr "<link href=\"text/scalc/01/04060104.xhp\" name=\"Informació\">Informació</link>"
+msgid "<link href=\"text/scalc/01/04060104.xhp\">Information</link>"
+msgstr "<link href=\"text/scalc/01/04060104.xhp\">Informació</link>"
-#. SaxEF
+#. 5C7D2
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3146316\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 "<link href=\"text/scalc/01/04060105.xhp\">Logical</link>"
+msgstr "<link href=\"text/scalc/01/04060105.xhp\">Lògic</link>"
-#. iezxW
+#. bEJVw
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3148485\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
-msgstr "<link href=\"text/scalc/01/04060106.xhp\" name=\"Matemàtic\">Matemàtic</link>"
+msgid "<link href=\"text/scalc/01/04060106.xhp\">Mathematical</link>"
+msgstr "<link href=\"text/scalc/01/04060106.xhp\">Matemàtic</link>"
-#. 9JGUR
+#. qGnQ2
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3150363\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
-msgstr "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matriu\">Matriu</link>"
+msgid "<link href=\"text/scalc/01/04060107.xhp\">Array</link>"
+msgstr "<link href=\"text/scalc/01/04060107.xhp\">Matriu</link>"
-#. U2BHz
+#. MtGFP
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3150208\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
-msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Estadístic\">Estadístic</link>"
+msgid "<link href=\"text/scalc/01/04060108.xhp\">Statistical</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\">Estadístic</link>"
-#. DywSF
+#. 97qtM
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3166428\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
-msgstr "<link href=\"text/scalc/01/04060109.xhp\" name=\"Full de càlcul\">Full de càlcul</link>"
+msgid "<link href=\"text/scalc/01/04060109.xhp\">Spreadsheet</link>"
+msgstr "<link href=\"text/scalc/01/04060109.xhp\">Full de càlcul</link>"
-#. 73sYC
+#. JeNA3
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3145585\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
+msgid "<link href=\"text/scalc/01/04060110.xhp\">Text</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\">Text</link>"
-#. cjoGa
+#. b5ysX
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"hd_id3156449\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=\"Complement\">Complement</link>"
+msgid "<link href=\"text/scalc/01/04060111.xhp\">Add-in</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\">Complement</link>"
-#. PRm2o
+#. mTLFx
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link>"
-msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operadors\">Operadors</link>"
+msgid "<link href=\"text/scalc/01/04060199.xhp\">Operators</link>"
+msgstr "<link href=\"text/scalc/01/04060199.xhp\">Operadors</link>"
#. ENAh9
#: 04060101.xhp
@@ -4760,31 +4760,31 @@ msgctxt ""
msgid "If you write several criteria in one row, they are connected by AND. If you write several criteria in different rows, they are connected by OR."
msgstr ""
-#. xymRZ
+#. 7p3hk
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id401615893095178\n"
"help.text"
-msgid "Criteria can be created using wildcards, providing that wildcards have been enabled via the <menuitem>Enable wildcards in formulas</menuitem> option on the <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link> dialog. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled."
+msgid "Criteria can be created using wildcards, providing that wildcards have been enabled via the <menuitem>Enable wildcards in formulas</menuitem> option on the <link href=\"text/shared/optionen/01060500.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link> dialog. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled."
msgstr ""
-#. darZG
+#. HnAyF
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id921615893158111\n"
"help.text"
-msgid "Even more powerful criteria can be created using regular expressions, providing that regular expressions have been enabled via the <menuitem>Enable regular expressions in formulas</menuitem> option on the <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link> dialog."
+msgid "Even more powerful criteria can be created using regular expressions, providing that regular expressions have been enabled via the <menuitem>Enable regular expressions in formulas</menuitem> option on the <link href=\"text/shared/optionen/01060500.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link> dialog."
msgstr ""
-#. YkSzL
+#. 8WGaA
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id881615893236930\n"
"help.text"
-msgid "Another setting that affects how the search criteria are handled is the <menuitem>Search criteria = and <> must apply to whole cells</menuitem> option on the <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link> dialog. This option controls whether the search criteria you set for the Database functions must match the whole cell exactly. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled."
+msgid "Another setting that affects how the search criteria are handled is the <menuitem>Search criteria = and <> must apply to whole cells</menuitem> option on the <link href=\"text/shared/optionen/01060500.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link> dialog. This option controls whether the search criteria you set for the Database functions must match the whole cell exactly. When interoperability with Microsoft Excel is important for your spreadsheet, this option should be enabled."
msgstr ""
#. 4sbmh
@@ -5129,13 +5129,13 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr ""
-#. qBB4C
+#. VWsGS
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id91616253394127\n"
"help.text"
-msgid "This simple example shows the use of wildcards. For this example to work as intended, select to enable wildcards at <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link>. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;A12:A13)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letter “F”. The value 1 is returned (counting Frank)."
+msgid "This simple example shows the use of wildcards. For this example to work as intended, select to enable wildcards at <link href=\"text/shared/optionen/01060500.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link>. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;A12:A13)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letter “F”. The value 1 is returned (counting Frank)."
msgstr ""
#. BAnVJ
@@ -5156,13 +5156,13 @@ msgctxt ""
msgid "<emph>Name</emph>"
msgstr ""
-#. NyqFV
+#. uLJQe
#: 04060101.xhp
msgctxt ""
"04060101.xhp\n"
"par_id631616253692350\n"
"help.text"
-msgid "This simple example shows the use of regular expressions. For this example to work as intended, select to enable regular expressions at <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link>. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;A12:A13)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letters “A”, “B”, or “C”. The value 3 is returned (counting Andy, Betty, and Charles)."
+msgid "This simple example shows the use of regular expressions. For this example to work as intended, select to enable regular expressions at <link href=\"text/shared/optionen/01060500.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link>. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;A12:A13)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests have names that begin with the letters “A”, “B”, or “C”. The value 3 is returned (counting Andy, Betty, and Charles)."
msgstr ""
#. KBZPC
@@ -8027,14 +8027,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
msgstr "<ahelp hid=\"HID_FUNC_IKV\">Calcula la taxa interna de rendibilitat d'una inversió.</ahelp> Els valors representen el flux d'efectiu a intervals regulars; com a mínim un dels valors ha de ser negatiu (pagaments), i com a mínim un dels valors ha de ser positiu (ingressos)."
-#. n9cww
+#. ZCGGe
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
"par_idN10E621\n"
"help.text"
-msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">XIRR</link> function."
-msgstr "Si els pagaments es produeixen en intervals irregulars, feu servir la funció <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"TIRX\">TIRX</link>."
+msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xirr\">XIRR</link> function."
+msgstr "Si els pagaments es produeixen en intervals irregulars, feu servir la funció <link href=\"text/scalc/01/04060118.xhp#xirr\">TIRX</link>."
#. MXALn
#: 04060103.xhp
@@ -8072,13 +8072,13 @@ msgctxt ""
msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
msgstr "Si assumim que els continguts de les cel·les són A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> i A4=<item type=\"input\">1000</item>, el resultat de la fórmula <item type=\"input\">=TIR(A1:A4)</item> és 11,33%."
-#. vtGrD
+#. fhHQH
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
"par_id461513468030965\n"
"help.text"
-msgid "Because of the iterative method used, it is possible for IRR to fail and return <link href=\"text/scalc/05/02140000.xhp\" name=\"Error 523\">Error 523</link>, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess."
+msgid "Because of the iterative method used, it is possible for IRR to fail and return <link href=\"text/scalc/05/02140000.xhp\">Error 523</link>, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess."
msgstr ""
#. PxBBB
@@ -8171,23 +8171,23 @@ msgctxt ""
msgid "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
msgstr "<item type=\"input\">=IPDPE(1%;18;24;120000)</item> = -300 unitats monetàries. L'interés mensual després d'1,5 anys és de 300 unitats monetàries."
-#. 5C6bm
+#. zy5K7
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
"par_id3146812\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=\"Vés a la secció Funcions financeres: segona part\">Funcions financeres: segona part</link>"
+msgid "<link href=\"text/scalc/01/04060119.xhp\">Financial Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp\">Funcions financeres: segona part</link>"
-#. FgtGH
+#. 9veCX
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
"par_id3154411\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=\"Vés a la secció Funcions financeres: tercera part\">Funcions financeres: tercera part</link>"
+msgid "<link href=\"text/scalc/01/04060118.xhp\">Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\">Funcions financeres: tercera part</link>"
#. Ztbpk
#: 04060104.xhp
@@ -10997,23 +10997,23 @@ msgctxt ""
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>funcions matemàtiques</bookmark_value><bookmark_value>Auxiliar de funcions; matemàtiques</bookmark_value><bookmark_value>funcions; funcions matemàtiques</bookmark_value><bookmark_value>funcions trigonomètriques</bookmark_value>"
-#. BJjDo
+#. 6DkNc
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"hd_id3147124\n"
"help.text"
-msgid "<variable id=\"math_functions_h1\"><link href=\"text/scalc/01/04060106.xhp\" name=\"math_link\">Mathematical Functions</link></variable>"
+msgid "<variable id=\"math_functions_h1\"><link href=\"text/scalc/01/04060106.xhp\">Mathematical Functions</link></variable>"
msgstr ""
-#. jjDha
+#. UNxJE
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3154943\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\">Esta categoria conté les funcions <emph>matemàtiques</emph> del Calc. </variable> Per obrir l'<emph>Auxiliar de funcions</emph>, trieu <link href=\"text/scalc/01/04060000.xhp\" name=\"Insereix ▸ Funció\"><emph>Insereix ▸ Funció</emph></link>."
+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\"><emph>Insert - Function</emph></link>."
+msgstr "<variable id=\"mathematiktext\">Esta categoria conté les funcions <emph>matemàtiques</emph> del Calc. </variable> Per obrir l'<emph>Auxiliar de funcions</emph>, trieu <link href=\"text/scalc/01/04060000.xhp\"><emph>Insereix ▸ Funció</emph></link>."
#. bWDf7
#: 04060106.xhp
@@ -12878,13 +12878,13 @@ msgctxt ""
msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
msgstr "<item type=\"input\">=COMBINATA(3;2)</item> retorna 6."
-#. ABMYW
+#. RFv2A
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"hd_id561641930400206\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_trunc.xhp\" name=\"trunc_link\">TRUNC</link>"
+msgid "<link href=\"text/scalc/01/func_trunc.xhp\">TRUNC</link>"
msgstr ""
#. MQVNf
@@ -13346,13 +13346,13 @@ msgctxt ""
msgid "<input>=SERIESSUM(A1; 0; 1; {1; 2; 3})</input> calculates the value of 1+2x+3x<sup>2</sup>, where x is the value in cell A1. If A1 contains 1, the formula returns 6; if A1 contains 2, the formula returns 17; if A1 contains 3, the formula returns 34; and so on."
msgstr ""
-#. i8GB7
+#. GAuUy
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id881635251427220\n"
"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/SERIESSUM\" name=\"SERIESSUM_Wiki\">SERIESSUM</link> wiki page for more details about this function."
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/SERIESSUM\">SERIESSUM</link> wiki page for more details about this function."
msgstr ""
#. cEDZn
@@ -13733,13 +13733,13 @@ msgctxt ""
msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
msgstr "<item type=\"input\">=ARROD(987,65;-2)</item> retorna 1000."
-#. 6qDk5
+#. AEaRi
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"hd_id561641930400105\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_rounddown.xhp\" name=\"rounddown_link\">ROUNDDOWN</link>"
+msgid "<link href=\"text/scalc/01/func_rounddown.xhp\">ROUNDDOWN</link>"
msgstr ""
#. HBbDL
@@ -14813,13 +14813,13 @@ msgctxt ""
msgid "<input>=CONVERT_OOO(100;\"EUR\";\"DEM\")</input> converts 100 euros into German marks."
msgstr ""
-#. PRgAD
+#. TS87i
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id251631901851101\n"
"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT_OOO\" name=\"CONVERT_OOO Wiki\">CONVERT_OOO</link> wiki page for more details about this function."
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT_OOO\">CONVERT_OOO</link> wiki page for more details about this function."
msgstr ""
#. 5CcjA
@@ -15281,13 +15281,13 @@ msgctxt ""
msgid "RANDBETWEEN.NV(Bottom; Top)"
msgstr ""
-#. Cwb6C
+#. ztiBK
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id91590242400917\n"
"help.text"
-msgid "Returns an non-volatile integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive). A non-volatile function is not recalculated at new input events or pressing <keycode>F9</keycode>. However, the function is recalculated when pressing <keycode>F9</keycode> with the cursor on the cell containing the function, when opening the file, when using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>) and when <emph>Top</emph> or <emph>Bottom</emph> are recalculated."
+msgid "Returns an non-volatile integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive). A non-volatile function is not recalculated at new input events or pressing <keycode>F9</keycode>. However, the function is recalculated when pressing <keycode>F9</keycode> with the cursor on the cell containing the function, when opening the file, when using the <link href=\"text/scalc/01/recalculate_hard.xhp\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>) and when <emph>Top</emph> or <emph>Bottom</emph> are recalculated."
msgstr ""
#. AngvN
@@ -15434,13 +15434,13 @@ msgctxt ""
msgid "RAND.NV()"
msgstr ""
-#. G5FWM
+#. 7pUhN
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id271590239748534\n"
"help.text"
-msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing <keycode>F9</keycode>, except when the cursor is on the cell containing the function or using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>). The function is recalculated when opening the file."
+msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing <keycode>F9</keycode>, except when the cursor is on the cell containing the function or using the <link href=\"text/scalc/01/recalculate_hard.xhp\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>). The function is recalculated when opening the file."
msgstr ""
#. sCwno
@@ -15470,13 +15470,13 @@ msgctxt ""
msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas; arrays</bookmark_value><bookmark_value>functions; array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>deleting; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating; conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
msgstr ""
-#. ALUph
+#. 8AUFn
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"hd_id3147273\n"
"help.text"
-msgid "<variable id=\"arrayfunctit\"><link href=\"text/scalc/01/04060107.xhp\" name=\"array functions\">Array Functions</link></variable>"
+msgid "<variable id=\"arrayfunctit\"><link href=\"text/scalc/01/04060107.xhp\">Array Functions</link></variable>"
msgstr ""
#. BDGKz
@@ -15578,14 +15578,14 @@ msgctxt ""
msgid "When do you use array formulas?"
msgstr "Quan podeu utilitzar fórmules matricials?"
-#. ytL94
+#. iQ9Nx
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id3149787\n"
"help.text"
-msgid "Use array formulas if you have to repeat calculations using different values. If you decide to change the calculation method later, you only have to update the array formula. To add an array formula, select the entire array range and then <link href=\"text/scalc/01/04060107.xhp\" name=\"make the required change to the array formula\">make the required change to the array formula</link>."
-msgstr "Utilitzeu fórmules matricials si heu de repetir càlculs amb valors diferents. Si decidiu canviar el mètode de càlcul més avant, només caldrà que actualitzeu la fórmula matricial. Per afegir una fórmula matricial, seleccioneu tot l'interval de matriu i, tot seguit, <link href=\"text/scalc/01/04060107.xhp\" name=\"feu la modificació a la fórmula matricial\">feu la modificació a la fórmula matricial</link>."
+msgid "Use array formulas if you have to repeat calculations using different values. If you decide to change the calculation method later, you only have to update the array formula. To add an array formula, select the entire array range and then <link href=\"text/scalc/01/04060107.xhp\">make the required change to the array formula</link>."
+msgstr "Utilitzeu fórmules matricials si heu de repetir càlculs amb valors diferents. Si decidiu canviar el mètode de càlcul més avant, només caldrà que actualitzeu la fórmula matricial. Per afegir una fórmula matricial, seleccioneu tot l'interval de matriu i, tot seguit, <link href=\"text/scalc/01/04060107.xhp\">feu la modificació a la fórmula matricial</link>."
#. vRLSR
#: 04060107.xhp
@@ -15920,13 +15920,13 @@ msgctxt ""
msgid "Select the cell range or array containing the array formula. To select the whole array, position the cell cursor inside the array range, then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>/</keycode>, where <keycode>/</keycode> is the division key on the numeric keypad."
msgstr ""
-#. 5xB8E
+#. QeAAF
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id61633516164519\n"
"help.text"
-msgid "Press <keycode>Delete</keycode> to delete the array contents, including the array formula, or press <keycode>Backspace</keycode> and this brings up the <link href=\"text/scalc/01/02150000.xhp\" name=\"delete contents\">Delete Contents</link> dialog box. Select <emph>Formula</emph> or <emph>Delete All</emph> and click <emph>OK</emph>."
+msgid "Press <keycode>Delete</keycode> to delete the array contents, including the array formula, or press <keycode>Backspace</keycode> and this brings up the <link href=\"text/scalc/01/02150000.xhp\">Delete Contents</link> dialog box. Select <emph>Formula</emph> or <emph>Delete All</emph> and click <emph>OK</emph>."
msgstr ""
#. dEcVJ
@@ -17639,14 +17639,14 @@ msgctxt ""
msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
msgstr "<bookmark_value>funcions estadístiques</bookmark_value><bookmark_value>Auxiliar de funcions; estadístiques</bookmark_value><bookmark_value>funcions; funcions estadístiques</bookmark_value>"
-#. KKBEq
+#. EcgjZ
#: 04060108.xhp
msgctxt ""
"04060108.xhp\n"
"hd_id3153018\n"
"help.text"
-msgid "<variable id=\"head_statistic\"><link href=\"text/scalc/01/04060108.xhp\" name=\"Statistics Functions\">Statistics Functions</link></variable>"
-msgstr "<variable id=\"head_statistic\"><link href=\"text/scalc/01/04060108.xhp\" name=\"Statistics Functions\">Funcions estadístiques</link></variable>"
+msgid "<variable id=\"head_statistic\"><link href=\"text/scalc/01/04060108.xhp\">Statistics Functions</link></variable>"
+msgstr "<variable id=\"head_statistic\"><link href=\"text/scalc/01/04060108.xhp\">Funcions estadístiques</link></variable>"
#. M7Z6D
#: 04060108.xhp
@@ -18206,14 +18206,14 @@ msgctxt ""
msgid "ERRORTYPE"
msgstr "TIPUSERROR"
-#. EeCLR
+#. hEDCC
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3148568\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\">Retorna el nombre corresponent a un <link href=\"text/scalc/05/02140000.xhp\" name=\"valor d'error\">valor d'error</link> que aparega en una cel·la diferent.</ahelp> Amb l'ajuda d'este nombre, podeu generar un missatge d'error en forma de text."
+msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\">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\">Retorna el nombre corresponent a un <link href=\"text/scalc/05/02140000.xhp\">valor d'error</link> que aparega en una cel·la diferent.</ahelp> Amb l'ajuda d'este nombre, podeu generar un missatge d'error en forma de text."
#. G7W2S
#: 04060109.xhp
@@ -18485,13 +18485,13 @@ msgctxt ""
msgid "COLUMN"
msgstr "COLUMNA"
-#. yYn3d
+#. Kj3xA
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3149711\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#creating_array_formulas\" 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."
+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\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">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 ""
#. poCRX
@@ -19142,14 +19142,14 @@ msgctxt ""
msgid "LOOKUP"
msgstr "CONSULTA"
-#. UMdhJ
+#. WYT2e
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3153389\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
-msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Retorna els continguts d'una cel·la, ja siga d'un interval d'una fila o d'una columna.</ahelp> Opcionalment, es retorna el valor assignat (del mateix índex) en una columna i una fila diferent. Contràriament a <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"CONSULTAV\">CONSULTAV</link> i a <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"CONSULTAH\">CONSULTAH</link>, el vector de cerca i el resultant es poden trobar en posicions diferents; no cal que siguen adjacents. A més, el vector de cerca de la funció CONSULTA ha d'estar ordenat de manera ascendent; si no ho està, la cerca no retornarà cap resultat utilitzable."
+msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp#Section17\">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\">Retorna els continguts d'una cel·la, ja siga d'un interval d'una fila o d'una columna.</ahelp> Opcionalment, es retorna el valor assignat (del mateix índex) en una columna i una fila diferent. Contràriament a <link href=\"text/scalc/01/04060109.xhp#Section9\">CONSULTAV</link> i a <link href=\"text/scalc/01/04060109.xhp#Section17\">CONSULTAH</link>, el vector de cerca i el resultant es poden trobar en posicions diferents; no cal que siguen adjacents. A més, el vector de cerca de la funció CONSULTA ha d'estar ordenat de manera ascendent; si no ho està, la cerca no retornarà cap resultat utilitzable."
#. 3jevg
#: 04060109.xhp
@@ -19403,13 +19403,13 @@ msgctxt ""
msgid "HLOOKUP(Lookup; Array; Index [; SortedRangeLookup])"
msgstr ""
-#. nhwwF
+#. SQxFe
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3148672\n"
"help.text"
-msgid "For an explanation on the parameters, see: <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
+msgid "For an explanation on the parameters, see: <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link> (columns and rows are exchanged)"
msgstr ""
#. vwqHz
@@ -19538,13 +19538,13 @@ msgctxt ""
msgid "ROW"
msgstr "FILA"
-#. cmzD6
+#. VAtaY
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3154564\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#creating_array_formulas\" 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."
+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\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">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 ""
#. 97EEE
@@ -20060,14 +20060,14 @@ msgctxt ""
msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
msgstr "<bookmark_value>text en cel·les; funcions</bookmark_value><bookmark_value>funcions; funcions de text</bookmark_value><bookmark_value>Auxiliar de funcions;text</bookmark_value>"
-#. DEMF7
+#. 7ZrHE
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id3145389\n"
"help.text"
-msgid "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\" name=\"Text Functions\">Text Functions</link></variable>"
-msgstr "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\" name=\"Funcions de text\">Funcions de text</link></variable>"
+msgid "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\">Text Functions</link></variable>"
+msgstr "<variable id=\"head_text\"><link href=\"text/scalc/01/04060110.xhp\">Funcions de text</link></variable>"
#. zUHLY
#: 04060110.xhp
@@ -20231,13 +20231,13 @@ msgctxt ""
msgid "BASE"
msgstr "BASE"
-#. znNLx
+#. eNzkN
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3153289\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BASIS\">Converts a positive integer to a specified base into a text from the <link href=\"text/shared/00/00000005.xhp#number_system\" name=\"numbering system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
+msgid "<ahelp hid=\"HID_FUNC_BASIS\">Converts a positive integer to a specified base into a text from the <link href=\"text/shared/00/00000005.xhp#number_system\">numbering system</link>.</ahelp> The digits 0-9 and the letters A-Z are used."
msgstr ""
#. 2cDvi
@@ -20321,13 +20321,13 @@ msgctxt ""
msgid "<item type=\"input\">=BASE(255;16;4)</item> returns 00FF in the hexadecimal system."
msgstr "<item type=\"input\">=BASE(255;16;4)</item> retorna 00FF en el sistema hexadecimal."
-#. sCYaE
+#. eC4b7
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id991655560817321\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp#decimal\" name=\"decimal\">DECIMAL</link>"
+msgid "<link href=\"text/scalc/01/04060110.xhp#decimal\">DECIMAL</link>"
msgstr ""
#. B364W
@@ -20582,13 +20582,13 @@ msgctxt ""
msgid "DECIMAL"
msgstr "DECIMAL"
-#. dES54
+#. R5L9j
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156361\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text that represents a number in a <link href=\"text/shared/00/00000005.xhp#number_system\" name=\"numeral system\">numeral system</link> with the given base radix to a positive integer.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
+msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text that represents a number in a <link href=\"text/shared/00/00000005.xhp#number_system\">numeral system</link> with the given base radix to a positive integer.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
msgstr ""
#. Nt52d
@@ -20654,13 +20654,13 @@ msgctxt ""
msgid "<item type=\"input\">=DECIMAL(\"0101\";2)</item> returns 5."
msgstr "<item type=\"input\">=DECIMAL(\"0101\";2)</item> retorna 5."
-#. Z3f3y
+#. BLXEF
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id421655560837244\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp#base\" name=\"base\">BASE</link>"
+msgid "<link href=\"text/scalc/01/04060110.xhp#base\">BASE</link>"
msgstr ""
#. NwJnR
@@ -20681,13 +20681,13 @@ msgctxt ""
msgid "DOLLAR"
msgstr "MONEDA"
-#. BbGGC
+#. HBpWu
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3153049\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DM\">Converts a number to a string representing the amount in the currency format, rounded to a specified decimal places, using the decimal separator that corresponds to the <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link>.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted. Optionally, you may enter the number of decimal places in the <item type=\"literal\">Decimals</item> field. If no value is specified, all numbers in currency format will be displayed with two decimal places."
+msgid "<ahelp hid=\"HID_FUNC_DM\">Converts a number to a string representing the amount in the currency format, rounded to a specified decimal places, using the decimal separator that corresponds to the <link href=\"text/shared/optionen/01140000.xhp\">current locale setting</link>.</ahelp> In the <item type=\"literal\">Value</item> field enter the number to be converted. Optionally, you may enter the number of decimal places in the <item type=\"literal\">Decimals</item> field. If no value is specified, all numbers in currency format will be displayed with two decimal places."
msgstr ""
#. FEDsN
@@ -20915,13 +20915,13 @@ msgctxt ""
msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. Lu9oq
+#. LtU6B
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\">locale-specific settings</link>."
msgstr ""
#. 5zSz5
@@ -20933,13 +20933,13 @@ msgctxt ""
msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
msgstr ""
-#. MccEk
+#. 2BbRw
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21068,14 +21068,14 @@ msgctxt ""
msgid "<bookmark_value>LEFTB function</bookmark_value>"
msgstr "<bookmark_value>funció ESQUERRAB</bookmark_value>"
-#. zjvg5
+#. VRKR9
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id2947083\n"
"help.text"
-msgid "<variable id=\"leftbvar\"><link href=\"text/scalc/01/04060110.xhp#leftb\" name=\"LEFTB\">LEFTB</link></variable>"
-msgstr "<variable id=\"leftbvar\"><link href=\"text/scalc/01/04060110.xhp#leftb\" name=\"LEFTB\">ESQUERRAB</link></variable>"
+msgid "<variable id=\"leftbvar\"><link href=\"text/scalc/01/04060110.xhp#leftb\">LEFTB</link></variable>"
+msgstr "<variable id=\"leftbvar\"><link href=\"text/scalc/01/04060110.xhp#leftb\">ESQUERRAB</link></variable>"
#. f3mWg
#: 04060110.xhp
@@ -21230,14 +21230,14 @@ msgctxt ""
msgid "<bookmark_value>LENB function</bookmark_value>"
msgstr "<bookmark_value>funció LONGB</bookmark_value>"
-#. e5FBE
+#. cUDuG
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id2956110\n"
"help.text"
-msgid "<variable id=\"lenbvar\"><link href=\"text/scalc/01/04060110.xhp#lenb\" name=\"LENB\">LENB</link></variable>"
-msgstr "<variable id=\"lenbvar\"><link href=\"text/scalc/01/04060110.xhp#lenb\" name=\"LENB\">LONGB</link></variable>"
+msgid "<variable id=\"lenbvar\"><link href=\"text/scalc/01/04060110.xhp#lenb\">LENB</link></variable>"
+msgstr "<variable id=\"lenbvar\"><link href=\"text/scalc/01/04060110.xhp#lenb\">LONGB</link></variable>"
#. Cwz9S
#: 04060110.xhp
@@ -21446,13 +21446,13 @@ msgctxt ""
msgid "<bookmark_value>MIDB function</bookmark_value>"
msgstr "<bookmark_value>funció MIGB</bookmark_value>"
-#. BxEFF
+#. XCNCE
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id2954589\n"
"help.text"
-msgid "<variable id=\"midbvar\"><link href=\"text/scalc/01/04060110.xhp#midb\" name=\"MIDB\">MIDB</link></variable>"
+msgid "<variable id=\"midbvar\"><link href=\"text/scalc/01/04060110.xhp#midb\">MIDB</link></variable>"
msgstr ""
#. Qe8mw
@@ -21671,14 +21671,14 @@ msgctxt ""
msgid "REPLACE"
msgstr "REEMPLAÇA"
-#. 5jBhB
+#. ZveMF
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3148925\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ERSETZEN\">Replaces part of a text string with a different text string.</ahelp> This function can be used to replace both characters and numbers (which are automatically converted to text). The result of the function is always displayed as text. If you intend to perform further calculations with a number which has been replaced by text, you will need to convert it back to a number using the <link href=\"text/scalc/01/04060110.xhp\" name=\"VALUE\">VALUE</link> function."
-msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\">Reemplaça una part d'una cadena de text per una altra cadena de text.</ahelp> Esta funció es pot utilitzar per reemplaçar caràcters i nombres (que es converteixen en text automàticament). El resultat de la funció sempre es mostra en forma de text. Si voleu fer més càlculs amb un nombre que s'ha reemplaçat per text, l'haureu de tornar a convertir en un nombre mitjançant la funció <link href=\"text/scalc/01/04060110.xhp\" name=\"VALOR\">VALOR</link>."
+msgid "<ahelp hid=\"HID_FUNC_ERSETZEN\">Replaces part of a text string with a different text string.</ahelp> This function can be used to replace both characters and numbers (which are automatically converted to text). The result of the function is always displayed as text. If you intend to perform further calculations with a number which has been replaced by text, you will need to convert it back to a number using the <link href=\"text/scalc/01/04060110.xhp\">VALUE</link> function."
+msgstr "<ahelp hid=\"HID_FUNC_ERSETZEN\">Reemplaça una part d'una cadena de text per una altra cadena de text.</ahelp> Esta funció es pot utilitzar per reemplaçar caràcters i nombres (que es converteixen en text automàticament). El resultat de la funció sempre es mostra en forma de text. Si voleu fer més càlculs amb un nombre que s'ha reemplaçat per text, l'haureu de tornar a convertir en un nombre mitjançant la funció <link href=\"text/scalc/01/04060110.xhp\">VALOR</link>."
#. tHZtF
#: 04060110.xhp
@@ -21806,13 +21806,13 @@ msgctxt ""
msgid "<item type=\"input\">=REPT(\"Good morning\";2)</item> returns Good morningGood morning."
msgstr "<item type=\"input\">=REPT(\"Bon dia\";2)</item> retorna Bon diaBon dia."
-#. 9Dbjv
+#. SNGUL
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id381626381556310\n"
"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPT\" name=\"REPT_Wiki\">REPT</link> wiki page for more details about this function."
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPT\">REPT</link> wiki page for more details about this function."
msgstr ""
#. mtFNA
@@ -21887,13 +21887,13 @@ msgctxt ""
msgid "<bookmark_value>RIGHTB function</bookmark_value>"
msgstr "<bookmark_value>funció DRETAB</bookmark_value>"
-#. YMkyY
+#. hxvDA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"hd_id2949805\n"
"help.text"
-msgid "<variable id=\"rightbvar\"><link href=\"text/scalc/01/04060110.xhp#rightb\" name=\"RIGHTB\">RIGHTB</link></variable>"
+msgid "<variable id=\"rightbvar\"><link href=\"text/scalc/01/04060110.xhp#rightb\">RIGHTB</link></variable>"
msgstr ""
#. gvrHM
@@ -22283,14 +22283,14 @@ msgctxt ""
msgid "<item type=\"input\">=TEXT(\"xyz\";\"=== @ ===\")</item> returns the text === xyz ==="
msgstr ""
-#. yhDcc
+#. YAD8g
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3145364\n"
"help.text"
-msgid "See also <link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>: custom format codes defined by the user."
-msgstr "Vegeu també <link href=\"text/shared/01/05020301.xhp\" name=\"Codis de format numèric\">Codis de format numèric</link>: codis de format personalitzats definits per l'usuari."
+msgid "See also <link href=\"text/shared/01/05020301.xhp\">Number format codes</link>: custom format codes defined by the user."
+msgstr "Vegeu també <link href=\"text/shared/01/05020301.xhp\">Codis de format numèric</link>: codis de format personalitzats definits per l'usuari."
#. wFCZg
#: 04060110.xhp
@@ -22526,14 +22526,14 @@ msgctxt ""
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>complements; funcions</bookmark_value><bookmark_value>funcions; funcions de complements</bookmark_value><bookmark_value>Auxiliar de funcions; complements</bookmark_value>"
-#. igy2a
+#. EMbBZ
#: 04060111.xhp
msgctxt ""
"04060111.xhp\n"
"hd_id3150870\n"
"help.text"
-msgid "<variable id=\"head_addin\"><link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in Functions\">Add-in Functions</link></variable>"
-msgstr "<variable id=\"head_addin\"><link href=\"text/scalc/01/04060111.xhp\" name=\"Funcions de complements\">Funcions de complements</link></variable>"
+msgid "<variable id=\"head_addin\"><link href=\"text/scalc/01/04060111.xhp\">Add-in Functions</link></variable>"
+msgstr "<variable id=\"head_addin\"><link href=\"text/scalc/01/04060111.xhp\">Funcions de complements</link></variable>"
#. Qq6yz
#: 04060111.xhp
@@ -22850,13 +22850,13 @@ msgctxt ""
msgid "<input>=ROT13(\"Gur Qbphzrag Sbhaqngvba jnf sbhaqrq va Frcgrzore 2010.\")</input> returns the string \"The Document Foundation was founded in September 2010.\". Notice how spaces, digits, and full stops are unaffected by ROT13."
msgstr ""
-#. 4TMAT
+#. Hzbcx
#: 04060111.xhp
msgctxt ""
"04060111.xhp\n"
"par_id221626469509161\n"
"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/ROT13\" name=\"ROT13_Wiki\">ROT13</link> wiki page for more details about this function."
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/ROT13\">ROT13</link> wiki page for more details about this function."
msgstr ""
#. CFJsA
@@ -23165,14 +23165,14 @@ msgctxt ""
msgid "Add-ins through %PRODUCTNAME API"
msgstr "Complements a través de l'API del %PRODUCTNAME"
-#. hJWzo
+#. WyzMJ
#: 04060111.xhp
msgctxt ""
"04060111.xhp\n"
"par_id3149351\n"
"help.text"
-msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">API</link>."
-msgstr "També es poden implementar complements a través de l'<link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">API</link> del %PRODUCTNAME."
+msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"https://api.libreoffice.org/\">API</link>."
+msgstr "També es poden implementar complements a través de l'<link href=\"https://api.libreoffice.org/\">API</link> del %PRODUCTNAME."
#. KziFV
#: 04060112.xhp
@@ -23201,14 +23201,14 @@ msgctxt ""
msgid "Add-in for Programming in $[officename] Calc"
msgstr "Complement de programació del $[officename] Calc"
-#. 38Xcw
+#. 7vLLV
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
"par_id3147001\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 "El mètode que es descriu tot seguit per ampliar el Calc amb complements no està actualitzat. Les interfícies segueixen sent vàlides i compatibles per assegurar la compatibilitat amb els complements existents; no obstant això, si voleu programar complements nous, cal que utilitzeu les noves <link href=\"text/shared/guide/integratinguno.xhp\" name=\"funcions API\">funcions API</link>."
+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\">API functions</link>."
+msgstr "El mètode que es descriu tot seguit per ampliar el Calc amb complements no està actualitzat. Les interfícies segueixen sent vàlides i compatibles per assegurar la compatibilitat amb els complements existents; no obstant això, si voleu programar complements nous, cal que utilitzeu les noves <link href=\"text/shared/guide/integratinguno.xhp\">funcions API</link>."
#. aR3NC
#: 04060112.xhp
@@ -23255,14 +23255,14 @@ msgctxt ""
msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library</caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
msgstr ""
-#. DPTDC
+#. Q8NDw
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
"par_id3148837\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 "En tots els casos, les funcions administratives <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> i <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> han d'existir. Gràcies a estes funcions, es poden determinar les funcions, els tipus de paràmetres i els valors de retorn. Com a valors de retorn, s'admeten els tipus Doble i Cadena. Com a paràmetres, s'admeten les àrees de cel·les <link href=\"text/scalc/01/04060112.xhp\" name=\"Matriu doble\">Matriu doble</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"Matriu de cadena\">Matriu de cadena</link> i <link href=\"text/scalc/01/04060112.xhp\" name=\"Matriu de cel·les\">Matriu de cel·les</link>."
+msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\">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\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\">Cell Array</link> are supported."
+msgstr "En tots els casos, les funcions administratives <link href=\"text/scalc/01/04060112.xhp\">GetFunctionCount</link> i <link href=\"text/scalc/01/04060112.xhp\">GetFunctionData</link> han d'existir. Gràcies a estes funcions, es poden determinar les funcions, els tipus de paràmetres i els valors de retorn. Com a valors de retorn, s'admeten els tipus Doble i Cadena. Com a paràmetres, s'admeten les àrees de cel·les <link href=\"text/scalc/01/04060112.xhp\">Matriu doble</link>, <link href=\"text/scalc/01/04060112.xhp\">Matriu de cadena</link> i <link href=\"text/scalc/01/04060112.xhp\">Matriu de cel·les</link>."
#. ECARD
#: 04060112.xhp
@@ -23471,13 +23471,13 @@ msgctxt ""
msgid "<emph>Output</emph>: Resulting value"
msgstr ""
-#. ErpXM
+#. kqhgX
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
"par_id3159119\n"
"help.text"
-msgid "<emph>Input</emph>: 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."
+msgid "<emph>Input</emph>: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\">Cell area</link> is an array of types double array, string array, or cell array."
msgstr ""
#. BJLCP
@@ -23489,14 +23489,14 @@ msgctxt ""
msgid "GetFunctionCount()"
msgstr "GetFunctionCount()"
-#. Hs7Du
+#. QCZLG
#: 04060112.xhp
msgctxt ""
"04060112.xhp\n"
"par_id3152981\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 "Retorna el nombre de funcions sense les funcions de gestió del paràmetre de referència. Cada funció té un número únic entre el 0 i nCount-1. Este número és necessari per a les funcions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> i <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link>."
+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\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\">GetParameterDescription</link> functions later."
+msgstr "Retorna el nombre de funcions sense les funcions de gestió del paràmetre de referència. Cada funció té un número únic entre el 0 i nCount-1. Este número és necessari per a les funcions <link href=\"text/scalc/01/04060112.xhp\">GetFunctionData</link> i <link href=\"text/scalc/01/04060112.xhp\">GetParameterDescription</link>."
#. w5DKB
#: 04060112.xhp
@@ -24641,22 +24641,22 @@ msgctxt ""
msgid "<bookmark_value>add-ins; analysis functions</bookmark_value> <bookmark_value>analysis functions</bookmark_value>"
msgstr "<bookmark_value>complements; funcions d'anàlisi</bookmark_value><bookmark_value>funcions d'anàlisi</bookmark_value>"
-#. tbHXD
+#. J8oFC
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"hd_id3152871\n"
"help.text"
-msgid "<variable id=\"head_addin_analysis_one\"><link href=\"text/scalc/01/04060115.xhp\" name=\"Add-in Functions, List of Analysis Functions Part One\">Add-in Functions, List of Analysis Functions Part One</link></variable>"
+msgid "<variable id=\"head_addin_analysis_one\"><link href=\"text/scalc/01/04060115.xhp\">Add-in Functions, List of Analysis Functions Part One</link></variable>"
msgstr ""
-#. 7ZBxx
+#. MjZD4
#: 04060115.xhp
msgctxt ""
"04060115.xhp\n"
"par_id961592361784406\n"
"help.text"
-msgid "The Add-in functions are supplied by the <link href=\"text/sbasic/shared/calc_functions.xhp\" name=\"addinanalysis\">UNO <literal>com.sun.star.sheet.addin.Analysis</literal> service</link>."
+msgid "The Add-in functions are supplied by the <link href=\"text/sbasic/shared/calc_functions.xhp\">UNO <literal>com.sun.star.sheet.addin.Analysis</literal> service</link>."
msgstr ""
#. zKa2G
@@ -25865,22 +25865,22 @@ msgctxt ""
msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
msgstr "<bookmark_value>nombres imaginaris en les funcions d'anàlisi</bookmark_value><bookmark_value>nombres complexos en les funcions d'anàlisi</bookmark_value>"
-#. Be5xp
+#. jur8b
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
"hd_id3154659\n"
"help.text"
-msgid "<variable id=\"head_addin_analysis_two\"><link href=\"text/scalc/01/04060116.xhp\" name=\"Add-in Functions, List of Analysis Functions Part Two\">Add-in Functions, List of Analysis Functions Part Two</link></variable>"
+msgid "<variable id=\"head_addin_analysis_two\"><link href=\"text/scalc/01/04060116.xhp\">Add-in Functions, List of Analysis Functions Part Two</link></variable>"
msgstr ""
-#. goyGU
+#. H974B
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
"par_id961592361784406\n"
"help.text"
-msgid "The Add-in functions are supplied by the <link href=\"text/sbasic/shared/calc_functions.xhp\" name=\"addinanalysis\">UNO <literal>com.sun.star.sheet.addin.Analysis</literal> service</link>."
+msgid "The Add-in functions are supplied by the <link href=\"text/sbasic/shared/calc_functions.xhp\">UNO <literal>com.sun.star.sheet.addin.Analysis</literal> service</link>."
msgstr ""
#. DBHCw
@@ -27674,13 +27674,13 @@ msgctxt ""
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\">Calcula la taxa interna de rendibilitat per a una llista de pagaments que es fan en diverses dates.</ahelp> El càlcul es fa sobre la base de 365 dies per any; s'ignoren els anys de traspàs."
-#. ezGx6
+#. DVm9K
#: 04060118.xhp
msgctxt ""
"04060118.xhp\n"
"par_idN10E62\n"
"help.text"
-msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060103.xhp#irr\" name=\"IRR\">IRR</link> function."
+msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060103.xhp#irr\">IRR</link> function."
msgstr ""
#. CVXB7
@@ -27773,13 +27773,13 @@ msgctxt ""
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\">Calcula el valor del capital (valor actual net) d'una llista de pagaments que tenen lloc en dates diferents.</ahelp> El càlcul es basa en 365 dies per any, sense tindre en compte els anys de traspàs."
-#. cvXHz
+#. sodhg
#: 04060118.xhp
msgctxt ""
"04060118.xhp\n"
"par_idN11138\n"
"help.text"
-msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060119.xhp#npv\" name=\"NPV\">NPV</link> function."
+msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060119.xhp#npv\">NPV</link> function."
msgstr ""
#. D5fSB
@@ -28979,23 +28979,23 @@ msgctxt ""
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. El període de pagament cobreix 12,02 períodes."
-#. AvdqB
+#. GqwAw
#: 04060118.xhp
msgctxt ""
"04060118.xhp\n"
"par_id3150309\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=\"Torna a Funcions financeres, primera part\">Torna a Funcions financeres, primera part</link>"
+msgid "<link href=\"text/scalc/01/04060103.xhp\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\">Torna a Funcions financeres, primera part</link>"
-#. 7oEKT
+#. fSmsA
#: 04060118.xhp
msgctxt ""
"04060118.xhp\n"
"par_id3153163\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=\"Torna a Funcions financeres, segona part\">Torna a Funcions financeres, segona part</link>"
+msgid "<link href=\"text/scalc/01/04060119.xhp\">Back to Financial Functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060119.xhp\">Torna a Funcions financeres, segona part</link>"
#. 4tGFf
#: 04060119.xhp
@@ -29015,23 +29015,23 @@ msgctxt ""
msgid "Financial Functions Part Two"
msgstr "Funcions financeres, segona part"
-#. iq5Jt
+#. asYyP
#: 04060119.xhp
msgctxt ""
"04060119.xhp\n"
"par_id3148742\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=\"Torna a Funcions financeres, primera part\">Torna a Funcions financeres, primera part</link>"
+msgid "<link href=\"text/scalc/01/04060103.xhp\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\">Torna a Funcions financeres, primera part</link>"
-#. vjtYs
+#. ABzgU
#: 04060119.xhp
msgctxt ""
"04060119.xhp\n"
"par_id3151341\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
-msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Segueix a Funcions financeres, tercera part\">Segueix a Funcions financeres, tercera part</link>"
+msgid "<link href=\"text/scalc/01/04060118.xhp\">Forward to Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\">Segueix a Funcions financeres, tercera part</link>"
#. wkvF6
#: 04060119.xhp
@@ -30230,13 +30230,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_NBW\">Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value.</ahelp>"
msgstr ""
-#. Lrg8g
+#. KTDpV
#: 04060119.xhp
msgctxt ""
"04060119.xhp\n"
"par_idN111381\n"
"help.text"
-msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">XNPV</link> function."
+msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xnpv\">XNPV</link> function."
msgstr ""
#. ZxBQz
@@ -31301,23 +31301,23 @@ msgctxt ""
msgid "<input>=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45)</input> returns 0.091417 or 9.1417 per cent."
msgstr ""
-#. NF5nu
+#. CVksW
#: 04060119.xhp
msgctxt ""
"04060119.xhp\n"
"par_id3148546\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=\"Torna a Funcions financeres, primera part\">Torna a Funcions financeres, primera part</link>"
+msgid "<link href=\"text/scalc/01/04060103.xhp\">Back to Financial Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060103.xhp\">Torna a Funcions financeres, primera part</link>"
-#. 2fAip
+#. 37Fny
#: 04060119.xhp
msgctxt ""
"04060119.xhp\n"
"par_id3146762\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
-msgstr "<link href=\"text/scalc/01/04060118.xhp\" name=\"Segueix a Funcions financeres, tercera part\">Segueix a Funcions financeres, tercera part</link>"
+msgid "<link href=\"text/scalc/01/04060118.xhp\">Forward to Financial Functions Part Three</link>"
+msgstr "<link href=\"text/scalc/01/04060118.xhp\">Segueix a Funcions financeres, tercera part</link>"
#. PE8Nt
#: 04060120.xhp
@@ -33758,14 +33758,14 @@ msgctxt ""
msgid "Statistical Functions Part Two"
msgstr "Funcions estadístiques, segona part"
-#. MAPpV
+#. LqXEV
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
"hd_id3154372\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=\"Funcions estadístiques, segona part\">Funcions estadístiques, segona part</link></variable>"
+msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\">Statistical Functions Part Two</link></variable>"
+msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\">Funcions estadístiques, segona part</link></variable>"
#. dGFBq
#: 04060182.xhp
@@ -35189,13 +35189,13 @@ msgctxt ""
msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
msgstr "<emph>Sigma</emph> (opcional) és la desviació estàndard coneguda de la població. Si s'omet, es fa servir la desviació estàndard de la mostra donada."
-#. EpJ8j
+#. nAPgU
#: 04060182.xhp
msgctxt ""
"04060182.xhp\n"
"par_id0305200911372999\n"
"help.text"
-msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/ZTEST function\">Wiki page</link>."
+msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
msgstr ""
#. BM9oD
@@ -35513,14 +35513,14 @@ msgctxt ""
msgid "Statistical Functions Part Three"
msgstr "Funcions estadístiques, tercera part"
-#. apt3v
+#. vPFBu
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
"hd_id3166425\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=\"Funcions estadístiques, tercera part\">Funcions estadístiques, tercera part</link></variable>"
+msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\">Statistical Functions Part Three</link></variable>"
+msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\">Funcions estadístiques, tercera part</link></variable>"
#. bB7mP
#: 04060183.xhp
@@ -35567,13 +35567,13 @@ msgctxt ""
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph>Dades</emph> és l'interval de cel·les de les dades."
-#. PqrWi
+#. TvB38
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
"par_id3156448\n"
"help.text"
-msgid "<emph>RankC</emph> is the ranking of the value. If RankC is an array, the function becomes an <link href=\"text/scalc/01/04060107.xhp\" name=\"array function\">array function</link>."
+msgid "<emph>RankC</emph> is the ranking of the value. If RankC is an array, the function becomes an <link href=\"text/scalc/01/04060107.xhp\">array function</link>."
msgstr ""
#. 9gMJx
@@ -35639,13 +35639,13 @@ msgctxt ""
msgid "<emph>Data</emph> is the cell range of data."
msgstr "<emph>Dades</emph> és l'interval de cel·les de les dades."
-#. oJV9f
+#. xBJHr
#: 04060183.xhp
msgctxt ""
"04060183.xhp\n"
"par_id3155094\n"
"help.text"
-msgid "<emph>RankC</emph> is the rank of the value. If RankC is an array, the function becomes an <link href=\"text/scalc/01/04060107.xhp\" name=\"array function\">array function</link>."
+msgid "<emph>RankC</emph> is the rank of the value. If RankC is an array, the function becomes an <link href=\"text/scalc/01/04060107.xhp\">array function</link>."
msgstr ""
#. 8BLf3
@@ -36584,14 +36584,14 @@ msgctxt ""
msgid "Statistical Functions Part Four"
msgstr "Funcions estadístiques, quarta part"
-#. YxGDR
+#. 6bkGV
#: 04060184.xhp
msgctxt ""
"04060184.xhp\n"
"hd_id3153415\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=\"Funcions estadístiques, quarta part\">Funcions estadístiques, quarta part</link></variable>"
+msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\">Statistical Functions Part Four</link></variable>"
+msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\">Funcions estadístiques, quarta part</link></variable>"
#. CVfDF
#: 04060184.xhp
@@ -38636,14 +38636,14 @@ msgctxt ""
msgid "Statistical Functions Part Five"
msgstr "Funcions estadístiques, cinquena part"
-#. C2cxc
+#. JzHCG
#: 04060185.xhp
msgctxt ""
"04060185.xhp\n"
"hd_id3147072\n"
"help.text"
-msgid "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">Statistical Functions Part Five</link></variable>"
-msgstr "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Funcions estadístiques, cinquena part\">Funcions estadístiques, cinquena part</link></variable>"
+msgid "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\">Statistical Functions Part Five</link></variable>"
+msgstr "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\">Funcions estadístiques, cinquena part</link></variable>"
#. REYKA
#: 04060185.xhp
@@ -41174,13 +41174,13 @@ msgctxt ""
msgid "<item type=\"input\">=WEIBULL(2;1;1;1)</item> returns 0.86."
msgstr "<item type=\"input\">=WEIBULL(2;1;1;1)</item> retorna 0,86."
-#. bK3hG
+#. Lb5Q7
#: 04060185.xhp
msgctxt ""
"04060185.xhp\n"
"par_id0305200911372899\n"
"help.text"
-msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/WEIBULL function\">Wiki page</link>."
+msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\">Wiki page</link>."
msgstr ""
#. AC9jG
@@ -41291,13 +41291,13 @@ msgctxt ""
msgid "<item type=\"input\">=WEIBULL.DIST(2;1;1;1)</item> returns 0.8646647168."
msgstr "<item type=\"input\">=DIST.WEIBULL(2;1;1;1)</item> retorna 0.8646647168."
-#. 8r672
+#. UoyLi
#: 04060185.xhp
msgctxt ""
"04060185.xhp\n"
"par_id2905200911372899\n"
"help.text"
-msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/WEIBULL function\">Wiki page</link>."
+msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\">Wiki page</link>."
msgstr ""
#. ZC7eG
@@ -41912,59 +41912,59 @@ msgctxt ""
msgid "Named Ranges and Expressions"
msgstr "Intervals i expressions amb nom"
-#. 48S8L
+#. ExSd6
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
"hd_id3153951\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Noms\">Intervals i expressions amb nom</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\">Named Ranges and Expressions</link>"
+msgstr "<link href=\"text/scalc/01/04070000.xhp\">Intervals i expressions amb nom</link>"
-#. qg7Gc
+#. 4Ba2m
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
"par_id3145801\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=\".\">Vos permet donar un nom a les diferents seccions del full de càlcul.</ahelp> Si doneu un nom a les diferents seccions, podreu <link href=\"text/scalc/01/02110000.xhp\" name=\"navegar\">navegar</link> fàcilment pels documents del full de càlcul i trobar informació específica."
+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\">navigate</link> through the spreadsheet documents and find specific information."
+msgstr "<ahelp hid=\".\">Vos permet donar un nom a les diferents seccions del full de càlcul.</ahelp> Si doneu un nom a les diferents seccions, podreu <link href=\"text/scalc/01/02110000.xhp\">navegar</link> fàcilment pels documents del full de càlcul i trobar informació específica."
-#. vPPRA
+#. EUDhz
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
"hd_id3153878\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Defineix\">Defineix</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\">Defineix</link>"
-#. Vr7iH
+#. DAECQ
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
"hd_id3146969\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insereix\">Insereix</link>"
+msgid "<link href=\"text/scalc/01/04070200.xhp\">Insert</link>"
+msgstr "<link href=\"text/scalc/01/04070200.xhp\">Insereix</link>"
-#. ZXCfR
+#. jFty7
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
"hd_id3155764\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
-msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Aplica\">Aplica</link>"
+msgid "<link href=\"text/scalc/01/04070300.xhp\">Apply</link>"
+msgstr "<link href=\"text/scalc/01/04070300.xhp\">Aplica</link>"
-#. rFeRo
+#. F4HrF
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
"hd_id3156382\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
-msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Etiquetes\">Etiquetes</link>"
+msgid "<link href=\"text/scalc/01/04070400.xhp\">Labels</link>"
+msgstr "<link href=\"text/scalc/01/04070400.xhp\">Etiquetes</link>"
#. WoeVL
#: 04070100.xhp
@@ -42128,14 +42128,14 @@ msgctxt ""
msgid "Filter"
msgstr "Filtre"
-#. q7HNE
+#. VivTh
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"par_id3155766\n"
"help.text"
-msgid "<ahelp hid=\".\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
-msgstr "<ahelp hid=\".\">Defineix que cal utilitzar l'àrea seleccionada en un <link href=\"text/scalc/01/12040300.xhp\" name=\"filtre avançat\">filtre avançat</link>.</ahelp>"
+msgid "<ahelp hid=\".\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\">advanced filter</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Defineix que cal utilitzar l'àrea seleccionada en un <link href=\"text/scalc/01/12040300.xhp\">filtre avançat</link>.</ahelp>"
#. 2Lddt
#: 04070100.xhp
@@ -42596,31 +42596,31 @@ msgctxt ""
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>finestra de la llista de fórmules</bookmark_value> <bookmark_value>finestra de la llista de funcions</bookmark_value> <bookmark_value>inserció de funcions; finestra de la llista de funcions</bookmark_value>"
-#. SFavL
+#. A28i9
#: 04080000.xhp
msgctxt ""
"04080000.xhp\n"
"hd_id3154126\n"
"help.text"
-msgid "<variable id=\"function_list_title\"><link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link></variable>"
-msgstr "<variable id=\"function_list_title\"><link href=\"text/scalc/01/04080000.xhp\" name=\"Llista de funcions\">Llista de funcions</link></variable>"
+msgid "<variable id=\"function_list_title\"><link href=\"text/scalc/01/04080000.xhp\">Function List</link></variable>"
+msgstr "<variable id=\"function_list_title\"><link href=\"text/scalc/01/04080000.xhp\">Llista de funcions</link></variable>"
-#. NSY5f
+#. GLKJp
#: 04080000.xhp
msgctxt ""
"04080000.xhp\n"
"par_id3151118\n"
"help.text"
-msgid "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Opens the Function List deck of the Sidebar, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> deck 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=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Obri la finestra el la llista de funcions en la barra lateral, que mostra totes les funcions que es poden inserir al document.</ahelp></variable> La <emph>Llista de funcions</emph> és paregut a la pestanya <emph>Funcions</emph> de l'<link href=\"text/scalc/01/04060000.xhp\" name=\"Auxiliar de funcions\">Auxiliar de funcions</link>. Les funcions s'insereixen amb espais reservats que s'han de reemplaçar pels valors triats."
+msgid "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Opens the Function List deck of the Sidebar, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> deck is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
+msgstr "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Obri la finestra el la llista de funcions en la barra lateral, que mostra totes les funcions que es poden inserir al document.</ahelp></variable> La <emph>Llista de funcions</emph> és paregut a la pestanya <emph>Funcions</emph> de l'<link href=\"text/scalc/01/04060000.xhp\">Auxiliar de funcions</link>. Les funcions s'insereixen amb espais reservats que s'han de reemplaçar pels valors triats."
-#. kJGdD
+#. J3Ts4
#: 04080000.xhp
msgctxt ""
"04080000.xhp\n"
"par_id3152576\n"
"help.text"
-msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#docking\" 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."
+msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#docking\">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 ""
#. tu2NZ
@@ -42695,13 +42695,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
-#. rGHoi
+#. YRESE
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
"hd_id3145785\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">External Links</link>"
+msgid "<link href=\"text/scalc/01/04090000.xhp\">External Links</link>"
msgstr ""
#. SaAut
@@ -42731,13 +42731,13 @@ msgctxt ""
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> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
-#. oomVx
+#. UBArX
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
"par_id621519313666202\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"linkname\">A dialog for CSV data import</link> appears when linking to external CSV file."
+msgid "<link href=\"text/shared/00/00000208.xhp\">A dialog for CSV data import</link> appears when linking to external CSV file."
msgstr ""
#. dEiJ7
@@ -42821,14 +42821,14 @@ msgctxt ""
msgid "Cell Protection"
msgstr "Protecció de cel·les"
-#. 7ynzR
+#. 3tpMG
#: 05020600.xhp
msgctxt ""
"05020600.xhp\n"
"hd_id3145119\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=\"Protecció de cel·les\">Protecció de cel·les</link>"
+msgid "<link href=\"text/scalc/01/05020600.xhp\">Cell Protection</link>"
+msgstr "<link href=\"text/scalc/01/05020600.xhp\">Protecció de cel·les</link>"
#. SwYVx
#: 05020600.xhp
@@ -42956,14 +42956,14 @@ msgctxt ""
msgid "Row"
msgstr "Fila"
-#. 65bGM
+#. FPbpo
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
"hd_id3147228\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
-msgstr "<link href=\"text/scalc/01/05030000.xhp\" name=\"Fila\">Fila</link>"
+msgid "<link href=\"text/scalc/01/05030000.xhp\">Row</link>"
+msgstr "<link href=\"text/scalc/01/05030000.xhp\">Fila</link>"
#. mX88W
#: 05030000.xhp
@@ -42974,23 +42974,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
msgstr "<ahelp hid=\".\">Defineix l'alçària de la fila i amaga o mostra les files seleccionades.</ahelp>"
-#. VHCeF
+#. Z9fBz
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
"hd_id3155132\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
-msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Alçària\">Alçària</link>"
+msgid "<link href=\"text/shared/01/05340100.xhp\">Height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\">Alçària</link>"
-#. xdW29
+#. kg2dS
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
"hd_id3155854\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=\"Alçària òptima\">Alçària òptima</link>"
+msgid "<link href=\"text/scalc/01/05030200.xhp\">Optimal Height</link>"
+msgstr "<link href=\"text/scalc/01/05030200.xhp\">Alçària òptima</link>"
#. MYt76
#: 05030200.xhp
@@ -43019,13 +43019,13 @@ msgctxt ""
msgid "Optimal Row Heights"
msgstr "Alçades òptimes de les files"
-#. 2YhvB
+#. 5STLA
#: 05030200.xhp
msgctxt ""
"05030200.xhp\n"
"par_id3154758\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#measurement_units\" name=\"units of measure\">units of measure</link>."
+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#measurement_units\">units of measure</link>."
msgstr ""
#. hCkvc
@@ -43082,14 +43082,14 @@ msgctxt ""
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>fulls de càlcul; amagar funcions</bookmark_value><bookmark_value>amagar; files</bookmark_value><bookmark_value>amagar; columnes</bookmark_value><bookmark_value>amagar; fulls</bookmark_value><bookmark_value>fulls;amagar</bookmark_value><bookmark_value>columnes;amagar</bookmark_value><bookmark_value>files;amagar</bookmark_value>"
-#. 8fAGo
+#. eY759
#: 05030300.xhp
msgctxt ""
"05030300.xhp\n"
"hd_id3147265\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
-msgstr "<link href=\"text/scalc/01/05030300.xhp\" name=\"Amaga\">Amaga</link>"
+msgid "<link href=\"text/scalc/01/05030300.xhp\">Hide</link>"
+msgstr "<link href=\"text/scalc/01/05030300.xhp\">Amaga</link>"
#. efsZE
#: 05030300.xhp
@@ -43109,14 +43109,14 @@ msgctxt ""
msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Rows - Hide </emph>or<emph> Format - Columns - Hide</emph>."
msgstr ""
-#. nuUMt
+#. 8yKmD
#: 05030300.xhp
msgctxt ""
"05030300.xhp\n"
"par_id3147427\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 "Podeu amagar un full seleccionant la pestanya del full i triant <emph>Format ▸ Full ▸ Amaga</emph>. Els fulls amagats no s'imprimeixen, si no és que apareixen dins d'una <link href=\"text/scalc/01/05080000.xhp\" name=\"àrea d'impressió\">àrea d'impressió</link>."
+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\">print range</link>."
+msgstr "Podeu amagar un full seleccionant la pestanya del full i triant <emph>Format ▸ Full ▸ Amaga</emph>. Els fulls amagats no s'imprimeixen, si no és que apareixen dins d'una <link href=\"text/scalc/01/05080000.xhp\">àrea d'impressió</link>."
#. 6Abxr
#: 05030300.xhp
@@ -43145,13 +43145,13 @@ msgctxt ""
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 "Seleccioneu l'àrea que inclou els objectes amagats. També podeu utilitzar el quadre que hi ha l'angle sobre la fila 1 i al costat de la columna A. Per als fulls, este pas no és necessari."
-#. TmjTu
+#. 7fkiG
#: 05030300.xhp
msgctxt ""
"05030300.xhp\n"
"par_id5532090\n"
"help.text"
-msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Rows/Columns - Show\">Format - Rows/Columns - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+msgid "Choose <link href=\"text/scalc/01/05030400.xhp\">Format - Rows/Columns - Show</link> or <link href=\"text/scalc/01/05050300.xhp\">Format - Sheet - Show</link>."
msgstr ""
#. cGFcB
@@ -43172,14 +43172,14 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
msgstr "<bookmark_value>fulls de càlcul; mostrar columnes</bookmark_value><bookmark_value>mostrar; columnes</bookmark_value><bookmark_value>mostrar; files</bookmark_value>"
-#. q3EGA
+#. i3RrD
#: 05030400.xhp
msgctxt ""
"05030400.xhp\n"
"hd_id3147264\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
-msgstr "<link href=\"text/scalc/01/05030400.xhp\" name=\"Mostra\">Mostra</link>"
+msgid "<link href=\"text/scalc/01/05030400.xhp\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05030400.xhp\">Mostra</link>"
#. KCEi2
#: 05030400.xhp
@@ -43226,14 +43226,14 @@ msgctxt ""
msgid "Column"
msgstr "Columna"
-#. f4QXn
+#. mdyFG
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3155628\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
-msgstr "<link href=\"text/scalc/01/05040000.xhp\" name=\"Columna\">Columna</link>"
+msgid "<link href=\"text/scalc/01/05040000.xhp\">Column</link>"
+msgstr "<link href=\"text/scalc/01/05040000.xhp\">Columna</link>"
#. DDqh8
#: 05040000.xhp
@@ -43244,23 +43244,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
msgstr "<ahelp hid=\".\">Estableix l'amplària de la columna i amaga o mostra les columnes seleccionades.</ahelp>"
-#. bGVCi
+#. TrJFH
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3150398\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
-msgstr "<link href=\"text/shared/01/05340200.xhp\" name=\"Amplària\">Amplària</link>"
+msgid "<link href=\"text/shared/01/05340200.xhp\">Width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\">Amplària</link>"
-#. Aw7uF
+#. NA5bG
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3145171\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=\"Amplària òptima\">Amplària òptima</link>"
+msgid "<link href=\"text/scalc/01/05040200.xhp\">Optimal Width</link>"
+msgstr "<link href=\"text/scalc/01/05040200.xhp\">Amplària òptima</link>"
#. QNy4Y
#: 05040200.xhp
@@ -43289,14 +43289,14 @@ msgctxt ""
msgid "Optimal Column Width"
msgstr "Amplària òptima de columna"
-#. oVYyg
+#. ZrhKb
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"par_id3145068\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\">Defineix l'amplària òptima de columna per a les columnes seleccionades.</ahelp></variable> L'amplària òptima de columna depèn de l'entrada més llarga dins d'una columna. Podeu triar una de les <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"unitats de mesura\">unitats de mesura</link> disponibles."
+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\">measurement units</link>."
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defineix l'amplària òptima de columna per a les columnes seleccionades.</ahelp></variable> L'amplària òptima de columna depèn de l'entrada més llarga dins d'una columna. Podeu triar una de les <link href=\"text/shared/00/00000003.xhp#metrik\">unitats de mesura</link> disponibles."
#. dYhnc
#: 05040200.xhp
@@ -43352,14 +43352,14 @@ msgctxt ""
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>disposició complexa de text;fulls de dreta a esquerra</bookmark_value><bookmark_value>fulls;dreta a esquerra</bookmark_value><bookmark_value>text de dreta a esquerra;fulls</bookmark_value>"
-#. kVAsn
+#. YAkyG
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3155923\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/05050000.xhp\" name=\"Full\">Full</link>"
+msgid "<link href=\"text/scalc/01/05050000.xhp\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05050000.xhp\">Full</link>"
#. 3DmMF
#: 05050000.xhp
@@ -43370,23 +43370,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
msgstr "<ahelp hid=\".\">Defineix el nom del full i amaga o mostra els fulls seleccionats.</ahelp>"
-#. 98YEy
+#. Y65FM
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3156280\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
-msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Canvia el nom\">Canvia el nom</link>"
+msgid "<link href=\"text/scalc/01/05050100.xhp\">Rename</link>"
+msgstr "<link href=\"text/scalc/01/05050100.xhp\">Canvia el nom</link>"
-#. oCREo
+#. pWFiz
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3145787\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
-msgstr "<link href=\"text/scalc/01/05050300.xhp\" name=\"Mostra\">Mostra</link>"
+msgid "<link href=\"text/scalc/01/05050300.xhp\">Show</link>"
+msgstr "<link href=\"text/scalc/01/05050300.xhp\">Mostra</link>"
#. 4GEuh
#: 05050000.xhp
@@ -43559,13 +43559,13 @@ msgctxt ""
msgid "<bookmark_value>toggle merge and center cells</bookmark_value>"
msgstr ""
-#. CQ5ZE
+#. d2c5B
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
"hd_id3149785\n"
"help.text"
-msgid "<variable id=\"togglemergecells\"><link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link></variable>"
+msgid "<variable id=\"togglemergecells\"><link href=\"text/scalc/01/05060000.xhp\">Merge and Center Cells</link></variable>"
msgstr ""
#. 8qb5f
@@ -43748,13 +43748,13 @@ msgctxt ""
msgid "<bookmark_value>style;page</bookmark_value><bookmark_value>page;style</bookmark_value><bookmark_value>format;page</bookmark_value><bookmark_value>formatting;page</bookmark_value>"
msgstr ""
-#. Rpt6B
+#. EbgaH
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"hd_id3157910\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\">Page Style</link>"
msgstr ""
#. 4vJrN
@@ -43784,14 +43784,14 @@ msgctxt ""
msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
msgstr "<bookmark_value>pàgines; orde quan s'imprimeixen</bookmark_value><bookmark_value>impressió; orde de les pàgines</bookmark_value>"
-#. 586SP
+#. WNAhk
#: 05070500.xhp
msgctxt ""
"05070500.xhp\n"
"hd_id3156329\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/05070500.xhp\" name=\"Full\">Full</link>"
+msgid "<link href=\"text/scalc/01/05070500.xhp\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/05070500.xhp\">Full</link>"
#. cF9PV
#: 05070500.xhp
@@ -43847,14 +43847,14 @@ msgctxt ""
msgid "Grid"
msgstr "Graella"
-#. wUoBE
+#. CiVtg
#: 05070500.xhp
msgctxt ""
"05070500.xhp\n"
"par_id3147436\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Imprimeix les vores de les cel·les individuals com una graella.</ahelp> Per a la visualització a la pantalla, trieu les opcions a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph>%PRODUCTNAME Calc</emph> ▸ <link href=\"text/shared/optionen/01060100.xhp\" name=\"Visualització\"><emph>Visualització</emph></link> ▸ <emph>Línies de la graella</emph>."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\"><emph>View</emph></link> - <emph>Grid lines</emph>."
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Imprimeix les vores de les cel·les individuals com una graella.</ahelp> Per a la visualització a la pantalla, trieu les opcions a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph>%PRODUCTNAME Calc</emph> ▸ <link href=\"text/shared/optionen/01060100.xhp\"><emph>Visualització</emph></link> ▸ <emph>Línies de la graella</emph>."
#. E7Rqa
#: 05070500.xhp
@@ -44243,14 +44243,14 @@ msgctxt ""
msgid "Print Ranges"
msgstr "Àrees d'impressió"
-#. AZP37
+#. AtDQK
#: 05080000.xhp
msgctxt ""
"05080000.xhp\n"
"hd_id3154013\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=\"Àrees d'impressió\">Àrees d'impressió</link>"
+msgid "<link href=\"text/scalc/01/05080000.xhp\">Print Ranges</link>"
+msgstr "<link href=\"text/scalc/01/05080000.xhp\">Àrees d'impressió</link>"
#. EQY6G
#: 05080000.xhp
@@ -44270,14 +44270,14 @@ msgctxt ""
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 "Si no definiu manualment cap àrea d'impressió, el Calc assigna una àrea d'impressió automàtica per incloure totes les cel·les que no són buides."
-#. KjDFF
+#. p5uAp
#: 05080000.xhp
msgctxt ""
"05080000.xhp\n"
"hd_id3154729\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edita\">Edita</link>"
+msgid "<link href=\"text/scalc/01/05080300.xhp\">Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\">Edita</link>"
#. pU6G7
#: 05080100.xhp
@@ -44288,14 +44288,14 @@ msgctxt ""
msgid "Define"
msgstr "Defineix"
-#. HCgFm
+#. nj2SP
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
"hd_id3145673\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
-msgstr "<link href=\"text/scalc/01/05080100.xhp\" name=\"Defineix\">Defineix</link>"
+msgid "<link href=\"text/scalc/01/05080100.xhp\">Define</link>"
+msgstr "<link href=\"text/scalc/01/05080100.xhp\">Defineix</link>"
#. H3NLs
#: 05080100.xhp
@@ -44315,14 +44315,14 @@ msgctxt ""
msgid "Clear"
msgstr "Neteja"
-#. CxCKF
+#. py6a5
#: 05080200.xhp
msgctxt ""
"05080200.xhp\n"
"hd_id3153562\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Clear\">Clear</link>"
-msgstr "<link href=\"text/scalc/01/05080200.xhp\" name=\"Clear\">Neteja</link>"
+msgid "<link href=\"text/scalc/01/05080200.xhp\">Clear</link>"
+msgstr "<link href=\"text/scalc/01/05080200.xhp\">Neteja</link>"
#. yQoXR
#: 05080200.xhp
@@ -44459,14 +44459,14 @@ msgctxt ""
msgid "Add"
msgstr "Afig"
-#. XfP3x
+#. ADfuy
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
"hd_id3149457\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
-msgstr "<link href=\"text/scalc/01/05080400.xhp\" name=\"Afig\">Afig</link>"
+msgid "<link href=\"text/scalc/01/05080400.xhp\">Add</link>"
+msgstr "<link href=\"text/scalc/01/05080400.xhp\">Afig</link>"
#. bhucD
#: 05080400.xhp
@@ -44495,14 +44495,14 @@ msgctxt ""
msgid "<bookmark_value>Stylist, see Styles window</bookmark_value><bookmark_value>Styles window</bookmark_value><bookmark_value>formats; Styles window</bookmark_value><bookmark_value>formatting; Styles window</bookmark_value><bookmark_value>paint can for applying styles</bookmark_value><bookmark_value>styles in spreadsheets</bookmark_value><bookmark_value>styles; in Calc</bookmark_value>"
msgstr ""
-#. eA3vo
+#. PDFG8
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"hd_id3150447\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles\">Styles</link>"
-msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Estils\">Estils</link>"
+msgid "<link href=\"text/scalc/01/05100000.xhp\">Styles</link>"
+msgstr "<link href=\"text/scalc/01/05100000.xhp\">Estils</link>"
#. bBG57
#: 05100000.xhp
@@ -44513,13 +44513,13 @@ msgctxt ""
msgid "Use the Styles deck of the Sidebar to assign styles to cells and pages. You can apply, update, and modify existing styles or create new styles."
msgstr "Utilitzeu el quadre Estils de la barra lateral per a assignar estils als objectes i a les seccions de text. Podeu actualitzar els estils, modificar els que ja existeixen o crear-ne de nous."
-#. nTiyj
+#. nXJTB
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3149665\n"
"help.text"
-msgid "The Styles <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
+msgid "The Styles <link href=\"text/shared/00/00000005.xhp#docking\">dockable window</link> can remain open while editing the document."
msgstr ""
#. cawKF
@@ -44576,14 +44576,14 @@ msgctxt ""
msgid "Cell Styles"
msgstr "Estils de cel·la"
-#. 7FwJf
+#. XKhEL
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"hd_id171593598056580\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"page styles\">Page Styles</link>"
-msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"page styles\">Estils de pàgina</link>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\">Page Styles</link>"
+msgstr "<link href=\"text/scalc/01/05070000.xhp\">Estils de pàgina</link>"
#. 4XFww
#: 05100000.xhp
@@ -44702,14 +44702,14 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "Estil nou a partir de la selecció"
-#. XF53F
+#. LGeCE
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3149499\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
-msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\">Crea un estil nou basat en la formatació d'un objecte seleccionat.</ahelp> Assigneu un nom per a l'estil al diàleg <link href=\"text/shared/01/05140100.xhp\" name=\"Crea un estil\">Crea un estil</link>."
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\">Create Style</link> dialog."
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\">Crea un estil nou basat en la formatació d'un objecte seleccionat.</ahelp> Assigneu un nom per a l'estil al diàleg <link href=\"text/shared/01/05140100.xhp\">Crea un estil</link>."
#. T967y
#: 05100000.xhp
@@ -44783,13 +44783,13 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
msgstr "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Mostra la llista d'estils de la categoria d'estil seleccionada.</ahelp>"
-#. YBufY
+#. fDCVF
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_idN109D1\n"
"help.text"
-msgid "In the <link href=\"text/shared/00/00000005.xhp#contextmenu\" 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."
+msgid "In the <link href=\"text/shared/00/00000005.xhp#contextmenu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
msgstr ""
#. zdEoY
@@ -44819,14 +44819,14 @@ msgctxt ""
msgid "AutoFormat"
msgstr "Formatació automàtica"
-#. qyLnB
+#. EWVss
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3149666\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=\"Formatació automàtica\">Formatació automàtica</link></variable>"
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\">AutoFormat</link></variable>"
+msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\">Formatació automàtica</link></variable>"
#. ATtMX
#: 05110000.xhp
@@ -45053,22 +45053,22 @@ msgctxt ""
msgid "Conditional Formatting"
msgstr "Formatació condicional"
-#. Gvgde
+#. rRzXE
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"hd_id51665407876959\n"
"help.text"
-msgid "<variable id=\"ConditionalFormattingh1\"><link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Conditional Formatting</link></variable>"
+msgid "<variable id=\"ConditionalFormattingh1\"><link href=\"text/scalc/01/05120000.xhp\">Conditional Formatting</link></variable>"
msgstr ""
-#. qb52L
+#. VzSfF
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Use <emph>Conditional Formatting</emph> to define range-based conditions that determine which cell style will be applied to each cell in a given range based on its contents.</ahelp></variable> The cell style corresponding to the first condition that evaluates to <emph>true</emph> is applied. Cell styles applied through Conditional Formatting override cell styles applied manually using the <link href=\"text/scalc/main0202.xhp\" name=\"FormattingBar_link\"><emph>Formatting Bar</emph></link> or the <emph>Styles</emph> sidebar."
+msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Use <emph>Conditional Formatting</emph> to define range-based conditions that determine which <link href=\"text/scalc/01/cell_styles.xhp\">cell style</link> will be applied to each cell in a given range based on its contents.</ahelp></variable> The cell style corresponding to the first condition that evaluates to <emph>true</emph> is applied. Cell styles applied through Conditional Formatting override cell styles applied manually using the <link href=\"text/scalc/main0202.xhp\"><emph>Formatting Bar</emph></link> or the <link href=\"text/scalc/01/05100000.xhp\"><emph>Styles</emph> sidebar</link>."
msgstr ""
#. 2GWTv
@@ -45251,13 +45251,13 @@ msgctxt ""
msgid "Apply Style"
msgstr ""
-#. 8WfD4
+#. ZEYCC
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"par_id971662939043786\n"
"help.text"
-msgid "Select the cell style to apply when the condition is verified. Select <emph>New Style</emph> to open the <link href=\"text/scalc/01/cell_styles.xhp\" name=\"cellstyledialog\">Cell Style dialog</link> and define the style properties."
+msgid "Select the cell style to apply when the condition is verified. Select <emph>New Style</emph> to open the <link href=\"text/scalc/01/cell_styles.xhp\">Cell Style dialog</link> and define the style properties."
msgstr ""
#. CHbab
@@ -45269,13 +45269,13 @@ msgctxt ""
msgid "Conditional Formatting - Cell value is"
msgstr ""
-#. XZ4AV
+#. YBgJ6
#: 05120100.xhp
msgctxt ""
"05120100.xhp\n"
"hd_id431662935550205\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120100.xhp\" name=\"Cell Value\">Condition - Cell value is</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120100.xhp\">Condition - Cell value is</link></variable>"
msgstr ""
#. RtY8f
@@ -45413,13 +45413,13 @@ msgctxt ""
msgid "does not contain"
msgstr ""
-#. CyQm8
+#. fc4Zs
#: 05120100.xhp
msgctxt ""
"05120100.xhp\n"
"par_id541662923021543\n"
"help.text"
-msgid "The cell contents does not contains the text or number defined in the text box on the right."
+msgid "The cell contents does not contain the text or number defined in the text box on the right."
msgstr ""
#. yF6EV
@@ -45791,13 +45791,13 @@ msgctxt ""
msgid "is error"
msgstr ""
-#. Fz7Fr
+#. qKYm2
#: 05120100.xhp
msgctxt ""
"05120100.xhp\n"
"par_id911662919849857\n"
"help.text"
-msgid "The cell is in the error condition defined in the text box on the right. See <link href=\"text/scalc/05/02140000.xhp\" name=\"calc errors\">List of Calc errors</link>."
+msgid "The cell is in the error condition defined in the text box on the right. See <link href=\"text/scalc/05/02140000.xhp\">List of Calc errors</link>."
msgstr ""
#. uUxWk
@@ -45809,13 +45809,13 @@ msgctxt ""
msgid "is not error"
msgstr ""
-#. B6us3
+#. wYckz
#: 05120100.xhp
msgctxt ""
"05120100.xhp\n"
"par_id381662920774181\n"
"help.text"
-msgid "The cell is not in the error condition defined in the text box on the right. See <link href=\"text/scalc/05/02140000.xhp\" name=\"calc errors\">List of Calc errors</link>"
+msgid "The cell is not in the error condition defined in the text box on the right. See <link href=\"text/scalc/05/02140000.xhp\">List of Calc errors</link>"
msgstr ""
#. DAG5B
@@ -45845,13 +45845,13 @@ msgctxt ""
msgid "Conditional Formatting - Formula is"
msgstr ""
-#. pRBn3
+#. go5b8
#: 05120200.xhp
msgctxt ""
"05120200.xhp\n"
"hd_id471662936567369\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120200.xhp\" name=\"Formula is\">Condition - Formula is</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120200.xhp\">Condition - Formula is</link></variable>"
msgstr ""
#. WwqGv
@@ -45899,13 +45899,13 @@ msgctxt ""
msgid "Conditional Formatting - Date is"
msgstr ""
-#. 9mjQT
+#. 5GUiU
#: 05120300.xhp
msgctxt ""
"05120300.xhp\n"
"hd_id321662936831682\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120300.xhp\" name=\"Date is\">Condition - Date is</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120300.xhp\">Condition - Date is</link></variable>"
msgstr ""
#. eZ8g9
@@ -45998,13 +45998,13 @@ msgctxt ""
msgid "Conditional Formatting - All cells"
msgstr ""
-#. EcBzD
+#. 2J3Dw
#: 05120400.xhp
msgctxt ""
"05120400.xhp\n"
"hd_id861662937013389\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120400.xhp\" name=\"All cells\">Condition - All cells</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120400.xhp\">Condition - All cells</link></variable>"
msgstr ""
#. Bstud
@@ -46016,13 +46016,13 @@ msgctxt ""
msgid "Applies the conditional formatting to the set of cells defined in the selected range. The formatting is applied based on the contents of the whole range."
msgstr ""
-#. UrbTk
+#. EzAUv
#: 05120400.xhp
msgctxt ""
"05120400.xhp\n"
"hd_id3147394\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05120400.xhp#colorscale\" name=\"Color Scale\">Color Scale</link>"
+msgid "<link href=\"text/scalc/01/05120400.xhp#colorscale\">Color Scale</link>"
msgstr ""
#. VvAiE
@@ -46097,13 +46097,13 @@ msgctxt ""
msgid "<emph>Formula</emph>: A formula expression starting with the equal sign (=) that calculates a numeric value. Values can be numbers, dates or time. Enter the formula expression in the text box."
msgstr ""
-#. rDuW2
+#. YGTzE
#: 05120400.xhp
msgctxt ""
"05120400.xhp\n"
"par_id991609782427459\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05120400.xhp#databar\" name=\"Data Bar\">Data Bar</link>"
+msgid "<link href=\"text/scalc/01/05120400.xhp#databar\">Data Bar</link>"
msgstr ""
#. ZEyNr
@@ -46313,13 +46313,13 @@ msgctxt ""
msgid "Do not display values in the cell, only the data bars."
msgstr ""
-#. EjewA
+#. 3ywDD
#: 05120400.xhp
msgctxt ""
"05120400.xhp\n"
"hd_id3153709\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05120400.xhp#iconset\" name=\"Icon Set\">Icon Set</link>"
+msgid "<link href=\"text/scalc/01/05120400.xhp#iconset\">Icon Set</link>"
msgstr ""
#. RjnfG
@@ -46619,13 +46619,13 @@ msgctxt ""
msgid "Conditional Formatting - Manage Conditions"
msgstr ""
-#. EJnPj
+#. a66Es
#: 05120500.xhp
msgctxt ""
"05120500.xhp\n"
"hd_id391662937414401\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120500.xhp\" name=\"Manage Conditions\">Manage Conditions</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/05120500.xhp\">Manage Conditions</link></variable>"
msgstr ""
#. SdPis
@@ -46709,14 +46709,14 @@ msgctxt ""
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'orde<emph>Parteix els mots</emph> crida el diàleg que permet configurar la partició de mots al $[officename] Calc.</ahelp></variable>"
-#. xwmmG
+#. QkdtX
#: 06020000.xhp
msgctxt ""
"06020000.xhp\n"
"par_id3154366\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 "Només podeu activar la partició de mots automàtica al $[officename] Calc quan la característica de <link href=\"text/shared/01/05340300.xhp\" name=\"salt de fila\">salt de fila</link> és activa."
+msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\">row break</link> feature is active."
+msgstr "Només podeu activar la partició de mots automàtica al $[officename] Calc quan la característica de <link href=\"text/shared/01/05340300.xhp\">salt de fila</link> és activa."
#. 26g7N
#: 06020000.xhp
@@ -46817,14 +46817,14 @@ msgctxt ""
msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
msgstr "<bookmark_value>busca d'enllaços a les cel·les</bookmark_value><bookmark_value>busca; enllaços a les cel·les</bookmark_value><bookmark_value>rastres;precedents i dependents</bookmark_value><bookmark_value>Auditoria de fórmules, vegeu Detectiu</bookmark_value><bookmark_value>Detectiu</bookmark_value>"
-#. R7MAF
+#. hAgiC
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
"hd_id3151245\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
-msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detectiu\">Detectiu</link>"
+msgid "<link href=\"text/scalc/01/06030000.xhp\">Detective</link>"
+msgstr "<link href=\"text/scalc/01/06030000.xhp\">Detectiu</link>"
#. yYvTs
#: 06030000.xhp
@@ -46862,14 +46862,14 @@ msgctxt ""
msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
msgstr "<bookmark_value>cel·les; rastreig dels anteriors</bookmark_value><bookmark_value>cel·les amb fórmules;rastreig dels anteriors</bookmark_value>"
-#. rGGRR
+#. uYTei
#: 06030100.xhp
msgctxt ""
"06030100.xhp\n"
"hd_id3155628\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=\"Rastreja els anteriors\">Rastreja els anteriors</link>"
+msgid "<link href=\"text/scalc/01/06030100.xhp\">Trace Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030100.xhp\">Rastreja els anteriors</link>"
#. kbTq3
#: 06030100.xhp
@@ -46916,14 +46916,14 @@ msgctxt ""
msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
msgstr "<bookmark_value>cel·les; supressió dels anteriors</bookmark_value><bookmark_value>cel·les amb fórmules;supressió dels anteriors</bookmark_value>"
-#. e5UZu
+#. puaV6
#: 06030200.xhp
msgctxt ""
"06030200.xhp\n"
"hd_id3155628\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=\"Suprimeix els anteriors\">Suprimeix els anteriors</link>"
+msgid "<link href=\"text/scalc/01/06030200.xhp\">Remove Precedents</link>"
+msgstr "<link href=\"text/scalc/01/06030200.xhp\">Suprimeix els anteriors</link>"
#. S5xB6
#: 06030200.xhp
@@ -46952,14 +46952,14 @@ msgctxt ""
msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
msgstr "<bookmark_value>cel·les; rastreig de dependències</bookmark_value>"
-#. FRMXb
+#. eBq6E
#: 06030300.xhp
msgctxt ""
"06030300.xhp\n"
"hd_id3153252\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=\"Rastreja les dependències\">Rastreja les dependències</link>"
+msgid "<link href=\"text/scalc/01/06030300.xhp\">Trace Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030300.xhp\">Rastreja les dependències</link>"
#. 6eErV
#: 06030300.xhp
@@ -47006,14 +47006,14 @@ msgctxt ""
msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
msgstr "<bookmark_value>cel·les; supressió de dependències</bookmark_value>"
-#. BFg8w
+#. VGwgL
#: 06030400.xhp
msgctxt ""
"06030400.xhp\n"
"hd_id3147335\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=\"Suprimeix les dependències\">Suprimeix les dependències</link>"
+msgid "<link href=\"text/scalc/01/06030400.xhp\">Remove Dependents</link>"
+msgstr "<link href=\"text/scalc/01/06030400.xhp\">Suprimeix les dependències</link>"
#. jgyjb
#: 06030400.xhp
@@ -47042,14 +47042,14 @@ msgctxt ""
msgid "<bookmark_value>cells; removing traces</bookmark_value>"
msgstr "<bookmark_value>cel·les; supressió de rastres</bookmark_value>"
-#. Cg49J
+#. PzEqy
#: 06030500.xhp
msgctxt ""
"06030500.xhp\n"
"hd_id3153088\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=\"Suprimeix tots els rastres\">Suprimeix tots els rastres</link>"
+msgid "<link href=\"text/scalc/01/06030500.xhp\">Remove All Traces</link>"
+msgstr "<link href=\"text/scalc/01/06030500.xhp\">Suprimeix tots els rastres</link>"
#. GLdx2
#: 06030500.xhp
@@ -47078,14 +47078,14 @@ msgctxt ""
msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
msgstr "<bookmark_value>cel·les; rastreig d'errors</bookmark_value><bookmark_value>rastreig d'errors</bookmark_value><bookmark_value>rastreig d'errors</bookmark_value>"
-#. vT3kz
+#. 2qGop
#: 06030600.xhp
msgctxt ""
"06030600.xhp\n"
"hd_id3153561\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=\"Rastreja l'error\">Rastreja l'error</link>"
+msgid "<link href=\"text/scalc/01/06030600.xhp\">Trace Error</link>"
+msgstr "<link href=\"text/scalc/01/06030600.xhp\">Rastreja l'error</link>"
#. 9hwFp
#: 06030600.xhp
@@ -47114,14 +47114,14 @@ msgctxt ""
msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
msgstr "<bookmark_value>cel·les; mode d'emplenament de rastres</bookmark_value><bookmark_value>rastres; anteriors a múltiples cel·les</bookmark_value>"
-#. RrV7R
+#. D8K2B
#: 06030700.xhp
msgctxt ""
"06030700.xhp\n"
"hd_id3145119\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=\"Mode d'emplenament\">Mode d'emplenament</link>"
+msgid "<link href=\"text/scalc/01/06030700.xhp\">Fill Mode</link>"
+msgstr "<link href=\"text/scalc/01/06030700.xhp\">Mode d'emplenament</link>"
#. EosfQ
#: 06030700.xhp
@@ -47132,14 +47132,14 @@ msgctxt ""
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\">Activa el Mode d'emplenament al Detectiu. La busca del ratolí es converteix en un símbol especial i podeu fer clic a qualsevol cel·la per veure un rastre a la cel·la anterior.</ahelp> Per eixir d'este mode, premeu Esc o feu clic a <emph>Ix del mode d'emplenament</emph> al menú contextual."
-#. RmyPo
+#. 4EHVF
#: 06030700.xhp
msgctxt ""
"06030700.xhp\n"
"par_id3151211\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 "La funció <emph>Mode d'emplenament</emph> és idèntica a l'orde <link href=\"text/scalc/01/06030100.xhp\" name=\"Rastreja els anteriors\">Rastreja els anteriors</link> si crideu este mode per primer cop. Utilitzeu el menú contextual per seleccionar més opcions del Mode d'emplenament i per eixir d'este mode."
+msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\">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 "La funció <emph>Mode d'emplenament</emph> és idèntica a l'orde <link href=\"text/scalc/01/06030100.xhp\">Rastreja els anteriors</link> si crideu este mode per primer cop. Utilitzeu el menú contextual per seleccionar més opcions del Mode d'emplenament i per eixir d'este mode."
#. e3Ysa
#: 06030800.xhp
@@ -47159,14 +47159,14 @@ msgctxt ""
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>cel·les; dades no vàlides</bookmark_value><bookmark_value>dades; visualització de les dades no vàlides</bookmark_value><bookmark_value>dades no vàlides;marcatge</bookmark_value>"
-#. 5TNrr
+#. RBXUh
#: 06030800.xhp
msgctxt ""
"06030800.xhp\n"
"hd_id3153821\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=\"Marca les dades no vàlides\">Marca les dades no vàlides</link>"
+msgid "<link href=\"text/scalc/01/06030800.xhp\">Mark Invalid Data</link>"
+msgstr "<link href=\"text/scalc/01/06030800.xhp\">Marca les dades no vàlides</link>"
#. wBsUp
#: 06030800.xhp
@@ -47177,14 +47177,14 @@ msgctxt ""
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\">Marca totes les cel·les del full que contenen valors exclosos de les normes de validació.</ahelp>"
-#. v7Czx
+#. UHhHG
#: 06030800.xhp
msgctxt ""
"06030800.xhp\n"
"par_id3151211\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 "Les <link href=\"text/scalc/01/12120000.xhp\" name=\"regles de validesa\">regles de validesa</link> restringeixen l'entrada de nombres, dates, valors d'hores i text a certs valors. Tanmateix, és possible introduir valors no vàlids o copiar valors no vàlids a les cel·les si l'opció <emph>Atura</emph> no està seleccionada. Quan assigneu una regla de validesa, no es modificaran els valors que ja existeixen en una cel·la."
+msgid "The <link href=\"text/scalc/01/12120000.xhp\">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 "Les <link href=\"text/scalc/01/12120000.xhp\">regles de validesa</link> restringeixen l'entrada de nombres, dates, valors d'hores i text a certs valors. Tanmateix, és possible introduir valors no vàlids o copiar valors no vàlids a les cel·les si l'opció <emph>Atura</emph> no està seleccionada. Quan assigneu una regla de validesa, no es modificaran els valors que ja existeixen en una cel·la."
#. eUjEa
#: 06030900.xhp
@@ -47204,14 +47204,14 @@ msgctxt ""
msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
msgstr "<bookmark_value>cel·les; refrescament de rastres</bookmark_value><bookmark_value>rastres; refrescament</bookmark_value><bookmark_value>actualització;rastres</bookmark_value>"
-#. ZPX5J
+#. Zk6EE
#: 06030900.xhp
msgctxt ""
"06030900.xhp\n"
"hd_id3152349\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=\"Refresca els rastres\">Refresca els rastres</link>"
+msgid "<link href=\"text/scalc/01/06030900.xhp\">Refresh Traces</link>"
+msgstr "<link href=\"text/scalc/01/06030900.xhp\">Refresca els rastres</link>"
#. BfwsW
#: 06030900.xhp
@@ -47267,14 +47267,14 @@ msgctxt ""
msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
msgstr "<bookmark_value>cel·les; refrescament automàtic dels rastres</bookmark_value><bookmark_value>rastres; refrescament automàtic</bookmark_value>"
-#. CRW5U
+#. Lo5hT
#: 06031000.xhp
msgctxt ""
"06031000.xhp\n"
"hd_id3154515\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
-msgstr "<link href=\"text/scalc/01/06031000.xhp\" name=\"Refrescament automàtic\">Refrescament automàtic</link>"
+msgid "<link href=\"text/scalc/01/06031000.xhp\">AutoRefresh</link>"
+msgstr "<link href=\"text/scalc/01/06031000.xhp\">Refrescament automàtic</link>"
#. TnDpQ
#: 06031000.xhp
@@ -47438,13 +47438,13 @@ msgctxt ""
msgid "Comment"
msgstr "Comentari"
-#. TDahD
+#. UNo86
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"par_id3155411\n"
"help.text"
-msgid "<ahelp hid=\".\">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."
+msgid "<ahelp hid=\".\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\">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 ""
#. SqrLg
@@ -47573,14 +47573,14 @@ msgctxt ""
msgid "Protect Document"
msgstr "Protegeix el document"
-#. hGhhB
+#. KEbPW
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3148946\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=\"Protegeix el document\">Protegeix el document</link>"
+msgid "<link href=\"text/scalc/01/06060000.xhp\">Protect Document</link>"
+msgstr "<link href=\"text/scalc/01/06060000.xhp\">Protegeix el document</link>"
#. wQUat
#: 06060000.xhp
@@ -47591,23 +47591,23 @@ msgctxt ""
msgid "The <emph>Protect Sheet</emph> or <emph>Protect Spreadsheet Structure</emph> commands prevent 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 ""
-#. Z8jxs
+#. 97XdX
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3147228\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
-msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Fulls\">Fulls</link>"
+msgid "<link href=\"text/scalc/01/06060100.xhp\">Sheets</link>"
+msgstr "<link href=\"text/scalc/01/06060100.xhp\">Fulls</link>"
-#. 7UWiX
+#. BbuD8
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3153768\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
-msgstr "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
+msgid "<link href=\"text/scalc/01/06060200.xhp\">Documents</link>"
+msgstr "<link href=\"text/scalc/01/06060200.xhp\">Documents</link>"
#. 3GYGr
#: 06060100.xhp
@@ -47627,13 +47627,13 @@ msgctxt ""
msgid "<bookmark_value>insert rows;protected sheet</bookmark_value><bookmark_value>insert columns;protected sheet</bookmark_value><bookmark_value>delete columns;protected sheet</bookmark_value><bookmark_value>delete rows;protected sheet</bookmark_value><bookmark_value>protected sheet;insert columns</bookmark_value><bookmark_value>protected sheet;insert rows</bookmark_value><bookmark_value>protected sheet;delete rows</bookmark_value><bookmark_value>protected sheet;delete columns</bookmark_value><bookmark_value>protect;sheet</bookmark_value><bookmark_value>selection;in protected cells</bookmark_value>"
msgstr ""
-#. ZFcP8
+#. 6MFWC
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"hd_id3153087\n"
"help.text"
-msgid "<variable id=\"ProtectingSheeth1\"><link href=\"text/scalc/01/06060100.xhp\" name=\"Protecting Sheet\">Protecting Sheet</link></variable>"
+msgid "<variable id=\"ProtectingSheeth1\"><link href=\"text/scalc/01/06060100.xhp\">Protecting Sheet</link></variable>"
msgstr ""
#. LcpD8
@@ -47654,14 +47654,14 @@ msgctxt ""
msgid "Choose <emph>Tools - Protect Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password, and select the elements of the sheet to protect."
msgstr ""
-#. vFHpY
+#. uGJM3
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3149664\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 "Per evitar que les cel·les es puguen editar posteriorment, la casella de selecció <emph>Protegit</emph> ha d'estar activada a la pestanya <link href=\"text/scalc/01/05020600.xhp\" name=\"Format ▸ Cel·les ▸ Protecció de cel·les\"><emph>Format ▸ Cel·les ▸ Protecció de cel·les</emph></link> o al menú contextual <emph>Formata les cel·les</emph>."
+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\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
+msgstr "Per evitar que les cel·les es puguen editar posteriorment, la casella de selecció <emph>Protegit</emph> ha d'estar activada a la pestanya <link href=\"text/scalc/01/05020600.xhp\"><emph>Format ▸ Cel·les ▸ Protecció de cel·les</emph></link> o al menú contextual <emph>Formata les cel·les</emph>."
#. eUvfv
#: 06060100.xhp
@@ -47987,14 +47987,14 @@ msgctxt ""
msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculate;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 ""
-#. aruTj
+#. wfHC9
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
"hd_id3145673\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
-msgstr "<link href=\"text/scalc/01/06070000.xhp\" name=\"Calcula automàticament\">Calcula automàticament</link>"
+msgid "<link href=\"text/scalc/01/06070000.xhp\">AutoCalculate</link>"
+msgstr "<link href=\"text/scalc/01/06070000.xhp\">Calcula automàticament</link>"
#. Wyyhf
#: 06070000.xhp
@@ -48032,14 +48032,14 @@ msgctxt ""
msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>recalculate;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
msgstr ""
-#. eVjX4
+#. 7pNDs
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"hd_id3157909\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
-msgstr "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalcula\">Recalcula</link>"
+msgid "<link href=\"text/scalc/01/06080000.xhp\">Recalculate</link>"
+msgstr "<link href=\"text/scalc/01/06080000.xhp\">Recalcula</link>"
#. CBCeE
#: 06080000.xhp
@@ -48095,13 +48095,13 @@ msgctxt ""
msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
msgstr "Després que el document s'haja recalculat, s'actualitza la pantalla. També s'actualitzaran tots els diagrames."
-#. a9keX
+#. EwBpJ
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"par_id641645233417894\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060900.xhp\" name=\"recalculationoptions\">Recalculation options</link>"
+msgid "<link href=\"text/shared/optionen/01060900.xhp\">Recalculation options</link>"
msgstr ""
#. CWRgk
@@ -48122,14 +48122,14 @@ msgctxt ""
msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
msgstr "<bookmark_value>introducció d'entrades amb la funció Entrada automàtica</bookmark_value><bookmark_value>lletres majúscules;funció Entrada automàtica</bookmark_value>"
-#. JX3GB
+#. iC4yZ
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
"hd_id3148492\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
-msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Entrada automàtica\">Entrada automàtica</link>"
+msgid "<link href=\"text/scalc/01/06130000.xhp\">AutoInput</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\">Entrada automàtica</link>"
#. 8mzpV
#: 06130000.xhp
@@ -48212,14 +48212,14 @@ msgctxt ""
msgid "Split Window"
msgstr "Divideix la finestra"
-#. 8fBFT
+#. yDiQC
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
"hd_id3163800\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split Window</link>"
-msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Divideix\">Divideix</link>"
+msgid "<link href=\"text/scalc/01/07080000.xhp\">Split Window</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\">Divideix</link>"
#. FoS5h
#: 07080000.xhp
@@ -48239,14 +48239,14 @@ msgctxt ""
msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
msgstr "També podeu utilitzar el ratolí per a dividir la finestra de manera horitzontal o vertical. Per a fer-ho, arrossegueu la línia negra gruixuda que hi ha damunt de la barra de desplaçament vertical o a la dreta de la barra de desplaçament horitzontal de la finestra. Una línia negra gruixuda mostrarà per on es divideix la finestra."
-#. UNF5Z
+#. jbFfX
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
"par_id3149263\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 "Una finestra dividida té barres de desplaçament a cada secció parcial; per contra, les <link href=\"text/scalc/01/07090000.xhp\" name=\"seccions fixes de la finestra\">seccions fixes de la finestra</link> no en tenen."
+msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\">fixed window sections</link> are not scrollable."
+msgstr "Una finestra dividida té barres de desplaçament a cada secció parcial; per contra, les <link href=\"text/scalc/01/07090000.xhp\">seccions fixes de la finestra</link> no en tenen."
#. Xscoi
#: 07090000.xhp
@@ -48257,13 +48257,13 @@ msgctxt ""
msgid "Freeze Rows and Columns"
msgstr "Congela files i columnes"
-#. nwRKF
+#. hvdv5
#: 07090000.xhp
msgctxt ""
"07090000.xhp\n"
"hd_id3150517\n"
"help.text"
-msgid "<variable id=\"freezerowcolum\"><link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze Rows and Columns</link></variable>"
+msgid "<variable id=\"freezerowcolum\"><link href=\"text/scalc/01/07090000.xhp\">Freeze Rows and Columns</link></variable>"
msgstr ""
#. XjvVY
@@ -48293,13 +48293,13 @@ msgctxt ""
msgid "<bookmark_value>freezing;first row</bookmark_value> <bookmark_value>freezing;first column</bookmark_value> <bookmark_value>freezing;cells</bookmark_value>"
msgstr ""
-#. tTzNC
+#. CozNA
#: 07090100.xhp
msgctxt ""
"07090100.xhp\n"
"hd_id961612313262512\n"
"help.text"
-msgid "<variable id=\"freezecellsh1\"><link href=\"text/scalc/01/07090100.xhp\" name=\"Freeze Cells\">Freeze Cells</link></variable>"
+msgid "<variable id=\"freezecellsh1\"><link href=\"text/scalc/01/07090100.xhp\">Freeze Cells</link></variable>"
msgstr ""
#. sWGWB
@@ -48320,13 +48320,13 @@ msgctxt ""
msgid "Define Database Range"
msgstr "Defineix l'interval de la base de dades"
-#. 3F2WA
+#. AgxXS
#: 12010000.xhp
msgctxt ""
"12010000.xhp\n"
"hd_id3157909\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Database Range\">Define Range</link>"
+msgid "<link href=\"text/scalc/01/12010000.xhp\">Define Range</link>"
msgstr ""
#. 8zFH5
@@ -48410,14 +48410,14 @@ msgctxt ""
msgid "More >>"
msgstr "Més >>"
-#. 4C6px
+#. JvtiG
#: 12010000.xhp
msgctxt ""
"12010000.xhp\n"
"par_id3153144\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">Mostra <link href=\"text/scalc/01/12010100.xhp\" name=\"opcions\">opcions</link> addicionals.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">Shows additional <link href=\"text/scalc/01/12010100.xhp\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/more\">Mostra <link href=\"text/scalc/01/12010100.xhp\">opcions</link> addicionals.</ahelp>"
#. DYHAG
#: 12010100.xhp
@@ -48563,23 +48563,23 @@ msgctxt ""
msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
msgstr "<bookmark_value>bases de dades; selecció (Calc)</bookmark_value>"
-#. LFBZy
+#. CcGaF
#: 12020000.xhp
msgctxt ""
"12020000.xhp\n"
"hd_id3145068\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Database Range\">Select Range</link>"
+msgid "<link href=\"text/scalc/01/12020000.xhp\">Select Range</link>"
msgstr ""
-#. DjALP
+#. CvMiq
#: 12020000.xhp
msgctxt ""
"12020000.xhp\n"
"par_id3149655\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\">Selecciona un interval de la base de dades que hàgeu definit a <link href=\"text/scalc/01/12010000.xhp\" name=\"Dades - Defineix l'interval\">Dades - Defineix l'interval</link>.</ahelp></variable>"
+msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\">Data - Define Range</link>.</ahelp></variable>"
+msgstr "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selecciona un interval de la base de dades que hàgeu definit a <link href=\"text/scalc/01/12010000.xhp\">Dades - Defineix l'interval</link>.</ahelp></variable>"
#. qFxiF
#: 12020000.xhp
@@ -48608,13 +48608,13 @@ msgctxt ""
msgid "Sort"
msgstr "Ordena"
-#. 2U5X4
+#. TDesh
#: 12030000.xhp
msgctxt ""
"12030000.xhp\n"
"hd_id3150275\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"\">Sort</link>"
+msgid "<link href=\"text/scalc/01/12030000.xhp\">Sort</link>"
msgstr ""
#. BHBgn
@@ -48626,14 +48626,14 @@ msgctxt ""
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\">Ordena les files seleccionades segons les condicions que indiqueu.</ahelp></variable> El $[officename] reconeix i selecciona automàticament els intervals de la base de dades."
-#. MYK9p
+#. jn7N6
#: 12030000.xhp
msgctxt ""
"12030000.xhp\n"
"par_id3147428\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 "No podeu ordenar les dades si l'opció <link href=\"text/shared/01/02230000.xhp\" name=\"Registra els canvis\">Registra els canvis</link> està activada."
+msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\">Record changes</link> options is enabled."
+msgstr "No podeu ordenar les dades si l'opció <link href=\"text/shared/01/02230000.xhp\">Registra els canvis</link> està activada."
#. yfaxr
#: 12030100.xhp
@@ -48653,14 +48653,14 @@ msgctxt ""
msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
msgstr "<bookmark_value>ordenació; criteris d'ordenació per als intervals de la base de dades</bookmark_value>"
-#. 8j5BD
+#. krGps
#: 12030100.xhp
msgctxt ""
"12030100.xhp\n"
"hd_id3152350\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=\"Criteris d'ordenació\">Criteris d'ordenació</link>"
+msgid "<link href=\"text/scalc/01/12030100.xhp\">Sort Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12030100.xhp\">Criteris d'ordenació</link>"
#. ThM7y
#: 12030100.xhp
@@ -48833,14 +48833,14 @@ msgctxt ""
msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
msgstr "<bookmark_value>ordenació; opcions per als intervals de la base de dades</bookmark_value><bookmark_value>ordenació;llengües asiàtiques</bookmark_value><bookmark_value>llengües asiàtiques;ordenació</bookmark_value><bookmark_value>regles d'ordenació per a l'agenda telefònica</bookmark_value><bookmark_value>algoritme d'ordenació natural</bookmark_value>"
-#. hYGvo
+#. pAX2Z
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
"hd_id3147228\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
-msgstr "<link href=\"text/scalc/01/12030200.xhp\" name=\"Opcions\"> Opcions</link>"
+msgid "<link href=\"text/scalc/01/12030200.xhp\"> Options</link>"
+msgstr "<link href=\"text/scalc/01/12030200.xhp\"> Opcions</link>"
#. wDVj5
#: 12030200.xhp
@@ -48995,13 +48995,13 @@ msgctxt ""
msgid "Sort results (named ranges list)"
msgstr ""
-#. JGhWC
+#. KZHeB
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
"par_id3155602\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.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Select a named <link href=\"text/scalc/01/12010000.xhp\"> cell range</link> where you want to display the sorted list.</ahelp>"
msgstr ""
#. nxJWR
@@ -49049,13 +49049,13 @@ msgctxt ""
msgid "Custom sort order list"
msgstr ""
-#. hQE6m
+#. WTX5F
#: 12030200.xhp
msgctxt ""
"12030200.xhp\n"
"par_id3155962\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\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\"><menuitem>%PRODUCTNAME Calc - Sort Lists</menuitem></link>.</ahelp>"
+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\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\"><menuitem>%PRODUCTNAME Calc - Sort Lists</menuitem></link>.</ahelp>"
msgstr ""
#. vH2Uh
@@ -49157,13 +49157,13 @@ msgctxt ""
msgid "More Filters"
msgstr ""
-#. EtYTd
+#. BYmkL
#: 12040000.xhp
msgctxt ""
"12040000.xhp\n"
"hd_id3150767\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">More Filters</link>"
+msgid "<link href=\"text/scalc/01/12040000.xhp\">More Filters</link>"
msgstr ""
#. PgpNB
@@ -49193,23 +49193,23 @@ msgctxt ""
msgid "The following filtering options are available:"
msgstr "Hi ha disponibles les opcions de filtratge següents:"
-#. F7hcb
+#. ynEYx
#: 12040000.xhp
msgctxt ""
"12040000.xhp\n"
"hd_id3153728\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=\"Filtre estàndard\">Filtre estàndard</link>"
+msgid "<link href=\"text/shared/02/12090000.xhp\">Standard filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\">Filtre estàndard</link>"
-#. TaFZ3
+#. AiJ5o
#: 12040000.xhp
msgctxt ""
"12040000.xhp\n"
"hd_id3159153\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=\"Filtre avançat\">Filtre avançat</link>"
+msgid "<link href=\"text/scalc/01/12040300.xhp\">Advanced filter</link>"
+msgstr "<link href=\"text/scalc/01/12040300.xhp\">Filtre avançat</link>"
#. TGSGd
#: 12040100.xhp
@@ -49220,13 +49220,13 @@ msgctxt ""
msgid "AutoFilter"
msgstr "Filtre automàtic"
-#. pGfbC
+#. HqGzu
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
"help.text"
-msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link></variable>"
+msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\">AutoFilter</link></variable>"
msgstr ""
#. cTu3x
@@ -49373,13 +49373,13 @@ msgctxt ""
msgid "Standard Filter"
msgstr ""
-#. kqqrX
+#. HDSgD
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"par_id171621544405886\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/02/12090000.xhp\" name=\"standard filter\">Standard Filter</link> dialog."
+msgid "Opens the <link href=\"text/shared/02/12090000.xhp\">Standard Filter</link> dialog."
msgstr ""
#. bbVTh
@@ -49472,14 +49472,14 @@ msgctxt ""
msgid "List of unique values found in the current column."
msgstr ""
-#. 4DAJx
+#. ETwuP
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"par_id3145171\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=\"Filtre per defecte\">Filtre per defecte</link>"
+msgid "<link href=\"text/shared/02/12090000.xhp\">Default filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\">Filtre per defecte</link>"
#. G245J
#: 12040201.xhp
@@ -49490,14 +49490,14 @@ msgctxt ""
msgid "Options"
msgstr "Opcions"
-#. zkH7t
+#. LDwKG
#: 12040201.xhp
msgctxt ""
"12040201.xhp\n"
"hd_id3148492\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\">Opcions</link>"
#. ZaGeb
#: 12040201.xhp
@@ -49580,14 +49580,14 @@ msgctxt ""
msgid "Regular expression"
msgstr "Expressió regular"
-#. Q6GEs
+#. fFoQf
#: 12040201.xhp
msgctxt ""
"12040201.xhp\n"
"par_id3152576\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\">Allows you to use regular expressions in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
-msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\">Vos permet utilitzar comodins a la definició del filtre.</ahelp> Per veure una llista de les expressions regulars que admet el $[officename], feu clic <link href=\"text/shared/01/02100001.xhp\" name=\"ací\">ací</link>."
+msgid "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\">Allows you to use regular expressions in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\">here</link>."
+msgstr "<ahelp hid=\"modules/scalc/ui/advancedfilterdialog/regexp\">Vos permet utilitzar comodins a la definició del filtre.</ahelp> Per veure una llista de les expressions regulars que admet el $[officename], feu clic <link href=\"text/shared/01/02100001.xhp\">ací</link>."
#. khYZz
#: 12040201.xhp
@@ -49715,14 +49715,14 @@ msgctxt ""
msgid "Reset Filter"
msgstr "Reinicia el filtre"
-#. 4qBjB
+#. omtfD
#: 12040400.xhp
msgctxt ""
"12040400.xhp\n"
"hd_id3153087\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Reset Filter</link>"
-msgstr "<link href=\"text/scalc/01/12040400.xhp\" name=\"Suprimeix el filtre\">Restableix el filtre</link>"
+msgid "<link href=\"text/scalc/01/12040400.xhp\">Reset Filter</link>"
+msgstr "<link href=\"text/scalc/01/12040400.xhp\">Restableix el filtre</link>"
#. sCGEu
#: 12040400.xhp
@@ -49751,14 +49751,14 @@ msgctxt ""
msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
msgstr "<bookmark_value>intervals de la base de dades; amagar el filtre automàtic</bookmark_value>"
-#. FzTjq
+#. G8T99
#: 12040500.xhp
msgctxt ""
"12040500.xhp\n"
"hd_id3150276\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=\"Amaga el filtre automàtic\">Amaga el filtre automàtic</link>"
+msgid "<link href=\"text/scalc/01/12040500.xhp\">Hide AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040500.xhp\">Amaga el filtre automàtic</link>"
#. RWfzy
#: 12040500.xhp
@@ -49778,13 +49778,13 @@ msgctxt ""
msgid "Subtotals"
msgstr "Subtotals"
-#. zaCLT
+#. BdVbn
#: 12050000.xhp
msgctxt ""
"12050000.xhp\n"
"hd_id3153822\n"
"help.text"
-msgid "<variable id=\"subtotalheaderh1\"><link href=\"text/scalc/01/12050000.xhp\" name=\"subtotals\">Subtotals</link></variable>"
+msgid "<variable id=\"subtotalheaderh1\"><link href=\"text/scalc/01/12050000.xhp\">Subtotals</link></variable>"
msgstr ""
#. 2jiYA
@@ -49832,14 +49832,14 @@ msgctxt ""
msgid "1st, 2nd, 3rd Group"
msgstr "1r, 2n, 3r grup"
-#. GUdSZ
+#. JEU4t
#: 12050100.xhp
msgctxt ""
"12050100.xhp\n"
"hd_id3149784\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=\"1r, 2n, 3r grup\">1r, 2n, 3r grup</link>"
+msgid "<link href=\"text/scalc/01/12050100.xhp\">1st, 2nd, 3rd Group</link>"
+msgstr "<link href=\"text/scalc/01/12050100.xhp\">1r, 2n, 3r grup</link>"
#. FE9pf
#: 12050100.xhp
@@ -49922,14 +49922,14 @@ msgctxt ""
msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
msgstr "<bookmark_value>subtotals; opcions d'ordenació</bookmark_value>"
-#. yxwtj
+#. nA38M
#: 12050200.xhp
msgctxt ""
"12050200.xhp\n"
"hd_id3154758\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12050200.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/scalc/01/12050200.xhp\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12050200.xhp\">Opcions</link>"
#. RV6cM
#: 12050200.xhp
@@ -50084,13 +50084,13 @@ msgctxt ""
msgid "Multiple Operations"
msgstr "Operacions múltiples"
-#. rc8Gi
+#. omrYq
#: 12060000.xhp
msgctxt ""
"12060000.xhp\n"
"hd_id3153381\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"multiple operations\">Multiple Operations</link>"
+msgid "<link href=\"text/scalc/01/12060000.xhp\">Multiple Operations</link>"
msgstr ""
#. WJG7J
@@ -50192,13 +50192,13 @@ msgctxt ""
msgid "Consolidate"
msgstr "Consolida"
-#. 4QnDV
+#. NPuKP
#: 12070000.xhp
msgctxt ""
"12070000.xhp\n"
"hd_id3148946\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+msgid "<link href=\"text/scalc/01/12070000.xhp\">Consolidate</link>"
msgstr ""
#. LGBKi
@@ -50309,14 +50309,14 @@ msgctxt ""
msgid "Options"
msgstr "Opcions"
-#. WGcsG
+#. e8UyW
#: 12070000.xhp
msgctxt ""
"12070000.xhp\n"
"par_id3159239\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/more\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/more\">Mostra <link href=\"text/scalc/01/12070100.xhp\" name=\"opcions\">opcions</link> addicionals.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/more\">Shows additional <link href=\"text/scalc/01/12070100.xhp\">options</link>.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/more\">Mostra <link href=\"text/scalc/01/12070100.xhp\">opcions</link> addicionals.</ahelp>"
#. C3jt5
#: 12070100.xhp
@@ -50453,14 +50453,14 @@ msgctxt ""
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>dades; esquemes</bookmark_value><bookmark_value>esquemes; fulls</bookmark_value><bookmark_value>amaga; detalls del full</bookmark_value><bookmark_value>mostra; detalls del full</bookmark_value><bookmark_value>agrupament;cel·les</bookmark_value>"
-#. YUNJC
+#. RG4zC
#: 12080000.xhp
msgctxt ""
"12080000.xhp\n"
"hd_id3152350\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=\"Grup i esquema\">Grup i esquema</link>"
+msgid "<link href=\"text/scalc/01/12080000.xhp\">Group and Outline</link>"
+msgstr "<link href=\"text/scalc/01/12080000.xhp\">Grup i esquema</link>"
#. QA6dV
#: 12080000.xhp
@@ -50471,23 +50471,23 @@ msgctxt ""
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 "Podeu crear un esquema de les vostres de dades i agrupar les files i les columnes al mateix temps per tal de poder replegar i desplegar els grups amb un sol clic."
-#. p8VzC
+#. 3iVH8
#: 12080000.xhp
msgctxt ""
"12080000.xhp\n"
"hd_id3147229\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Agrupa\">Agrupa</link>"
+msgid "<link href=\"text/scalc/01/12080300.xhp\">Group</link>"
+msgstr "<link href=\"text/scalc/01/12080300.xhp\">Agrupa</link>"
-#. 3AEgr
+#. BJJwA
#: 12080000.xhp
msgctxt ""
"12080000.xhp\n"
"hd_id3153188\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Desagrupa\">Desagrupa</link>"
+msgid "<link href=\"text/scalc/01/12080400.xhp\">Ungroup</link>"
+msgstr "<link href=\"text/scalc/01/12080400.xhp\">Desagrupa</link>"
#. CdWmg
#: 12080100.xhp
@@ -50507,14 +50507,14 @@ msgctxt ""
msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
msgstr "<bookmark_value>fulls; amagar els detalls</bookmark_value>"
-#. yL2DX
+#. Hzyfg
#: 12080100.xhp
msgctxt ""
"12080100.xhp\n"
"hd_id3155628\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=\"Amaga els detalls\">Amaga els detalls</link>"
+msgid "<link href=\"text/scalc/01/12080100.xhp\">Hide Details</link>"
+msgstr "<link href=\"text/scalc/01/12080100.xhp\">Amaga els detalls</link>"
#. UBn3h
#: 12080100.xhp
@@ -50525,14 +50525,14 @@ msgctxt ""
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\">Amaga els detalls de la fila o columna agrupada que conté el cursor. Per amagar totes les files o columnes agrupades, seleccioneu la taula amb esquema, i llavors trieu esta orde.</ahelp>"
-#. fWAPF
+#. XqCSf
#: 12080100.xhp
msgctxt ""
"12080100.xhp\n"
"par_id3153252\n"
"help.text"
-msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data - Group and Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
-msgstr "Per mostrar els grups amagats, seleccioneu la taula amb esquema i llavors trieu <emph>Dades - Esquema –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Mostra els detalls\"><emph>Mostra els detalls</emph></link>."
+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\"><emph>Show Details</emph></link>."
+msgstr "Per mostrar els grups amagats, seleccioneu la taula amb esquema i llavors trieu <emph>Dades - Esquema –</emph> <link href=\"text/scalc/01/12080200.xhp\"><emph>Mostra els detalls</emph></link>."
#. 2zLCt
#: 12080200.xhp
@@ -50552,14 +50552,14 @@ msgctxt ""
msgid "<bookmark_value>tables; showing details</bookmark_value>"
msgstr "<bookmark_value>taules; mostra de detalls</bookmark_value>"
-#. 6scdF
+#. fAZVg
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
"hd_id3153561\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=\"Mostra els detalls\">Mostra els detalls</link>"
+msgid "<link href=\"text/scalc/01/12080200.xhp\">Show Details</link>"
+msgstr "<link href=\"text/scalc/01/12080200.xhp\">Mostra els detalls</link>"
#. Drmv5
#: 12080200.xhp
@@ -50570,14 +50570,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
msgstr "<ahelp hid=\".uno:ShowDetail\">Mostra els detalls de la fila o columna agrupada que conté el cursor. Per mostrar els detalls de les files o columnes agrupades, seleccioneu la taula amb esquema i llavors trieu esta orde.</ahelp>"
-#. 3QPc4
+#. YiYkF
#: 12080200.xhp
msgctxt ""
"12080200.xhp\n"
"par_id3155922\n"
"help.text"
-msgid "To hide a selected group, choose <emph>Data - Group and Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
-msgstr "Per amagar un grup seleccionat, trieu <emph>Dades - Esquema - </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Amaga els detalls\"><emph>Amaga els detalls</emph></link>."
+msgid "To hide a selected group, choose <emph>Data - Group and Outline – </emph><link href=\"text/scalc/01/12080100.xhp\"><emph>Hide Details</emph></link>."
+msgstr "Per amagar un grup seleccionat, trieu <emph>Dades - Esquema - </emph><link href=\"text/scalc/01/12080100.xhp\"><emph>Amaga els detalls</emph></link>."
#. z8Av9
#: 12080200.xhp
@@ -50597,14 +50597,14 @@ msgctxt ""
msgid "Group"
msgstr "Agrupa"
-#. BLucd
+#. x7dFv
#: 12080300.xhp
msgctxt ""
"12080300.xhp\n"
"hd_id3153088\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/scalc/01/12080300.xhp\" name=\"Agrupa\">Agrupa</link>"
+msgid "<link href=\"text/scalc/01/12080300.xhp\">Group</link>"
+msgstr "<link href=\"text/scalc/01/12080300.xhp\">Agrupa</link>"
#. cSvFF
#: 12080300.xhp
@@ -50615,14 +50615,14 @@ msgctxt ""
msgid "<variable id=\"gruppierung\"><ahelp hid=\".\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
msgstr "<variable id=\"gruppierung\"><ahelp hid=\".\">Defineix l'interval de cel·les seleccionat com a un grup de files o columnes.</ahelp></variable>"
-#. Gx8qW
+#. GDjRm
#: 12080300.xhp
msgctxt ""
"12080300.xhp\n"
"par_id3145069\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 – Group and Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
-msgstr "Quan agrupeu un interval de cel·les, apareix una icona als marges, al costat del grup. Per a amagar o mostrar el grup, feu clic a la icona. Per a desagrupar la selecció, trieu <emph>Dades ▸ Grup i esquema ▸</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Desagrupa\"><emph>Desagrupa</emph></link>."
+msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Group and Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\"><emph>Ungroup</emph></link>."
+msgstr "Quan agrupeu un interval de cel·les, apareix una icona als marges, al costat del grup. Per a amagar o mostrar el grup, feu clic a la icona. Per a desagrupar la selecció, trieu <emph>Dades ▸ Grup i esquema ▸</emph> <link href=\"text/scalc/01/12080400.xhp\"><emph>Desagrupa</emph></link>."
#. PcrAZ
#: 12080300.xhp
@@ -50687,14 +50687,14 @@ msgctxt ""
msgid "Ungroup"
msgstr "Desagrupa"
-#. cy3CT
+#. GfZ4e
#: 12080400.xhp
msgctxt ""
"12080400.xhp\n"
"hd_id3148492\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/scalc/01/12080400.xhp\" name=\"Desagrupa\">Desagrupa</link>"
+msgid "<link href=\"text/scalc/01/12080400.xhp\">Ungroup</link>"
+msgstr "<link href=\"text/scalc/01/12080400.xhp\">Desagrupa</link>"
#. 3EEuk
#: 12080400.xhp
@@ -50759,14 +50759,14 @@ msgctxt ""
msgid "AutoOutline"
msgstr "Esquema automàtic"
-#. DEaWY
+#. htdLk
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
"hd_id3150275\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
-msgstr "<link href=\"text/scalc/01/12080500.xhp\" name=\"Esquema automàtic\">Esquema automàtic</link>"
+msgid "<link href=\"text/scalc/01/12080500.xhp\">AutoOutline</link>"
+msgstr "<link href=\"text/scalc/01/12080500.xhp\">Esquema automàtic</link>"
#. X6uK6
#: 12080500.xhp
@@ -50867,14 +50867,14 @@ msgctxt ""
msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
msgstr "Cadascuna de les cel·les per al 1r i 2n trimestre conté una fórmula de suma per a les tres cel·les que hi ha a l'esquerra. Si apliqueu l'orde <emph>Esquema automàtic</emph>, la taula s'agrupa en dos trimestres."
-#. BSqPC
+#. LZAoh
#: 12080500.xhp
msgctxt ""
"12080500.xhp\n"
"par_id3146918\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 "Per suprimir l'esquema, seleccioneu la taula, i llavors trieu <link href=\"text/scalc/01/12080600.xhp\" name=\"Dades - Grup i esquema - Suprimeix\">Dades - Grup i esquema - Suprimeix</link>."
+msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\">Data - Group and Outline - Remove</link>."
+msgstr "Per suprimir l'esquema, seleccioneu la taula, i llavors trieu <link href=\"text/scalc/01/12080600.xhp\">Dades - Grup i esquema - Suprimeix</link>."
#. iePNH
#: 12080600.xhp
@@ -50885,14 +50885,14 @@ msgctxt ""
msgid "Remove"
msgstr "Suprimeix"
-#. bdqzB
+#. C3PNv
#: 12080600.xhp
msgctxt ""
"12080600.xhp\n"
"hd_id3148947\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
-msgstr "<link href=\"text/scalc/01/12080600.xhp\" name=\"Suprimeix\">Suprimeix</link>"
+msgid "<link href=\"text/scalc/01/12080600.xhp\">Remove</link>"
+msgstr "<link href=\"text/scalc/01/12080600.xhp\">Suprimeix</link>"
#. FjGia
#: 12080600.xhp
@@ -50948,14 +50948,14 @@ msgctxt ""
msgid "Pivot Table"
msgstr "Taula dinàmica"
-#. ZXpC3
+#. DF939
#: 12090000.xhp
msgctxt ""
"12090000.xhp\n"
"hd_id3150275\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
-msgstr "<link href=\"text/scalc/01/12090000.xhp\" name=\"Taula dinàmica\">Taula dinàmica</link>"
+msgid "<link href=\"text/scalc/01/12090000.xhp\">Pivot Table</link>"
+msgstr "<link href=\"text/scalc/01/12090000.xhp\">Taula dinàmica</link>"
#. P4MKS
#: 12090000.xhp
@@ -50966,23 +50966,23 @@ msgctxt ""
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 "Una taula dinàmica ofereix un resum de grans quantitats de dades. Podeu reorganitzar la taula dinàmica per veure diferents resums de les dades."
-#. DS8vh
+#. BFYSg
#: 12090000.xhp
msgctxt ""
"12090000.xhp\n"
"hd_id3155923\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
-msgstr "<link href=\"text/scalc/01/12090100.xhp\" name=\"Crea\">Crea</link>"
+msgid "<link href=\"text/scalc/01/12090100.xhp\">Create</link>"
+msgstr "<link href=\"text/scalc/01/12090100.xhp\">Crea</link>"
-#. Fz8pn
+#. XJkrB
#: 12090000.xhp
msgctxt ""
"12090000.xhp\n"
"par_idN105FB\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
-msgstr "<link href=\"text/scalc/01/12090102.xhp\" name=\"Diàleg Taula dinàmica\">Diàleg Taula dinàmica</link>"
+msgid "<link href=\"text/scalc/01/12090102.xhp\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\">Diàleg Taula dinàmica</link>"
#. Vpqsf
#: 12090100.xhp
@@ -50993,13 +50993,13 @@ msgctxt ""
msgid "Select Source"
msgstr "Selecciona la font"
-#. tbA55
+#. 2nwBj
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
"hd_id3153663\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Pivot Table - Select Source\">Pivot Table - Select Source</link>"
+msgid "<link href=\"text/scalc/01/12090100.xhp\">Pivot Table - Select Source</link>"
msgstr ""
#. JCesq
@@ -51092,14 +51092,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
msgstr "<ahelp hid=\".\">Obri el diàleg <emph>Font externa</emph>, on podeu seleccionar la font de dades OLAP per a la taula dinàmica.</ahelp>"
-#. DqiMT
+#. EuF2E
#: 12090100.xhp
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=\"Diàleg Taula dinàmica\">Diàleg Taula dinàmica</link>"
+msgid "<link href=\"text/scalc/01/12090102.xhp\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\">Diàleg Taula dinàmica</link>"
#. aZf2u
#: 12090101.xhp
@@ -51200,14 +51200,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
msgstr "<ahelp hid=\"modules/scalc/ui/selectdatasource/type\">Feu clic al tipus de font per a la font de dades seleccionada.</ahelp> Podeu triar quatre tipus de font de dades: \"Taula\", \"Consulta\" i \"SQL\" o SQL (natiu)."
-#. 9xEou
+#. TAGLQ
#: 12090101.xhp
msgctxt ""
"12090101.xhp\n"
"par_id3147348\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=\"Diàleg Taula dinàmica\">Diàleg Taula dinàmica</link>"
+msgid "<link href=\"text/scalc/01/12090102.xhp\">Pivot table dialog</link>"
+msgstr "<link href=\"text/scalc/01/12090102.xhp\">Diàleg Taula dinàmica</link>"
#. tFAGE
#: 12090102.xhp
@@ -51281,14 +51281,14 @@ msgctxt ""
msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
msgstr "El $[officename] afig automàticament un títol als botons que s'arrosseguen a l'àrea de <emph>Camps de dades </emph>. Este títol conté el nom del camp de dades i la fórmula que va crear les dades."
-#. vcULm
+#. cpHDx
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
"par_id3145749\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 "Per canviar la funció utilitzada per un camp de dades, feu doble clic a un botó de l'àrea <emph>Camps de dades</emph> per obrir el diàleg <link href=\"text/scalc/01/12090105.xhp\" name=\"Camp de dades\">Camp de dades</link>. També podeu fer doble clic als botons de les àrees <emph>Camps de fila</emph> o <emph>Camps de columna</emph>."
+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\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
+msgstr "Per canviar la funció utilitzada per un camp de dades, feu doble clic a un botó de l'àrea <emph>Camps de dades</emph> per obrir el diàleg <link href=\"text/scalc/01/12090105.xhp\">Camp de dades</link>. També podeu fer doble clic als botons de les àrees <emph>Camps de fila</emph> o <emph>Camps de columna</emph>."
#. 9JFKg
#: 12090102.xhp
@@ -51551,14 +51551,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
msgstr "<ahelp hid=\".\">Trieu el camp per al qual voleu veure els detalls.</ahelp>"
-#. Eegc6
+#. 2EWCA
#: 12090102.xhp
msgctxt ""
"12090102.xhp\n"
"par_id3149817\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=\"Tecles de drecera de la taula dinàmica\">Tecles de drecera de la taula dinàmica</link>"
+msgid "<link href=\"text/scalc/04/01020000.xhp\">Pivot table shortcut keys</link>"
+msgstr "<link href=\"text/scalc/04/01020000.xhp\">Tecles de drecera de la taula dinàmica</link>"
#. DrrqN
#: 12090103.xhp
@@ -51803,14 +51803,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the value that you want to compare to the selected field.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccioneu el valor que s'ha de comparar amb el camp seleccionat.</ahelp>"
-#. vhBAS
+#. uhKHd
#: 12090103.xhp
msgctxt ""
"12090103.xhp\n"
"hd_id3146980\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/scalc/01/12090104.xhp\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\">Opcions</link>"
#. HwV5Y
#: 12090104.xhp
@@ -51821,14 +51821,14 @@ msgctxt ""
msgid "Options"
msgstr "Opcions"
-#. CZwGy
+#. fBwii
#: 12090104.xhp
msgctxt ""
"12090104.xhp\n"
"hd_id3149119\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12090104.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/scalc/01/12090104.xhp\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12090104.xhp\">Opcions</link>"
#. GAiCA
#: 12090104.xhp
@@ -51929,14 +51929,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"visible\">Displays the name of the filtered data range in the table.</ahelp>"
msgstr ""
-#. dSBGn
+#. CtjzM
#: 12090104.xhp
msgctxt ""
"12090104.xhp\n"
"par_id3154011\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
-msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"Llista d'expressions regulars\">Llista d'expressions regulars</link>"
+msgid "<link href=\"text/shared/01/02100001.xhp\">List of Regular Expressions</link>"
+msgstr "<link href=\"text/shared/01/02100001.xhp\">Llista d'expressions regulars</link>"
#. CSzRe
#: 12090105.xhp
@@ -51965,14 +51965,14 @@ msgctxt ""
msgid "Data field"
msgstr "Camp de dades"
-#. jxCzc
+#. Gpmda
#: 12090105.xhp
msgctxt ""
"12090105.xhp\n"
"par_id3154124\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 "El contingut d'este diàleg és diferent per als camps de dades de l'àrea <emph>Dades</emph> i els camps de dades de l'àrea <emph>Fila</emph> o <emph>Columna</emph> del diàleg <link href=\"text/scalc/01/12090102.xhp\" name=\"Taula dinàmica\">Taula dinàmica</link>."
+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\">Pivot Table</link> dialog."
+msgstr "El contingut d'este diàleg és diferent per als camps de dades de l'àrea <emph>Dades</emph> i els camps de dades de l'àrea <emph>Fila</emph> o <emph>Columna</emph> del diàleg <link href=\"text/scalc/01/12090102.xhp\">Taula dinàmica</link>."
#. cW4qx
#: 12090105.xhp
@@ -52757,14 +52757,14 @@ msgctxt ""
msgid "Refresh"
msgstr "Refresca"
-#. TDMKo
+#. c96PZ
#: 12090200.xhp
msgctxt ""
"12090200.xhp\n"
"hd_id3151385\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
-msgstr "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresca\">Refresca</link>"
+msgid "<link href=\"text/scalc/01/12090200.xhp\">Refresh</link>"
+msgstr "<link href=\"text/scalc/01/12090200.xhp\">Refresca</link>"
#. To7EA
#: 12090200.xhp
@@ -52793,14 +52793,14 @@ msgctxt ""
msgid "Delete"
msgstr "Suprimeix"
-#. g8zEj
+#. VQEDY
#: 12090300.xhp
msgctxt ""
"12090300.xhp\n"
"hd_id3150276\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/scalc/01/12090300.xhp\" name=\"Suprimeix\">Suprimeix</link>"
+msgid "<link href=\"text/scalc/01/12090300.xhp\">Delete</link>"
+msgstr "<link href=\"text/scalc/01/12090300.xhp\">Suprimeix</link>"
#. YuSAB
#: 12090300.xhp
@@ -53018,14 +53018,14 @@ msgctxt ""
msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
msgstr "<bookmark_value>intervals de la base de dades; refrescament</bookmark_value>"
-#. AVePH
+#. E784k
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
"hd_id3153662\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=\"Refresca l'interval\">Refresca l'interval</link>"
+msgid "<link href=\"text/scalc/01/12100000.xhp\">Refresh Range</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\">Refresca l'interval</link>"
#. fYiGb
#: 12100000.xhp
@@ -53045,13 +53045,13 @@ msgctxt ""
msgid "Validity"
msgstr "Validesa"
-#. ib9Du
+#. sAtkj
#: 12120000.xhp
msgctxt ""
"12120000.xhp\n"
"hd_id3156347\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"validity\">Validity</link>"
+msgid "<link href=\"text/scalc/01/12120000.xhp\">Validity</link>"
msgstr ""
#. EGFSj
@@ -53090,14 +53090,14 @@ msgctxt ""
msgid "<bookmark_value>selection lists;validity</bookmark_value>"
msgstr "<bookmark_value>llistes de selecció;validesa</bookmark_value>"
-#. njjdG
+#. RMUmp
#: 12120100.xhp
msgctxt ""
"12120100.xhp\n"
"hd_id3153032\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
-msgstr "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteris\">Criteris</link>"
+msgid "<link href=\"text/scalc/01/12120100.xhp\">Criteria</link>"
+msgstr "<link href=\"text/scalc/01/12120100.xhp\">Criteris</link>"
#. oJLj6
#: 12120100.xhp
@@ -53513,14 +53513,14 @@ msgctxt ""
msgid "Input Help"
msgstr "Ajuda d'entrada"
-#. fqyeD
+#. gs4Ph
#: 12120200.xhp
msgctxt ""
"12120200.xhp\n"
"hd_id3156280\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=\"Ajuda d'entrada\">Ajuda d'entrada</link>"
+msgid "<link href=\"text/scalc/01/12120200.xhp\">Input Help</link>"
+msgstr "<link href=\"text/scalc/01/12120200.xhp\">Ajuda d'entrada</link>"
#. dxbif
#: 12120200.xhp
@@ -53612,14 +53612,14 @@ msgctxt ""
msgid "Error Alert"
msgstr "Avís d'error"
-#. 3C3Ya
+#. XoQah
#: 12120300.xhp
msgctxt ""
"12120300.xhp\n"
"hd_id3153821\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=\"Avís d'error\">Avís d'error</link>"
+msgid "<link href=\"text/scalc/01/12120300.xhp\">Error Alert</link>"
+msgstr "<link href=\"text/scalc/01/12120300.xhp\">Avís d'error</link>"
#. Ret79
#: 12120300.xhp
@@ -53702,14 +53702,14 @@ msgctxt ""
msgid "Browse"
msgstr "Navega"
-#. opYvC
+#. NHAMn
#: 12120300.xhp
msgctxt ""
"12120300.xhp\n"
"par_id3153160\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">Obri el diàleg <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>, on podeu seleccionar la macro que s'executa quan s'introdueixen dades no vàlides a una cel·la. La macro s'executa després que es mostre el missatge d'error.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/erroralerttabpage/browseBtn\">Obri el diàleg <link href=\"text/shared/01/06130000.xhp\">Macro</link>, on podeu seleccionar la macro que s'executa quan s'introdueixen dades no vàlides a una cel·la. La macro s'executa després que es mostre el missatge d'error.</ahelp>"
#. WZjAF
#: 12120300.xhp
@@ -53864,13 +53864,13 @@ msgctxt ""
msgid "Calculate"
msgstr ""
-#. bgC7w
+#. 7dvqE
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
"hd_id621584668179317\n"
"help.text"
-msgid "<link href=\"text/scalc/01/calculate.xhp\" name=\"Calculate\">Calculate</link>"
+msgid "<link href=\"text/scalc/01/calculate.xhp\">Calculate</link>"
msgstr ""
#. 8YGcD
@@ -53909,13 +53909,13 @@ msgctxt ""
msgid "<bookmark_value>calculation;accuracy</bookmark_value> <bookmark_value>precision;calculation</bookmark_value>"
msgstr ""
-#. 4gPte
+#. wPGAg
#: calculation_accuracy.xhp
msgctxt ""
"calculation_accuracy.xhp\n"
"hd_id961642017927878\n"
"help.text"
-msgid "<link href=\"text/scalc/01/calculation_accuracy.xhp\" name=\"accuracy\">%PRODUCTNAME Calculation Accuracy</link>"
+msgid "<link href=\"text/scalc/01/calculation_accuracy.xhp\">%PRODUCTNAME Calculation Accuracy</link>"
msgstr ""
#. sW5fH
@@ -53927,31 +53927,31 @@ msgctxt ""
msgid "Inherent Accuracy Problem"
msgstr ""
-#. hov7p
+#. sVT3D
#: calculation_accuracy.xhp
msgctxt ""
"calculation_accuracy.xhp\n"
"par_id541642018071800\n"
"help.text"
-msgid "%PRODUCTNAME Calc, just like most other spreadsheet software, uses floating-point math capabilities available on hardware. Given that most contemporary hardware uses binary floating-point arithmetic with limited precision defined in <link href=\"https://en.wikipedia.org/wiki/IEEE_754\" name=\"IEEE754\">IEEE 754</link> standard, many decimal numbers - including as simple as 0.1 - cannot be precisely represented in %PRODUCTNAME Calc (which uses 64-bit double-precision numbers internally)."
+msgid "%PRODUCTNAME Calc, just like most other spreadsheet software, uses floating-point math capabilities available on hardware. Given that most contemporary hardware uses binary floating-point arithmetic with limited precision defined in <link href=\"https://en.wikipedia.org/wiki/IEEE_754\">IEEE 754</link> standard, many decimal numbers - including as simple as 0.1 - cannot be precisely represented in %PRODUCTNAME Calc (which uses 64-bit double-precision numbers internally)."
msgstr ""
-#. YPbto
+#. mdFJq
#: calculation_accuracy.xhp
msgctxt ""
"calculation_accuracy.xhp\n"
"par_id191642019423811\n"
"help.text"
-msgid "Calculations with those numbers necessarily <link href=\"https://en.wikipedia.org/wiki/Floating-point_arithmetic#Accuracy_problems\" name=\"wpediaaccuracy\">results in rounding errors</link>, and those accumulate with every calculation."
+msgid "Calculations with those numbers necessarily <link href=\"https://en.wikipedia.org/wiki/Floating-point_arithmetic#Accuracy_problems\">results in rounding errors</link>, and those accumulate with every calculation."
msgstr ""
-#. dvRFz
+#. LnjTN
#: calculation_accuracy.xhp
msgctxt ""
"calculation_accuracy.xhp\n"
"par_id221642019437175\n"
"help.text"
-msgid "This is not a bug, but is expected and currently unavoidable without using complex calculations in software, which would incur inappropriate performance penalties, and thus is out of question. Users need to account for that, and use rounding and comparisons with <link href=\"https://en.wikipedia.org/wiki/Machine_epsilon\" name=\"macnie_epsilon\">machine epsilon (or unit roundoff)</link> as necessary."
+msgid "This is not a bug, but is expected and currently unavoidable without using complex calculations in software, which would incur inappropriate performance penalties, and thus is out of question. Users need to account for that, and use rounding and comparisons with <link href=\"https://en.wikipedia.org/wiki/Machine_epsilon\">machine epsilon (or unit roundoff)</link> as necessary."
msgstr ""
#. ncGy5
@@ -54026,14 +54026,14 @@ msgctxt ""
msgid "Cell Styles"
msgstr "Estils de cel·les"
-#. 8o4Ez
+#. gXFEG
#: cell_styles.xhp
msgctxt ""
"cell_styles.xhp\n"
"hd_id811593560413206\n"
"help.text"
-msgid "<link href=\"text/scalc/01/cell_styles.xhp\" name=\"Cell Style\">Cell Styles</link>"
-msgstr "<link href=\"text/scalc/01/cell_styles.xhp\" name=\"Cell Style\">Estils de cel·les</link>"
+msgid "<link href=\"text/scalc/01/cell_styles.xhp\">Cell Styles</link>"
+msgstr "<link href=\"text/scalc/01/cell_styles.xhp\">Estils de cel·les</link>"
#. AZNrM
#: common_func.xhp
@@ -54098,13 +54098,13 @@ msgctxt ""
msgid "This function is not part of the <emph>Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format</emph> standard. The name space is"
msgstr ""
-#. STMGF
+#. rBWwb
#: common_func.xhp
msgctxt ""
"common_func.xhp\n"
"par_id301616845402409\n"
"help.text"
-msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the <link href=\"text/scalc/01/03080000.xhp\" name=\"value highlight\">value highlighting</link> feature."
+msgid "This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the <link href=\"text/scalc/01/03080000.xhp\">value highlighting</link> feature."
msgstr ""
#. GAPGX
@@ -54521,14 +54521,14 @@ msgctxt ""
msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the first data record. Move to the last record before entering new data otherwise the current record will be edited."
msgstr ""
-#. CTy63
+#. 4mygu
#: data_form.xhp
msgctxt ""
"data_form.xhp\n"
"par_id240920171007419799\n"
"help.text"
-msgid "<link href=\"text/shared/guide/data_forms.xhp\" name=\"Forms\">Document Forms</link>"
-msgstr "<link href=\"text/shared/guide/data_forms.xhp\" name=\"Formularis\">Formularis de documents</link>"
+msgid "<link href=\"text/shared/guide/data_forms.xhp\">Document Forms</link>"
+msgstr "<link href=\"text/shared/guide/data_forms.xhp\">Formularis de documents</link>"
#. sATUB
#: data_provider.xhp
@@ -54602,13 +54602,13 @@ msgctxt ""
msgid "<bookmark_value>conditional formatting;data bar options</bookmark_value><bookmark_value>data bar formatting;data bar options</bookmark_value><bookmark_value>data bar options;conditional formatting</bookmark_value>"
msgstr ""
-#. RYVeJ
+#. pZFFx
#: databar_more_options.xhp
msgctxt ""
"databar_more_options.xhp\n"
"hd_id631610470827523\n"
"help.text"
-msgid "<variable id=\"databaroptions\"><link href=\"/text/scalc/01/databar_more_options.xhp\" name=\"More Options for Databar\">Databar More Options</link></variable>"
+msgid "<variable id=\"databaroptions\"><link href=\"/text/scalc/01/databar_more_options.xhp\">Databar More Options</link></variable>"
msgstr ""
#. PDdJA
@@ -55151,22 +55151,22 @@ msgctxt ""
msgid "<emph>Note:</emph> \"=0\" does not match empty cells."
msgstr ""
-#. 2nrnV
+#. QHQaK
#: ex_data_stat_func.xhp
msgctxt ""
"ex_data_stat_func.xhp\n"
"par_id51619279363954\n"
"help.text"
-msgid "For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes and the property <link href=\"text/shared/optionen/01060500.xhp\" name=\"s\">Search criteria = and <> must apply to whole cells</link> is checked, comparison is against the entire cell contents, if unchecked, comparison is against any subpart of the field that matches the criteria. For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes applies."
+msgid "For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes and the property <link href=\"text/shared/optionen/01060500.xhp\">Search criteria = and <> must apply to whole cells</link> is checked, comparison is against the entire cell contents, if unchecked, comparison is against any subpart of the field that matches the criteria. For = and <>, if the value is not empty and can not be interpreted as a Number type or one of its subtypes applies."
msgstr ""
-#. VG8wZ
+#. LX8Cp
#: ex_data_stat_func.xhp
msgctxt ""
"ex_data_stat_func.xhp\n"
"par_id801619279323556\n"
"help.text"
-msgid "Other Text value. If the property <link href=\"text/shared/optionen/01060500.xhp\" name=\"s\">Search criteria = and <> must apply to whole cells</link> is true, the comparison is against the entire cell contents, if false, comparison is against any subpart of the field that matches the criteria. The expression can contain text, numbers, regular expressions or wildcards (<link href=\"text/shared/optionen/01060500.xhp#wildcards\" name=\"Wild cards\">if enabled in calculation options</link>)."
+msgid "Other Text value. If the property <link href=\"text/shared/optionen/01060500.xhp\">Search criteria = and <> must apply to whole cells</link> is true, the comparison is against the entire cell contents, if false, comparison is against any subpart of the field that matches the criteria. The expression can contain text, numbers, regular expressions or wildcards (<link href=\"text/shared/optionen/01060500.xhp#wildcards\">if enabled in calculation options</link>)."
msgstr ""
#. sACAB
@@ -55232,13 +55232,13 @@ msgctxt ""
msgid "Exponential Triple Smoothing (ETS) is a set of algorithms in which both trend and periodical (seasonal) influences are processed. Exponential Double Smoothing (EDS) is an algorithm like ETS, but without the periodical influences. EDS produces linear forecasts."
msgstr ""
-#. hFteX
+#. dhbgU
#: exponsmooth_embd.xhp
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618694537\n"
"help.text"
-msgid "See the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">Wikipedia on Exponential smoothing algorithms</link> for more information."
+msgid "See the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\">Wikipedia on Exponential smoothing algorithms</link> for more information."
msgstr ""
#. xkwEK
@@ -55673,13 +55673,13 @@ msgctxt ""
msgid "<bookmark_value>convert;formula to values</bookmark_value><bookmark_value>replace formula with values</bookmark_value><bookmark_value>recalculate;formula to values</bookmark_value><bookmark_value>formula to values;convert</bookmark_value><bookmark_value>formula to values;recalculate</bookmark_value>"
msgstr ""
-#. u3A5z
+#. xmLmV
#: formula2value.xhp
msgctxt ""
"formula2value.xhp\n"
"hd_id701645222861113\n"
"help.text"
-msgid "<variable id=\"formula2valueh1\"><link href=\"text/scalc/01/formula2value.xhp\" name=\"formula to values\">Formula to value</link></variable>"
+msgid "<variable id=\"formula2valueh1\"><link href=\"text/scalc/01/formula2value.xhp\">Formula to value</link></variable>"
msgstr ""
#. CATpt
@@ -56501,13 +56501,13 @@ msgctxt ""
msgid "<bookmark_value>ARABIC function</bookmark_value> <bookmark_value>text functions;convert roman numbers</bookmark_value>"
msgstr ""
-#. BNUYi
+#. ku3Gp
#: func_arabic.xhp
msgctxt ""
"func_arabic.xhp\n"
"hd_id881628776094597\n"
"help.text"
-msgid "<variable id=\"Arabic_h1\"><link href=\"text/scalc/01/func_arabic.xhp\" name=\"function ARABIC\">ARABIC</link></variable>"
+msgid "<variable id=\"Arabic_h1\"><link href=\"text/scalc/01/func_arabic.xhp\">ARABIC</link></variable>"
msgstr ""
#. xPXrU
@@ -56591,13 +56591,13 @@ msgctxt ""
msgid "<bookmark_value>ASC function</bookmark_value> <bookmark_value>text functions;katakana characters</bookmark_value>"
msgstr ""
-#. 5sWTB
+#. 4QDi7
#: func_asc.xhp
msgctxt ""
"func_asc.xhp\n"
"hd_id881628776094597\n"
"help.text"
-msgid "<variable id=\"Asc_h1\"><link href=\"text/scalc/01/func_asc.xhp\" name=\"function ASC\">ASC</link></variable>"
+msgid "<variable id=\"Asc_h1\"><link href=\"text/scalc/01/func_asc.xhp\">ASC</link></variable>"
msgstr ""
#. gtGVG
@@ -56609,13 +56609,13 @@ msgctxt ""
msgid "<variable id=\"func_asc_desc\"><ahelp hid=\".\">Converts double-byte (full-width) characters to single-byte (half-width) ASCII and katakana characters.</ahelp></variable>"
msgstr ""
-#. zwX68
+#. XLLvR
#: func_asc.xhp
msgctxt ""
"func_asc.xhp\n"
"par_id151634221012221\n"
"help.text"
-msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
+msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
msgstr ""
#. nWQan
@@ -57194,13 +57194,13 @@ msgctxt ""
msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
msgstr ""
-#. XR3RK
+#. cGa5K
#: func_ceiling.xhp
msgctxt ""
"func_ceiling.xhp\n"
"hd_id3152518\n"
"help.text"
-msgid "<variable id=\"CEILINGh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceiling\" name=\"CEILING\">CEILING</link></variable>"
+msgid "<variable id=\"CEILINGh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceiling\">CEILING</link></variable>"
msgstr ""
#. Co8xT
@@ -57320,13 +57320,13 @@ msgctxt ""
msgid "<bookmark_value>CEILING.PRECISE function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
msgstr ""
-#. 5DWRd
+#. JGH6b
#: func_ceiling.xhp
msgctxt ""
"func_ceiling.xhp\n"
"hd_id2952518\n"
"help.text"
-msgid "<variable id=\"CEILING.PRECISEh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingprecise\" name=\"CEILING.PRECISE\">CEILING.PRECISE</link></variable>"
+msgid "<variable id=\"CEILING.PRECISEh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingprecise\">CEILING.PRECISE</link></variable>"
msgstr ""
#. aTD6P
@@ -57347,13 +57347,13 @@ msgctxt ""
msgid "For a positive number the function rounds up (away from zero). For a negative number, the function rounds up (towards zero). The sign of the significance value is ignored."
msgstr ""
-#. 8gkPE
+#. zDBKp
#: func_ceiling.xhp
msgctxt ""
"func_ceiling.xhp\n"
"par_id631586642933797\n"
"help.text"
-msgid "This function calculates identical results to the <link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\" name=\"iso ceiling\">ISO.CEILING</link> function."
+msgid "This function calculates identical results to the <link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\">ISO.CEILING</link> function."
msgstr ""
#. BASfr
@@ -57401,13 +57401,13 @@ msgctxt ""
msgid "<bookmark_value>CEILING.MATH function</bookmark_value>"
msgstr ""
-#. 7xeKu
+#. AuCnM
#: func_ceiling.xhp
msgctxt ""
"func_ceiling.xhp\n"
"hd_id91516997330445\n"
"help.text"
-msgid "<variable id=\"CEILING.MATHh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingmath\" name=\"CEILING.MATH\">CEILING.MATH</link></variable>"
+msgid "<variable id=\"CEILING.MATHh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingmath\">CEILING.MATH</link></variable>"
msgstr ""
#. AzJvD
@@ -57518,13 +57518,13 @@ msgctxt ""
msgid "<bookmark_value>CEILING.XCL function</bookmark_value>"
msgstr ""
-#. CRMmT
+#. xEwWL
#: func_ceiling.xhp
msgctxt ""
"func_ceiling.xhp\n"
"hd_id411516998838823\n"
"help.text"
-msgid "<variable id=\"CEILING.XCLh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingxcl\" name=\"CEILING.XCL\">CEILING.XCL</link></variable>"
+msgid "<variable id=\"CEILING.XCLh1\"><link href=\"text/scalc/01/func_ceiling.xhp#ceilingxcl\">CEILING.XCL</link></variable>"
msgstr ""
#. 2tuD3
@@ -57608,13 +57608,13 @@ msgctxt ""
msgid "<bookmark_value>ISO.CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
msgstr ""
-#. q22aC
+#. 2gaUP
#: func_ceiling.xhp
msgctxt ""
"func_ceiling.xhp\n"
"hd_id8952518\n"
"help.text"
-msgid "<variable id=\"ISO.CEILINGh1\"><link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\" name=\"ISO.CEILING\">ISO.CEILING</link></variable>"
+msgid "<variable id=\"ISO.CEILINGh1\"><link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\">ISO.CEILING</link></variable>"
msgstr ""
#. 5beBC
@@ -57635,13 +57635,13 @@ msgctxt ""
msgid "For a positive number the function rounds up (away from zero). For a negative number, the function rounds up (towards zero). The sign of the significance value is ignored."
msgstr ""
-#. AAHCL
+#. wVZdq
#: func_ceiling.xhp
msgctxt ""
"func_ceiling.xhp\n"
"par_id821586214265060\n"
"help.text"
-msgid "This function calculates identical results to the <link href=\"text/scalc/01/func_ceiling.xhp#ceilingprecise\" name=\"ceiling precise\">CEILING.PRECISE</link> function."
+msgid "This function calculates identical results to the <link href=\"text/scalc/01/func_ceiling.xhp#ceilingprecise\">CEILING.PRECISE</link> function."
msgstr ""
#. GRocX
@@ -57797,13 +57797,13 @@ msgctxt ""
msgid "<bookmark_value>CONCAT function</bookmark_value>"
msgstr ""
-#. BCZMB
+#. DXcLh
#: func_concat.xhp
msgctxt ""
"func_concat.xhp\n"
"hd_id471556226436779\n"
"help.text"
-msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
+msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\">CONCAT</link></variable>"
msgstr ""
#. jUBjE
@@ -57851,13 +57851,13 @@ msgctxt ""
msgid "<input>=CONCAT(\"Hello \", A1:C3)</input> concatenates the string \"Hello\" with all strings in range <literal>A1:C3</literal>."
msgstr ""
-#. WTD5N
+#. D6Gew
#: func_concat.xhp
msgctxt ""
"func_concat.xhp\n"
"par_id781556244709752\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
+msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\">CONCATENATE</link>"
msgstr ""
#. A2RFP
@@ -57896,22 +57896,22 @@ msgctxt ""
msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"><variable id=\"convert_desc\">Converts a value from one unit of measurement to the corresponding value in another unit of measurement.</variable></ahelp> Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"."
msgstr ""
-#. fUwa3
+#. FLrPC
#: func_convert.xhp
msgctxt ""
"func_convert.xhp\n"
"par_id761620414839890\n"
"help.text"
-msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\" name=\"Unit_Groups_Section\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
+msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
msgstr ""
-#. x6USE
+#. Fxn7E
#: func_convert.xhp
msgctxt ""
"func_convert.xhp\n"
"par_id861620428840333\n"
"help.text"
-msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">below</link>."
+msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\">below</link>."
msgstr ""
#. GvB7m
@@ -58058,13 +58058,13 @@ msgctxt ""
msgid "Below are the unit measurement groups supported by the <literal>CONVERT</literal> function. Be aware that conversions can only happen between units that belong to the same group."
msgstr ""
-#. Rd9Fp
+#. hGonG
#: func_convert.xhp
msgctxt ""
"func_convert.xhp\n"
"par_id461620429183259\n"
"help.text"
-msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">prefixes</link>."
+msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\">prefixes</link>."
msgstr ""
#. ELyFm
@@ -60992,14 +60992,14 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060104.xhp#iserror\">ISERROR</link>, <link href=\"text/scalc/01/04060104.xhp#na\">NA</link>, <link href=\"text/scalc/01/04060104.xhp#Section4\">IF</link>"
msgstr "<link href=\"text/scalc/01/04060104.xhp#iserror\">ESERROR</link>, <link href=\"text/scalc/01/04060104.xhp#na\">ND</link>, <link href=\"text/scalc/01/04060104.xhp#Section4\">SI</link>"
-#. EWJHG
+#. tEskv
#: func_error_type.xhp
msgctxt ""
"func_error_type.xhp\n"
"par_id312932390024933\n"
"help.text"
-msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
-msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Codis d'error\">Codis d'error</link>"
+msgid "<link href=\"text/scalc/05/02140000.xhp\">Error codes</link>"
+msgstr "<link href=\"text/scalc/05/02140000.xhp\">Codis d'error</link>"
#. sUgSM
#: func_findb.xhp
@@ -61019,13 +61019,13 @@ msgctxt ""
msgid "<bookmark_value>FINDB Function</bookmark_value> <bookmark_value>find text;FINDB Function</bookmark_value>"
msgstr ""
-#. WmZAa
+#. MAagw
#: func_findb.xhp
msgctxt ""
"func_findb.xhp\n"
"hd_id771573508637966\n"
"help.text"
-msgid "<variable id=\"findb\"><link href=\"text/scalc/01/func_findb.xhp\" name=\"findb\">FINDB</link></variable>"
+msgid "<variable id=\"findb\"><link href=\"text/scalc/01/func_findb.xhp\">FINDB</link></variable>"
msgstr ""
#. iW2EE
@@ -61109,13 +61109,13 @@ msgctxt ""
msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
msgstr ""
-#. KoqGL
+#. soQ7o
#: func_floor.xhp
msgctxt ""
"func_floor.xhp\n"
"hd_id3157404\n"
"help.text"
-msgid "<variable id=\"FLOORh1\"><link href=\"text/scalc/01/func_floor.xhp#floor\" name=\"FLOOR\">FLOOR</link></variable>"
+msgid "<variable id=\"FLOORh1\"><link href=\"text/scalc/01/func_floor.xhp#floor\">FLOOR</link></variable>"
msgstr ""
#. VSV8H
@@ -61235,13 +61235,13 @@ msgctxt ""
msgid "<bookmark_value>FLOOR.MATH function</bookmark_value>"
msgstr ""
-#. rEELD
+#. B9VCD
#: func_floor.xhp
msgctxt ""
"func_floor.xhp\n"
"hd_id1001586287279297\n"
"help.text"
-msgid "<variable id=\"FLOOR.MATHh1\"><link href=\"text/scalc/01/func_floor.xhp#floormath\" name=\"FLOOR.MATH\">FLOOR.MATH</link></variable>"
+msgid "<variable id=\"FLOOR.MATHh1\"><link href=\"text/scalc/01/func_floor.xhp#floormath\">FLOOR.MATH</link></variable>"
msgstr ""
#. BBjwd
@@ -61352,13 +61352,13 @@ msgctxt ""
msgid "<bookmark_value>FLOOR.PRECISE function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
msgstr ""
-#. niyQj
+#. Q6WU3
#: func_floor.xhp
msgctxt ""
"func_floor.xhp\n"
"hd_id2957404\n"
"help.text"
-msgid "<variable id=\"FLOOR.PRECISEh1\"><link href=\"text/scalc/01/func_floor.xhp#floorprecise\" name=\"FLOOR.PRECISE\">FLOOR.PRECISE</link></variable>"
+msgid "<variable id=\"FLOOR.PRECISEh1\"><link href=\"text/scalc/01/func_floor.xhp#floorprecise\">FLOOR.PRECISE</link></variable>"
msgstr ""
#. DgQBx
@@ -61424,13 +61424,13 @@ msgctxt ""
msgid "<bookmark_value>FLOOR.XCL function</bookmark_value>"
msgstr ""
-#. LMEET
+#. gC7eY
#: func_floor.xhp
msgctxt ""
"func_floor.xhp\n"
"hd_id791586291468176\n"
"help.text"
-msgid "<variable id=\"FLOOR.XCLh1\"><link href=\"text/scalc/01/func_floor.xhp#floorxcl\" name=\"FLOOR.XCL\">FLOOR.XCL</link></variable>"
+msgid "<variable id=\"FLOOR.XCLh1\"><link href=\"text/scalc/01/func_floor.xhp#floorxcl\">FLOOR.XCL</link></variable>"
msgstr ""
#. WMsAT
@@ -62252,22 +62252,22 @@ msgctxt ""
msgid "<bookmark_value>FOURIER function</bookmark_value>"
msgstr ""
-#. VQ5ra
+#. mMfDg
#: func_fourier.xhp
msgctxt ""
"func_fourier.xhp\n"
"hd_id551556227727946\n"
"help.text"
-msgid "<variable id=\"fourierfunct\"><link href=\"text/scalc/01/func_fourier.xhp\" name=\"fourierfunction\">FOURIER</link></variable>"
+msgid "<variable id=\"fourierfunct\"><link href=\"text/scalc/01/func_fourier.xhp\">FOURIER</link></variable>"
msgstr ""
-#. TNat4
+#. qwF2T
#: func_fourier.xhp
msgctxt ""
"func_fourier.xhp\n"
"par_id121556227727948\n"
"help.text"
-msgid "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Computes the Discrete Fourier Transform [DFT] of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms.</ahelp></variable> The function is an <link href=\"text/scalc/01/04060107.xhp\" name=\"array formula\">array formula</link>."
+msgid "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Computes the Discrete Fourier Transform [DFT] of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms.</ahelp></variable> The function is an <link href=\"text/scalc/01/04060107.xhp\">array formula</link>."
msgstr ""
#. xGHaG
@@ -62414,13 +62414,13 @@ msgctxt ""
msgid "<bookmark_value>IFS function</bookmark_value>"
msgstr ""
-#. u33ve
+#. kRbQi
#: func_ifs.xhp
msgctxt ""
"func_ifs.xhp\n"
"hd_id271556234923654\n"
"help.text"
-msgid "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
+msgid "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\">IFS</link></variable>"
msgstr ""
#. iANFF
@@ -62549,13 +62549,13 @@ msgctxt ""
msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned."
msgstr ""
-#. smDfE
+#. SzF9N
#: func_ifs.xhp
msgctxt ""
"func_ifs.xhp\n"
"par_id781556244709752\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
+msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\">IF</link>"
msgstr ""
#. vaiXE
@@ -63458,13 +63458,13 @@ msgctxt ""
msgid "<bookmark_value>JIS function</bookmark_value>"
msgstr ""
-#. MEYJo
+#. v8tni
#: func_jis.xhp
msgctxt ""
"func_jis.xhp\n"
"hd_id881628776094597\n"
"help.text"
-msgid "<variable id=\"Jis_h1\"><link href=\"text/scalc/01/func_jis.xhp\" name=\"function JIS\">JIS</link></variable>"
+msgid "<variable id=\"Jis_h1\"><link href=\"text/scalc/01/func_jis.xhp\">JIS</link></variable>"
msgstr ""
#. 3XKQ3
@@ -63476,13 +63476,13 @@ msgctxt ""
msgid "<variable id=\"func_jis_desc\"><ahelp hid=\".\">Converts single-byte (half-width) ASCII or katakana characters to double-byte (full-width) characters.</ahelp></variable>"
msgstr ""
-#. UdHVW
+#. iDoUA
#: func_jis.xhp
msgctxt ""
"func_jis.xhp\n"
"par_id151634221012221\n"
"help.text"
-msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
+msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
msgstr ""
#. AjjnX
@@ -64403,13 +64403,13 @@ msgctxt ""
msgid "The output number is formatted as a valid floating point value and shown using the current cell's number format."
msgstr ""
-#. CdgXz
+#. pCZWD
#: func_numbervalue.xhp
msgctxt ""
"func_numbervalue.xhp\n"
"par_id351625601754290\n"
"help.text"
-msgid "Refer to the <link href=\"text/shared/01/05020300.xhp\" name=\"num_format_link\">Numbers / Format</link> help page to learn how to change the format of numbers in a cell."
+msgid "Refer to the <link href=\"text/shared/01/05020300.xhp\">Numbers / Format</link> help page to learn how to change the format of numbers in a cell."
msgstr ""
#. vEdwF
@@ -64484,13 +64484,13 @@ msgctxt ""
msgid "<input>=NUMBERVALUE(\"1#!234#!567\"; \".\"; \"#!\")</input> returns 1234567 (considering en-US locale). Note that in this case the group separator is specified as a two-character string."
msgstr ""
-#. 4sMd6
+#. xxgaf
#: func_numbervalue.xhp
msgctxt ""
"func_numbervalue.xhp\n"
"par_id451626100385699\n"
"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/NUMBERVALUE\" name=\"NUMBERVALUE_Wiki\">NUMBERVALUE</link> wiki page for more details about this function."
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/NUMBERVALUE\">NUMBERVALUE</link> wiki page for more details about this function."
msgstr ""
#. EJhfD
@@ -64511,13 +64511,13 @@ msgctxt ""
msgid "<bookmark_value>OPT_BARRIER function</bookmark_value>"
msgstr ""
-#. KrCYn
+#. zrZgo
#: func_opt_barrier.xhp
msgctxt ""
"func_opt_barrier.xhp\n"
"hd_id241575063871994\n"
"help.text"
-msgid "<variable id=\"optbrarrierh1\"><link href=\"text/scalc/01/func_opt_barrier.xhp\" name=\"OPT_BARRIER\">OPT_BARRIER</link></variable>"
+msgid "<variable id=\"optbrarrierh1\"><link href=\"text/scalc/01/func_opt_barrier.xhp\">OPT_BARRIER</link></variable>"
msgstr ""
#. uFKBs
@@ -64601,13 +64601,13 @@ msgctxt ""
msgid "<bookmark_value>OPT_PROB_HIT function</bookmark_value>"
msgstr ""
-#. jn8fF
+#. GaMLc
#: func_opt_prob_hit.xhp
msgctxt ""
"func_opt_prob_hit.xhp\n"
"hd_id71575063908363\n"
"help.text"
-msgid "<variable id=\"optprobhith1\"><link href=\"text/scalc/01/func_opt_prob_hit.xhp\" name=\"OPT_PROB_HIT\">OPT_PROB_HIT</link></variable>"
+msgid "<variable id=\"optprobhith1\"><link href=\"text/scalc/01/func_opt_prob_hit.xhp\">OPT_PROB_HIT</link></variable>"
msgstr ""
#. fWecm
@@ -64700,13 +64700,13 @@ msgctxt ""
msgid "<bookmark_value>OPT_PROB_INMONEY function</bookmark_value>"
msgstr ""
-#. kMBbw
+#. FZJEJ
#: func_opt_prob_inmoney.xhp
msgctxt ""
"func_opt_prob_inmoney.xhp\n"
"hd_id941575063929082\n"
"help.text"
-msgid "<variable id=\"optprobinmoneyh1\"><link href=\"text/scalc/01/func_opt_prob_inmoney.xhp\" name=\"OPT_PROB_INMONEY\">OPT_PROB_INMONEY</link></variable>"
+msgid "<variable id=\"optprobinmoneyh1\"><link href=\"text/scalc/01/func_opt_prob_inmoney.xhp\">OPT_PROB_INMONEY</link></variable>"
msgstr ""
#. QDryb
@@ -64817,13 +64817,13 @@ msgctxt ""
msgid "<bookmark_value>OPT_TOUCH function</bookmark_value>"
msgstr ""
-#. DBPBG
+#. VoAwu
#: func_opt_touch.xhp
msgctxt ""
"func_opt_touch.xhp\n"
"hd_id41575062825964\n"
"help.text"
-msgid "<variable id=\"opttouchh1\"><link href=\"text/scalc/01/func_opt_touch.xhp\" name=\"function_opt_touch\">OPT_TOUCH</link></variable>"
+msgid "<variable id=\"opttouchh1\"><link href=\"text/scalc/01/func_opt_touch.xhp\">OPT_TOUCH</link></variable>"
msgstr ""
#. HwW6c
@@ -64835,13 +64835,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Returns the pricing of a touch / no-touch option, calculated using the Black-Scholes option pricing model.</ahelp>"
msgstr ""
-#. DE8qf
+#. fCDgD
#: func_opt_touch.xhp
msgctxt ""
"func_opt_touch.xhp\n"
"par_id371575066515276\n"
"help.text"
-msgid "For relevant background information, visit the <link href=\"https://en.wikipedia.org/wiki/Option_(finance)\" name=\"optionfinance\">Options (finance)</link> and <link href=\"https://en.wikipedia.org/wiki/Black–Scholes_model\" name=\"blackscholes\">Black-Scholes</link> model Wikipedia pages."
+msgid "For relevant background information, visit the <link href=\"https://en.wikipedia.org/wiki/Option_(finance)\">Options (finance)</link> and <link href=\"https://en.wikipedia.org/wiki/Black–Scholes_model\">Black-Scholes</link> model Wikipedia pages."
msgstr ""
#. 29Wsy
@@ -65195,13 +65195,13 @@ msgctxt ""
msgid "<bookmark_value>REGEX function</bookmark_value> <bookmark_value>regular expressions;extracting in spreadsheets</bookmark_value> <bookmark_value>regular expressions;REGEX function</bookmark_value>"
msgstr ""
-#. SUWdW
+#. nqtH7
#: func_regex.xhp
msgctxt ""
"func_regex.xhp\n"
"hd_id961542230672100\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_regex.xhp\" name=\"function REGEX\">REGEX</link>"
+msgid "<link href=\"text/scalc/01/func_regex.xhp\">REGEX</link>"
msgstr ""
#. uTy7w
@@ -65231,13 +65231,13 @@ msgctxt ""
msgid "<emph>Text</emph>: A text or reference to a cell where the regular expression is to be applied."
msgstr ""
-#. me5DX
+#. ip9wk
#: func_regex.xhp
msgctxt ""
"func_regex.xhp\n"
"par_id211542232209275\n"
"help.text"
-msgid "<emph>Expression</emph>: A text representing the regular expression, using <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html#regular-expression-metacharacters\" name=\"ICU REGEXP\">ICU regular expressions</link>. If there is no match and <emph>Replacement</emph> is not given, #N/A is returned."
+msgid "<emph>Expression</emph>: A text representing the regular expression, using <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html#regular-expression-metacharacters\">ICU regular expressions</link>. If there is no match and <emph>Replacement</emph> is not given, #N/A is returned."
msgstr ""
#. ZBTYi
@@ -65312,22 +65312,22 @@ msgctxt ""
msgid "<item type=\"input\">=REGEX(\"axbxcxd\";\"(.)x\";\"$1y\";2)</item> returns \"axbycxd\", the second match of \"(.)x\" (i.e. \"bx\") replaced with the captured group of one character (i.e. \"b\") followed by \"y\"."
msgstr ""
-#. ucfgh
+#. iLhWA
#: func_regex.xhp
msgctxt ""
"func_regex.xhp\n"
"par_id711542233602553\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"regex lists\">List of regular expressions</link>"
-msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"Llistes de regex\">Llista d'expressions regulars</link>"
+msgid "<link href=\"text/shared/01/02100001.xhp\">List of regular expressions</link>"
+msgstr "<link href=\"text/shared/01/02100001.xhp\">Llista d'expressions regulars</link>"
-#. 2AHRN
+#. 3b5yP
#: func_regex.xhp
msgctxt ""
"func_regex.xhp\n"
"par_id431542233650614\n"
"help.text"
-msgid "<link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html\" name=\"ICU REGEXP\">ICU regular expressions</link>"
+msgid "<link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html\">ICU regular expressions</link>"
msgstr ""
#. B64FM
@@ -65348,13 +65348,13 @@ msgctxt ""
msgid "<bookmark_value>REPLACEB Function</bookmark_value> <bookmark_value>replace text;REPLACEB Function</bookmark_value>"
msgstr ""
-#. 5MutE
+#. FH3yx
#: func_replaceb.xhp
msgctxt ""
"func_replaceb.xhp\n"
"hd_id771573508637966\n"
"help.text"
-msgid "<variable id=\"replaceb\"><link href=\"text/scalc/01/func_replaceb.xhp\" name=\"replaceb\">REPLACEB</link></variable>"
+msgid "<variable id=\"replaceb\"><link href=\"text/scalc/01/func_replaceb.xhp\">REPLACEB</link></variable>"
msgstr ""
#. djAL7
@@ -65420,13 +65420,13 @@ msgctxt ""
msgid "<input>=REPLACEB(\"ᄩᄔᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ\";4;1;\"ab\")</input> returns \"ᄩ abᄕᄜᄝᄞᄠᄢᄣᄫᄬᄭᄮᄯᄲᄶ\" ."
msgstr ""
-#. zzieb
+#. 4yxc9
#: func_replaceb.xhp
msgctxt ""
"func_replaceb.xhp\n"
"par_id721626381053212\n"
"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPLACEB\" name=\"REPLACEB_Wiki\">REPLACEB</link> wiki page for more details about this function."
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/REPLACEB\">REPLACEB</link> wiki page for more details about this function."
msgstr ""
#. FuCCt
@@ -65447,13 +65447,13 @@ msgctxt ""
msgid "<bookmark_value>ROMAN function</bookmark_value> <bookmark_value>text functions;convert to roman numbers</bookmark_value>"
msgstr ""
-#. uXEPr
+#. aXrXe
#: func_roman.xhp
msgctxt ""
"func_roman.xhp\n"
"hd_id881628776094597\n"
"help.text"
-msgid "<variable id=\"Roman_h1\"><link href=\"text/scalc/01/func_roman.xhp\" name=\"function ROMAN\">ROMAN</link></variable>"
+msgid "<variable id=\"Roman_h1\"><link href=\"text/scalc/01/func_roman.xhp\">ROMAN</link></variable>"
msgstr ""
#. pdMgk
@@ -65573,13 +65573,13 @@ msgctxt ""
msgid "<bookmark_value>ROUNDDOWN function</bookmark_value> <bookmark_value>numbers;rounding down</bookmark_value>"
msgstr ""
-#. sroq5
+#. bsAG8
#: func_rounddown.xhp
msgctxt ""
"func_rounddown.xhp\n"
"hd_id601641846107898\n"
"help.text"
-msgid "<variable id=\"rounddown_h1\"><link href=\"text/scalc/01/func_rounddown.xhp\" name=\"rounddown_link\">ROUNDDOWN function</link></variable>"
+msgid "<variable id=\"rounddown_h1\"><link href=\"text/scalc/01/func_rounddown.xhp\">ROUNDDOWN function</link></variable>"
msgstr ""
#. dFaB6
@@ -65591,13 +65591,13 @@ msgctxt ""
msgid "Rounds down a number while keeping a specified number of decimal digits."
msgstr ""
-#. gchGZ
+#. wLYBe
#: func_rounddown.xhp
msgctxt ""
"func_rounddown.xhp\n"
"par_id701642530512560\n"
"help.text"
-msgid "This function is equivalent to the <link href=\"text/scalc/01/func_trunc.xhp\" name=\"TRUNC_link\">TRUNC function</link>."
+msgid "This function is equivalent to the <link href=\"text/scalc/01/func_trunc.xhp\">TRUNC function</link>."
msgstr ""
#. soLKp
@@ -65699,13 +65699,13 @@ msgctxt ""
msgid "<bookmark_value>ROUNDSIG Function</bookmark_value>"
msgstr ""
-#. UCpWh
+#. 9awrC
#: func_roundsig.xhp
msgctxt ""
"func_roundsig.xhp\n"
"hd_id351519154702177\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_roundsig.xhp\" name=\"function roundsig\">ROUNDSIG</link>"
+msgid "<link href=\"text/scalc/01/func_roundsig.xhp\">ROUNDSIG</link>"
msgstr ""
#. jJKBA
@@ -65789,13 +65789,13 @@ msgctxt ""
msgid "<item type=\"input\">=ROUNDSIG(123456789; 4)</item> returns 123500000 or 123.5E6"
msgstr ""
-#. h4NB2
+#. XVftx
#: func_roundsig.xhp
msgctxt ""
"func_roundsig.xhp\n"
"par_id51519156941987\n"
"help.text"
-msgid "See also <link href=\"text/scalc/01/04060106.xhp#Section21\" name=\"ROUND function\">ROUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section7\" name=\"MROUND function\">MROUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section19\" name=\"ROUNDUP function\">ROUNDUP</link>, <link href=\"text/scalc/01/04060106.xhp#Section20\" name=\"ROUNDDOWN function\">ROUNDDOWN</link>."
+msgid "See also <link href=\"text/scalc/01/04060106.xhp#Section21\">ROUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section7\">MROUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section19\">ROUNDUP</link>, <link href=\"text/scalc/01/04060106.xhp#Section20\">ROUNDDOWN</link>."
msgstr ""
#. hkbrZ
@@ -65816,13 +65816,13 @@ msgctxt ""
msgid "<bookmark_value>SEARCHB Function</bookmark_value> <bookmark_value>search text;SEARCHB Function</bookmark_value>"
msgstr ""
-#. AXnND
+#. JbAGD
#: func_searchb.xhp
msgctxt ""
"func_searchb.xhp\n"
"hd_id771573508637966\n"
"help.text"
-msgid "<variable id=\"searchb\"><link href=\"text/scalc/01/func_searchb.xhp\" name=\"searchb\">SEARCHB</link></variable>"
+msgid "<variable id=\"searchb\"><link href=\"text/scalc/01/func_searchb.xhp\">SEARCHB</link></variable>"
msgstr ""
#. TySAy
@@ -66050,13 +66050,13 @@ msgctxt ""
msgid "<bookmark_value>SUM function</bookmark_value> <bookmark_value>adding;numbers in cell ranges</bookmark_value>"
msgstr ""
-#. AE4pM
+#. jDti4
#: func_sum.xhp
msgctxt ""
"func_sum.xhp\n"
"hd_id121636398275790\n"
"help.text"
-msgid "<variable id=\"sum_head\"><link href=\"text/scalc/01/func_sum.xhp\" name=\"function SUM\">SUM</link></variable>"
+msgid "<variable id=\"sum_head\"><link href=\"text/scalc/01/func_sum.xhp\">SUM</link></variable>"
msgstr ""
#. c32xJ
@@ -66104,22 +66104,22 @@ msgctxt ""
msgid "<item type=\"input\">=SUM(A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
msgstr ""
-#. y22jE
+#. 3FkJs
#: func_sum.xhp
msgctxt ""
"func_sum.xhp\n"
"par_id3151756\n"
"help.text"
-msgid "A formula such as <input>=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</input> may be entered as an <link href=\"text/scalc/01/04060107.html#hd_id3148474\" name=\"ARRAY_FORMULA\">array formula</link> by pressing the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+Enter keys instead of simply pressing the Enter key to finish entering the formula. The formula will then be shown in the Formula bar enclosed in braces and operates by multiplying corresponding elements of the arrays together and returning their sum."
+msgid "A formula such as <input>=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</input> may be entered as an <link href=\"text/scalc/01/04060107.html#hd_id3148474\">array formula</link> by pressing the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command</caseinline><defaultinline>+Ctrl</defaultinline></switchinline>+Enter keys instead of simply pressing the Enter key to finish entering the formula. The formula will then be shown in the Formula bar enclosed in braces and operates by multiplying corresponding elements of the arrays together and returning their sum."
msgstr ""
-#. FWxB2
+#. EYpTW
#: func_sum.xhp
msgctxt ""
"func_sum.xhp\n"
"par_id661636108218550\n"
"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/SUM\" name=\"SUM_Wiki\">SUM</link> wiki page for more details about this function."
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/SUM\">SUM</link> wiki page for more details about this function."
msgstr ""
#. DfceH
@@ -66320,14 +66320,14 @@ msgctxt ""
msgid "<bookmark_value>SWITCH function</bookmark_value>"
msgstr "<bookmark_value>funció CANVIA</bookmark_value>"
-#. DBGaN
+#. F6kQd
#: func_switch.xhp
msgctxt ""
"func_switch.xhp\n"
"hd_id21556242313791\n"
"help.text"
-msgid "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\" name=\"switch\">SWITCH</link></variable>"
-msgstr "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\" name=\"switch\">CANVIA</link></variable>"
+msgid "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\">SWITCH</link></variable>"
+msgstr "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\">CANVIA</link></variable>"
#. vaCEi
#: func_switch.xhp
@@ -66410,13 +66410,13 @@ msgctxt ""
msgid "<input>=SWITCH(MONTH(A3),1,\"January\",2,\"February\",3,\"March\",\"No match\")</input> returns \"January\" when A3 contains a date in January, \"February\" when A3 contains a date in February , etc..."
msgstr ""
-#. vDLfw
+#. XELDQ
#: func_switch.xhp
msgctxt ""
"func_switch.xhp\n"
"par_id781556244709752\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
+msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\">IF</link>"
msgstr ""
#. BCAZr
@@ -66437,13 +66437,13 @@ msgctxt ""
msgid "<bookmark_value>TEXTJOIN function</bookmark_value>"
msgstr ""
-#. KWzCr
+#. FoNni
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"hd_id551556227727946\n"
"help.text"
-msgid "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"textjoinfunction\">TEXTJOIN</link></variable>"
+msgid "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\">TEXTJOIN</link></variable>"
msgstr ""
#. oLfX2
@@ -66545,13 +66545,13 @@ msgctxt ""
msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\";1;A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
msgstr ""
-#. AXCJg
+#. CdeS7
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id781556244709752\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
+msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\">CONCATENATE</link>"
msgstr ""
#. pLSAn
@@ -66815,13 +66815,13 @@ msgctxt ""
msgid "<bookmark_value>TRUNC function</bookmark_value> <bookmark_value>decimal places;cutting off</bookmark_value> <bookmark_value>numbers;truncate</bookmark_value>"
msgstr ""
-#. CQ5Zg
+#. GEtHZ
#: func_trunc.xhp
msgctxt ""
"func_trunc.xhp\n"
"hd_id601641846107898\n"
"help.text"
-msgid "<variable id=\"trunc_h1\"><link href=\"text/scalc/01/func_trunc.xhp\" name=\"trunc_link\">TRUNC function</link></variable>"
+msgid "<variable id=\"trunc_h1\"><link href=\"text/scalc/01/func_trunc.xhp\">TRUNC function</link></variable>"
msgstr ""
#. dkTrh
@@ -66833,13 +66833,13 @@ msgctxt ""
msgid "Truncates a number while keeping a specified number of decimal digits."
msgstr ""
-#. Hxed7
+#. EmGpf
#: func_trunc.xhp
msgctxt ""
"func_trunc.xhp\n"
"par_id701642530512560\n"
"help.text"
-msgid "This function is equivalent to the <link href=\"text/scalc/01/func_rounddown.xhp\" name=\"ROUNDDOWN_link\">ROUNDDOWN function</link>."
+msgid "This function is equivalent to the <link href=\"text/scalc/01/func_rounddown.xhp\">ROUNDDOWN function</link>."
msgstr ""
#. oZAWU
@@ -66941,13 +66941,13 @@ msgctxt ""
msgid "<bookmark_value>VALUE function</bookmark_value> <bookmark_value>text functions;convert text to numeric value</bookmark_value>"
msgstr ""
-#. pkYxF
+#. F39J8
#: func_value.xhp
msgctxt ""
"func_value.xhp\n"
"hd_id881628776094597\n"
"help.text"
-msgid "<variable id=\"Value_h1\"><link href=\"text/scalc/01/func_value.xhp\" name=\"function VALUE\">VALUE</link></variable>"
+msgid "<variable id=\"Value_h1\"><link href=\"text/scalc/01/func_value.xhp\">VALUE</link></variable>"
msgstr ""
#. BZ7SU
@@ -67040,13 +67040,13 @@ msgctxt ""
msgid "<input>=VALUE(\"09:20:25\")</input> returns 0.389178240740741 which is the date-time sequence number corresponding to the specified time value."
msgstr ""
-#. qxHgs
+#. HArBW
#: func_value.xhp
msgctxt ""
"func_value.xhp\n"
"par_id801628779804928\n"
"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/VALUE\" name=\"VALUE Wiki\">VALUE</link> wiki page for more details about this function."
+msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/VALUE\">VALUE</link> wiki page for more details about this function."
msgstr ""
#. dQeP6
@@ -67067,13 +67067,13 @@ msgctxt ""
msgid "<bookmark_value>WEBSERVICE function</bookmark_value>"
msgstr "<bookmark_value>funció SERVEIWEB</bookmark_value>"
-#. BEKjH
+#. 4hhWq
#: func_webservice.xhp
msgctxt ""
"func_webservice.xhp\n"
"hd_id3149012\n"
"help.text"
-msgid "<variable id=\"webservicefuncname\"><link href=\"text/scalc/01/func_webservice.xhp#webservice\" name=\"webservice\">WEBSERVICE</link></variable>"
+msgid "<variable id=\"webservicefuncname\"><link href=\"text/scalc/01/func_webservice.xhp#webservice\">WEBSERVICE</link></variable>"
msgstr ""
#. NXAzC
@@ -67130,13 +67130,13 @@ msgctxt ""
msgid "<bookmark_value>FILTERXML function</bookmark_value>"
msgstr "<bookmark_value>funció FILTREXML</bookmark_value>"
-#. bGGCk
+#. tSXAu
#: func_webservice.xhp
msgctxt ""
"func_webservice.xhp\n"
"hd_id2949012\n"
"help.text"
-msgid "<variable id=\"filterxmlfuncname\"><link href=\"text/scalc/01/func_webservice.xhp#filterxml\" name=\"filterxml\">FILTERXML</link></variable>"
+msgid "<variable id=\"filterxmlfuncname\"><link href=\"text/scalc/01/func_webservice.xhp#filterxml\">FILTERXML</link></variable>"
msgstr ""
#. 2zvQv
@@ -67202,13 +67202,13 @@ msgctxt ""
msgid "<bookmark_value>ENCODEURL function</bookmark_value>"
msgstr ""
-#. MA6Mq
+#. DBC4X
#: func_webservice.xhp
msgctxt ""
"func_webservice.xhp\n"
"hd_id671517132649769\n"
"help.text"
-msgid "<variable id=\"encodeurlname\"><link href=\"text/scalc/01/func_webservice.xhp#encodeurl\" name=\"linkname\">ENCODEURL</link></variable>"
+msgid "<variable id=\"encodeurlname\"><link href=\"text/scalc/01/func_webservice.xhp#encodeurl\">ENCODEURL</link></variable>"
msgstr ""
#. K5FwD
@@ -68309,13 +68309,13 @@ msgctxt ""
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\">ANY</link></variable>"
-#. jfsgr
+#. h7EMz
#: func_year.xhp
msgctxt ""
"func_year.xhp\n"
"par_id3147496\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the <link href=\"text/scalc/01/04060102.xhp#datebase\" name=\"date calculation rules\">internal calculation rules</link>.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the <link href=\"text/scalc/01/04060102.xhp#datebase\">internal calculation rules</link>.</ahelp>"
msgstr ""
#. 3SfLe
@@ -68732,13 +68732,13 @@ msgctxt ""
msgid "<bookmark_value>calculate;recalculate hard</bookmark_value> <bookmark_value>formulas;recalculate hard</bookmark_value> <bookmark_value>calculate;force recalculation</bookmark_value> <bookmark_value>formulas;force recalculation</bookmark_value> <bookmark_value>non volatile functions;force recalculation</bookmark_value> <bookmark_value>cell contents;force recalculation</bookmark_value>"
msgstr ""
-#. WXR6C
+#. CLMED
#: recalculate_hard.xhp
msgctxt ""
"recalculate_hard.xhp\n"
"hd_id611645217532285\n"
"help.text"
-msgid "<variable id=\"recalculatehardh1\"><link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\">Recalculate Hard</link></variable>"
+msgid "<variable id=\"recalculatehardh1\"><link href=\"text/scalc/01/recalculate_hard.xhp\">Recalculate Hard</link></variable>"
msgstr ""
#. gCAFM
@@ -68750,13 +68750,13 @@ msgctxt ""
msgid "Recalculates all formulas in the document, including Add-In functions and non-volatile functions."
msgstr ""
-#. uDfgm
+#. ooD3F
#: recalculate_hard.xhp
msgctxt ""
"recalculate_hard.xhp\n"
"par_id361645227084327\n"
"help.text"
-msgid "The <menuitem>Recalculate Hard</menuitem> command forces recalculation of all formula cells of the spreadsheet document, including explicit non-volatile functions, even if no new input event exist. Examples of explicit non-volatile functions are <link href=\"text/scalc/01/04060106.xhp#rand_nv\" name=\"RAND.NV\">RAND.NV</link> and <link href=\"text/scalc/01/04060106.xhp#randbetween_nv\" name=\"RANDBETWEEN.NV\">RANDBETWEEN.NV</link>."
+msgid "The <menuitem>Recalculate Hard</menuitem> command forces recalculation of all formula cells of the spreadsheet document, including explicit non-volatile functions, even if no new input event exist. Examples of explicit non-volatile functions are <link href=\"text/scalc/01/04060106.xhp#rand_nv\">RAND.NV</link> and <link href=\"text/scalc/01/04060106.xhp#randbetween_nv\">RANDBETWEEN.NV</link>."
msgstr ""
#. t5LiZ
@@ -68777,13 +68777,13 @@ msgctxt ""
msgid "<bookmark_value>share spreadsheet</bookmark_value> <bookmark_value>spreadsheet;collaboration</bookmark_value> <bookmark_value>spreadsheet;share</bookmark_value>"
msgstr ""
-#. 3vzpA
+#. yDBns
#: shared_spreadsheet.xhp
msgctxt ""
"shared_spreadsheet.xhp\n"
"hd_id461647272004705\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/scalc/01/shared_spreadsheet.xhp\" name=\"Share spreadsheet\">Share Spreadsheet</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/shared_spreadsheet.xhp\">Share Spreadsheet</link></variable>"
msgstr ""
#. KZGLG
@@ -69047,13 +69047,13 @@ msgctxt ""
msgid "Options"
msgstr "Opcions"
-#. AheHK
+#. 5aZF7
#: solver.xhp
msgctxt ""
"solver.xhp\n"
"par_id2423780\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/solver_options.xhp#solveroptionsh1\" name=\"solveroptions\">Solver Options</link> dialog.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/solver_options.xhp#solveroptionsh1\">Solver Options</link> dialog.</ahelp>"
msgstr ""
#. jDGPG
@@ -69155,13 +69155,13 @@ msgctxt ""
msgid "Bounds are specified by selecting one or more variables (as range) on the left side and entering a numerical value (not a cell or a formula) on the right side. That way you can also choose one or more variables to be <emph>Integer</emph> or <emph>Binary</emph> only."
msgstr ""
-#. RDcmq
+#. nApF3
#: solver.xhp
msgctxt ""
"solver.xhp\n"
"par_id271589981559367\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/NLPSolver\" name=\"wikipage\">Wiki page on solvers and their algorithms</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/NLPSolver\">Wiki page on solvers and their algorithms</link>"
msgstr ""
#. akxrP
@@ -69182,13 +69182,13 @@ msgctxt ""
msgid "<bookmark_value>solver for Calc;options</bookmark_value>"
msgstr ""
-#. vZkr3
+#. sPBHR
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
"hd_id2794274\n"
"help.text"
-msgid "<variable id=\"solveroptionsh1\"><link href=\"text/scalc/01/solver_options.xhp\" name=\"Solver Options\">Solver Options</link></variable>"
+msgid "<variable id=\"solveroptionsh1\"><link href=\"text/scalc/01/solver_options.xhp\">Solver Options</link></variable>"
msgstr ""
#. LHgS8
@@ -69290,13 +69290,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter or change the value of the selected setting.</ahelp>"
msgstr ""
-#. FGS6a
+#. GTuhj
#: solver_options.xhp
msgctxt ""
"solver_options.xhp\n"
"par_id271589981559367\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/NLPSolver\" name=\"wikipage\">Wiki page on non-linear solvers and their algorithms</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/NLPSolver\">Wiki page on non-linear solvers and their algorithms</link>"
msgstr ""
#. A843R
@@ -69317,22 +69317,22 @@ msgctxt ""
msgid "<bookmark_value>Solver for Nonlinear Problems;Options</bookmark_value> <bookmark_value>solver for Calc; DEPS evolutionary algorithm</bookmark_value> <bookmark_value>solver for Calc; SCO evolutionary algorithm</bookmark_value> <bookmark_value>solver for Calc; linear solver</bookmark_value> <bookmark_value>solver for Calc; CoinMP linear solver</bookmark_value> <bookmark_value>solver for Calc; swarm non-linear solver</bookmark_value>"
msgstr ""
-#. atkqE
+#. epbWC
#: solver_options_algo.xhp
msgctxt ""
"solver_options_algo.xhp\n"
"hd_id0503200917103593\n"
"help.text"
-msgid "<variable id=\"SolverAlgorithmsOptionsh1\"><link href=\"text/scalc/01/solver_options_algo.xhp#SolverAlgorithmsOptionsh1\" name=\"Solver Algorithms Options\">Solver Algorithms Options</link></variable>"
+msgid "<variable id=\"SolverAlgorithmsOptionsh1\"><link href=\"text/scalc/01/solver_options_algo.xhp#SolverAlgorithmsOptionsh1\">Solver Algorithms Options</link></variable>"
msgstr ""
-#. RjM8p
+#. o9GvM
#: solver_options_algo.xhp
msgctxt ""
"solver_options_algo.xhp\n"
"par_id651589925044267\n"
"help.text"
-msgid "<variable id=\"DEPSEvolutionaryalgorithmh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#DEPSEvolutionaryalgorithmh2\" name=\"DEPS Evolutionary algorithm\">DEPS Evolutionary Algorithm</link></variable>"
+msgid "<variable id=\"DEPSEvolutionaryalgorithmh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#DEPSEvolutionaryalgorithmh2\">DEPS Evolutionary Algorithm</link></variable>"
msgstr ""
#. nebDs
@@ -69650,13 +69650,13 @@ msgctxt ""
msgid "<variable id=\"variablethresdesc\">When guessing variable bounds, this threshold specifies, how the initial values are shifted to build the bounds. For an example how these values are calculated, please refer to the Manual in the Wiki.</variable>"
msgstr ""
-#. UDXDh
+#. g7v8S
#: solver_options_algo.xhp
msgctxt ""
"solver_options_algo.xhp\n"
"par_id391589925078747\n"
"help.text"
-msgid "<variable id=\"SCOEvolutionaryAlgorithmh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#SCOEvolutionaryAlgorithmh2\" name=\"SCO Evolutionary Algorithm\">SCO Evolutionary Algorithm</link></variable>"
+msgid "<variable id=\"SCOEvolutionaryAlgorithmh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#SCOEvolutionaryAlgorithmh2\">SCO Evolutionary Algorithm</link></variable>"
msgstr ""
#. tqkJh
@@ -69722,13 +69722,13 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/solver_options_algo.xhp#variablethresdesc\"/>"
msgstr ""
-#. 46h4u
+#. FAW7L
#: solver_options_algo.xhp
msgctxt ""
"solver_options_algo.xhp\n"
"par_id671589925148891\n"
"help.text"
-msgid "<variable id=\"LinearSolverh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#LinearSolverh2\" name=\"%PRODUCTNAME Linear Solver\">%PRODUCTNAME Linear Solver and CoinMP Linear solver</link></variable>"
+msgid "<variable id=\"LinearSolverh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#LinearSolverh2\">%PRODUCTNAME Linear Solver and CoinMP Linear solver</link></variable>"
msgstr ""
#. PNEaC
@@ -69839,13 +69839,13 @@ msgctxt ""
msgid "<variable id=\"timelimitdesc\">Sets the maximum time for the algorithm to converge to a solution.</variable>"
msgstr ""
-#. 9WDm6
+#. dBQSw
#: solver_options_algo.xhp
msgctxt ""
"solver_options_algo.xhp\n"
"par_id711589925192067\n"
"help.text"
-msgid "<variable id=\"SwarmNonLinearSolverh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#SwarmNonLinearSolverh2\" name=\"%PRODUCTNAME Swarm Non-Linear Solver (Experimental)\">%PRODUCTNAME Swarm Non-Linear Solver (Experimental)</link></variable>"
+msgid "<variable id=\"SwarmNonLinearSolverh2\"><link href=\"text/scalc/01/solver_options_algo.xhp#SwarmNonLinearSolverh2\">%PRODUCTNAME Swarm Non-Linear Solver (Experimental)</link></variable>"
msgstr ""
#. TFadK
@@ -69866,13 +69866,13 @@ msgctxt ""
msgid "Set the swarm algorithm. 0 for differential evolution and 1 for particle swarm optimization. Default is 0."
msgstr ""
-#. wBxK6
+#. BTYCC
#: solver_options_algo.xhp
msgctxt ""
"solver_options_algo.xhp\n"
"par_id271589981559367\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/NLPSolver\" name=\"wikipage\">Wiki page on non-linear solvers and their algorithms</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/NLPSolver\">Wiki page on non-linear solvers and their algorithms</link>"
msgstr ""
#. D2nCR
@@ -69902,13 +69902,13 @@ msgctxt ""
msgid "<bookmark_value>sparklines</bookmark_value>"
msgstr ""
-#. KVEHr
+#. P8DfA
#: sparklines.xhp
msgctxt ""
"sparklines.xhp\n"
"hd_id721654173263812\n"
"help.text"
-msgid "<variable id=\"sparklines\"><link href=\"text/scalc/01/sparklines.xhp\" name=\"Sparklines\">Sparklines</link></variable>"
+msgid "<variable id=\"sparklines\"><link href=\"text/scalc/01/sparklines.xhp\">Sparklines</link></variable>"
msgstr ""
#. wUPfH
@@ -70199,13 +70199,13 @@ msgctxt ""
msgid "<emph>Custom</emph>: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons."
msgstr ""
-#. CNBDD
+#. XG5Kv
#: sparklines.xhp
msgctxt ""
"sparklines.xhp\n"
"par_id801654192214865\n"
"help.text"
-msgid "<link href=\"https://tomazvajngerl.blogspot.com/2022/03/sparklines-in-calc.html\" name=\"developer info\">Developer blog post on sparklines</link>"
+msgid "<link href=\"https://tomazvajngerl.blogspot.com/2022/03/sparklines-in-calc.html\">Developer blog post on sparklines</link>"
msgstr ""
#. Q6isn
@@ -70460,13 +70460,13 @@ msgctxt ""
msgid "Data Statistics in Calc"
msgstr "Estadístiques de dades en el Calc"
-#. VK8em
+#. qDZm7
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"hd_id1000010\n"
"help.text"
-msgid "<link href=\"text/scalc/01/statistics.xhp\" name=\"Data Statistics in Calc\">Statistics</link>"
+msgid "<link href=\"text/scalc/01/statistics.xhp\">Statistics</link>"
msgstr ""
#. iXfGE
@@ -70505,13 +70505,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;analysis of variance</bookmark_value><bookmark_value>Analysis toolpack;ANOVA</bookmark_value><bookmark_value>analysis of variance;Analysis toolpack</bookmark_value><bookmark_value>ANOVA;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;analysis of variance</bookmark_value><bookmark_value>Data statistics;ANOVA</bookmark_value>"
msgstr ""
-#. DLedq
+#. cMChc
#: statistics_anova.xhp
msgctxt ""
"statistics_anova.xhp\n"
"hd_id1000060\n"
"help.text"
-msgid "<variable id=\"anovah1\"><link href=\"text/scalc/01/statistics_anova.xhp\" name=\"Analysis of Variance (ANOVA)\">Analysis of Variance (ANOVA)</link></variable>"
+msgid "<variable id=\"anovah1\"><link href=\"text/scalc/01/statistics_anova.xhp\">Analysis of Variance (ANOVA)</link></variable>"
msgstr ""
#. oSUDa
@@ -70541,13 +70541,13 @@ msgctxt ""
msgid "ANOVA is the acronym for <emph>AN</emph>alysis <emph>O</emph>f <emph>VA</emph>riance. This tool produces the analysis of variance of a given data set"
msgstr ""
-#. fRyBD
+#. WTgyZ
#: statistics_anova.xhp
msgctxt ""
"statistics_anova.xhp\n"
"par_id1001270\n"
"help.text"
-msgid "For more information on ANOVA, refer to the <link href=\"https://en.wikipedia.org/wiki/ANOVA\" name=\"English Wikipedia: ANOVA\">corresponding Wikipedia article</link>."
+msgid "For more information on ANOVA, refer to the <link href=\"https://en.wikipedia.org/wiki/ANOVA\">corresponding Wikipedia article</link>."
msgstr ""
#. Lw9W4
@@ -70802,13 +70802,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;correlation</bookmark_value><bookmark_value>correlation;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;correlation</bookmark_value>"
msgstr ""
-#. GDsXj
+#. HyBpH
#: statistics_correlation.xhp
msgctxt ""
"statistics_correlation.xhp\n"
"hd_id1000090\n"
"help.text"
-msgid "<variable id=\"correlationh1\"><link href=\"text/scalc/01/statistics_correlation.xhp\" name=\"Correlation\">Correlation</link></variable>"
+msgid "<variable id=\"correlationh1\"><link href=\"text/scalc/01/statistics_correlation.xhp\">Correlation</link></variable>"
msgstr ""
#. zJrnQ
@@ -70856,13 +70856,13 @@ msgctxt ""
msgid "A correlation coefficient of -1 indicates a perfect negative correlation"
msgstr ""
-#. rzVxG
+#. A2FeY
#: statistics_correlation.xhp
msgctxt ""
"statistics_correlation.xhp\n"
"par_id1001790\n"
"help.text"
-msgid "For more information on statistical correlation, refer to the <link href=\"https://en.wikipedia.org/wiki/Correlation\" name=\"English Wikipedia: Correlation\">corresponding Wikipedia article</link>."
+msgid "For more information on statistical correlation, refer to the <link href=\"https://en.wikipedia.org/wiki/Correlation\">corresponding Wikipedia article</link>."
msgstr ""
#. 9LxBc
@@ -70955,13 +70955,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;covariance</bookmark_value><bookmark_value>covariance;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;covariance</bookmark_value>"
msgstr ""
-#. mELGD
+#. RS5xC
#: statistics_covariance.xhp
msgctxt ""
"statistics_covariance.xhp\n"
"hd_id1000100\n"
"help.text"
-msgid "<variable id=\"covarianceh1\"><link href=\"text/scalc/01/statistics_covariance.xhp\" name=\"Covariance\">Covariance</link></variable>"
+msgid "<variable id=\"covarianceh1\"><link href=\"text/scalc/01/statistics_covariance.xhp\">Covariance</link></variable>"
msgstr ""
#. xZ7MH
@@ -70991,13 +70991,13 @@ msgctxt ""
msgid "The covariance is a measure of how much two random variables change together."
msgstr ""
-#. mnNLA
+#. Shwy7
#: statistics_covariance.xhp
msgctxt ""
"statistics_covariance.xhp\n"
"par_id1001970\n"
"help.text"
-msgid "For more information on statistical covariance, refer to the <link href=\"https://en.wikipedia.org/wiki/Covariance\" name=\"English Wikipedia: Covariance\">corresponding Wikipedia article</link>."
+msgid "For more information on statistical covariance, refer to the <link href=\"https://en.wikipedia.org/wiki/Covariance\">corresponding Wikipedia article</link>."
msgstr ""
#. FNxfQ
@@ -71090,13 +71090,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;descriptive statistics</bookmark_value><bookmark_value>descriptive statistics;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;descriptive statistics</bookmark_value>"
msgstr ""
-#. CWfuc
+#. 5FQb4
#: statistics_descriptive.xhp
msgctxt ""
"statistics_descriptive.xhp\n"
"hd_id1000050\n"
"help.text"
-msgid "<variable id=\"descriptivestatisticsh1\"><link href=\"text/scalc/01/statistics_descriptive.xhp\" name=\"Descriptive Statistics\">Descriptive Statistics</link></variable>"
+msgid "<variable id=\"descriptivestatisticsh1\"><link href=\"text/scalc/01/statistics_descriptive.xhp\">Descriptive Statistics</link></variable>"
msgstr ""
#. 7XkEb
@@ -71126,13 +71126,13 @@ msgctxt ""
msgid "The Descriptive Statistics analysis tool generates a report of univariate statistics for data in the input range, providing information about the central tendency and variability of your data."
msgstr ""
-#. 2bsE3
+#. 6Shyn
#: statistics_descriptive.xhp
msgctxt ""
"statistics_descriptive.xhp\n"
"par_id1000670\n"
"help.text"
-msgid "For more information on descriptive statistics, refer to the <link href=\"https://en.wikipedia.org/wiki/Descriptive_statistics\" name=\"English Wikipedia: Descriptive statistics\">corresponding Wikipedia article</link>."
+msgid "For more information on descriptive statistics, refer to the <link href=\"https://en.wikipedia.org/wiki/Descriptive_statistics\">corresponding Wikipedia article</link>."
msgstr ""
#. VccwM
@@ -71306,13 +71306,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;exponential smoothing</bookmark_value><bookmark_value>exponential smoothing;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;exponential smoothing</bookmark_value>"
msgstr ""
-#. CF4hG
+#. FufST
#: statistics_exposmooth.xhp
msgctxt ""
"statistics_exposmooth.xhp\n"
"hd_id1000110\n"
"help.text"
-msgid "<variable id=\"exponentialsmoothingh1\"><link href=\"text/scalc/01/statistics_exposmooth.xhp\" name=\"Exponential Smoothing\">Exponential Smoothing</link></variable>"
+msgid "<variable id=\"exponentialsmoothingh1\"><link href=\"text/scalc/01/statistics_exposmooth.xhp\">Exponential Smoothing</link></variable>"
msgstr ""
#. ESHYa
@@ -71342,13 +71342,13 @@ msgctxt ""
msgid "Exponential smoothing is a filtering technique that when applied to a data set, produces smoothed results. It is employed in many domains such as stock market, economics and in sampled measurements."
msgstr ""
-#. BX9Ci
+#. 5CBMM
#: statistics_exposmooth.xhp
msgctxt ""
"statistics_exposmooth.xhp\n"
"par_id1002150\n"
"help.text"
-msgid "For more information on exponential smoothing, refer to the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">corresponding Wikipedia article</link>."
+msgid "For more information on exponential smoothing, refer to the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\">corresponding Wikipedia article</link>."
msgstr ""
#. 2PBvq
@@ -71423,13 +71423,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;Fourier analysis</bookmark_value><bookmark_value>Fourier analysis;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;Fourier analysis</bookmark_value>"
msgstr ""
-#. EV56D
+#. 9bA5L
#: statistics_fourier.xhp
msgctxt ""
"statistics_fourier.xhp\n"
"hd_id431561808831965\n"
"help.text"
-msgid "<variable id=\"fourieranalysysh1\"><link href=\"text/scalc/01/statistics_fourier.xhp\" name=\"Fourier analysis\">Fourier Analysis</link></variable>"
+msgid "<variable id=\"fourieranalysysh1\"><link href=\"text/scalc/01/statistics_fourier.xhp\">Fourier Analysis</link></variable>"
msgstr ""
#. EEBRe
@@ -71450,13 +71450,13 @@ msgctxt ""
msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Fourier Analysis</menuitem></variable>"
msgstr ""
-#. HpuG9
+#. bpqpg
#: statistics_fourier.xhp
msgctxt ""
"statistics_fourier.xhp\n"
"par_id1001270\n"
"help.text"
-msgid "For more information on Fourier analysis, refer to the <link href=\"https://en.wikipedia.org/wiki/Fourier_analysis\" name=\"English Wikipedia: Fourier analysis\">corresponding Wikipedia article</link>."
+msgid "For more information on Fourier analysis, refer to the <link href=\"https://en.wikipedia.org/wiki/Fourier_analysis\">corresponding Wikipedia article</link>."
msgstr ""
#. VArYS
@@ -71513,13 +71513,13 @@ msgctxt ""
msgid "<emph>Minimum magnitude for polar form output (in dB)</emph>: used only when output is in polar form. All frequency components with magnitude less than this value in decibels will be suppressed with a zero magnitude-phase entry. This is very useful when looking at the magnitude-phase spectrum of a signal because there is always some very tiny amount of rounding error when doing FFT algorithms and results in incorrect non-zero phase for non-existent frequencies. By providing a suitable value to this parameter, these non-existent frequency components can be suppressed."
msgstr ""
-#. 8pLcW
+#. SVjc3
#: statistics_fourier.xhp
msgctxt ""
"statistics_fourier.xhp\n"
"par_id731561827207828\n"
"help.text"
-msgid "The source data for this example is the same of the <link href=\"text/scalc/01/func_fourier.xhp\" name=\"Fourier function\">FOURIER function page</link>."
+msgid "The source data for this example is the same of the <link href=\"text/scalc/01/func_fourier.xhp\">FOURIER function page</link>."
msgstr ""
#. 4XJPB
@@ -71612,13 +71612,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;moving average</bookmark_value><bookmark_value>moving average;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;moving average</bookmark_value>"
msgstr ""
-#. XUnST
+#. t6SJm
#: statistics_movingavg.xhp
msgctxt ""
"statistics_movingavg.xhp\n"
"hd_id1000130\n"
"help.text"
-msgid "<variable id=\"movingaverageh1\"><link href=\"text/scalc/01/statistics_movingavg.xhp\" name=\"Moving Average\">Moving Average</link></variable>"
+msgid "<variable id=\"movingaverageh1\"><link href=\"text/scalc/01/statistics_movingavg.xhp\">Moving Average</link></variable>"
msgstr ""
#. ghTMS
@@ -71639,13 +71639,13 @@ msgctxt ""
msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Moving Average</menuitem></variable>"
msgstr ""
-#. kn7s5
+#. ADBDE
#: statistics_movingavg.xhp
msgctxt ""
"statistics_movingavg.xhp\n"
"par_id1002520\n"
"help.text"
-msgid "For more information on the moving average, refer to the <link href=\"https://en.wikipedia.org/wiki/Moving_average\" name=\"English Wikipedia: Moving average\">corresponding Wikipedia article</link>."
+msgid "For more information on the moving average, refer to the <link href=\"https://en.wikipedia.org/wiki/Moving_average\">corresponding Wikipedia article</link>."
msgstr ""
#. eoQu3
@@ -71747,13 +71747,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;regression analysis</bookmark_value><bookmark_value>regression analysis;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;regression analysis</bookmark_value><bookmark_value>Confidence level;regression analysis</bookmark_value><bookmark_value>regression analysis;linear</bookmark_value><bookmark_value>regression analysis;power</bookmark_value><bookmark_value>regression analysis;logarithmic</bookmark_value>"
msgstr ""
-#. UPKr7
+#. PUyBc
#: statistics_regression.xhp
msgctxt ""
"statistics_regression.xhp\n"
"hd_id1701201615033510\n"
"help.text"
-msgid "<variable id=\"regressionanalysish1\"><link href=\"text/scalc/01/statistics_regression.xhp\" name=\"regression analysis\">Regression Analysis</link></variable>"
+msgid "<variable id=\"regressionanalysish1\"><link href=\"text/scalc/01/statistics_regression.xhp\">Regression Analysis</link></variable>"
msgstr ""
#. A8gk9
@@ -71783,13 +71783,13 @@ msgctxt ""
msgid "<variable id=\"sam01\">Choose <menuitem>Data - Statistics - Regression</menuitem></variable>"
msgstr ""
-#. zADGk
+#. 3vwBF
#: statistics_regression.xhp
msgctxt ""
"statistics_regression.xhp\n"
"par_id1001270\n"
"help.text"
-msgid "For more information on regression analysis, refer to the <link href=\"https://en.wikipedia.org/wiki/Regression_analysis\" name=\"English Wikipedia: Regression analysis\">corresponding Wikipedia article</link>."
+msgid "For more information on regression analysis, refer to the <link href=\"https://en.wikipedia.org/wiki/Regression_analysis\">corresponding Wikipedia article</link>."
msgstr ""
#. G5y4R
@@ -71999,13 +71999,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;sampling</bookmark_value><bookmark_value>sampling;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;sampling</bookmark_value>"
msgstr ""
-#. 4SPkL
+#. xpPzu
#: statistics_sampling.xhp
msgctxt ""
"statistics_sampling.xhp\n"
"hd_id1000020\n"
"help.text"
-msgid "<variable id=\"datasamplingh1\"><link href=\"text/scalc/01/statistics_sampling.xhp\" name=\"Sampling\">Sampling</link></variable>"
+msgid "<variable id=\"datasamplingh1\"><link href=\"text/scalc/01/statistics_sampling.xhp\">Sampling</link></variable>"
msgstr ""
#. 9XjLD
@@ -72197,13 +72197,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;Chi-square test</bookmark_value><bookmark_value>Chi-square test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;Chi-square test</bookmark_value>"
msgstr ""
-#. ECMEg
+#. 5paJF
#: statistics_test_chisqr.xhp
msgctxt ""
"statistics_test_chisqr.xhp\n"
"hd_id1000240\n"
"help.text"
-msgid "<variable id=\"chisqtesth1\"><link href=\"text/scalc/01/statistics_test_chisqr.xhp\" name=\"Chi-square test\">Chi-square test</link></variable>"
+msgid "<variable id=\"chisqtesth1\"><link href=\"text/scalc/01/statistics_test_chisqr.xhp\">Chi-square test</link></variable>"
msgstr ""
#. u5MGV
@@ -72224,13 +72224,13 @@ msgctxt ""
msgid "<variable id=\"sam02\">Choose <menuitem>Data - Statistics - Chi-square Test</menuitem></variable>"
msgstr ""
-#. V4PzH
+#. cQrU7
#: statistics_test_chisqr.xhp
msgctxt ""
"statistics_test_chisqr.xhp\n"
"par_id1004000\n"
"help.text"
-msgid "For more information on chi-square tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Chi-square_test\" name=\"English Wikipedia: Chi-square_test\">corresponding Wikipedia article</link>."
+msgid "For more information on chi-square tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Chi-square_test\">corresponding Wikipedia article</link>."
msgstr ""
#. 46RmG
@@ -72314,13 +72314,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;F-test</bookmark_value><bookmark_value>F-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;F-test</bookmark_value>"
msgstr ""
-#. gZWPc
+#. UTG4f
#: statistics_test_f.xhp
msgctxt ""
"statistics_test_f.xhp\n"
"hd_id1000180\n"
"help.text"
-msgid "<variable id=\"ftesth1\"><link href=\"text/scalc/01/statistics_test_f.xhp\" name=\"F-test\">F-test</link></variable>"
+msgid "<variable id=\"ftesth1\"><link href=\"text/scalc/01/statistics_test_f.xhp\">F-test</link></variable>"
msgstr ""
#. qHRjW
@@ -72350,13 +72350,13 @@ msgctxt ""
msgid "A <emph>F-test</emph> is any statistical test based on the F-distribution under the null hypothesis."
msgstr ""
-#. EGFSG
+#. AsStM
#: statistics_test_f.xhp
msgctxt ""
"statistics_test_f.xhp\n"
"par_id1003270\n"
"help.text"
-msgid "For more information on F-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/F-test\" name=\"English Wikipedia: F-test\">corresponding Wikipedia article</link>."
+msgid "For more information on F-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/F-test\">corresponding Wikipedia article</link>."
msgstr ""
#. GxHaD
@@ -72566,13 +72566,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>Analysis toolpack;paired t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>paired t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;paired t-test</bookmark_value>"
msgstr ""
-#. QWgi3
+#. GEv5d
#: statistics_test_t.xhp
msgctxt ""
"statistics_test_t.xhp\n"
"hd_id1000150\n"
"help.text"
-msgid "<variable id=\"ttesth1\"><link href=\"text/scalc/01/statistics_test_t.xhp\" name=\"Paired t-test\">Paired t-test</link></variable>"
+msgid "<variable id=\"ttesth1\"><link href=\"text/scalc/01/statistics_test_t.xhp\">Paired t-test</link></variable>"
msgstr ""
#. TXtGV
@@ -72602,13 +72602,13 @@ msgctxt ""
msgid "A <emph>paired t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
msgstr ""
-#. NE5Ro
+#. hdi8H
#: statistics_test_t.xhp
msgctxt ""
"statistics_test_t.xhp\n"
"par_id1002850\n"
"help.text"
-msgid "For more information on paired t-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/T-test\" name=\"English Wikipedia: T-test\">corresponding Wikipedia article</link>."
+msgid "For more information on paired t-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
msgstr ""
#. BEkGF
@@ -72836,13 +72836,13 @@ msgctxt ""
msgid "<bookmark_value>Analysis toolpack;Z-test</bookmark_value><bookmark_value>Z-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;Z-test</bookmark_value>"
msgstr ""
-#. XEQkC
+#. Z5iqi
#: statistics_test_z.xhp
msgctxt ""
"statistics_test_z.xhp\n"
"hd_id1000210\n"
"help.text"
-msgid "<variable id=\"ztesth1\"><link href=\"text/scalc/01/statistics_test_z.xhp\" name=\"Z-test\">Z-test</link></variable>"
+msgid "<variable id=\"ztesth1\"><link href=\"text/scalc/01/statistics_test_z.xhp\">Z-test</link></variable>"
msgstr ""
#. vjPXp
@@ -72863,13 +72863,13 @@ msgctxt ""
msgid "<variable id=\"sam02\">Choose <menuitem>Data - Statistics - Z-test</menuitem></variable>"
msgstr ""
-#. DrfAa
+#. 2khLG
#: statistics_test_z.xhp
msgctxt ""
"statistics_test_z.xhp\n"
"par_id1003660\n"
"help.text"
-msgid "For more information on Z-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Z-test\" name=\"English Wikipedia: Z-test\">corresponding Wikipedia article</link>."
+msgid "For more information on Z-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Z-test\">corresponding Wikipedia article</link>."
msgstr ""
#. uj2zU
@@ -73403,11 +73403,11 @@ msgctxt ""
msgid "Pressing the Import button starts the import process based on the link definitions that the user has provided. Once the import finishes, the dialog will close."
msgstr "En fer clic al botó Importa s'inicia el procés d'importació basat en les definicions d'enllaços que ha proporcionat l'usuari. Quan finalitze la importació, el diàleg es tancarà."
-#. SqFAe
+#. nfBjK
#: xml_source.xhp
msgctxt ""
"xml_source.xhp\n"
"par_id240920171007419799\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Development/Calc/XMLSource\" target=\"_blank\" name=\"Wiki page on XML Source\">Wiki page on XML Source</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/Development/Calc/XMLSource\" target=\"_blank\">Wiki page on XML Source</link>"
msgstr ""
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/02.po b/source/ca-valencia/helpcontent2/source/text/scalc/02.po
index f57a8252571..240b378db05 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/02.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-06-29 13:08+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textscalc02/ca_VALENCIA/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
"X-POOTLE-MTIME: 1542196414.000000\n"
@@ -26,14 +26,14 @@ msgctxt ""
msgid "Number format: Currency"
msgstr "Format del nombre: Moneda"
-#. qnxQS
+#. uC76y
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3152892\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=\"Format del nombre: Moneda\">Format del nombre: Moneda</link>"
+msgid "<link href=\"text/scalc/02/02130000.xhp\">Number format: Currency</link>"
+msgstr "<link href=\"text/scalc/02/02130000.xhp\">Format del nombre: Moneda</link>"
#. mDBPb
#: 02130000.xhp
@@ -62,14 +62,14 @@ msgctxt ""
msgid "Number Format: Currency"
msgstr "Format del nombre: Moneda"
-#. CDopB
+#. NGRbJ
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3146776\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=\"Format ▸ Cel·les ▸ Nombres\">Format ▸ Cel·les ▸ Nombres</link>."
+msgid "<link href=\"text/shared/01/05020300.xhp\">Format - Cells - Numbers</link>."
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Format ▸ Cel·les ▸ Nombres</link>."
#. fjGg6
#: 02140000.xhp
@@ -80,14 +80,14 @@ msgctxt ""
msgid "Number format: Percent"
msgstr "Format del nombre: Percentatge"
-#. vpFDA
+#. uZTmE
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3156329\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=\"Format del nombre: Percentatge\">Format del nombre: Percentatge</link>"
+msgid "<link href=\"text/scalc/02/02140000.xhp\">Number format: Percent</link>"
+msgstr "<link href=\"text/scalc/02/02140000.xhp\">Format del nombre: Percentatge</link>"
#. fzGGF
#: 02140000.xhp
@@ -161,14 +161,14 @@ msgctxt ""
msgid "1%% corresponds to 0.0001"
msgstr "1%% correspon a 0,0001"
-#. DA27s
+#. a8EDH
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3159153\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=\"Format ▸ Cel·les ▸ Nombres\">Format ▸ Cel·les ▸ Nombres</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Format ▸ Cel·les ▸ Nombres</link>"
#. bX9GB
#: 02150000.xhp
@@ -179,14 +179,14 @@ msgctxt ""
msgid "Number format: Default"
msgstr "Format del nombre: Per defecte"
-#. di5Pr
+#. C4AsN
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"hd_id3149182\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02150000.xhp\" name=\"Number format: Default\">Number format: Default</link>"
-msgstr "<link href=\"text/scalc/02/02150000.xhp\" name=\"Format del nombre: Per defecte\">Format del nombre: Per defecte</link>"
+msgid "<link href=\"text/scalc/02/02150000.xhp\">Number format: Default</link>"
+msgstr "<link href=\"text/scalc/02/02150000.xhp\">Format del nombre: Per defecte</link>"
#. CkVDA
#: 02150000.xhp
@@ -215,14 +215,14 @@ msgctxt ""
msgid "Number Format: Standard"
msgstr "Format del nombre: Estàndard"
-#. JDEfG
+#. 2JKys
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"par_id3154908\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=\"Format ▸ Cel·les ▸ Nombres\">Format ▸ Cel·les ▸ Nombres</link>."
+msgid "<link href=\"text/shared/01/05020300.xhp\">Format - Cells - Numbers</link>."
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Format ▸ Cel·les ▸ Nombres</link>."
#. BhR4Z
#: 02160000.xhp
@@ -233,14 +233,14 @@ msgctxt ""
msgid "Number Format: Add Decimal Place"
msgstr "Format del nombre: Afig un lloc decimal"
-#. VsEUD
+#. BdJjx
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"hd_id3150275\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=\"Format del nombre: Afig un lloc decimal\">Format del nombre: Afig un lloc decimal</link>"
+msgid "<link href=\"text/scalc/02/02160000.xhp\">Number Format: Add Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02160000.xhp\">Format del nombre: Afig un lloc decimal</link>"
#. jhPg6
#: 02160000.xhp
@@ -278,14 +278,14 @@ msgctxt ""
msgid "Number Format: Delete Decimal Place"
msgstr "Format del nombre: Suprimeix un lloc decimal"
-#. ENVTM
+#. ixjiG
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
"hd_id3149164\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=\"Format del nombre: Suprimeix un lloc decimal\">Format del nombre: Suprimeix un lloc decimal</link>"
+msgid "<link href=\"text/scalc/02/02170000.xhp\">Number Format: Delete Decimal Place</link>"
+msgstr "<link href=\"text/scalc/02/02170000.xhp\">Format del nombre: Suprimeix un lloc decimal</link>"
#. Eip8y
#: 02170000.xhp
@@ -332,14 +332,14 @@ msgctxt ""
msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
msgstr "<bookmark_value>barra de fórmules; noms de les àrees del full</bookmark_value><bookmark_value>noms de les àrees del full</bookmark_value><bookmark_value>mostrar; referències de les cel·les</bookmark_value><bookmark_value> referències de les cel·les; mostrar</bookmark_value>"
-#. zo9WM
+#. ywEet
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
"hd_id3156326\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=\"Quadre de noms\">Quadre de noms</link>"
+msgid "<link href=\"text/scalc/02/06010000.xhp\">Name Box</link>"
+msgstr "<link href=\"text/scalc/02/06010000.xhp\">Quadre de noms</link>"
#. bJypW
#: 06010000.xhp
@@ -395,14 +395,14 @@ msgctxt ""
msgid "<bookmark_value>functions;sum function icon</bookmark_value> <bookmark_value>formula bar;sum function</bookmark_value> <bookmark_value>sum icon</bookmark_value> <bookmark_value>AutoSum button, see sum icon</bookmark_value>"
msgstr "<bookmark_value>funcions; icona de la funció de suma</bookmark_value> <bookmark_value>barra de fórmules;funció de suma</bookmark_value> <bookmark_value>icona de suma</bookmark_value> <bookmark_value>botó Suma automàtica, vegeu icona de suma</bookmark_value>"
-#. vYDYK
+#. CiNzL
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
"hd_id3157909\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06030000.xhp\" name=\"Sum\">Select Function</link>"
-msgstr "<link href=\"text/scalc/02/06030000.xhp\" name=\"Suma\">Seleccioneu una funció</link>"
+msgid "<link href=\"text/scalc/02/06030000.xhp\">Select Function</link>"
+msgstr "<link href=\"text/scalc/02/06030000.xhp\">Seleccioneu una funció</link>"
#. KEkiG
#: 06030000.xhp
@@ -539,14 +539,14 @@ msgctxt ""
msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
msgstr "<bookmark_value>barra de fórmules; funcions</bookmark_value><bookmark_value>funcions; icona de la barra de fórmules</bookmark_value>"
-#. tnkP3
+#. ZGqd9
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"hd_id3150084\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
-msgstr "<link href=\"text/scalc/02/06040000.xhp\" name=\"Funció\">Funció</link>"
+msgid "<link href=\"text/scalc/02/06040000.xhp\">Function</link>"
+msgstr "<link href=\"text/scalc/02/06040000.xhp\">Funció</link>"
#. TnbLt
#: 06040000.xhp
@@ -593,23 +593,23 @@ msgctxt ""
msgid "Input line"
msgstr "Línia d'entrada"
-#. CXdQo
+#. Vteqe
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"hd_id3153821\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=\"Línia d'entrada\">Línia d'entrada</link>"
+msgid "<link href=\"text/scalc/02/06050000.xhp\">Input line</link>"
+msgstr "<link href=\"text/scalc/02/06050000.xhp\">Línia d'entrada</link>"
-#. 4R8nP
+#. Dgf7D
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"par_id3155922\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\">Introduïu la fórmula que voleu afegir a la cel·la actual. També podeu fer clic a la icona de l'<link href=\"text/scalc/01/04060000.xhp\" name=\"Auxiliar de fórmules\">Auxiliar de fórmules</link> per inserir una funció predefinida a la fórmula.</ahelp>"
+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\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">Introduïu la fórmula que voleu afegir a la cel·la actual. També podeu fer clic a la icona de l'<link href=\"text/scalc/01/04060000.xhp\">Auxiliar de fórmules</link> per inserir una funció predefinida a la fórmula.</ahelp>"
#. pBxxB
#: 06060000.xhp
@@ -629,14 +629,14 @@ msgctxt ""
msgid "<bookmark_value>formula bar; canceling inputs</bookmark_value><bookmark_value>functions; canceling input icon</bookmark_value>"
msgstr "<bookmark_value>barra de fórmules; cancel·lació d'entrades</bookmark_value><bookmark_value>funcions; icona de cancel·lació d'entrades</bookmark_value>"
-#. nYGqw
+#. 4mACq
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154514\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel\">Cancel</link>"
-msgstr "<link href=\"text/scalc/02/06060000.xhp\" name=\"Cancel·la\">Cancel·la</link>"
+msgid "<link href=\"text/scalc/02/06060000.xhp\">Cancel</link>"
+msgstr "<link href=\"text/scalc/02/06060000.xhp\">Cancel·la</link>"
#. uafDY
#: 06060000.xhp
@@ -683,14 +683,14 @@ msgctxt ""
msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
msgstr "<bookmark_value>barra de fórmules; acceptar entrades</bookmark_value><bookmark_value>funcions; icona d'acceptació d'entrades</bookmark_value>"
-#. SK35g
+#. EnHFH
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
-msgstr "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accepta\">Accepta</link>"
+msgid "<link href=\"text/scalc/02/06070000.xhp\">Accept</link>"
+msgstr "<link href=\"text/scalc/02/06070000.xhp\">Accepta</link>"
#. BBvqG
#: 06070000.xhp
@@ -728,14 +728,14 @@ msgctxt ""
msgid "Theme Selection"
msgstr "Selecció del tema"
-#. 7zx5b
+#. nuJj7
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"hd_id3153087\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=\"Selecció de temes\">Selecció de temes</link>"
+msgid "<link href=\"text/scalc/02/06080000.xhp\">Theme Selection</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\">Selecció de temes</link>"
#. rVKiP
#: 06080000.xhp
@@ -782,14 +782,14 @@ msgctxt ""
msgid "Position in document"
msgstr "Posició en el document"
-#. RiLaz
+#. BNLiM
#: 08010000.xhp
msgctxt ""
"08010000.xhp\n"
"hd_id3145119\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=\"Posició en el document\">Posició en el document</link>"
+msgid "<link href=\"text/scalc/02/08010000.xhp\">Position in document</link>"
+msgstr "<link href=\"text/scalc/02/08010000.xhp\">Posició en el document</link>"
#. L7Xk5
#: 08010000.xhp
@@ -818,14 +818,14 @@ msgctxt ""
msgid "<bookmark_value>formulas;status bar</bookmark_value>"
msgstr "<bookmark_value>fórmules;barra d'estat</bookmark_value>"
-#. MFGFm
+#. FVYfS
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
"hd_id3147335\n"
"help.text"
-msgid "<link href=\"text/scalc/02/08080000.xhp\" name=\"Standard Formula, Date/Time, Error Warning\">Standard Formula, Date/Time, Error Warning</link>"
-msgstr "<link href=\"text/scalc/02/08080000.xhp\" name=\"Fórmula estàndard, Data/Hora, Avís d'error\">Fórmula estàndard, Data/Hora, Avís d'error</link>"
+msgid "<link href=\"text/scalc/02/08080000.xhp\">Standard Formula, Date/Time, Error Warning</link>"
+msgstr "<link href=\"text/scalc/02/08080000.xhp\">Fórmula estàndard, Data/Hora, Avís d'error</link>"
#. gvyvx
#: 08080000.xhp
@@ -845,14 +845,14 @@ msgctxt ""
msgid "To change the default formula that is displayed, right-click the field, and then choose the formula that you want. The available formulas are: Average, count of values (COUNTA), count of numbers (COUNT), Maximum, Minimum, Sum, or None."
msgstr "Per canviar la fórmula que es mostra per defecte, feu un clic amb el botó dret al camp, i després trieu la fórmula que vulgueu. Les fórmules disponibles són: Mitjana, Recompte de valors (COMPTAA), Recompte numèric (COMPTA), Màxim, Mínim, Suma o Cap."
-#. hAizh
+#. dC4rs
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
"par_id3153969\n"
"help.text"
-msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
-msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Codis d'error\">Codis d'error</link>"
+msgid "<link href=\"text/scalc/05/02140000.xhp\">Error codes</link>"
+msgstr "<link href=\"text/scalc/05/02140000.xhp\">Codis d'error</link>"
#. 2fX5w
#: 10050000.xhp
@@ -872,14 +872,14 @@ msgctxt ""
msgid "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
msgstr "<bookmark_value>visualització de la pàgina; augment de l'escala</bookmark_value><bookmark_value>augment de l'escala en la visualització de la pàgina</bookmark_value><bookmark_value>aplicació de zoom;ampliar la visualització de la pàgina</bookmark_value>"
-#. XBiGZ
+#. GESuX
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
"hd_id3148491\n"
"help.text"
-msgid "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
-msgstr "<link href=\"text/scalc/02/10050000.xhp\" name=\"Amplia\">Amplia</link>"
+msgid "<link href=\"text/scalc/02/10050000.xhp\">Zoom In</link>"
+msgstr "<link href=\"text/scalc/02/10050000.xhp\">Amplia</link>"
#. Uq4Tv
#: 10050000.xhp
@@ -935,14 +935,14 @@ msgctxt ""
msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
msgstr "<bookmark_value>visualització de la pàgina; reducció de l'escala</bookmark_value><bookmark_value>aplicació de zoom;reducció de la visualització de la pàgina</bookmark_value>"
-#. fwoCG
+#. Ffzbc
#: 10060000.xhp
msgctxt ""
"10060000.xhp\n"
"hd_id3153561\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=\"Redueix\">Redueix</link>"
+msgid "<link href=\"text/scalc/02/10060000.xhp\">Zoom Out</link>"
+msgstr "<link href=\"text/scalc/02/10060000.xhp\">Redueix</link>"
#. BgFbq
#: 10060000.xhp
@@ -998,14 +998,14 @@ msgctxt ""
msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
msgstr "<bookmark_value>inserció; objectes, icona de la barra d'eines</bookmark_value>"
-#. nuhSb
+#. pM9zg
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3156329\n"
"help.text"
-msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insereix\">Insereix</link>"
+msgid "<link href=\"text/scalc/02/18010000.xhp\">Insert</link>"
+msgstr "<link href=\"text/scalc/02/18010000.xhp\">Insereix</link>"
#. UfEHG
#: 18010000.xhp
@@ -1052,59 +1052,59 @@ msgctxt ""
msgid "You can select the following icons:"
msgstr "Podeu seleccionar les icones següents:"
-#. mimKi
+#. CCP2V
#: 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=\"Marc flotant\">Marc flotant</link>"
+msgid "<link href=\"text/shared/01/04160500.xhp\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\">Marc flotant</link>"
-#. hJCq8
+#. gdmkZ
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3149410\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=\"Caràcter especial\">Caràcter especial</link>"
+msgid "<link href=\"text/shared/01/04100000.xhp\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\">Caràcter especial</link>"
-#. 9YdEG
+#. FDin8
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3151117\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=\"Des d'un fitxer\">Des d'un fitxer</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\">Des d'un fitxer</link>"
-#. kBXFP
+#. UKJsG
#: 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=\"Fórmula\">Fórmula</link>"
+msgid "<link href=\"text/shared/01/04160300.xhp\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04160300.xhp\">Fórmula</link>"
-#. MABzX
+#. sCB8B
#: 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=\"Insereix un diagrama\">Diagrama</link>"
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\">Diagrama</link>"
-#. 98CKi
+#. zc6Yi
#: 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=\"Objecte OLE\">Objecte OLE</link>"
+msgid "<link href=\"text/shared/01/04150100.xhp\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\">Objecte OLE</link>"
#. QMjWB
#: 18020000.xhp
@@ -1124,14 +1124,14 @@ msgctxt ""
msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
msgstr "<bookmark_value>inserció; cel·les, icona de la barra d'eines</bookmark_value>"
-#. CMJXh
+#. RysCQ
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
"hd_id3150275\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=\"Insereix cel·les\">Insereix cel·les</link>"
+msgid "<link href=\"text/scalc/02/18020000.xhp\">Insert Cells</link>"
+msgstr "<link href=\"text/scalc/02/18020000.xhp\">Insereix cel·les</link>"
#. iTWkf
#: 18020000.xhp
@@ -1160,38 +1160,38 @@ msgctxt ""
msgid "You can select the following icons:"
msgstr "Podeu seleccionar les icones següents:"
-#. m2qTa
+#. JPhcE
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
"hd_id3150439\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=\"Insereix cel·les cap avall\">Insereix cel·les cap avall</link>"
+msgid "<link href=\"text/scalc/01/04020000.xhp\">Insert Cells Down</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\">Insereix cel·les cap avall</link>"
-#. CLMtB
+#. c3Xmu
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
"hd_id3146119\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=\"Insereix cel·les cap a la dreta\">Insereix cel·les cap a la dreta</link>"
+msgid "<link href=\"text/scalc/01/04020000.xhp\">Insert Cells Right</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\">Insereix cel·les cap a la dreta</link>"
-#. nv4or
+#. XXyxu
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
"hd_id3153190\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Files\">Files</link>"
+msgid "<link href=\"text/scalc/01/04020000.xhp\">Rows</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\">Files</link>"
-#. ojZTY
+#. i4ifJ
#: 18020000.xhp
msgctxt ""
"18020000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columnes\">Columnes</link>"
+msgid "<link href=\"text/scalc/01/04020000.xhp\">Columns</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\">Columnes</link>"
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/04.po b/source/ca-valencia/helpcontent2/source/text/scalc/04.po
index e591a997952..aaca9f48fdc 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/04.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-24 12:02+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc04/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; shortcut keys in</bookmark_value> <bookmark_value>shortcut keys; spreadsheets</bookmark_value> <bookmark_value>sheet ranges; filling</bookmark_value>"
msgstr ""
-#. CkSXA
+#. qPZBx
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3145801\n"
"help.text"
-msgid "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Shortcut Keys for Spreadsheets\">Shortcut Keys for Spreadsheets</link></variable>"
-msgstr "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\" name=\"Tecles de drecera per als fulls de càlcul\">Tecles de drecera per als fulls de càlcul</link></variable>"
+msgid "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\">Shortcut Keys for Spreadsheets</link></variable>"
+msgstr "<variable id=\"calc_keys\"><link href=\"text/scalc/04/01020000.xhp\">Tecles de drecera per als fulls de càlcul</link></variable>"
#. nwThC
#: 01020000.xhp
@@ -89,14 +89,14 @@ msgctxt ""
msgid "To insert a manual line break in a cell, click in the cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
msgstr "Per inserir un salt de línia manual en una cel·la, feu clic a la cel·la i després premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Retorn."
-#. GDa5C
+#. GeePj
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3146978\n"
"help.text"
-msgid "To delete the contents of selected cells, press Backspace. This opens the <link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link> dialog, where you choose which contents of the cell you want to delete. To delete the contents of selected cells without a dialog, press the Delete key."
-msgstr "Per suprimir el contingut de les cel·les seleccionades, premeu la tecla Retrocés. Amb esta acció obrireu el diàleg <link href=\"text/scalc/01/02150000.xhp\" name=\"Suprimeix el contingut\">Suprimeix el contingut</link>, on podreu triar quin contingut de la cel·la voleu suprimir. Per suprimir el contingut de les cel·les sense cap diàleg, premeu la tecla Supr."
+msgid "To delete the contents of selected cells, press Backspace. This opens the <link href=\"text/scalc/01/02150000.xhp\">Delete Contents</link> dialog, where you choose which contents of the cell you want to delete. To delete the contents of selected cells without a dialog, press the Delete key."
+msgstr "Per suprimir el contingut de les cel·les seleccionades, premeu la tecla Retrocés. Amb esta acció obrireu el diàleg <link href=\"text/scalc/01/02150000.xhp\">Suprimeix el contingut</link>, on podreu triar quin contingut de la cel·la voleu suprimir. Per suprimir el contingut de les cel·les sense cap diàleg, premeu la tecla Supr."
#. U7wer
#: 01020000.xhp
@@ -1286,14 +1286,14 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline>+fletxa avall"
-#. 3KnNK
+#. wuQzk
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3153155\n"
"help.text"
-msgid "Increases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
-msgstr "Augmenta l'altura de la fila activa (només en el <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibilité\">mode de compatibilitat amb l'antic OpenOffice.org</link>)."
+msgid "Increases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\">OpenOffice.org legacy compatibility mode</link>)."
+msgstr "Augmenta l'altura de la fila activa (només en el <link href=\"text/shared/optionen/01060800.xhp\">mode de compatibilitat amb l'antic OpenOffice.org</link>)."
#. v7V4h
#: 01020000.xhp
@@ -1304,14 +1304,14 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Up Arrow"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline>+fletxa amunt"
-#. K487L
+#. hCAGz
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3155849\n"
"help.text"
-msgid "Decreases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">OpenOffice.org legacy compatibility mode</link>)."
-msgstr "Disminueix l'altura de la fila activa (només en <link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibilité\">mode de compatibilitat amb l'antic OpenOffice.org</link>)."
+msgid "Decreases the height of current row (only in <link href=\"text/shared/optionen/01060800.xhp\">OpenOffice.org legacy compatibility mode</link>)."
+msgstr "Disminueix l'altura de la fila activa (només en <link href=\"text/shared/optionen/01060800.xhp\">mode de compatibilitat amb l'antic OpenOffice.org</link>)."
#. CMCuV
#: 01020000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/05.po b/source/ca-valencia/helpcontent2/source/text/scalc/05.po
index ffc07a6b78d..10596b5b8de 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/05.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textscalc05/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>error codes;list of</bookmark_value>"
msgstr "<bookmark_value>codis d'error;llista de</bookmark_value>"
-#. tQSnG
+#. EYAcn
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3146797\n"
"help.text"
-msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error Codes in %PRODUCTNAME Calc\">Error Codes in <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
-msgstr "<link href=\"text/scalc/05/02140000.xhp\" name=\"Codis d'error del %PRODUCTNAME Calc\">Codis d'error del <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
+msgid "<link href=\"text/scalc/05/02140000.xhp\">Error Codes in <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
+msgstr "<link href=\"text/scalc/05/02140000.xhp\">Codis d'error del <item type=\"productname\">%PRODUCTNAME</item> Calc</link>"
#. B8xxG
#: 02140000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/guide.po b/source/ca-valencia/helpcontent2/source/text/scalc/guide.po
index 752576903fd..47f589ef009 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-22 14:43+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
msgstr "<bookmark_value>adreces automàtiques a les taules</bookmark_value><bookmark_value>adreces de llenguatge natural</bookmark_value><bookmark_value>fórmules; ús d'etiquetes de fila o de columna</bookmark_value><bookmark_value>text a les cel·les; com a adreces</bookmark_value><bookmark_value>adreces; automàtiques</bookmark_value><bookmark_value>reconeixement de noms activat o desactivat</bookmark_value><bookmark_value>capçaleres de fila;utilització en fórmules</bookmark_value><bookmark_value>capçaleres de columna;utilització en fórmules</bookmark_value><bookmark_value>columnes; busca automàtica d'etiquetes</bookmark_value><bookmark_value>files; busca automàtica d'etiquetes</bookmark_value><bookmark_value>reconeixement; etiquetes de fila i de columna</bookmark_value>"
-#. qAvAQ
+#. Jmw9V
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
"hd_id3148797\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=\"Reconeixement dels noms com a adreces\">Reconeixement dels noms com a adreces</link></variable>"
+msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\">Recognizing Names as Addressing</link></variable>"
+msgstr "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\">Reconeixement dels noms com a adreces</link></variable>"
#. GgEvz
#: address_auto.xhp
@@ -71,23 +71,32 @@ msgctxt ""
msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
msgstr "Al full de càlcul d'exemple, podeu utilitzar la cadena <item type=\"literal\">'Columna 1'</item> en una fórmula per referir-vos a l'interval de cel·les de <item type=\"literal\">B3</item> a <item type=\"literal\">B5</item>, o bé <item type=\"literal\">'Columna 2'</item> per a l'interval de cel·les de <item type=\"literal\">C2</item> a <item type=\"literal\">C5</item>. També podeu utilitzar <item type=\"literal\">'Fila 1'</item> per a l'interval de cel·les de <item type=\"literal\">B3</item> a <item type=\"literal\">D3</item>, o bé <item type=\"literal\">'Fila 2'</item> per a l'interval de cel·les de <item type=\"literal\">B4</item> a <item type=\"literal\">D4</item>. El resultat d'una fórmula que utilitze un nom d'una cel·la, per exemple, <item type=\"literal\">SUMA('Columna 1')</item>, serà 600."
-#. VBpuo
+#. xYcEr
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
"par_id3155443\n"
"help.text"
-msgid "This function is active by default. To turn this function off, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
-msgstr "Esta funció està activada per defecte. Per desactivar-la, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME Calc ▸ Càlcul</emph> i desactiveu la casella de selecció <emph>Busca automàticament les etiquetes de columna i fila</emph>."
+msgid "Automatically finding labels is a legacy feature and deactivated by default as it can produce nondeterministic behavior depending on actual document content. To turn this function on, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph> and mark the <emph>Automatically find column and row labels</emph> check box."
+msgstr ""
-#. ADRpB
+#. Q9Nee
+#: address_auto.xhp
+msgctxt ""
+"address_auto.xhp\n"
+"par_id3155444\n"
+"help.text"
+msgid "Using defined labels instead is always possible and behaves similar but in a defined way."
+msgstr ""
+
+#. ZuesG
#: address_auto.xhp
msgctxt ""
"address_auto.xhp\n"
"par_id3149210\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 "Perquè el Calc reconegui un nom automàticament, aquest nom haurà de començar amb una lletra i haurà d'estar format per caràcters alfanumèrics. Si l'introduïu manualment a la fórmula, l'haureu d'escriure entre cometes simples ('). Noteu que si el nom conté una cometa simple, haureu d'introduir una barra inversa davant d'aquesta cometa, per exemple, <item type=\"literal\">'Despeses d\\'enviament</item>."
+msgid "If you enter a label name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must double it, for example, <item type=\"literal\">'Harry''s Bar'</item>."
+msgstr ""
#. EXFye
#: auto_off.xhp
@@ -107,14 +116,14 @@ msgctxt ""
msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
msgstr "<bookmark_value>desactivació; canvis automàtics</bookmark_value><bookmark_value>taules; desactivació de canvis automàtics en</bookmark_value><bookmark_value>activació o desactivació de la funció d'entrada automàtica</bookmark_value><bookmark_value>text a les cel·les;funció d'entrada automàtica</bookmark_value><bookmark_value>cel·les; funció d'entrada automàtica de text</bookmark_value><bookmark_value>entrada als fulls de càlcul</bookmark_value><bookmark_value>canvi; entrada a les cel·les</bookmark_value><bookmark_value>funció de correcció automàtica;continguts de la cel·la</bookmark_value><bookmark_value>entrada de cel·les;funció d'entrada automàtica</bookmark_value><bookmark_value>lletres minúscules;funció d'entrada automàtica (a les cel·les)</bookmark_value><bookmark_value>lletres majúscules;funció d'entrada automàtica (a les cel·les)</bookmark_value><bookmark_value>formats de data;evitar la conversió a</bookmark_value><bookmark_value>activació o desactivació de la compleció de nombres</bookmark_value><bookmark_value>activació o desactivació de la compleció de text</bookmark_value><bookmark_value>activació o desactivació de la compleció de paraules</bookmark_value>"
-#. xyLjr
+#. GMvpd
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"hd_id3149456\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=\"Desactivació dels canvis automàtics\">Desactivació dels canvis automàtics</link></variable>"
+msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\">Deactivating Automatic Changes</link> </variable>"
+msgstr "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\">Desactivació dels canvis automàtics</link></variable>"
#. 4h6m4
#: auto_off.xhp
@@ -152,14 +161,14 @@ msgctxt ""
msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
msgstr "Quan feu una entrada en una cel·la, el $[officename] Calc suggereix automàticament una entrada coincident que hi haja a la mateixa columna. Esta funció es coneix com a <emph>Entrada automàtica</emph>."
-#. QXemT
+#. rPWCd
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3153878\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 - AutoInput\"><emph>Tools - AutoInput</emph></link>."
-msgstr "Per a activar i desactivar l'entrada automàtica, activeu o desactiveu la marca de selecció que hi ha davant d'<link href=\"text/scalc/01/06130000.xhp\" name=\"Eines ▸ Entrada automàtica\"><emph>Eines ▸ Entrada automàtica</emph></link>."
+msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\"><emph>Tools - AutoInput</emph></link>."
+msgstr "Per a activar i desactivar l'entrada automàtica, activeu o desactiveu la marca de selecció que hi ha davant d'<link href=\"text/scalc/01/06130000.xhp\"><emph>Eines ▸ Entrada automàtica</emph></link>."
#. 8G5gv
#: auto_off.xhp
@@ -242,23 +251,23 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
msgstr "Trieu <item type=\"menuitem\">Eines ▸ Opcions de correcció automàtica</item>, aneu a la pestanya <item type=\"menuitem\">Reemplaça</item>, seleccioneu el parell de paraules i feu clic a <item type=\"menuitem\">Suprimeix</item>."
-#. mkLPr
+#. HzAWS
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3152992\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\">Tools - AutoInput</link>"
-msgstr "<link href=\"text/scalc/01/06130000.xhp\" name=\"Eines ▸ Entrada automàtica\">Eines ▸ Entrada automàtica</link>"
+msgid "<link href=\"text/scalc/01/06130000.xhp\">Tools - AutoInput</link>"
+msgstr "<link href=\"text/scalc/01/06130000.xhp\">Eines ▸ Entrada automàtica</link>"
-#. h5BG2
+#. v9BGX
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3154368\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect - AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Eines ▸ Correcció automàtica\">Eines ▸ Opcions de correcció automàtica</link>"
+msgid "<link href=\"text/shared/01/06040000.xhp\">Tools - AutoCorrect - AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\">Eines ▸ Opcions de correcció automàtica</link>"
#. tdzBC
#: autofilter.xhp
@@ -278,14 +287,14 @@ msgctxt ""
msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
msgstr "<bookmark_value>filtres, vegeu també funció de filtre automàtic</bookmark_value><bookmark_value>funció de filtre automàtic;aplicació</bookmark_value><bookmark_value>fulls; valors del filtre</bookmark_value><bookmark_value>nombres; fulls de filtre</bookmark_value><bookmark_value>columnes; funció de filtre automàtic</bookmark_value><bookmark_value>menús desplegables a les columnes del full</bookmark_value><bookmark_value>intervals de bases de dades; funció de filtre automàtic</bookmark_value>"
-#. WoBQt
+#. ukKtB
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
"hd_id3156423\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=\"Aplicació del filtre automàtic\">Aplicació del filtre automàtic</link></variable>"
+msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\">Applying AutoFilter</link></variable>"
+msgstr "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\">Aplicació del filtre automàtic</link></variable>"
#. 7FoJn
#: autofilter.xhp
@@ -368,32 +377,32 @@ msgctxt ""
msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
msgstr "Per assignar filtres automàtics diferents a diversos fulls, primer haureu de definir un interval de base de dades a cada full."
-#. 8ViYy
+#. tBXAy
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
"par_id3159236\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 "Les funcions aritmètiques també tenen en compte les cel·les que no es veuen a causa del filtre que se'ls ha aplicat. Per exemple, la suma d'una columna completa també tindrà en compte els valors de les cel·les filtrades. Apliqueu la funció <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> si només voleu que es tinguen en compte les cel·les visibles després d'aplicar un filtre."
+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\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
+msgstr "Les funcions aritmètiques també tenen en compte les cel·les que no es veuen a causa del filtre que se'ls ha aplicat. Per exemple, la suma d'una columna completa també tindrà en compte els valors de les cel·les filtrades. Apliqueu la funció <link href=\"text/scalc/01/04060106.xhp\">SUBTOTAL</link> si només voleu que es tinguen en compte les cel·les visibles després d'aplicar un filtre."
-#. nj46T
+#. KZJNX
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
"par_id3152985\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=\"Dades - Filtre - Filtre automàtic\">Dades - Filtre - Filtre automàtic</link>"
+msgid "<link href=\"text/scalc/01/12040100.xhp\">Data - Filter - AutoFilter</link>"
+msgstr "<link href=\"text/scalc/01/12040100.xhp\">Dades - Filtre - Filtre automàtic</link>"
-#. UwaWC
+#. 2Dn9i
#: autofilter.xhp
msgctxt ""
"autofilter.xhp\n"
"par_id3154484\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 "<link href=\"text/scalc/01/04060106.xhp\">SUBTOTAL</link>"
+msgstr "<link href=\"text/scalc/01/04060106.xhp\">SUBTOTAL</link>"
#. XAtNE
#: autoformat.xhp
@@ -413,14 +422,14 @@ msgctxt ""
msgid "<bookmark_value>tables; AutoFormat</bookmark_value> <bookmark_value>AutoFormat cell ranges</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat</bookmark_value>"
msgstr ""
-#. EiEMB
+#. PYXFN
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
"hd_id3155132\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=\"Utilització de la formatació automàtica per a taules\">Aplicació de la formatació automàtica a un interval de cel·les seleccionat</link></variable>"
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\">Applying Automatic Formatting to a Selected Cell Range</link></variable>"
+msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\">Aplicació de la formatació automàtica a un interval de cel·les seleccionat</link></variable>"
#. 7xexA
#: autoformat.xhp
@@ -566,14 +575,14 @@ msgctxt ""
msgid "The new AutoFormat styles created using the steps above can be applied to any %PRODUCTNAME Calc file. Hence they are not limited to the file where the style was created."
msgstr ""
-#. hpPvo
+#. gKDHt
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
"par_id3159203\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat Styles</link>"
-msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format ▸ Formatació automàtica\">Format ▸ Estils de formatació automàtica</link>"
+msgid "<link href=\"text/scalc/01/05110000.xhp\">Format - AutoFormat Styles</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\">Format ▸ Estils de formatació automàtica</link>"
#. ZSCL9
#: background.xhp
@@ -593,13 +602,13 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value><bookmark_value>backgrounds;cell ranges</bookmark_value><bookmark_value>tables; backgrounds</bookmark_value><bookmark_value>cells; backgrounds</bookmark_value><bookmark_value>rows, see also cells</bookmark_value><bookmark_value>columns, see also cells</bookmark_value>"
msgstr ""
-#. tMFWU
+#. 4sJss
#: background.xhp
msgctxt ""
"background.xhp\n"
"hd_id3149346\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>"
+msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\">Defining Background Colors or Background Graphics</link> </variable>"
msgstr ""
#. gwwiM
@@ -674,13 +683,13 @@ msgctxt ""
msgid "Select the graphic and click <emph>Open</emph>."
msgstr "Seleccioneu el gràfic i feu clic a <emph>Obri</emph>"
-#. 2BGVn
+#. 4oCgd
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3153575\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 <menuitem>Arrange - To Background</menuitem> command to place this in the background. To select a graphic that has been placed in the background, use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>."
+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 <menuitem>Arrange - To Background</menuitem> command to place this in the background. To select a graphic that has been placed in the background, use the <link href=\"text/scalc/01/02110000.xhp\">Navigator</link>."
msgstr ""
#. vTxFX
@@ -692,13 +701,13 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
msgstr "<link href=\"text/shared/guide/background.xhp\">Filigranes</link>"
-#. R8Ctk
+#. yWAyq
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3156180\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\"><emph>Background</emph> tab page</link>"
msgstr ""
#. owozX
@@ -1295,14 +1304,14 @@ msgctxt ""
msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
msgstr "<bookmark_value>dates; a les cel·les</bookmark_value><bookmark_value>hores; a les cel·les</bookmark_value><bookmark_value>cel·les;formats de data i hora</bookmark_value><bookmark_value>valors de data i hora actuals</bookmark_value>"
-#. DKYwy
+#. P5PrP
#: calc_date.xhp
msgctxt ""
"calc_date.xhp\n"
"hd_id3146120\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=\"Càlculs amb dates i hores\">Càlculs amb dates i hores</link></variable>"
+msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\">Calculating With Dates and Times</link></variable>"
+msgstr "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\">Càlculs amb dates i hores</link></variable>"
#. ZBgGk
#: calc_date.xhp
@@ -1403,14 +1412,14 @@ msgctxt ""
msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
msgstr "<bookmark_value>sèries; càlcul</bookmark_value><bookmark_value>càlcul; sèries</bookmark_value><bookmark_value>sèries lineals</bookmark_value><bookmark_value>sèries de creixement</bookmark_value><bookmark_value>sèries de dates</bookmark_value><bookmark_value>càlculs de potències de 2 </bookmark_value><bookmark_value>cel·les; emplenament automàtic</bookmark_value><bookmark_value>emplenament automàtic de cel·les</bookmark_value><bookmark_value>funció d'emplenament automàtic</bookmark_value><bookmark_value>emplenament;cel·les, automàtic</bookmark_value>"
-#. RxPrT
+#. VGhrd
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
"hd_id3150769\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=\"Càlcul automàtic de sèries\">Emplenament automàtic de dades a partir de cel·les adjacents</link></variable>"
+msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
+msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\">Emplenament automàtic de dades a partir de cel·les adjacents</link></variable>"
#. C6vL5
#: calc_series.xhp
@@ -1574,14 +1583,14 @@ msgctxt ""
msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
msgstr "Si seleccioneu una sèrie de <emph>data</emph>, l'increment que introduïu s'afegirà a la unitat de temps que especifiqueu."
-#. NqenD
+#. ZNvtX
#: calc_series.xhp
msgctxt ""
"calc_series.xhp\n"
"par_id3159173\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=\"Llistes d'ordenació\">Llistes d'ordenació</link>"
+msgid "<link href=\"text/shared/optionen/01060400.xhp\">Sort lists</link>"
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\">Llistes d'ordenació</link>"
#. a8RRo
#: calc_timevalues.xhp
@@ -1601,14 +1610,14 @@ msgctxt ""
msgid "<bookmark_value>calculating;time differences</bookmark_value><bookmark_value>time differences</bookmark_value>"
msgstr "<bookmark_value>càlcul;diferències horàries</bookmark_value><bookmark_value>diferències horàries</bookmark_value>"
-#. ovkGS
+#. kx4UD
#: calc_timevalues.xhp
msgctxt ""
"calc_timevalues.xhp\n"
"hd_id3150769\n"
"help.text"
-msgid "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calculating Time Differences\">Calculating Time Differences</link></variable>"
-msgstr "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Càlcul de diferències horàries\">Càlcul de diferències horàries</link></variable>"
+msgid "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\">Calculating Time Differences</link></variable>"
+msgstr "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\">Càlcul de diferències horàries</link></variable>"
#. Cv4BS
#: calc_timevalues.xhp
@@ -1664,14 +1673,14 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; calculating</bookmark_value><bookmark_value>calculating; spreadsheets</bookmark_value><bookmark_value>formulas; calculating</bookmark_value>"
msgstr "<bookmark_value>fulls de càlcul; càlcul</bookmark_value><bookmark_value>càlcul; fulls de càlcul</bookmark_value><bookmark_value>fórmules; càlcul</bookmark_value>"
-#. pkjAM
+#. mv4KH
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
"hd_id3150791\n"
"help.text"
-msgid "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Calculating in Spreadsheets\">Calculating in Spreadsheets</link></variable>"
-msgstr "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Càlcul en fulls de càlcul\">Càlcul en fulls de càlcul</link></variable>"
+msgid "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\">Calculating in Spreadsheets</link></variable>"
+msgstr "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\">Càlcul en fulls de càlcul</link></variable>"
#. VKHds
#: calculate.xhp
@@ -1934,14 +1943,14 @@ msgctxt ""
msgid "<bookmark_value>protecting;cells and sheets</bookmark_value> <bookmark_value>cells; protecting</bookmark_value> <bookmark_value>cell protection; enabling</bookmark_value> <bookmark_value>sheets; protecting</bookmark_value> <bookmark_value>documents; protecting</bookmark_value> <bookmark_value>cells; hiding for printing</bookmark_value> <bookmark_value>changing; sheet protection</bookmark_value> <bookmark_value>hiding;formulas</bookmark_value> <bookmark_value>formulas;hiding</bookmark_value>"
msgstr "<bookmark_value>protecció;cel·les i fulls</bookmark_value><bookmark_value>cel·les; protecció</bookmark_value><bookmark_value>protecció de cel·les; activació</bookmark_value><bookmark_value>fulls; protecció</bookmark_value><bookmark_value>documents; protecció</bookmark_value><bookmark_value>cel·les; amagar de la impressió</bookmark_value><bookmark_value>canvi; protecció del full</bookmark_value><bookmark_value>amagar;fórmules</bookmark_value><bookmark_value>fórmules;amagar</bookmark_value>"
-#. DDnnF
+#. WAuVd
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
"hd_id3146119\n"
"help.text"
-msgid "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">Protecting Cells from Changes</link></variable>"
-msgstr "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protegir les cel·les dels canvis\">Protecció de les cel·les en cas de canvis</link></variable>"
+msgid "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\">Protecting Cells from Changes</link></variable>"
+msgstr "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\">Protecció de les cel·les en cas de canvis</link></variable>"
#. YzGFz
#: cell_protect.xhp
@@ -2060,13 +2069,13 @@ msgctxt ""
msgid "Apply the protection options."
msgstr "Apliqueu les opcions de protecció."
-#. yCZeB
+#. 6BoLD
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
"par_idN106C0\n"
"help.text"
-msgid "To protect the cells from being changed, viewed or printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <link href=\"text/scalc/01/06060100.xhp\" name=\"Tools protect sheet\"><menuitem>Tools - Protect Sheet</menuitem></link>."
+msgid "To protect the cells from being changed, viewed or printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <link href=\"text/scalc/01/06060100.xhp\"><menuitem>Tools - Protect Sheet</menuitem></link>."
msgstr ""
#. doYSo
@@ -2123,14 +2132,14 @@ msgctxt ""
msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
msgstr "<bookmark_value>protecció de cel·les; desprotecció</bookmark_value><bookmark_value>protecció; desprotecció de cel·les</bookmark_value><bookmark_value>desprotecció de cel·les</bookmark_value>"
-#. K8ukF
+#. RfFFV
#: cell_unprotect.xhp
msgctxt ""
"cell_unprotect.xhp\n"
"hd_id3153252\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=\"Desprotecció de cel·les\">Desprotecció de cel·les</link></variable>"
+msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\">Unprotecting Cells</link> </variable>"
+msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\">Desprotecció de cel·les</link></variable>"
#. gK5Qh
#: cell_unprotect.xhp
@@ -2186,14 +2195,14 @@ msgctxt ""
msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
msgstr "<bookmark_value>cel·les; còpia/supressió/formatació/moviment</bookmark_value><bookmark_value>files;visibles i invisibles</bookmark_value><bookmark_value>còpia; només les cel·les visibles</bookmark_value><bookmark_value>formatació;només les cel·les visibles</bookmark_value><bookmark_value>moviment;només les cel·les visibles</bookmark_value><bookmark_value>supressió;només les cel·les visibles</bookmark_value><bookmark_value>cel·les invisibles</bookmark_value><bookmark_value>filtres;còpia només de les cel·les visibles</bookmark_value><bookmark_value>cel·les amagades</bookmark_value>"
-#. jdYeD
+#. hWZTv
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
"hd_id3150440\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=\"Copiar només les cel·les visibles\">Copiar només les cel·les visibles</link></variable>"
+msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\">Only Copy Visible Cells</link></variable>"
+msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\">Copiar només les cel·les visibles</link></variable>"
#. eAskd
#: cellcopy.xhp
@@ -2258,14 +2267,14 @@ msgctxt ""
msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
msgstr "Només es copien, se suprimeixen, es mouen o es formaten les cel·les visibles de la selecció."
-#. 2mDPY
+#. E9sMe
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
"par_id3166427\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 "Les cel·les s'han amagat amb l'orde <emph>Amaga</emph> del menú contextual de les capçaleres de fila o de columna, o bé amb un <link href=\"text/scalc/01/12080000.xhp\" name=\"contorn\">contorn</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\">outline</link>."
+msgstr "Les cel·les s'han amagat amb l'orde <emph>Amaga</emph> del menú contextual de les capçaleres de fila o de columna, o bé amb un <link href=\"text/scalc/01/12080000.xhp\">contorn</link>."
#. hCVpN
#: cellcopy.xhp
@@ -2303,14 +2312,14 @@ msgctxt ""
msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
msgstr "<bookmark_value>arrossegar i deixar anar; referències de cel·les</bookmark_value><bookmark_value>cel·les; referència mitjançant arrossegar i deixar anar</bookmark_value><bookmark_value>referències;inserció mitjançant arrossegar i deixar anar</bookmark_value><bookmark_value>inserció;referències, mitjançant arrossegar i deixar anar</bookmark_value>"
-#. sr78D
+#. pKiKK
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
"hd_id3154686\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=\"Referència de cel·les mitjançant la funció d'arrossegar i deixar anar\">Referència de cel·les mitjançant la funció d'arrossegar i deixar anar</link></variable>"
+msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\">Referencing Cells by Drag-and-Drop</link></variable>"
+msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\">Referència de cel·les mitjançant la funció d'arrossegar i deixar anar</link></variable>"
#. ANUwC
#: cellreference_dragdrop.xhp
@@ -2348,14 +2357,14 @@ msgctxt ""
msgid "Open the sheet in which you want to insert something."
msgstr "Obriu el full en el qual voleu fer alguna inserció."
-#. G9pdw
+#. cFo33
#: cellreference_dragdrop.xhp
msgctxt ""
"cellreference_dragdrop.xhp\n"
"par_id3154732\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 "Obriu el <link href=\"text/scalc/01/02110000.xhp\" name=\"Navegador\">Navegador</link>. Seleccioneu el fitxer d'origen en el quadre inferior del Navegador."
+msgid "Open the <link href=\"text/scalc/01/02110000.xhp\">Navigator</link>. In the lower box of the Navigator select the source file."
+msgstr "Obriu el <link href=\"text/scalc/01/02110000.xhp\">Navegador</link>. Seleccioneu el fitxer d'origen en el quadre inferior del Navegador."
#. 36bq3
#: cellreference_dragdrop.xhp
@@ -2411,14 +2420,14 @@ msgctxt ""
msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
msgstr "<bookmark_value>referències de fulls</bookmark_value><bookmark_value>referències; a cel·les d'altres fulls/documents</bookmark_value><bookmark_value>cel·les; funcionament en un altre document</bookmark_value> <bookmark_value>documents;referències</bookmark_value>"
-#. CEHES
+#. a5WVc
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"hd_id3147436\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=\"Referències d'altres fulls\">Referències d'altres fulls</link></variable>"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referencing Other Sheets</link></variable>"
+msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\">Referències d'altres fulls</link></variable>"
#. S3C6m
#: cellreferences.xhp
@@ -2582,14 +2591,14 @@ msgctxt ""
msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">absolute reference</link>."
msgstr ""
-#. hrgGP
+#. hmeJR
#: cellreferences.xhp
msgctxt ""
"cellreferences.xhp\n"
"par_id674459\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 "Si examineu el nom de l'altre document en esta fórmula, veureu que està escrit com un <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. Això vol dir que també podeu introduir un URL des d'Internet."
+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\">URL</link>. This means that you can also enter a URL from the Internet."
+msgstr "Si examineu el nom de l'altre document en esta fórmula, veureu que està escrit com un <link href=\"text/shared/00/00000002.xhp#url\">URL</link>. Això vol dir que també podeu introduir un URL des d'Internet."
#. ABuMQ
#: cellreferences_url.xhp
@@ -2609,14 +2618,14 @@ msgctxt ""
msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
msgstr "<bookmark_value>HTML; a les cel·les dels fulls</bookmark_value><bookmark_value>referències; URL a les cel·les</bookmark_value><bookmark_value>cel·les; referències d'Internet</bookmark_value><bookmark_value>URL; al Calc</bookmark_value>"
-#. uWXco
+#. M5F2f
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"hd_id3150441\n"
"help.text"
-msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Referencing URLs\">Referencing URLs</link></variable>"
-msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Referències d'URL\">Referències d'URL</link></variable>"
+msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referencing URLs</link></variable>"
+msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\">Referències d'URL</link></variable>"
#. VHDGU
#: cellreferences_url.xhp
@@ -2636,13 +2645,13 @@ msgctxt ""
msgid "In a $[officename] Calc document, position the cursor in the cell into which you want to insert the external data."
msgstr "En un document del $[officename] Calc, situeu el cursor a la cel·la on vulgueu inserir les dades externes."
-#. 5JKBf
+#. CcnFw
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Sheet - External Links</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
+msgid "Choose <item type=\"menuitem\">Sheet - External Links</item>. The <link href=\"text/scalc/01/04090000.xhp\"><item type=\"menuitem\">External Data</item></link> dialog appears."
msgstr ""
#. EQzxX
@@ -2690,14 +2699,14 @@ msgctxt ""
msgid "Save your spreadsheet. When you open it again later, $[officename] Calc will update the linked cells following an inquiry."
msgstr "Guardeu el full de càlcul. Quan el torneu a obrir més avant, el $[officename] Calc actualitzarà les cel·les enllaçades després d'una consulta."
-#. qJWx2
+#. tapEk
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3159204\n"
"help.text"
-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 "A <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01040900.xhp\" name=\"Full de càlcul - General\"><item type=\"menuitem\">%PRODUCTNAME Calc ▸ General</item></link> podeu triar que l'actualització es dugui a terme sempre, a petició o mai. L'actualització es pot iniciar manualment en el diàleg <item type=\"menuitem\">Edita ▸ Enllaços</item>."
+msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\"><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 "A <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01040900.xhp\"><item type=\"menuitem\">%PRODUCTNAME Calc ▸ General</item></link> podeu triar que l'actualització es dugui a terme sempre, a petició o mai. L'actualització es pot iniciar manualment en el diàleg <item type=\"menuitem\">Edita ▸ Enllaços</item>."
#. 4DFzJ
#: cellstyle_by_formula.xhp
@@ -2717,14 +2726,14 @@ msgctxt ""
msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
msgstr "<bookmark_value>formats; assignació per fórmules</bookmark_value><bookmark_value>formats de cel·la; assignació per fórmules</bookmark_value><bookmark_value>exemple de la funció ESTIL</bookmark_value><bookmark_value>estils de cel·la;assignació per fórmules</bookmark_value><bookmark_value>fórmules;assignació de formats de cel·la</bookmark_value>"
-#. USRGE
+#. x3HG2
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
"hd_id3145673\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=\"Assignació de formats per fórmula\">Assignació de formats per fórmula</link></variable>"
+msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\">Assigning Formats by Formula</link></variable>"
+msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\">Assignació de formats per fórmula</link></variable>"
#. EzSnh
#: cellstyle_by_formula.xhp
@@ -2798,14 +2807,14 @@ msgctxt ""
msgid "The \"&\" symbol designates the current contents of the <emph>Find</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 "El símbol «&» designa el contingut actual del camp <emph>Cerca</emph>. La línia ha de començar amb un signe d'igual, ja que es tracta d'una fórmula. S'assumeix que els estils de cel·la «Roig» i «Verd» ja existeixen."
-#. 4AgNk
+#. iF62Y
#: cellstyle_by_formula.xhp
msgctxt ""
"cellstyle_by_formula.xhp\n"
"par_id3149262\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 "Activeu les caselles <link href=\"text/shared/01/02100000.xhp\" name=\"Expressions regulars\"><emph>Expressions regulars</emph></link> i <emph>Només en la selecció</emph>. Feu clic a <emph>Busca-ho tot</emph>."
+msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
+msgstr "Activeu les caselles <link href=\"text/shared/01/02100000.xhp\"><emph>Expressions regulars</emph></link> i <emph>Només en la selecció</emph>. Feu clic a <emph>Busca-ho tot</emph>."
#. A3CBV
#: cellstyle_by_formula.xhp
@@ -2843,14 +2852,14 @@ msgctxt ""
msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
msgstr "<bookmark_value>formatació condicional; cel·les</bookmark_value><bookmark_value>cel·les; formatació condicional</bookmark_value><bookmark_value>formatació; formatació condicional</bookmark_value><bookmark_value>estils;estils condicionals</bookmark_value><bookmark_value>formats de cel·la; condicionals</bookmark_value><bookmark_value>nombres aleatoris;exemples</bookmark_value><bookmark_value>estils de cel·la; còpia</bookmark_value><bookmark_value>còpia; estils de cel·la</bookmark_value><bookmark_value>taules; còpia d'estils de cel·la</bookmark_value>"
-#. 4jA2B
+#. WX8sY
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"hd_id3149263\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=\"Aplicació de la formatació condicional\">Aplicació de la formatació condicional</link></variable>"
+msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\">Applying Conditional Formatting</link></variable>"
+msgstr "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\">Aplicació de la formatació condicional</link></variable>"
#. 3Feon
#: cellstyle_conditional.xhp
@@ -2906,14 +2915,14 @@ msgctxt ""
msgid "Choose <emph>Format - Conditional - Condition</emph>."
msgstr ""
-#. nFqJG
+#. AnNxD
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3146969\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 "Introduïu les condicions en el quadre de diàleg. Este diàleg es descriu de manera detallada a l'<link href=\"text/scalc/01/05120000.xhp\" name=\"Ajuda del $[officename]\">Ajuda del $[officename]</link>. A continuació se'n mostra un exemple:"
+msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\">$[officename] Help</link>, and an example is provided below:"
+msgstr "Introduïu les condicions en el quadre de diàleg. Este diàleg es descriu de manera detallada a l'<link href=\"text/scalc/01/05120000.xhp\">Ajuda del $[officename]</link>. A continuació se'n mostra un exemple:"
#. xDZ66
#: cellstyle_conditional.xhp
@@ -3059,13 +3068,13 @@ msgctxt ""
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr "Establiu el cursor en una cel·la en blanc, per exemple J14, i trieu <emph>Insereix - Funció</emph>."
-#. DGtFG
+#. xCigs
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3156016\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#shrink_maximize\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
+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#shrink_maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
msgstr ""
#. YEqsh
@@ -3185,13 +3194,13 @@ msgctxt ""
msgid "In the <emph>Paste</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>. Or you can click the <emph>Formats only</emph> button instead."
msgstr ""
-#. YMDKA
+#. rcKCW
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3159123\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional - Condition</link>"
+msgid "<link href=\"text/scalc/01/05120000.xhp\">Format - Conditional - Condition</link>"
msgstr ""
#. HFoKB
@@ -3212,14 +3221,14 @@ msgctxt ""
msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
msgstr "<bookmark_value>nombres negatius</bookmark_value><bookmark_value>nombres; realçament de nombres negatius</bookmark_value><bookmark_value>realçament;nombres negatius</bookmark_value><bookmark_value>colors;formats numèrics</bookmark_value><bookmark_value>formats numèrics;colors per als nombres negatius</bookmark_value>"
-#. XwR9x
+#. eGjJD
#: cellstyle_minusvalue.xhp
msgctxt ""
"cellstyle_minusvalue.xhp\n"
"hd_id3147434\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=\"Realçament de nombres negatius\">Realçament de nombres negatius</link></variable>"
+msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\">Highlighting Negative Numbers</link></variable>"
+msgstr "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\">Realçament de nombres negatius</link></variable>"
#. YGxpk
#: cellstyle_minusvalue.xhp
@@ -3275,13 +3284,13 @@ msgctxt ""
msgid "<bookmark_value>anchor;image</bookmark_value><bookmark_value>image anchor;in Calc</bookmark_value><bookmark_value>image anchor in Calc;changing</bookmark_value>"
msgstr ""
-#. t3pgZ
+#. x5Kg7
#: change_image_anchor.xhp
msgctxt ""
"change_image_anchor.xhp\n"
"par_id851607971999527\n"
"help.text"
-msgid "<variable id=\"anchor_image\"><link href=\"text/scalc/guide/change_image_anchor.xhp\" name=\"Changing Anchor of Image\">Changing the Anchor of an Image</link> </variable>"
+msgid "<variable id=\"anchor_image\"><link href=\"text/scalc/guide/change_image_anchor.xhp\">Changing the Anchor of an Image</link> </variable>"
msgstr ""
#. BoMUp
@@ -3374,14 +3383,14 @@ msgctxt ""
msgid "<bookmark_value>consolidating data</bookmark_value> <bookmark_value>ranges; combining</bookmark_value> <bookmark_value>combining;cell ranges</bookmark_value> <bookmark_value>tables; combining</bookmark_value> <bookmark_value>data; merging cell ranges</bookmark_value> <bookmark_value>merging;data ranges</bookmark_value>"
msgstr "<bookmark_value>consolidació de dades</bookmark_value><bookmark_value>intervals; combinació</bookmark_value><bookmark_value>combinació;intervals de cel·les</bookmark_value><bookmark_value>taules; combinació</bookmark_value><bookmark_value>dades; fusió d'intervals de cel·les</bookmark_value><bookmark_value>fusió;intervals de dades</bookmark_value>"
-#. aUBxc
+#. 6ZGGL
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
"hd_id3150791\n"
"help.text"
-msgid "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidating Data\">Consolidating Data</link></variable>"
-msgstr "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidació de dades\">Consolidació de dades</link></variable>"
+msgid "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\">Consolidating Data</link></variable>"
+msgstr "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\">Consolidació de dades</link></variable>"
#. dcJqU
#: consolidate.xhp
@@ -3563,14 +3572,14 @@ msgctxt ""
msgid "The data from the consolidation ranges and target range will be saved when you save the document. If you later open a document in which consolidation has been defined, this data will again be available."
msgstr "Les dades dels intervals de consolidació i l'interval de destinació es desaran quan guardeu el document. Si més avant obriu el document on s'ha definit la consolidació, les dades tornaran a estar disponibles."
-#. GGFhA
+#. BzNqC
#: consolidate.xhp
msgctxt ""
"consolidate.xhp\n"
"par_id3153039\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Data - Consolidate\">Data - Consolidate</link>"
-msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Dades - Consolida\">Dades - Consolida</link>"
+msgid "<link href=\"text/scalc/01/12070000.xhp\">Data - Consolidate</link>"
+msgstr "<link href=\"text/scalc/01/12070000.xhp\">Dades - Consolida</link>"
#. UNSjU
#: csv_files.xhp
@@ -3833,32 +3842,32 @@ msgctxt ""
msgid "Click <item type=\"menuitem\">Save</item>."
msgstr "Feu clic a <item type=\"menuitem\">Guarda</item>."
-#. U6QRD
+#. hDd2A
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
"par_id3153487\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 "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060100.xhp\" name=\"Full de càlcul ▸ Visualització\">%PRODUCTNAME Calc ▸ Visualització</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\">%PRODUCTNAME Calc - View</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060100.xhp\">%PRODUCTNAME Calc ▸ Visualització</link>"
-#. W3bT3
+#. Dir44
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
"par_id3153008\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=\"Exportació de fitxers de text\">Exportació de fitxers de text</link>"
+msgid "<link href=\"text/shared/00/00000207.xhp\">Export text files</link>"
+msgstr "<link href=\"text/shared/00/00000207.xhp\">Exportació de fitxers de text</link>"
-#. jADCM
+#. GANDZ
#: csv_files.xhp
msgctxt ""
"csv_files.xhp\n"
"par_id3155595\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=\"Importació de fitxers de text\">Importació de fitxers de text</link>"
+msgid "<link href=\"text/shared/00/00000208.xhp\">Import text files</link>"
+msgstr "<link href=\"text/shared/00/00000208.xhp\">Importació de fitxers de text</link>"
#. ounFQ
#: csv_formula.xhp
@@ -3878,14 +3887,14 @@ msgctxt ""
msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
msgstr "<bookmark_value>fitxers csv;fórmules</bookmark_value><bookmark_value>fórmules; importació/exportació com a fitxers csv</bookmark_value><bookmark_value>exportació;fórmules com a fitxers csv</bookmark_value><bookmark_value>importació;fitxers csv amb fórmules</bookmark_value>"
-#. DfYsZ
+#. HJThG
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
"hd_id3153726\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=\"Importació i exportació de fitxers de text\">Importació i exportació de fitxers de text CSV amb fórmules</link></variable>"
+msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
+msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\">Importació i exportació de fitxers de text CSV amb fórmules</link></variable>"
#. 7kmDr
#: csv_formula.xhp
@@ -4040,32 +4049,32 @@ msgctxt ""
msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
msgstr "Si cal, després de guardar, desactiveu la casella de selecció <emph>Fórmules</emph> per tornar a veure els resultats calculats a la taula."
-#. D9voD
+#. LejdP
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
"par_id3153487\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 "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060100.xhp\" name=\"Full de càlcul ▸ Visualització\">%PRODUCTNAME Calc ▸ Visualització</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\">%PRODUCTNAME Calc - View</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060100.xhp\">%PRODUCTNAME Calc ▸ Visualització</link>"
-#. iGg7e
+#. GgLZh
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
"par_id3153008\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=\"Exportació de fitxers de text\">Exportació de fitxers de text</link>"
+msgid "<link href=\"text/shared/00/00000207.xhp\">Export text files</link>"
+msgstr "<link href=\"text/shared/00/00000207.xhp\">Exportació de fitxers de text</link>"
-#. X5Eoo
+#. DHxaC
#: csv_formula.xhp
msgctxt ""
"csv_formula.xhp\n"
"par_id3155595\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=\"Importació de fitxers de text\">Importació de fitxers de text</link>"
+msgid "<link href=\"text/shared/00/00000208.xhp\">Import text files</link>"
+msgstr "<link href=\"text/shared/00/00000208.xhp\">Importació de fitxers de text</link>"
#. s2isa
#: currency_format.xhp
@@ -4085,14 +4094,14 @@ msgctxt ""
msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
msgstr "<bookmark_value>formats de moneda; fulls de càlcul</bookmark_value><bookmark_value>cel·les; formats de moneda</bookmark_value><bookmark_value>formats de moneda internacionals</bookmark_value><bookmark_value>formats; formats de moneda a les cel·les</bookmark_value><bookmark_value>monedes; monedes per defecte</bookmark_value><bookmark_value>opcions per defecte;formats de moneda</bookmark_value><bookmark_value>canvi;formats de moneda</bookmark_value>"
-#. GUpzE
+#. Dwibg
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
"hd_id3156329\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=\"Cel·les en format de moneda\">Cel·les en format de moneda</link></variable>"
+msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\">Cells in Currency Format</link></variable>"
+msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\">Cel·les en format de moneda</link></variable>"
#. Tq9vD
#: currency_format.xhp
@@ -4148,14 +4157,14 @@ msgctxt ""
msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
msgstr "Si a <item type=\"menuitem\">Llengua</item> convertiu les cel·les a \"Anglés (EUA)\", el paràmetre regional de llengua (anglés) també es transferirà i el format de moneda per defecte serà \"$ 1,234.00\"."
-#. CzbsK
+#. sHgcT
#: currency_format.xhp
msgctxt ""
"currency_format.xhp\n"
"par_id3154255\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=\"Format ▸ Cel·les ▸ Nombres\">Format ▸ Cel·les ▸ Nombres</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Format ▸ Cel·les ▸ Nombres</link>"
#. QoTwd
#: database_define.xhp
@@ -4175,14 +4184,14 @@ msgctxt ""
msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
msgstr "<bookmark_value>taules; intervals de bases de dades</bookmark_value><bookmark_value>intervals de bases de dades; definició</bookmark_value><bookmark_value>intervals; definició d'intervals de bases de dades</bookmark_value><bookmark_value>definició;intervals de bases de dades</bookmark_value>"
-#. bCxRx
+#. otSAA
#: database_define.xhp
msgctxt ""
"database_define.xhp\n"
"hd_id3154758\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=\"Definició d'intervals de bases de dades\">Definició d'intervals de bases de dades</link></variable>"
+msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\">Defining a Database Range</link></variable>"
+msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\">Definició d'intervals de bases de dades</link></variable>"
#. 4BdV5
#: database_define.xhp
@@ -4283,14 +4292,14 @@ msgctxt ""
msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
msgstr "<bookmark_value>intervals de cel·les;aplicació/supressió de filtres</bookmark_value><bookmark_value>filtratge;intervals de cel·les/intervals de bases de dades</bookmark_value><bookmark_value>intervals de bases de dades;aplicació/supressió de filtres</bookmark_value><bookmark_value>supressió;filtres dels intervals de cel·les</bookmark_value>"
-#. geiwR
+#. 6eTRN
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
"hd_id3153541\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=\"Filtratge d'intervals de cel·les\">Filtratge d'intervals de cel·les</link></variable>"
+msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\">Filtering Cell Ranges</link></variable>"
+msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\">Filtratge d'intervals de cel·les</link></variable>"
#. 4znQt
#: database_filter.xhp
@@ -4454,14 +4463,14 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Data - Filter - Reset Filter</item>."
msgstr "Trieu <item type=\"menuitem\">Dades - Filtre - Suprimeix el filtre</item>."
-#. EFnz4
+#. oFj8U
#: database_filter.xhp
msgctxt ""
"database_filter.xhp\n"
"par_id4525284\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Pàgina wiki sobre la definició d'un interval de dades (en anglés)</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Pàgina wiki sobre la definició d'un interval de dades (en anglés)</link>"
#. ueLu8
#: database_sort.xhp
@@ -4481,14 +4490,14 @@ msgctxt ""
msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
msgstr "<bookmark_value>intervals de bases de dades; ordenació</bookmark_value><bookmark_value>ordenació; intervals de bases de dades</bookmark_value><bookmark_value>dades;ordenació en bases de dades</bookmark_value>"
-#. P89iU
+#. bfmu3
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
"hd_id3150767\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=\"Ordenació dels intervals de bases de dades\">Ordenació dels intervals de bases de dades</link></variable>"
+msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\">Sorting Data</link></variable>"
+msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\">Ordenació dels intervals de bases de dades</link></variable>"
#. vddXD
#: database_sort.xhp
@@ -4544,14 +4553,14 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Feu clic a <emph>D'acord</emph>."
-#. yFuM4
+#. biDGg
#: database_sort.xhp
msgctxt ""
"database_sort.xhp\n"
"par_id1846980\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Pàgina wiki sobre la definició d'un interval de dades</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Pàgina wiki sobre la definició d'un interval de dades</link>"
#. zsSK8
#: datapilot.xhp
@@ -4571,14 +4580,14 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
msgstr "<bookmark_value>funció de taula dinàmica; introducció</bookmark_value><bookmark_value>DataPilot, vegeu funció de taula dinàmica</bookmark_value>"
-#. tAv25
+#. NNbkr
#: datapilot.xhp
msgctxt ""
"datapilot.xhp\n"
"hd_id3150448\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=\"Taula dinàmica\">Taula dinàmica</link></variable>"
+msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\">Pivot Table</link></variable>"
+msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\">Taula dinàmica</link></variable>"
#. X3qFY
#: datapilot.xhp
@@ -4589,14 +4598,14 @@ msgctxt ""
msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
msgstr "La <emph>taula dinàmica</emph> (anteriorment anomenada <emph>DataPilot</emph>) vos permet combinar, comparar i analitzar grans quantitats de dades. Podeu visualitzar diferents resums de dades font, veure els detalls de les àrees d'interés i crear informes."
-#. EP4s6
+#. pUGwe
#: datapilot.xhp
msgctxt ""
"datapilot.xhp\n"
"par_id3145069\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 "Una taula creada com a <link href=\"text/scalc/01/12090000.xhp\" name=\"taula dinàmica\">taula dinàmica</link> és una taula interactiva. Les dades es poden organitzar, reorganitzar o resumir segons diferents punts de vista."
+msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
+msgstr "Una taula creada com a <link href=\"text/scalc/01/12090000.xhp\">taula dinàmica</link> és una taula interactiva. Les dades es poden organitzar, reorganitzar o resumir segons diferents punts de vista."
#. cGChV
#: datapilot_createtable.xhp
@@ -4616,14 +4625,14 @@ msgctxt ""
msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
msgstr "<bookmark_value>taules dinàmiques</bookmark_value><bookmark_value>funció de taula dinàmica; crida i aplicació</bookmark_value>"
-#. c5AAy
+#. HgqHr
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
"hd_id3148491\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=\"Creació de taules dinàmiques\">Creació de taules dinàmiques</link></variable>"
+msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\">Creating Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\">Creació de taules dinàmiques</link></variable>"
#. qrneD
#: datapilot_createtable.xhp
@@ -4670,14 +4679,14 @@ msgctxt ""
msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
msgstr "Si deixeu anar el botó a l'àrea <emph>Camps de dades</emph> es crearà una llegenda que també mostrarà la fórmula que s'utilitzarà per calcular les dades."
-#. 8rEXv
+#. VnALH
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3146974\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 "Si feu doble clic a un dels camps de l'àrea <emph>Camps de dades</emph> podreu cridar el diàleg <link href=\"text/scalc/01/12090105.xhp\" name=\"Camp de dades\"><emph>Camp de dades</emph></link>."
+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\"><emph>Data Field</emph></link> dialog."
+msgstr "Si feu doble clic a un dels camps de l'àrea <emph>Camps de dades</emph> podreu cridar el diàleg <link href=\"text/scalc/01/12090105.xhp\"><emph>Camp de dades</emph></link>."
#. PAuDC
#: datapilot_createtable.xhp
@@ -4706,14 +4715,14 @@ msgctxt ""
msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
msgstr "Elimineu un botó tornant-lo a arrossegar a l'àrea dels altres botons que apareix a la dreta del diàleg."
-#. Hm6YC
+#. RVAdg
#: datapilot_createtable.xhp
msgctxt ""
"datapilot_createtable.xhp\n"
"par_id3147338\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."
-msgstr "Per obrir el diàleg <link href=\"text/scalc/01/12090105.xhp\" name=\"Camp de dades\"><emph>Camp de dades</emph></link>, feu doble clic en un dels botons de l'àrea <emph>Camps de fila</emph> o <emph>Camps de columna</emph>. Utilitzeu el diàleg per seleccionar fins on calcula el <item type=\"productname\">%PRODUCTNAME</item> els subtotals que es visualitzen i si ho ha de fer."
+msgid "To open the <link href=\"text/scalc/01/12090105.xhp\"><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 "Per obrir el diàleg <link href=\"text/scalc/01/12090105.xhp\"><emph>Camp de dades</emph></link>, feu doble clic en un dels botons de l'àrea <emph>Camps de fila</emph> o <emph>Camps de columna</emph>. Utilitzeu el diàleg per seleccionar fins on calcula el <item type=\"productname\">%PRODUCTNAME</item> els subtotals que es visualitzen i si ho ha de fer."
#. iXULx
#: datapilot_createtable.xhp
@@ -4742,14 +4751,14 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
msgstr "<bookmark_value>funció de taula dinàmica; supressió de taules</bookmark_value><bookmark_value>supressió;taules dinàmiques</bookmark_value>"
-#. CWysA
+#. aCv9D
#: datapilot_deletetable.xhp
msgctxt ""
"datapilot_deletetable.xhp\n"
"hd_id3153726\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=\"Supressió de taules dinàmiques\">Supressió de taules dinàmiques</link></variable>"
+msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\">Deleting Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\">Supressió de taules dinàmiques</link></variable>"
#. yvJds
#: datapilot_deletetable.xhp
@@ -4787,14 +4796,14 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; editing tables</bookmark_value><bookmark_value>editing;pivot tables</bookmark_value>"
msgstr "<bookmark_value>funció de taula dinàmica; edició de taules</bookmark_value><bookmark_value>edició;taules dinàmiques</bookmark_value>"
-#. SRQYX
+#. z8AYi
#: datapilot_edittable.xhp
msgctxt ""
"datapilot_edittable.xhp\n"
"hd_id3148663\n"
"help.text"
-msgid "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing Pivot Tables\">Editing Pivot Tables</link></variable>"
-msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Edició de taules dinàmiques\">Edició de taules dinàmiques</link></variable>"
+msgid "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\">Editing Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\">Edició de taules dinàmiques</link></variable>"
#. jDNdq
#: datapilot_edittable.xhp
@@ -4877,14 +4886,14 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
msgstr "<bookmark_value>funció de taula dinàmica; filtratge de taules</bookmark_value><bookmark_value>filtratge;taules dinàmiques</bookmark_value>"
-#. B6RwS
+#. zNm6v
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
"hd_id3150792\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=\"Filtratge de taules dinàmiques\">Filtratge de taules dinàmiques</link></variable>"
+msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\">Filtering Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\">Filtratge de taules dinàmiques</link></variable>"
#. ADCtg
#: datapilot_filtertable.xhp
@@ -4895,14 +4904,14 @@ msgctxt ""
msgid "You can use filters to remove unwanted data from a pivot table."
msgstr "Podeu utilitzar filtres per eliminar dades que no voleu d'una taula dinàmica."
-#. GgnjB
+#. Dr4qw
#: datapilot_filtertable.xhp
msgctxt ""
"datapilot_filtertable.xhp\n"
"par_id3150441\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 "Feu clic al botó <emph>Filtre</emph> del full per cridar el diàleg per a les condicions del filtre. També podeu cridar el menú contextual de la taula dinàmica i seleccionar l'orde <emph>Filtre</emph>. Apareixerà el diàleg <link href=\"text/scalc/01/12090103.xhp\" name=\"Filtre\"><emph>Filtre</emph></link>, on podeu filtrar la taula dinàmica."
+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\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
+msgstr "Feu clic al botó <emph>Filtre</emph> del full per cridar el diàleg per a les condicions del filtre. També podeu cridar el menú contextual de la taula dinàmica i seleccionar l'orde <emph>Filtre</emph>. Apareixerà el diàleg <link href=\"text/scalc/01/12090103.xhp\"><emph>Filtre</emph></link>, on podeu filtrar la taula dinàmica."
#. TUAcu
#: datapilot_filtertable.xhp
@@ -5012,13 +5021,13 @@ msgctxt ""
msgid "<bookmark_value>formatting;pivot tables</bookmark_value>"
msgstr ""
-#. GN6EJ
+#. rsh3f
#: datapilot_formatting.xhp
msgctxt ""
"datapilot_formatting.xhp\n"
"hd_id341656099297638\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/scalc/guide/datapilot_formatting.xhp\" name=\"Formatting Pivot Tables\">Formatting Pivot Tables</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/guide/datapilot_formatting.xhp\">Formatting Pivot Tables</link></variable>"
msgstr ""
#. aA7AD
@@ -5228,14 +5237,14 @@ msgctxt ""
msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
msgstr "<bookmark_value>funció de taula dinàmica; evitar la sobreescriptura de dades</bookmark_value><bookmark_value>intervals d'eixida de les taules dinàmiques</bookmark_value>"
-#. xFzFx
+#. xeirD
#: datapilot_tipps.xhp
msgctxt ""
"datapilot_tipps.xhp\n"
"hd_id3148663\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=\"Selecció d'intervals de eixida de taules dinàmiques\">Selecció d'intervals d'eixida de taules dinàmiques</link></variable>"
+msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\">Selecting Pivot Table Output Ranges</link></variable>"
+msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\">Selecció d'intervals d'eixida de taules dinàmiques</link></variable>"
#. kikhM
#: datapilot_tipps.xhp
@@ -5291,14 +5300,14 @@ msgctxt ""
msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
msgstr "<bookmark_value>importació d'una taula dinàmica</bookmark_value><bookmark_value>funció de taula dinàmica; refrescament de taules</bookmark_value><bookmark_value>recalcular; taules dinàmiques</bookmark_value><bookmark_value>actualització;taules dinàmiques</bookmark_value>"
-#. BxZL2
+#. SVyQU
#: datapilot_updatetable.xhp
msgctxt ""
"datapilot_updatetable.xhp\n"
"hd_id3150792\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=\"Actualització de taules dinàmiques\">Actualització de taules dinàmiques</link></variable>"
+msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\">Updating Pivot Tables</link></variable>"
+msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\">Actualització de taules dinàmiques</link></variable>"
#. gaKCU
#: datapilot_updatetable.xhp
@@ -5579,14 +5588,14 @@ msgctxt ""
msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
msgstr "<bookmark_value>selecció de temes per als fulls</bookmark_value><bookmark_value>format;fulls de càlcul</bookmark_value><bookmark_value>estils de cel·la; selecció</bookmark_value><bookmark_value>selecció;temes de formatació</bookmark_value><bookmark_value>fulls;temes de formatació</bookmark_value><bookmark_value>formats;temes per als fulls</bookmark_value><bookmark_value>formatació;temes per als fulls</bookmark_value>"
-#. kBFhA
+#. dt6vR
#: design.xhp
msgctxt ""
"design.xhp\n"
"hd_id3150791\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=\"Selecció de temes per als fulls\">Selecció de temes per als fulls</link></variable>"
+msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\">Selecting Themes for Sheets</link> </variable>"
+msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\">Selecció de temes per als fulls</link></variable>"
#. axrVR
#: design.xhp
@@ -5678,14 +5687,14 @@ msgctxt ""
msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
msgstr "Tan bon punt seleccioneu un altre tema en el diàleg <emph>Selecció de temes</emph> s'aplicaran algunes de les propietats de l'estil personalitzat al full de càlcul actual. Les modificacions es veuran immediatament al full de càlcul."
-#. CG6ba
+#. CRzqY
#: design.xhp
msgctxt ""
"design.xhp\n"
"par_id3146979\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=\"Selecció de temes\">Selecció de temes</link>"
+msgid "<link href=\"text/scalc/02/06080000.xhp\">Theme selection</link>"
+msgstr "<link href=\"text/scalc/02/06080000.xhp\">Selecció de temes</link>"
#. t5ETg
#: edit_multitables.xhp
@@ -5705,14 +5714,14 @@ msgctxt ""
msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value><bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
msgstr "<bookmark_value>copiar;valors a diversos fulls</bookmark_value><bookmark_value>enganxar;valors a diversos fulls</bookmark_value><bookmark_value>dades;inserció en diversos fulls</bookmark_value><bookmark_value>fulls; emplenament simultani en diversos</bookmark_value>"
-#. TTfnY
+#. 4PAZG
#: edit_multitables.xhp
msgctxt ""
"edit_multitables.xhp\n"
"hd_id3149456\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=\"Còpia a fulls múltiples\">Còpia a fulls múltiples</link></variable>"
+msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\">Copying to Multiple Sheets</link></variable>"
+msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\">Còpia a fulls múltiples</link></variable>"
#. 4sMCm
#: edit_multitables.xhp
@@ -5768,14 +5777,14 @@ msgctxt ""
msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
msgstr "<bookmark_value>filtres; aplicació/supressió</bookmark_value><bookmark_value>files;supressió/visualització amb filtres</bookmark_value><bookmark_value>supressió;filtres</bookmark_value>"
-#. gcyYi
+#. WH2qG
#: filters.xhp
msgctxt ""
"filters.xhp\n"
"hd_id3153896\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=\"Aplicació de filtres\">Aplicació de filtres</link></variable>"
+msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\">Applying Filters</link></variable>"
+msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\">Aplicació de filtres</link></variable>"
#. d4Uux
#: filters.xhp
@@ -6092,14 +6101,14 @@ msgctxt ""
msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
msgstr "<bookmark_value>text en cel·les; formatació</bookmark_value><bookmark_value>fulls de càlcul;formatació</bookmark_value><bookmark_value>fons;cel·les i pàgines</bookmark_value><bookmark_value>vores;cel·les i pàgines</bookmark_value><bookmark_value>formatació;fulls de càlcul</bookmark_value><bookmark_value>nombres; opcions de formatació per a cel·les seleccionades</bookmark_value><bookmark_value>cel·les; formats numèrics</bookmark_value><bookmark_value>monedes;formats</bookmark_value>"
-#. Aairv
+#. eurEF
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
"hd_id3154125\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=\"Disseny de fulls de càlcul\">Formatació de fulls de càlcul</link></variable>"
+msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link></variable>"
+msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\">Formatació de fulls de càlcul</link></variable>"
#. WMnGx
#: format_table.xhp
@@ -6182,13 +6191,13 @@ msgctxt ""
msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page Style</emph>. You can define headers and footers, for example, to appear on each printed page."
msgstr ""
-#. pCwt2
+#. VGmPH
#: format_table.xhp
msgctxt ""
"format_table.xhp\n"
"par_id3145389\n"
"help.text"
-msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page Style - Background</item> is only visible in print or in the print preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Image - 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."
+msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page Style - Background</item> is only visible in print or in the print preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Image - 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\">Navigator</link> to select the background image."
msgstr ""
#. vvAFw
@@ -6227,14 +6236,14 @@ msgctxt ""
msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
msgstr "<bookmark_value>nombres; formatació de decimals</bookmark_value><bookmark_value>formats; nombres a les taules</bookmark_value><bookmark_value>taules; formats numèrics</bookmark_value><bookmark_value>opcions per defecte; formats numèrics als fulls de càlcul</bookmark_value><bookmark_value>llocs decimals;formatació de nombres</bookmark_value><bookmark_value>formatació;nombres amb decimals</bookmark_value><bookmark_value>formatació;afegir/suprimir llocs decimals</bookmark_value><bookmark_value>formats numèrics; afegir/suprimir llocs decimals a les cel·les</bookmark_value><bookmark_value>supressió; llocs decimals</bookmark_value><bookmark_value>llocs decimals; afegir/suprimir</bookmark_value>"
-#. Qe83k
+#. Fcg2i
#: format_value.xhp
msgctxt ""
"format_value.xhp\n"
"hd_id3145367\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=\"Formatació de nombres amb decimals\">Formatació de nombres amb decimals</link></variable>"
+msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\">Formatting Numbers With Decimals</link></variable>"
+msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\">Formatació de nombres amb decimals</link></variable>"
#. MBqzn
#: format_value.xhp
@@ -6308,14 +6317,14 @@ msgctxt ""
msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
msgstr "<bookmark_value>nombres;formatació definida per l'usuari</bookmark_value><bookmark_value>formatació; nombres definits per l'usuari</bookmark_value><bookmark_value>formats numèrics; milions</bookmark_value><bookmark_value>codis de format; formats numèrics definits per l'usuari</bookmark_value>"
-#. VbsDd
+#. ATTjD
#: format_value_userdef.xhp
msgctxt ""
"format_value_userdef.xhp\n"
"hd_id3143268\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=\"Formats numèrics definits per l'usuari\">Formats numèrics definits per l'usuari</link></variable>"
+msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\">User-defined Number Formats</link></variable>"
+msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\">Formats numèrics definits per l'usuari</link></variable>"
#. AGNss
#: format_value_userdef.xhp
@@ -6560,14 +6569,14 @@ msgctxt ""
msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
msgstr "<bookmark_value>fórmules; còpia i enganxament</bookmark_value><bookmark_value>còpia; fórmules</bookmark_value><bookmark_value>enganxament;fórmules</bookmark_value>"
-#. Qtkdo
+#. LVG2x
#: formula_copy.xhp
msgctxt ""
"formula_copy.xhp\n"
"hd_id3151113\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=\"Còpia de fórmules\">Còpia de fórmules</link></variable>"
+msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\">Copying Formulas</link></variable>"
+msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\">Còpia de fórmules</link></variable>"
#. 3ZujS
#: formula_copy.xhp
@@ -6686,14 +6695,14 @@ msgctxt ""
msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
msgstr "<bookmark_value>barra de fórmules; línia d'entrada</bookmark_value><bookmark_value>línia d'entrada a la barra de fórmules</bookmark_value><bookmark_value>fórmules; entrada</bookmark_value><bookmark_value>inserció;fórmules</bookmark_value>"
-#. rP8CF
+#. pfDFF
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
"hd_id3150868\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=\"Introducció de fórmules\">Introducció de fórmules</link></variable>"
+msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\">Entering Formulas</link></variable>"
+msgstr "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\">Introducció de fórmules</link></variable>"
#. H3w2m
#: formula_enter.xhp
@@ -6776,14 +6785,14 @@ msgctxt ""
msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
msgstr "A la cel·la veureu el resultat <item type=\"literal\">42</item>. La cel·la conté la fórmula <item type=\"literal\">=+50-8</item>."
-#. KGDF3
+#. H7Gc5
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
"par_id3155764\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 "Si esteu editant una fórmula amb referències, les referències i les cel·les associades es realçaran amb el mateix color. Podeu redimensionar la vora de la referència utilitzant el ratolí, i la referència de la fórmula que es mostra a la línia d'entrada també canviarà. L'opció <emph>Mostra les referències en color</emph> es pot desactivar a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060300.xhp\" name=\"Full de càlcul ▸ Visualització\">%PRODUCTNAME Calc ▸ Visualització</link>."
+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\">%PRODUCTNAME Calc - View</link>."
+msgstr "Si esteu editant una fórmula amb referències, les referències i les cel·les associades es realçaran amb el mateix color. Podeu redimensionar la vora de la referència utilitzant el ratolí, i la referència de la fórmula que es mostra a la línia d'entrada també canviarà. L'opció <emph>Mostra les referències en color</emph> es pot desactivar a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060300.xhp\">%PRODUCTNAME Calc ▸ Visualització</link>."
#. G2WDH
#: formula_enter.xhp
@@ -6794,23 +6803,23 @@ msgctxt ""
msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
msgstr "<variable id=\"tip\">Si voleu veure el càlcul d'elements individuals d'una fórmula, seleccioneu els elements respectius i premeu F9. Per exemple, a la fórmula =SUMA(A1:B12)*SUMA(C1:D12) seleccioneu la secció SUMA(C1:D12) i premeu F9 per visualitzar el subtotal per a esta àrea. </variable>"
-#. 3zBJH
+#. UNkCH
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
"par_id3150304\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 "Si es produeix un error mentre es crea la fórmula, apareixerà un <link href=\"text/scalc/05/02140000.xhp\" name=\"missatge d'error\">missatge d'error</link> a la cel·la activa."
+msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\">error message</link> appears in the active cell."
+msgstr "Si es produeix un error mentre es crea la fórmula, apareixerà un <link href=\"text/scalc/05/02140000.xhp\">missatge d'error</link> a la cel·la activa."
-#. GXy6w
+#. TMv6c
#: formula_enter.xhp
msgctxt ""
"formula_enter.xhp\n"
"par_id3152993\n"
"help.text"
-msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
-msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Barra de fórmules\">Barra de fórmules</link>"
+msgid "<link href=\"text/scalc/main0206.xhp\">Formula bar</link>"
+msgstr "<link href=\"text/scalc/main0206.xhp\">Barra de fórmules</link>"
#. a5yvD
#: formula_value.xhp
@@ -6830,14 +6839,14 @@ msgctxt ""
msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
msgstr "<bookmark_value>fórmules; visualització a les cel·les</bookmark_value><bookmark_value>valors; visualització a les taules</bookmark_value><bookmark_value>taules; visualització de fórmules/valors</bookmark_value><bookmark_value>visualització de resultats vs. visualització de fórmules</bookmark_value><bookmark_value>visualització; fórmules en comptes de resultats</bookmark_value>"
-#. CAjGG
+#. mHXkN
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
"hd_id3153195\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=\"Visualització de fórmules o valors\">Visualització de fórmules o valors</link></variable>"
+msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\">Displaying Formulas or Values</link></variable>"
+msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\">Visualització de fórmules o valors</link></variable>"
#. MeZFx
#: formula_value.xhp
@@ -6875,14 +6884,14 @@ msgctxt ""
msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
msgstr "Si voleu visualitzar el resultat dels càlculs en lloc de la fórmula, no activeu el quadre Fórmules."
-#. iDByM
+#. a6ria
#: formula_value.xhp
msgctxt ""
"formula_value.xhp\n"
"par_id3153157\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 "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060100.xhp\" name=\"Full de càlcul ▸ Visualització\">%PRODUCTNAME Calc ▸ Visualització</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\">%PRODUCTNAME Calc - View</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01060100.xhp\">%PRODUCTNAME Calc ▸ Visualització</link>"
#. xBkFL
#: formulas.xhp
@@ -6902,14 +6911,14 @@ msgctxt ""
msgid "<bookmark_value>formulas;calculating with</bookmark_value><bookmark_value>calculating; with formulas</bookmark_value><bookmark_value>examples;formula calculation</bookmark_value>"
msgstr "<bookmark_value>fórmules;càlcul amb</bookmark_value><bookmark_value>càlcul; amb fórmules</bookmark_value><bookmark_value>exemples;càlculs amb fórmules</bookmark_value>"
-#. EQdXT
+#. snrES
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
"hd_id3155411\n"
"help.text"
-msgid "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Calculating With Formulas\">Calculating With Formulas</link></variable>"
-msgstr "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Càlculs amb fórmules\">Càlculs amb fórmules</link></variable>"
+msgid "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\">Calculating With Formulas</link></variable>"
+msgstr "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\">Càlculs amb fórmules</link></variable>"
#. iVVxK
#: formulas.xhp
@@ -7082,23 +7091,23 @@ msgctxt ""
msgid "It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions."
msgstr "També és possible incrustar funcions a fórmules, tal com es mostra a l'exemple, i incrustar funcions dins de funcions. L'auxiliar de funcions vos ajudarà amb les funcions incrustades."
-#. CQoDo
+#. SEqap
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
"par_id3150213\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"Functions list\">Functions list</link>"
-msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Llista de funcions\">Llista de funcions</link>"
+msgid "<link href=\"text/scalc/01/04060100.xhp\">Functions list</link>"
+msgstr "<link href=\"text/scalc/01/04060100.xhp\">Llista de funcions</link>"
-#. nFipB
+#. iENLX
#: formulas.xhp
msgctxt ""
"formulas.xhp\n"
"par_id3152869\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: funcions\">Auxiliar de funcions</link>"
+msgid "<link href=\"text/scalc/01/04060000.xhp\">Function Wizard</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\">Auxiliar de funcions</link>"
#. 6XzRE
#: fraction_enter.xhp
@@ -7118,14 +7127,14 @@ msgctxt ""
msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
msgstr "<bookmark_value>fraccions; introducció</bookmark_value><bookmark_value>nombres; introducció de fraccions </bookmark_value><bookmark_value>inserció;fraccions</bookmark_value>"
-#. ry5Y2
+#. 8YdA3
#: fraction_enter.xhp
msgctxt ""
"fraction_enter.xhp\n"
"hd_id3155411\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=\"Introducció de fraccions \">Introducció de fraccions </link></variable>"
+msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\">Entering Fractions </link></variable>"
+msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\">Introducció de fraccions </link></variable>"
#. NEuqx
#: fraction_enter.xhp
@@ -7181,14 +7190,14 @@ msgctxt ""
msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
msgstr "<bookmark_value>busca de l'objectiu;exemple</bookmark_value><bookmark_value>equacions a la busca de l'objectiu</bookmark_value><bookmark_value>càlcul;variables a les equacions</bookmark_value><bookmark_value>variables;càlcul d'equacions</bookmark_value><bookmark_value>exemples;busca de l'objectiu</bookmark_value>"
-#. QJcX6
+#. 2jF9G
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
"hd_id3145068\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=\"Aplicació de la busca de l'objectiu\">Aplicació de la busca de l'objectiu</link></variable>"
+msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\">Applying Goal Seek</link></variable>"
+msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\">Aplicació de la busca de l'objectiu</link></variable>"
#. yeBWn
#: goalseek.xhp
@@ -7289,14 +7298,14 @@ msgctxt ""
msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
msgstr "Apareixerà un diàleg que vos informarà que la busca de l'objectiu s'ha realitzat correctament. Feu clic a <emph>Sí</emph> per introduir el resultat a la cel·la amb el valor variable."
-#. iMULv
+#. 6hzpw
#: goalseek.xhp
msgctxt ""
"goalseek.xhp\n"
"par_id3149409\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=\"Busca de l'objectiu\">Busca de l'objectiu</link>"
+msgid "<link href=\"text/scalc/01/06040000.xhp\">Goal Seek</link>"
+msgstr "<link href=\"text/scalc/01/06040000.xhp\">Busca de l'objectiu</link>"
#. UhcpV
#: html_doc.xhp
@@ -7316,14 +7325,14 @@ msgctxt ""
msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
msgstr "<bookmark_value>HTML; fulls</bookmark_value><bookmark_value>fulls; HTML</bookmark_value><bookmark_value>desament; fulls en HTML</bookmark_value><bookmark_value>obertura; fulls en HTML</bookmark_value>"
-#. aPFgV
+#. KAWf3
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
"hd_id3150542\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=\"Desament i obertura de fulls en HTML\">Desament i obertura de fulls en HTML</link></variable>"
+msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\">Saving and Opening Sheets in HTML</link></variable>"
+msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\">Desament i obertura de fulls en HTML</link></variable>"
#. qFyZS
#: html_doc.xhp
@@ -7415,23 +7424,23 @@ msgctxt ""
msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
msgstr "Ara teniu disponibles totes les opcions del <item type=\"productname\">%PRODUCTNAME</item> Calc. No obstant això, tingueu en compte que no és possible guardar en format HTML totes les opcions d'edició que ofereix el <item type=\"productname\">%PRODUCTNAME</item> Calc."
-#. EVA3w
+#. jZZG4
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
"par_id3150370\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=\"Fitxer ▸ Obri\">Fitxer ▸ Obri</link>"
+msgid "<link href=\"text/shared/01/01020000.xhp\">File - Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\">Fitxer ▸ Obri</link>"
-#. ApBCr
+#. kdzh5
#: html_doc.xhp
msgctxt ""
"html_doc.xhp\n"
"par_id3150199\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=\"Fitxer ▸ Anomena i guarda\">Fitxer ▸ Anomena i guarda</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\">File - Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\">Fitxer ▸ Anomena i guarda</link>"
#. 66Qu3
#: integer_leading_zero.xhp
@@ -7451,14 +7460,14 @@ msgctxt ""
msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
msgstr "<bookmark_value>valors zero; introducció de zeros inicials</bookmark_value><bookmark_value>nombres; amb zeros inicials</bookmark_value><bookmark_value>zeros inicials</bookmark_value><bookmark_value>nombres enters amb zeros inicials</bookmark_value><bookmark_value>cel·les; canvi de formats de text/numèrics</bookmark_value><bookmark_value>formats; canvi de text/nombre</bookmark_value><bookmark_value>text a les cel·les; canvi a nombres</bookmark_value><bookmark_value>conversió; text amb zeros inicials a nombres</bookmark_value>"
-#. WJnMv
+#. KD3G4
#: integer_leading_zero.xhp
msgctxt ""
"integer_leading_zero.xhp\n"
"hd_id3147560\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=\"Introducció d'un nombre amb zeros inicials\">Introducció d'un nombre amb zeros inicials</link></variable>"
+msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\">Entering a Number with Leading Zeros</link></variable>"
+msgstr "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\">Introducció d'un nombre amb zeros inicials</link></variable>"
#. ZFk6Q
#: integer_leading_zero.xhp
@@ -7577,14 +7586,14 @@ msgctxt ""
msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
msgstr "<bookmark_value>accessibilitat; tecles de drecera del %PRODUCTNAME Calc</bookmark_value><bookmark_value>tecles de drecera;accessibilitat al %PRODUCTNAME Calc</bookmark_value>"
-#. 5D3u4
+#. apy4f
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"hd_id3145120\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=\"Tecles de drecera (accessibilitat al %PRODUCTNAME Calc)\">Tecles de drecera (accessibilitat al <item type=\"productname\">%PRODUCTNAME</item> Calc)</link></variable>"
+msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\">Tecles de drecera (accessibilitat al <item type=\"productname\">%PRODUCTNAME</item> Calc)</link></variable>"
#. P7WD8
#: keyboard.xhp
@@ -7640,14 +7649,14 @@ msgctxt ""
msgid "Controlling the Outline"
msgstr "Control del contorn"
-#. rBMm4
+#. CCpxA
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
-msgstr "Podeu utilitzar el teclat a <link href=\"text/scalc/01/12080000.xhp\" name=\"Contorn\">Contorn</link>:"
+msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\">Outline</link>:"
+msgstr "Podeu utilitzar el teclat a <link href=\"text/scalc/01/12080000.xhp\">Contorn</link>:"
#. L9VfN
#: keyboard.xhp
@@ -7784,14 +7793,14 @@ msgctxt ""
msgid "<bookmark_value>tables; freezing</bookmark_value> <bookmark_value>title rows; freezing during table split</bookmark_value> <bookmark_value>rows; freezing</bookmark_value> <bookmark_value>columns; freezing</bookmark_value> <bookmark_value>freezing rows or columns</bookmark_value> <bookmark_value>headers; freezing during table split</bookmark_value> <bookmark_value>scrolling prevention in tables</bookmark_value> <bookmark_value>windows; splitting</bookmark_value> <bookmark_value>tables; splitting windows</bookmark_value>"
msgstr "<bookmark_value>taules; congelació</bookmark_value> <bookmark_value>files de títols; congelació durant la divisió de la taula</bookmark_value> <bookmark_value>files; congelació</bookmark_value> <bookmark_value>columnes; congelació</bookmark_value> <bookmark_value>congelació de files o columnes</bookmark_value> <bookmark_value>capçaleres; congelació durant la divisió de la taula</bookmark_value> <bookmark_value>prevenció del desplaçament a les taules</bookmark_value> <bookmark_value>finestres; divisió</bookmark_value> <bookmark_value>taules; divisió de finestres</bookmark_value>"
-#. 2WVYD
+#. R5isM
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"hd_id3154684\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=\"Congelació de files o columnes com a capçaleres\">Congelació de files o columnes com a capçaleres</link></variable>"
+msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\">Freezing Rows or Columns as Headers</link> </variable>"
+msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\">Congelació de files o columnes com a capçaleres</link></variable>"
#. rQbwQ
#: line_fix.xhp
@@ -7856,32 +7865,32 @@ msgctxt ""
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
msgstr "Si voleu imprimir una fila concreta a totes les pàgines d'un document, trieu <item type=\"menuitem\">Format ▸ Àrees d'impressió ▸ Edita</item>."
-#. Z29B7
+#. wn5VL
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3147004\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
+msgid "<link href=\"text/scalc/01/07090000.xhp\">View - Freeze Rows and Columns</link>"
msgstr ""
-#. RbKLt
+#. mJABn
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3150088\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"View - Split\">View - Split Window</link>"
-msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Visualitza - Divideix\">Visualitza - Divideix la finestra</link>"
+msgid "<link href=\"text/scalc/01/07080000.xhp\">View - Split Window</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\">Visualitza - Divideix la finestra</link>"
-#. uaqGG
+#. rLJGy
#: line_fix.xhp
msgctxt ""
"line_fix.xhp\n"
"par_id3150304\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=\"Format ▸ Àrees d'impressió ▸ Edita\">Format ▸ Àrees d'impressió ▸ Edita</link>"
+msgid "<link href=\"text/scalc/01/05080300.xhp\">Format - Print ranges - Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\">Format ▸ Àrees d'impressió ▸ Edita</link>"
#. JGxbG
#: main.xhp
@@ -7901,14 +7910,14 @@ msgctxt ""
msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
msgstr "<bookmark_value>Instruccions per utilitzar el Calc</bookmark_value><bookmark_value>instruccions; $[officename] Calc</bookmark_value>"
-#. CDGGu
+#. Hjpmb
#: main.xhp
msgctxt ""
"main.xhp\n"
"hd_id3150770\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=\"Instruccions per utilitzar el $[officename] Calc\">Instruccions per utilitzar el $[officename] Calc</link></variable>"
+msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\">Instructions for Using $[officename] Calc</link></variable>"
+msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\">Instruccions per utilitzar el $[officename] Calc</link></variable>"
#. izTXs
#: main.xhp
@@ -8000,14 +8009,14 @@ msgctxt ""
msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
msgstr "<bookmark_value>cel·les; selecció</bookmark_value><bookmark_value>marcatge de cel·les</bookmark_value><bookmark_value>selecció;cel·les</bookmark_value><bookmark_value>selecció de cel·les múltiples</bookmark_value><bookmark_value>modes de selecció als fulls de càlcul</bookmark_value><bookmark_value>taules; selecció d'intervals</bookmark_value>"
-#. agB5T
+#. mGHxj
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
"hd_id3153361\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=\"Selecció de cel·les múltiples\">Selecció de cel·les múltiples</link></variable>"
+msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\">Selecting Multiple Cells</link></variable>"
+msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\">Selecció de cel·les múltiples</link></variable>"
#. DnPDm
#: mark_cells.xhp
@@ -8189,14 +8198,14 @@ msgctxt ""
msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
msgstr "Si feu clic a una cel·la, l'afegireu a les cel·les que ja estiguen marcades. En canvi, si feu clic a una cel·la marcada, la desmarcareu. De manera alternativa, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline> mentre feu clic a les cel·les."
-#. 2tZHj
+#. BBU2x
#: mark_cells.xhp
msgctxt ""
"mark_cells.xhp\n"
"par_id3154487\n"
"help.text"
-msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
-msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Barra d'estat\">Barra d'estat</link>"
+msgid "<link href=\"text/scalc/main0208.xhp\">Status bar</link>"
+msgstr "<link href=\"text/scalc/main0208.xhp\">Barra d'estat</link>"
#. AU6FR
#: matrixformula.xhp
@@ -8216,14 +8225,14 @@ msgctxt ""
msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
msgstr "<bookmark_value>matrius; introducció de fórmules matricials</bookmark_value><bookmark_value>fórmules; fórmules matricials</bookmark_value><bookmark_value>inserció;fórmules matricials</bookmark_value>"
-#. vzNxD
+#. vKCkN
#: matrixformula.xhp
msgctxt ""
"matrixformula.xhp\n"
"hd_id3153969\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=\"Introducció de fórmules matricials\">Introducció de fórmules matricials</link></variable>"
+msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\">Entering Matrix Formulas</link></variable>"
+msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\">Introducció de fórmules matricials</link></variable>"
#. uo5ny
#: matrixformula.xhp
@@ -8576,14 +8585,14 @@ msgctxt ""
msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
msgstr "<bookmark_value>fulls; mostrar múltiples</bookmark_value><bookmark_value>pestanyes del full;utilització</bookmark_value><bookmark_value>visualització;fulls múltiples</bookmark_value>"
-#. kGEYq
+#. WcDqZ
#: multi_tables.xhp
msgctxt ""
"multi_tables.xhp\n"
"hd_id3150769\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=\"Navegació per les pestanyes dels fulls\">Navegació per les pestanyes dels fulls</link></variable>"
+msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\">Navigating Through Sheet Tabs</link> </variable>"
+msgstr "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\">Navegació per les pestanyes dels fulls</link></variable>"
#. Fpcz8
#: multi_tables.xhp
@@ -8639,14 +8648,14 @@ msgctxt ""
msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
msgstr "<bookmark_value>operacions múltiples</bookmark_value><bookmark_value>operacions què passa si;dues variables</bookmark_value><bookmark_value>taules; operacions múltiples en</bookmark_value><bookmark_value>taules de dades; operacions múltiples en</bookmark_value><bookmark_value>taules creuades</bookmark_value>"
-#. aDj8d
+#. XKeKS
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
"hd_id3147559\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=\"Aplicació d'operacions múltiples\">Aplicació d'operacions múltiples</link></variable>"
+msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\">Applying Multiple Operations</link></variable>"
+msgstr "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\">Aplicació d'operacions múltiples</link></variable>"
#. mX8Gh
#: multioperation.xhp
@@ -8945,14 +8954,14 @@ msgctxt ""
msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
msgstr "Tanqueu el diàleg fent clic a D'acord. Veureu els guanys a l'interval E2:H11 per als diferents preus de venda."
-#. RDzCg
+#. fgJoa
#: multioperation.xhp
msgctxt ""
"multioperation.xhp\n"
"par_id3155104\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=\"Operacions múltiples\">Operacions múltiples</link>"
+msgid "<link href=\"text/scalc/01/12060000.xhp\">Multiple operations</link>"
+msgstr "<link href=\"text/scalc/01/12060000.xhp\">Operacions múltiples</link>"
#. fdSJp
#: multitables.xhp
@@ -8972,14 +8981,14 @@ msgctxt ""
msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
msgstr "<bookmark_value>fulls; inserció</bookmark_value><bookmark_value>inserció; fulls</bookmark_value><bookmark_value>fulls; selecció múltiple</bookmark_value><bookmark_value>addició de fulls</bookmark_value><bookmark_value>selecció;fulls múltiples</bookmark_value><bookmark_value>fulls múltiples</bookmark_value><bookmark_value>càlcul;fulls múltiples</bookmark_value>"
-#. kAW58
+#. EaKEB
#: multitables.xhp
msgctxt ""
"multitables.xhp\n"
"hd_id3154759\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=\"Aplicació de fulls múltiples\">Aplicació de fulls múltiples</link></variable>"
+msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\">Applying Multiple Sheets</link></variable>"
+msgstr "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\">Aplicació de fulls múltiples</link></variable>"
#. VB2mS
#: multitables.xhp
@@ -9116,23 +9125,23 @@ msgctxt ""
msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
msgstr "<bookmark_value>comentaris; a les cel·les</bookmark_value><bookmark_value>cel·les;comentaris</bookmark_value><bookmark_value>comentaris a les cel·les</bookmark_value><bookmark_value>formatació;comentaris a les cel·les</bookmark_value><bookmark_value>visualització;comentaris a les cel·les</bookmark_value><bookmark_value>visualització;comentaris</bookmark_value>"
-#. YBYVe
+#. GBkCp
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
"hd_id3153968\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=\"Inserció i edició de comentaris\">Inserció i edició de comentaris</link></variable>"
+msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\">Inserting and Editing Comments</link></variable>"
+msgstr "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\">Inserció i edició de comentaris</link></variable>"
-#. ppiA9
+#. LT56i
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
"par_id3150440\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 "Podeu assignar un comentari a cada cel·la triant <link href=\"text/shared/01/04050000.xhp\" name=\"Insereix ▸ Comentari\"><emph>Insereix ▸ Comentari</emph></link>. El comentari s'indica a la cel·la amb un quadrat roig petit, l'indicador de comentari."
+msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
+msgstr "Podeu assignar un comentari a cada cel·la triant <link href=\"text/shared/01/04050000.xhp\"><emph>Insereix ▸ Comentari</emph></link>. El comentari s'indica a la cel·la amb un quadrat roig petit, l'indicador de comentari."
#. ZGJBc
#: note_insert.xhp
@@ -9197,14 +9206,14 @@ msgctxt ""
msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
msgstr "Per visualitzar un consell d'ajuda per a una cel·la seleccionada, utilitzeu <emph>Dades - Validesa - Ajuda d'entrada</emph>."
-#. yGtBB
+#. pF67W
#: note_insert.xhp
msgctxt ""
"note_insert.xhp\n"
"par_id3153707\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=\"Insereix ▸ Comentari\">Insereix ▸ Comentari</link>"
+msgid "<link href=\"text/shared/01/04050000.xhp\">Insert - Comment</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\">Insereix ▸ Comentari</link>"
#. 97G62
#: numbers_text.xhp
@@ -9224,14 +9233,14 @@ msgctxt ""
msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
msgstr ""
-#. pqhdm
+#. AAaGt
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
"hd_id0908200901265171\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=\"Conversió de text a nombres\">Conversió de text a nombres</link></variable>"
+msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\">Converting Text to Numbers</link></variable>"
+msgstr "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\">Conversió de text a nombres</link></variable>"
#. rpHje
#: numbers_text.xhp
@@ -9449,23 +9458,23 @@ msgctxt ""
msgid "Changing the default text to number conversion settings"
msgstr ""
-#. p9t4t
+#. 9NL9J
#: numbers_text.xhp
msgctxt ""
"numbers_text.xhp\n"
"par_id111567772433803\n"
"help.text"
-msgid "The text to number conversion can be customized in the <link href=\"text/shared/optionen/detailedcalculation.xhp\" name=\"detailed_link\">Detailed Calculation Settings</link> option."
+msgid "The text to number conversion can be customized in the <link href=\"text/shared/optionen/detailedcalculation.xhp\">Detailed Calculation Settings</link> option."
msgstr ""
-#. WE8wt
+#. igDCX
#: 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=\"Format ▸ Cel·les ▸ Nombres\">Format ▸ Cel·les ▸ Nombres</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Format ▸ Cel·les ▸ Nombres</link>"
#. 42xFw
#: pivotchart.xhp
@@ -9485,23 +9494,23 @@ msgctxt ""
msgid "<bookmark_value>chart;pivot chart</bookmark_value> <bookmark_value>pivot table;pivot chart</bookmark_value>"
msgstr "<bookmark_value>diagrama;diagrama dinàmic</bookmark_value><bookmark_value>taula dinàmica;diagrama dinàmic</bookmark_value>"
-#. AEE5J
+#. vGNqs
#: pivotchart.xhp
msgctxt ""
"pivotchart.xhp\n"
"hd_id141525139671420\n"
"help.text"
-msgid "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot Chart\">Pivot Chart</link></variable>"
-msgstr "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Diagrama dinàmic\">Diagrama dinàmic</link></variable>"
+msgid "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\">Pivot Chart</link></variable>"
+msgstr "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\">Diagrama dinàmic</link></variable>"
-#. 7LinF
+#. 9ZWLh
#: pivotchart.xhp
msgctxt ""
"pivotchart.xhp\n"
"par_id291525139878423\n"
"help.text"
-msgid "A pivot chart is a chart with data range and data series of a <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">pivot table</link>."
-msgstr "Un diagrama dinàmic és un diagrama amb un interval i sèries de dades d'una <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Taula dinàmica\">taula dinàmica</link>."
+msgid "A pivot chart is a chart with data range and data series of a <link href=\"text/scalc/guide/datapilot.xhp\">pivot table</link>."
+msgstr "Un diagrama dinàmic és un diagrama amb un interval i sèries de dades d'una <link href=\"text/scalc/guide/datapilot.xhp\">taula dinàmica</link>."
#. VMZRC
#: pivotchart.xhp
@@ -9521,14 +9530,14 @@ msgctxt ""
msgid "Pivot charts track the changes in the data issued from a pivot table and adjust the data series and data range accordingly."
msgstr "Els diagrames dinàmics monitoren els canvis en les dades emeses per una taula dinàmica i ajusten la sèrie i l'interval de dades conseqüentment."
-#. mZV4m
+#. jvYUC
#: pivotchart.xhp
msgctxt ""
"pivotchart.xhp\n"
"par_id191525177790601\n"
"help.text"
-msgid "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Technical details on %PRODUCTNAME pivot chart implementation</link>."
-msgstr "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Detalls tècnics de la implementació dels diagrames dinàmics del %PRODUCTNAME</link>."
+msgid "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\">Technical details on %PRODUCTNAME pivot chart implementation</link>."
+msgstr "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\">Detalls tècnics de la implementació dels diagrames dinàmics del %PRODUCTNAME</link>."
#. D4FkY
#: pivotchart_create.xhp
@@ -9548,14 +9557,14 @@ msgctxt ""
msgid "<bookmark_value>pivot chart;creating</bookmark_value>"
msgstr "<bookmark_value>diagrama dinàmic;creació</bookmark_value>"
-#. LGXm7
+#. yyM9q
#: pivotchart_create.xhp
msgctxt ""
"pivotchart_create.xhp\n"
"hd_id441525141699185\n"
"help.text"
-msgid "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">Creating Pivot Charts</link></variable>"
-msgstr "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"Creació de diagrames dinàmics\">Creació de diagrames dinàmics</link></variable>"
+msgid "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\">Creating Pivot Charts</link></variable>"
+msgstr "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\">Creació de diagrames dinàmics</link></variable>"
#. UuRST
#: pivotchart_create.xhp
@@ -9593,14 +9602,14 @@ msgctxt ""
msgid "%PRODUCTNAME Calc automatically detects the pivot table and opens the pivot chart wizard."
msgstr "El %PRODUCTNAME Calc detecta automàticament la taula dinàmica i obri l'auxiliar de diagrames dinàmics."
-#. q3cHS
+#. 4WYiS
#: pivotchart_create.xhp
msgctxt ""
"pivotchart_create.xhp\n"
"par_id861525140391601\n"
"help.text"
-msgid "Select the <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\">Chart type</link> for the data in the chart wizard."
-msgstr "Seleccioneu el <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\">tipus de diagrama</link> per a les dades de l'auxiliar de diagrames."
+msgid "Select the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart type</link> for the data in the chart wizard."
+msgstr "Seleccioneu el <link href=\"text/schart/01/wiz_chart_type.xhp\">tipus de diagrama</link> per a les dades de l'auxiliar de diagrames."
#. DkotR
#: pivotchart_create.xhp
@@ -9611,14 +9620,14 @@ msgctxt ""
msgid "The data range and the data series pages of the chart wizard are not enabled. They are controlled by the pivot table."
msgstr "No s'activen les pàgines «Interval de dades» i «Sèrie de dades» de l'auxiliar de diagrames, perquè aquests paràmetres els controla la taula dinàmica."
-#. 6tkMF
+#. c3MzL
#: pivotchart_create.xhp
msgctxt ""
"pivotchart_create.xhp\n"
"par_id511525140411625\n"
"help.text"
-msgid "Select the <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">Chart Elements</link> of the pivot chart in the wizard."
-msgstr "Seleccioneu els <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Elements del diagrama\">Elements del diagrama</link> del diagrama dinàmic en l'auxiliar."
+msgid "Select the <link href=\"text/schart/01/wiz_chart_elements.xhp\">Chart Elements</link> of the pivot chart in the wizard."
+msgstr "Seleccioneu els <link href=\"text/schart/01/wiz_chart_elements.xhp\">Elements del diagrama</link> del diagrama dinàmic en l'auxiliar."
#. DiBBF
#: pivotchart_create.xhp
@@ -9638,14 +9647,14 @@ msgctxt ""
msgid "Deleting Pivot Charts"
msgstr "Supressió de diagrames dinàmics"
-#. BEj4o
+#. 4gxme
#: pivotchart_delete.xhp
msgctxt ""
"pivotchart_delete.xhp\n"
"hd_id231525147891984\n"
"help.text"
-msgid "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">Deleting a Pivot Chart</link></variable>"
-msgstr "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Supressió d'un diagrama dinàmic\">Supressió d'un diagrama dinàmic</link></variable>"
+msgid "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\">Deleting a Pivot Chart</link></variable>"
+msgstr "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\">Supressió d'un diagrama dinàmic</link></variable>"
#. GRQDA
#: pivotchart_delete.xhp
@@ -9701,14 +9710,14 @@ msgctxt ""
msgid "<bookmark_value>pivot chart;editing</bookmark_value>"
msgstr "<bookmark_value>diagrama dinàmic; edició;editar</bookmark_value>"
-#. fEdDB
+#. tCuUT
#: pivotchart_edit.xhp
msgctxt ""
"pivotchart_edit.xhp\n"
"hd_id271525144002806\n"
"help.text"
-msgid "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot Chart Editing\">Editing Pivot Charts</link></variable>"
-msgstr "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Edició de diagrames dinàmics\">Edició de diagrames dinàmics</link></variable>"
+msgid "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\">Editing Pivot Charts</link></variable>"
+msgstr "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\">Edició de diagrames dinàmics</link></variable>"
#. tyqEE
#: pivotchart_edit.xhp
@@ -9737,22 +9746,22 @@ msgctxt ""
msgid "Filtering Pivot Charts"
msgstr "Filtratge de diagrames dinàmics"
-#. 83phF
+#. BQj5B
#: pivotchart_filter.xhp
msgctxt ""
"pivotchart_filter.xhp\n"
"hd_id401525165755583\n"
"help.text"
-msgid "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtering Pivot Charts\">Filtering Pivot Charts</link></variable>"
-msgstr "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtratge de diagrames dinàmics\">Filtratge de diagrames dinàmics</link></variable>"
+msgid "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\">Filtering Pivot Charts</link></variable>"
+msgstr "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\">Filtratge de diagrames dinàmics</link></variable>"
-#. rByFE
+#. AkGAs
#: pivotchart_filter.xhp
msgctxt ""
"pivotchart_filter.xhp\n"
"par_id781525166702239\n"
"help.text"
-msgid "Filters are used to remove unwanted data from the pivot chart. You can use filters in the pivot chart or in the corresponding <link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Pivot table filtering\">pivot table</link>, since the resulting chart is exactly the same."
+msgid "Filters are used to remove unwanted data from the pivot chart. You can use filters in the pivot chart or in the corresponding <link href=\"text/scalc/guide/datapilot_filtertable.xhp\">pivot table</link>, since the resulting chart is exactly the same."
msgstr ""
#. n2tCy
@@ -9818,14 +9827,14 @@ msgctxt ""
msgid "<bookmark_value>pivot chart;update</bookmark_value>"
msgstr "<bookmark_value>diagrama dinàmic;actualització</bookmark_value>"
-#. uViPN
+#. XvU7B
#: pivotchart_update.xhp
msgctxt ""
"pivotchart_update.xhp\n"
"hd_id281525146417678\n"
"help.text"
-msgid "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot Chart Update\">Updating Pivot Charts</link></variable>"
-msgstr "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Actualització de diagrames dinàmics\">Actualització de diagrames dinàmics</link></variable>"
+msgid "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\">Updating Pivot Charts</link></variable>"
+msgstr "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\">Actualització de diagrames dinàmics</link></variable>"
#. JmbEt
#: pivotchart_update.xhp
@@ -9872,14 +9881,14 @@ msgctxt ""
msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
msgstr "<bookmark_value>impressió;detalls del full</bookmark_value><bookmark_value>fulls; impressió de detalls</bookmark_value><bookmark_value>graelles; impressió de graelles del full</bookmark_value><bookmark_value>fórmules; impressió, en lloc de resultats</bookmark_value><bookmark_value>notes; impressió</bookmark_value><bookmark_value>diagrames;impressió</bookmark_value><bookmark_value>graelles del full; impressió</bookmark_value><bookmark_value>cel·les; impressió de graelles</bookmark_value><bookmark_value>vores; impressió de cel·les</bookmark_value><bookmark_value>valors zero; impressió</bookmark_value><bookmark_value>valors nuls; impressió</bookmark_value><bookmark_value>objectes de dibuix;impressió</bookmark_value>"
-#. cqFyW
+#. ikmor
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
"hd_id3154346\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=\"Impressió dels detalls d'un full\">Impressió dels detalls d'un full</link></variable>"
+msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\">Printing Sheet Details</link></variable>"
+msgstr "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\">Impressió dels detalls d'un full</link></variable>"
#. hGEFc
#: print_details.xhp
@@ -10007,14 +10016,14 @@ msgctxt ""
msgid "Print the document."
msgstr "Imprimiu el document."
-#. jKV72
+#. TSBnz
#: print_details.xhp
msgctxt ""
"print_details.xhp\n"
"par_id3150345\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break\">View - Page Break</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Visualitza - Previsualització del salt de pàgina\">Visualitza - Previsualització del salt de pàgina</link>"
+msgid "<link href=\"text/scalc/01/03100000.xhp\">View - Page Break</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\">Visualitza - Previsualització del salt de pàgina</link>"
#. AgAiH
#: print_exact.xhp
@@ -10034,14 +10043,14 @@ msgctxt ""
msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
msgstr "<bookmark_value>impressió; nombre de fulls</bookmark_value><bookmark_value>fulls; impressió del nombre de fulls</bookmark_value><bookmark_value>salts de pàgina; previsualització al full de càlcul</bookmark_value><bookmark_value>edició;àrees d'impressió</bookmark_value><bookmark_value>visualització;àrees d'impressió</bookmark_value><bookmark_value>previsualitzacions;salts de pàgina per imprimir</bookmark_value>"
-#. 6Wsn5
+#. FEWmm
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
"hd_id3153194\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=\"Definició del nombre de pàgines per a la impressió\">Definició del nombre de pàgines per a la impressió</link></variable>"
+msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\">Defining Number of Pages for Printing</link></variable>"
+msgstr "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\">Definició del nombre de pàgines per a la impressió</link></variable>"
#. 8omBt
#: print_exact.xhp
@@ -10088,14 +10097,14 @@ msgctxt ""
msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
msgstr "Podeu moure les línies blaves amb el ratolí. Trobareu més opcions al menú contextual, inclosa l'addició d'una àrea d'impressió addicional, la supressió del redimensionament i la inserció manual de salts de línia i de columna addicionals."
-#. yfroe
+#. pv9mo
#: print_exact.xhp
msgctxt ""
"print_exact.xhp\n"
"par_id3151073\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break\">View - Page Break</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Visualitza - Previsualització del salt de pàgina\">Visualitza - Previsualització del salt de pàgina</link>"
+msgid "<link href=\"text/scalc/01/03100000.xhp\">View - Page Break</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\">Visualitza - Previsualització del salt de pàgina</link>"
#. ruFna
#: print_landscape.xhp
@@ -10115,14 +10124,14 @@ msgctxt ""
msgid "<bookmark_value>printing; sheet selections</bookmark_value> <bookmark_value>sheets; printing in landscape</bookmark_value> <bookmark_value>printing; landscape</bookmark_value> <bookmark_value>landscape printing</bookmark_value>"
msgstr "<bookmark_value>impressió; seleccions del full</bookmark_value><bookmark_value>fulls; impressió en format horitzontal</bookmark_value><bookmark_value>impressió; horitzontal</bookmark_value><bookmark_value>impressió en horitzontal</bookmark_value>"
-#. ff6kb
+#. Yw45t
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
"hd_id3153418\n"
"help.text"
-msgid "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\" name=\"Printing Sheets in Landscape Format\">Printing Sheets in Landscape Format</link></variable>"
-msgstr "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\" name=\"Impressió de fulls en format horitzontal\">Impressió de fulls en format horitzontal</link></variable>"
+msgid "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\">Printing Sheets in Landscape Format</link></variable>"
+msgstr "<variable id=\"print_landscape\"><link href=\"text/scalc/guide/print_landscape.xhp\">Impressió de fulls en format horitzontal</link></variable>"
#. Ce8BB
#: print_landscape.xhp
@@ -10268,14 +10277,14 @@ msgctxt ""
msgid "If under <emph>Format - Print ranges</emph> you have defined one or more print ranges, only the contents of these print ranges will be printed."
msgstr "Si a <emph>Format ▸ Àrees d'impressió</emph> heu definit una o diverses àrees d'impressió, només s'imprimiran els continguts d'estes àrees."
-#. EVXcd
+#. DHHJg
#: print_landscape.xhp
msgctxt ""
"print_landscape.xhp\n"
"par_id3156019\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break\">View - Page Break</link>"
-msgstr "<link href=\"text/scalc/01/03100000.xhp\" name=\"Visualitza - Previsualització del salt de pàgina\">Visualitza - Previsualització del salt de pàgina</link>"
+msgid "<link href=\"text/scalc/01/03100000.xhp\">View - Page Break</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\">Visualitza - Previsualització del salt de pàgina</link>"
#. vbjmr
#: print_landscape.xhp
@@ -10304,14 +10313,14 @@ msgctxt ""
msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
msgstr "<bookmark_value>impressió; fulls en pàgines múltiples</bookmark_value><bookmark_value>fulls; impressió en pàgines múltiples</bookmark_value><bookmark_value>files; repetició quan s'imprimeixen</bookmark_value><bookmark_value>columnes; repetició quan s'imprimeixen</bookmark_value><bookmark_value>repetició;columnes/files a pàgines impreses</bookmark_value><bookmark_value>files de títol; impressió a tots els fulls</bookmark_value><bookmark_value>capçaleres; impressió als fulls</bookmark_value><bookmark_value>notes a peu de pàgina; impressió als fulls</bookmark_value><bookmark_value>impressió; files/columnes com a encapçalaments de taula</bookmark_value><bookmark_value>encapçalaments;repetició de files/columnes com a</bookmark_value>"
-#. GaFEB
+#. BsWC9
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
"hd_id3153727\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=\"Impressió de files o columnes a totes les pàgines\">Impressió de files o columnes a totes les pàgines</link></variable>"
+msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\">Printing Rows or Columns on Every Page</link></variable>"
+msgstr "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\">Impressió de files o columnes a totes les pàgines</link></variable>"
#. kzA5T
#: print_title_row.xhp
@@ -10421,31 +10430,31 @@ msgctxt ""
msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page Style</emph>."
msgstr ""
-#. b42kP
+#. PX4LE
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
"par_id3155380\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=\"Visualitza - Previsualització del salt de pàgina\">Visualitza - Previsualització del salt de pàgina</link>"
+msgid "<link href=\"text/scalc/01/03100000.xhp\">View - Page Break Preview</link>"
+msgstr "<link href=\"text/scalc/01/03100000.xhp\">Visualitza - Previsualització del salt de pàgina</link>"
-#. uExLf
+#. vccDH
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
"par_id3154371\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=\"Format ▸ Àrees d'impressió ▸ Edita\">Format ▸ Àrees d'impressió ▸ Edita</link>"
+msgid "<link href=\"text/scalc/01/05080300.xhp\">Format - Print ranges - Edit</link>"
+msgstr "<link href=\"text/scalc/01/05080300.xhp\">Format ▸ Àrees d'impressió ▸ Edita</link>"
-#. EhgS7
+#. 9zjha
#: print_title_row.xhp
msgctxt ""
"print_title_row.xhp\n"
"par_id3146113\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page Style - (Header / Footer)\">Format - Page Style - (Header / Footer)</link>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\">Format - Page Style - (Header / Footer)</link>"
msgstr ""
#. AK3vB
@@ -10700,14 +10709,14 @@ msgctxt ""
msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
msgstr "<bookmark_value>adreces; relatives i absolutes</bookmark_value><bookmark_value>referències; absolutes/relatives</bookmark_value><bookmark_value>adreces absolutes als fulls de càlcul</bookmark_value><bookmark_value>adreces relatives</bookmark_value><bookmark_value>referències absolutes als fulls de càlcul</bookmark_value><bookmark_value>referències relatives</bookmark_value><bookmark_value>referències; a les cel·les</bookmark_value><bookmark_value>cel·les; referències</bookmark_value>"
-#. hMp78
+#. SCMmK
#: relativ_absolut_ref.xhp
msgctxt ""
"relativ_absolut_ref.xhp\n"
"hd_id3156423\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=\"Adreces i referències, absolutes i relatives\">Adreces i referències, absolutes i relatives</link></variable>"
+msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">Addresses and References, Absolute and Relative</link></variable>"
+msgstr "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">Adreces i referències, absolutes i relatives</link></variable>"
#. 6AVDc
#: relativ_absolut_ref.xhp
@@ -10835,13 +10844,13 @@ msgctxt ""
msgid "<bookmark_value>filters; removing duplicates</bookmark_value> <bookmark_value>filters; finding unique values</bookmark_value>"
msgstr ""
-#. Q5494
+#. HAqBY
#: remove_duplicates.xhp
msgctxt ""
"remove_duplicates.xhp\n"
"hd_id501630021281902\n"
"help.text"
-msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/remove_duplicates.xhp\" name=\"Duplicates_h1\">Removing Duplicate Values</link></variable>"
+msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/remove_duplicates.xhp\">Removing Duplicate Values</link></variable>"
msgstr ""
#. ocizx
@@ -10862,13 +10871,13 @@ msgctxt ""
msgid "Select the range of values from which duplicate values are to be removed. The values have to be arranged in a single column."
msgstr ""
-#. 7fDQ9
+#. WA3SF
#: remove_duplicates.xhp
msgctxt ""
"remove_duplicates.xhp\n"
"par_id31630021517873\n"
"help.text"
-msgid "Go to <menuitem>Data - More Filters - Standard Filter</menuitem>. This opens the <link href=\"text/shared/02/12090100.xhp\" name=\"std_dialog_link\"> Standard Filter</link> dialog."
+msgid "Go to <menuitem>Data - More Filters - Standard Filter</menuitem>. This opens the <link href=\"text/shared/02/12090100.xhp\"> Standard Filter</link> dialog."
msgstr ""
#. EVEzq
@@ -10952,14 +10961,14 @@ msgctxt ""
msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
msgstr "<bookmark_value>reanomenament;fulls</bookmark_value><bookmark_value>pestanyes dels fulls;reanomenament</bookmark_value><bookmark_value>taules;reanomenament</bookmark_value><bookmark_value>noms; fulls</bookmark_value>"
-#. Ussbk
+#. vikAG
#: rename_table.xhp
msgctxt ""
"rename_table.xhp\n"
"hd_id3150398\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=\"Canvi de nom dels fulls\">Canvi de nom dels fulls</link></variable>"
+msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\">Renaming Sheets</link></variable>"
+msgstr "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\">Canvi de nom dels fulls</link></variable>"
#. zEnG4
#: rename_table.xhp
@@ -11195,14 +11204,14 @@ msgctxt ""
msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
msgstr "<bookmark_value>nombres; arrodonits</bookmark_value><bookmark_value>nombres arrodonits</bookmark_value><bookmark_value>nombres exactes al $[officename] Calc</bookmark_value><bookmark_value>llocs decimals; mostra</bookmark_value><bookmark_value>canvi;nombre de llocs decimals</bookmark_value><bookmark_value>valors;arrodonits als càlculs</bookmark_value><bookmark_value>càlculs;valors arrodonits</bookmark_value><bookmark_value>nombres; llocs decimals</bookmark_value><bookmark_value>precisió com es mostra</bookmark_value><bookmark_value>precisió arrodonida</bookmark_value><bookmark_value>fulls de càlcul; valors com es mostren</bookmark_value>"
-#. K5BPL
+#. NXSGA
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
"hd_id3156422\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=\"Utilització de nombres arrodonits\">Utilització de nombres arrodonits</link></variable>"
+msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\">Using Rounded Off Numbers</link></variable>"
+msgstr "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\">Utilització de nombres arrodonits</link></variable>"
#. dJpQD
#: rounding_numbers.xhp
@@ -11303,23 +11312,23 @@ msgctxt ""
msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
msgstr "Aneu a la pàgina <emph>Càlcul</emph>. Activeu la casella <emph>Precisió com es mostra</emph> i eixiu del diàleg fent clic a D'acord."
-#. qp8h5
+#. N6TMC
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3145790\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Nombres\">Nombres</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Nombres</link>"
-#. AoZCy
+#. GMiBZ
#: rounding_numbers.xhp
msgctxt ""
"rounding_numbers.xhp\n"
"par_id3147005\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
-msgstr "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Càlcul\">Càlcul</link>"
+msgid "<link href=\"text/shared/optionen/01060500.xhp\">Calculate</link>"
+msgstr "<link href=\"text/shared/optionen/01060500.xhp\">Càlcul</link>"
#. 2CXMu
#: row_height.xhp
@@ -11339,14 +11348,14 @@ msgctxt ""
msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
msgstr "<bookmark_value>alçades de les cel·les</bookmark_value><bookmark_value>alçades de les cel·les</bookmark_value><bookmark_value>amplades de les cel·les</bookmark_value><bookmark_value>cel·les; alçades i amplades</bookmark_value><bookmark_value>amplades de les cel·les</bookmark_value><bookmark_value>amplades de les columnes</bookmark_value><bookmark_value>files; alçades</bookmark_value><bookmark_value>columnes; amplades</bookmark_value><bookmark_value>canvi;alçades de les files/amplades de les columnes</bookmark_value>"
-#. ZhKE7
+#. zRnfd
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
"hd_id3145748\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=\"Canvi de l'alçària de la fila o de l'amplària de la columna\">Canvi de l'alçària de la fila o de l'amplària de la columna</link></variable>"
+msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\">Changing Row Height or Column Width</link></variable>"
+msgstr "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\">Canvi de l'alçària de la fila o de l'amplària de la columna</link></variable>"
#. NXeZU
#: row_height.xhp
@@ -11429,41 +11438,41 @@ msgctxt ""
msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
msgstr "Veureu les ordes <emph>Alçària de la fila</emph> i <emph>Alçària òptima de la fila</emph>. Si trieu qualsevol de les dues opcions s'obrirà un diàleg."
-#. XZYSf
+#. LcbwQ
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
"par_id3154487\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=\"Alçària de la fila\">Alçària de la fila</link>"
+msgid "<link href=\"text/shared/01/05340100.xhp\">Row height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\">Alçària de la fila</link>"
-#. ftbnx
+#. uc7yU
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
"par_id3149408\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=\"Alçària òptima de la fila\">Alçària òptima de la fila</link>"
+msgid "<link href=\"text/scalc/01/05030200.xhp\">Optimal row height</link>"
+msgstr "<link href=\"text/scalc/01/05030200.xhp\">Alçària òptima de la fila</link>"
-#. BJtSN
+#. K8Xsr
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
"par_id3153305\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=\"Amplària de la columna\">Amplària de la columna</link>"
+msgid "<link href=\"text/shared/01/05340200.xhp\">Column width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\">Amplària de la columna</link>"
-#. HGYEx
+#. THtNm
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
"par_id3153815\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=\"Amplària òptima de la columna\">Amplària òptima de la columna</link>"
+msgid "<link href=\"text/scalc/01/05040200.xhp\">Optimal column width</link>"
+msgstr "<link href=\"text/scalc/01/05040200.xhp\">Amplària òptima de la columna</link>"
#. YRbvh
#: scenario.xhp
@@ -11483,14 +11492,14 @@ msgctxt ""
msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
msgstr "<bookmark_value>escenaris; creació/edició/supressió</bookmark_value><bookmark_value>obertura;escenaris</bookmark_value><bookmark_value>selecció;escenaris al Navegador</bookmark_value>"
-#. 4gBns
+#. rmHtG
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
"hd_id3125863\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=\"Utilització d'escenaris\">Utilització d'escenaris</link></variable>"
+msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\">Using Scenarios</link></variable>"
+msgstr "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\">Utilització d'escenaris</link></variable>"
#. DGENT
#: scenario.xhp
@@ -11636,14 +11645,14 @@ msgctxt ""
msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
msgstr "Si voleu saber quins són els valors de l'escenari que afecten altres valors, trieu <emph>Eines - Detectiu - Rastreja les dependències</emph>. Veureu fletxes dirigides a les cel·les que depenen directament de la cel·la actual."
-#. 3Rz4E
+#. tZ3Es
#: scenario.xhp
msgctxt ""
"scenario.xhp\n"
"par_id3154484\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=\"Creació d'escenaris\">Creació d'escenaris</link>"
+msgid "<link href=\"text/scalc/01/06050000.xhp\">Creating Scenarios</link>"
+msgstr "<link href=\"text/scalc/01/06050000.xhp\">Creació d'escenaris</link>"
#. AG6Vf
#: sorted_list.xhp
@@ -11663,14 +11672,14 @@ msgctxt ""
msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
msgstr "<bookmark_value>emplenament;llistes personalitzades</bookmark_value><bookmark_value>llistes d'ordenació;aplicació</bookmark_value><bookmark_value>definició;llistes d'ordenació</bookmark_value><bookmark_value>llistes geomètriques</bookmark_value><bookmark_value>llistes aritmètiques</bookmark_value><bookmark_value>sèries;llistes d'ordenació</bookmark_value><bookmark_value>llistes; definides per l'usuari</bookmark_value><bookmark_value>llistes personalitzades</bookmark_value>"
-#. WuFEM
+#. 486Qk
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
"hd_id3150870\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=\"Aplicació de les llistes d'ordenació\">Aplicació de les llistes d'ordenació</link></variable>"
+msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\">Applying Sort Lists</link> </variable>"
+msgstr "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\">Aplicació de les llistes d'ordenació</link></variable>"
#. oMwuD
#: sorted_list.xhp
@@ -11708,14 +11717,14 @@ msgctxt ""
msgid "The predefined series can be found under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists</emph>. 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 "Les sèries predefinides es poden trobar a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - %PRODUCTNAME Calc - Llistes d'ordenació</emph>. També podeu crear les vostres pròpies llistes de cadenes de text adaptades a les vostres necessitats, com ara una llista de les sucursals de la vostra empresa. Quan utilitzeu la informació d'estes llistes més avant (per exemple, com a encapçalaments), només haureu d'introduir el primer nom a la llista i estendre l'entrada arrossegant-la amb el ratolí."
-#. qqeXK
+#. vnpQt
#: sorted_list.xhp
msgctxt ""
"sorted_list.xhp\n"
"par_id3147434\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=\"Llistes d'ordenació\">Llistes d'ordenació</link>"
+msgid "<link href=\"text/shared/optionen/01060400.xhp\">Sort lists</link>"
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\">Llistes d'ordenació</link>"
#. 6GdiT
#: specialfilter.xhp
@@ -11735,13 +11744,13 @@ msgctxt ""
msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
msgstr "<bookmark_value>filtres;definició de filtres avançats </bookmark_value><bookmark_value>filtres avançats</bookmark_value><bookmark_value>definició; filtres avançats</bookmark_value><bookmark_value>intervals de bases de dades; filtres avançats</bookmark_value>"
-#. cjgod
+#. nzLyA
#: specialfilter.xhp
msgctxt ""
"specialfilter.xhp\n"
"hd_id3148798\n"
"help.text"
-msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Applying Advanced Filters\">Applying Advanced Filters</link></variable>"
+msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\">Applying Advanced Filters</link></variable>"
msgstr ""
#. tYuAi
@@ -11969,22 +11978,22 @@ msgctxt ""
msgid "<bookmark_value>subtotals;using subtotals tool</bookmark_value>"
msgstr ""
-#. 6JBG9
+#. e7TMf
#: subtotaltool.xhp
msgctxt ""
"subtotaltool.xhp\n"
"hd_id631585177069332\n"
"help.text"
-msgid "<variable id=\"subtotaltoolh1\"><link href=\"text/scalc/guide/subtotaltool.xhp\" name=\"Using Subtotal Tool\">Using Subtotal Tool</link></variable>"
-msgstr "<variable id=\"subtotaltoolh1\"><link href=\"text/scalc/guide/subtotaltool.xhp\" name=\"Using Subtotal Tool\">Ús de l'eina de subtotals</link></variable>"
+msgid "<variable id=\"subtotaltoolh1\"><link href=\"text/scalc/guide/subtotaltool.xhp\">Using Subtotal Tool</link></variable>"
+msgstr "<variable id=\"subtotaltoolh1\"><link href=\"text/scalc/guide/subtotaltool.xhp\">Ús de l'eina de subtotals</link></variable>"
-#. rC9BC
+#. FEwcj
#: subtotaltool.xhp
msgctxt ""
"subtotaltool.xhp\n"
"par_id301585177069332\n"
"help.text"
-msgid "Calc offers the Subtotals tool as a more comprehensive alternative to the <link href=\"text/scalc/01/04060106.xhp#Section12\" name=\"subtotal\">SUBTOTAL function</link>. In contrast to SUBTOTAL, which only works on a single array, the Subtotals tool can create subtotals for up to three arrays arranged in labeled columns. It also groups subtotals by category and sorts them automatically, thereby eliminating the need to apply AutoFilters and filter categories by hand."
+msgid "Calc offers the Subtotals tool as a more comprehensive alternative to the <link href=\"text/scalc/01/04060106.xhp#Section12\">SUBTOTAL function</link>. In contrast to SUBTOTAL, which only works on a single array, the Subtotals tool can create subtotals for up to three arrays arranged in labeled columns. It also groups subtotals by category and sorts them automatically, thereby eliminating the need to apply AutoFilters and filter categories by hand."
msgstr ""
#. NEkbi
@@ -12131,14 +12140,14 @@ msgctxt ""
msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
msgstr "<bookmark_value>superíndex del text a les cel·les</bookmark_value><bookmark_value>subíndex del text a les cel·les</bookmark_value><bookmark_value>cel·les; superíndex/subíndex del text</bookmark_value><bookmark_value>caràcters;superíndex/subíndex</bookmark_value>"
-#. JLoBw
+#. qZkGz
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
"hd_id3151112\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=\"Superíndex / subíndex del text\">Superíndex / subíndex del text</link></variable>"
+msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\">Text Superscript / Subscript</link></variable>"
+msgstr "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\">Superíndex / subíndex del text</link></variable>"
#. DSxqD
#: super_subscript.xhp
@@ -12185,14 +12194,14 @@ msgctxt ""
msgid "Select the <emph>Subscript</emph> option and click OK."
msgstr "Seleccioneu l'opció <emph>Subíndex</emph> i feu clic a D'acord."
-#. Vh5Ek
+#. eqGzu
#: super_subscript.xhp
msgctxt ""
"super_subscript.xhp\n"
"par_id3153876\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=\"Menú contextual - Caràcter - Posició del tipus de lletra\">Menú contextual - Caràcter - Posició del tipus de lletra</link>"
+msgid "<link href=\"text/shared/01/05020500.xhp\">Context menu - Character - Font Position</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\">Menú contextual - Caràcter - Posició del tipus de lletra</link>"
#. 2wVQM
#: table_cellmerge.xhp
@@ -12212,13 +12221,13 @@ msgctxt ""
msgid "<bookmark_value>merge/merging cells</bookmark_value> <bookmark_value>unmerge/unmerging cells</bookmark_value> <bookmark_value>split/splitting cells</bookmark_value>"
msgstr ""
-#. BAqR3
+#. T5RbK
#: table_cellmerge.xhp
msgctxt ""
"table_cellmerge.xhp\n"
"hd_id8005005\n"
"help.text"
-msgid "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\" name=\"Merging and Unmerging Cells\">Merge and Unmerge Cells</link></variable>"
+msgid "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\">Merge and Unmerge Cells</link></variable>"
msgstr ""
#. Hht67
@@ -12392,14 +12401,14 @@ msgctxt ""
msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
msgstr "<bookmark_value>taules; transposició</bookmark_value><bookmark_value>transposició de taules</bookmark_value><bookmark_value>inversió de taules</bookmark_value><bookmark_value>intercanvi de taules</bookmark_value><bookmark_value>columnes; intercanvi amb files</bookmark_value><bookmark_value>files; intercanvi amb columnes</bookmark_value><bookmark_value>taules; gir</bookmark_value><bookmark_value>gir; taules</bookmark_value>"
-#. h6iqG
+#. TZEJK
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
"hd_id3154346\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=\"Gir de taules (transposició)\">Gir de taules (transposició)</link></variable>"
+msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\">Rotating Tables (Transposing)</link></variable>"
+msgstr "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\">Gir de taules (transposició)</link></variable>"
#. fzyoE
#: table_rotate.xhp
@@ -12464,14 +12473,14 @@ msgctxt ""
msgid "If you now click OK the columns and rows are transposed."
msgstr "Si ara feu clic a D'acord, les columnes i les files es transposaran."
-#. ZerMW
+#. 2XdS2
#: table_rotate.xhp
msgctxt ""
"table_rotate.xhp\n"
"par_id3146969\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=\"Enganxament especial\">Enganxament especial</link>"
+msgid "<link href=\"text/shared/01/02070000.xhp\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\">Enganxament especial</link>"
#. qWjQg
#: table_view.xhp
@@ -12491,14 +12500,14 @@ msgctxt ""
msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
msgstr "<bookmark_value>capçaleres de les files; amagar</bookmark_value><bookmark_value>capçaleres de les columnes; amagar</bookmark_value><bookmark_value>taules; visualitzacions</bookmark_value><bookmark_value>visualitzacions; taules</bookmark_value><bookmark_value>graelles;amagar línies als fulls</bookmark_value><bookmark_value>amagar;capçaleres/línies de la graella</bookmark_value><bookmark_value>canvi;visualitzacions de la taula</bookmark_value>"
-#. AuiXd
+#. t4Dpn
#: table_view.xhp
msgctxt ""
"table_view.xhp\n"
"hd_id3147304\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=\"Canvi de les visualitzacions de la taula\">Canvi de les visualitzacions de la taula</link></variable>"
+msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\">Changing Table Views</link></variable>"
+msgstr "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\">Canvi de les visualitzacions de la taula</link></variable>"
#. Fnu8g
#: table_view.xhp
@@ -12554,14 +12563,14 @@ msgctxt ""
msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
msgstr "<bookmark_value>nombres;introducció com a text</bookmark_value><bookmark_value>formats de text; per a nombres</bookmark_value><bookmark_value>formats; nombres com a text</bookmark_value><bookmark_value>formats de la cel·la; text/nombres</bookmark_value><bookmark_value>formatació;nombres com a text</bookmark_value>"
-#. YjSEt
+#. Azs4A
#: text_numbers.xhp
msgctxt ""
"text_numbers.xhp\n"
"hd_id3145068\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=\"Formatació de nombres com a text\">Formatació de nombres com a text</link></variable>"
+msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\">Formatting Numbers as Text</link></variable>"
+msgstr "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\">Formatació de nombres com a text</link></variable>"
#. JPD2o
#: text_numbers.xhp
@@ -12590,14 +12599,14 @@ msgctxt ""
msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
msgstr "Si decidiu introduir un nombre directament com a text, escriviu primer un apòstrof ('). Per exemple, per als anys als encapçalaments de columna podeu introduir '1999, '2000 i '2001. L'apòstrof no es veurà a la cel·la, només indica que l'entrada s'ha de reconèixer com a text. Això és útil si, per exemple, introduïu un número de telèfon o un codi postal que comença amb un zero (0), perquè els zeros (0) situats al principi de les seqüències de dígits se suprimeixen en els formats numèrics normals."
-#. hnEQ6
+#. q4W79
#: text_numbers.xhp
msgctxt ""
"text_numbers.xhp\n"
"par_id3156284\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=\"Format ▸ Cel·les ▸ Nombres\">Format ▸ Cel·les ▸ Nombres</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Format - Cells - Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Format ▸ Cel·les ▸ Nombres</link>"
#. MZp8B
#: text_rotate.xhp
@@ -12617,14 +12626,14 @@ msgctxt ""
msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
msgstr "<bookmark_value>cel·les; gir del text</bookmark_value><bookmark_value>gir; text de les cel·les</bookmark_value><bookmark_value>text de les cel·les; escriptura vertical</bookmark_value>"
-#. btUfR
+#. K94Go
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
"hd_id3151112\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=\"Gir del text\">Gir del text</link></variable>"
+msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\">Rotating Text</link></variable>"
+msgstr "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\">Gir del text</link></variable>"
#. DXQsT
#: text_rotate.xhp
@@ -12662,23 +12671,23 @@ msgctxt ""
msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
msgstr "A l'àrea <emph>Orientació del text</emph> utilitzeu el ratolí per seleccionar amb la roda de la previsualització la direcció en què s'ha de girar el text. Feu clic a <emph>D'acord</emph>."
-#. xZi7M
+#. KDYBL
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
"par_id3148456\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=\"Format ▸ Cel·les\">Format ▸ Cel·les</link>"
+msgid "<link href=\"text/scalc/01/05020000.xhp\">Format - Cells</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\">Format ▸ Cel·les</link>"
-#. gVdDT
+#. Uvcyj
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
"par_id3154944\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=\"Format ▸ Cel·les ▸ Alineació\">Format ▸ Cel·les ▸ Alineació</link>"
+msgid "<link href=\"text/shared/01/05340300.xhp\">Format - Cells - Alignment</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\">Format ▸ Cel·les ▸ Alineació</link>"
#. ExCrt
#: text_wrap.xhp
@@ -12698,14 +12707,14 @@ msgctxt ""
msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
msgstr "<bookmark_value>text a les cel·les; línies múltiples</bookmark_value><bookmark_value>cel·les; salts de text</bookmark_value><bookmark_value>salts a les cel·les</bookmark_value><bookmark_value>text de línies múltiples a les cel·les</bookmark_value>"
-#. L6xkB
+#. 6siFB
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
"hd_id3154346\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=\"Escriptura de text en línies múltiples\">Escriptura de text en línies múltiples</link></variable>"
+msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\">Writing Multi-line Text</link></variable>"
+msgstr "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\">Escriptura de text en línies múltiples</link></variable>"
#. WGo9x
#: text_wrap.xhp
@@ -12752,14 +12761,14 @@ msgctxt ""
msgid "For automatic wrapping in XLS files, the rows in question should be set to Optimal Height."
msgstr ""
-#. pED9m
+#. EtDAo
#: text_wrap.xhp
msgctxt ""
"text_wrap.xhp\n"
"par_id3145799\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=\"Format ▸ Cel·les\">Format ▸ Cel·les</link>"
+msgid "<link href=\"text/scalc/01/05020000.xhp\">Format - Cells</link>"
+msgstr "<link href=\"text/scalc/01/05020000.xhp\">Format ▸ Cel·les</link>"
#. rAuLt
#: userdefined_function.xhp
@@ -12779,14 +12788,14 @@ msgctxt ""
msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
msgstr "<bookmark_value>funcions; definides per l'usuari</bookmark_value><bookmark_value>funcions definides per l'usuari</bookmark_value><bookmark_value>IDE del Basic per a funcions definides per l'usuari</bookmark_value><bookmark_value>IDE; IDE del Basic</bookmark_value><bookmark_value>programació;funcions</bookmark_value>"
-#. ABAEY
+#. rYvdz
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
"hd_id3155411\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=\"Funcions definides per l'usuari\">Funcions definides per l'usuari</link></variable>"
+msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\">User-Defined Functions</link></variable>"
+msgstr "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\">Funcions definides per l'usuari</link></variable>"
#. 4PUhf
#: userdefined_function.xhp
@@ -12806,14 +12815,14 @@ msgctxt ""
msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
msgstr "Podeu definir les vostres pròpies funcions utilitzant l'IDE del Basic. Este mètode requereix uns coneixements bàsics de programació."
-#. F6npk
+#. egzia
#: userdefined_function.xhp
msgctxt ""
"userdefined_function.xhp\n"
"par_id3153768\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 "Podeu programar funcions com a <link href=\"text/scalc/01/04060111.xhp\" name=\"complements\">complements</link>. Este mètode requereix uns coneixements bàsics de programació."
+msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\">add-ins</link>. This method requires an advanced knowledge of programming."
+msgstr "Podeu programar funcions com a <link href=\"text/scalc/01/04060111.xhp\">complements</link>. Este mètode requereix uns coneixements bàsics de programació."
#. H2JBv
#: userdefined_function.xhp
@@ -13031,14 +13040,14 @@ msgctxt ""
msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
msgstr "<bookmark_value>valors; limitació a l'entrada</bookmark_value><bookmark_value>límits; especificació de límits dels valors a l'entrada</bookmark_value><bookmark_value>continguts permesos a les cel·les</bookmark_value><bookmark_value>validesa de les dades</bookmark_value><bookmark_value>validesa</bookmark_value><bookmark_value>cel·les; validesa</bookmark_value><bookmark_value>missatges d'error; definició per a una entrada incorrecta</bookmark_value><bookmark_value>accions en cas d'una entrada incorrecta</bookmark_value><bookmark_value>consells d'ajuda; definició de text per a l'entrada d'una cel·la</bookmark_value><bookmark_value>comentaris;text d'ajuda per a les cel·les</bookmark_value><bookmark_value>cel·les; definició d'ajuda a l'entrada</bookmark_value><bookmark_value>macros; execució quan l'entrada és incorrecta</bookmark_value><bookmark_value>dades; verificació de la validesa</bookmark_value>"
-#. mNVB9
+#. GAC8Q
#: validity.xhp
msgctxt ""
"validity.xhp\n"
"hd_id3156442\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=\"Validesa del contingut de les cel·les\">Validesa del contingut de les cel·les</link></variable>"
+msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\">Validity of Cell Contents</link></variable>"
+msgstr "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\">Validesa del contingut de les cel·les</link></variable>"
#. XgWFZ
#: validity.xhp
@@ -13058,14 +13067,14 @@ msgctxt ""
msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
msgstr "La regla de validesa s'activa quan s'introdueix un valor nou. Si ja s'ha introduït un valor no vàlid a la cel·la, o si introduïu un valor a la cel·la amb la funció d'arrossegar i deixar anar o bé copiant i enganxant, la regla de validesa no tindrà efecte."
-#. uVPcC
+#. N7bP8
#: 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 "Podeu triar <emph>Eines - Detectiu</emph> en qualsevol moment i triar l'orde <link href=\"text/scalc/01/06030800.xhp\" name=\"Marca les dades no vàlides\"><emph>Marca les dades no vàlides</emph></link> per visualitzar les cel·les que contenen valors no vàlids."
+msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
+msgstr "Podeu triar <emph>Eines - Detectiu</emph> en qualsevol moment i triar l'orde <link href=\"text/scalc/01/06030800.xhp\"><emph>Marca les dades no vàlides</emph></link> per visualitzar les cel·les que contenen valors no vàlids."
#. vExqw
#: validity.xhp
@@ -13112,14 +13121,14 @@ msgctxt ""
msgid "In the <emph>Allow</emph> field, select an option."
msgstr "Seleccioneu una opció en el camp <emph>Permet</emph>."
-#. AN7uL
+#. xDJjD
#: validity.xhp
msgctxt ""
"validity.xhp\n"
"par_id3153011\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 "Si seleccioneu \"Nombres enters\", no es permetran valors com ara \"12,5\". Si trieu \"Data\" es permetrà que la informació de dates estiga en format local i també en forma de <link href=\"text/sbasic/shared/03030101.xhp\" name=\"data en sèrie\">data en sèrie</link>. De manera paregut, la condició \"Hora\" permet valors horaris com ara \"12:00\" o números d'hora en sèrie. La \"Longitud del text\" estableix que es permet que les cel·les continguen només 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\">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 "Si seleccioneu \"Nombres enters\", no es permetran valors com ara \"12,5\". Si trieu \"Data\" es permetrà que la informació de dates estiga en format local i també en forma de <link href=\"text/sbasic/shared/03030101.xhp\">data en sèrie</link>. De manera paregut, la condició \"Hora\" permet valors horaris com ara \"12:00\" o números d'hora en sèrie. La \"Longitud del text\" estableix que es permet que les cel·les continguen només text."
#. qGjDb
#: validity.xhp
@@ -13193,14 +13202,14 @@ msgctxt ""
msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
msgstr "Si seleccioneu \"Macro\" i després utilitzeu el botó <emph>Navega</emph> podeu indicar que s'execute una macro determinada en cas que es produïsca un error."
-#. xoScW
+#. eiEtj
#: validity.xhp
msgctxt ""
"validity.xhp\n"
"par_id3149011\n"
"help.text"
-msgid "To display the error message, select <link href=\"text/scalc/01/12120300.xhp\" name=\"erroralert\">Show error message when invalid values are entered</link>."
-msgstr "Per a mostrar el missatge d'error, seleccioneu <link href=\"text/scalc/01/12120300.xhp\" name=\"erroralert\">Mostra un missatge d'error en introduir valors no vàlids</link>."
+msgid "To display the error message, select <link href=\"text/scalc/01/12120300.xhp\">Show error message when invalid values are entered</link>."
+msgstr "Per a mostrar el missatge d'error, seleccioneu <link href=\"text/scalc/01/12120300.xhp\">Mostra un missatge d'error en introduir valors no vàlids</link>."
#. VTfnE
#: validity.xhp
@@ -13211,14 +13220,14 @@ msgctxt ""
msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
msgstr "Després de canviar l'acció per a una cel·la a la pestanya <emph>Avís d'error</emph> i tancar el diàleg fent clic a D'acord, haureu de seleccionar una altra cel·la abans que es produïsca el canvi."
-#. oQYeC
+#. PpEfP
#: validity.xhp
msgctxt ""
"validity.xhp\n"
"par_id3154805\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=\"Dades - Validesa\">Dades - Validesa</link>"
+msgid "<link href=\"text/scalc/01/12120000.xhp\">Data - Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\">Dades - Validesa</link>"
#. cEdPu
#: value_with_name.xhp
@@ -13238,14 +13247,14 @@ msgctxt ""
msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
msgstr "<bookmark_value>cel·les; definició de noms</bookmark_value><bookmark_value>noms; definició per a les cel·les</bookmark_value><bookmark_value>valors; definició de noms</bookmark_value><bookmark_value>definició de constants </bookmark_value><bookmark_value>variables; definició de noms</bookmark_value><bookmark_value>intervals de cel·les; definició de noms</bookmark_value><bookmark_value>definició;noms per a intervals de cel·les</bookmark_value><bookmark_value>fórmules; definició de noms</bookmark_value><bookmark_value>assignació d'adreces; mitjançant noms definits</bookmark_value><bookmark_value>noms de cel·les; definició/assignació d'adreces</bookmark_value><bookmark_value>referències; mitjançant noms definits</bookmark_value><bookmark_value>noms de cel·la permesos</bookmark_value><bookmark_value>reanomenament;cel·les</bookmark_value>"
-#. 7VrgE
+#. vT4C3
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
"hd_id3147434\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=\"Denominació de cel·les\">Denominació de cel·les</link></variable>"
+msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\">Naming Cells</link></variable>"
+msgstr "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\">Denominació de cel·les</link></variable>"
#. EyNmi
#: value_with_name.xhp
@@ -13400,14 +13409,14 @@ msgctxt ""
msgid "If more than one name starts with the same characters, you can scroll forward through all the names using the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> <keycode>+ Tab keys</keycode> and backward using the <keycode>Shift +</keycode> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> <keycode>+ Tab</keycode> keys."
msgstr ""
-#. VDbbB
+#. j7cYG
#: value_with_name.xhp
msgctxt ""
"value_with_name.xhp\n"
"par_id3153711\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Full ▸ Intervals i expressions amb nom ▸ Defineix\">Full ▸ Intervals i expressions amb nom ▸ Defineix</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\">Full ▸ Intervals i expressions amb nom ▸ Defineix</link>"
#. tT8Ku
#: webquery.xhp
@@ -13427,14 +13436,14 @@ msgctxt ""
msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
msgstr "<bookmark_value>consulta de pàgina web HTML</bookmark_value><bookmark_value>intervals; inserció en taules</bookmark_value><bookmark_value>dades externes; inserció</bookmark_value><bookmark_value>taules; inserció de dades externes</bookmark_value><bookmark_value>pàgines web; importació de dades</bookmark_value><bookmark_value>filtre Consulta de pàgina web</bookmark_value><bookmark_value>inserció; dades externes</bookmark_value><bookmark_value>fonts de dades; dades externes</bookmark_value>"
-#. BbQqD
+#. LzMwA
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
"hd_id3125863\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=\"Inserció de dades externes a una taula (consulta de la pàgina web)\">Inserció de dades externes a una taula (consulta de la pàgina web)</link></variable>"
+msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\">Inserting External Data in Table (WebQuery)</link></variable>"
+msgstr "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\">Inserció de dades externes a una taula (consulta de la pàgina web)</link></variable>"
#. Uf8QW
#: webquery.xhp
@@ -13625,14 +13634,14 @@ msgctxt ""
msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
msgstr "Obriu <emph>Edita ▸ Enllaços</emph>. Ací podreu editar l'enllaç a les dades externes."
-#. mXauD
+#. xJkAV
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
"par_id3154650\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=\"Diàleg de dades externes\">Diàleg de dades externes</link>"
+msgid "<link href=\"text/scalc/01/04090000.xhp\">External data dialog</link>"
+msgstr "<link href=\"text/scalc/01/04090000.xhp\">Diàleg de dades externes</link>"
#. GnXq4
#: wildcards.xhp
@@ -13652,13 +13661,13 @@ msgctxt ""
msgid "<bookmark_value>wildcards in formulas</bookmark_value> <bookmark_value>wildcards;examples</bookmark_value>"
msgstr ""
-#. 98C5v
+#. ynEWi
#: wildcards.xhp
msgctxt ""
"wildcards.xhp\n"
"hd_id941629155075179\n"
"help.text"
-msgid "<variable id=\"wildcards_h1\"><link href=\"text/scalc/guide/wildcards.xhp\" name=\"wildcards_link\">Using Wildcards in Formulas</link></variable>"
+msgid "<variable id=\"wildcards_h1\"><link href=\"text/scalc/guide/wildcards.xhp\">Using Wildcards in Formulas</link></variable>"
msgstr ""
#. yqMKw
@@ -13922,14 +13931,14 @@ msgctxt ""
msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
msgstr "<bookmark_value>anys; 2 dígits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
-#. xroNR
+#. DwNwj
#: year2000.xhp
msgctxt ""
"year2000.xhp\n"
"hd_id3150439\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=\"Anys 19xx/20xx\">Anys 19xx/20xx</link></variable>"
+msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\">19xx/20xx Years</link></variable>"
+msgstr "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\">Anys 19xx/20xx</link></variable>"
#. DeEcT
#: year2000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/schart.po b/source/ca-valencia/helpcontent2/source/text/schart.po
index fb266b036dd..80db7783602 100644
--- a/source/ca-valencia/helpcontent2/source/text/schart.po
+++ b/source/ca-valencia/helpcontent2/source/text/schart.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:46+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textschart/ca_VALENCIA/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
"X-POOTLE-MTIME: 1525795003.000000\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>charts; overview</bookmark_value> <bookmark_value>HowTos for charts</bookmark_value>"
msgstr "<bookmark_value>diagrames; descripció general</bookmark_value> <bookmark_value>manuals per a diagrames</bookmark_value>"
-#. MCTMA
+#. XfYE9
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"hd_id3148664\n"
"help.text"
-msgid "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name=\"Charts in $[officename]\">Using Charts in %PRODUCTNAME</link></variable>"
-msgstr "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\" name=\"Diagrames del $[officename]\">Ús de diagrames al %PRODUCTNAME</link></variable>"
+msgid "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\">Using Charts in %PRODUCTNAME</link></variable>"
+msgstr "<variable id=\"chart_main\"><link href=\"text/schart/main0000.xhp\">Ús de diagrames al %PRODUCTNAME</link></variable>"
#. MKzCA
#: main0000.xhp
@@ -638,14 +638,14 @@ msgctxt ""
msgid "Formatting Bar"
msgstr "Barra de formatació"
-#. WicyB
+#. 4erwk
#: 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=\"Barra de formatació\">Barra de formatació</link>"
+msgid "<link href=\"text/schart/main0202.xhp\">Formatting Bar</link>"
+msgstr "<link href=\"text/schart/main0202.xhp\">Barra de formatació</link>"
#. bGXHw
#: main0202.xhp
@@ -818,14 +818,14 @@ msgctxt ""
msgid "$[officename] Chart Features"
msgstr "Característiques de diagrama del $[officename]"
-#. dyCxy
+#. JxCQf
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"hd_id3150543\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=\"Funcions de diagrama del $[officename]\">Funcions de diagrama del $[officename]</link>"
+msgid "<link href=\"text/schart/main0503.xhp\">$[officename] Chart Features</link>"
+msgstr "<link href=\"text/schart/main0503.xhp\">Funcions de diagrama del $[officename]</link>"
#. DR7Ma
#: main0503.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/schart/01.po b/source/ca-valencia/helpcontent2/source/text/schart/01.po
index a58a0846131..afe1fb06c45 100644
--- a/source/ca-valencia/helpcontent2/source/text/schart/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/schart/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-10-22 14:13+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textschart01/ca_VALENCIA/>\n"
@@ -26,14 +26,14 @@ msgctxt ""
msgid "Data Table"
msgstr "Taula de dades"
-#. uFKwH
+#. Pf9FP
#: 03010000.xhp
msgctxt ""
"03010000.xhp\n"
"hd_id3150869\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=\"Taula de dades\">Taula de dades</link>"
+msgid "<link href=\"text/schart/01/03010000.xhp\">Data Table</link>"
+msgstr "<link href=\"text/schart/01/03010000.xhp\">Taula de dades</link>"
#. EvUD4
#: 03010000.xhp
@@ -674,14 +674,14 @@ msgctxt ""
msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
msgstr "<bookmark_value>etiquetes de dades en diagrames</bookmark_value><bookmark_value>etiquetes; per a diagrames</bookmark_value><bookmark_value>diagrames; etiquetes de dades</bookmark_value><bookmark_value>valors de les dades als diagrames</bookmark_value><bookmark_value>llegendes dels diagrames; visualització d'icones amb etiquetes</bookmark_value>"
-#. jWyvv
+#. UKRDA
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"hd_id3150275\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=\"Etiquetes de dades\">Etiquetes de dades</link></variable>"
+msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\">Data Labels</link></variable>"
+msgstr "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\">Etiquetes de dades</link></variable>"
#. C3Fy5
#: 04030000.xhp
@@ -1061,14 +1061,14 @@ msgctxt ""
msgid "X/Y Error Bars"
msgstr "Barres d'error a les X o Y"
-#. 3gFip
+#. o7uyC
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
"hd_id3147428\n"
"help.text"
-msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">X/Y Error Bars</link>"
-msgstr "<link href=\"text/schart/01/04050000.xhp\" name=\"Barres d'error a les Y\">Barres d'error a les X o Y</link>"
+msgid "<link href=\"text/schart/01/04050000.xhp\">X/Y Error Bars</link>"
+msgstr "<link href=\"text/schart/01/04050000.xhp\">Barres d'error a les X o Y</link>"
#. VufWr
#: 04050000.xhp
@@ -2231,14 +2231,14 @@ msgctxt ""
msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
msgstr "<bookmark_value>alineació; diagrames 2D</bookmark_value><bookmark_value>diagrames; alineació</bookmark_value><bookmark_value>diagrames de sectors;opcions</bookmark_value>"
-#. VZy93
+#. wGM8h
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3149400\n"
"help.text"
-msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/schart/01/04060000.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/schart/01/04060000.xhp\">Options</link>"
+msgstr "<link href=\"text/schart/01/04060000.xhp\">Opcions</link>"
#. FFqBA
#: 04060000.xhp
@@ -2816,77 +2816,77 @@ msgctxt ""
msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
msgstr "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formata l'objecte seleccionat.</ahelp></variable> Segons l'objecte seleccionat, l'orde obrirà una sèrie de diàlegs que també podreu obrir triant les ordes següents des del menú <emph>Format</emph>:"
-#. vHgCk
+#. vxgDS
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3153418\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=\"Pla lateral del diagrama\">Pla lateral del diagrama</link>"
+msgid "<link href=\"text/schart/01/05060000.xhp\">Chart Wall</link>"
+msgstr "<link href=\"text/schart/01/05060000.xhp\">Pla lateral del diagrama</link>"
-#. QqxBP
+#. Jwpdd
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3155766\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=\"Àrea del diagrama\">Àrea del diagrama</link>"
+msgid "<link href=\"text/schart/01/05080000.xhp\">Chart Area</link>"
+msgstr "<link href=\"text/schart/01/05080000.xhp\">Àrea del diagrama</link>"
-#. 2V4zT
+#. C2ohG
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3154255\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=\"Base del diagrama\">Base del diagrama</link>"
+msgid "<link href=\"text/schart/01/05070000.xhp\">Chart Floor</link>"
+msgstr "<link href=\"text/schart/01/05070000.xhp\">Base del diagrama</link>"
-#. bAPbZ
+#. 5jmdC
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3146313\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ítol\">Títol</link>"
+msgid "<link href=\"text/schart/01/05020100.xhp\">Title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\">Títol</link>"
-#. HDCGU
+#. h5EFN
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3150297\n"
"help.text"
-msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
-msgstr "<link href=\"text/schart/01/05030000.xhp\" name=\"Llegenda\">Llegenda</link>"
+msgid "<link href=\"text/schart/01/05030000.xhp\">Legend</link>"
+msgstr "<link href=\"text/schart/01/05030000.xhp\">Llegenda</link>"
-#. AFjzr
+#. xb9VA
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3143219\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=\"Eix X\">Eix X</link>"
+msgid "<link href=\"text/schart/01/05040100.xhp\">X Axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\">Eix X</link>"
-#. PBGAy
+#. Eoz2Y
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3150207\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=\"Eix Y\">Eix Y</link>"
+msgid "<link href=\"text/schart/01/05040200.xhp\">Y Axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\">Eix Y</link>"
-#. fda89
+#. 7eFxE
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3166432\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
-msgstr "<link href=\"text/schart/01/05050100.xhp\" name=\"Graella\">Graella</link>"
+msgid "<link href=\"text/schart/01/05050100.xhp\">Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\">Graella</link>"
#. J6GAJ
#: 05010100.xhp
@@ -2897,14 +2897,14 @@ msgctxt ""
msgid "Data Point"
msgstr "Punt de dades"
-#. 23fqY
+#. bAmek
#: 05010100.xhp
msgctxt ""
"05010100.xhp\n"
"hd_id3153768\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=\"Punt de dades\">Punt de dades</link>"
+msgid "<link href=\"text/schart/01/05010100.xhp\">Data Point</link>"
+msgstr "<link href=\"text/schart/01/05010100.xhp\">Punt de dades</link>"
#. GP7Gq
#: 05010100.xhp
@@ -2933,14 +2933,14 @@ msgctxt ""
msgid "Data Series"
msgstr "Sèries de dades"
-#. XqZBr
+#. frn5K
#: 05010200.xhp
msgctxt ""
"05010200.xhp\n"
"hd_id3150449\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=\"Sèries de dades\">Sèries de dades</link>"
+msgid "<link href=\"text/schart/01/05010200.xhp\">Data Series</link>"
+msgstr "<link href=\"text/schart/01/05010200.xhp\">Sèries de dades</link>"
#. gW2W2
#: 05010200.xhp
@@ -2960,14 +2960,14 @@ msgctxt ""
msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
msgstr "Qualsevol canvi que realitzeu ací afectarà la sèrie de dades sencera. Per exemple, si canvieu el color, tots els elements que pertanyin a la sèrie de dades canviaran de color."
-#. ncg3c
+#. V76Fn
#: 05010200.xhp
msgctxt ""
"05010200.xhp\n"
"hd_id3146916\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=\"Barres d'error a les Y\">Barres d'error a les Y</link>"
+msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars</link>"
+msgstr "<link href=\"text/schart/01/04050000.xhp\">Barres d'error a les Y</link>"
#. VsfnB
#: 05020000.xhp
@@ -2987,14 +2987,14 @@ msgctxt ""
msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
msgstr "<bookmark_value>títols; formatació de diagrames</bookmark_value><bookmark_value>formatació; títols de diagrames</bookmark_value>"
-#. Jfh4e
+#. oZeTX
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3150791\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ítol\">Títol</link>"
+msgid "<link href=\"text/schart/01/05020000.xhp\">Title</link>"
+msgstr "<link href=\"text/schart/01/05020000.xhp\">Títol</link>"
#. pj2hY
#: 05020000.xhp
@@ -3005,59 +3005,59 @@ msgctxt ""
msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
msgstr "L'orde de menú <emph>Títol</emph> obri un submenú que vos permet editar les propietats dels títols del diagrama."
-#. rXXck
+#. dhEAr
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3155414\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ítol principal\">Títol principal</link>"
+msgid "<link href=\"text/schart/01/05020100.xhp\">Main title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\">Títol principal</link>"
-#. SiCVe
+#. JETPX
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3156441\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
-msgstr "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtítol\">Subtítol</link>"
+msgid "<link href=\"text/schart/01/05020100.xhp\">Subtitle</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\">Subtítol</link>"
-#. LiMC5
+#. 4ACfQ
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3151073\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ítol de l'eix X\">Títol de l'eix X</link>"
+msgid "<link href=\"text/schart/01/05020100.xhp\">X-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\">Títol de l'eix X</link>"
-#. fZFZC
+#. 7aABb
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3154732\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ítol de l'eix Y\">Títol de l'eix Y</link>"
+msgid "<link href=\"text/schart/01/05020200.xhp\">Y-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020200.xhp\">Títol de l'eix Y</link>"
-#. dMUSA
+#. 2DHTT
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3154017\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ítol de l'eix Z\">Títol de l'eix Z</link>"
+msgid "<link href=\"text/schart/01/05020100.xhp\">Z-axis title</link>"
+msgstr "<link href=\"text/schart/01/05020100.xhp\">Títol de l'eix Z</link>"
-#. L4bi3
+#. GYDDh
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3153711\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=\"Tots els títols\">Tots els títols</link>"
+msgid "<link href=\"text/schart/01/05020200.xhp\">All titles</link>"
+msgstr "<link href=\"text/schart/01/05020200.xhp\">Tots els títols</link>"
#. Mr6ew
#: 05020100.xhp
@@ -3113,14 +3113,14 @@ msgctxt ""
msgid "<bookmark_value>aligning;titles in charts</bookmark_value><bookmark_value>titles;alignment (charts)</bookmark_value>"
msgstr "<bookmark_value>alineació;títols dels diagrames</bookmark_value><bookmark_value>títols; alineació (diagrames)</bookmark_value>"
-#. krg6b
+#. xxfY5
#: 05020101.xhp
msgctxt ""
"05020101.xhp\n"
"hd_id3150793\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020101.xhp\" name=\"Alignment\">Alignment</link>"
-msgstr "<link href=\"text/schart/01/05020101.xhp\" name=\"Alineació\">Alineació</link>"
+msgid "<link href=\"text/schart/01/05020101.xhp\">Alignment</link>"
+msgstr "<link href=\"text/schart/01/05020101.xhp\">Alineació</link>"
#. AAgmZ
#: 05020101.xhp
@@ -3185,14 +3185,14 @@ msgctxt ""
msgid "Alignment"
msgstr "Alineació"
-#. yFppQ
+#. AES4P
#: 05020201.xhp
msgctxt ""
"05020201.xhp\n"
"hd_id3149656\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020201.xhp\" name=\"Alignment\">Alignment</link>"
-msgstr "<link href=\"text/schart/01/05020201.xhp\" name=\"Alineació\">Alineació</link>"
+msgid "<link href=\"text/schart/01/05020201.xhp\">Alignment</link>"
+msgstr "<link href=\"text/schart/01/05020201.xhp\">Alineació</link>"
#. MoFiE
#: 05020201.xhp
@@ -3527,14 +3527,14 @@ msgctxt ""
msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defineix els atributs de vora, àrea i caràcter d'una llegenda.</ahelp></variable>"
-#. 73CU8
+#. w6aAv
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
"hd_id3147344\n"
"help.text"
-msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
-msgstr "<link href=\"text/schart/01/04020000.xhp\" name=\"Mostra\">Mostra</link>"
+msgid "<link href=\"text/schart/01/04020000.xhp\">Display</link>"
+msgstr "<link href=\"text/schart/01/04020000.xhp\">Mostra</link>"
#. 5GZjq
#: 05040000.xhp
@@ -3545,14 +3545,14 @@ msgctxt ""
msgid "Axis"
msgstr "Eix"
-#. FxB4P
+#. xoHGL
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3149456\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
-msgstr "<link href=\"text/schart/01/05040000.xhp\" name=\"Eix\">Eix</link>"
+msgid "<link href=\"text/schart/01/05040000.xhp\">Axis</link>"
+msgstr "<link href=\"text/schart/01/05040000.xhp\">Eix</link>"
#. xasRG
#: 05040000.xhp
@@ -3572,32 +3572,32 @@ msgctxt ""
msgid "The tabs in the dialogs depend on the chart type selected."
msgstr "Les pestanyes dels diàlegs depenen del tipus de diagrama seleccionat."
-#. d7D6P
+#. mXUiF
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3153729\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=\"Eix X\">Eix X</link>"
+msgid "<link href=\"text/schart/01/05040100.xhp\">X axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\">Eix X</link>"
-#. bAHPT
+#. Zw52q
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3147394\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=\"Eix Y\">Eix Y</link>"
+msgid "<link href=\"text/schart/01/05040200.xhp\">Y axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\">Eix Y</link>"
-#. 4To7Z
+#. LLGG5
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3153160\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=\"Eix X secundari\">Eix X secundari</link>"
+msgid "<link href=\"text/schart/01/05040100.xhp\">Secondary X Axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\">Eix X secundari</link>"
#. Xv7dg
#: 05040000.xhp
@@ -3608,14 +3608,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:DiagramAxisA\">Obri un diàleg que vos permet editar les propietats de l'eix X secundari. Per inserir un eix X secundari, trieu <emph>Insereix - Eixos</emph> i seleccioneu <emph>Eix X</emph>.</ahelp>"
-#. 27jDa
+#. Kmpne
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3145640\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=\"Eix Y secundari\">Eix Y secundari</link>"
+msgid "<link href=\"text/schart/01/05040200.xhp\">Secondary Y Axis</link>"
+msgstr "<link href=\"text/schart/01/05040200.xhp\">Eix Y secundari</link>"
#. DqEpJ
#: 05040000.xhp
@@ -3626,23 +3626,23 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
msgstr "<ahelp hid=\".uno:DiagramAxisB\">Obri un diàleg que vos permet editar les propietats de l'eix Y secundari. Per inserir un eix Y secundari, trieu <emph>Insereix - Eixos</emph> i seleccioneu <emph>Eix Y</emph>.</ahelp>"
-#. WZh2Z
+#. o5eER
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3145228\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=\"Eix Z\">Eix Z</link>"
+msgid "<link href=\"text/schart/01/05040100.xhp\">Z axis</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\">Eix Z</link>"
-#. 7WMzM
+#. EF2GB
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3147345\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=\"Tots els eixos\">Tots els eixos</link>"
+msgid "<link href=\"text/schart/01/05040100.xhp\">All axes</link>"
+msgstr "<link href=\"text/schart/01/05040100.xhp\">Tots els eixos</link>"
#. baran
#: 05040100.xhp
@@ -3680,14 +3680,14 @@ msgctxt ""
msgid "<variable id=\"achsen\"><ahelp hid=\".\">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=\".\">Obri un diàleg que vos permet editar les propietats de l'eix seleccionat.</ahelp></variable> El nom del diàleg varia segons l'eix seleccionat."
-#. k52jm
+#. KmBV5
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"par_id3149667\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 "L'<link href=\"text/schart/01/05040200.xhp\" name=\"eix Y\">eix Y</link> té un diàleg destacat. Per als diagrames X-Y, el diagrama de l'eix X també apareix destacat a la pestanya <link href=\"text/schart/01/05040201.xhp\" name=\"Redimensionament\"><emph>Redimensionament</emph></link>."
+msgid "The <link href=\"text/schart/01/05040200.xhp\">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\"><emph>Scaling</emph></link> tab."
+msgstr "L'<link href=\"text/schart/01/05040200.xhp\">eix Y</link> té un diàleg destacat. Per als diagrames X-Y, el diagrama de l'eix X també apareix destacat a la pestanya <link href=\"text/schart/01/05040201.xhp\"><emph>Redimensionament</emph></link>."
#. 5KDFE
#: 05040100.xhp
@@ -3752,14 +3752,14 @@ msgctxt ""
msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
msgstr "<bookmark_value>redimensionament; eixos</bookmark_value><bookmark_value>redimensionament logarítmic en eixos</bookmark_value><bookmark_value>diagrames;redimensionament d'eixos</bookmark_value><bookmark_value>eixos X;redimensionament</bookmark_value><bookmark_value>eixos Y; redimensionament</bookmark_value>"
-#. kwALA
+#. jwMAw
#: 05040201.xhp
msgctxt ""
"05040201.xhp\n"
"hd_id3150868\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
-msgstr "<link href=\"text/schart/01/05040201.xhp\" name=\"Redimensionament\">Escala</link>"
+msgid "<link href=\"text/schart/01/05040201.xhp\">Scale</link>"
+msgstr "<link href=\"text/schart/01/05040201.xhp\">Escala</link>"
#. ZGujx
#: 05040201.xhp
@@ -4040,14 +4040,14 @@ msgctxt ""
msgid "<bookmark_value>positioning; axes</bookmark_value><bookmark_value>charts;positioning axes</bookmark_value><bookmark_value>X axes;positioning</bookmark_value><bookmark_value>Y axes;positioning</bookmark_value><bookmark_value>axes;interval marks</bookmark_value>"
msgstr "<bookmark_value>posició; eixos</bookmark_value><bookmark_value>diagrames;posició d'eixos</bookmark_value><bookmark_value>eixos X;posició</bookmark_value><bookmark_value>eixos Y;posició</bookmark_value><bookmark_value>eixos;marques d'interval</bookmark_value>"
-#. JEfPK
+#. qxi6Y
#: 05040202.xhp
msgctxt ""
"05040202.xhp\n"
"hd_id3150868\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040202.xhp\" name=\"positioning\">Positioning</link>"
-msgstr "<link href=\"text/schart/01/05040202.xhp\" name=\"Posició\">Posició</link>"
+msgid "<link href=\"text/schart/01/05040202.xhp\">Positioning</link>"
+msgstr "<link href=\"text/schart/01/05040202.xhp\">Posició</link>"
#. sHVmL
#: 05040202.xhp
@@ -4319,14 +4319,14 @@ msgctxt ""
msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
msgstr "<bookmark_value>graelles; formatació d'eixos</bookmark_value><bookmark_value>eixos; formatació de graelles</bookmark_value>"
-#. WCwbv
+#. eX5Ah
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3155602\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
-msgstr "<link href=\"text/schart/01/05050000.xhp\" name=\"Graella\">Graella</link>"
+msgid "<link href=\"text/schart/01/05050000.xhp\">Grid</link>"
+msgstr "<link href=\"text/schart/01/05050000.xhp\">Graella</link>"
#. wrhBD
#: 05050000.xhp
@@ -4337,68 +4337,68 @@ msgctxt ""
msgid "Opens a submenu, where you select the grid you want to format."
msgstr "Obri un submenú que vos permet seleccionar la graella que vulgueu formatar."
-#. hUUha
+#. k6RCs
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3150045\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=\"Graella principal de l'eix X\">Graella principal de l'eix X</link>"
+msgid "<link href=\"text/schart/01/05050100.xhp\">X Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\">Graella principal de l'eix X</link>"
-#. bzjCW
+#. wKC6p
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3145228\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=\"Graella principal de l'eix Y\">Graella principal de l'eix Y</link>"
+msgid "<link href=\"text/schart/01/05050100.xhp\">Y Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\">Graella principal de l'eix Y</link>"
-#. HYSXB
+#. hURtG
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3147346\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=\"Graella principal de l'eix Z\">Graella principal de l'eix Z</link>"
+msgid "<link href=\"text/schart/01/05050100.xhp\">Z Axis Major Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\">Graella principal de l'eix Z</link>"
-#. PCETn
+#. tCoy7
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3154021\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=\"Graella secundària de l'eix X\">Graella secundària de l'eix X</link>"
+msgid "<link href=\"text/schart/01/05050100.xhp\">X Axis Minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\">Graella secundària de l'eix X</link>"
-#. VEqkq
+#. ifAAW
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3150307\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=\"Graella secundària de l'eix Y\">Graella secundària de l'eix Y</link>"
+msgid "<link href=\"text/schart/01/05050100.xhp\">Y Axis Minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\">Graella secundària de l'eix Y</link>"
-#. XRkcC
+#. PDJFw
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3166428\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=\"Graella secundària de l'eix Z\">Graella secundària de l'eix Z</link>"
+msgid "<link href=\"text/schart/01/05050100.xhp\">Z Axis minor Grid</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\">Graella secundària de l'eix Z</link>"
-#. vdS2r
+#. VAF9J
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3145585\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=\"Totes les graelles dels eixos\">Totes les graelles dels eixos</link>"
+msgid "<link href=\"text/schart/01/05050100.xhp\">All Axis Grids</link>"
+msgstr "<link href=\"text/schart/01/05050100.xhp\">Totes les graelles dels eixos</link>"
#. g7BqG
#: 05050100.xhp
@@ -4553,14 +4553,14 @@ msgctxt ""
msgid "Arrangement"
msgstr "Arranjament"
-#. EUoBF
+#. LDTZg
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"hd_id3159153\n"
"help.text"
-msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
-msgstr "<link href=\"text/schart/01/05120000.xhp\" name=\"Arranjament\">Arranjament</link>"
+msgid "<link href=\"text/schart/01/05120000.xhp\">Arrangement</link>"
+msgstr "<link href=\"text/schart/01/05120000.xhp\">Arranjament</link>"
#. fUrWy
#: 05120000.xhp
@@ -4850,13 +4850,13 @@ msgctxt ""
msgid "<bookmark_value>chart; data tables</bookmark_value> <bookmark_value>insert data tables in charts</bookmark_value>"
msgstr ""
-#. EfzbN
+#. zG8yu
#: data_table.xhp
msgctxt ""
"data_table.xhp\n"
"hd_id861665495783520\n"
"help.text"
-msgid "<variable id=\"data_table_h1\"><link href=\"text/schart/01/data_table.xhp\" name=\"data_table_link\">Chart Data Table</link></variable>"
+msgid "<variable id=\"data_table_h1\"><link href=\"text/schart/01/data_table.xhp\">Chart Data Table</link></variable>"
msgstr ""
#. d3MTA
diff --git a/source/ca-valencia/helpcontent2/source/text/schart/02.po b/source/ca-valencia/helpcontent2/source/text/schart/02.po
index fa529fb26bc..4ca7722b0f6 100644
--- a/source/ca-valencia/helpcontent2/source/text/schart/02.po
+++ b/source/ca-valencia/helpcontent2/source/text/schart/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-12-17 14:17+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textschart02/ca_VALENCIA/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
"X-POOTLE-MTIME: 1494353962.000000\n"
@@ -26,14 +26,14 @@ msgctxt ""
msgid "Data in Rows"
msgstr "Dades en files"
-#. DacjG
+#. u6Xkf
#: 01190000.xhp
msgctxt ""
"01190000.xhp\n"
"hd_id3146976\n"
"help.text"
-msgid "<link href=\"text/schart/02/01190000.xhp\" name=\"Data in Rows\">Data in Rows</link>"
-msgstr "<link href=\"text/schart/02/01190000.xhp\" name=\"Dades en files\">Dades en files</link>"
+msgid "<link href=\"text/schart/02/01190000.xhp\">Data in Rows</link>"
+msgstr "<link href=\"text/schart/02/01190000.xhp\">Dades en files</link>"
#. Mn2kr
#: 01190000.xhp
@@ -71,14 +71,14 @@ msgctxt ""
msgid "Data in Columns"
msgstr "Dades en columnes"
-#. BFkD4
+#. qpvn7
#: 01200000.xhp
msgctxt ""
"01200000.xhp\n"
"hd_id3150868\n"
"help.text"
-msgid "<link href=\"text/schart/02/01200000.xhp\" name=\"Data in Columns\">Data in Columns</link>"
-msgstr "<link href=\"text/schart/02/01200000.xhp\" name=\"Dades en columnes\">Dades en columnes</link>"
+msgid "<link href=\"text/schart/02/01200000.xhp\">Data in Columns</link>"
+msgstr "<link href=\"text/schart/02/01200000.xhp\">Dades en columnes</link>"
#. eiQk2
#: 01200000.xhp
@@ -125,14 +125,14 @@ msgctxt ""
msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
msgstr "<bookmark_value>dimensionament del text dels diagrames</bookmark_value><bookmark_value>dimensionament; text dels diagrames</bookmark_value><bookmark_value>diagrames;dimensionament del text</bookmark_value>"
-#. BSFqu
+#. mAsQv
#: 01210000.xhp
msgctxt ""
"01210000.xhp\n"
"hd_id3152996\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=\"Redimensiona el text\">Redimensiona el text</link>"
+msgid "<link href=\"text/schart/02/01210000.xhp\">Scale Text</link>"
+msgstr "<link href=\"text/schart/02/01210000.xhp\">Redimensiona el text</link>"
#. 6xNG3
#: 01210000.xhp
@@ -179,14 +179,14 @@ msgctxt ""
msgid "<bookmark_value>reorganizing charts</bookmark_value><bookmark_value>charts; reorganizing</bookmark_value>"
msgstr "<bookmark_value>reorganització de diagrames</bookmark_value><bookmark_value>diagrames; reorganització</bookmark_value>"
-#. YwCv2
+#. 4DPpw
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/schart/02/01220000.xhp\" name=\"Automatic Layout\">Automatic Layout</link>"
-msgstr "<link href=\"text/schart/02/01220000.xhp\" name=\"Format automàtic\">Format automàtic</link>"
+msgid "<link href=\"text/schart/02/01220000.xhp\">Automatic Layout</link>"
+msgstr "<link href=\"text/schart/02/01220000.xhp\">Format automàtic</link>"
#. 2iKEq
#: 01220000.xhp
@@ -224,14 +224,14 @@ msgctxt ""
msgid "Current Chart Type"
msgstr "Tipus de diagrama actual"
-#. pabZ5
+#. 7mzRv
#: 02020000.xhp
msgctxt ""
"02020000.xhp\n"
"hd_id3150791\n"
"help.text"
-msgid "<link href=\"text/schart/02/02020000.xhp\" name=\"Current Chart Type\">Current Chart Type</link>"
-msgstr "<link href=\"text/schart/02/02020000.xhp\" name=\"Tipus de diagrama actual\">Tipus de diagrama actual</link>"
+msgid "<link href=\"text/schart/02/02020000.xhp\">Current Chart Type</link>"
+msgstr "<link href=\"text/schart/02/02020000.xhp\">Tipus de diagrama actual</link>"
#. b2GAj
#: 02020000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/schart/04.po b/source/ca-valencia/helpcontent2/source/text/schart/04.po
index a980ab3b3ee..806782761a4 100644
--- a/source/ca-valencia/helpcontent2/source/text/schart/04.po
+++ b/source/ca-valencia/helpcontent2/source/text/schart/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2017-05-09 18:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>shortcut keys; charts</bookmark_value><bookmark_value>charts; shortcuts</bookmark_value>"
msgstr "<bookmark_value>Claus de drecera; diagrames</bookmark_value><bookmark_value>diagrames; dreceres</bookmark_value>"
-#. pm6fm
+#. BKqdE
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3150767\n"
"help.text"
-msgid "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" name=\"Shortcuts for Charts\">Shortcuts for Charts</link></variable>"
-msgstr "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\" name=\"Shortcuts for Charts\">Dreceres per als diagrames</link></variable>"
+msgid "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\">Shortcuts for Charts</link></variable>"
+msgstr "<variable id=\"Chart_keys\"><link href=\"text/schart/04/01020000.xhp\">Dreceres per als diagrames</link></variable>"
#. btcmU
#: 01020000.xhp
@@ -53,14 +53,14 @@ msgctxt ""
msgid "You can use the following shortcut keys in charts."
msgstr "Esteu utilitzant les claus de drecera següents per als diagrames."
-#. eMdUn
+#. EQR2d
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3159154\n"
"help.text"
-msgid "You can also use the general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">shortcut keys</link> for $[officename]."
-msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">claus de drecera</link> generals del $[officename]."
+msgid "You can also use the general <link href=\"text/shared/04/01010000.xhp\">shortcut keys</link> for $[officename]."
+msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\">claus de drecera</link> generals del $[officename]."
#. CEzNG
#: 01020000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/sdatabase.po b/source/ca-valencia/helpcontent2/source/text/sdatabase.po
index e06ab516f9c..1114471643c 100644
--- a/source/ca-valencia/helpcontent2/source/text/sdatabase.po
+++ b/source/ca-valencia/helpcontent2/source/text/sdatabase.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-25 13:48+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/ca_VALENCIA/>\n"
@@ -33,14 +33,14 @@ msgctxt ""
msgid "<bookmark_value>queries;overview (Base)</bookmark_value><bookmark_value>tables in databases; printing queries (Base)</bookmark_value><bookmark_value>printing; queries (Base)</bookmark_value><bookmark_value>queries; printing (Base)</bookmark_value>"
msgstr "<bookmark_value>consultes;visió general (Base)</bookmark_value><bookmark_value>taules en bases de dades; impressió de consultes (Base)</bookmark_value><bookmark_value>impressió; consultes (Base)</bookmark_value><bookmark_value>consultes; impressió (Base)</bookmark_value>"
-#. g7gAN
+#. BzrrZ
#: 02000000.xhp
msgctxt ""
"02000000.xhp\n"
"hd_id3150445\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02000000.xhp\" name=\"Queries\">Queries</link>"
-msgstr "<link href=\"text/sdatabase/02000000.xhp\" name=\"Consultes\">Consultes</link>"
+msgid "<link href=\"text/sdatabase/02000000.xhp\">Queries</link>"
+msgstr "<link href=\"text/sdatabase/02000000.xhp\">Consultes</link>"
#. KaF9w
#: 02000000.xhp
@@ -96,14 +96,14 @@ msgctxt ""
msgid "Open the database file and click the Table icon if you want to print a table, or click the Query icon if you want to print a query."
msgstr "Obriu el fitxer de la base de dades i feu clic a la icona Taules si voleu imprimir una taula, o bé a la icona Consultes si voleu imprimir una consulta."
-#. 9ZPFm
+#. KegMF
#: 02000000.xhp
msgctxt ""
"02000000.xhp\n"
"par_id3149398\n"
"help.text"
-msgid "Drag the name of the table or query into the open text document or spreadsheet. The dialog <link href=\"text/shared/02/12070000.xhp\" name=\"Insert Database Columns\">Insert Database Columns</link> opens."
-msgstr "Arrossegueu el nom de la taula o de la consulta en el document de text o el full de càlcul obert. S'obrirà el diàleg <link href=\"text/shared/02/12070000.xhp\" name=\"Insereix columnes de la base de dades\">Insereix columnes de la base de dades</link>."
+msgid "Drag the name of the table or query into the open text document or spreadsheet. The dialog <link href=\"text/shared/02/12070000.xhp\">Insert Database Columns</link> opens."
+msgstr "Arrossegueu el nom de la taula o de la consulta en el document de text o el full de càlcul obert. S'obrirà el diàleg <link href=\"text/shared/02/12070000.xhp\">Insereix columnes de la base de dades</link>."
#. m5TnG
#: 02000000.xhp
@@ -141,14 +141,14 @@ msgctxt ""
msgid "You can also open the data source view (Ctrl+Shift+F4), select the entire database table in the data source view (click on the top left corner of the table), and then drag the selection to a text document or spreadsheet."
msgstr "També podeu obrir la vista de la font de dades (Ctrl+Maj+F4), seleccionar-hi tota la base de dades (feu clic a l'extrem superior esquerre de la taula) i arrossegar la selecció a un document de text o un full de càlcul."
-#. PJjKX
+#. 2ygym
#: 02000000.xhp
msgctxt ""
"02000000.xhp\n"
"hd_id3148946\n"
"help.text"
-msgid "<link href=\"text/shared/main0212.xhp\" name=\"Sorting and Filtering Data\">Sorting and Filtering Data</link>"
-msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Ordenació i filtratge de dades\">Ordenació i filtratge de dades</link>"
+msgid "<link href=\"text/shared/main0212.xhp\">Sorting and Filtering Data</link>"
+msgstr "<link href=\"text/shared/main0212.xhp\">Ordenació i filtratge de dades</link>"
#. ERCGr
#: 02000000.xhp
@@ -159,13 +159,13 @@ msgctxt ""
msgid "Allows you to sort and filter the data in a query table."
msgstr "Vos permet ordenar i filtrar les dades en una taula de consultes."
-#. ci2PA
+#. xFrWT
#: 02000000.xhp
msgctxt ""
"02000000.xhp\n"
"hd_id3153379\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>"
+msgid "<link href=\"text/sdatabase/02010100.xhp\">Query Design</link>"
msgstr ""
#. 3JCfK
@@ -177,13 +177,13 @@ msgctxt ""
msgid "With the <emph>Query Design</emph>, you can create and edit a query or view."
msgstr "Amb el <emph>Disseny de la consulta</emph> podeu crear i editar una consulta o vista."
-#. QwBay
+#. zXqLY
#: 02000000.xhp
msgctxt ""
"02000000.xhp\n"
"hd_id3153968\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Through Several Tables\">Query Through Several Tables</link>"
+msgid "<link href=\"text/sdatabase/02010100.xhp\">Query Through Several Tables</link>"
msgstr ""
#. ASeVi
@@ -195,13 +195,13 @@ msgctxt ""
msgid "The query result can contain data from several tables if these are linked to each other by suitable data fields."
msgstr "El resultat de la consulta pot contindre dades de més d'una taula si les taules estan enllaçades mitjançant camps de dades adequats."
-#. MaoPn
+#. 2SVKa
#: 02000000.xhp
msgctxt ""
"02000000.xhp\n"
"hd_id3159149\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Formulating Query Criteria\">Formulating Query Criteria</link>"
+msgid "<link href=\"text/sdatabase/02010100.xhp\">Formulating Query Criteria</link>"
msgstr ""
#. JTXBF
@@ -213,13 +213,13 @@ msgctxt ""
msgid "You can find out which operators and commands can be used to formulate the filter conditions for a query."
msgstr "Vos permet conèixer els operadors i les ordres que podeu utilitzar per a formular les condicions de filtratge per a una consulta."
-#. xmAkP
+#. nssDt
#: 02000000.xhp
msgctxt ""
"02000000.xhp\n"
"hd_id3156212\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Executing Functions\">Executing Functions</link>"
+msgid "<link href=\"text/sdatabase/02010100.xhp\">Executing Functions</link>"
msgstr ""
#. FWCVa
@@ -294,14 +294,14 @@ msgctxt ""
msgid "Do you really want to open the query in the graphic view?"
msgstr "Voleu realment obrir la consulta en la vista gràfica?"
-#. 2DqMn
+#. qwqCZ
#: 02000002.xhp
msgctxt ""
"02000002.xhp\n"
"par_id3166461\n"
"help.text"
-msgid "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/sdatabase/02010100.xhp\" name=\"Design View\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
-msgstr "<ahelp hid=\".\">Vos permet obrir la consulta en la <link href=\"text/sdatabase/02010100.xhp\" name=\"Vista de disseny\">Vista de disseny</link>, malgrat que hi faltin elements.</ahelp> Aquesta opció també vos permet indicar si voleu que s'ignorin altres errors."
+msgid "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/sdatabase/02010100.xhp\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
+msgstr "<ahelp hid=\".\">Vos permet obrir la consulta en la <link href=\"text/sdatabase/02010100.xhp\">Vista de disseny</link>, malgrat que hi faltin elements.</ahelp> Aquesta opció també vos permet indicar si voleu que s'ignorin altres errors."
#. DX2vA
#: 02000002.xhp
@@ -321,14 +321,14 @@ msgctxt ""
msgid "Open the query in the SQL View"
msgstr "Obri la consulta en la vista SQL"
-#. Axfxy
+#. DL23B
#: 02000002.xhp
msgctxt ""
"02000002.xhp\n"
"par_id3159157\n"
"help.text"
-msgid "<ahelp hid=\".\">Allows you to open the query design in the <link href=\"text/sdatabase/02010100.xhp\" name=\"SQL Mode\">SQL Mode</link> and to interpret the query as a <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">Native SQL</link>.</ahelp> You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)."
-msgstr "<ahelp hid=\".\">Vos permet obrir el disseny de la consulta en el <link href=\"text/sdatabase/02010100.xhp\" name=\"Mode SQL\">mode SQL</link> i interpretar la consulta com a <link href=\"text/shared/02/14030000.xhp\" name=\"SQL natiu\">SQL natiu</link>.</ahelp> Només podeu eixir del mode SQL natiu quan l'expressió del $[officename] s'ha interpretat completament (això només és possible si les taules o els camps utilitzats a la consulta existeixen realment)."
+msgid "<ahelp hid=\".\">Allows you to open the query design in the <link href=\"text/sdatabase/02010100.xhp\">SQL Mode</link> and to interpret the query as a <link href=\"text/shared/02/14030000.xhp\">Native SQL</link>.</ahelp> You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)."
+msgstr "<ahelp hid=\".\">Vos permet obrir el disseny de la consulta en el <link href=\"text/sdatabase/02010100.xhp\">mode SQL</link> i interpretar la consulta com a <link href=\"text/shared/02/14030000.xhp\">SQL natiu</link>.</ahelp> Només podeu eixir del mode SQL natiu quan l'expressió del $[officename] s'ha interpretat completament (això només és possible si les taules o els camps utilitzats a la consulta existeixen realment)."
#. 2N4uG
#: 02000002.xhp
@@ -384,13 +384,13 @@ msgctxt ""
msgid "<bookmark_value>views; creating database views (Base)</bookmark_value> <bookmark_value>queries; creating in design view (Base)</bookmark_value> <bookmark_value>designing; queries (Base)</bookmark_value> <bookmark_value>design view; queries/views (Base)</bookmark_value> <bookmark_value>joining;tables (Base)</bookmark_value> <bookmark_value>tables in databases; joining for queries (Base)</bookmark_value> <bookmark_value>queries; joining tables (Base)</bookmark_value> <bookmark_value>tables in databases; relations (Base)</bookmark_value> <bookmark_value>relations; joining tables (Base)</bookmark_value> <bookmark_value>queries; deleting table links (Base)</bookmark_value> <bookmark_value>criteria of query design (Base)</bookmark_value> <bookmark_value>queries; formulating filter conditions (Base)</bookmark_value> <bookmark_value>filter conditions;in queries (Base)</bookmark_value> <bookmark_value>parameters; queries (Base)</bookmark_value> <bookmark_value>queries; parameter queries (Base)</bookmark_value> <bookmark_value>SQL; queries (Base)</bookmark_value> <bookmark_value>native SQL (Base)</bookmark_value>"
msgstr "<bookmark_value>vistes; creació de vistes de bases de dades (Base)</bookmark_value><bookmark_value>consultes; creació en vista de disseny (Base)</bookmark_value><bookmark_value>disseny; consultes (Base)</bookmark_value><bookmark_value>vista de disseny; consultes/vistes (Base)</bookmark_value><bookmark_value>unió;taules (Base)</bookmark_value><bookmark_value>taules en bases de dades; unió per a consultes (Base)</bookmark_value><bookmark_value>consultes; unió de taules (Base)</bookmark_value><bookmark_value>taules en bases de dades; relacions (Base)</bookmark_value><bookmark_value>relacions; unió de taules (Base)</bookmark_value><bookmark_value>consultes; supressió d'enllaços a taules (Base)</bookmark_value><bookmark_value>criteris del disseny de la consulta (Base)</bookmark_value><bookmark_value>consultes; formulació de condicions de filtratge (Base)</bookmark_value><bookmark_value>condicions de filtratge;en consultes (Base)</bookmark_value><bookmark_value>paràmetres; consultes (Base)</bookmark_value><bookmark_value>consultes; consultes de paràmetres (Base)</bookmark_value><bookmark_value>SQL; consultes (Base)</bookmark_value><bookmark_value>SQL natiu (Base)</bookmark_value>"
-#. 2BrD2
+#. kJs5m
#: 02010100.xhp
msgctxt ""
"02010100.xhp\n"
"hd_id3153394\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>"
+msgid "<link href=\"text/sdatabase/02010100.xhp\">Query Design</link>"
msgstr ""
#. GU8Jd
@@ -456,14 +456,14 @@ msgctxt ""
msgid "The lower pane of the Design View is where you define the query. To define a query, specify the database field names to include and the criteria for displaying the fields. To rearrange the columns in the lower pane of the Design View, drag a column header to a new location, or select the column and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+arrow key."
msgstr ""
-#. GMVkG
+#. 74LSC
#: 02010100.xhp
msgctxt ""
"02010100.xhp\n"
"par_id3152474\n"
"help.text"
-msgid "In the top of the query Design View window, the <link href=\"text/shared/main0214.xhp\" name=\"icons\">icons</link> of the <emph>Query Design</emph> Bar and the <emph>Design</emph> bar are displayed."
-msgstr "Les <link href=\"text/shared/main0214.xhp\" name=\"icones\">icones</link> de les barres <emph>Disseny de la consulta</emph> i <emph>Disseny</emph> es mostren a la part superior de la finestra Vista de disseny de la consulta."
+msgid "In the top of the query Design View window, the <link href=\"text/shared/main0214.xhp\">icons</link> of the <emph>Query Design</emph> Bar and the <emph>Design</emph> bar are displayed."
+msgstr "Les <link href=\"text/shared/main0214.xhp\">icones</link> de les barres <emph>Disseny de la consulta</emph> i <emph>Disseny</emph> es mostren a la part superior de la finestra Vista de disseny de la consulta."
#. hYsxY
#: 02010100.xhp
@@ -690,14 +690,14 @@ msgctxt ""
msgid "Specifying the relation type"
msgstr "Especificació del tipus de relació"
-#. zkKD5
+#. Js8Ga
#: 02010100.xhp
msgctxt ""
"02010100.xhp\n"
"par_id3154791\n"
"help.text"
-msgid "If you double-click on the line connecting two linked fields or call the menu command <emph>Insert - New Relation</emph>, you can specify the type of relation in the <link href=\"text/sdatabase/02010101.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr "Si feu un doble clic a la línia que connecta dos camps relacionats o executeu la comanda de menú <emph>Inserir - Nova Relació</emph>, podeu especificar el tipus de relació al diàleg <link href=\"text/sdatabase/02010101.xhp\" name=\"Relacions\"><emph>Relacions</emph></link>."
+msgid "If you double-click on the line connecting two linked fields or call the menu command <emph>Insert - New Relation</emph>, you can specify the type of relation in the <link href=\"text/sdatabase/02010101.xhp\"><emph>Relations</emph></link> dialog."
+msgstr "Si feu un doble clic a la línia que connecta dos camps relacionats o executeu la comanda de menú <emph>Inserir - Nova Relació</emph>, podeu especificar el tipus de relació al diàleg <link href=\"text/sdatabase/02010101.xhp\"><emph>Relacions</emph></link>."
#. rAkmw
#: 02010100.xhp
@@ -2463,14 +2463,14 @@ msgctxt ""
msgid "A useful construction for selecting records based on parts of a text field's content is to add a hidden column with <item type=\"input\">\"LIKE '%' || :Part_of_field || '%'\"</item> as the criterion. This will select records with an exact match. If a case-insensitive test is wanted, one solution is to use <item type=\"input\">LOWER (Field_Name)</item> as the field and <item type=\"input\">LIKE LOWER ( '%' || :Part_of_field || '%' )</item> as the criterion. Note that the spaces in the criterion are important; if they are left out the SQL parser interprets the entire criterion as a string to be matched. In <link href=\"text/sdatabase/02010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">LOWER ( \"Field_Name\" ) LIKE LOWER ( '%' || :Part_of_field || '%' )</item>."
msgstr ""
-#. sSSB9
+#. EAESi
#: 02010100.xhp
msgctxt ""
"02010100.xhp\n"
"par_id3150585\n"
"help.text"
-msgid "Parameter queries may be used as the data source for <link href=\"text/shared/02/01170203.xhp\" name=\"subforms\">subforms</link>, to allow the user to restrict the displayed records."
-msgstr "Les consultes de paràmetres es poden utilitzar com a font de dades per als <link href=\"text/shared/02/01170203.xhp\" name=\"subforms\">subformularis</link> per permetre a l'usuari restringir els registres mostrats."
+msgid "Parameter queries may be used as the data source for <link href=\"text/shared/02/01170203.xhp\">subforms</link>, to allow the user to restrict the displayed records."
+msgstr "Les consultes de paràmetres es poden utilitzar com a font de dades per als <link href=\"text/shared/02/01170203.xhp\">subformularis</link> per permetre a l'usuari restringir els registres mostrats."
#. DRj78
#: 02010100.xhp
@@ -2553,14 +2553,14 @@ msgctxt ""
msgid "If you enter the SQL code manually, you can create SQL-specific queries that are not supported by the graphical interface in the <emph>Query designer</emph>. These queries must be executed in native SQL mode."
msgstr "Si introduïu el codi SQL manualment, podeu crear consultes específiques SQL que no siguen compatibles amb la interfície gràfica al <emph>Dissenyador de consultes</emph>. Aquestes consultes s'han d'executar en mode SQL natiu."
-#. cBY6B
+#. LgvXF
#: 02010100.xhp
msgctxt ""
"02010100.xhp\n"
"par_id3149632\n"
"help.text"
-msgid "By clicking the <link href=\"text/shared/02/14030000.xhp\" name=\"Run SQL command directly\"><emph>Run SQL command directly</emph></link> icon in the SQL view, you can formulate a query that is not processed by $[officename] and sent directly to the database engine."
-msgstr "En fer clic a la icona <link href=\"text/shared/02/14030000.xhp\" name=\"Run SQL command directly\"><emph> Executa l'ordre SQL directament </emph></link> a la vista SQL, podeu formular una consulta que no és processada pel $[officename] i que s'envia directament al motor de base de dades."
+msgid "By clicking the <link href=\"text/shared/02/14030000.xhp\"><emph>Run SQL command directly</emph></link> icon in the SQL view, you can formulate a query that is not processed by $[officename] and sent directly to the database engine."
+msgstr "En fer clic a la icona <link href=\"text/shared/02/14030000.xhp\"><emph> Executa l'ordre SQL directament </emph></link> a la vista SQL, podeu formular una consulta que no és processada pel $[officename] i que s'envia directament al motor de base de dades."
#. fKBDD
#: 02010101.xhp
@@ -2760,14 +2760,14 @@ msgctxt ""
msgid "Forms"
msgstr "Formularis"
-#. AXYAE
+#. quVqJ
#: 04000000.xhp
msgctxt ""
"04000000.xhp\n"
"hd_id3150476\n"
"help.text"
-msgid "<link href=\"text/sdatabase/04000000.xhp\" name=\"Forms\">Forms</link>"
-msgstr "<link href=\"text/sdatabase/04000000.xhp\" name=\"Formularis\">Formularis</link>"
+msgid "<link href=\"text/sdatabase/04000000.xhp\">Forms</link>"
+msgstr "<link href=\"text/sdatabase/04000000.xhp\">Formularis</link>"
#. EJGgk
#: 04000000.xhp
@@ -2787,23 +2787,23 @@ msgctxt ""
msgid "Forms can be used to enter or to edit existing database contents easily."
msgstr "Els formularis es poden utilitzar per introduir o editar fàcilment el contingut de la base de dades."
-#. pjGfo
+#. jK8tF
#: 04000000.xhp
msgctxt ""
"04000000.xhp\n"
"hd_id3157910\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090000.xhp\" name=\"Form Wizard\">FormWizard</link>"
-msgstr "<link href=\"text/shared/autopi/01090000.xhp\" name=\"Assistent per a formularis\">Assistent per a formularis</link>"
+msgid "<link href=\"text/shared/autopi/01090000.xhp\">FormWizard</link>"
+msgstr "<link href=\"text/shared/autopi/01090000.xhp\">Assistent per a formularis</link>"
-#. GDZow
+#. raPhg
#: 04000000.xhp
msgctxt ""
"04000000.xhp\n"
"hd_id3156003\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
-msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls de formulari\">Controls de formulari</link>"
+msgid "<link href=\"text/shared/02/01170000.xhp\">Form Controls</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\">Controls de formulari</link>"
#. CyFwA
#: 04000000.xhp
@@ -2814,14 +2814,14 @@ msgctxt ""
msgid "The Form Controls toolbar provides the tools required to create a form in a text, table, drawing, or presentation document."
msgstr "La barra d'eines controls de formulari proporciona les eines necessàries per crear un formulari en un document de text, taula, dibuix, o presentació."
-#. itCcM
+#. U7SFE
#: 04000000.xhp
msgctxt ""
"04000000.xhp\n"
"hd_id3155388\n"
"help.text"
-msgid "<link href=\"text/sdatabase/04030000.xhp\" name=\"Form in Design Mode\">Form in Design Mode</link>"
-msgstr "<link href=\"text/sdatabase/04030000.xhp\" name=\"Formulari en mode disseny\">Formulari en mode disseny</link>"
+msgid "<link href=\"text/sdatabase/04030000.xhp\">Form in Design Mode</link>"
+msgstr "<link href=\"text/sdatabase/04030000.xhp\">Formulari en mode disseny</link>"
#. jwRmr
#: 04000000.xhp
@@ -2832,14 +2832,14 @@ msgctxt ""
msgid "In design mode, the form is designed and the properties of the form and the controls contained in it are defined."
msgstr "En mode disseny, el formulari està dissenyat i les propietats i controls que conté estan definits."
-#. bWakN
+#. qJXDP
#: 04000000.xhp
msgctxt ""
"04000000.xhp\n"
"hd_id3149784\n"
"help.text"
-msgid "<link href=\"text/shared/main0213.xhp\" name=\"Sorting and Filtering Data\">Sorting and Filtering Data</link>"
-msgstr "<link href=\"text/shared/main0213.xhp\" name=\"Ordenació i filtratge de dades\">Ordenació i filtratge de dades</link>"
+msgid "<link href=\"text/shared/main0213.xhp\">Sorting and Filtering Data</link>"
+msgstr "<link href=\"text/shared/main0213.xhp\">Ordenació i filtratge de dades</link>"
#. 9s5BM
#: 04000000.xhp
@@ -2850,14 +2850,14 @@ msgctxt ""
msgid "You will find the sorting and filter functions in the toolbar when you open a form in user mode."
msgstr ""
-#. Dv2ku
+#. pRiyC
#: 04000000.xhp
msgctxt ""
"04000000.xhp\n"
"hd_id3148944\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170203.xhp\" name=\"Subforms\">Subforms</link>"
-msgstr "<link href=\"text/shared/02/01170203.xhp\" name=\"Subformularis\">Subformularis</link>"
+msgid "<link href=\"text/shared/02/01170203.xhp\">Subforms</link>"
+msgstr "<link href=\"text/shared/02/01170203.xhp\">Subformularis</link>"
#. CmENz
#: 04030000.xhp
@@ -2877,14 +2877,14 @@ msgctxt ""
msgid "<bookmark_value>forms; designing (Base)</bookmark_value>"
msgstr "<bookmark_value>formularis; disseny (Base)</bookmark_value>"
-#. P4Yuk
+#. Qab69
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"hd_id3148668\n"
"help.text"
-msgid "<variable id=\"formularentwurf\"><link href=\"text/sdatabase/04030000.xhp\" name=\"Form Design\">Form Design</link></variable>"
-msgstr "<variable id=\"formularentwurf\"><link href=\"text/sdatabase/04030000.xhp\" name=\"Disseny del formulari\">Disseny del formulari</link></variable>"
+msgid "<variable id=\"formularentwurf\"><link href=\"text/sdatabase/04030000.xhp\">Form Design</link></variable>"
+msgstr "<variable id=\"formularentwurf\"><link href=\"text/sdatabase/04030000.xhp\">Disseny del formulari</link></variable>"
#. FC52Y
#: 04030000.xhp
@@ -2895,41 +2895,41 @@ msgctxt ""
msgid "Any $[officename] document can be expanded into a form. Simply add one or more form controls."
msgstr "Qualsevol document del $[officename] es pot estendre a un formulari. Simplement afegiu un o més controls de formulari."
-#. Pp5mg
+#. vHCdP
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"par_id3145382\n"
"help.text"
-msgid "Open the Form Controls toolbar. The Form Controls toolbar contains the <link href=\"text/shared/02/01170000.xhp\" name=\"functions\">functions</link> needed to edit a form. More functions can be found in the <emph>Form Design</emph> bar and <emph>More Controls</emph> bar."
-msgstr "Obriu la barra d'eines Controls de formulari. La barra d'eines Controls de formulari conté les funcions <link href=\"text/shared/02/01170000.xhp\" name=\"funcions\"></link> necessàries per editar un formulari. Es poden trobar més funcions a la barra <emph>Disseny de formulari</emph> i a la barra <emph>Més controls</emph>."
+msgid "Open the Form Controls toolbar. The Form Controls toolbar contains the <link href=\"text/shared/02/01170000.xhp\">functions</link> needed to edit a form. More functions can be found in the <emph>Form Design</emph> bar and <emph>More Controls</emph> bar."
+msgstr "Obriu la barra d'eines Controls de formulari. La barra d'eines Controls de formulari conté les funcions <link href=\"text/shared/02/01170000.xhp\"></link> necessàries per editar un formulari. Es poden trobar més funcions a la barra <emph>Disseny de formulari</emph> i a la barra <emph>Més controls</emph>."
-#. 8SrEX
+#. rXWHE
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"par_id3153146\n"
"help.text"
-msgid "In form design mode you can <link href=\"text/shared/02/01170000.xhp\" name=\"include controls\">include controls</link>, <link href=\"text/shared/02/01170100.xhp\" name=\"apply properties\">apply properties</link> to them, define <link href=\"text/shared/02/01170200.xhp\" name=\"Form properties\">Form properties</link>, and <link href=\"text/shared/02/01170203.xhp\" name=\"define subforms\">define subforms</link>."
-msgstr "En mode de disseny de formularis, podeu <link href=\"text/shared/02/01170000.xhp\" name=\"include controls\">incloure controls</link>, <link href=\"text/shared/02/01170100.xhp\" name=\"apply properties\">aplicar propietats</link>, definir <link href=\"text/shared/02/01170200.xhp\" name=\"Propietats del formulari\">Propietats del formulari</link>, i <link href=\"text/shared/02/01170203.xhp\" name=\"definir subformularis\">definir subformularis</link>."
+msgid "In form design mode you can <link href=\"text/shared/02/01170000.xhp\">include controls</link>, <link href=\"text/shared/02/01170100.xhp\">apply properties</link> to them, define <link href=\"text/shared/02/01170200.xhp\">Form properties</link>, and <link href=\"text/shared/02/01170203.xhp\">define subforms</link>."
+msgstr "En mode de disseny de formularis, podeu <link href=\"text/shared/02/01170000.xhp\">incloure controls</link>, <link href=\"text/shared/02/01170100.xhp\">aplicar propietats</link>, definir <link href=\"text/shared/02/01170200.xhp\">Propietats del formulari</link>, i <link href=\"text/shared/02/01170203.xhp\">definir subformularis</link>."
-#. A95sK
+#. hrfEx
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"par_id3154924\n"
"help.text"
-msgid "The<emph> Form Navigator</emph> icon<image id=\"img_id3156002\" src=\"cmd/sc_showfmexplorer.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156002\">Icon</alt></image> on the Form Design bar opens the <link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\"><emph>Form Navigator</emph></link>."
-msgstr "La icona de la barra de Disseny de formulari <image id=\"imgid3156002\" src=\"cmd/scshowfmexplorer.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"altid3156002\">Icona</alt></image><emph>Formulari de navigació</emph> obri el <link href=\"text/shared/02/01170600.xhp\" name=\"Formulari de navigació\"><emph>Formulari de navigació</emph></link>."
+msgid "The<emph> Form Navigator</emph> icon<image id=\"img_id3156002\" src=\"cmd/sc_showfmexplorer.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"alt_id3156002\">Icon</alt></image> on the Form Design bar opens the <link href=\"text/shared/02/01170600.xhp\"><emph>Form Navigator</emph></link>."
+msgstr "La icona de la barra de Disseny de formulari <image id=\"imgid3156002\" src=\"cmd/scshowfmexplorer.png\" width=\"4.23mm\" height=\"4.23mm\"><alt id=\"altid3156002\">Icona</alt></image><emph>Formulari de navigació</emph> obri el <link href=\"text/shared/02/01170600.xhp\"><emph>Formulari de navigació</emph></link>."
-#. 5wdwF
+#. yRxdC
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"par_id3153968\n"
"help.text"
-msgid "The <link href=\"text/shared/02/01171000.xhp\" name=\"Open in Design Mode\"><emph>Open in Design Mode</emph></link> icon<image id=\"img_id1871395\" src=\"cmd/sc_openreadonly.png\" width=\"5.59mm\" height=\"5.59mm\"><alt id=\"alt_id1871395\">Icon</alt></image> allows you to save a form document so that it always opens in form design mode."
-msgstr "La icona <image id=\"imgid1871395\" src=\"cmd/scopenreadonly.png\" width=\"5.59mm\" height=\"5.59mm\"><alt id=\"altid1871395\">Icona</alt></image><link href=\"text/shared/02/01171000.xhp\" name=\"Obri en mode de disseny\"><emph>Obri en mode de dissenyy</emph></link> permet guardar un document de formulari de manera que sempre s'òbriga en mode de disseny de formulari."
+msgid "The <link href=\"text/shared/02/01171000.xhp\"><emph>Open in Design Mode</emph></link> icon<image id=\"img_id1871395\" src=\"cmd/sc_openreadonly.png\" width=\"5.59mm\" height=\"5.59mm\"><alt id=\"alt_id1871395\">Icon</alt></image> allows you to save a form document so that it always opens in form design mode."
+msgstr "La icona <image id=\"imgid1871395\" src=\"cmd/scopenreadonly.png\" width=\"5.59mm\" height=\"5.59mm\"><alt id=\"altid1871395\">Icona</alt></image><link href=\"text/shared/02/01171000.xhp\"><emph>Obri en mode de dissenyy</emph></link> permet guardar un document de formulari de manera que sempre s'òbriga en mode de disseny de formulari."
#. 4AXt6
#: 04030000.xhp
@@ -2949,13 +2949,13 @@ msgctxt ""
msgid "Tables"
msgstr ""
-#. aA9nH
+#. 4Bngb
#: 05000000.xhp
msgctxt ""
"05000000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05000000.xhp\" name=\"Tables\">Tables</link>"
+msgid "<link href=\"text/sdatabase/05000000.xhp\">Tables</link>"
msgstr ""
#. ozjR6
@@ -2976,31 +2976,31 @@ msgctxt ""
msgid "In the $[officename] Help, you will find further information on the following subjects:"
msgstr ""
-#. GAgsq
+#. fG7PA
#: 05000000.xhp
msgctxt ""
"05000000.xhp\n"
"hd_id3152425\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new or edit table design\">Create new or edit table design</link>"
+msgid "<link href=\"text/sdatabase/05010000.xhp\">Create new or edit table design</link>"
msgstr ""
-#. Hk4Jz
+#. 6qP78
#: 05000000.xhp
msgctxt ""
"05000000.xhp\n"
"hd_id3149095\n"
"help.text"
-msgid "<link href=\"text/shared/main0212.xhp\" name=\"Sort and Filter Data\">Sort and Filter Data</link>"
+msgid "<link href=\"text/shared/main0212.xhp\">Sort and Filter Data</link>"
msgstr ""
-#. hNfEL
+#. faEKt
#: 05000000.xhp
msgctxt ""
"05000000.xhp\n"
"hd_id3154288\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
+msgid "<link href=\"text/sdatabase/05020000.xhp\">Relations, Primary and External Key</link>"
msgstr ""
#. fAyEi
@@ -3012,13 +3012,13 @@ msgctxt ""
msgid "Table Context Menus"
msgstr ""
-#. nfG4Q
+#. 7hAQu
#: 05000001.xhp
msgctxt ""
"05000001.xhp\n"
"hd_id3148983\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05000001.xhp\" name=\"Table Context Menus\">Table Context Menus</link>"
+msgid "<link href=\"text/sdatabase/05000001.xhp\">Table Context Menus</link>"
msgstr ""
#. PFkAG
@@ -3048,13 +3048,13 @@ msgctxt ""
msgid "Depending on the database system used, you will find the following entries on the context menus:"
msgstr ""
-#. xKPHW
+#. DCGrM
#: 05000001.xhp
msgctxt ""
"05000001.xhp\n"
"par_id3166461\n"
"help.text"
-msgid "If a <link href=\"text/shared/01/05340400.xhp\" name=\"table is open\">table is open</link>, there are several functions available to edit the data."
+msgid "If a <link href=\"text/shared/01/05340400.xhp\">table is open</link>, there are several functions available to edit the data."
msgstr ""
#. Rqydv
@@ -3165,13 +3165,13 @@ msgctxt ""
msgid "Table Design"
msgstr ""
-#. DKzbA
+#. umFoz
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Table Design\">Table Design</link>"
+msgid "<link href=\"text/sdatabase/05010000.xhp\">Table Design</link>"
msgstr ""
#. fQvmC
@@ -3183,13 +3183,13 @@ msgctxt ""
msgid "In the <emph>Table Design</emph> window you define new tables or edit the structure of an existing table."
msgstr ""
-#. 3skAk
+#. kfGyG
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"par_id3146957\n"
"help.text"
-msgid "The window has its own menu bar. It also contains the following new command: <link href=\"text/sdatabase/05010100.xhp\" name=\"Index Design\"><emph>Index Design</emph></link>"
+msgid "The window has its own menu bar. It also contains the following new command: <link href=\"text/sdatabase/05010100.xhp\"><emph>Index Design</emph></link>"
msgstr ""
#. z6hA5
@@ -3480,13 +3480,13 @@ msgctxt ""
msgid "Format Field"
msgstr ""
-#. 8GHDz
+#. CJJuJ
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"par_id3154146\n"
"help.text"
-msgid "<ahelp hid=\"HID_TAB_ENT_FORMAT\">This button opens the <link href=\"text/shared/01/05340405.xhp\" name=\"Field Format\"><emph>Format Field</emph></link> dialog.</ahelp>"
+msgid "<ahelp hid=\"HID_TAB_ENT_FORMAT\">This button opens the <link href=\"text/shared/01/05340405.xhp\"><emph>Format Field</emph></link> dialog.</ahelp>"
msgstr ""
#. CgbCE
@@ -3516,13 +3516,13 @@ msgctxt ""
msgid "Index design"
msgstr ""
-#. q4EEe
+#. 43wNG
#: 05010100.xhp
msgctxt ""
"05010100.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05010100.xhp\" name=\"Index design\">Index design</link>"
+msgid "<link href=\"text/sdatabase/05010100.xhp\">Index design</link>"
msgstr ""
#. 98zvT
@@ -3759,13 +3759,13 @@ msgctxt ""
msgid "Relations"
msgstr ""
-#. sQwNc
+#. hk46N
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3153323\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations\">Relations</link>"
+msgid "<link href=\"text/sdatabase/05020000.xhp\">Relations</link>"
msgstr ""
#. GxBiD
@@ -3804,13 +3804,13 @@ msgctxt ""
msgid "This function is only available if you are working with a relational database."
msgstr ""
-#. 5MXvo
+#. 5A2ec
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"par_id3149235\n"
"help.text"
-msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
+msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
msgstr ""
#. krxTw
@@ -3849,13 +3849,13 @@ msgctxt ""
msgid "Primary key and foreign keys"
msgstr ""
-#. BDbWF
+#. My7Rv
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"par_id3149168\n"
"help.text"
-msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primary_key\" name=\"primary key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
+msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primary_key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
msgstr ""
#. FACvb
@@ -3894,13 +3894,13 @@ msgctxt ""
msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
msgstr ""
-#. EF2rg
+#. WVZxo
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"par_id3149984\n"
"help.text"
-msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/sdatabase/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
+msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/sdatabase/05020100.xhp\"><emph>Relations</emph></link> dialog."
msgstr ""
#. yTadX
@@ -4218,13 +4218,13 @@ msgctxt ""
msgid "Copy a Table by Drag-and-Drop"
msgstr ""
-#. VdcaB
+#. YCDGW
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
"hd_id3154894\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05030000.xhp\" name=\"Copy Query or Table by Drag-and-Drop\">Copy Query or Table by Drag-and-Drop</link>"
+msgid "<link href=\"text/sdatabase/05030000.xhp\">Copy Query or Table by Drag-and-Drop</link>"
msgstr ""
#. nDG9W
@@ -4290,13 +4290,13 @@ msgctxt ""
msgid "Copy Table"
msgstr ""
-#. kkUkn
+#. NeSrB
#: 05030100.xhp
msgctxt ""
"05030100.xhp\n"
"hd_id3085157\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05030100.xhp\" name=\"Copy Table\">Copy Table</link>"
+msgid "<link href=\"text/sdatabase/05030100.xhp\">Copy Table</link>"
msgstr ""
#. sBC76
@@ -4416,13 +4416,13 @@ msgctxt ""
msgid "The table definition must be exactly the same so that data can be copied. Data cannot be copied if a data field in the target table has another format than the data field in the source table."
msgstr ""
-#. ADGPK
+#. 5PMDH
#: 05030100.xhp
msgctxt ""
"05030100.xhp\n"
"par_id3156117\n"
"help.text"
-msgid "Match the data field names in the<emph> Copy Table</emph> dialog on the <link href=\"text/sdatabase/05030400.xhp\" name=\"Apply Columns\">Apply Columns</link> page."
+msgid "Match the data field names in the<emph> Copy Table</emph> dialog on the <link href=\"text/sdatabase/05030400.xhp\">Apply Columns</link> page."
msgstr ""
#. toArF
@@ -4488,13 +4488,13 @@ msgctxt ""
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/keyname\">Specifies a name for the primary key generated. This name is optional.</ahelp>"
msgstr ""
-#. seBiB
+#. STvFL
#: 05030100.xhp
msgctxt ""
"05030100.xhp\n"
"par_id3151056\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Next page\">Next page</link>"
+msgid "<link href=\"text/sdatabase/05030200.xhp\">Next page</link>"
msgstr ""
#. DDJC9
@@ -4506,13 +4506,13 @@ msgctxt ""
msgid "Apply columns"
msgstr ""
-#. FnB9J
+#. dXZ2P
#: 05030200.xhp
msgctxt ""
"05030200.xhp\n"
"hd_id3150445\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Apply columns\">Apply columns</link>"
+msgid "<link href=\"text/sdatabase/05030200.xhp\">Apply columns</link>"
msgstr ""
#. 6b9Li
@@ -4587,13 +4587,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Adds or removes the selected field (> or < button) or all of the fields (<< or >> button).</ahelp>"
msgstr ""
-#. CuqBd
+#. 3HDna
#: 05030200.xhp
msgctxt ""
"05030200.xhp\n"
"par_id3153561\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Next page</link>"
+msgid "<link href=\"text/sdatabase/05030300.xhp\">Next page</link>"
msgstr ""
#. gTg68
@@ -4605,13 +4605,13 @@ msgctxt ""
msgid "Type formatting"
msgstr ""
-#. ybz5D
+#. Us4fH
#: 05030300.xhp
msgctxt ""
"05030300.xhp\n"
"hd_id3163829\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Type formatting\">Type formatting</link>"
+msgid "<link href=\"text/sdatabase/05030300.xhp\">Type formatting</link>"
msgstr ""
#. EkSPG
@@ -4803,13 +4803,13 @@ msgctxt ""
msgid "Assign columns"
msgstr ""
-#. qFHro
+#. 3gcch
#: 05030400.xhp
msgctxt ""
"05030400.xhp\n"
"hd_id3151100\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05030400.xhp\" name=\"Assign columns\">Assign columns</link>"
+msgid "<link href=\"text/sdatabase/05030400.xhp\">Assign columns</link>"
msgstr ""
#. EkAFg
@@ -4938,13 +4938,13 @@ msgctxt ""
msgid "General"
msgstr ""
-#. DmCQD
+#. KRtRV
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3149031\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05040000.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/sdatabase/05040000.xhp\">General</link>"
msgstr ""
#. 7ithV
@@ -4956,13 +4956,13 @@ msgctxt ""
msgid "General"
msgstr ""
-#. 5uLP9
+#. tRciQ
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153255\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05040100.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/sdatabase/05040100.xhp\">General</link>"
msgstr ""
#. LsG3R
@@ -5181,13 +5181,13 @@ msgctxt ""
msgid "Description"
msgstr ""
-#. EwUEa
+#. G7XS5
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05040200.xhp\" name=\"Description\">Description</link>"
+msgid "<link href=\"text/sdatabase/05040200.xhp\">Description</link>"
msgstr ""
#. h4VES
@@ -5226,13 +5226,13 @@ msgctxt ""
msgid "<bookmark_value>databases;drag and drop (Base)</bookmark_value>"
msgstr ""
-#. HwcVW
+#. zsGgK
#: 11000002.xhp
msgctxt ""
"11000002.xhp\n"
"hd_id3151299\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05040200.xhp\" name=\"Data sources in $[officename]\">Data sources in $[officename]</link>"
+msgid "<link href=\"text/sdatabase/05040200.xhp\">Data sources in $[officename]</link>"
msgstr ""
#. PNBCF
@@ -5244,13 +5244,13 @@ msgctxt ""
msgid "Selecting the Address Book"
msgstr ""
-#. GeoEc
+#. 9HNp8
#: 11000002.xhp
msgctxt ""
"11000002.xhp\n"
"par_id3153049\n"
"help.text"
-msgid "To select the address book that you want to use, choose <link href=\"text/shared/01/01110101.xhp\" name=\"Tools - Address Book Source\"><emph>Tools - Address Book Source</emph></link>."
+msgid "To select the address book that you want to use, choose <link href=\"text/shared/01/01110101.xhp\"><emph>Tools - Address Book Source</emph></link>."
msgstr ""
#. hdhBt
@@ -5289,22 +5289,22 @@ msgctxt ""
msgid "ODBC"
msgstr ""
-#. GCT7W
+#. RzCwH
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
"hd_id3149031\n"
"help.text"
-msgid "<link href=\"text/sdatabase/11020000.xhp\" name=\"ODBC\">ODBC</link>"
+msgid "<link href=\"text/sdatabase/11020000.xhp\">ODBC</link>"
msgstr ""
-#. kyqcm
+#. VxZFD
#: 11020000.xhp
msgctxt ""
"11020000.xhp\n"
"par_id3150499\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases. This includes your user access data, driver settings, and font definitions.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link> databases. This includes your user access data, driver settings, and font definitions.</ahelp>"
msgstr ""
#. Dbr2C
@@ -5532,13 +5532,13 @@ msgctxt ""
msgid "dBASE"
msgstr ""
-#. jQexT
+#. BEsak
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
"hd_id3153539\n"
"help.text"
-msgid "<link href=\"text/sdatabase/11030000.xhp\" name=\"dBase\">dBASE</link>"
+msgid "<link href=\"text/sdatabase/11030000.xhp\">dBASE</link>"
msgstr ""
#. EFxxW
@@ -5613,13 +5613,13 @@ msgctxt ""
msgid "Indexes"
msgstr ""
-#. BjWsR
+#. fxLDW
#: 11030000.xhp
msgctxt ""
"11030000.xhp\n"
"par_id3161656\n"
"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Opens the <link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\"><emph>Indexes</emph></link> dialog, where you can organize the table indexes in the current dBASE database.</ahelp>"
+msgid "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Opens the <link href=\"text/sdatabase/11030100.xhp\"><emph>Indexes</emph></link> dialog, where you can organize the table indexes in the current dBASE database.</ahelp>"
msgstr ""
#. vMA8w
@@ -5631,13 +5631,13 @@ msgctxt ""
msgid "Indexes"
msgstr ""
-#. x4TDi
+#. EP8y6
#: 11030100.xhp
msgctxt ""
"11030100.xhp\n"
"hd_id3148983\n"
"help.text"
-msgid "<link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\">Indexes</link>"
+msgid "<link href=\"text/sdatabase/11030100.xhp\">Indexes</link>"
msgstr ""
#. DmGsN
@@ -5793,13 +5793,13 @@ msgctxt ""
msgid "<bookmark_value>SQL; executing SQL statements (Base)</bookmark_value><bookmark_value>databases; administration through SQL (Base)</bookmark_value>"
msgstr ""
-#. JsqKF
+#. LhDmb
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<link href=\"text/sdatabase/11080000.xhp\" name=\"Execute SQL statement\">Execute SQL statement</link>"
+msgid "<link href=\"text/sdatabase/11080000.xhp\">Execute SQL statement</link>"
msgstr ""
#. BtQ2b
@@ -5820,13 +5820,13 @@ msgctxt ""
msgid "You can only enter administration commands in this dialog, such as Grant, Create Table, or Drop Table, and not filter commands. The commands that you can enter depend on the data source, for example, dBASE can only run some of the SQL commands list here."
msgstr ""
-#. JZmCZ
+#. xvNDZ
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
"par_id3154860\n"
"help.text"
-msgid "To run an SQL query for filtering data in the database, use the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design View</link>."
+msgid "To run an SQL query for filtering data in the database, use the <link href=\"text/sdatabase/02010100.xhp\">Query Design View</link>."
msgstr ""
#. Ck9G4
@@ -5973,13 +5973,13 @@ msgctxt ""
msgid "Table Filter"
msgstr ""
-#. bG74E
+#. Cf9mg
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
"hd_id3150702\n"
"help.text"
-msgid "<link href=\"text/sdatabase/11090000.xhp\" name=\"Tables\">Table Filter</link>"
+msgid "<link href=\"text/sdatabase/11090000.xhp\">Table Filter</link>"
msgstr ""
#. NLCCV
@@ -6441,13 +6441,13 @@ msgctxt ""
msgid "Respect the result set type from the database driver"
msgstr ""
-#. EZkMC
+#. SVZHu
#: dabaadvpropdat.xhp
msgctxt ""
"dabaadvpropdat.xhp\n"
"par_id641632755407673\n"
"help.text"
-msgid "Use the database driver different scroll capabilities of a result set. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1sdbc_1_1ResultSetType.html\" name=\"ResultSetType\">ResultSetType Constant Group</link>"
+msgid "Use the database driver different scroll capabilities of a result set. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1sdbc_1_1ResultSetType.html\">ResultSetType Constant Group</link>"
msgstr ""
#. BzVqp
@@ -7998,13 +7998,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the settings for importing a database file in Microsoft Access or Access 2007 format.</ahelp>"
msgstr ""
-#. FJFQi
+#. 7ooRc
#: dabawiz02access.xhp
msgctxt ""
"dabawiz02access.xhp\n"
"par_id1142772\n"
"help.text"
-msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
+msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
msgstr ""
#. 7vvBT
@@ -8412,13 +8412,13 @@ msgctxt ""
msgid "<variable id=\"jdbc\"><link href=\"text/sdatabase/dabawiz02jdbc.xhp\">JDBC Connection</link></variable>"
msgstr ""
-#. 4vvDv
+#. 2zs33
#: dabawiz02jdbc.xhp
msgctxt ""
"dabawiz02jdbc.xhp\n"
"par_idN10600\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the options to access a <link href=\"text/shared/00/00000005.xhp#jdbc\" name=\"JDBC\">JDBC</link> database.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the options to access a <link href=\"text/shared/00/00000005.xhp#jdbc\">JDBC</link> database.</ahelp>"
msgstr ""
#. MAM5R
@@ -8898,22 +8898,22 @@ msgctxt ""
msgid "<variable id=\"odbc\"><link href=\"text/sdatabase/dabawiz02odbc.xhp\">ODBC Connection</link></variable>"
msgstr ""
-#. 8AgBt
+#. tpE5b
#: dabawiz02odbc.xhp
msgctxt ""
"dabawiz02odbc.xhp\n"
"par_idN10541\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for an <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> data source connection.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the settings for an <link href=\"text/shared/00/00000005.xhp#odbc\">ODBC</link> data source connection.</ahelp>"
msgstr ""
-#. VVkvm
+#. BhskD
#: dabawiz02odbc.xhp
msgctxt ""
"dabawiz02odbc.xhp\n"
"par_id8034302\n"
"help.text"
-msgid "On Solaris and Linux platforms, try using the JDBC driver instead of the ODBC driver. Refer to the <link href=\"http://www.unixodbc.org\" name=\"CHANGE ME\">unixODBC Project</link> web page for an ODBC implementation on Solaris or Linux."
+msgid "On Solaris and Linux platforms, try using the JDBC driver instead of the ODBC driver. Refer to the <link href=\"http://www.unixodbc.org\">unixODBC Project</link> web page for an ODBC implementation on Solaris or Linux."
msgstr ""
#. PxZ9T
@@ -9177,13 +9177,13 @@ msgctxt ""
msgid "<bookmark_value>PostgreSQL settings (Base)</bookmark_value>"
msgstr ""
-#. e9apS
+#. gE46A
#: dabawiz02pgsql.xhp
msgctxt ""
"dabawiz02pgsql.xhp\n"
"hd_id971643043442131\n"
"help.text"
-msgid "<variable id=\"pgsqlh1\"><link href=\"text/sdatabase/dabawiz02pgsql.xhp\" name=\"pgconnection\">PostgreSQL Connection</link></variable>"
+msgid "<variable id=\"pgsqlh1\"><link href=\"text/sdatabase/dabawiz02pgsql.xhp\">PostgreSQL Connection</link></variable>"
msgstr ""
#. mReEM
@@ -9294,13 +9294,13 @@ msgctxt ""
msgid "The connection string is displayed in the %PRODUCTNAME Base status bar."
msgstr ""
-#. FupET
+#. LvALY
#: dabawiz02pgsql.xhp
msgctxt ""
"dabawiz02pgsql.xhp\n"
"par_id571643046067450\n"
"help.text"
-msgid "List of all keyword/value pairs for <link href=\"https://www.postgresql.org/docs/13/libpq-connect.html#LIBPQ-PARAMKEYWORDS\" name=\"PG13keywords\">PostgreSQL 13</link> connection string. Not every pair is handled by the %PRODUCTNAME driver manager."
+msgid "List of all keyword/value pairs for <link href=\"https://www.postgresql.org/docs/13/libpq-connect.html#LIBPQ-PARAMKEYWORDS\">PostgreSQL 13</link> connection string. Not every pair is handled by the %PRODUCTNAME driver manager."
msgstr ""
#. XoiBM
@@ -9591,13 +9591,13 @@ msgctxt ""
msgid "Set up user authentication"
msgstr ""
-#. wruBe
+#. FGhTp
#: dabawiz03auth.xhp
msgctxt ""
"dabawiz03auth.xhp\n"
"par_idN1053A\n"
"help.text"
-msgid "<variable id=\"authentication_h1\"><link href=\"text/sdatabase/dabawiz03auth.xhp\" name=\"auth_link\">Set up user authentication</link></variable>"
+msgid "<variable id=\"authentication_h1\"><link href=\"text/sdatabase/dabawiz03auth.xhp\">Set up user authentication</link></variable>"
msgstr ""
#. TGHfv
@@ -9789,14 +9789,14 @@ msgctxt ""
msgid "To open a database file, choose <emph>File - Open</emph>. In the <emph>File type</emph> list box, select to view only \"Database documents\". Select a database document and click <emph>Open</emph>."
msgstr "Per a obrir un fitxer de base de dades, trieu <emph>Fitxer ▸ Obri</emph>. Trieu l'opció «Documents de base de dades» al quadre de llista <emph>Tipus de fitxer</emph>. Seleccioneu un fitxer i feu clic a <emph>Obri</emph>."
-#. QFEDB
+#. znTZF
#: main.xhp
msgctxt ""
"main.xhp\n"
"par_id6474806\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link>"
-msgstr "<link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Pàgina del wiki sobre el Base</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/Database\">Wiki page about Base</link>"
+msgstr "<link href=\"https://wiki.documentfoundation.org/Database\">Pàgina del wiki sobre el Base</link>"
#. rw2xT
#: menubar.xhp
@@ -11040,13 +11040,13 @@ msgctxt ""
msgid "The wizard can backup the Base file to another folder of your choice. The wizard changes the original Base file. The backup remains unchanged."
msgstr ""
-#. WCGZK
+#. yi3tt
#: migrate_macros.xhp
msgctxt ""
"migrate_macros.xhp\n"
"par_id0112200902353554\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">An in depth explanation by the developers (Wiki).</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\">An in depth explanation by the developers (Wiki).</link>"
msgstr ""
#. WG9NH
@@ -11148,13 +11148,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">The Query Wizard helps you to design a database query.</ahelp> The saved query can be called later, either from the graphical user interface, or using the automatically created SQL language command."
msgstr ""
-#. SCN34
+#. 6gABn
#: querywizard00.xhp
msgctxt ""
"querywizard00.xhp\n"
"par_idN105D2\n"
"help.text"
-msgid "<link href=\"text/sdatabase/querywizard01.xhp\" name=\"Query Wizard - Field Selection\">Query Wizard - Field selection</link>"
+msgid "<link href=\"text/sdatabase/querywizard01.xhp\">Query Wizard - Field selection</link>"
msgstr ""
#. qKgrF
@@ -11220,13 +11220,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays all fields that will be included in the new query.</ahelp>"
msgstr ""
-#. MJBo8
+#. zwLYg
#: querywizard01.xhp
msgctxt ""
"querywizard01.xhp\n"
"par_idN10597\n"
"help.text"
-msgid "<link href=\"text/sdatabase/querywizard02.xhp\" name=\"Query Wizard - Sorting order\">Query Wizard - Sorting order</link>"
+msgid "<link href=\"text/sdatabase/querywizard02.xhp\">Query Wizard - Sorting order</link>"
msgstr ""
#. T7jwS
@@ -11328,13 +11328,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies additional fields by which the created query is sorted, if previous sort fields are equal.</ahelp>"
msgstr ""
-#. pEGB3
+#. jCDKj
#: querywizard02.xhp
msgctxt ""
"querywizard02.xhp\n"
"par_idN1056E\n"
"help.text"
-msgid "<link href=\"text/sdatabase/querywizard03.xhp\" name=\"Query Wizard - Search conditions\">Query Wizard - Search conditions</link>"
+msgid "<link href=\"text/sdatabase/querywizard03.xhp\">Query Wizard - Search conditions</link>"
msgstr ""
#. Ezdjv
@@ -11454,13 +11454,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the value for the filter condition.</ahelp>"
msgstr ""
-#. huAnr
+#. CgDng
#: querywizard03.xhp
msgctxt ""
"querywizard03.xhp\n"
"par_idN10574\n"
"help.text"
-msgid "<link href=\"text/sdatabase/querywizard04.xhp\" name=\"Query Wizard - Detail or Summary\">Query Wizard - Detail or summary</link>"
+msgid "<link href=\"text/sdatabase/querywizard04.xhp\">Query Wizard - Detail or summary</link>"
msgstr ""
#. AFtfc
@@ -11598,13 +11598,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Removes the last row of controls.</ahelp>"
msgstr ""
-#. 95hsW
+#. 9BFHw
#: querywizard04.xhp
msgctxt ""
"querywizard04.xhp\n"
"par_idN1060E\n"
"help.text"
-msgid "<link href=\"text/sdatabase/querywizard05.xhp\" name=\"Query Wizard - Grouping\">Query Wizard - Grouping</link>"
+msgid "<link href=\"text/sdatabase/querywizard05.xhp\">Query Wizard - Grouping</link>"
msgstr ""
#. d4Arr
@@ -11652,13 +11652,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays all fields that are to be used to group the query.</ahelp>"
msgstr ""
-#. bebrL
+#. LuuTu
#: querywizard05.xhp
msgctxt ""
"querywizard05.xhp\n"
"par_idN10590\n"
"help.text"
-msgid "<link href=\"text/sdatabase/querywizard06.xhp\" name=\"Query Wizard - Grouping conditions\">Query Wizard - Grouping conditions</link>"
+msgid "<link href=\"text/sdatabase/querywizard06.xhp\">Query Wizard - Grouping conditions</link>"
msgstr ""
#. FJyRe
@@ -11778,13 +11778,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the value for the grouping condition.</ahelp>"
msgstr ""
-#. tg3CC
+#. C7LuL
#: querywizard06.xhp
msgctxt ""
"querywizard06.xhp\n"
"par_idN1057C\n"
"help.text"
-msgid "<link href=\"text/sdatabase/querywizard07.xhp\" name=\"Query Wizard - Aliases\">Query Wizard - Aliases</link>"
+msgid "<link href=\"text/sdatabase/querywizard07.xhp\">Query Wizard - Aliases</link>"
msgstr ""
#. LGziG
@@ -11832,13 +11832,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the alias for the field name.</ahelp>"
msgstr ""
-#. cHhQS
+#. 833Q3
#: querywizard07.xhp
msgctxt ""
"querywizard07.xhp\n"
"par_idN1055D\n"
"help.text"
-msgid "<link href=\"text/sdatabase/querywizard08.xhp\" name=\"Query Wizard - Overview\">Query Wizard - Overview</link>"
+msgid "<link href=\"text/sdatabase/querywizard08.xhp\">Query Wizard - Overview</link>"
msgstr ""
#. ZD37L
@@ -11940,13 +11940,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays a summary of the query.</ahelp>"
msgstr ""
-#. 8k8Fx
+#. S3jE2
#: querywizard08.xhp
msgctxt ""
"querywizard08.xhp\n"
"par_idN10572\n"
"help.text"
-msgid "<link href=\"text/sdatabase/querywizard00.xhp\" name=\"Query Wizard\">Query Wizard</link>"
+msgid "<link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>"
msgstr ""
#. Us2de
@@ -12057,13 +12057,13 @@ msgctxt ""
msgid "<bookmark_value>insert fields;in report design</bookmark_value> <bookmark_value>add fields;in report design</bookmark_value> <bookmark_value>report design;add fields to report</bookmark_value>"
msgstr ""
-#. ZSrFy
+#. Z4goc
#: rep_insertfield.xhp
msgctxt ""
"rep_insertfield.xhp\n"
"hd_id361540562942432\n"
"help.text"
-msgid "<variable id=\"addfields\"><link href=\"text/sdatabase/rep_insertfield.xhp\" name=\"Add Fields\">Add fields to report</link></variable>"
+msgid "<variable id=\"addfields\"><link href=\"text/sdatabase/rep_insertfield.xhp\">Add fields to report</link></variable>"
msgstr ""
#. zFCzB
@@ -12525,13 +12525,13 @@ msgctxt ""
msgid "After selecting the table, press the Tab key to leave the Content box."
msgstr ""
-#. vmDAS
+#. vw4gh
#: rep_main.xhp
msgctxt ""
"rep_main.xhp\n"
"par_id2531815\n"
"help.text"
-msgid "The <link href=\"text/sdatabase/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window opens automatically and shows all fields of the selected table."
+msgid "The <link href=\"text/sdatabase/rep_insertfield.xhp\">Add fields to report</link> window opens automatically and shows all fields of the selected table."
msgstr ""
#. vsFKB
@@ -13047,22 +13047,22 @@ msgctxt ""
msgid "<ahelp hid=\".\">In the context menu of the Report Navigator, you see the same commands as in the Report Builder view, plus additional commands to create new functions or to delete them.</ahelp>"
msgstr ""
-#. TVyh8
+#. fA8ue
#: rep_navigator.xhp
msgctxt ""
"rep_navigator.xhp\n"
"par_id9449446\n"
"help.text"
-msgid "Functions can be entered using a syntax as specified by the <link href=\"https://en.wikipedia.org/wiki/OpenFormula\" name=\"English Wikipedia: OpenFormula\">OpenFormula</link> proposal."
+msgid "Functions can be entered using a syntax as specified by the <link href=\"https://en.wikipedia.org/wiki/OpenFormula\">OpenFormula</link> proposal."
msgstr ""
-#. 3GfjV
+#. N9UtL
#: rep_navigator.xhp
msgctxt ""
"rep_navigator.xhp\n"
"par_id4095583\n"
"help.text"
-msgid "See <link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link> for some more help regarding the functions in a report."
+msgid "See <link href=\"https://wiki.documentfoundation.org/Database\">Wiki page about Base</link> for some more help regarding the functions in a report."
msgstr ""
#. 2spAx
@@ -13389,13 +13389,13 @@ msgctxt ""
msgid "Select a table from the Contents list, then press Tab or click outside the input box to leave the input box."
msgstr ""
-#. krzKx
+#. Shznq
#: rep_prop.xhp
msgctxt ""
"rep_prop.xhp\n"
"par_id3587145\n"
"help.text"
-msgid "<ahelp hid=\".\">The <link href=\"text/sdatabase/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
+msgid "<ahelp hid=\".\">The <link href=\"text/sdatabase/rep_insertfield.xhp\">Add fields to report</link> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
msgstr ""
#. 5BJS6
@@ -13911,13 +13911,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">The Table Wizard helps you to create a database table.</ahelp>"
msgstr ""
-#. UBG57
+#. oP89L
#: tablewizard00.xhp
msgctxt ""
"tablewizard00.xhp\n"
"par_idN105AF\n"
"help.text"
-msgid "<link href=\"text/sdatabase/tablewizard01.xhp\" name=\"Table Wizard - Select fields\">Table Wizard - Select fields</link>"
+msgid "<link href=\"text/sdatabase/tablewizard01.xhp\">Table Wizard - Select fields</link>"
msgstr ""
#. GgEVx
@@ -14019,13 +14019,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays all fields that will be included in the new table.</ahelp>"
msgstr ""
-#. 4LVS2
+#. H6o7L
#: tablewizard01.xhp
msgctxt ""
"tablewizard01.xhp\n"
"par_idN105A9\n"
"help.text"
-msgid "<link href=\"text/sdatabase/tablewizard02.xhp\" name=\"Table Wizard - Set types and formats\">Table Wizard - Set types and formats</link>"
+msgid "<link href=\"text/sdatabase/tablewizard02.xhp\">Table Wizard - Set types and formats</link>"
msgstr ""
#. EYiHW
@@ -14280,13 +14280,13 @@ msgctxt ""
msgid "For this example, you must enter AUTO_INCREMENT into the Auto-increment statement box."
msgstr ""
-#. c3dzF
+#. 6eGBw
#: tablewizard02.xhp
msgctxt ""
"tablewizard02.xhp\n"
"par_idN105A9\n"
"help.text"
-msgid "<link href=\"text/sdatabase/tablewizard03.xhp\" name=\"Table Wizard - Set primary key\">Table Wizard - Set primary key</link>"
+msgid "<link href=\"text/sdatabase/tablewizard03.xhp\">Table Wizard - Set primary key</link>"
msgstr ""
#. 347MF
@@ -14460,13 +14460,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select a field and click < to remove it from the list of primary key fields. The primary key is created as a concatenation of the fields in this list, from top to bottom.</ahelp>"
msgstr ""
-#. GBnsP
+#. VjAv4
#: tablewizard03.xhp
msgctxt ""
"tablewizard03.xhp\n"
"par_idN105A1\n"
"help.text"
-msgid "<link href=\"text/sdatabase/tablewizard04.xhp\" name=\"Table Wizard - Create table\">Table Wizard - Create table</link>"
+msgid "<link href=\"text/sdatabase/tablewizard04.xhp\">Table Wizard - Create table</link>"
msgstr ""
#. GNFKT
@@ -14604,13 +14604,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select to create a form based on this table. The form is created on a text document with the last used settings of the <link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link>.</ahelp>"
msgstr ""
-#. wHGrL
+#. qaF6g
#: tablewizard04.xhp
msgctxt ""
"tablewizard04.xhp\n"
"par_idN10580\n"
"help.text"
-msgid "<link href=\"text/sdatabase/tablewizard00.xhp\" name=\"Table Wizard\">Table Wizard</link>"
+msgid "<link href=\"text/sdatabase/tablewizard00.xhp\">Table Wizard</link>"
msgstr ""
#. QjNBA
@@ -14622,13 +14622,13 @@ msgctxt ""
msgid "Database Form Toolbar"
msgstr ""
-#. ViBjA
+#. cA8ZL
#: toolbar_form.xhp
msgctxt ""
"toolbar_form.xhp\n"
"par_idN10548\n"
"help.text"
-msgid "<variable id=\"DatabaseFormToolbarh1\"><link href=\"text/sdatabase/toolbar_form.xhp\" name=\"Database Form Toolbar\">Database Form Toolbar</link></variable>"
+msgid "<variable id=\"DatabaseFormToolbarh1\"><link href=\"text/sdatabase/toolbar_form.xhp\">Database Form Toolbar</link></variable>"
msgstr ""
#. Ndnbt
@@ -14775,13 +14775,13 @@ msgctxt ""
msgid "Database Query Toolbar"
msgstr ""
-#. MVKFj
+#. xAtmF
#: toolbar_query.xhp
msgctxt ""
"toolbar_query.xhp\n"
"par_idN10548\n"
"help.text"
-msgid "<variable id=\"DatabaseQueryToolbarh1\"><link href=\"text/sdatabase/toolbar_query.xhp\" name=\"Database Query Toolbar\">Database Query Toolbar</link></variable>"
+msgid "<variable id=\"DatabaseQueryToolbarh1\"><link href=\"text/sdatabase/toolbar_query.xhp\">Database Query Toolbar</link></variable>"
msgstr ""
#. bj47W
@@ -14955,13 +14955,13 @@ msgctxt ""
msgid "Database Report Toolbar"
msgstr ""
-#. N5Spv
+#. wAGEK
#: toolbar_report.xhp
msgctxt ""
"toolbar_report.xhp\n"
"par_idN10548\n"
"help.text"
-msgid "<variable id=\"DatabaseReportToolbarh1\"><link href=\"text/sdatabase/toolbar_report.xhp\" name=\"Database Report Toolbar\">Database Report Toolbar</link></variable>"
+msgid "<variable id=\"DatabaseReportToolbarh1\"><link href=\"text/sdatabase/toolbar_report.xhp\">Database Report Toolbar</link></variable>"
msgstr ""
#. TaKok
@@ -15135,13 +15135,13 @@ msgctxt ""
msgid "Database Table Toolbar"
msgstr ""
-#. 6DNGE
+#. Y5QMb
#: toolbar_table.xhp
msgctxt ""
"toolbar_table.xhp\n"
"par_idN10548\n"
"help.text"
-msgid "<variable id=\"DatabaseTableToolbarh1\"><link href=\"text/sdatabase/toolbar_table.xhp\" name=\"Database Table Toolbar\">Database Table Toolbar</link></variable>"
+msgid "<variable id=\"DatabaseTableToolbarh1\"><link href=\"text/sdatabase/toolbar_table.xhp\">Database Table Toolbar</link></variable>"
msgstr ""
#. Y57HF
diff --git a/source/ca-valencia/helpcontent2/source/text/sdraw.po b/source/ca-valencia/helpcontent2/source/text/sdraw.po
index 9e1540e1488..8f4974b5390 100644
--- a/source/ca-valencia/helpcontent2/source/text/sdraw.po
+++ b/source/ca-valencia/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-07-18 19:35+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/ca_VALENCIA/>\n"
@@ -62,14 +62,14 @@ msgctxt ""
msgid "Menus"
msgstr "Menús"
-#. SBAWQ
+#. 2T68b
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
"hd_id3148664\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=\"Menús\">Menús</link></variable>"
+msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\">Menús</link></variable>"
#. tFQeA
#: main0100.xhp
@@ -89,14 +89,14 @@ msgctxt ""
msgid "File"
msgstr "Fitxer"
-#. JFaPu
+#. 7XCmg
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
"hd_id3149655\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/sdraw/main0101.xhp\" name=\"Fitxer\">Fitxer</link>"
+msgid "<link href=\"text/sdraw/main0101.xhp\">File</link>"
+msgstr "<link href=\"text/sdraw/main0101.xhp\">Fitxer</link>"
#. SAvAx
#: main0101.xhp
@@ -116,14 +116,14 @@ msgctxt ""
msgid "View (menu in Draw)"
msgstr ""
-#. hWYJ3
+#. ztEek
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3152576\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"Visualitza\">Visualitza</link>"
+msgid "<link href=\"text/sdraw/main0103.xhp\">View</link>"
+msgstr "<link href=\"text/sdraw/main0103.xhp\">Visualitza</link>"
#. 2pJgE
#: main0103.xhp
@@ -170,13 +170,13 @@ msgctxt ""
msgid "Switch to the master view."
msgstr ""
-#. nstgU
+#. fVFKG
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id221605492986383\n"
"help.text"
-msgid "<link href=\"text/shared/01/notebook_bar.xhp\" name=\"userinterface\">User Interface</link>"
+msgid "<link href=\"text/shared/01/notebook_bar.xhp\">User Interface</link>"
msgstr ""
#. tYxbF
@@ -224,14 +224,14 @@ msgctxt ""
msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position."
msgstr ""
-#. 7AgpR
+#. DifEy
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3149666\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Escala\">Escala</link>"
+msgid "<link href=\"text/shared/01/03010000.xhp\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\">Escala</link>"
#. 5DRv5
#: main0200.xhp
@@ -242,14 +242,14 @@ msgctxt ""
msgid "Toolbars"
msgstr "Barres d'eines"
-#. Gf9zj
+#. exKeK
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
"hd_id3148663\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=\"Barres d'eines\">Barres d'eines</link></variable>"
+msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\">Barres d'eines</link></variable>"
#. JmCQG
#: main0200.xhp
@@ -269,14 +269,14 @@ msgctxt ""
msgid "Line and Filling Bar"
msgstr "Barra de línia i d'emplenament"
-#. 46PvE
+#. ghWFK
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3149669\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=\"Barra de línia i d'emplenament\">Barra de línia i d'emplenament</link>"
+msgid "<link href=\"text/sdraw/main0202.xhp\">Line and Filling Bar</link>"
+msgstr "<link href=\"text/sdraw/main0202.xhp\">Barra de línia i d'emplenament</link>"
#. ZbyBP
#: main0202.xhp
@@ -287,50 +287,50 @@ msgctxt ""
msgid "The Line and Filling bar contains commands for the current editing mode."
msgstr "La barra de línia i d'emplenament conté ordes per al mode d'edició actual."
-#. cqoEt
+#. yCmrn
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3149664\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=\"Estil de la línia\">Estil de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Estil de la línia</link>"
-#. iCRac
+#. YQzrf
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3156285\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=\"Amplària de la línia\">Amplària de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Amplària de la línia</link>"
-#. ukpCB
+#. oRSGQ
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3154015\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=\"Color de la línia\">Color de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Color de la línia</link>"
-#. zgxbz
+#. gsvMD
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3155767\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=\"Estil/emplenament de l'àrea\">Estil/emplenament de l'àrea</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Area Style / Filling</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\">Estil/emplenament de l'àrea</link>"
-#. uD4cw
+#. VWViU
#: 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=\"Ombra\">Ombra</link>"
+msgid "<link href=\"text/shared/01/05210600.xhp\">Shadow</link>"
+msgstr "<link href=\"text/shared/01/05210600.xhp\">Ombra</link>"
#. GtNCm
#: main0210.xhp
@@ -341,14 +341,14 @@ msgctxt ""
msgid "Drawing Bar"
msgstr "Barra de dibuix"
-#. sgA99
+#. UxDbt
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"hd_id3150398\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
-msgstr "<link href=\"text/sdraw/main0210.xhp\" name=\"Barra de dibuix\">Barra de dibuix</link>"
+msgid "<link href=\"text/sdraw/main0210.xhp\">Drawing Bar</link>"
+msgstr "<link href=\"text/sdraw/main0210.xhp\">Barra de dibuix</link>"
#. zm9tL
#: main0210.xhp
@@ -413,14 +413,14 @@ msgctxt ""
msgid "Draws a text box where you click or drag in the current document. Click anywhere in the document, and then type or paste your text."
msgstr "Dibuixa un quadre de text en un punt qualsevol del document. Feu clic sobre un punt del document i, tot seguit, teclegeu o enganxeu-hi el text."
-#. Ao4VC
+#. YjDX6
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"par_idN107C8\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10120000.xhp\" name=\"Lines and Arrows\">Lines and Arrows</link>"
-msgstr "<link href=\"text/simpress/02/10120000.xhp\" name=\"Línies i fletxes\">Línies i fletxes</link>"
+msgid "<link href=\"text/simpress/02/10120000.xhp\">Lines and Arrows</link>"
+msgstr "<link href=\"text/simpress/02/10120000.xhp\">Línies i fletxes</link>"
#. JqBX6
#: main0210.xhp
@@ -431,14 +431,14 @@ msgctxt ""
msgid "Opens the Arrows toolbar to insert lines and arrows."
msgstr "Obri la barra d'eines Fletxes per inserir línies i fletxes."
-#. eQi5s
+#. Cbwya
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"par_idN106B4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punts\">Punts</link>"
+msgid "<link href=\"text/shared/01/05270000.xhp\">Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\">Punts</link>"
#. kGHZx
#: main0210.xhp
@@ -449,13 +449,13 @@ msgctxt ""
msgid "Enables you to edit points on your drawing."
msgstr "Permet editar punts del dibuix."
-#. NEWtS
+#. WFKgG
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"par_idN106C8\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Gluepoints\">Gluepoints</link>"
+msgid "<link href=\"text/simpress/02/10030200.xhp\">Gluepoints</link>"
msgstr ""
#. kz8Fw
@@ -467,23 +467,23 @@ msgctxt ""
msgid "Enables you to edit gluepoints on your drawing."
msgstr ""
-#. 3Cwi3
+#. XYEHy
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"par_idN10754\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=\"Des d'un fitxer\">Des d'un fitxer</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\">Des d'un fitxer</link>"
-#. girLt
+#. ACWmF
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"par_idN1072C\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
-msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls de formulari\">Controls de formulari</link>"
+msgid "<link href=\"text/shared/02/01170000.xhp\">Form Controls</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\">Controls de formulari</link>"
#. xwSos
#: main0210.xhp
@@ -512,14 +512,14 @@ msgctxt ""
msgid "Options Bar"
msgstr "Barra d'opcions"
-#. h8Gkq
+#. CeNwv
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3150793\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0213.xhp\" name=\"Options Bar\">Options Bar</link>"
-msgstr "<link href=\"text/sdraw/main0213.xhp\" name=\"Barra d'opcions\">Barra d'opcions</link>"
+msgid "<link href=\"text/sdraw/main0213.xhp\">Options Bar</link>"
+msgstr "<link href=\"text/sdraw/main0213.xhp\">Barra d'opcions</link>"
#. kRNpY
#: main0213.xhp
@@ -530,86 +530,86 @@ msgctxt ""
msgid "The <emph>Options</emph> bar can be displayed by choosing <emph>View - Toolbars - Options</emph>."
msgstr "Per mostrar la barra d'<emph>opcions</emph>, seleccioneu <emph>Visualitza - Barres d'eines - Opcions</emph>."
-#. Evbup
+#. qz24k
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3145251\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=\"Mostra la graella\">Mostra la graella</link>"
+msgid "<link href=\"text/shared/02/01171200.xhp\">Display Grid</link>"
+msgstr "<link href=\"text/shared/02/01171200.xhp\">Mostra la graella</link>"
-#. 4tnwC
+#. 6f45H
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3149018\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=\"Guies en moure\">Guies en moure</link>"
+msgid "<link href=\"text/shared/02/01171400.xhp\">Helplines While Moving</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\">Guies en moure</link>"
-#. tASZG
+#. 6fEGX
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3147338\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=\"Ajusta a la graella\">Ajusta a la graella</link>"
+msgid "<link href=\"text/shared/02/01171300.xhp\">Snap to Grid</link>"
+msgstr "<link href=\"text/shared/02/01171300.xhp\">Ajusta a la graella</link>"
-#. ffABh
+#. pFCFY
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3146313\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\">Snap to Snap Guides</link>"
msgstr ""
-#. eUTG8
+#. ADHie
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3155111\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
-msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Ajusta als marges de la pàgina\">Ajusta als marges de la pàgina</link>"
+msgid "<link href=\"text/simpress/02/13150000.xhp\">Snap to Page Margins</link>"
+msgstr "<link href=\"text/simpress/02/13150000.xhp\">Ajusta als marges de la pàgina</link>"
-#. jkDCy
+#. jmTC3
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3150343\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Snap to Object Border</link>"
-msgstr "<link href=\"text/simpress/02/13160000.xhp\" name=\"Ajusta a la vora de l'objecte\">Ajusta a la vora de l'objecte</link>"
+msgid "<link href=\"text/simpress/02/13160000.xhp\">Snap to Object Border</link>"
+msgstr "<link href=\"text/simpress/02/13160000.xhp\">Ajusta a la vora de l'objecte</link>"
-#. ZNCTw
+#. 4SZDE
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3150368\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Snap to Object Points</link>"
-msgstr "<link href=\"text/simpress/02/13170000.xhp\" name=\"Ajusta als punts de l'objecte\">Ajusta als punts de l'objecte</link>"
+msgid "<link href=\"text/simpress/02/13170000.xhp\">Snap to Object Points</link>"
+msgstr "<link href=\"text/simpress/02/13170000.xhp\">Ajusta als punts de l'objecte</link>"
-#. A3zrT
+#. TmCuw
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3146980\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
-msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Permet l'edició ràpida\">Permet l'edició ràpida</link>"
+msgid "<link href=\"text/simpress/02/13180000.xhp\">Allow Quick Editing</link>"
+msgstr "<link href=\"text/simpress/02/13180000.xhp\">Permet l'edició ràpida</link>"
-#. qPC3y
+#. zFehE
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3148870\n"
"help.text"
-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=\"Selecciona només l'àrea de text\">Selecciona només l'àrea de text</link>"
+msgid "<link href=\"text/simpress/02/13190000.xhp\">Select Text Area Only</link>"
+msgstr "<link href=\"text/simpress/02/13190000.xhp\">Selecciona només l'àrea de text</link>"
#. G6tEE
#: main0503.xhp
@@ -620,14 +620,14 @@ msgctxt ""
msgid "$[officename] Draw Features"
msgstr "Funcions del $[officename] Draw"
-#. JzsHu
+#. oVZN8
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"hd_id3148797\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=\"Funcions del $[officename] Draw\">Funcions del $[officename] Draw</link></variable>"
+msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\">$[officename] Draw Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\">Funcions del $[officename] Draw</link></variable>"
#. VMQj3
#: main0503.xhp
@@ -773,14 +773,14 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. eHH6s
+#. RhBMk
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3150868\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">Edita</link>"
+msgid "<link href=\"text/sdraw/main_edit.xhp\">Edit</link>"
+msgstr "<link href=\"text/sdraw/main_edit.xhp\">Edita</link>"
#. cAYyU
#: main_edit.xhp
@@ -791,23 +791,23 @@ msgctxt ""
msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
msgstr "Les ordres d'aquest menú s'utilitzen per editar documents del Draw (per exemple, copiar i enganxar)."
-#. dCFBH
+#. 2ZFyY
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3149400\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=\"Cerca i reemplaça\">Cerca i reemplaça</link>"
+msgid "<link href=\"text/shared/01/02100000.xhp\">Find & Replace</link>"
+msgstr "<link href=\"text/shared/01/02100000.xhp\">Cerca i reemplaça</link>"
-#. EDbMF
+#. 2jQBn
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3153713\n"
"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punts\">Punts</link>"
+msgid "<link href=\"text/shared/01/05270000.xhp\">Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\">Punts</link>"
#. NnmQG
#: main_edit.xhp
@@ -818,13 +818,13 @@ msgctxt ""
msgid "Enables you to edit points on your drawing."
msgstr "Permet editar punts del dibuix."
-#. PwD6E
+#. AVFUv
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3149258\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Gluepoints\">Gluepoints</link>"
+msgid "<link href=\"text/simpress/02/10030200.xhp\">Gluepoints</link>"
msgstr ""
#. JaiGm
@@ -836,50 +836,50 @@ msgctxt ""
msgid "Enables you to edit gluepoints on your drawing."
msgstr ""
-#. UBmhX
+#. FzjXf
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3147005\n"
"help.text"
-msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplica\">Duplica</link>"
+msgid "<link href=\"text/simpress/01/02120000.xhp\">Duplicate</link>"
+msgstr "<link href=\"text/simpress/01/02120000.xhp\">Duplica</link>"
-#. XQCCp
+#. h9TZc
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3150205\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=\"Cross-fading\">Esvaïment creuat</link>"
+msgid "<link href=\"text/simpress/01/02150000.xhp\">Cross-fading</link>"
+msgstr "<link href=\"text/simpress/01/02150000.xhp\">Esvaïment creuat</link>"
-#. BpuJr
+#. tDEjn
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3154650\n"
"help.text"
-msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Camps\">Camps</link>"
+msgid "<link href=\"text/simpress/01/02160000.xhp\">Fields</link>"
+msgstr "<link href=\"text/simpress/01/02160000.xhp\">Camps</link>"
-#. 74Gpk
+#. G8D75
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3156446\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Enllaços\">Enllaços</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\">Enllaços</link>"
-#. Q99rM
+#. m5jGw
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3157867\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Enllaç\">Enllaç</link>"
+msgid "<link href=\"text/shared/02/09070000.xhp\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\">Enllaç</link>"
#. XiyED
#: main_format.xhp
@@ -890,14 +890,14 @@ msgctxt ""
msgid "Format"
msgstr "Format"
-#. XL3Bn
+#. BKDNo
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3153770\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
+msgid "<link href=\"text/sdraw/main_format.xhp\">Format</link>"
+msgstr "<link href=\"text/sdraw/main_format.xhp\">Format</link>"
#. Ti6qw
#: main_format.xhp
@@ -908,77 +908,77 @@ msgctxt ""
msgid "Contains commands for formatting the layout and the contents of your document."
msgstr "Conté ordres per a formatar l'estructura i els continguts del document."
-#. eMepm
+#. BMF3u
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3155111\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caràcter\">Caràcter</link>"
+msgid "<link href=\"text/shared/01/05020000.xhp\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\">Caràcter</link>"
-#. 9SCjr
+#. xSsWe
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3146979\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paràgraf\">Paràgraf</link>"
+msgid "<link href=\"text/shared/01/05030000.xhp\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\">Paràgraf</link>"
-#. VEmp5
+#. VoA2B
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3166426\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=\"Pics i numeració\">Pics i numeració</link>"
+msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\">Pics i numeració</link>"
-#. fLEQz
+#. 4GcGA
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3146971\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=\"Posició i mida\">Posició i mida</link>"
+msgid "<link href=\"text/shared/01/05230000.xhp\">Position and Size</link>"
+msgstr "<link href=\"text/shared/01/05230000.xhp\">Posició i mida</link>"
-#. hn5ET
+#. LfVUx
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3148576\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Línia\">Línia</link>"
+msgid "<link href=\"text/shared/01/05200000.xhp\">Line</link>"
+msgstr "<link href=\"text/shared/01/05200000.xhp\">Línia</link>"
-#. 6qAxm
+#. Njnqu
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3151076\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Àrea\">Àrea</link>"
+msgid "<link href=\"text/shared/01/05210000.xhp\">Area</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\">Àrea</link>"
-#. o6mDT
+#. C53yb
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3153878\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text Attributes</link>"
+msgid "<link href=\"text/shared/01/05990000.xhp\">Text Attributes</link>"
msgstr ""
-#. mjNtZ
+#. hCmXa
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3153913\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/modify_layer.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/sdraw/01/modify_layer.xhp\" name=\"Capa\">Capa</link>"
+msgid "<link href=\"text/sdraw/01/modify_layer.xhp\">Layer</link>"
+msgstr "<link href=\"text/sdraw/01/modify_layer.xhp\">Capa</link>"
#. 9RWyM
#: main_insert.xhp
@@ -989,14 +989,14 @@ msgctxt ""
msgid "Insert"
msgstr "Insereix"
-#. abTEE
+#. Ywrzw
#: main_insert.xhp
msgctxt ""
"main_insert.xhp\n"
"hd_id3148797\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insereix\">Insereix</link>"
+msgid "<link href=\"text/sdraw/main_insert.xhp\">Insert</link>"
+msgstr "<link href=\"text/sdraw/main_insert.xhp\">Insereix</link>"
#. GrG2G
#: main_insert.xhp
@@ -1007,32 +1007,32 @@ msgctxt ""
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
msgstr "Aquest menú permet inserir elements, com ara gràfics i guies, en documents del Draw."
-#. E9fwJ
+#. wDZgc
#: main_insert.xhp
msgctxt ""
"main_insert.xhp\n"
"hd_id3156385\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Taula\">Taula</link>"
+msgid "<link href=\"text/simpress/01/04080100.xhp\">Table</link>"
+msgstr "<link href=\"text/simpress/01/04080100.xhp\">Taula</link>"
-#. GCs6k
+#. E6C3A
#: main_insert.xhp
msgctxt ""
"main_insert.xhp\n"
"hd_id3147397\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
-msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insereix un punt o una línia de captura\">Insereix un punt o una línia de captura</link>"
+msgid "<link href=\"text/simpress/01/04030000.xhp\">Insert Snap Point/Line</link>"
+msgstr "<link href=\"text/simpress/01/04030000.xhp\">Insereix un punt o una línia de captura</link>"
-#. C2uTH
+#. p83aa
#: main_insert.xhp
msgctxt ""
"main_insert.xhp\n"
"hd_id3146974\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/insert_layer.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/sdraw/01/insert_layer.xhp\" name=\"Capa\">Capa</link>"
+msgid "<link href=\"text/sdraw/01/insert_layer.xhp\">Layer</link>"
+msgstr "<link href=\"text/sdraw/01/insert_layer.xhp\">Capa</link>"
#. TKFxh
#: main_insert.xhp
@@ -1052,50 +1052,50 @@ msgctxt ""
msgid "Insert a text box"
msgstr "Insereix un quadre de text"
-#. y6QtH
+#. BguoD
#: main_insert.xhp
msgctxt ""
"main_insert.xhp\n"
"hd_id0915200910361385\n"
"help.text"
-msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comentari\">Comentari</link>"
+msgid "<link href=\"text/shared/01/04050000.xhp\">Comment</link>"
+msgstr "<link href=\"text/shared/01/04050000.xhp\">Comentari</link>"
-#. WYQkk
+#. HZJuV
#: main_insert.xhp
msgctxt ""
"main_insert.xhp\n"
"hd_id3155111\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=\"Marc flotant\">Marc flotant</link>"
+msgid "<link href=\"text/shared/01/04160500.xhp\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\">Marc flotant</link>"
-#. D6Ewj
+#. r4EZx
#: main_insert.xhp
msgctxt ""
"main_insert.xhp\n"
"hd_id281566080377117\n"
"help.text"
-msgid "<link href=\"text/shared/guide/fontwork.xhp\" name=\"Fontwork\">FontWork</link>"
-msgstr "<link href=\"text/shared/guide/fontwork.xhp\" name=\"Fontwork\">FontWork</link>"
+msgid "<link href=\"text/shared/guide/fontwork.xhp\">FontWork</link>"
+msgstr "<link href=\"text/shared/guide/fontwork.xhp\">FontWork</link>"
-#. P2Wyr
+#. g8FAE
#: main_insert.xhp
msgctxt ""
"main_insert.xhp\n"
"hd_id3150749\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Enllaç\">Enllaç</link>"
+msgid "<link href=\"text/shared/02/09070000.xhp\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\">Enllaç</link>"
-#. WSFER
+#. Ms6tH
#: main_insert.xhp
msgctxt ""
"main_insert.xhp\n"
"hd_id3154018\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=\"Caràcter especial\">Caràcter especial</link>"
+msgid "<link href=\"text/shared/01/04100000.xhp\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\">Caràcter especial</link>"
#. yDfCU
#: main_insert.xhp
@@ -1142,14 +1142,14 @@ msgctxt ""
msgid "This menu provides drawing page management and navigation commands."
msgstr "Aquest menú conté ordres per a la gestió i la navegació en les pàgines dels dibuixos."
-#. jZdEE
+#. RJq6T
#: main_page.xhp
msgctxt ""
"main_page.xhp\n"
"hd_id3155091\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Propietats\">Propietats</link>"
+msgid "<link href=\"text/sdraw/01/page_properties.xhp\">Properties</link>"
+msgstr "<link href=\"text/sdraw/01/page_properties.xhp\">Propietats</link>"
#. 2pA94
#: main_page.xhp
@@ -1214,14 +1214,14 @@ msgctxt ""
msgid "Shape"
msgstr "Forma"
-#. 3mTv4
+#. C5hGB
#: main_shape.xhp
msgctxt ""
"main_shape.xhp\n"
"hd_id381558217682354\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_shape.xhp\" name=\"shape menu\">Shape</link>"
-msgstr "<link href=\"text/sdraw/main_shape.xhp\" name=\"Menú Forma\">Forma</link>"
+msgid "<link href=\"text/sdraw/main_shape.xhp\">Shape</link>"
+msgstr "<link href=\"text/sdraw/main_shape.xhp\">Forma</link>"
#. Eeyb5
#: main_shape.xhp
@@ -1241,14 +1241,14 @@ msgctxt ""
msgid "Tools"
msgstr "Eines"
-#. voPKh
+#. ds2D7
#: main_tools.xhp
msgctxt ""
"main_tools.xhp\n"
"hd_id3159155\n"
"help.text"
-msgid "<link href=\"text/sdraw/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/sdraw/main_tools.xhp\" name=\"Eines\">Eines</link>"
+msgid "<link href=\"text/sdraw/main_tools.xhp\">Tools</link>"
+msgstr "<link href=\"text/sdraw/main_tools.xhp\">Eines</link>"
#. RVeBo
#: main_tools.xhp
@@ -1259,29 +1259,29 @@ msgctxt ""
msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
msgstr "Aquest menú proporciona eines per al $[officename] Draw, així com l'accés a la configuració de la llengua i del sistema."
-#. QBgiC
+#. Bk7Nc
#: main_tools.xhp
msgctxt ""
"main_tools.xhp\n"
"hd_id3148699\n"
"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Mapa d'imatge\">Mapa d'imatge</link>"
+msgid "<link href=\"text/shared/01/02220000.xhp\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\">Mapa d'imatge</link>"
-#. iB9BC
+#. b6Af6
#: main_tools.xhp
msgctxt ""
"main_tools.xhp\n"
"hd_id3153415\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Opcions de correcció automàtica</link>"
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\">Opcions de correcció automàtica</link>"
-#. U5jsV
+#. Emwys
#: main_tools.xhp
msgctxt ""
"main_tools.xhp\n"
"hd_id3150044\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Personalitza\">Personalitza</link>"
+msgid "<link href=\"text/shared/01/06140000.xhp\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\">Personalitza</link>"
diff --git a/source/ca-valencia/helpcontent2/source/text/sdraw/01.po b/source/ca-valencia/helpcontent2/source/text/sdraw/01.po
index 8d27b67ce78..fb7e2e051dd 100644
--- a/source/ca-valencia/helpcontent2/source/text/sdraw/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw01/ca_VALENCIA/>\n"
@@ -485,13 +485,13 @@ msgctxt ""
msgid "<bookmark_value>text box consolidation</bookmark_value><bookmark_value>join PDF lines;text box consolidation</bookmark_value><bookmark_value>combine text box;text box consolidation</bookmark_value><bookmark_value>combine text frames;text box consolidation</bookmark_value>"
msgstr ""
-#. BqmVv
+#. naVUY
#: consolidatetext.xhp
msgctxt ""
"consolidatetext.xhp\n"
"hd_id861623510996086\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\" name=\"consolidate text\">Text Box Consolidation</link>"
+msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Text Box Consolidation</link>"
msgstr ""
#. zsb7F
@@ -629,14 +629,14 @@ msgctxt ""
msgid "Delete Page"
msgstr "Suprimeix la pàgina"
-#. P4xnm
+#. E6HqB
#: delete_page.xhp
msgctxt ""
"delete_page.xhp\n"
"hd_id3150202\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/delete_page.xhp\" name=\"Delete Page\">Delete Page</link>"
-msgstr "<link href=\"text/sdraw/01/delete_page.xhp\" name=\"Suprimeix la pàgina\">Suprimeix la pàgina</link>"
+msgid "<link href=\"text/sdraw/01/delete_page.xhp\">Delete Page</link>"
+msgstr "<link href=\"text/sdraw/01/delete_page.xhp\">Suprimeix la pàgina</link>"
#. bZsV9
#: delete_page.xhp
@@ -656,14 +656,14 @@ msgctxt ""
msgid "Duplicate Page"
msgstr "Duplica la pàgina"
-#. roEJR
+#. epDEA
#: duplicate_page.xhp
msgctxt ""
"duplicate_page.xhp\n"
"hd_id3148576\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/duplicate_page.xhp\" name=\"Duplicate Page\">Duplicate Page</link>"
-msgstr "<link href=\"text/sdraw/01/duplicate_page.xhp\" name=\"Duplica la pàgina\">Duplica la pàgina</link>"
+msgid "<link href=\"text/sdraw/01/duplicate_page.xhp\">Duplicate Page</link>"
+msgstr "<link href=\"text/sdraw/01/duplicate_page.xhp\">Duplica la pàgina</link>"
#. iyueQ
#: duplicate_page.xhp
@@ -863,14 +863,14 @@ msgctxt ""
msgid "Page Navigation"
msgstr "Navegació per les pàgines"
-#. A7dPr
+#. 5My2A
#: navigate_page.xhp
msgctxt ""
"navigate_page.xhp\n"
"hd_id341566156032976\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/navigate_page.xhp\" name=\"navigate\">Page Navigation</link>"
-msgstr "<link href=\"text/sdraw/01/navigate_page.xhp\" name=\"navega\">Navegació per les pàgines</link>"
+msgid "<link href=\"text/sdraw/01/navigate_page.xhp\">Page Navigation</link>"
+msgstr "<link href=\"text/sdraw/01/navigate_page.xhp\">Navegació per les pàgines</link>"
#. eMTew
#: navigate_page.xhp
@@ -890,14 +890,14 @@ msgctxt ""
msgid "New Page"
msgstr "Pàgina nova"
-#. MtFzR
+#. XnEYp
#: new_page.xhp
msgctxt ""
"new_page.xhp\n"
"hd_id3150202\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">Pàgina nova</link>"
+msgid "<link href=\"text/sdraw/01/new_page.xhp\">New Page</link>"
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\">Pàgina nova</link>"
#. DfCDK
#: new_page.xhp
@@ -953,14 +953,14 @@ msgctxt ""
msgid "Rename Page"
msgstr "Canvia el nom de la pàgina"
-#. pEyqm
+#. SmjbJ
#: rename_page.xhp
msgctxt ""
"rename_page.xhp\n"
"hd_id301566092814709\n"
"help.text"
-msgid "<link href=\"text/sdraw/01/rename_page.xhp\" name=\"rename page\">Rename Page</link>"
-msgstr "<link href=\"text/sdraw/01/rename_page.xhp\" name=\"Canvia el nom de la pàgina\">Canvia el nom de la pàgina</link>"
+msgid "<link href=\"text/sdraw/01/rename_page.xhp\">Rename Page</link>"
+msgstr "<link href=\"text/sdraw/01/rename_page.xhp\">Canvia el nom de la pàgina</link>"
#. FHcgw
#: rename_page.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/sdraw/04.po b/source/ca-valencia/helpcontent2/source/text/sdraw/04.po
index 09c12842cf4..41dff5717d7 100644
--- a/source/ca-valencia/helpcontent2/source/text/sdraw/04.po
+++ b/source/ca-valencia/helpcontent2/source/text/sdraw/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2018-01-15 13:20+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>shortcut keys;in drawings</bookmark_value> <bookmark_value>drawings; shortcut keys</bookmark_value>"
msgstr "<bookmark_value>tecles de drecera; als dibuixos</bookmark_value><bookmark_value>dibuixos; tecles de drecera</bookmark_value>"
-#. 3pUmX
+#. dRd3N
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3156441\n"
"help.text"
-msgid "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" name=\"Shortcut Keys for Drawings\">Shortcut Keys for Drawings</link></variable>"
-msgstr "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\" name=\"Tecles de drecera per a dibuixos\">Tecles de drecera per a dibuixos</link></variable>"
+msgid "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\">Shortcut Keys for Drawings</link></variable>"
+msgstr "<variable id=\"draw_keys\"><link href=\"text/sdraw/04/01020000.xhp\">Tecles de drecera per a dibuixos</link></variable>"
#. 92ApE
#: 01020000.xhp
@@ -53,14 +53,14 @@ msgctxt ""
msgid "The following is a list of shortcut keys specific to Drawing documents."
msgstr "Llista de tecles de drecera específiques per als documents del Draw."
-#. 5pGEJ
+#. SCBBa
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3154730\n"
"help.text"
-msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys for $[officename]\">general shortcut keys for $[officename]</link>."
-msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\" name=\"tecles de drecera generals del $[officename]\">tecles de drecera generals del $[officename]</link>."
+msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\">general shortcut keys for $[officename]</link>."
+msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\">tecles de drecera generals del $[officename]</link>."
#. pKEcC
#: 01020000.xhp
@@ -674,14 +674,14 @@ msgctxt ""
msgid "Moves the page view in the direction of the arrow key."
msgstr "Mou la visualització de la pàgina en la direcció de la tecla de cursor."
-#. fXEuJ
+#. 4QazT
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3152484\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click while dragging an object. Note: this shortcut key works only when the <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Copy when moving</link> option in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Draw - General is enabled (it is enabled by default)."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+clic mentre arrossegueu un objecte. Nota: esta tecla de drecera només funciona quan l'opció <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copia en moure\">Copia en moure</link> a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - %PRODUCTNAME Draw - General està activada (per defecte, l'opció està activada)."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click while dragging an object. Note: this shortcut key works only when the <link href=\"text/shared/optionen/01070500.xhp\">Copy when moving</link> option in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Draw - General is enabled (it is enabled by default)."
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+clic mentre arrossegueu un objecte. Nota: esta tecla de drecera només funciona quan l'opció <link href=\"text/shared/optionen/01070500.xhp\">Copia en moure</link> a <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - %PRODUCTNAME Draw - General està activada (per defecte, l'opció està activada)."
#. KVYGa
#: 01020000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/sdraw/guide.po b/source/ca-valencia/helpcontent2/source/text/sdraw/guide.po
index fdbb68bc55c..cacbb01d304 100644
--- a/source/ca-valencia/helpcontent2/source/text/sdraw/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/sdraw/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsdrawguide/ca_VALENCIA/>\n"
@@ -26,14 +26,14 @@ msgctxt ""
msgid "Arranging, Aligning and Distributing Objects"
msgstr "Organització, alineació i distribució d'objectes"
-#. cXApJ
+#. Be455
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
"hd_id3149656\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=\"Organització i alineació d'objectes\">Organització, alineació i distribució d'objectes</link></variable>"
+msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\">Arranging, Aligning and Distributing Objects</link></variable>"
+msgstr "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\">Organització, alineació i distribució d'objectes</link></variable>"
#. cXAFa
#: align_arrange.xhp
@@ -233,13 +233,13 @@ msgctxt ""
msgid "Distributing Objects"
msgstr "Distribució d'objectes"
-#. DWjg2
+#. r48WD
#: align_arrange.xhp
msgctxt ""
"align_arrange.xhp\n"
"par_id3151390\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>Distribute selection</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
+msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\"><emph>Distribute selection</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
msgstr ""
#. R9tTg
@@ -296,14 +296,14 @@ msgctxt ""
msgid "<bookmark_value>colors; defining</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
msgstr "<bookmark_value>colors; definició</bookmark_value><bookmark_value>colors definits per l'usuari</bookmark_value><bookmark_value>colors personalitzats</bookmark_value>"
-#. npVxb
+#. JFGD3
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
"hd_id3149263\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=\"Definició de colors personalitzats\">Definició de colors personalitzats</link></variable>"
+msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\">Defining Custom Colors</link></variable>"
+msgstr "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\">Definició de colors personalitzats</link></variable>"
#. EWGDk
#: color_define.xhp
@@ -350,14 +350,14 @@ msgctxt ""
msgid "Click a color in the table that is similar to the one you want to define. You can select the similar color from any of the available color palettes in the <emph>Colors</emph> area on the left or the <emph>Recent colors</emph> in the list below the color table. The color appears in the <emph>New</emph> preview box to the right of the dialog."
msgstr "Feu clic en un color de la taula que siga similar al que voleu definir. Podeu seleccionar el color similar de qualsevol de les paletes de color disponibles en l'area <emph>Colors</emph> a l'esquerra o en <emph>Colors recents</emph> de la llista sota la taula de colors. El color apareix en la quadre de previsualització <emph>Nou</emph> a la dreta del diàleg."
-#. mr77M
+#. 3B2BX
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
"par_id41522705652544\n"
"help.text"
-msgid "Click the <emph>Pick</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"linkname\">Pick a Color</link> dialog."
-msgstr "Feu clic al botó <emph>Selecciona</emph> per a obrir el diàleg <link href=\"text/shared/optionen/01010501.xhp\" name=\"Trieu un color\">Trieu un color</link>."
+msgid "Click the <emph>Pick</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\">Pick a Color</link> dialog."
+msgstr "Feu clic al botó <emph>Selecciona</emph> per a obrir el diàleg <link href=\"text/shared/optionen/01010501.xhp\">Trieu un color</link>."
#. 69QAE
#: color_define.xhp
@@ -386,14 +386,14 @@ msgctxt ""
msgid "To remove a color from the <emph>Custom</emph> color palette, select the <emph>Custom</emph> color palette in the <emph>Colors</emph> area, select the color to be deleted and click <emph>Delete</emph>."
msgstr "Per a suprimir un color de la paleta <emph>Personalitzat</emph>, seleccioneu aquesta paleta a l'àrea <emph>Colors</emph>, seleccioneu el color que s'ha d'eliminar i feu clic a <emph>Suprimeix</emph>."
-#. XstjN
+#. beB2R
#: color_define.xhp
msgctxt ""
"color_define.xhp\n"
"par_id3145236\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=\"Barra de colors\">Barra de colors</link>"
+msgid "<link href=\"text/shared/01/03170000.xhp\">Color bar</link>"
+msgstr "<link href=\"text/shared/01/03170000.xhp\">Barra de colors</link>"
#. twEGx
#: combine_etc.xhp
@@ -413,14 +413,14 @@ msgctxt ""
msgid "<bookmark_value>combining; draw objects</bookmark_value><bookmark_value>merging; draw objects</bookmark_value><bookmark_value>connecting; draw objects</bookmark_value><bookmark_value>draw objects; combining</bookmark_value><bookmark_value>intersecting draw objects</bookmark_value><bookmark_value>polygons; intersecting/subtracting/merging</bookmark_value><bookmark_value>subtracting polygons</bookmark_value><bookmark_value>constructing shapes</bookmark_value>"
msgstr "<bookmark_value>combinació; objectes de dibuix</bookmark_value><bookmark_value>fusió; objectes de dibuix</bookmark_value><bookmark_value>connexió; objectes de dibuix</bookmark_value><bookmark_value>objectes de dibuix; combinació</bookmark_value><bookmark_value>intersecció d'objectes de dibuix</bookmark_value><bookmark_value>polígons; intersecció/resta/fusió</bookmark_value><bookmark_value>resta de polígons</bookmark_value><bookmark_value>construcció de formes</bookmark_value>"
-#. wMuEd
+#. mXzkf
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
"hd_id3156443\n"
"help.text"
-msgid "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\" name=\"Combining Objects and Constructing Shapes\">Combining Objects and Constructing Shapes</link> </variable>"
-msgstr "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\" name=\"Combinació d'objectes i construcció de formes\">Combinació d'objectes i construcció de formes</link></variable>"
+msgid "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\">Combining Objects and Constructing Shapes</link> </variable>"
+msgstr "<variable id=\"combine_etc\"><link href=\"text/sdraw/guide/combine_etc.xhp\">Combinació d'objectes i construcció de formes</link></variable>"
#. CgsxL
#: combine_etc.xhp
@@ -512,14 +512,14 @@ msgctxt ""
msgid "Constructing Shapes"
msgstr "Construcció de formes"
-#. uLJbz
+#. PQX6S
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
"par_id3150049\n"
"help.text"
-msgid "You can construct shapes by applying the <link href=\"text/simpress/01/13180000.xhp\" name=\"Shapes\"><emph>Shapes</emph></link> <emph>- Merge, Subtract and Intersect</emph> commands to two or more drawing objects."
-msgstr "Podeu construir formes aplicant les ordes <link href=\"text/simpress/01/13180000.xhp\" name=\"Formes\"><emph>Formes</emph></link><emph>- Fusiona, resta i interseca</emph> a dos objectes de dibuix o més."
+msgid "You can construct shapes by applying the <link href=\"text/simpress/01/13180000.xhp\"><emph>Shapes</emph></link> <emph>- Merge, Subtract and Intersect</emph> commands to two or more drawing objects."
+msgstr "Podeu construir formes aplicant les ordes <link href=\"text/simpress/01/13180000.xhp\"><emph>Formes</emph></link><emph>- Fusiona, resta i interseca</emph> a dos objectes de dibuix o més."
#. ZciiC
#: combine_etc.xhp
@@ -719,14 +719,14 @@ msgctxt ""
msgid "<bookmark_value>draw objects; cross-fading two objects</bookmark_value><bookmark_value>cross-fading; two draw objects</bookmark_value>"
msgstr "<bookmark_value>objectes de dibuix; esvaïment encreuat de dos objectes</bookmark_value><bookmark_value>esvaïment encreuat; dos objectes de dibuix</bookmark_value>"
-#. FyTFB
+#. CdpRk
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
"hd_id3150715\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=\"Esvaïment encreuat de dos objectes\">Esvaïment encreuat de dos objectes</link></variable>"
+msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\">Cross-Fading Two Objects</link></variable>"
+msgstr "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\">Esvaïment encreuat de dos objectes</link></variable>"
#. kxr3E
#: cross_fading.xhp
@@ -818,14 +818,14 @@ msgctxt ""
msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
msgstr "Podeu editar individualment cadascun dels objectes d'un grup seleccionant el grup i prement F3. Premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 per eixir del mode d'edició de grup."
-#. hiJK8
+#. TQGju
#: cross_fading.xhp
msgctxt ""
"cross_fading.xhp\n"
"par_id3155760\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=\"Edita - Esvaïment encreuat\">Edita ▸ Esvaïment encreuat</link>"
+msgid "<link href=\"text/simpress/01/02150000.xhp\">Editing - Cross-fading</link>"
+msgstr "<link href=\"text/simpress/01/02150000.xhp\">Edita ▸ Esvaïment encreuat</link>"
#. uUD48
#: draw_sector.xhp
@@ -845,14 +845,14 @@ msgctxt ""
msgid "<bookmark_value>sectors of circles/ellipses</bookmark_value><bookmark_value>segments of circles/ellipses</bookmark_value><bookmark_value>circle segments</bookmark_value><bookmark_value>ellipses; segments</bookmark_value><bookmark_value>drawing; sectors and segments</bookmark_value>"
msgstr "<bookmark_value>sectors de cercles/el·lipses</bookmark_value><bookmark_value>segments de cercles/el·lipses</bookmark_value><bookmark_value>segments de cercles</bookmark_value><bookmark_value>el·lipses; segments</bookmark_value><bookmark_value>dibuix; sectors i segments</bookmark_value>"
-#. qGGGE
+#. 3q4aR
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
"hd_id3146974\n"
"help.text"
-msgid "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\" name=\"Drawing Sectors and Segments\">Drawing Sectors and Segments</link></variable>"
-msgstr "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\" name=\"Dibuix de sectors i segments\">Dibuix de sectors i segments</link></variable>"
+msgid "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\">Drawing Sectors and Segments</link></variable>"
+msgstr "<variable id=\"draw_sector\"><link href=\"text/sdraw/guide/draw_sector.xhp\">Dibuix de sectors i segments</link></variable>"
#. Zq2MQ
#: draw_sector.xhp
@@ -971,14 +971,14 @@ msgctxt ""
msgid "<bookmark_value>doubling draw objects</bookmark_value><bookmark_value>draw objects; duplicating</bookmark_value><bookmark_value>duplicating draw objects</bookmark_value><bookmark_value>multiplying draw objects</bookmark_value>"
msgstr "<bookmark_value>duplicació d'objectes de dibuix</bookmark_value><bookmark_value>objectes de dibuix; duplicació</bookmark_value><bookmark_value>duplicació d'objectes de dibuix</bookmark_value><bookmark_value>multiplicació d'objectes de dibuix</bookmark_value>"
-#. 46eWU
+#. tC9aU
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
"hd_id3145750\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=\"Duplicació d'objectes\">Duplicació d'objectes</link></variable>"
+msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\">Duplicating Objects</link></variable>"
+msgstr "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\">Duplicació d'objectes</link></variable>"
#. rxVAA
#: duplicate_object.xhp
@@ -1052,14 +1052,14 @@ msgctxt ""
msgid "Click <emph>OK</emph> to create the duplicates."
msgstr "Feu clic a <emph>D'acord</emph> per crear els duplicats."
-#. FWBEa
+#. gjaqf
#: duplicate_object.xhp
msgctxt ""
"duplicate_object.xhp\n"
"par_id3153935\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=\"Edita ▸ Duplica\">Edita - Duplica</link>"
+msgid "<link href=\"text/simpress/01/02120000.xhp\">Edit - Duplicate</link>"
+msgstr "<link href=\"text/simpress/01/02120000.xhp\">Edita - Duplica</link>"
#. CEHEf
#: eyedropper.xhp
@@ -1079,14 +1079,14 @@ msgctxt ""
msgid "<bookmark_value>eyedropper tool</bookmark_value><bookmark_value>colors; replacing</bookmark_value><bookmark_value>replacing;colors in bitmaps</bookmark_value><bookmark_value>metafiles;replacing colors</bookmark_value><bookmark_value>bitmaps;replacing colors</bookmark_value><bookmark_value>GIF images;replacing colors</bookmark_value>"
msgstr "<bookmark_value>eina de comptagotes\"</bookmark_value><bookmark_value>colors; reemplaçament</bookmark_value><bookmark_value>reemplaçament; colors de mapa de bits</bookmark_value><bookmark_value>metafitxers; reemplaçament de colors</bookmark_value><bookmark_value>mapa de bits; reemplaçament de colors</bookmark_value><bookmark_value>imatges GIF; reemplaçament de colors</bookmark_value>"
-#. seBAr
+#. 5F3a9
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
"hd_id3147436\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=\"Reemplaçament de colors\">Reemplaçament de colors</link></variable>"
+msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\">Replacing Colors</link></variable>"
+msgstr "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\">Reemplaçament de colors</link></variable>"
#. 6nnwD
#: eyedropper.xhp
@@ -1214,14 +1214,14 @@ msgctxt ""
msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
msgstr "Si voleu ampliar o reduir l'àrea de selecció de color, augmenteu o disminuïu la tolerància de l'eina <emph>Reemplaçament de color</emph> i repetiu la selecció."
-#. CwACD
+#. kVa8o
#: eyedropper.xhp
msgctxt ""
"eyedropper.xhp\n"
"par_id3146878\n"
"help.text"
-msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
-msgstr "<link href=\"text/shared/01/06030000.xhp\" name=\"Reemplaçament de color\">Reemplaçament de color</link>"
+msgid "<link href=\"text/shared/01/06030000.xhp\">Color Replacer</link>"
+msgstr "<link href=\"text/shared/01/06030000.xhp\">Reemplaçament de color</link>"
#. eY2vA
#: gradient.xhp
@@ -1241,14 +1241,14 @@ msgctxt ""
msgid "<bookmark_value>gradients; applying and defining</bookmark_value><bookmark_value>editing;gradients</bookmark_value><bookmark_value>defining;gradients</bookmark_value><bookmark_value>custom gradients</bookmark_value><bookmark_value>transparency;adjusting</bookmark_value>"
msgstr "<bookmark_value>degradats; aplicació i definició</bookmark_value><bookmark_value>edició;degradats</bookmark_value><bookmark_value>definició;degradats</bookmark_value><bookmark_value>degradats personalitzats</bookmark_value><bookmark_value>transparència;ajustament</bookmark_value>"
-#. gCATq
+#. 87fLQ
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
"hd_id3150792\n"
"help.text"
-msgid "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\" name=\"Creating Gradient Fills\">Creating Gradient Fills</link> </variable>"
-msgstr "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\" name=\"Emplenaments amb degradats\"> Emplenaments amb degradats</link> </variable>"
+msgid "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\">Creating Gradient Fills</link> </variable>"
+msgstr "<variable id=\"gradient\"><link href=\"text/sdraw/guide/gradient.xhp\"> Emplenaments amb degradats</link> </variable>"
#. PpcyF
#: gradient.xhp
@@ -1457,14 +1457,14 @@ msgctxt ""
msgid "<bookmark_value>pictures; inserting</bookmark_value><bookmark_value>images; inserting</bookmark_value><bookmark_value>files; inserting pictures</bookmark_value><bookmark_value>inserting;pictures</bookmark_value>"
msgstr "<bookmark_value>imatges; inserció</bookmark_value><bookmark_value>imatges; inserció</bookmark_value><bookmark_value>fitxers; inserció d'imatges</bookmark_value><bookmark_value>inserció; imatges</bookmark_value>"
-#. U3jMk
+#. NGCwH
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
"hd_id3156443\n"
"help.text"
-msgid "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\" name=\"Inserting Graphics\">Inserting Pictures</link></variable>"
-msgstr "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\" name=\"Inserció de gràfics\">Inserció d'imatges</link></variable>"
+msgid "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\">Inserting Pictures</link></variable>"
+msgstr "<variable id=\"graphic_insert\"><link href=\"text/sdraw/guide/graphic_insert.xhp\">Inserció d'imatges</link></variable>"
#. tGsxU
#: graphic_insert.xhp
@@ -1520,14 +1520,14 @@ msgctxt ""
msgid "<bookmark_value>grouping; draw objects</bookmark_value><bookmark_value>draw objects; grouping</bookmark_value>"
msgstr "<bookmark_value>agrupació; objectes de dibuix</bookmark_value><bookmark_value>objectes de dibuix; agrupació</bookmark_value>"
-#. gcvBG
+#. 62Dsm
#: groups.xhp
msgctxt ""
"groups.xhp\n"
"hd_id3150793\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=\"Agrupació d'objectes\">Agrupació d'objectes</link></variable>"
+msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\">Grouping Objects</link></variable>"
+msgstr "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\">Agrupació d'objectes</link></variable>"
#. ZBEaH
#: groups.xhp
@@ -1673,14 +1673,14 @@ msgctxt ""
msgid "<bookmark_value>draw objects; connecting lines to</bookmark_value><bookmark_value>connecting; lines</bookmark_value><bookmark_value>lines; connecting objects</bookmark_value><bookmark_value>areas; from connected lines</bookmark_value>"
msgstr "<bookmark_value>objectes de dibuix; línies de connexió als</bookmark_value><bookmark_value>línies de connexió; línies</bookmark_value><bookmark_value>línies; connexió d'objectes</bookmark_value><bookmark_value>àrees; de les línies connectades</bookmark_value>"
-#. dzN8a
+#. 9v7a8
#: join_objects.xhp
msgctxt ""
"join_objects.xhp\n"
"hd_id3145799\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=\"Línies de connexió\">Línies de connexió</link></variable>"
+msgid "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\">Connecting Lines</link></variable>"
+msgstr "<variable id=\"join_objects\"><link href=\"text/sdraw/guide/join_objects.xhp\">Línies de connexió</link></variable>"
#. FUYtU
#: join_objects.xhp
@@ -1754,14 +1754,14 @@ msgctxt ""
msgid "<bookmark_value>3D objects; assembling</bookmark_value><bookmark_value>assembled objects in 3D</bookmark_value><bookmark_value>combining;3D objects</bookmark_value><bookmark_value>joining;3D objects</bookmark_value>"
msgstr "<bookmark_value>objectes 3D; assemblatge</bookmark_value><bookmark_value>assemblatge d'objectes 3D</bookmark_value><bookmark_value>combinació; objectes 3D</bookmark_value><bookmark_value>unió; objectes 3D</bookmark_value>"
-#. JYDZH
+#. KA2cc
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
"hd_id3156442\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=\"Assemblatge d'objectes 3D\">Assemblatge d'objectes 3D</link></variable>"
+msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\">Assembling 3D Objects</link></variable>"
+msgstr "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\">Assemblatge d'objectes 3D</link></variable>"
#. spQiu
#: join_objects3d.xhp
@@ -1844,14 +1844,14 @@ msgctxt ""
msgid "You cannot intersect or subtract 3D objects."
msgstr "No podeu intersecar o restar objectes 3D."
-#. FsnCC
+#. HRRBq
#: join_objects3d.xhp
msgctxt ""
"join_objects3d.xhp\n"
"par_id3154537\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=\"Objectes en 3D\">Objectes en 3D</link>"
+msgid "<link href=\"text/simpress/02/10090000.xhp\">Objects in 3D</link>"
+msgstr "<link href=\"text/simpress/02/10090000.xhp\">Objectes en 3D</link>"
#. F8CG3
#: keyboard.xhp
@@ -1871,14 +1871,14 @@ msgctxt ""
msgid "<bookmark_value>accessibility; %PRODUCTNAME Draw</bookmark_value><bookmark_value>draw objects; text entry mode</bookmark_value><bookmark_value>text entry mode for draw objects</bookmark_value>"
msgstr "<bookmark_value>accessibilitat; %PRODUCTNAME Draw</bookmark_value><bookmark_value>objectes de dibuix; mode d'entrada de text</bookmark_value><bookmark_value>mode d'entrada de text per a objectes de dibuix</bookmark_value>"
-#. QX2ip
+#. UtEww
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"hd_id3155628\n"
"help.text"
-msgid "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Shortcut Keys for Drawing Objects\">Shortcut Keys for Drawing Objects</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Tecles de drecera per a objectes de dibuix\">Tecles de drecera per a objectes de dibuix</link></variable>"
+msgid "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\">Shortcut Keys for Drawing Objects</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\">Tecles de drecera per a objectes de dibuix</link></variable>"
#. A6rs7
#: keyboard.xhp
@@ -2006,13 +2006,13 @@ msgctxt ""
msgid "<bookmark_value>objects; moving in layers</bookmark_value><bookmark_value>layers; moving objects</bookmark_value><bookmark_value>moving; between layers</bookmark_value>"
msgstr ""
-#. 8EowS
+#. mvFri
#: layer_move.xhp
msgctxt ""
"layer_move.xhp\n"
"hd_id3150752\n"
"help.text"
-msgid "<variable id=\"layer_move\"><link href=\"text/sdraw/guide/layer_move.xhp\" name=\"Moving Objects to a Different Layer\">Moving Objects to a Different Layer</link></variable>"
+msgid "<variable id=\"layer_move\"><link href=\"text/sdraw/guide/layer_move.xhp\">Moving Objects to a Different Layer</link></variable>"
msgstr ""
#. GPgv9
@@ -2069,13 +2069,13 @@ msgctxt ""
msgid "<bookmark_value>layers; inserting and editing</bookmark_value><bookmark_value>inserting; layers</bookmark_value><bookmark_value>changing;layer properties</bookmark_value>"
msgstr ""
-#. RVTpB
+#. pC5uR
#: layer_new.xhp
msgctxt ""
"layer_new.xhp\n"
"hd_id3148797\n"
"help.text"
-msgid "<variable id=\"layer_new\"><link href=\"text/sdraw/guide/layer_new.xhp\" name=\"Inserting Layers\">Inserting Layers</link></variable>"
+msgid "<variable id=\"layer_new\"><link href=\"text/sdraw/guide/layer_new.xhp\">Inserting Layers</link></variable>"
msgstr ""
#. q2YZP
@@ -2168,13 +2168,13 @@ msgctxt ""
msgid "<bookmark_value>layers;working with</bookmark_value><bookmark_value>locking layers</bookmark_value><bookmark_value>hiding;layers</bookmark_value><bookmark_value>unlocking layers</bookmark_value><bookmark_value>showing;hidden layers</bookmark_value><bookmark_value>selecting;layers</bookmark_value>"
msgstr ""
-#. WXmHZ
+#. heiR5
#: layer_tipps.xhp
msgctxt ""
"layer_tipps.xhp\n"
"hd_id3154013\n"
"help.text"
-msgid "<variable id=\"layer_tipps\"><link href=\"text/sdraw/guide/layer_tipps.xhp\" name=\"Working With Layers\">Working With Layers</link></variable>"
+msgid "<variable id=\"layer_tipps\"><link href=\"text/sdraw/guide/layer_tipps.xhp\">Working With Layers</link></variable>"
msgstr ""
#. DG6Fg
@@ -2402,14 +2402,14 @@ msgctxt ""
msgid "<bookmark_value>layers; definition</bookmark_value>"
msgstr "<bookmark_value>capes; definició</bookmark_value>"
-#. BqLiz
+#. Au8rW
#: layers.xhp
msgctxt ""
"layers.xhp\n"
"hd_id3149018\n"
"help.text"
-msgid "<variable id=\"layers\"><link href=\"text/sdraw/guide/layers.xhp\" name=\"About Layers\">About Layers</link></variable>"
-msgstr "<variable id=\"layers\"><link href=\"text/sdraw/guide/layers.xhp\" name=\"Quant a les capes\">Quant a les capes</link></variable>"
+msgid "<variable id=\"layers\"><link href=\"text/sdraw/guide/layers.xhp\">About Layers</link></variable>"
+msgstr "<variable id=\"layers\"><link href=\"text/sdraw/guide/layers.xhp\">Quant a les capes</link></variable>"
#. RPAJU
#: layers.xhp
@@ -2546,14 +2546,14 @@ msgctxt ""
msgid "<bookmark_value>Draw instructions</bookmark_value><bookmark_value>instructions; $[officename] Draw</bookmark_value><bookmark_value>Howtos for Draw</bookmark_value>"
msgstr "<bookmark_value>instruccions del Draw</bookmark_value><bookmark_value>instruccions; $[officename] Draw</bookmark_value><bookmark_value>instruccions del Draw</bookmark_value>"
-#. N3B9G
+#. vBjxV
#: main.xhp
msgctxt ""
"main.xhp\n"
"hd_id3146119\n"
"help.text"
-msgid "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Instructions for Using $[officename] Draw\">Instructions for Using $[officename] Draw</link></variable>"
-msgstr "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Instruccions per utilitzar el $[officename] Draw\">Instruccions per utilitzar el $[officename] Draw</link></variable>"
+msgid "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\">Instructions for Using $[officename] Draw</link></variable>"
+msgstr "<variable id=\"main\"><link href=\"text/sdraw/guide/main.xhp\">Instruccions per utilitzar el $[officename] Draw</link></variable>"
#. VFDJC
#: main.xhp
@@ -2618,14 +2618,14 @@ msgctxt ""
msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
msgstr "<bookmark_value>gir; objectes de dibuix</bookmark_value><bookmark_value>objectes de dibuix; gir</bookmark_value><bookmark_value>punts de gir dels objectes de dibuix</bookmark_value><bookmark_value>desplaçament d'objectes de dibuix</bookmark_value>"
-#. 8RfAu
+#. 5MCPs
#: rotate_object.xhp
msgctxt ""
"rotate_object.xhp\n"
"hd_id3154684\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=\"Girar objectes\">Girar objectes</link></variable>"
+msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\">Rotating Objects</link></variable>"
+msgstr "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\">Girar objectes</link></variable>"
#. GSWgX
#: rotate_object.xhp
@@ -2726,14 +2726,14 @@ msgctxt ""
msgid "<bookmark_value>text box</bookmark_value><bookmark_value>inserting;text box</bookmark_value><bookmark_value>copying;text from other documents</bookmark_value><bookmark_value>pasting;text from other documents</bookmark_value><bookmark_value>legends; drawings</bookmark_value>"
msgstr ""
-#. JnXwh
+#. eENQR
#: text_enter.xhp
msgctxt ""
"text_enter.xhp\n"
"hd_id3153144\n"
"help.text"
-msgid "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\" name=\"Adding Text\">Adding Text</link></variable>"
-msgstr "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\" name=\"Addició de text\">Addició de text</link></variable>"
+msgid "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\">Adding Text</link></variable>"
+msgstr "<variable id=\"text_enter\"><link href=\"text/sdraw/guide/text_enter.xhp\">Addició de text</link></variable>"
#. xpJuT
#: text_enter.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared.po b/source/ca-valencia/helpcontent2/source/text/shared.po
index f958b60618a..f83a994cb4a 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared/ca_VALENCIA/>\n"
@@ -35,13 +35,13 @@ msgctxt ""
msgid "<bookmark_value>Find toolbar</bookmark_value>"
msgstr ""
-#. WXRY5
+#. JS8DE
#: find_toolbar.xhp
msgctxt ""
"find_toolbar.xhp\n"
"hd_id701641581066778\n"
"help.text"
-msgid "<link href=\"/text/shared/find_toolbar.xhp\" name=\"Find Bar\">Find Bar</link>"
+msgid "<link href=\"/text/shared/find_toolbar.xhp\">Find Bar</link>"
msgstr ""
#. X55wK
@@ -215,13 +215,13 @@ msgctxt ""
msgid "Find and Replace"
msgstr ""
-#. 8GXhw
+#. cDswH
#: find_toolbar.xhp
msgctxt ""
"find_toolbar.xhp\n"
"par_id761641582194558\n"
"help.text"
-msgid "Opens the <link href=\"text/swriter/guide/finding.xhp\" name=\"Find_Replace\">Find and Replace</link> dialog, which provides more options for searching the document."
+msgid "Opens the <link href=\"text/swriter/guide/finding.xhp\">Find and Replace</link> dialog, which provides more options for searching the document."
msgstr ""
#. rx3mH
@@ -467,14 +467,14 @@ msgctxt ""
msgid "Help"
msgstr "Ajuda"
-#. C9KAH
+#. NncHM
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
"hd_id3155364\n"
"help.text"
-msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
-msgstr "<link href=\"text/shared/main0108.xhp\" name=\"Ajuda\">Ajuda</link>"
+msgid "<link href=\"text/shared/main0108.xhp\">Help</link>"
+msgstr "<link href=\"text/shared/main0108.xhp\">Ajuda</link>"
#. 2BAjw
#: main0108.xhp
@@ -602,13 +602,13 @@ msgctxt ""
msgid "Get Involved"
msgstr ""
-#. ZiLDo
+#. B4y6k
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
"par_id501629934998665\n"
"help.text"
-msgid "Opens the <link href=\"https://www.libreoffice.org/community/get-involved/\" name=\"get involved\">community Get Involved page</link> in the web browser. The page describe areas of interest where you can collaborate with the %PRODUCTNAME community."
+msgid "Opens the <link href=\"https://www.libreoffice.org/community/get-involved/\">community Get Involved page</link> in the web browser. The page describe areas of interest where you can collaborate with the %PRODUCTNAME community."
msgstr ""
#. YrMYp
@@ -638,13 +638,13 @@ msgctxt ""
msgid "Your donation, which is purely optional, supports our worldwide community."
msgstr ""
-#. gGbbH
+#. vDfYC
#: main0108.xhp
msgctxt ""
"main0108.xhp\n"
"par_id611629934882669\n"
"help.text"
-msgid "If you like the software, <link href=\"https://www.libreoffice.org/donate/\" name=\"donation\">please consider a donation</link>."
+msgid "If you like the software, <link href=\"https://www.libreoffice.org/donate/\">please consider a donation</link>."
msgstr ""
#. sWFkG
@@ -728,14 +728,14 @@ msgctxt ""
msgid "Standard Bar"
msgstr "Barra Estàndard"
-#. Fa7DE
+#. YMneF
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
"hd_id3154186\n"
"help.text"
-msgid "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\">Standard Bar</link>"
-msgstr "<link href=\"text/shared/main0201.xhp\" name=\"Barra Estàndard\">Barra Estàndard</link>"
+msgid "<link href=\"text/shared/main0201.xhp\">Standard Bar</link>"
+msgstr "<link href=\"text/shared/main0201.xhp\">Barra Estàndard</link>"
#. 7CoDc
#: main0201.xhp
@@ -746,14 +746,14 @@ msgctxt ""
msgid "<ahelp hid=\"RID_ENVTOOLBOX\">The <emph>Standard</emph> bar is available in every $[officename] application.</ahelp>"
msgstr "<ahelp hid=\"RID_ENVTOOLBOX\">La barra <emph>Estàndard</emph> és disponible a totes les aplicacions del $[officename].</ahelp>"
-#. 98hpw
+#. FHN8A
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
"hd_id3166460\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open File\">Open File</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Obri un fitxer\">Obri un fitxer</link>"
+msgid "<link href=\"text/shared/01/01020000.xhp\">Open File</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\">Obri un fitxer</link>"
#. qCdSB
#: main0201.xhp
@@ -827,14 +827,14 @@ msgctxt ""
msgid "Creates a chart in the current document."
msgstr "Crea un diagrama en el document actual."
-#. jr7Pf
+#. JEF2H
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
"par_idN108C4\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=\"Visualitza la graella\">Visualitza la graella</link>"
+msgid "<link href=\"text/shared/02/01171200.xhp\">Display Grid</link>"
+msgstr "<link href=\"text/shared/02/01171200.xhp\">Visualitza la graella</link>"
#. JHY4h
#: main0201.xhp
@@ -917,14 +917,14 @@ msgctxt ""
msgid "Table Bar"
msgstr "Barra Taula"
-#. LQoEC
+#. Cu754
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id3145587\n"
"help.text"
-msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
-msgstr "<link href=\"text/shared/main0204.xhp\" name=\"Barra Taula\">Barra Taula</link>"
+msgid "<link href=\"text/shared/main0204.xhp\">Table Bar</link>"
+msgstr "<link href=\"text/shared/main0204.xhp\">Barra Taula</link>"
#. WByv5
#: main0204.xhp
@@ -935,41 +935,41 @@ msgctxt ""
msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
msgstr "<ahelp hid=\".\">La barra <emph>Taula</emph> conté les funcions que necessiteu quan treballeu amb taules. La barra apareix quan moveu el cursor cap a una taula.</ahelp>"
-#. dw5H8
+#. eCSur
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id319945759\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=\"Estil/emplenament de l'àrea\">Estil/emplenament de l'àrea</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Area Style / Filling</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\">Estil/emplenament de l'àrea</link>"
-#. 7DJKV
+#. GsoVm
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id3147592\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
-msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Combina les cel·les\">Combina les cel·les</link>"
+msgid "<link href=\"text/shared/01/05100100.xhp\">Merge Cells</link>"
+msgstr "<link href=\"text/shared/01/05100100.xhp\">Combina les cel·les</link>"
-#. 6Rajq
+#. KVWGF
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id3147820\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=\"Suprimeix la fila\">Suprimeix la fila</link>"
+msgid "<link href=\"text/swriter/01/05110500.xhp\">Delete Row</link>"
+msgstr "<link href=\"text/swriter/01/05110500.xhp\">Suprimeix la fila</link>"
-#. AmFfA
+#. WddDC
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id3147231\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=\"Suprimeix la columna\">Suprimeix la columna</link>"
+msgid "<link href=\"text/swriter/01/05120500.xhp\">Delete Column</link>"
+msgstr "<link href=\"text/swriter/01/05120500.xhp\">Suprimeix la columna</link>"
#. RhSva
#: main0204.xhp
@@ -1007,14 +1007,14 @@ msgctxt ""
msgid "Table Design"
msgstr "Disseny de taula"
-#. BieMU
+#. hCDEC
#: main0204.xhp
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/simpress/01/05090000m.xhp\" name=\"Propietats de la taula\">Propietats de la taula</link>"
+msgid "<link href=\"text/simpress/01/05090000m.xhp\">Table Properties</link>"
+msgstr "<link href=\"text/simpress/01/05090000m.xhp\">Propietats de la taula</link>"
#. usfD4
#: main0208.xhp
@@ -1025,14 +1025,14 @@ msgctxt ""
msgid "Status Bar in $[officename] Basic Documents"
msgstr "Barra d'estat en documents $[officename] Basic"
-#. GaCPr
+#. PUnxS
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
"hd_id3148520\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=\"Barra d'estat en documents del $[officename] Basic\">Barra d'estat en documents del $[officename] Basic</link>"
+msgid "<link href=\"text/shared/main0208.xhp\">Status Bar in $[officename] Basic Documents</link>"
+msgstr "<link href=\"text/shared/main0208.xhp\">Barra d'estat en documents del $[officename] Basic</link>"
#. TMY8Z
#: main0208.xhp
@@ -1052,14 +1052,14 @@ msgctxt ""
msgid "Table Data Bar"
msgstr "Barra Dades de la taula"
-#. tijsh
+#. 8uZqF
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
"hd_id3147102\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=\"Barra de dades de la taula\">Barra de dades de la taula</link>"
+msgid "<link href=\"text/shared/main0212.xhp\">Table Data Bar</link>"
+msgstr "<link href=\"text/shared/main0212.xhp\">Barra de dades de la taula</link>"
#. 2HEsY
#: main0212.xhp
@@ -1169,14 +1169,14 @@ msgctxt ""
msgid "<bookmark_value>toolbars; Form Navigation bar</bookmark_value><bookmark_value>Navigation bar;forms</bookmark_value><bookmark_value>sorting; data in forms</bookmark_value><bookmark_value>data; sorting in forms</bookmark_value><bookmark_value>forms;sorting data</bookmark_value>"
msgstr "<bookmark_value>barres d'eines; barra Navegació de formularis</bookmark_value><bookmark_value>barra de navegació;formularis</bookmark_value><bookmark_value>ordenació; dades en formularis</bookmark_value><bookmark_value>dades; ordenació en formularis</bookmark_value><bookmark_value>formularis;ordenació de dades</bookmark_value>"
-#. kjAoz
+#. AJsK5
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3157896\n"
"help.text"
-msgid "<link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\">Form Navigation Bar</link>"
-msgstr "<link href=\"text/shared/main0213.xhp\" name=\"Barra Navegació de formularis\">Barra Navegació de formularis</link>"
+msgid "<link href=\"text/shared/main0213.xhp\">Form Navigation Bar</link>"
+msgstr "<link href=\"text/shared/main0213.xhp\">Barra Navegació de formularis</link>"
#. WUXQ3
#: main0213.xhp
@@ -1205,13 +1205,13 @@ msgctxt ""
msgid "You can use the Navigation bar icon on the <link href=\"text/shared/02/01170000.xhp\">More Controls </link> bar to add a Navigation bar to a form."
msgstr "Podeu emprar la icona de la barra de navegació que trobareu a la barra <link href=\"text/shared/02/01170000.xhp\">Més controls</link> per afegir una barra de navegació a un formulari."
-#. SBnTx
+#. qrGJo
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3157910\n"
"help.text"
-msgid "The Navigation bar is only visible for forms connected to a database. In the <link href=\"text/sdatabase/04030000.xhp\" name=\"Design view\">Design view</link> of a form, the Navigation bar is not available. See also <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Table Data bar</link>."
+msgid "The Navigation bar is only visible for forms connected to a database. In the <link href=\"text/sdatabase/04030000.xhp\">Design view</link> of a form, the Navigation bar is not available. See also <link href=\"text/shared/main0212.xhp\">Table Data bar</link>."
msgstr ""
#. tqTbR
@@ -1223,32 +1223,32 @@ msgctxt ""
msgid "You can control the view of data with the sorting and filtering functions. Original tables are not changed."
msgstr "Podeu controlar la visualització de les dades amb les funcions d'ordenació i de filtratge. Les taules originals no es modifiquen."
-#. F2yBf
+#. X4S8m
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3153062\n"
"help.text"
-msgid "The current sort order or filter is saved with the current document. If a filter is set, the <emph>Apply Filter</emph> icon on the <emph>Navigation</emph> bar is activated. Sorting and filtering features in the document can also be configured in the <emph>Form Properties</emph> dialog. (Choose <emph>Form Properties - Data</emph> - properties <link href=\"text/shared/02/01170203.xhp\" name=\"Sort\"><emph>Sort</emph></link> and <link href=\"text/shared/02/01170203.xhp\" name=\"Filter\"><emph>Filter</emph></link>)."
-msgstr "L'ordenació o el filtratge actual es guarda juntament amb el document. Si definiu un filtre, s'activa la icona <emph>Aplica el filtre</emph> de la barra de <emph>navegació</emph>. Les característiques d'ordenació i de filtratge del document també es poden configurar en el quadre de diàleg <emph>Propietats del formulari</emph>. (Trieu <emph>Propietats del formulari - Dades</emph> - Propietats <link href=\"text/shared/02/01170203.xhp\" name=\"Ordena\"><emph>Ordena</emph></link> i <link href=\"text/shared/02/01170203.xhp\" name=\"Filtra\"><emph>Filtra</emph></link>.)"
+msgid "The current sort order or filter is saved with the current document. If a filter is set, the <emph>Apply Filter</emph> icon on the <emph>Navigation</emph> bar is activated. Sorting and filtering features in the document can also be configured in the <emph>Form Properties</emph> dialog. (Choose <emph>Form Properties - Data</emph> - properties <link href=\"text/shared/02/01170203.xhp\"><emph>Sort</emph></link> and <link href=\"text/shared/02/01170203.xhp\"><emph>Filter</emph></link>)."
+msgstr "L'ordenació o el filtratge actual es guarda juntament amb el document. Si definiu un filtre, s'activa la icona <emph>Aplica el filtre</emph> de la barra de <emph>navegació</emph>. Les característiques d'ordenació i de filtratge del document també es poden configurar en el quadre de diàleg <emph>Propietats del formulari</emph>. (Trieu <emph>Propietats del formulari - Dades</emph> - Propietats <link href=\"text/shared/02/01170203.xhp\"><emph>Ordena</emph></link> i <link href=\"text/shared/02/01170203.xhp\"><emph>Filtra</emph></link>.)"
-#. XXEDY
+#. ABJo3
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3149810\n"
"help.text"
-msgid "If an SQL statement is the basis for a form (see <emph>Form Properties</emph> - tab <emph>Data</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph>Data Source</emph></link>), then the filter and sort functions are only available when the SQL statement refers to only one table and is not written in the native SQL mode."
-msgstr "Si una expressió SQL és la base d'un formulari (vegeu <emph>Propietats del formulari</emph> - pestanya <emph>Dades</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Font de dades\"><emph>Font de dades</emph></link>), les funcions de filtratge i ordenació només estaran disponibles quan l'expressió SQL es referisca únicament a una taula i no estiga escrita en el mode SQL nadiu."
+msgid "If an SQL statement is the basis for a form (see <emph>Form Properties</emph> - tab <emph>Data</emph> - <link href=\"text/shared/02/01170203.xhp\"><emph>Data Source</emph></link>), then the filter and sort functions are only available when the SQL statement refers to only one table and is not written in the native SQL mode."
+msgstr "Si una expressió SQL és la base d'un formulari (vegeu <emph>Propietats del formulari</emph> - pestanya <emph>Dades</emph> - <link href=\"text/shared/02/01170203.xhp\"><emph>Font de dades</emph></link>), les funcions de filtratge i ordenació només estaran disponibles quan l'expressió SQL es referisca únicament a una taula i no estiga escrita en el mode SQL nadiu."
-#. Ck3Di
+#. CcBXr
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3156448\n"
"help.text"
-msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
-msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Busca un registre\">Busca un registre</link>"
+msgid "<link href=\"text/shared/02/12100200.xhp\">Find Record</link>"
+msgstr "<link href=\"text/shared/02/12100200.xhp\">Busca un registre</link>"
#. daKA6
#: main0213.xhp
@@ -1511,14 +1511,14 @@ msgctxt ""
msgid "Refresh current control"
msgstr ""
-#. BUNUA
+#. AqwfH
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3148599\n"
"help.text"
-msgid "<link href=\"text/shared/02/12100100.xhp\" name=\"Sort\">Sort</link>"
-msgstr "<link href=\"text/shared/02/12100100.xhp\" name=\"Ordena\">Ordena</link>"
+msgid "<link href=\"text/shared/02/12100100.xhp\">Sort</link>"
+msgstr "<link href=\"text/shared/02/12100100.xhp\">Ordena</link>"
#. oSJoq
#: main0214.xhp
@@ -1529,14 +1529,14 @@ msgctxt ""
msgid "Query Design Bar"
msgstr "Barra Disseny de la consulta"
-#. pgVF2
+#. Q6Prc
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
"hd_id3159176\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=\"Barra Disseny de la consulta\">Barra Disseny de la consulta</link>"
+msgid "<link href=\"text/shared/main0214.xhp\">Query Design Bar</link>"
+msgstr "<link href=\"text/shared/main0214.xhp\">Barra Disseny de la consulta</link>"
#. YwUQD
#: main0214.xhp
@@ -1556,14 +1556,14 @@ msgctxt ""
msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
msgstr "Segons si heu creat la consulta o la vista a la pestanya <emph>Disseny</emph> o <emph>SQL</emph>, apareixeran les icones següents:"
-#. KJCRF
+#. 56jjt
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
"hd_id3151384\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=\"Afig taules\">Afig taules</link>"
+msgid "<link href=\"text/shared/02/14020100.xhp\">Add Tables</link>"
+msgstr "<link href=\"text/shared/02/14020100.xhp\">Afig taules</link>"
#. FZFsy
#: main0214.xhp
@@ -1583,14 +1583,14 @@ msgctxt ""
msgid "Form Design Toolbar"
msgstr "Barra d'eines Disseny del formulari"
-#. rtMHP
+#. BMAxN
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
"hd_id3148520\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=\"Barra d'eines Disseny del formulari\">Barra d'eines Disseny del formulari</link>"
+msgid "<link href=\"text/shared/main0226.xhp\">Form Design Toolbar</link>"
+msgstr "<link href=\"text/shared/main0226.xhp\">Barra d'eines Disseny del formulari</link>"
#. r7rXm
#: main0226.xhp
@@ -1601,14 +1601,14 @@ msgctxt ""
msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
msgstr "La barra d'eines Disseny del formulari esdevé visible quan seleccioneu un objecte de formulari en el mode de disseny."
-#. zfC9k
+#. YJDCw
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
"hd_id3163802\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=\"Afig un camp\">Afig un camp</link>"
+msgid "<link href=\"text/shared/02/01170400.xhp\">Add Field</link>"
+msgstr "<link href=\"text/shared/02/01170400.xhp\">Afig un camp</link>"
#. ibj9F
#: main0226.xhp
@@ -1628,32 +1628,32 @@ msgctxt ""
msgid "<image id=\"img_id3149351\" src=\"cmd/sc_autocontrolfocus.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149351\">Icon</alt></image>"
msgstr ""
-#. ZbBmL
+#. 5WaEw
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
"par_id3109848\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoControlFocus\">If <emph>Automatic Control Focus</emph> is activated, the first form control will be selected when you open the document. If the button is not activated, the text will be selected after opening. The <link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Tab Order</link> that you have specified determines which is the first form control.</ahelp>"
+msgid "<ahelp hid=\".uno:AutoControlFocus\">If <emph>Automatic Control Focus</emph> is activated, the first form control will be selected when you open the document. If the button is not activated, the text will be selected after opening. The <link href=\"text/shared/02/01170300.xhp\">Tab Order</link> that you have specified determines which is the first form control.</ahelp>"
msgstr ""
-#. pE5xB
+#. QhszV
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
"hd_id3150398\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=\"Visualitza la graella\">Visualitza la graella</link>"
+msgid "<link href=\"text/shared/02/01171200.xhp\">Display Grid</link>"
+msgstr "<link href=\"text/shared/02/01171200.xhp\">Visualitza la graella</link>"
-#. s84CM
+#. gtiLC
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
"hd_id3148798\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=\"Ajusta a la graella\">Ajusta a la graella</link>"
+msgid "<link href=\"text/shared/02/01171300.xhp\">Snap to Grid</link>"
+msgstr "<link href=\"text/shared/02/01171300.xhp\">Ajusta a la graella</link>"
#. ph5uF
#: main0226.xhp
@@ -1664,14 +1664,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
msgstr "<ahelp hid=\".uno:GridUse\">Indica que podeu moure els objectes únicament entre punts de la graella.</ahelp>"
-#. Z5NNA
+#. VWNKD
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
"hd_id3148920\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=\"Guies en moure\">Guies en moure</link>"
+msgid "<link href=\"text/shared/02/01171400.xhp\">Helplines While Moving</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\">Guies en moure</link>"
#. 94V64
#: main0227.xhp
@@ -1691,14 +1691,14 @@ msgctxt ""
msgid "<bookmark_value>lines; editing points</bookmark_value><bookmark_value>curves; editing points</bookmark_value><bookmark_value>Edit Points bar</bookmark_value>"
msgstr "<bookmark_value>línies; edició de punts</bookmark_value><bookmark_value>corbes; edició de punts</bookmark_value><bookmark_value>Barra Edita els punts</bookmark_value>"
-#. JUFAm
+#. iFKff
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
"hd_id3149987\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=\"Barra Edita els punts\">Barra Edita els punts</link>"
+msgid "<link href=\"text/shared/main0227.xhp\">Edit Points Bar</link>"
+msgstr "<link href=\"text/shared/main0227.xhp\">Barra Edita els punts</link>"
#. N5vQq
#: main0227.xhp
@@ -1727,14 +1727,14 @@ msgctxt ""
msgid "Edit Points"
msgstr "Edita els punts"
-#. 2NY7B
+#. w2P7j
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
"par_id3159151\n"
"help.text"
-msgid "The <link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\"><emph>Edit Points</emph></link> icon allows you to activate or deactivate the edit mode for Bézier objects. In the edit mode, individual points of the drawing object can be selected."
-msgstr "La icona <link href=\"text/shared/01/05270000.xhp\" name=\"Edita els punts\"><emph>Edita els punts</emph></link> vos permet activar o desactivar el mode d'edició per als objectes Bézier. En el mode d'edició, es poden seleccionar individualment els punts de l'objecte dibuixat."
+msgid "The <link href=\"text/shared/01/05270000.xhp\"><emph>Edit Points</emph></link> icon allows you to activate or deactivate the edit mode for Bézier objects. In the edit mode, individual points of the drawing object can be selected."
+msgstr "La icona <link href=\"text/shared/01/05270000.xhp\"><emph>Edita els punts</emph></link> vos permet activar o desactivar el mode d'edició per als objectes Bézier. En el mode d'edició, es poden seleccionar individualment els punts de l'objecte dibuixat."
#. GtMer
#: main0227.xhp
@@ -2123,14 +2123,14 @@ msgctxt ""
msgid "Eliminate Points"
msgstr "Elimina els punts"
-#. FjTtf
+#. Bk6z5
#: main0227.xhp
msgctxt ""
"main0227.xhp\n"
"par_id3149441\n"
"help.text"
-msgid "<ahelp hid=\".uno:BezierEliminatePoints\">Marks the current point or the selected points for deletion.</ahelp> This happens in the event that the point is located on a straight line. If you convert a curve or a polygon with the <emph>Convert to Curve </emph>icon into a straight line or you change a curve with the mouse so that a point lies on the straight line, it is removed. The angle from which the point reduction is to take place <switchinline select=\"appl\"><caseinline select=\"DRAW\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Drawing - Grid\"><emph>%PRODUCTNAME Draw - Grid</emph></link> in the Options dialog box</caseinline><caseinline select=\"IMPRESS\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentation - Grid\"><emph>%PRODUCTNAME Impress - Grid</emph></link> in the Options dialog box</caseinline><defaultinline>is 15° by default.</defaultinline></switchinline>"
-msgstr "<ahelp hid=\".uno:BezierEliminatePoints\">Marca el punt actual o els punts seleccionats per suprimir-los.</ahelp> Això passa en el cas que el punt estiga situat sobre una línia recta. Si convertiu una corba o un polígon amb la icona <emph>Converteix en corba</emph> en una línia recta, o bé canvieu una corba amb el ratolí de manera que un punt quede sobre una línia recta, s'elimina el punt. L'angle a partir del qual es durà a terme la reducció de punts <switchinline select=\"appl\"><caseinline select=\"DRAW\">es pot definir seleccionant <link href=\"text/shared/optionen/01070300.xhp\" name=\"Dibuix - Graella\"><emph>%PRODUCTNAME Draw - Graella</emph></link> al quadre de diàleg Opcions</caseinline><caseinline select=\"IMPRESS\">es pot definir seleccionant <link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentació - Graella\"><emph>%PRODUCTNAME Impress - Graella</emph></link> al quadre de diàleg Opcions</caseinline><defaultinline>és de 15° per defecte.</defaultinline></switchinline>"
+msgid "<ahelp hid=\".uno:BezierEliminatePoints\">Marks the current point or the selected points for deletion.</ahelp> This happens in the event that the point is located on a straight line. If you convert a curve or a polygon with the <emph>Convert to Curve </emph>icon into a straight line or you change a curve with the mouse so that a point lies on the straight line, it is removed. The angle from which the point reduction is to take place <switchinline select=\"appl\"><caseinline select=\"DRAW\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\"><emph>%PRODUCTNAME Draw - Grid</emph></link> in the Options dialog box</caseinline><caseinline select=\"IMPRESS\">can be set by choosing <link href=\"text/shared/optionen/01070300.xhp\"><emph>%PRODUCTNAME Impress - Grid</emph></link> in the Options dialog box</caseinline><defaultinline>is 15° by default.</defaultinline></switchinline>"
+msgstr "<ahelp hid=\".uno:BezierEliminatePoints\">Marca el punt actual o els punts seleccionats per suprimir-los.</ahelp> Això passa en el cas que el punt estiga situat sobre una línia recta. Si convertiu una corba o un polígon amb la icona <emph>Converteix en corba</emph> en una línia recta, o bé canvieu una corba amb el ratolí de manera que un punt quede sobre una línia recta, s'elimina el punt. L'angle a partir del qual es durà a terme la reducció de punts <switchinline select=\"appl\"><caseinline select=\"DRAW\">es pot definir seleccionant <link href=\"text/shared/optionen/01070300.xhp\"><emph>%PRODUCTNAME Draw - Graella</emph></link> al quadre de diàleg Opcions</caseinline><caseinline select=\"IMPRESS\">es pot definir seleccionant <link href=\"text/shared/optionen/01070300.xhp\"><emph>%PRODUCTNAME Impress - Graella</emph></link> al quadre de diàleg Opcions</caseinline><defaultinline>és de 15° per defecte.</defaultinline></switchinline>"
#. RCPw8
#: main0227.xhp
@@ -2159,14 +2159,14 @@ msgctxt ""
msgid "Shortcut Keys"
msgstr "Tecles de drecera"
-#. GQ7jZ
+#. 7fYZK
#: main0400.xhp
msgctxt ""
"main0400.xhp\n"
"hd_id3149495\n"
"help.text"
-msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
-msgstr "<link href=\"text/shared/main0400.xhp\" name=\"Tecles de drecera\">Tecles de drecera</link>"
+msgid "<link href=\"text/shared/main0400.xhp\">Shortcut Keys</link>"
+msgstr "<link href=\"text/shared/main0400.xhp\">Tecles de drecera</link>"
#. WPGJg
#: main0400.xhp
@@ -2186,14 +2186,14 @@ msgctxt ""
msgid "Glossaries"
msgstr "Glossaris"
-#. BG5LJ
+#. CDvUF
#: main0500.xhp
msgctxt ""
"main0500.xhp\n"
"hd_id3156183\n"
"help.text"
-msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
-msgstr "<link href=\"text/shared/main0500.xhp\" name=\"Glossaris\">Glossaris</link>"
+msgid "<link href=\"text/shared/main0500.xhp\">Glossaries</link>"
+msgstr "<link href=\"text/shared/main0500.xhp\">Glossaris</link>"
#. dziDW
#: main0500.xhp
@@ -2213,14 +2213,14 @@ msgctxt ""
msgid "Java Platform Support"
msgstr "Ús de la plataforma Java"
-#. sAfDU
+#. Cwsus
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
"hd_id3153089\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=\"Ús de la plataforma Java\">Ús de la plataforma Java</link>"
+msgid "<link href=\"text/shared/main0650.xhp\">Java Platform Support</link>"
+msgstr "<link href=\"text/shared/main0650.xhp\">Ús de la plataforma Java</link>"
#. dPzDx
#: main0650.xhp
@@ -2249,14 +2249,14 @@ msgctxt ""
msgid "The Java platform support needs to be activated under $[officename] to run Java applications."
msgstr "Cal que activeu l'ús de la plataforma Java al $[officename] per executar aplicacions Java."
-#. KmhjC
+#. H2Vk4
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "Enable Java platform support by choosing <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/java.xhp\" name=\"$[officename] - Advanced\"><emph>$[officename] - Advanced</emph></link>."
-msgstr "Activeu l'ús de la plataforma Java des del menú <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferències</emph></caseinline><defaultinline><emph>Eines - Opcions</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Avançat\"><emph>$[officename] - Avançat</emph></link>."
+msgid "Enable Java platform support by choosing <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/java.xhp\"><emph>$[officename] - Advanced</emph></link>."
+msgstr "Activeu l'ús de la plataforma Java des del menú <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferències</emph></caseinline><defaultinline><emph>Eines - Opcions</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/java.xhp\"><emph>$[officename] - Avançat</emph></link>."
#. NcDL4
#: main0650.xhp
@@ -2285,23 +2285,23 @@ msgctxt ""
msgid "$[officename] and the Internet"
msgstr "El $[officename] i Internet"
-#. GCzks
+#. QrCDK
#: main0800.xhp
msgctxt ""
"main0800.xhp\n"
"hd_id3153089\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=\"El $[officename] i Internet\">El $[officename] i Internet</link>"
+msgid "<link href=\"text/shared/main0800.xhp\">$[officename] and the Internet</link>"
+msgstr "<link href=\"text/shared/main0800.xhp\">El $[officename] i Internet</link>"
-#. NUe4Y
+#. C7HK8
#: main0800.xhp
msgctxt ""
"main0800.xhp\n"
"par_id3155150\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 "Esta secció proporciona informació relacionada amb Internet. Un <link href=\"text/shared/00/00000002.xhp\" name=\"glossari d'Internet\">glossari d'Internet</link> explica els termes més importants."
+msgid "This section provides information on the subject of the Internet. An <link href=\"text/shared/00/00000002.xhp\">Internet glossary</link> explains the most important terms."
+msgstr "Esta secció proporciona informació relacionada amb Internet. Un <link href=\"text/shared/00/00000002.xhp\">glossari d'Internet</link> explica els termes més importants."
#. vLYDy
#: mediaplay_toolbar.xhp
@@ -2312,13 +2312,13 @@ msgctxt ""
msgid "Media Playback Toolbar"
msgstr ""
-#. J2Crx
+#. 8f3GM
#: mediaplay_toolbar.xhp
msgctxt ""
"mediaplay_toolbar.xhp\n"
"hd_id701655505104052\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/shared/mediaplay_toolbar.xhp\" name=\"Media Playback Toolbar\">Media Playback Toolbar</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/shared/mediaplay_toolbar.xhp\">Media Playback Toolbar</link></variable>"
msgstr ""
#. ELZkF
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/00.po b/source/ca-valencia/helpcontent2/source/text/shared/00.po
index e8e7d28efa2..5a7b13f48c2 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-22 14:43+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ca_VALENCIA/>\n"
@@ -143,13 +143,13 @@ msgctxt ""
msgid "You can type a numerical value into the field next to the spin button, or select the value with the <emph>Up Arrow</emph> or <emph>Down Arrow</emph> symbols on the spin button. On the keyboard you can press the <item type=\"keycode\">Up Arrow</item> and <item type=\"keycode\">Down Arrow</item> keys to increase or reduce the value. You can press the <item type=\"keycode\">Page Up</item> and <item type=\"keycode\">Page Down</item> keys to set the maximum and minimum value."
msgstr ""
-#. 2zxgm
+#. vEMqx
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3150264\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#measurement_units\" name=\"measurement unit\">measurement unit</link>, for example, <emph>1 cm or 5 mm, 12 pt or 2\"</emph>."
+msgid "If the field next to the spin button defines numerical values, you can also define a <link href=\"text/shared/00/00000003.xhp#measurement_units\">measurement unit</link>, for example, <emph>1 cm or 5 mm, 12 pt or 2\"</emph>."
msgstr ""
#. 7DT6o
@@ -233,13 +233,13 @@ msgctxt ""
msgid "Metrics"
msgstr "Mesures"
-#. XHnuD
+#. u6pCA
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "You can enter values in the input fields in different <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"units of measurement\">units of measurement</link>. The default unit is inches. However, if you want a space of exactly 1 cm, 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."
+msgid "You can enter values in the input fields in different <link href=\"text/shared/00/00000003.xhp#measurement_units\">units of measurement</link>. The default unit is inches. However, if you want a space of exactly 1 cm, 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 ""
#. gjFSF
@@ -674,13 +674,13 @@ msgctxt ""
msgid "<variable id=\"siehe\">See also the following functions:</variable>"
msgstr "<variable id=\"siehe\">Vegeu també les funcions següents: </variable>"
-#. 9mKza
+#. mmm8z
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3147418\n"
"help.text"
-msgid "The search supports wildcards or <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. With regular expressions enabled, 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 either precede every regular expression metacharacter or operator with a \"\\\" character, or enclose the text into \\Q...\\E. You can switch the automatic evaluation of wildcards or regular expression on and off in <link href=\"text/shared/optionen/01060500.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link>."
+msgid "The search supports wildcards or <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>. With regular expressions enabled, 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 either precede every regular expression metacharacter or operator with a \"\\\" character, or enclose the text into \\Q...\\E. You can switch the automatic evaluation of wildcards or regular expression on and off in <link href=\"text/shared/optionen/01060500.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Calculate</menuitem></link>."
msgstr ""
#. GFeqE
@@ -701,13 +701,13 @@ msgctxt ""
msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value.</variable>"
msgstr "<variable id=\"wahr\">Si es produeix un error, la funció retorna un valor lògic o numèric. </variable>"
-#. ECspB
+#. dv8ti
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3154145\n"
"help.text"
-msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>).</variable>"
+msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\">context menu</link>).</variable>"
msgstr ""
#. JFGU9
@@ -818,14 +818,14 @@ msgctxt ""
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>glossari d'Internet</bookmark_value><bookmark_value>termes comuns;glossari d'Internet</bookmark_value><bookmark_value>glossaris;termes d'Internet</bookmark_value><bookmark_value>terminologia;glossari d'Internet</bookmark_value>"
-#. fSAvG
+#. wCWZm
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"hd_id3150702\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=\"Glossari de termes d'Internet\">Glossari de termes d'Internet</link>"
+msgid "<link href=\"text/shared/00/00000002.xhp\">Glossary of Internet Terms</link>"
+msgstr "<link href=\"text/shared/00/00000002.xhp\">Glossari de termes d'Internet</link>"
#. aj3Pk
#: 00000002.xhp
@@ -872,14 +872,14 @@ msgctxt ""
msgid "<variable id=\"epubv\">EPUB is standard for electronic book files with the extension <emph>.epub</emph> that can be downloaded and read on devices like smartphones, tablets, computers, or e-readers.</variable>"
msgstr "<variable id=\"epubv\">EPUB és un estàndard per als fitxers de llibre electrònic amb extensió <emph>.epub</emph> que poden baixar-se i llegir-se amb l'ajuda d'aparells com ara els telèfons intel·ligents, les tauletes, els ordinadors i els lectors electrònics.</variable>"
-#. FDzf7
+#. gF4eu
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id981525003378764\n"
"help.text"
-msgid "EPUB is a technical standard published now by the <link href=\"https://www.w3.org/publishing/\" name=\"IDPF\">Publishing group of W3C</link>. EPUB is a popular format because it is open and is based on HTML."
-msgstr "L'EPUB és un estàndard tècnic ara publicat pel <link href=\"https://www.w3.org/publishing/\" name=\"IDPF\">grup de publicacions del W3C</link>. L'EPUB és un format popular perquè és obert i es basa en l'HTML."
+msgid "EPUB is a technical standard published now by the <link href=\"https://www.w3.org/publishing/\">Publishing group of W3C</link>. EPUB is a popular format because it is open and is based on HTML."
+msgstr "L'EPUB és un estàndard tècnic ara publicat pel <link href=\"https://www.w3.org/publishing/\">grup de publicacions del W3C</link>. L'EPUB és un format popular perquè és obert i es basa en l'HTML."
#. NoaPc
#: 00000002.xhp
@@ -917,14 +917,14 @@ msgctxt ""
msgid "Frames"
msgstr "Marcs"
-#. omvuA
+#. XiZyR
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3157909\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 "Els marcs són útils per dissenyar el format de les pàgines <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>. El $[officename] utilitza marcs flotants, dins dels quals podeu col·locar objectes com gràfics, pel·lícules i so. El menú contextual d'un marc mostra les opcions per a restaurar o editar els continguts del marc. Algunes d'estes ordes també es llisten a <emph>Edita ▸ Objecte</emph> quan el marc està seleccionat."
+msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#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 "Els marcs són útils per dissenyar el format de les pàgines <link href=\"text/shared/00/00000002.xhp#html\">HTML</link>. El $[officename] utilitza marcs flotants, dins dels quals podeu col·locar objectes com gràfics, pel·lícules i so. El menú contextual d'un marc mostra les opcions per a restaurar o editar els continguts del marc. Algunes d'estes ordes també es llisten a <emph>Edita ▸ Objecte</emph> quan el marc està seleccionat."
#. 3xGWj
#: 00000002.xhp
@@ -935,14 +935,14 @@ msgctxt ""
msgid "FTP"
msgstr "FTP"
-#. LJ8Pq
+#. fRYUi
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3147335\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 vol dir protocol de transferència de fitxers i és el protocol de transferència estàndard per baixar fitxers d'Internet. Un servidor FTP és un programa que es troba en un ordinador connectat a Internet i que emmagatzema fitxers que es transmetran amb l'ajuda de l'FTP. Mentre que l'FTP és responsable de transmetre i baixar fitxers d'Internet, l'<link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (protocol de transferència d'hipertext, de l'anglés Hypertext Transfer Protocol) fa possible la connexió i la transferència de fitxers entre servidors WWW i clients."
+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\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients."
+msgstr "FTP vol dir protocol de transferència de fitxers i és el protocol de transferència estàndard per baixar fitxers d'Internet. Un servidor FTP és un programa que es troba en un ordinador connectat a Internet i que emmagatzema fitxers que es transmetran amb l'ajuda de l'FTP. Mentre que l'FTP és responsable de transmetre i baixar fitxers d'Internet, l'<link href=\"text/shared/00/00000002.xhp#http\">HTTP</link> (protocol de transferència d'hipertext, de l'anglés Hypertext Transfer Protocol) fa possible la connexió i la transferència de fitxers entre servidors WWW i clients."
#. DfnEq
#: 00000002.xhp
@@ -962,14 +962,14 @@ msgctxt ""
msgid "HTML"
msgstr "HTML"
-#. BRhCV
+#. iTVXF
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3161459\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 "L'HTML (Hypertext Markup Language, llenguatge d'etiquetatge d'hipertext) és un llenguatge per a codificar documents que s'utilitza com a format de fitxer dels documents WWW. Deriva de l'<link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> i integra text, gràfics, vídeos i so."
+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\">SGML</link> and integrates text, graphics, videos and sound."
+msgstr "L'HTML (Hypertext Markup Language, llenguatge d'etiquetatge d'hipertext) és un llenguatge per a codificar documents que s'utilitza com a format de fitxer dels documents WWW. Deriva de l'<link href=\"text/shared/00/00000002.xhp#sgml\">SGML</link> i integra text, gràfics, vídeos i so."
#. RWrXM
#: 00000002.xhp
@@ -1061,23 +1061,23 @@ msgctxt ""
msgid "ImageMap"
msgstr "Mapa d'imatge"
-#. vbAkm
+#. NnAbR
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3154685\n"
"help.text"
-msgid "An ImageMap is a reference-sensitive graphic or frame. You can click on defined areas of the graphic or 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>."
+msgid "An ImageMap is a reference-sensitive graphic or frame. You can click on defined areas of the graphic or frame to go to a target (<link href=\"text/shared/00/00000002.xhp#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\">ImageMap Editor</link>."
msgstr ""
-#. CzwEW
+#. 8SEEo
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3153178\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 "Hi ha dos tipus diferents de mapes d'imatge. Un mapa d'imatge de client s'avalua a l'ordinador de client, que ha carregat el gràfic des d'Internet, mentre que un mapa d'imatge de servidor s'avalua en l'ordinador del servidor que ofereix una pàgina <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> a Internet. En l'avaluació de servidor, si es fa clic a un mapa d'imatge s'envien les coordenades relatives del cursor dins de la imatge al servidor, i un programa especial del servidor respon. En l'avaluació de client, si es fa clic a una zona sensible determinada del mapa d'imatge s'activa l'URL, com si fos un enllaç de text normal. L'URL apareix sota la busca del ratolí quan el passeu a través del mapa d'imatge."
+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\">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 "Hi ha dos tipus diferents de mapes d'imatge. Un mapa d'imatge de client s'avalua a l'ordinador de client, que ha carregat el gràfic des d'Internet, mentre que un mapa d'imatge de servidor s'avalua en l'ordinador del servidor que ofereix una pàgina <link href=\"text/shared/00/00000002.xhp#html\">HTML</link> a Internet. En l'avaluació de servidor, si es fa clic a un mapa d'imatge s'envien les coordenades relatives del cursor dins de la imatge al servidor, i un programa especial del servidor respon. En l'avaluació de client, si es fa clic a una zona sensible determinada del mapa d'imatge s'activa l'URL, com si fos un enllaç de text normal. L'URL apareix sota la busca del ratolí quan el passeu a través del mapa d'imatge."
#. Tk4uc
#: 00000002.xhp
@@ -1178,22 +1178,22 @@ msgctxt ""
msgid "Client Side ImageMap"
msgstr "Mapa d'imatge de client"
-#. DKeXA
+#. HN6DX
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3151290\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 "L'àrea de la imatge o del marc sobre la qual el lector pot fer clic s'indica amb l'aparició de l'<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> enllaçat quan el ratolí passa per sobre d'aquesta àrea. El mapa d'imatge es guarda en una capa per sota de la imatge, i conté informació sobre les regions referenciades. L'únic desavantatge dels mapes d'imatge de client és que els navegadors web més antics no els poden llegir; un desavantatge que, tot i així, es resoldrà tot sol amb el temps."
+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\">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 "L'àrea de la imatge o del marc sobre la qual el lector pot fer clic s'indica amb l'aparició de l'<link href=\"text/shared/00/00000002.xhp#url\">URL</link> enllaçat quan el ratolí passa per sobre d'aquesta àrea. El mapa d'imatge es guarda en una capa per sota de la imatge, i conté informació sobre les regions referenciades. L'únic desavantatge dels mapes d'imatge de client és que els navegadors web més antics no els poden llegir; un desavantatge que, tot i així, es resoldrà tot sol amb el temps."
-#. kB898
+#. 7Dq9J
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3149664\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 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."
+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 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\">HTML</link> format are inserted directly into the page in HTML code."
msgstr ""
#. JCSdG
@@ -1268,14 +1268,14 @@ msgctxt ""
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 vol dir «Standard Generalized Markup Language» (Llenguatge d'etiquetatge generalitzat estàndard). L'SGML està basat en la idea que els documents tenen informació estructural i altres elements semàntics que es poden descriure sense fer referència a com s'han de mostrar estos elements. La visualització d'estos documents pot variar en funció del mitjà i de les preferències d'estil. En textos estructurats, l'SGML no defineix només les estructures (al DTD = Document Type Definition, definició de tipus de document), sinó que també assegura que s'utilitzen de manera coherent."
-#. SD7LT
+#. hSUP3
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3148747\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 "L'<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> és una aplicació especialitzada de l'SGML. Això vol dir que molts dels navegadors web admeten només un interval limitat dels estàndards SGML i que gairebé tots els sistemes que permeten l'SGML poden produir pàgines web HTML interessants."
+msgid "<link href=\"text/shared/00/00000002.xhp#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 "L'<link href=\"text/shared/00/00000002.xhp#html\">HTML</link> és una aplicació especialitzada de l'SGML. Això vol dir que molts dels navegadors web admeten només un interval limitat dels estàndards SGML i que gairebé tots els sistemes que permeten l'SGML poden produir pàgines web HTML interessants."
#. M2LKq
#: 00000002.xhp
@@ -1322,14 +1322,14 @@ msgctxt ""
msgid "Tags"
msgstr "Etiquetes"
-#. JYJaQ
+#. cH38H
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3156360\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 "Les pàgines <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> contenen certes instruccions estructurals i de format anomenades etiquetes. Les etiquetes són paraules de codi entre claudàtors dins de la descripció del document en llenguatge HTML. Moltes etiquetes contenen referències de text o d'enllaços entre el claudàtor d'obertura i de tancament. Per exemple, els títols es marquen amb les etiquetes <h1> al principi i </h1> al final del títol. Algues etiquetes apareixen soles, com en el cas de <br> per a un salt de línia o bé <img ...> per enllaçar un gràfic."
+msgid "<link href=\"text/shared/00/00000002.xhp#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 "Les pàgines <link href=\"text/shared/00/00000002.xhp#html\">HTML</link> contenen certes instruccions estructurals i de format anomenades etiquetes. Les etiquetes són paraules de codi entre claudàtors dins de la descripció del document en llenguatge HTML. Moltes etiquetes contenen referències de text o d'enllaços entre el claudàtor d'obertura i de tancament. Per exemple, els títols es marquen amb les etiquetes <h1> al principi i </h1> al final del títol. Algues etiquetes apareixen soles, com en el cas de <br> per a un salt de línia o bé <img ...> per enllaçar un gràfic."
#. c7EwD
#: 00000002.xhp
@@ -2060,14 +2060,14 @@ msgctxt ""
msgid "<bookmark_value>common terms;glossaries</bookmark_value><bookmark_value>glossaries;common terms</bookmark_value><bookmark_value>terminology;general glossary</bookmark_value>"
msgstr "<bookmark_value>termes comuns;glossaris</bookmark_value><bookmark_value>glossaris;termes comuns</bookmark_value><bookmark_value>terminologia;glossari general</bookmark_value>"
-#. MGCGZ
+#. SVv3u
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"hd_id3154896\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000005.xhp\" name=\"General Glossary\">General Glossary</link>"
-msgstr "<link href=\"text/shared/00/00000005.xhp\" name=\"Glossari general\">Glossari general</link>"
+msgid "<link href=\"text/shared/00/00000005.xhp\">General Glossary</link>"
+msgstr "<link href=\"text/shared/00/00000005.xhp\">Glossari general</link>"
#. qDfo9
#: 00000005.xhp
@@ -2681,13 +2681,13 @@ msgctxt ""
msgid "Object Linking and Embedding (OLE) objects can be linked to a target document or may also be embedded. Embedding inserts a copy of the object and details of the source program in the target document. If you want to edit the object, simply activate the source program by double-clicking on the object."
msgstr "Els objectes d'enllaç i incrustació (OLE) es poden enllaçar o incrustar a un document de destinació. Amb la incrustació s'insereix una còpia de l'objecte i els detalls del programa d'origen en el document de destinació. Si voleu editar l'objecte, només cal que activeu el programa d'origen fent doble clic a l'objecte."
-#. JFDxS
+#. 3PsN4
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
"par_id781653403974567\n"
"help.text"
-msgid "If an OLE object is linked to a target document, then the target document must be available in the location specified in the link. Deleting or moving the target document will make it impossible to open the linked OLE object. You can use the <link href=\"text/shared/optionen/01010200.xhp#relative_saving_option\" name=\"relative\"><menuitem>Save URLs relative to file system</menuitem></link> option in the <link href=\"text/shared/optionen/01010200.xhp\" name=\"General Load/Save Options\"><menuitem>General</menuitem></link> section of Load/Save Options to configure your system to save links <link href=\"text/shared/00/00000005.xhp#saving\" name=\"relative saving\"><menuitem>relative</menuitem></link> to your filesystem."
+msgid "If an OLE object is linked to a target document, then the target document must be available in the location specified in the link. Deleting or moving the target document will make it impossible to open the linked OLE object. You can use the <link href=\"text/shared/optionen/01010200.xhp#relative_saving_option\"><menuitem>Save URLs relative to file system</menuitem></link> option in the <link href=\"text/shared/optionen/01010200.xhp\"><menuitem>General</menuitem></link> section of Load/Save Options to configure your system to save links <link href=\"text/shared/00/00000005.xhp#saving\"><menuitem>relative</menuitem></link> to your filesystem."
msgstr ""
#. 3YbnY
@@ -3419,14 +3419,14 @@ msgctxt ""
msgid "About Import and Export Filters"
msgstr "Quant als filtres d'importació i exportació"
-#. VUDKv
+#. MS5pq
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3143272\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 "Al $[officename], a part dels <link href=\"text/shared/00/00000021.xhp\" name=\"formats XML\">formats XML</link> també podeu obrir i guardar molts altres formats XML."
+msgid "In $[officename], apart from its own <link href=\"text/shared/00/00000021.xhp\">XML formats</link> you can also open and save many foreign XML formats."
+msgstr "Al $[officename], a part dels <link href=\"text/shared/00/00000021.xhp\">formats XML</link> també podeu obrir i guardar molts altres formats XML."
#. 28Hne
#: 00000020.xhp
@@ -3446,14 +3446,14 @@ msgctxt ""
msgid "BASIC Macros in Microsoft Office Documents"
msgstr ""
-#. F4FjN
+#. RtBCP
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3156211\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 "A <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\" name=\"Carrega/guarda - Propietats VBA\">Carrega/guarda - Propietats VBA</link> podeu indicar els paràmetres per als codis de macro VBA en els documents del MS Office. Les macros VBA no es poden executar al $[officename]; primer s'han de convertir i adaptar. Moltes vegades només voleu utilitzar el $[officename] per canviar el contingut visible d'un fitxer del Word, l'Excel o el PowerPoint i després guardar-lo de nou en format del Microsoft Office sense canviar les macros que incorporen. Podeu establir el comportament del $[officename] com desitgeu: o bé podeu guardar les macros VBA de manera comentada com a subrutines del $[officename] i que quan es guarde el document en format del MS Office s'escriguen de nou correctament, o bé podeu seleccionar que en carregar se suprimisquen les macros del Microsoft Office. L'última opció és una protecció efectiva contra els virus en documents del Microsoft Office."
+msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\">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 "A <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\">Carrega/guarda - Propietats VBA</link> podeu indicar els paràmetres per als codis de macro VBA en els documents del MS Office. Les macros VBA no es poden executar al $[officename]; primer s'han de convertir i adaptar. Moltes vegades només voleu utilitzar el $[officename] per canviar el contingut visible d'un fitxer del Word, l'Excel o el PowerPoint i després guardar-lo de nou en format del Microsoft Office sense canviar les macros que incorporen. Podeu establir el comportament del $[officename] com desitgeu: o bé podeu guardar les macros VBA de manera comentada com a subrutines del $[officename] i que quan es guarde el document en format del MS Office s'escriguen de nou correctament, o bé podeu seleccionar que en carregar se suprimisquen les macros del Microsoft Office. L'última opció és una protecció efectiva contra els virus en documents del Microsoft Office."
#. fkNEM
#: 00000020.xhp
@@ -3509,14 +3509,14 @@ msgctxt ""
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>La importació normalment no és problemàtica. Fins i tot la informació crítica i els controls s'importen (i s'exporten) de manera que el $[officename] reconeix el text que s'ha inserit o suprimit en documents del Word, així com atributs de tipus de lletra que s'han modificat. També s'inclou un color diferent per a cada autor i l'hora dels canvis. Quan s'importen quadres de text de gràfics i etiquetes de les plantilles, la majoria d'atributs també s'importen com a paràgraf directe i atributs de dibuix. Tanmateix, alguns atributs es poden perdre durant el procés d'importació.</defaultinline></switchinline>"
-#. zi6y8
+#. wK697
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3149095\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>També és possible importar i exportar fitxers <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link>. Este format de fitxer es pot utilitzar per intercanviar textos formatats entre diferents aplicacions i plataformes. D'esta manera, la majoria de formats que puguen llegir la majoria de programes es podran transferir sense problemes. El porta-retalls utilitza el format RTF quan inseriu part d'un full de càlcul del $[officename] Calc a través de <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> al $[officename] Writer.</defaultinline></switchinline>"
+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\">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\">DDE</link> into $[officename] Writer.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>També és possible importar i exportar fitxers <link href=\"text/shared/00/00000005.xhp#rtf\">RTF</link>. Este format de fitxer es pot utilitzar per intercanviar textos formatats entre diferents aplicacions i plataformes. D'esta manera, la majoria de formats que puguen llegir la majoria de programes es podran transferir sense problemes. El porta-retalls utilitza el format RTF quan inseriu part d'un full de càlcul del $[officename] Calc a través de <link href=\"text/shared/00/00000005.xhp\">DDE</link> al $[officename] Writer.</defaultinline></switchinline>"
#. yJeZD
#: 00000020.xhp
@@ -3572,13 +3572,13 @@ msgctxt ""
msgid "When exporting to HTML, the character set selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - 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 "En exportar a HTML, s'utilitza el joc de caràcters seleccionat a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferències</emph></caseinline><defaultinline><emph>Eines - Opcions</emph></defaultinline></switchinline><emph> - Carrega/guarda - Compatibilitat HTML</emph>. Els caràcters que no siguen ací s'escriuen amb una forma de substitució, que es mostra correctament en els navegadors web moderns. Quan s'exportin estos caràcters, rebreu l'avís corresponent."
-#. kEb5n
+#. u99vh
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3153146\n"
"help.text"
-msgid "If, in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, you select Mozilla Firefox 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."
+msgid "If, in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, you select Mozilla Firefox 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\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
msgstr ""
#. XP7i4
@@ -3905,14 +3905,14 @@ msgctxt ""
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 "Es permeten TIFF multipàgina quan s'importen o s'exporten gràfics a format TIFF. S'obtenen els gràfics com a conjunt d'imatges individuals en un únic fitxer; per exemple, les pàgines individuals d'un fax."
-#. Mw8sa
+#. 8UHb8
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3159153\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 "Es pot accedir a algunes opcions del $[officename] Draw i el $[officename] Impress a través de <emph>Fitxer ▸ Exporta</emph>. Vegeu <link href=\"text/shared/00/00000200.xhp\" name=\"Opcions d'exportació de gràfics\">Opcions d'exportació de gràfics</link> per a obtindre més informació."
+msgid "Some $[officename] Draw and $[officename] Impress options can be accessed through <emph>File - Export</emph>. See <link href=\"text/shared/00/00000200.xhp\">Graphics Export Options</link> for more information."
+msgstr "Es pot accedir a algunes opcions del $[officename] Draw i el $[officename] Impress a través de <emph>Fitxer ▸ Exporta</emph>. Vegeu <link href=\"text/shared/00/00000200.xhp\">Opcions d'exportació de gràfics</link> per a obtindre més informació."
#. xZeB3
#: 00000020.xhp
@@ -3977,14 +3977,14 @@ msgctxt ""
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>exportació; fitxers XML</bookmark_value><bookmark_value>formats de fitxer XML</bookmark_value><bookmark_value>extensions; formats de fitxer</bookmark_value><bookmark_value>sufixos en formats de fitxer</bookmark_value><bookmark_value>tipus de document al $[officename]</bookmark_value><bookmark_value>formats de fitxer; canvi dels paràmetres per defecte del $[officename]</bookmark_value><bookmark_value>paràmetres per defecte;formats de fitxer al $[officename]</bookmark_value><bookmark_value>formats de fitxer;OpenDocument/XML</bookmark_value><bookmark_value>formats de fitxer OpenDocument</bookmark_value><bookmark_value>formats de fitxer ODF</bookmark_value>"
-#. ng7dZ
+#. C4uCR
#: 00000021.xhp
msgctxt ""
"00000021.xhp\n"
"hd_id3154408\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=\"Formats de fitxer XML\">Formats de fitxer XML</link></variable>"
+msgid "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\">XML File Formats</link></variable>"
+msgstr "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\">Formats de fitxer XML</link></variable>"
#. XE7fE
#: 00000021.xhp
@@ -3995,13 +3995,13 @@ msgctxt ""
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\">Per defecte, el $[officename] carrega i guarda els fitxers en el format de fitxer OpenDocument.</ahelp>"
-#. TPGpr
+#. RXMyQ
#: 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=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
+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=\"https://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
msgstr ""
#. GEoMF
@@ -4544,13 +4544,13 @@ msgctxt ""
msgid "In current versions, you can select to save your documents using ODF 1.2 or ODF 1.0/1.1 (for backward compatibility). Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Load/Save - General</menuitem> and select the ODF format version."
msgstr "En les versions més recents, podeu seleccionar guardar els vostres documents en ODF 1.2 o ODF 1.0/1.1 (per a la retrocompatibilitat). Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME ▸ Preferències</menuitem></caseinline><defaultinline><menuitem>Eines ▸ Opcions</menuitem></defaultinline></switchinline><menuitem> ▸ Carrega/guarda ▸ General</menuitem> i seleccioneu la versió del format ODF que preferiu."
-#. wCawc
+#. pNsir
#: 00000021.xhp
msgctxt ""
"00000021.xhp\n"
"par_id3146907\n"
"help.text"
-msgid "If you want to define another file format as the default, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\"><menuitem>Load/Save - General</menuitem></link> to find alternative file formats for each $[officename] document type."
+msgid "If you want to define another file format as the default, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01010200.xhp\"><menuitem>Load/Save - General</menuitem></link> to find alternative file formats for each $[officename] document type."
msgstr ""
#. RrpAt
@@ -4688,23 +4688,23 @@ msgctxt ""
msgid "<variable id=\"siehe\">See also... </variable>"
msgstr "<variable id=\"siehe\">Vegeu també... </variable>"
-#. dA7YM
+#. aT96F
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
"par_id3143206\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=\"Menú Eines - Escenaris\">Menú Eines - Escenaris</link></variable>"
+msgid "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\">Tools Menu - Scenarios</link></variable>"
+msgstr "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\">Menú Eines - Escenaris</link></variable>"
-#. BCND6
+#. zZE5T
#: 00000099.xhp
msgctxt ""
"00000099.xhp\n"
"par_id3156069\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 "A la pàgina d'ajuda per al <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] en general\">$[officename] en general</link> podeu trobar instruccions aplicables a tots els mòduls, com ara treballar amb finestres i menús, personalitzar el $[officename], fonts de dades, la galeria i la funció d'arrossegar i deixar anar."
+msgid "On the help page for <link href=\"text/shared/guide/main.xhp\">$[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 "A la pàgina d'ajuda per al <link href=\"text/shared/guide/main.xhp\">$[officename] en general</link> podeu trobar instruccions aplicables a tots els mòduls, com ara treballar amb finestres i menús, personalitzar el $[officename], fonts de dades, la galeria i la funció d'arrossegar i deixar anar."
#. v53RG
#: 00000099.xhp
@@ -5093,14 +5093,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indica que no voleu utilitzar compressió.</ahelp>"
-#. KHHgh
+#. owoXD
#: 00000200.xhp
msgctxt ""
"00000200.xhp\n"
"par_id3147250\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 "Vegeu la <link href=\"text/shared/00/00000020.xhp\" name=\"Informació dels filtres d'importació i exportació\">Informació dels filtres d'importació i exportació</link> per obtindre més informació quant als filtres."
+msgid "See <link href=\"text/shared/00/00000020.xhp\">Import and Export Filter Information</link> for more information about filters."
+msgstr "Vegeu la <link href=\"text/shared/00/00000020.xhp\">Informació dels filtres d'importació i exportació</link> per obtindre més informació quant als filtres."
#. GUBNE
#: 00000206.xhp
@@ -5147,14 +5147,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/imoptdialog/charsetlist\">Select the character set from the options used for import/export.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/imoptdialog/charsetlist\" visibility=\"visible\">Seleccioneu el joc de caràcters de les opcions utilitzades per importar/exportar.</ahelp>"
-#. 3jYHJ
+#. G4AHh
#: 00000206.xhp
msgctxt ""
"00000206.xhp\n"
"par_id3152942\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 "Per a més informació sobre els filtres, consulteu el tema: <link href=\"text/shared/00/00000020.xhp\" name=\"Informació sobre els filtres d'importació i exportació\">Informació sobre els filtres d'importació i exportació</link>."
+msgid "For further information regarding filters, refer to the topic: <link href=\"text/shared/00/00000020.xhp\">Information about Import and Export Filters</link>."
+msgstr "Per a més informació sobre els filtres, consulteu el tema: <link href=\"text/shared/00/00000020.xhp\">Informació sobre els filtres d'importació i exportació</link>."
#. XFQiC
#: 00000207.xhp
@@ -5372,13 +5372,13 @@ msgctxt ""
msgid "Text Import"
msgstr "Importació de text"
-#. NfHDC
+#. qGdAM
#: 00000208.xhp
msgctxt ""
"00000208.xhp\n"
"hd_id3150960\n"
"help.text"
-msgid "<variable id=\"TextImporth1\"><link href=\"text/shared/00/00000208.xhp\" name=\"Text Import\">Text Import</link></variable>"
+msgid "<variable id=\"TextImporth1\"><link href=\"text/shared/00/00000208.xhp\">Text Import</link></variable>"
msgstr ""
#. gtCCw
@@ -5444,14 +5444,14 @@ msgctxt ""
msgid "If Language is set to Default (for CSV import) or Automatic (for HTML import), Calc will use the globally set language. If Language is set to a specific language, that language will be used when importing numbers."
msgstr "Si la llengua està definida en Per defecte (per a la importació de CSV) o Automàtica (per a la importació d'HTML), el Calc utilitzarà la llengua definida globalment. Si la llengua està definida en una llengua específica, s'utilitzarà esta llengua per importar els nombres."
-#. 4AA96
+#. zGQuN
#: 00000208.xhp
msgctxt ""
"00000208.xhp\n"
"par_id314949586\n"
"help.text"
-msgid "When importing an HTML document, the Language selection can conflict with the global HTML option <link href=\"text/shared/optionen/01030500.xhp\" name=\"Use\">Use 'English (USA)' locale for numbers</link>. The global HTML option is effective only when the Automatic language option is selected. If you select a specific language in the HTML Import Options dialog, the global HTML option is ignored."
-msgstr "En importar un document HTML, la selecció de la llengua pot entrar en conflicte amb l'opció HTML global <link href=\"text/shared/optionen/01030500.xhp\" name=\"Utilitza\">Utilitza la configuració de l'Anglés (EUA) per als nombres</link>. L'opció HTML global només s'aplica si se selecciona l'opció de llengua Automàtica. Si seleccioneu una llengua específica al diàleg Opcions d'importació d'HTML, l'opció HTML global s'ignora."
+msgid "When importing an HTML document, the Language selection can conflict with the global HTML option <link href=\"text/shared/optionen/01030500.xhp\">Use 'English (USA)' locale for numbers</link>. The global HTML option is effective only when the Automatic language option is selected. If you select a specific language in the HTML Import Options dialog, the global HTML option is ignored."
+msgstr "En importar un document HTML, la selecció de la llengua pot entrar en conflicte amb l'opció HTML global <link href=\"text/shared/optionen/01030500.xhp\">Utilitza la configuració de l'Anglés (EUA) per als nombres</link>. L'opció HTML global només s'aplica si se selecciona l'opció de llengua Automàtica. Si seleccioneu una llengua específica al diàleg Opcions d'importació d'HTML, l'opció HTML global s'ignora."
#. 7EbAk
#: 00000208.xhp
@@ -6065,22 +6065,22 @@ msgctxt ""
msgid "If you want to use a fixed width to separate the imported data into columns, click in the ruler to set the width boundaries."
msgstr "Si voleu utilitzar una amplària fixa per separar les dades importades en columnes, feu clic al regle per establir els límits d'amplària."
-#. EUV3y
+#. wi7B2
#: 00000208.xhp
msgctxt ""
"00000208.xhp\n"
"par_id3155746\n"
"help.text"
-msgid "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Navigating Without the Mouse\">Navigating Without the Mouse</link>"
-msgstr "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Navegació sense el ratolí\">Navegació sense el ratolí</link>"
+msgid "<link href=\"text/shared/guide/keyboard.xhp\">Navigating Without the Mouse</link>"
+msgstr "<link href=\"text/shared/guide/keyboard.xhp\">Navegació sense el ratolí</link>"
-#. jCiAC
+#. kDzVv
#: 00000208.xhp
msgctxt ""
"00000208.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
+msgid "<link href=\"text/shared/00/00000020.xhp\">Information about Import and Export Filters</link>."
msgstr ""
#. nkesm
@@ -8666,31 +8666,31 @@ msgctxt ""
msgid "<variable id=\"packagemanager_eu\">Choose <emph>Tools - Extension Manager</emph>, click <emph>Check for Updates</emph> button.</variable>"
msgstr "<variable id=\"packagemanager_eu\">Trieu <emph>Eines ▸ Gestor d'extensions</emph> i feu clic al botó <emph>Comprova si hi ha actualitzacions</emph>.</variable>"
-#. 4fmet
+#. sPJ9b
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3151106\n"
"help.text"
-msgid "<variable id=\"xmlfilter\">Choose <menuitem>Tools - XML Filter Settings</menuitem>.</variable>"
+msgid "<variable id=\"xmlfilter\">Choose <menuitem>Tools - Macros - XML Filter Settings</menuitem>.</variable>"
msgstr ""
-#. B29Ug
+#. FDFcn
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3153778\n"
"help.text"
-msgid "<variable id=\"xmlfilteredit\"><menuitem>Tools - XML Filter Settings</menuitem>, then click <emph>New</emph> or <emph>Edit</emph>.</variable>"
+msgid "<variable id=\"xmlfilteredit\"><menuitem>Tools - Macros - XML Filter Settings</menuitem>, then click <emph>New</emph> or <emph>Edit</emph>.</variable>"
msgstr ""
-#. 8ex4G
+#. 5GEDi
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3148979\n"
"help.text"
-msgid "<variable id=\"xmlfiltertest\"><menuitem>Tools - XML Filter Settings</menuitem>, then click <emph>Test XSLTs</emph>.</variable>"
+msgid "<variable id=\"xmlfiltertest\"><menuitem>Tools - Macros - XML Filter Settings</menuitem>, then click <emph>Test XSLTs</emph>.</variable>"
msgstr ""
#. EzGsj
@@ -10061,22 +10061,22 @@ msgctxt ""
msgid "Format Menu"
msgstr "Menú Format"
-#. YGCgK
+#. KHgFt
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "Open <link href=\"text/shared/02/04210000.xhp\" name=\"Link to Optimize Size\"><menuitem>Optimize Size</menuitem></link> dropdown menu from <link href=\"text/swriter/main0204.xhp\" name=\"Link to Table Bar\"><menuitem>Table</menuitem></link> bar, click"
+msgid "Open <link href=\"text/shared/02/04210000.xhp\"><menuitem>Optimize Size</menuitem></link> dropdown menu from <link href=\"text/swriter/main0204.xhp\"><menuitem>Table</menuitem></link> bar, click"
msgstr ""
-#. JEmrc
+#. GHptw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id481655731478873\n"
"help.text"
-msgid "Open <link href=\"text/shared/02/04210000.xhp\" name=\"Link to Optimize Size\"><menuitem>Optimize Size</menuitem></link> dropdown menu from <menuitem>Table</menuitem> bar, click"
+msgid "Open <link href=\"text/shared/02/04210000.xhp\"><menuitem>Optimize Size</menuitem></link> dropdown menu from <menuitem>Table</menuitem> bar, click"
msgstr ""
#. LNCUB
@@ -14399,13 +14399,13 @@ msgctxt ""
msgid "Showing and Hiding Docked Windows"
msgstr "Mostrar i amagar les finestres acoblades"
-#. AXPtD
+#. YaebL
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"par_id3149948\n"
"help.text"
-msgid "Every <link href=\"text/shared/00/00000005.xhp#docking\" name=\"docked\">docked</link> window has an icon to control the display properties of the window."
+msgid "Every <link href=\"text/shared/00/00000005.xhp#docking\">docked</link> window has an icon to control the display properties of the window."
msgstr ""
#. jJcsB
@@ -14624,14 +14624,14 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. GAKXh
+#. jEYzL
#: 01050000.xhp
msgctxt ""
"01050000.xhp\n"
"hd_id3158397\n"
"help.text"
-msgid "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/shared/00/01050000.xhp\">General</link>"
+msgstr "<link href=\"text/shared/00/01050000.xhp\">General</link>"
#. hDAjC
#: 01050000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index c25d31dd456..01893940e03 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-22 14:43+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ca_VALENCIA/>\n"
@@ -26,14 +26,14 @@ msgctxt ""
msgid "New"
msgstr "Nou"
-#. vrUzp
+#. tXKjA
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"hd_id3154788\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010000.xhp\" name=\"New\">New</link>"
-msgstr "<link href=\"text/shared/01/01010000.xhp\" name=\"Nou\">Nou</link>"
+msgid "<link href=\"text/shared/01/01010000.xhp\">New</link>"
+msgstr "<link href=\"text/shared/01/01010000.xhp\">Nou</link>"
#. nGQS8
#: 01010000.xhp
@@ -332,13 +332,13 @@ msgctxt ""
msgid "Labels"
msgstr "Etiquetes"
-#. HtnYx
+#. C77L6
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"par_id3148388\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\"><emph>Labels</emph></link> dialog where you can set the options for your labels, and then creates a text document for the labels in $[officename] Writer."
+msgid "Opens the <link href=\"text/shared/01/01010200.xhp\"><emph>Labels</emph></link> dialog where you can set the options for your labels, and then creates a text document for the labels in $[officename] Writer."
msgstr ""
#. 6Gs6J
@@ -359,13 +359,13 @@ msgctxt ""
msgid "Business Cards"
msgstr "Targetes de visita"
-#. eRZkq
+#. kaSMB
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"par_id3150968\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\"><emph>Business Cards</emph></link> dialog where you can set the options for your business cards, and then creates a text document in $[officename] Writer."
+msgid "Opens the <link href=\"text/shared/01/01010300.xhp\"><emph>Business Cards</emph></link> dialog where you can set the options for your business cards, and then creates a text document in $[officename] Writer."
msgstr ""
#. BRwML
@@ -386,13 +386,13 @@ msgctxt ""
msgid "Master Document"
msgstr "Document mestre"
-#. yWTR9
+#. 2TZPG
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"par_id3150961\n"
"help.text"
-msgid "Creates a <link href=\"text/shared/01/01010001.xhp\" name=\"master document\">master document</link>."
+msgid "Creates a <link href=\"text/shared/01/01010001.xhp\">master document</link>."
msgstr ""
#. CzBng
@@ -440,14 +440,14 @@ msgctxt ""
msgid "Master Document"
msgstr "Document mestre"
-#. BtFjN
+#. mQvFB
#: 01010001.xhp
msgctxt ""
"01010001.xhp\n"
"hd_id3153514\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=\"Document mestre\">Document mestre</link>"
+msgid "<link href=\"text/shared/01/01010001.xhp\">Master Document</link>"
+msgstr "<link href=\"text/shared/01/01010001.xhp\">Document mestre</link>"
#. Un5RA
#: 01010001.xhp
@@ -458,14 +458,14 @@ msgctxt ""
msgid "Use a master document to organize complex projects, such as a book. <ahelp hid=\".\">A master document can contain the individual files for each chapter of a book, as well as a table of contents, and an index.</ahelp>"
msgstr "Utilitzeu un document mestre per a organitzar projectes complexos, com ara un llibre. <ahelp hid=\".\">Un document mestre pot contindre fitxers individuals per a cada capítol d'un llibre, així com una taula de continguts i un índex.</ahelp>"
-#. 4SDS6
+#. AjRVz
#: 01010001.xhp
msgctxt ""
"01010001.xhp\n"
"par_id3149828\n"
"help.text"
-msgid "<link href=\"text/shared/01/02110000.xhp\" name=\"Navigator for Master Documents\"><emph>Navigator for Master Documents</emph></link>"
-msgstr "<link href=\"text/shared/01/02110000.xhp\" name=\"Navegador per als documents mestres\"><emph>Navegador per als documents mestres</emph></link>"
+msgid "<link href=\"text/shared/01/02110000.xhp\"><emph>Navigator for Master Documents</emph></link>"
+msgstr "<link href=\"text/shared/01/02110000.xhp\"><emph>Navegador per als documents mestres</emph></link>"
#. FkoeH
#: 01010200.xhp
@@ -476,14 +476,14 @@ msgctxt ""
msgid "Labels"
msgstr "Etiquetes"
-#. QYk5V
+#. MZVWF
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"hd_id3154788\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link>"
-msgstr "<link href=\"text/shared/01/01010200.xhp\" name=\"Etiquetes\">Etiquetes</link>"
+msgid "<link href=\"text/shared/01/01010200.xhp\">Labels</link>"
+msgstr "<link href=\"text/shared/01/01010200.xhp\">Etiquetes</link>"
#. MMGTE
#: 01010200.xhp
@@ -521,14 +521,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/labeldialog/ok\">Creates a new document for editing.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labeldialog/ok\">Crea un document nou per editar-lo.</ahelp>"
-#. GDViU
+#. gKCyo
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3144438\n"
"help.text"
-msgid "<link href=\"text/shared/guide/labels.xhp\" name=\"Creating labels\">Creating labels</link>"
-msgstr "<link href=\"text/shared/guide/labels.xhp\" name=\"Creació d'etiquetes\">Creació d'etiquetes</link>"
+msgid "<link href=\"text/shared/guide/labels.xhp\">Creating labels</link>"
+msgstr "<link href=\"text/shared/guide/labels.xhp\">Creació d'etiquetes</link>"
#. hAQJr
#: 01010201.xhp
@@ -539,14 +539,14 @@ msgctxt ""
msgid "Labels"
msgstr "Etiquetes"
-#. o3HZ4
+#. fqUEK
#: 01010201.xhp
msgctxt ""
"01010201.xhp\n"
"hd_id3149987\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010201.xhp\" name=\"Labels\">Labels</link>"
-msgstr "<link href=\"text/shared/01/01010201.xhp\" name=\"Etiquetes\">Etiquetes</link>"
+msgid "<link href=\"text/shared/01/01010201.xhp\">Labels</link>"
+msgstr "<link href=\"text/shared/01/01010201.xhp\">Etiquetes</link>"
#. BVUFA
#: 01010201.xhp
@@ -611,14 +611,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/address\">Creates a label with your return address. Text that is currently in the <emph>Label text</emph> box is overwritten.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/address\">Crea una etiqueta amb l'adreça del remitent. Se sobreescriu el text que ja hi ha en el quadre <emph>Text de l'etiqueta</emph>.</ahelp>"
-#. PqfB2
+#. 3sB9b
#: 01010201.xhp
msgctxt ""
"01010201.xhp\n"
"par_id3155555\n"
"help.text"
-msgid "To change your return address, choose <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/01010100.xhp\" name=\"%PRODUCTNAME\"><emph>%PRODUCTNAME</emph></link>, and then click on the <emph>User Data</emph> tab."
-msgstr "Per modificar l'adreça del remitent, seleccioneu <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\">%PRODUCTNAME</link></emph> i, tot seguit, feu clic a la pestanya <emph>Dades de l'usuari</emph>."
+msgid "To change your return address, choose <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/01010100.xhp\"><emph>%PRODUCTNAME</emph></link>, and then click on the <emph>User Data</emph> tab."
+msgstr "Per modificar l'adreça del remitent, seleccioneu <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\">%PRODUCTNAME</link></emph> i, tot seguit, feu clic a la pestanya <emph>Dades de l'usuari</emph>."
#. J7aAs
#: 01010201.xhp
@@ -764,14 +764,14 @@ msgctxt ""
msgid "Type"
msgstr "Tipus"
-#. RFPbS
+#. 7BjGj
#: 01010201.xhp
msgctxt ""
"01010201.xhp\n"
"par_id3149235\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/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=\"modules/swriter/ui/cardmediumpage/type\">Seleccioneu el format que s'ha d'utilitzar. Els formats disponibles depenen de la marca que trieu a la llista <emph>Marca</emph>. Si voleu utilitzar un format d'etiqueta personalitzat, seleccioneu <emph>[Usuari]</emph> i tot seguit feu clic a la pestanya <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> per definir el format.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/cardmediumpage/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\"><emph>Format</emph></link> tab to define the format.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/cardmediumpage/type\">Seleccioneu el format que s'ha d'utilitzar. Els formats disponibles depenen de la marca que trieu a la llista <emph>Marca</emph>. Si voleu utilitzar un format d'etiqueta personalitzat, seleccioneu <emph>[Usuari]</emph> i tot seguit feu clic a la pestanya <link href=\"text/shared/01/01010202.xhp\"><emph>Format</emph></link> per definir el format.</ahelp>"
#. ndEoL
#: 01010201.xhp
@@ -800,14 +800,14 @@ msgctxt ""
msgid "Format"
msgstr "Format"
-#. sPzzy
+#. UTYLn
#: 01010202.xhp
msgctxt ""
"01010202.xhp\n"
"hd_id3151260\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010202.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/shared/01/01010202.xhp\" name=\"Format\">Format</link>"
+msgid "<link href=\"text/shared/01/01010202.xhp\">Format</link>"
+msgstr "<link href=\"text/shared/01/01010202.xhp\">Format</link>"
#. bNzeF
#: 01010202.xhp
@@ -845,14 +845,14 @@ msgctxt ""
msgid "Vertical pitch"
msgstr "Distància vertical"
-#. YFBED
+#. 7Dg6d
#: 01010202.xhp
msgctxt ""
"01010202.xhp\n"
"par_id3152425\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\">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=\"modules/swriter/ui/labelformatpage/vert\">Mostra la distància entre la vora superior d'una etiqueta o una targeta de visita, i l'etiqueta o la targeta de visita situada just a sota. Si definiu un format personalitzat, introduïu un valor ací.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\">Displays the distance between the top edge of a label or a business card and the top edge of the label or the business card. If you are defining a custom format, enter a value here.</ahelp>"
+msgstr ""
#. CSAJN
#: 01010202.xhp
@@ -908,14 +908,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/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=\"modules/swriter/ui/labelformatpage/left\">Mostra la distància entre la vora esquerra de la pàgina i la primera etiqueta de la targeta de visita. Si definiu un format personalitzat, introduïu un valor ací.</ahelp>"
-#. Bdde6
+#. AQPwq
#: 01010202.xhp
msgctxt ""
"01010202.xhp\n"
"hd_id3156346\n"
"help.text"
-msgid "Upper margin"
-msgstr "Marge superior"
+msgid "Top margin"
+msgstr ""
#. Y7AcG
#: 01010202.xhp
@@ -962,6 +962,42 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/rows\">Enter the number of labels or business cards that you want to span the height of the page.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labelformatpage/rows\">Introduïu el nombre d'etiquetes o de targetes de visita que han de cobrir l'alçària de la pàgina.</ahelp>"
+#. L4sgc
+#: 01010202.xhp
+msgctxt ""
+"01010202.xhp\n"
+"hd_id3144943\n"
+"help.text"
+msgid "Page width"
+msgstr ""
+
+#. 4Vwkr
+#: 01010202.xhp
+msgctxt ""
+"01010202.xhp\n"
+"par_id3148919\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/pagewidth\">Displays the width of the selected paper format. To define a custom format, enter a width here.</ahelp>"
+msgstr ""
+
+#. PnC3T
+#: 01010202.xhp
+msgctxt ""
+"01010202.xhp\n"
+"hd_id3144949\n"
+"help.text"
+msgid "Page height"
+msgstr ""
+
+#. Vo6Mj
+#: 01010202.xhp
+msgctxt ""
+"01010202.xhp\n"
+"par_id3148918\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/pageheight\">Displays the height of the selected paper format. To define a custom format, enter a height here.</ahelp>"
+msgstr ""
+
#. v93KC
#: 01010202.xhp
msgctxt ""
@@ -1034,14 +1070,14 @@ msgctxt ""
msgid "Options"
msgstr "Opcions"
-#. Ygpcu
+#. h3FWN
#: 01010203.xhp
msgctxt ""
"01010203.xhp\n"
"hd_id3155599\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010203.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/shared/01/01010203.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/shared/01/01010203.xhp\">Options</link>"
+msgstr "<link href=\"text/shared/01/01010203.xhp\">Opcions</link>"
#. bLgJQ
#: 01010203.xhp
@@ -1196,14 +1232,14 @@ msgctxt ""
msgid "Setup"
msgstr "Configuració"
-#. HBZn2
+#. 6GXvA
#: 01010203.xhp
msgctxt ""
"01010203.xhp\n"
"par_id3144438\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/setup\">Opens the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\"><emph>Printer Setup</emph></link> dialog.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/setup\">Obri el diàleg <link href=\"text/shared/01/01140000.xhp\" name=\"Configuració de la impressora\"><emph>Configuració de la impressora</emph></link>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/setup\">Opens the <link href=\"text/shared/01/01140000.xhp\"><emph>Printer Setup</emph></link> dialog.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/labeloptionspage/setup\">Obri el diàleg <link href=\"text/shared/01/01140000.xhp\"><emph>Configuració de la impressora</emph></link>.</ahelp>"
#. pcasA
#: 01010300.xhp
@@ -1214,14 +1250,14 @@ msgctxt ""
msgid "Business cards"
msgstr "Targetes de visita"
-#. hd2do
+#. jVCCX
#: 01010300.xhp
msgctxt ""
"01010300.xhp\n"
"hd_id3149038\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=\"Targetes de visita\">Targetes de visita</link>"
+msgid "<link href=\"text/shared/01/01010300.xhp\">Business cards</link>"
+msgstr "<link href=\"text/shared/01/01010300.xhp\">Targetes de visita</link>"
#. TRVvT
#: 01010300.xhp
@@ -1241,14 +1277,14 @@ msgctxt ""
msgid "Medium"
msgstr "Tipus"
-#. kzyLC
+#. 587GC
#: 01010301.xhp
msgctxt ""
"01010301.xhp\n"
"hd_id3148765\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010301.xhp\" name=\"Medium\">Medium</link>"
-msgstr "<link href=\"text/shared/01/01010301.xhp\" name=\"Tipus\">Tipus</link>"
+msgid "<link href=\"text/shared/01/01010301.xhp\">Medium</link>"
+msgstr "<link href=\"text/shared/01/01010301.xhp\">Tipus</link>"
#. zgRPK
#: 01010301.xhp
@@ -1340,14 +1376,14 @@ msgctxt ""
msgid "Type"
msgstr "Tipus"
-#. eDDhr
+#. 3vJQe
#: 01010301.xhp
msgctxt ""
"01010301.xhp\n"
"par_id3159201\n"
"help.text"
-msgid "<ahelp hid=\".\">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=\".\">Seleccioneu el format que s'ha d'utilitzar. Els formats disponibles depenen de l'element que hàgeu seleccionat a la llista <emph>Marca</emph>. Si voleu utilitzar un format de mida personalitzat, seleccioneu <emph>[Usuari]</emph> i, tot seguit, feu clic a la pestanya <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Formata</emph></link> per a definir el format.</ahelp>"
+msgid "<ahelp hid=\".\">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\"><emph>Format</emph></link> tab to define the format.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccioneu el format que s'ha d'utilitzar. Els formats disponibles depenen de l'element que hàgeu seleccionat a la llista <emph>Marca</emph>. Si voleu utilitzar un format de mida personalitzat, seleccioneu <emph>[Usuari]</emph> i, tot seguit, feu clic a la pestanya <link href=\"text/shared/01/01010202.xhp\"><emph>Formata</emph></link> per a definir el format.</ahelp>"
#. K2VAS
#: 01010301.xhp
@@ -1376,14 +1412,14 @@ msgctxt ""
msgid "Business Cards"
msgstr "Targetes de visita"
-#. dFYss
+#. CMbuW
#: 01010302.xhp
msgctxt ""
"01010302.xhp\n"
"hd_id3152414\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=\"Targetes de visita\">Targetes de visita</link>"
+msgid "<link href=\"text/shared/01/01010302.xhp\">Business Cards</link>"
+msgstr "<link href=\"text/shared/01/01010302.xhp\">Targetes de visita</link>"
#. gBRCe
#: 01010302.xhp
@@ -1448,14 +1484,14 @@ msgctxt ""
msgid "Private"
msgstr "Privat"
-#. nuta2
+#. fLjC7
#: 01010303.xhp
msgctxt ""
"01010303.xhp\n"
"hd_id3149031\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010303.xhp\" name=\"Private\">Private</link>"
-msgstr "<link href=\"text/shared/01/01010303.xhp\" name=\"Privat\">Privat</link>"
+msgid "<link href=\"text/shared/01/01010303.xhp\">Private</link>"
+msgstr "<link href=\"text/shared/01/01010303.xhp\">Privat</link>"
#. ChSYt
#: 01010303.xhp
@@ -1619,14 +1655,14 @@ msgctxt ""
msgid "Business"
msgstr "Empresa"
-#. 5nce3
+#. 6zBC5
#: 01010304.xhp
msgctxt ""
"01010304.xhp\n"
"hd_id3152942\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010304.xhp\" name=\"Business\">Business</link>"
-msgstr "<link href=\"text/shared/01/01010304.xhp\" name=\"Empresa\">Empresa</link>"
+msgid "<link href=\"text/shared/01/01010304.xhp\">Business</link>"
+msgstr "<link href=\"text/shared/01/01010304.xhp\">Empresa</link>"
#. zupaF
#: 01010304.xhp
@@ -1754,14 +1790,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/businessdatapage/url\">Enter the address of your company's internet homepage.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/businessdatapage/url\">Introduïu l'adreça del lloc web d'Internet de la vostra empresa.</ahelp>"
-#. GTHgg
+#. yKgNn
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"tit\n"
"help.text"
-msgid "Open"
-msgstr "Obri"
+msgid "Open, Insert text"
+msgstr ""
#. eoLC5
#: 01020000.xhp
@@ -1772,68 +1808,140 @@ msgctxt ""
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 ""
-#. ynBQx
+#. VBR8D
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3146936\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Obri\">Obri</link>"
+msgid "<link href=\"text/shared/01/01020000.xhp\">Open<switchinline select=\"appl\"><caseinline select=\"WRITER\">, Insert text</caseinline></switchinline></link>"
+msgstr ""
-#. nwuHu
+#. DGZ9z
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3151191\n"
"help.text"
-msgid "<variable id=\"oeffnentext\"><ahelp hid=\".\">Opens a local or a remote file.</ahelp></variable>"
+msgid "<variable id=\"oeffnentext\"><ahelp hid=\".\">Opens a local or remote file<switchinline select=\"appl\"><caseinline select=\"WRITER\">, or inserts text from a file</caseinline></switchinline>. Opening multiple files is possible.</ahelp></variable>"
msgstr ""
-#. RJuzG
+#. rkBMa
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"par_id931547247005236\n"
+"par_id511669373560528\n"
"help.text"
-msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Open</menuitem> command."
-msgstr "El %PRODUCTNAME fa servir el diàleg de selecció de fitxers natiu del gestor de finestres del sistema operatiu en invocar l'ordre <menuitem>Obri</menuitem>."
+msgid "File dialogs - such as <menuitem>Open</menuitem>, <menuitem>Save As</menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\">, <menuitem>Insert text</menuitem></caseinline></switchinline> and the like - are available in two different ways:"
+msgstr ""
+
+#. k876V
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id341669373654353\n"
+"help.text"
+msgid "As native file picker dialogs of the window manager of your operating system."
+msgstr ""
-#. Q9Cu5
+#. WLoj9
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id561669373655721\n"
+"help.text"
+msgid "As built-in %PRODUCTNAME file picker dialogs."
+msgstr ""
+
+#. TWsL9
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id371669373673552\n"
+"help.text"
+msgid "Use <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><link href=\"text/shared/optionen/01010600.xhp\"> - <menuitem>%PRODUCTNAME</menuitem> - <menuitem>General</menuitem></link> to shift from one to the other."
+msgstr ""
+
+#. 5CT67
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3150713\n"
"help.text"
-msgid "If the file that you want to open contains styles, <link href=\"text/shared/01/01020000.xhp#templates\" name=\"special rules\">special rules</link> apply."
+msgid "If the file that you want to open contains styles, <link href=\"text/shared/01/01020000.xhp#templates\">special rules</link> apply."
+msgstr ""
+
+#. VYDoj
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id221669046989152\n"
+"help.text"
+msgid "Folder selection"
msgstr ""
-#. CCRFi
+#. bbFZB
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id831669136604534\n"
+"help.text"
+msgid "Pick up your preferred folder from the pull-down list or type its path name. <emph>Autocomplete</emph> function can be used to ease typing."
+msgstr ""
+
+#. MAC4G
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id271669379646668\n"
+"help.text"
+msgid "Connect to a server using the <link href=\"text/shared/guide/cmis-remote-files-setup.xhp\">File Services</link> dialog.<br/> Select a parent folder from the folder path with <image id=\"img_id3149415\" src=\"svtools/res/up_small.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149415\">Icon Open</alt></image>."
+msgstr ""
+
+#. 6EPPW
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id231669379647930\n"
+"help.text"
+msgid "Add a subfolder to the current folder with <image id=\"img_id3149415\" src=\"res/fp015.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145149\">create new folder</alt></image>."
+msgstr ""
+
+#. 274aP
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3148538\n"
"help.text"
-msgid "Display area"
-msgstr "Àrea de visualització"
+msgid "Places and Files"
+msgstr ""
-#. EyaDh
+#. D6GAi
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id871669134861416\n"
+"help.text"
+msgid "Add current folder to your favorite places using <widget>+</widget>. Remove a selected place from the list with <widget>-</widget>."
+msgstr ""
+
+#. iYhsL
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3156113\n"
"help.text"
-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 "<ahelp hid=\"HID_FILEDLG_STANDARD\">Mostra els fitxers i carpetes de la carpeta on sou.</ahelp> Per a obrir un fitxer, seleccioneu-lo i, tot seguit, feu clic a <emph>Obri</emph>."
+msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and folders in the folder that you are in.</ahelp> Click column headers to sort files names, types, sizes or dates in ascending or descending order."
+msgstr ""
-#. KbdVY
+#. iUNpS
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3159256\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\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> while you click the files, and then click <emph>Open</emph>."
-msgstr "Per a obrir diversos fitxers alhora, cadascun en una finestra, manteniu premuda la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Ordre</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> mentre feu clic als fitxers i, tot seguit, feu clic a <emph>Obri</emph>."
+msgid "To open more than one document at the same time, each in an own window, hold <switchinline select=\"sys\"><caseinline select=\"MAC\"><widget>Command</widget></caseinline><defaultinline><widget>Ctrl</widget></defaultinline></switchinline> while you click the files, and then click <widget>Open</widget>."
+msgstr ""
#. fGGBD
#: 01020000.xhp
@@ -1898,6 +2006,24 @@ msgctxt ""
msgid "The following features are available in the dialog:"
msgstr ""
+#. 9V9k2
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150767\n"
+"help.text"
+msgid "File type"
+msgstr "Tipus de fitxer"
+
+#. GZh7y
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153969\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">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 "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Seleccioneu el tipus de fitxer que voleu obrir, o seleccioneu <emph>Tots els fitxers (*)</emph> per a mostrar tots els fitxers de la carpeta.</ahelp>"
+
#. PtYmp
#: 01020000.xhp
msgctxt ""
@@ -1916,23 +2042,23 @@ msgctxt ""
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\">Si hi ha diverses versions del fitxer seleccionat, seleccioneu la versió que vulgueu obrir.</ahelp> Podeu guardar diferents versions d'un document i gestionar-les triant <emph>Fitxer ▸ Versions</emph>. Les diferents versions d'un document s'obren en mode només de lectura."
-#. 9V9k2
+#. nDYC2
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"hd_id3150767\n"
+"hd_id3144762\n"
"help.text"
-msgid "File type"
-msgstr "Tipus de fitxer"
+msgid "Read-only"
+msgstr "Només lectura"
-#. GZh7y
+#. vFGCv
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"par_id3153969\n"
+"par_id3145785\n"
"help.text"
-msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">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 "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Seleccioneu el tipus de fitxer que voleu obrir, o seleccioneu <emph>Tots els fitxers (*)</emph> per a mostrar tots els fitxers de la carpeta.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opens the file in read-only mode.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEOPEN_READONLY\">Obri el fitxer en mode només de lectura.</ahelp>"
#. tpAdG
#: 01020000.xhp
@@ -1961,32 +2087,14 @@ msgctxt ""
msgid "Insert"
msgstr "Insereix"
-#. 5hkNu
+#. RoJX8
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3156293\n"
"help.text"
-msgid "If you opened the dialog by choosing <emph>Insert - Document</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 "Si heu obert el diàleg mitjançant <emph>Insereix ▸ Fitxer</emph>, el botó <emph>Obri</emph> es reemplaça pel botó <emph>Insereix</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Insereix el fitxer seleccionat a la posició del cursor en el document actual.</ahelp>"
-
-#. nDYC2
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3144762\n"
-"help.text"
-msgid "Read-only"
-msgstr "Només lectura"
-
-#. vFGCv
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"par_id3145785\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opens the file in read-only mode.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILEOPEN_READONLY\">Obri el fitxer en mode només de lectura.</ahelp>"
+msgid "If you opened the dialog by choosing <emph>Insert - Text from 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 ""
#. SnxPF
#: 01020000.xhp
@@ -2042,13 +2150,13 @@ msgctxt ""
msgid "To retain the styles that are currently used in the document, click <widget>Keep Old Styles</widget>."
msgstr ""
-#. SLice
+#. n4Dm9
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3145367\n"
"help.text"
-msgid "%PRODUCTNAME recognizes templates located in any directory defined for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><menuitem>%PRODUCTNAME - Paths</menuitem></link>."
+msgid "%PRODUCTNAME recognizes templates located in any directory defined for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01010300.xhp\"><menuitem>%PRODUCTNAME - Paths</menuitem></link>."
msgstr ""
#. Nksvx
@@ -2078,23 +2186,23 @@ msgctxt ""
msgid "When you use <menuitem>File - Save As</menuitem> and select a template filter to save a template in a directory that is <emph>not</emph> specified in the <emph>Templates</emph> path, then the documents based on that template will <emph>not</emph> be checked."
msgstr ""
-#. 6fFQH
+#. RCFCA
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3149417\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=\"Obertura de documents\">Obertura de documents</link>"
+msgid "<link href=\"text/shared/guide/doc_open.xhp\">Opening Documents</link>"
+msgstr "<link href=\"text/shared/guide/doc_open.xhp\">Obertura de documents</link>"
-#. zEhAC
+#. GCjAg
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3153848\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=\"Filtres d'importació i exportació\">Filtres d'importació i exportació</link>"
+msgid "<link href=\"text/shared/00/00000020.xhp\">Import and Export Filters</link>"
+msgstr "<link href=\"text/shared/00/00000020.xhp\">Filtres d'importació i exportació</link>"
#. ACQZh
#: 01020001.xhp
@@ -2114,13 +2222,13 @@ msgctxt ""
msgid "<bookmark_value>remote file; open</bookmark_value><bookmark_value>open; remote file</bookmark_value>"
msgstr "<bookmark_value>fitxer remot;obri</bookmark_value><bookmark_value>obri;fitxer remot</bookmark_value>"
-#. APLpD
+#. jwbkQ
#: 01020001.xhp
msgctxt ""
"01020001.xhp\n"
"hd_id151513629025611\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020001.xhp\" name=\"Open Remote\">Open Remote</link>"
+msgid "<link href=\"text/shared/01/01020001.xhp\">Open Remote</link>"
msgstr ""
#. 5DG6r
@@ -2168,14 +2276,14 @@ msgctxt ""
msgid "A <emph>remote file server</emph> is a <emph>web service</emph> that stores documents with or without checkin, checkout, version controls and backups."
msgstr "Un <emph>servidor de fitxers remots</emph> és un <emph>servei web</emph> que emmagatzema documents amb o sense registre, comprovació, controls de versió o còpies de seguretat."
-#. HCeYb
+#. CvHwd
#: 01020001.xhp
msgctxt ""
"01020001.xhp\n"
"par_id951513629981585\n"
"help.text"
-msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
-msgstr "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Obertura i desament de fitxers a servidors remots</link>"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\">Opening and saving files in remote servers</link>"
+msgstr "<link href=\"text/shared/guide/cmis-remote-files.xhp\">Obertura i desament de fitxers a servidors remots</link>"
#. FJF7F
#: 01020101.xhp
@@ -2240,14 +2348,14 @@ msgctxt ""
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\">Introduïu el camí d'accés o seleccioneu-lo a la llista.</ahelp>"
-#. oNVdb
+#. xhp9C
#: 01020101.xhp
msgctxt ""
"01020101.xhp\n"
"par_id3149750\n"
"help.text"
-msgid "<link name=\"Open Dialog\" href=\"text/shared/01/01020000.xhp\">Open dialog</link>"
-msgstr "<link name=\"Diàleg Obri\" href=\"text/shared/01/01020000.xhp\">Diàleg Obri</link>"
+msgid "<link href=\"text/shared/01/01020000.xhp\">Open dialog</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\">Diàleg Obri</link>"
#. gKspp
#: 01020103.xhp
@@ -2348,14 +2456,14 @@ msgctxt ""
msgid "<bookmark_value>documents; closing</bookmark_value><bookmark_value>closing;documents</bookmark_value>"
msgstr "<bookmark_value>documents; tancament</bookmark_value><bookmark_value>tancament; documents</bookmark_value>"
-#. SJC2v
+#. VVGuB
#: 01050000.xhp
msgctxt ""
"01050000.xhp\n"
"hd_id3154545\n"
"help.text"
-msgid "<link href=\"text/shared/01/01050000.xhp\" name=\"Close\">Close</link>"
-msgstr "<link href=\"text/shared/01/01050000.xhp\" name=\"Tanca\">Tanca</link>"
+msgid "<link href=\"text/shared/01/01050000.xhp\">Close</link>"
+msgstr "<link href=\"text/shared/01/01050000.xhp\">Tanca</link>"
#. QDvNR
#: 01050000.xhp
@@ -2375,14 +2483,14 @@ msgctxt ""
msgid "The <emph>Close</emph> command closes all open windows of the current document."
msgstr ""
-#. jSMdE
+#. fGRAQ
#: 01050000.xhp
msgctxt ""
"01050000.xhp\n"
"par_id3148620\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\"><emph>save</emph></link> your changes."
-msgstr "Si heu fet canvis al document actual, l'aplicació vos demanarà si els voleu <link href=\"text/shared/01/01060000.xhp\" name=\"guardar\"><emph>guardar</emph></link>."
+msgid "If you have made changes to the current document, you are prompted if you want to <link href=\"text/shared/01/01060000.xhp\"><emph>save</emph></link> your changes."
+msgstr "Si heu fet canvis al document actual, l'aplicació vos demanarà si els voleu <link href=\"text/shared/01/01060000.xhp\"><emph>guardar</emph></link>."
#. KoyrB
#: 01050000.xhp
@@ -2393,23 +2501,23 @@ msgctxt ""
msgid "When you close the last open document window, you see the <link href=\"text/shared/guide/startcenter.xhp\"><emph>Start Center</emph></link>."
msgstr "Quan tanqueu la finestra de l'últim document obert, veureu el <link href=\"text/shared/guide/startcenter.xhp\"><emph>Centre d'inici</emph></link>."
-#. 638RE
+#. SdsrT
#: 01050000.xhp
msgctxt ""
"01050000.xhp\n"
"par_id3153821\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=\"Tancament de la finestra actual\">Tancament de la finestra actual</link>"
+msgid "<link href=\"text/shared/02/10100000.xhp\">Close the current window</link>"
+msgstr "<link href=\"text/shared/02/10100000.xhp\">Tancament de la finestra actual</link>"
-#. AVFRE
+#. EXoGU
#: 01050000.xhp
msgctxt ""
"01050000.xhp\n"
"par_id3154750\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=\"Tancament del $[officename]\">Tancament del $[officename]</link>"
+msgid "<link href=\"text/shared/01/01170000.xhp\">Exit $[officename]</link>"
+msgstr "<link href=\"text/shared/01/01170000.xhp\">Tancament del $[officename]</link>"
#. eb3ij
#: 01060000.xhp
@@ -2420,14 +2528,14 @@ msgctxt ""
msgid "Save"
msgstr "Guarda"
-#. b64Yr
+#. JLr3M
#: 01060000.xhp
msgctxt ""
"01060000.xhp\n"
"hd_id3147000\n"
"help.text"
-msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
-msgstr "<link href=\"text/shared/01/01060000.xhp\" name=\"Guarda\">Guarda</link>"
+msgid "<link href=\"text/shared/01/01060000.xhp\">Save</link>"
+msgstr "<link href=\"text/shared/01/01060000.xhp\">Guarda</link>"
#. 2FUcZ
#: 01060000.xhp
@@ -2465,14 +2573,14 @@ msgctxt ""
msgid "<bookmark_value>remote file; save</bookmark_value><bookmark_value>save; remote file</bookmark_value>"
msgstr "<bookmark_value>fitxer remot;guarda</bookmark_value><bookmark_value>guarda;fitxer remot</bookmark_value>"
-#. qfF6G
+#. 4dZ5D
#: 01060001.xhp
msgctxt ""
"01060001.xhp\n"
"hd_id151513629025611\n"
"help.text"
-msgid "<link href=\"text/shared/01/01060001.xhp\" name=\"Save Remote...\">Save Remote...</link>"
-msgstr "<link href=\"text/shared/01/01060001.xhp\" name=\"Save Remote...\">Guarda en remot...</link>"
+msgid "<link href=\"text/shared/01/01060001.xhp\">Save Remote...</link>"
+msgstr "<link href=\"text/shared/01/01060001.xhp\">Guarda en remot...</link>"
#. TL55A
#: 01060001.xhp
@@ -2510,14 +2618,14 @@ msgctxt ""
msgid "A remote file server is a web service that stores documents with or without checkin, checkout, version controls and backups."
msgstr "Un servidor de fitxers remots és un servei web que emmagatzema documents amb o sense registre, comprovació, controls de versió o còpies de seguretat."
-#. xuXaK
+#. tuPvp
#: 01060001.xhp
msgctxt ""
"01060001.xhp\n"
"par_id951513629981585\n"
"help.text"
-msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
-msgstr "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Obertura i desament de fitxers a servidors remots</link>"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\">Opening and saving files in remote servers</link>"
+msgstr "<link href=\"text/shared/guide/cmis-remote-files.xhp\">Obertura i desament de fitxers a servidors remots</link>"
#. qU9Ae
#: 01060002.xhp
@@ -2537,14 +2645,14 @@ msgctxt ""
msgid "<bookmark_value>save; save a copy</bookmark_value><bookmark_value>save a copy</bookmark_value>"
msgstr ""
-#. AVSHN
+#. mQZDF
#: 01060002.xhp
msgctxt ""
"01060002.xhp\n"
"par_id391513471676787\n"
"help.text"
-msgid "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">Save a Copy</link>"
-msgstr "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">Guarda una còpia</link>"
+msgid "<link href=\"text/shared/01/01060002.xhp\">Save a Copy</link>"
+msgstr "<link href=\"text/shared/01/01060002.xhp\">Guarda una còpia</link>"
#. rkA6p
#: 01060002.xhp
@@ -2573,32 +2681,68 @@ msgctxt ""
msgid "Creates another file with same contents of the current file. The current file is kept open for editing."
msgstr "Crea un altre fitxer amb el mateix contingut que el del fitxer actual. El fitxer actual es manté obert per a editar-lo."
-#. WiBP9
+#. TquTX
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"hd_id3147209\n"
+"help.text"
+msgid "File name"
+msgstr ""
+
+#. 8Lngp
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"hd_id3152996\n"
+"help.text"
+msgid "File type"
+msgstr ""
+
+#. sA2Ea
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"hd_id3145744\n"
+"help.text"
+msgid "Save with password"
+msgstr ""
+
+#. zyazT
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"hd_id3148539\n"
+"help.text"
+msgid "Save"
+msgstr ""
+
+#. 4uxaW
#: 01060002.xhp
msgctxt ""
"01060002.xhp\n"
"par_id21513472326060\n"
"help.text"
-msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
-msgstr "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Guarda</link>"
+msgid "<link href=\"text/shared/01/01060000.xhp\">Save</link>"
+msgstr "<link href=\"text/shared/01/01060000.xhp\">Guarda</link>"
-#. D9fFz
+#. HBR4d
#: 01060002.xhp
msgctxt ""
"01060002.xhp\n"
"par_id411513472333495\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=\"Anomena i guarda\">Anomena i guarda</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\">Save as</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\">Anomena i guarda</link>"
-#. dPEMD
+#. 4PJug
#: 01060002.xhp
msgctxt ""
"01060002.xhp\n"
"par_id681513472341081\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/shared/01/01070001.xhp\" name=\"Exporta\">Exporta</link>"
+msgid "<link href=\"text/shared/01/01070001.xhp\">Export</link>"
+msgstr "<link href=\"text/shared/01/01070001.xhp\">Exporta</link>"
#. y6L7x
#: 01070000.xhp
@@ -2618,14 +2762,14 @@ msgctxt ""
msgid "<bookmark_value>saving as command; precautions</bookmark_value>"
msgstr "<bookmark_value>desament com a orde; precaucions</bookmark_value>"
-#. vT8vh
+#. MUwJW
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
"hd_id3151260\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=\"Anomena i guarda\">Anomena i guarda</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\">Anomena i guarda</link>"
#. 4jUxP
#: 01070000.xhp
@@ -2636,15 +2780,6 @@ msgctxt ""
msgid "<variable id=\"speichernuntertext\"><ahelp hid=\".\">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=\".\">Guarda el document actual en una altra ubicació, o bé amb un nom de fitxer o un tipus de fitxer diferent.</ahelp></variable>"
-#. JxRcN
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"par_id251543697768103\n"
-"help.text"
-msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Save as</menuitem> command."
-msgstr ""
-
#. JDKKZ
#: 01070000.xhp
msgctxt ""
@@ -2663,14 +2798,14 @@ msgctxt ""
msgid "File name"
msgstr "Nom del fitxer"
-#. r8yVz
+#. GBbGg
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
"par_id3153626\n"
"help.text"
-msgid "<ahelp hid=\".\">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=\".\">Introduïu el nom o el camí del fitxer. També podeu introduir un <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link></ahelp>"
+msgid "<ahelp hid=\".\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\">URL</link></ahelp>"
+msgstr "<ahelp hid=\".\">Introduïu el nom o el camí del fitxer. També podeu introduir un <link href=\"text/shared/00/00000002.xhp#url\">URL</link></ahelp>"
#. Ce7Fv
#: 01070000.xhp
@@ -2681,14 +2816,14 @@ msgctxt ""
msgid "File type"
msgstr "Tipus de fitxer"
-#. iMUGA
+#. cnC5G
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
"par_id3156343\n"
"help.text"
-msgid "<ahelp hid=\".\">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=\".\">Seleccioneu el format de fitxer del document que voleu guardar.</ahelp> A l'àrea de visualització només es mostren els fitxers d'aquest tipus. Per a obtindre una descripció dels tipus de fitxers, vegeu la secció <link href=\"text/shared/00/00000020.xhp\" name=\"Informació sobre els filtres d'importació i d'exportació\">Informació sobre els filtres d'importació i exportació</link>."
+msgid "<ahelp hid=\".\">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\">Information on Import and Export Filters</link>."
+msgstr "<ahelp hid=\".\">Seleccioneu el format de fitxer del document que voleu guardar.</ahelp> A l'àrea de visualització només es mostren els fitxers d'aquest tipus. Per a obtindre una descripció dels tipus de fitxers, vegeu la secció <link href=\"text/shared/00/00000020.xhp\">Informació sobre els filtres d'importació i exportació</link>."
#. jFYYC
#: 01070000.xhp
@@ -2699,50 +2834,50 @@ msgctxt ""
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 "Guardeu sempre el document en un tipus de fitxer del <item type=\"productname\">%PRODUCTNAME</item> abans de guardar-lo en un tipus de fitxer extern. Quan exporteu a un tipus de fitxer extern, pot ser que algunes funcions de formatació es perdin."
-#. GErwB
+#. AGyEC
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
-"hd_id3147228\n"
+"hd_id3145744\n"
"help.text"
-msgid "Save"
-msgstr "Guarda"
+msgid "Save with password"
+msgstr "Guarda amb contrasenya"
-#. FGARA
+#. 3kjSk
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
-"par_id3154068\n"
+"par_id3145152\n"
"help.text"
-msgid "<ahelp hid=\".\">Saves the file.</ahelp>"
-msgstr "<ahelp hid=\".\">Guarda el fitxer.</ahelp>"
+msgid "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">Protects the file with a <link href=\"text/shared/01/password_dlg.xhp\">password</link> that must be entered before a user can open the file.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">Protegeix el fitxer mitjançant una <link href=\"text/shared/01/password_dlg.xhp\">contrasenya</link> que l'usuari ha d'introduir per poder obrir el fitxer.</ahelp>"
-#. AGyEC
+#. 3CGef
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
-"hd_id3145744\n"
+"par_id3152920\n"
"help.text"
-msgid "Save with password"
-msgstr "Guarda amb contrasenya"
+msgid "Only documents using the <item type=\"productname\">%PRODUCTNAME</item> XML-based format can be saved with a password."
+msgstr "Només es poden guardar amb contrasenya els documents que utilitzen el format XML del <item type=\"productname\">%PRODUCTNAME</item>."
-#. GNudh
+#. yEGRW
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
-"par_id3145152\n"
+"hd_id161669393492018\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\">Protegeix el fitxer mitjançant una <link href=\"text/shared/01/password_dlg.xhp\" name=\"contrasenya\">contrasenya</link> que l'usuari ha d'introduir per poder obrir el fitxer.</ahelp>"
+msgid "Automatic file name extension"
+msgstr ""
-#. 3CGef
+#. 9uYkK
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
-"par_id3152920\n"
+"par_id651669393564026\n"
"help.text"
-msgid "Only documents using the <item type=\"productname\">%PRODUCTNAME</item> XML-based format can be saved with a password."
-msgstr "Només es poden guardar amb contrasenya els documents que utilitzen el format XML del <item type=\"productname\">%PRODUCTNAME</item>."
+msgid "Enforces the Open Document Format (ODF) when checked."
+msgstr ""
#. aUBUe
#: 01070000.xhp
@@ -2807,14 +2942,32 @@ msgctxt ""
msgid "If you are exporting to any document file type, the entire document is exported."
msgstr "Si voleu exportar a qualsevol tipus de fitxer, s'exportarà tot el document."
-#. eF5Kc
+#. GErwB
+#: 01070000.xhp
+msgctxt ""
+"01070000.xhp\n"
+"hd_id3147228\n"
+"help.text"
+msgid "Save"
+msgstr "Guarda"
+
+#. FGARA
+#: 01070000.xhp
+msgctxt ""
+"01070000.xhp\n"
+"par_id3154068\n"
+"help.text"
+msgid "<ahelp hid=\".\">Saves the file.</ahelp>"
+msgstr "<ahelp hid=\".\">Guarda el fitxer.</ahelp>"
+
+#. 2KYfe
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
"par_id3146986\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=\"Exportació de fitxers de text\">Exportació de fitxers de text</link>"
+msgid "<link href=\"text/shared/00/00000207.xhp\">Export of Text Files</link>"
+msgstr "<link href=\"text/shared/00/00000207.xhp\">Exportació de fitxers de text</link>"
#. YdwSq
#: 01070001.xhp
@@ -2834,14 +2987,14 @@ msgctxt ""
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>documents; exportació</bookmark_value><bookmark_value>conversió; documents del $[officename]</bookmark_value><bookmark_value>exportació;a formats externs</bookmark_value>"
-#. 2KUF3
+#. a8NKG
#: 01070001.xhp
msgctxt ""
"01070001.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/shared/01/01070001.xhp\" name=\"Exporta\">Exporta</link>"
+msgid "<link href=\"text/shared/01/01070001.xhp\">Export</link>"
+msgstr "<link href=\"text/shared/01/01070001.xhp\">Exporta</link>"
#. SnEFL
#: 01070001.xhp
@@ -2852,13 +3005,13 @@ msgctxt ""
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\">Guarda el document actual amb un nom i un format diferents a la ubicació que indiqueu.</ahelp></variable>"
-#. A75rz
+#. uZnFY
#: 01070001.xhp
msgctxt ""
"01070001.xhp\n"
"par_id91561565107419\n"
"help.text"
-msgid "Unlike <emph>Save As</emph>, the <emph>Export</emph> command writes a copy of the current document in a new file with the chosen format, but keeps the current document and format open in your session."
+msgid "Unlike <menuitem>Save As</menuitem>, the <menuitem>Export</menuitem> command writes a copy of the current document in a new file with the chosen format, but keeps the current document and format open in your session."
msgstr ""
#. AHFCM
@@ -2870,41 +3023,32 @@ msgctxt ""
msgid "The Export command opens the system file picker, where you can enter the name and format of the exported file."
msgstr ""
-#. BM7XX
+#. G8eb6
#: 01070001.xhp
msgctxt ""
"01070001.xhp\n"
"hd_id3147209\n"
"help.text"
-msgid "File Name"
-msgstr "Nom de fitxer"
-
-#. RWeGW
-#: 01070001.xhp
-msgctxt ""
-"01070001.xhp\n"
-"par_id871561565412738\n"
-"help.text"
-msgid "Enter a file name or a path for the file."
+msgid "File name"
msgstr ""
-#. qpAcp
+#. xev3A
#: 01070001.xhp
msgctxt ""
"01070001.xhp\n"
"hd_id3152996\n"
"help.text"
-msgid "File Type"
-msgstr "Tipus de fitxer"
+msgid "File format"
+msgstr ""
-#. HUFLH
+#. Z5jqJ
#: 01070001.xhp
msgctxt ""
"01070001.xhp\n"
"hd_id3148539\n"
"help.text"
-msgid "Save"
-msgstr ""
+msgid "Export"
+msgstr "Exporta"
#. VmE3c
#: 01070002.xhp
@@ -2924,13 +3068,13 @@ msgctxt ""
msgid "<bookmark_value>Export as; PDF</bookmark_value><bookmark_value>Export as; EPUB</bookmark_value>"
msgstr ""
-#. C5uBC
+#. qeetV
#: 01070002.xhp
msgctxt ""
"01070002.xhp\n"
"hd_id751513634008094\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As\">Export As</link>"
+msgid "<link href=\"text/shared/01/01070002.xhp\">Export As</link>"
msgstr ""
#. yQFCE
@@ -3005,13 +3149,13 @@ msgctxt ""
msgid "<bookmark_value>file;properties</bookmark_value> <bookmark_value>document;properties</bookmark_value>"
msgstr ""
-#. CNQGc
+#. Mapji
#: 01100000.xhp
msgctxt ""
"01100000.xhp\n"
"hd_id3152876\n"
"help.text"
-msgid "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Document Properties\">Properties</link></variable>"
+msgid "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\">Properties</link></variable>"
msgstr ""
#. W4uvS
@@ -3050,14 +3194,14 @@ msgctxt ""
msgid "Description (File Properties)"
msgstr ""
-#. LaoBx
+#. NQDen
#: 01100100.xhp
msgctxt ""
"01100100.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100100.xhp\" name=\"Description\">Description</link>"
-msgstr "<link href=\"text/shared/01/01100100.xhp\" name=\"Descripció\">Descripció</link>"
+msgid "<link href=\"text/shared/01/01100100.xhp\">Description</link>"
+msgstr "<link href=\"text/shared/01/01100100.xhp\">Descripció</link>"
#. BViFU
#: 01100100.xhp
@@ -3167,14 +3311,14 @@ msgctxt ""
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><bookmark_value>documents; template applied</bookmark_value><bookmark_value>documents; preferred image resolution</bookmark_value><bookmark_value>documents; last printed</bookmark_value><bookmark_value>documents; preview image</bookmark_value><bookmark_value>documents; number of modifications</bookmark_value><bookmark_value>documents; location</bookmark_value><bookmark_value>documents; size</bookmark_value><bookmark_value>documents; apply user data to</bookmark_value><bookmark_value>documents; reset properties</bookmark_value>"
msgstr ""
-#. JSTHu
+#. rLmpE
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3148668\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100200.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/01/01100200.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/shared/01/01100200.xhp\">General</link>"
+msgstr "<link href=\"text/shared/01/01100200.xhp\">General</link>"
#. 7GFov
#: 01100200.xhp
@@ -3500,14 +3644,14 @@ msgctxt ""
msgid "Custom Properties"
msgstr "Propietats personalitzades"
-#. 8GJDq
+#. FojPM
#: 01100300.xhp
msgctxt ""
"01100300.xhp\n"
"hd_id3155069\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=\"Propietats personalitzades\">Propietats personalitzades</link>"
+msgid "<link href=\"text/shared/01/01100300.xhp\">Custom Properties</link>"
+msgstr "<link href=\"text/shared/01/01100300.xhp\">Propietats personalitzades</link>"
#. DUrAo
#: 01100300.xhp
@@ -3572,14 +3716,14 @@ msgctxt ""
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>nombre de pàgines</bookmark_value><bookmark_value>documents;nombre de pàgines/taules/fulls</bookmark_value><bookmark_value>nombre de taules</bookmark_value><bookmark_value>nombre de fulls</bookmark_value><bookmark_value>cel·les;nombre</bookmark_value><bookmark_value>imatges;nombre</bookmark_value><bookmark_value>OLE, objectes;nombre d'</bookmark_value>"
-#. D2bWV
+#. 5CPAH
#: 01100400.xhp
msgctxt ""
"01100400.xhp\n"
"hd_id3149962\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100400.xhp\" name=\"Statistics\">Statistics</link>"
-msgstr "<link href=\"text/shared/01/01100400.xhp\" name=\"Estadístiques\">Estadístiques</link>"
+msgid "<link href=\"text/shared/01/01100400.xhp\">Statistics</link>"
+msgstr "<link href=\"text/shared/01/01100400.xhp\">Estadístiques</link>"
#. V6GEr
#: 01100400.xhp
@@ -3590,14 +3734,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays statistics for the current file.</ahelp>"
msgstr "<ahelp hid=\".\">Mostra les estadístiques del document actual.</ahelp>"
-#. 3TuM9
+#. 8nFMw
#: 01100400.xhp
msgctxt ""
"01100400.xhp\n"
"par_id3156324\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\">Alguns valors de les estadístiques es poden utilitzar com a <link href=\"text/swriter/02/14020000.xhp\" name=\"variables de fórmules\">variables de fórmules</link>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\">variables in formulas</link>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Alguns valors de les estadístiques es poden utilitzar com a <link href=\"text/swriter/02/14020000.xhp\">variables de fórmules</link>.</caseinline></switchinline>"
#. fxGUz
#: 01100400.xhp
@@ -3626,13 +3770,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tables:</caseinline><caseinline select=\"CALC\">Sheets:</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Taules:</caseinline><caseinline select=\"CALC\">Fulls:</caseinline></switchinline>"
-#. A6G4H
+#. u4anF
#: 01100400.xhp
msgctxt ""
"01100400.xhp\n"
"par_id3153527\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 <emph>does not</emph> include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\"><emph>OLE</emph></link> objects."
+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 <emph>does not</emph> include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\"><emph>OLE</emph></link> objects."
msgstr ""
#. gCAE7
@@ -3680,13 +3824,13 @@ msgctxt ""
msgid "Images:"
msgstr ""
-#. a4k3j
+#. uvwn8
#: 01100400.xhp
msgctxt ""
"01100400.xhp\n"
"par_id3166411\n"
"help.text"
-msgid "Number of images in the file. This statistic <emph>does not</emph> include images that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\"><emph>OLE</emph></link> objects."
+msgid "Number of images in the file. This statistic <emph>does not</emph> include images that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\"><emph>OLE</emph></link> objects."
msgstr ""
#. UBabs
@@ -3698,13 +3842,13 @@ msgctxt ""
msgid "OLE Objects:"
msgstr ""
-#. BuF3C
+#. xjuF5
#: 01100400.xhp
msgctxt ""
"01100400.xhp\n"
"par_id3149820\n"
"help.text"
-msgid "Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\"><emph>OLE</emph></link> objects in the file, <emph>including</emph> tables and graphics that were inserted as OLE objects."
+msgid "Number of <link href=\"text/shared/00/00000005.xhp#ole\"><emph>OLE</emph></link> objects in the file, <emph>including</emph> tables and graphics that were inserted as OLE objects."
msgstr ""
#. qw77q
@@ -3833,14 +3977,14 @@ msgctxt ""
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 "<bookmark_value>contrasenya com a propietat del document</bookmark_value><bookmark_value>opcions per compartir fitxers per al document actual</bookmark_value><bookmark_value>documents només de lectura;obrir documents com a</bookmark_value><bookmark_value>guardar;amb contrasenya per defecte</bookmark_value><bookmark_value>dades de l'usuari; supressió en guardar</bookmark_value>"
-#. r6EHt
+#. SF2DR
#: 01100600.xhp
msgctxt ""
"01100600.xhp\n"
"hd_id3149969\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100600.xhp\" name=\"Security\">Security</link>"
-msgstr "<link href=\"text/shared/01/01100600.xhp\" name=\"Seguretat\">Seguretat</link>"
+msgid "<link href=\"text/shared/01/01100600.xhp\">Security</link>"
+msgstr "<link href=\"text/shared/01/01100600.xhp\">Seguretat</link>"
#. rvmsA
#: 01100600.xhp
@@ -3932,14 +4076,14 @@ msgctxt ""
msgid "Templates"
msgstr "Plantilles"
-#. rFPCc
+#. tkrtV
#: 01110000.xhp
msgctxt ""
"01110000.xhp\n"
"hd_id3155577\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110000.xhp\" name=\"Templates\">Templates</link>"
-msgstr "<link href=\"text/shared/01/01110000.xhp\" name=\"Plantilles\">Plantilles</link>"
+msgid "<link href=\"text/shared/01/01110000.xhp\">Templates</link>"
+msgstr "<link href=\"text/shared/01/01110000.xhp\">Plantilles</link>"
#. n2kjJ
#: 01110000.xhp
@@ -4112,14 +4256,14 @@ msgctxt ""
msgid "Save as Template"
msgstr "Guarda com a plantilla"
-#. ZJiXN
+#. C7QkB
#: 01110300.xhp
msgctxt ""
"01110300.xhp\n"
"hd_id3160463\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110300.xhp\" name=\"Save as Template\">Save as Template</link>"
-msgstr "<link href=\"text/shared/01/01110300.xhp\" name=\"Guarda com a plantilla\">Guarda com a plantilla</link>"
+msgid "<link href=\"text/shared/01/01110300.xhp\">Save as Template</link>"
+msgstr "<link href=\"text/shared/01/01110300.xhp\">Guarda com a plantilla</link>"
#. Y8jSM
#: 01110300.xhp
@@ -4211,13 +4355,13 @@ msgctxt ""
msgid "Edit Template"
msgstr ""
-#. VqGEF
+#. eueZP
#: 01110400.xhp
msgctxt ""
"01110400.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110400.xhp\" name=\"Open Template\">Edit Template</link>"
+msgid "<link href=\"text/shared/01/01110400.xhp\">Edit Template</link>"
msgstr ""
#. VUYtJ
@@ -4256,14 +4400,14 @@ msgctxt ""
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>impressió; documents</bookmark_value><bookmark_value>documents; impressió</bookmark_value><bookmark_value>documents de text; impressió</bookmark_value><bookmark_value>fulls de càlcul; impressió</bookmark_value><bookmark_value>presentacions; menú Imprimeix</bookmark_value><bookmark_value>dibuixos; impressió</bookmark_value><bookmark_value>selecció d'impressores</bookmark_value><bookmark_value>impressores; selecció</bookmark_value><bookmark_value>selecció de l'àrea d'impressió</bookmark_value><bookmark_value>selecció; àrees d'impressió</bookmark_value><bookmark_value>pàgines;selecció de la pàgina que s'ha d'imprimir</bookmark_value><bookmark_value>impressió; seleccions</bookmark_value><bookmark_value>impressió; còpies</bookmark_value><bookmark_value>còpies; impressió</bookmark_value><bookmark_value>fitxers spool amb Xprinter</bookmark_value>"
-#. btBmD
+#. woR6C
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"hd_id3154621\n"
"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Imprimeix\">Imprimeix</link>"
+msgid "<link href=\"text/shared/01/01130000.xhp\">Print</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\">Imprimeix</link>"
#. 3xkrS
#: 01130000.xhp
@@ -4337,31 +4481,31 @@ msgctxt ""
msgid "The settings that you define in the <emph>Print</emph> dialog are valid <emph>only</emph> for the current print job that you start by clicking the <emph>Print</emph> button. If you want to change some options permanently, open <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME (application name) - Print</menuitem>."
msgstr ""
-#. ZFcax
+#. GxHH7
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id3156080\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\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Writer - Print</menuitem></link>.</caseinline></switchinline>"
+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\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Writer - Print</menuitem></link>.</caseinline></switchinline>"
msgstr ""
-#. w5LsV
+#. zWTod
#: 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\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Print</menuitem></link>.</caseinline></switchinline>"
+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\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Print</menuitem></link>.</caseinline></switchinline>"
msgstr ""
-#. z8SQf
+#. UADCd
#: 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\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Impress - Print</menuitem></link>.</caseinline></switchinline>"
+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\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Impress - Print</menuitem></link>.</caseinline></switchinline>"
msgstr ""
#. bEFFQ
@@ -5723,14 +5867,14 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Unix hints</caseinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Suggeriments de el Unix</caseinline></switchinline>"
-#. h7mAe
+#. gXCvp
#: 01130000.xhp
msgctxt ""
"01130000.xhp\n"
"par_id3150449\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">You can also use the <link href=\"text/shared/guide/spadmin.xhp\" name=\"printer settings\"><emph>Printer Settings</emph></link> to specify additional printer options.</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">També podeu utilitzar <link href=\"text/shared/guide/spadmin.xhp\" name=\"Configuració de la impressora\"><emph>Configuració de la impressora</emph></link> per a configurar altres opcions d'impressió.</caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">You can also use the <link href=\"text/shared/guide/spadmin.xhp\"><emph>Printer Settings</emph></link> to specify additional printer options.</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">També podeu utilitzar <link href=\"text/shared/guide/spadmin.xhp\"><emph>Configuració de la impressora</emph></link> per a configurar altres opcions d'impressió.</caseinline></switchinline>"
#. 7rEyC
#: 01140000.xhp
@@ -5750,14 +5894,14 @@ msgctxt ""
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>impressores; propietats</bookmark_value><bookmark_value>configuració; impressores</bookmark_value><bookmark_value>propietats; impressores</bookmark_value><bookmark_value>impressora per defecte; configuració</bookmark_value><bookmark_value>impressora; per defecte</bookmark_value><bookmark_value>formats de pàgina; restricció</bookmark_value>"
-#. JuboB
+#. aY9Fq
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3147294\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=\"Configuració de la impressora\">Configuració de la impressora</link>"
+msgid "<link href=\"text/shared/01/01140000.xhp\">Printer Settings</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\">Configuració de la impressora</link>"
#. LUCBJ
#: 01140000.xhp
@@ -5957,14 +6101,14 @@ msgctxt ""
msgid "Send"
msgstr "Envia"
-#. rCqg8
+#. NuiHk
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id3152895\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160000.xhp\" name=\"Send\">Send</link>"
-msgstr "<link href=\"text/shared/01/01160000.xhp\" name=\"Envia\">Envia</link>"
+msgid "<link href=\"text/shared/01/01160000.xhp\">Send</link>"
+msgstr "<link href=\"text/shared/01/01160000.xhp\">Envia</link>"
#. irEQC
#: 01160000.xhp
@@ -5975,13 +6119,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sends a copy of the current document to different applications.</ahelp>"
msgstr "<ahelp hid=\".\">Envia una còpia del document actual a diverses aplicacions.</ahelp>"
-#. BJir9
+#. AaUWt
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id3154398\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as Email\">Email Document</link>"
+msgid "<link href=\"text/shared/01/01160200.xhp\">Email Document</link>"
msgstr ""
#. Q86XQ
@@ -6110,32 +6254,32 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft Word file format is used."
msgstr ""
-#. 9Vye6
+#. JCqYn
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id3155391\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160300.xhp\" name=\"Create Master Document\">Create Master Document</link>"
-msgstr "<link href=\"text/shared/01/01160300.xhp\" name=\"Crea un document mestre\">Crea un document mestre</link>"
+msgid "<link href=\"text/shared/01/01160300.xhp\">Create Master Document</link>"
+msgstr "<link href=\"text/shared/01/01160300.xhp\">Crea un document mestre</link>"
-#. w6e79
+#. wjDmF
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<link href=\"text/swriter/01/01160500.xhp\" name=\"Create HTML Document\">Create HTML Document</link>"
-msgstr "<link href=\"text/swriter/01/01160500.xhp\" name=\"Crea un document HTML\">Crea un document HTML</link>"
+msgid "<link href=\"text/swriter/01/01160500.xhp\">Create HTML Document</link>"
+msgstr "<link href=\"text/swriter/01/01160500.xhp\">Crea un document HTML</link>"
-#. 2MpC8
+#. DkuGk
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id3149811\n"
"help.text"
-msgid "<link href=\"text/swriter/01/01160300.xhp\" name=\"Create AutoAbstract\">Create AutoAbstract</link>"
-msgstr "<link href=\"text/swriter/01/01160300.xhp\" name=\"Crea un resum automàtic\">Crea un resum automàtic</link>"
+msgid "<link href=\"text/swriter/01/01160300.xhp\">Create AutoAbstract</link>"
+msgstr "<link href=\"text/swriter/01/01160300.xhp\">Crea un resum automàtic</link>"
#. sFe9G
#: 01160200.xhp
@@ -6200,14 +6344,14 @@ msgctxt ""
msgid "<variable id=\"globtext\"><ahelp hid=\".\">Creates a master document from the current Writer document. A new sub-document is created at each occurrence of a chosen paragraph style or outline level in the source document.</ahelp></variable>"
msgstr "<variable id=\"globtext\"><ahelp hid=\".\">Crea un document mestre a partir del document Writer actual. Es crea un subdocument nou a cada repetició de l'estil de paràgraf o nivell d'esquema que aparega al document font.</ahelp></variable>"
-#. chJvA
+#. GEwFX
#: 01160300.xhp
msgctxt ""
"01160300.xhp\n"
"par_id3149999\n"
"help.text"
-msgid "The <link href=\"text/shared/01/02110000.xhp\" name=\"Navigator\"><emph>Navigator</emph></link> appears after you create a master document. To edit a sub-document, double-click the name of a sub-document in the <emph>Navigator</emph>."
-msgstr "El <link href=\"text/shared/01/02110000.xhp\" name=\"Navegador\"><emph>Navegador</emph></link> apareix quan heu creat un document mestre. Per editar un subdocument, feu doble clic al nom d'un subdocument al <emph>Navegador</emph>."
+msgid "The <link href=\"text/shared/01/02110000.xhp\"><emph>Navigator</emph></link> appears after you create a master document. To edit a sub-document, double-click the name of a sub-document in the <emph>Navigator</emph>."
+msgstr "El <link href=\"text/shared/01/02110000.xhp\"><emph>Navegador</emph></link> apareix quan heu creat un document mestre. Per editar un subdocument, feu doble clic al nom d'un subdocument al <emph>Navegador</emph>."
#. DQHGj
#: 01160300.xhp
@@ -6272,13 +6416,13 @@ msgctxt ""
msgid "<bookmark_value>exiting;$[officename]</bookmark_value>"
msgstr "<bookmark_value>tancament;$[officename]</bookmark_value>"
-#. QEpYh
+#. vCEvF
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"hd_id3154545\n"
"help.text"
-msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit\">Exit %PRODUCTNAME</link>"
+msgid "<link href=\"text/shared/01/01170000.xhp\">Exit %PRODUCTNAME</link>"
msgstr ""
#. Dtb5G
@@ -6290,14 +6434,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Closes all %PRODUCTNAME programs and prompts you to save your changes.</ahelp> This command does not exist on macOS systems."
msgstr ""
-#. XYGgt
+#. 7VVnU
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3154184\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=\"Tanca el document actual\">Tanca el document actual</link>"
+msgid "<link href=\"text/shared/01/01050000.xhp\">Close the current document</link>"
+msgstr "<link href=\"text/shared/01/01050000.xhp\">Tanca el document actual</link>"
#. DRhaA
#: 01180000.xhp
@@ -6308,14 +6452,14 @@ msgctxt ""
msgid "Save All"
msgstr "Guarda-ho tot"
-#. GrBiV
+#. YeE2x
#: 01180000.xhp
msgctxt ""
"01180000.xhp\n"
"hd_id3150347\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=\"Guarda-ho tot\">Guarda-ho tot</link>"
+msgid "<link href=\"text/shared/01/01180000.xhp\">Save All</link>"
+msgstr "<link href=\"text/shared/01/01180000.xhp\">Guarda-ho tot</link>"
#. jcon5
#: 01180000.xhp
@@ -6326,14 +6470,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:SaveAll\">Saves all modified $[officename] documents.</ahelp>"
msgstr "<ahelp hid=\".uno:SaveAll\">Guarda tots els documents del $[officename] modificats.</ahelp>"
-#. FGLzK
+#. Scj9G
#: 01180000.xhp
msgctxt ""
"01180000.xhp\n"
"par_id3148440\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\"><emph>Save As</emph></link> dialog appears."
-msgstr "Si guardeu un fitxer nou o una còpia d'un fitxer només de lectura, apareix el diàleg <link href=\"text/shared/01/01070000.xhp\" name=\"Anomena i guarda\"><emph>Anomena i guarda</emph></link>."
+msgid "If you are saving a new file or a copy of a read-only file, the <link href=\"text/shared/01/01070000.xhp\"><emph>Save As</emph></link> dialog appears."
+msgstr "Si guardeu un fitxer nou o una còpia d'un fitxer només de lectura, apareix el diàleg <link href=\"text/shared/01/01070000.xhp\"><emph>Anomena i guarda</emph></link>."
#. PF9Lk
#: 01190000.xhp
@@ -6353,14 +6497,14 @@ msgctxt ""
msgid "<bookmark_value>versions;file saving as, restriction</bookmark_value>"
msgstr "<bookmark_value>versions;desament de fitxer, restricció</bookmark_value>"
-#. fD6Gd
+#. 8EDDS
#: 01190000.xhp
msgctxt ""
"01190000.xhp\n"
"hd_id3143272\n"
"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgid "<link href=\"text/shared/01/01190000.xhp\">Versions</link>"
+msgstr "<link href=\"text/shared/01/01190000.xhp\">Versions</link>"
#. cDPSg
#: 01190000.xhp
@@ -6542,14 +6686,14 @@ msgctxt ""
msgid "Compare"
msgstr "Compara"
-#. sg87a
+#. rndPk
#: 01190000.xhp
msgctxt ""
"01190000.xhp\n"
"par_id3152811\n"
"help.text"
-msgid "<ahelp hid=\"sfx/ui/versionsofdialog/compare\">Compare the changes that were made in each version.</ahelp> If you want, you can <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Manage Changes</emph></link>."
-msgstr "<ahelp hid=\"sfx/ui/versionsofdialog/compare\">Compareu els canvis que s'han fet a cada versió.</ahelp> Si voleu, també podeu <link href=\"text/shared/01/02230400.xhp\" name=\"Gestiona els canvis\"><emph>gestionar els canvis</emph></link>."
+msgid "<ahelp hid=\"sfx/ui/versionsofdialog/compare\">Compare the changes that were made in each version.</ahelp> If you want, you can <link href=\"text/shared/01/02230400.xhp\"><emph>Manage Changes</emph></link>."
+msgstr "<ahelp hid=\"sfx/ui/versionsofdialog/compare\">Compareu els canvis que s'han fet a cada versió.</ahelp> Si voleu, també podeu <link href=\"text/shared/01/02230400.xhp\"><emph>gestionar els canvis</emph></link>."
#. 7yFCP
#: 01990000.xhp
@@ -6560,14 +6704,14 @@ msgctxt ""
msgid "Recent Documents"
msgstr "Documents recents"
-#. AMcQP
+#. Wu5PV
#: 01990000.xhp
msgctxt ""
"01990000.xhp\n"
"hd_id3150279\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=\"Documents recents\">Documents recents</link></variable>"
+msgid "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\">Recent Documents</link></variable>"
+msgstr "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\">Documents recents</link></variable>"
#. doka7
#: 01990000.xhp
@@ -6614,14 +6758,14 @@ msgctxt ""
msgid "<bookmark_value>undoing;editing</bookmark_value><bookmark_value>editing;undoing</bookmark_value>"
msgstr "<bookmark_value>desfer;edició</bookmark_value><bookmark_value>edició;desfer</bookmark_value>"
-#. zSpQo
+#. r2eXD
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"hd_id3155069\n"
"help.text"
-msgid "<link href=\"text/shared/01/02010000.xhp\" name=\"Undo\">Undo</link>"
-msgstr "<link href=\"text/shared/01/02010000.xhp\" name=\"Desfés\">Desfés</link>"
+msgid "<link href=\"text/shared/01/02010000.xhp\">Undo</link>"
+msgstr "<link href=\"text/shared/01/02010000.xhp\">Desfés</link>"
#. qKeVk
#: 02010000.xhp
@@ -6722,14 +6866,14 @@ msgctxt ""
msgid "<bookmark_value>restoring;editing</bookmark_value><bookmark_value>redo command</bookmark_value>"
msgstr "<bookmark_value>restauració;edició</bookmark_value><bookmark_value>orde refés</bookmark_value>"
-#. KNLLP
+#. 8QbB7
#: 02020000.xhp
msgctxt ""
"02020000.xhp\n"
"hd_id3149991\n"
"help.text"
-msgid "<link href=\"text/shared/01/02020000.xhp\" name=\"Redo\">Redo</link>"
-msgstr "<link href=\"text/shared/01/02020000.xhp\" name=\"Refés\">Refés</link>"
+msgid "<link href=\"text/shared/01/02020000.xhp\">Redo</link>"
+msgstr "<link href=\"text/shared/01/02020000.xhp\">Refés</link>"
#. rLmrF
#: 02020000.xhp
@@ -6758,14 +6902,14 @@ msgctxt ""
msgid "<bookmark_value>repeating; commands</bookmark_value><bookmark_value>commands; repeating</bookmark_value>"
msgstr "<bookmark_value>repetició; ordes</bookmark_value><bookmark_value>ordes; repetició</bookmark_value>"
-#. VonvU
+#. NYRRP
#: 02030000.xhp
msgctxt ""
"02030000.xhp\n"
"hd_id3150279\n"
"help.text"
-msgid "<link href=\"text/shared/01/02030000.xhp\" name=\"Repeat\">Repeat</link>"
-msgstr "<link href=\"text/shared/01/02030000.xhp\" name=\"Repeteix\">Repeteix</link>"
+msgid "<link href=\"text/shared/01/02030000.xhp\">Repeat</link>"
+msgstr "<link href=\"text/shared/01/02030000.xhp\">Repeteix</link>"
#. BYENE
#: 02030000.xhp
@@ -6794,14 +6938,14 @@ msgctxt ""
msgid "<bookmark_value>cutting</bookmark_value><bookmark_value>clipboard; cutting</bookmark_value>"
msgstr "<bookmark_value>tall</bookmark_value><bookmark_value>porta-retalls; tall</bookmark_value>"
-#. 65iCf
+#. iGGzb
#: 02040000.xhp
msgctxt ""
"02040000.xhp\n"
"hd_id3146936\n"
"help.text"
-msgid "<link href=\"text/shared/01/02040000.xhp\" name=\"Cut\">Cut</link>"
-msgstr "<link href=\"text/shared/01/02040000.xhp\" name=\"Retalla\">Retalla</link>"
+msgid "<link href=\"text/shared/01/02040000.xhp\">Cut</link>"
+msgstr "<link href=\"text/shared/01/02040000.xhp\">Retalla</link>"
#. XD2Mt
#: 02040000.xhp
@@ -6830,14 +6974,14 @@ msgctxt ""
msgid "<bookmark_value>clipboard; Unix</bookmark_value><bookmark_value>copying; in Unix</bookmark_value>"
msgstr "<bookmark_value>porta-retalls; Unix</bookmark_value><bookmark_value>còpia; a el Unix</bookmark_value>"
-#. xqSeL
+#. QJERw
#: 02050000.xhp
msgctxt ""
"02050000.xhp\n"
"hd_id3152876\n"
"help.text"
-msgid "<link href=\"text/shared/01/02050000.xhp\" name=\"Copy\">Copy</link>"
-msgstr "<link href=\"text/shared/01/02050000.xhp\" name=\"Copia\">Copia</link>"
+msgid "<link href=\"text/shared/01/02050000.xhp\">Copy</link>"
+msgstr "<link href=\"text/shared/01/02050000.xhp\">Copia</link>"
#. nmrES
#: 02050000.xhp
@@ -6884,14 +7028,14 @@ msgctxt ""
msgid "<bookmark_value>pasting; cell ranges</bookmark_value><bookmark_value>clipboard; pasting</bookmark_value><bookmark_value>cells; pasting</bookmark_value><bookmark_value>pasting; Enter key</bookmark_value><bookmark_value>pasting; Ctrl+V shortcut</bookmark_value>"
msgstr ""
-#. 5ZbXk
+#. tSGK5
#: 02060000.xhp
msgctxt ""
"02060000.xhp\n"
"hd_id3149031\n"
"help.text"
-msgid "<link href=\"text/shared/01/02060000.xhp\" name=\"Paste\">Paste</link>"
-msgstr "<link href=\"text/shared/01/02060000.xhp\" name=\"Enganxa\">Enganxa</link>"
+msgid "<link href=\"text/shared/01/02060000.xhp\">Paste</link>"
+msgstr "<link href=\"text/shared/01/02060000.xhp\">Enganxa</link>"
#. 5V5zS
#: 02060000.xhp
@@ -6992,13 +7136,13 @@ msgctxt ""
msgid "Paste Special"
msgstr "Enganxament especial"
-#. AGDhZ
+#. KcyHo
#: 02070000.xhp
msgctxt ""
"02070000.xhp\n"
"hd_id3147477\n"
"help.text"
-msgid "<variable id=\"paste_specialh1\"><link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link></variable>"
+msgid "<variable id=\"paste_specialh1\"><link href=\"text/shared/01/02070000.xhp\">Paste Special</link></variable>"
msgstr ""
#. 2xiJU
@@ -7541,13 +7685,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/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 \"Paste All\" option is also selected.</ahelp>"
msgstr ""
-#. 5BxP6
+#. nsCJw
#: 02070000.xhp
msgctxt ""
"02070000.xhp\n"
"par_id3145667\n"
"help.text"
-msgid "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."
+msgid "You can also link sheets within the same spreadsheet. When you link to other files, a <link href=\"text/shared/00/00000005.xhp#dde\">DDE link</link> is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole."
msgstr ""
#. QgPWJ
@@ -7631,14 +7775,14 @@ msgctxt ""
msgid "Select All"
msgstr "Selecciona-ho tot"
-#. U8iA6
+#. jjEMm
#: 02090000.xhp
msgctxt ""
"02090000.xhp\n"
"hd_id3145138\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=\"Selecciona-ho tot\">Selecciona-ho tot</link>"
+msgid "<link href=\"text/shared/01/02090000.xhp\">Select All</link>"
+msgstr "<link href=\"text/shared/01/02090000.xhp\">Selecciona-ho tot</link>"
#. PDEFv
#: 02090000.xhp
@@ -7685,13 +7829,13 @@ msgctxt ""
msgid "<bookmark_value>Find & Replace dialog</bookmark_value>"
msgstr ""
-#. FGyuJ
+#. NmkuD
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
"hd_id3154044\n"
"help.text"
-msgid "<variable id=\"02100000\"> <link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link> </variable>"
+msgid "<variable id=\"02100000\"> <link href=\"text/shared/01/02100000.xhp\">Find & Replace</link> </variable>"
msgstr ""
#. ANaCL
@@ -8153,13 +8297,13 @@ msgctxt ""
msgid "<variable id=\"halbnormaltitel\">Match character width (only if Asian languages are enabled)</variable>"
msgstr "<variable id=\"halbnormaltitel\">Coincideix amb l'amplària del caràcter (només si s'han habilitat les llengües asiàtiques)</variable>"
-#. 3PLmH
+#. 2HLDZ
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
"par_id3145744\n"
"help.text"
-msgid "<variable id=\"halbnormaltext\"> <ahelp hid=\"svx/ui/findreplacedialog/matchcharwidth\">Distinguishes between <link href=\"text/shared/00/00000005.xhp#halfwidth\" name=\"halfwidth\">half-width and full-width</link> character forms.</ahelp> </variable>"
+msgid "<variable id=\"halbnormaltext\"> <ahelp hid=\"svx/ui/findreplacedialog/matchcharwidth\">Distinguishes between <link href=\"text/shared/00/00000005.xhp#halfwidth\">half-width and full-width</link> character forms.</ahelp> </variable>"
msgstr ""
#. D4hMq
@@ -8189,14 +8333,14 @@ msgctxt ""
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 ""
-#. buRmS
+#. 9dcCK
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
"par_id3148672\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=\"Opcions de busca per al japonés\">Opcions de busca per al japonés</link>"
+msgid "<link href=\"text/shared/optionen/01150200.xhp\">Searching in Japanese</link>"
+msgstr "<link href=\"text/shared/optionen/01150200.xhp\">Opcions de busca per al japonés</link>"
#. Euy7E
#: 02100000.xhp
@@ -8234,22 +8378,22 @@ msgctxt ""
msgid "Searches exact match, does not include Arabic Tatweel mark <literal>U+0640</literal> (also known as Kashida) in search. For example, searching for كتاب will not match كـتاب or كتــــاب and so on."
msgstr ""
-#. WAxVa
+#. AhRmQ
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
"hd_id3147348\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"> <link href=\"text/shared/01/02100200.xhp\" name=\"Attributes\">Attributes</link> </caseinline> </switchinline>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"> <link href=\"text/shared/01/02100200.xhp\">Attributes</link> </caseinline> </switchinline>"
msgstr ""
-#. S66Gf
+#. tg6o4
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
"hd_id3155854\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"> <link href=\"text/shared/01/02100300.xhp\" name=\"Format\">Format</link> </caseinline> </switchinline>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"> <link href=\"text/shared/01/02100300.xhp\">Format</link> </caseinline> </switchinline>"
msgstr ""
#. 2HX6G
@@ -8630,13 +8774,13 @@ msgctxt ""
msgid "When entered in the <widget>Find</widget> text box, finds a line break that was inserted with the <keycode>Shift+Enter</keycode> key combination in Writer, or the <keycode>Ctrl+Enter</keycode> key combination in a Calc cell."
msgstr ""
-#. uF4gF
+#. ts8gp
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id731559575258580\n"
"help.text"
-msgid "When entered in the <widget>Replace</widget> text box in Writer, inserts a paragraph break as can be inserted with the <keycode>Enter</keycode> or <keycode>Return</keycode> key. Has no special meaning in Calc, and is treated literally there."
+msgid "When entered in the <widget>Replace</widget> text box in Writer, inserts a paragraph break that can be inserted with the <keycode>Enter</keycode> or <keycode>Return</keycode> key. Has no special meaning in Calc, and is treated literally there."
msgstr ""
#. eHEZV
@@ -8936,13 +9080,13 @@ msgctxt ""
msgid "Represents an uppercase character if <emph>Match case</emph> is selected in <emph>Options</emph>."
msgstr "Representa majúscules si l'opció <emph>Distingeix entre majúscules i minúscules</emph> s'ha seleccionat a <emph>Opcions</emph>."
-#. Ezagm
+#. Fsw8C
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id5311440\n"
"help.text"
-msgid "For a full list of supported metacharacters and syntax, see <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html#regular-expression-metacharacters\" name=\"ICU Regular Expressions documentation\">ICU Regular Expressions documentation</link>"
+msgid "For a full list of supported metacharacters and syntax, see <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html#regular-expression-metacharacters\">ICU Regular Expressions documentation</link>"
msgstr ""
#. HvC9Q
@@ -9188,22 +9332,22 @@ msgctxt ""
msgid "\\b specifies that the match must end at a word boundary."
msgstr ""
-#. K8QcW
+#. Dubw9
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id1751457\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Writer\" name=\"wiki.documentfoundation.org Documentation/HowTo/Writer/Regular Expressions\">Wiki page about regular expressions in Writer</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Writer\">Wiki page about regular expressions in Writer</link>"
msgstr ""
-#. Q534c
+#. aWcJb
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id5483870\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Calc\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/Regular Expressions\">Wiki page about regular expressions in Calc</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Calc\">Wiki page about regular expressions in Calc</link>"
msgstr ""
#. Aj9D7
@@ -9224,14 +9368,14 @@ msgctxt ""
msgid "<bookmark_value>similarity search</bookmark_value><bookmark_value>finding; similarity search</bookmark_value>"
msgstr "<bookmark_value>busca per similitud</bookmark_value><bookmark_value>similitud; busca</bookmark_value>"
-#. NQEpW
+#. GksE2
#: 02100100.xhp
msgctxt ""
"02100100.xhp\n"
"hd_id3156045\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100100.xhp\" name=\"Similarity Search\">Similarity Search</link>"
-msgstr "<link href=\"text/shared/01/02100100.xhp\" name=\"Busca per similitud\">Busca per similitud</link>"
+msgid "<link href=\"text/shared/01/02100100.xhp\">Similarity Search</link>"
+msgstr "<link href=\"text/shared/01/02100100.xhp\">Busca per similitud</link>"
#. cMi8S
#: 02100100.xhp
@@ -10079,14 +10223,14 @@ msgctxt ""
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 "Utilitzeu <emph>Format del text (busca)</emph> o <emph>Format del text (reemplaça)</emph> per definir els criteris de busca de formatació. Estos diàlegs contenen les pestanyes següents:"
-#. nSBes
+#. CmHqF
#: 02100300.xhp
msgctxt ""
"02100300.xhp\n"
"par_id3149457\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100200.xhp\" name=\"Attributes\">Attributes</link>"
-msgstr "<link href=\"text/shared/01/02100200.xhp\" name=\"Atributs\">Atributs</link>"
+msgid "<link href=\"text/shared/01/02100200.xhp\">Attributes</link>"
+msgstr "<link href=\"text/shared/01/02100200.xhp\">Atributs</link>"
#. wSn8W
#: 02110000.xhp
@@ -10844,23 +10988,23 @@ msgctxt ""
msgid "<bookmark_value>DDE links; modifying</bookmark_value><bookmark_value>changing; DDE links</bookmark_value>"
msgstr ""
-#. o8hNJ
+#. F8zcS
#: 02180100.xhp
msgctxt ""
"02180100.xhp\n"
"hd_id3149877\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180100.xhp\" name=\"Modify Links\">Modify DDE Links</link>"
+msgid "<link href=\"text/shared/01/02180100.xhp\">Modify DDE Links</link>"
msgstr ""
-#. CCxEW
+#. 2UiqL
#: 02180100.xhp
msgctxt ""
"02180100.xhp\n"
"par_id3150838\n"
"help.text"
-msgid "Change the properties for the selected <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\"><emph>DDE link</emph></link>."
-msgstr "Modifiqueu les propietats de l'<link href=\"text/shared/00/00000005.xhp#dde\" name=\"enllaç DDE\"><emph>enllaç DDE</emph></link> seleccionat."
+msgid "Change the properties for the selected <link href=\"text/shared/00/00000005.xhp#dde\"><emph>DDE link</emph></link>."
+msgstr "Modifiqueu les propietats de l'<link href=\"text/shared/00/00000005.xhp#dde\"><emph>enllaç DDE</emph></link> seleccionat."
#. zKngu
#: 02180100.xhp
@@ -10907,13 +11051,13 @@ msgctxt ""
msgid "File"
msgstr "Fitxer"
-#. JooHu
+#. HNucX
#: 02180100.xhp
msgctxt ""
"02180100.xhp\n"
"par_id3153527\n"
"help.text"
-msgid "<ahelp hid=\"sfx/ui/linkeditdialog/file\">Path to the source file. <link href=\"text/shared/00/00000005.xhp#saving\" name=\"Relative paths\">Relative paths</link> must be expressed by full URI, for example, with <emph>file://</emph>.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/linkeditdialog/file\">Path to the source file. <link href=\"text/shared/00/00000005.xhp#saving\">Relative paths</link> must be expressed by full URI, for example, with <emph>file://</emph>.</ahelp>"
msgstr ""
#. eEnmT
@@ -10943,13 +11087,13 @@ msgctxt ""
msgid "OLE Object (Edit)"
msgstr ""
-#. VrRPX
+#. FtmBT
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">OLE Object</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\">OLE Object</link>"
msgstr ""
#. QMGSE
@@ -10988,14 +11132,14 @@ msgctxt ""
msgid "<bookmark_value>objects; editing</bookmark_value><bookmark_value>editing; objects</bookmark_value>"
msgstr "<bookmark_value>objectes; edició</bookmark_value><bookmark_value>edició; objectes</bookmark_value>"
-#. Yqvzi
+#. ZGezg
#: 02200100.xhp
msgctxt ""
"02200100.xhp\n"
"hd_id3145138\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/shared/01/02200100.xhp\" name=\"Edita\">Edita</link>"
+msgid "<link href=\"text/shared/01/02200100.xhp\">Edit</link>"
+msgstr "<link href=\"text/shared/01/02200100.xhp\">Edita</link>"
#. CP7mz
#: 02200100.xhp
@@ -11024,14 +11168,14 @@ msgctxt ""
msgid "<bookmark_value>objects; opening</bookmark_value><bookmark_value>opening; objects</bookmark_value>"
msgstr "<bookmark_value>objectes; obertura</bookmark_value><bookmark_value>obertura; objectes</bookmark_value>"
-#. BcMVC
+#. cqXcA
#: 02200200.xhp
msgctxt ""
"02200200.xhp\n"
"hd_id3085157\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200200.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/02200200.xhp\" name=\"Obri\">Obri</link>"
+msgid "<link href=\"text/shared/01/02200200.xhp\">Open</link>"
+msgstr "<link href=\"text/shared/01/02200200.xhp\">Obri</link>"
#. GtHPX
#: 02200200.xhp
@@ -11069,14 +11213,14 @@ msgctxt ""
msgid "Floating Frame Properties"
msgstr "Propietats del marc flotant"
-#. pBzAK
+#. tZiv8
#: 02210101.xhp
msgctxt ""
"02210101.xhp\n"
"hd_id3150347\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=\"Propietats del marc flotant\">Propietats del marc flotant</link>"
+msgid "<link href=\"text/shared/01/02210101.xhp\">Floating Frame Properties</link>"
+msgstr "<link href=\"text/shared/01/02210101.xhp\">Propietats del marc flotant</link>"
#. GZN7r
#: 02210101.xhp
@@ -11996,14 +12140,14 @@ msgctxt ""
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 "Introduïu el nom del marc de destinació on s'ha d'obrir l'URL o bé seleccioneu un marc estàndard de la llista."
-#. JxF6J
+#. R4MwA
#: 02220000.xhp
msgctxt ""
"02220000.xhp\n"
"par_id3153231\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020400.xhp#targets\" name=\"List of frame types\">List of frame types</link>"
-msgstr "<link href=\"text/shared/01/05020400.xhp#targets\" name=\"Llista de tipus de marc\">Llista de tipus de marc</link>"
+msgid "<link href=\"text/shared/01/05020400.xhp#targets\">List of frame types</link>"
+msgstr "<link href=\"text/shared/01/05020400.xhp#targets\">Llista de tipus de marc</link>"
#. qB8Cc
#: 02220000.xhp
@@ -12023,14 +12167,14 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/imapdialog/container\">Displays the image map, so that you can click and edit the hotspots.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/imapdialog/container\"/>Mostra el mapa d'imatge perquè pugueu fer clic a les zones sensibles i editar-les."
-#. xkWzd
+#. ykdUA
#: 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=\"Control de l'editor del mapa d'imatge mitjançant el teclat\">Control de l'editor del mapa d'imatge mitjançant el teclat</link>"
+msgid "<link href=\"text/shared/guide/keyboard.xhp\">Controlling the ImageMap Editor With the Keyboard</link>"
+msgstr "<link href=\"text/shared/guide/keyboard.xhp\">Control de l'editor del mapa d'imatge mitjançant el teclat</link>"
#. kKJEY
#: 02220100.xhp
@@ -12185,14 +12329,14 @@ msgctxt ""
msgid "Track Changes"
msgstr "Seguiment de canvis"
-#. SaAuE
+#. XUtBv
#: 02230000.xhp
msgctxt ""
"02230000.xhp\n"
"hd_id3152952\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Track Changes</link>"
-msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Canvis\">Seguiment de canvis</link>"
+msgid "<link href=\"text/shared/01/02230000.xhp\">Track Changes</link>"
+msgstr "<link href=\"text/shared/01/02230000.xhp\">Seguiment de canvis</link>"
#. vZ58F
#: 02230000.xhp
@@ -12203,23 +12347,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Lists the commands that are available for tracking changes in your file.</ahelp>"
msgstr "<ahelp hid=\".\">Enumera les ordes disponibles per fer el seguiment de canvis al fitxer.</ahelp>"
-#. Krv6i
+#. U7844
#: 02230000.xhp
msgctxt ""
"02230000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230400.xhp\" name=\"Manage\">Manage</link>"
-msgstr "<link href=\"text/shared/01/02230400.xhp\" name=\"Gestiona\">Gestiona</link>"
+msgid "<link href=\"text/shared/01/02230400.xhp\">Manage</link>"
+msgstr "<link href=\"text/shared/01/02230400.xhp\">Gestiona</link>"
-#. 7B7c9
+#. eKSy3
#: 02230000.xhp
msgctxt ""
"02230000.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comment\">Comment</link>"
-msgstr "<link href=\"text/shared/01/02230300.xhp\" name=\"Comentari\">Comentari</link>"
+msgid "<link href=\"text/shared/01/02230300.xhp\">Comment</link>"
+msgstr "<link href=\"text/shared/01/02230300.xhp\">Comentari</link>"
#. qEpxC
#: 02230100.xhp
@@ -12230,14 +12374,14 @@ msgctxt ""
msgid "Record Changes"
msgstr "Enregistra els canvis"
-#. HgdbZ
+#. Ri4HH
#: 02230100.xhp
msgctxt ""
"02230100.xhp\n"
"hd_id3150758\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230100.xhp\" name=\"Record Changes\">Record Changes</link>"
-msgstr "<link href=\"text/shared/01/02230100.xhp\" name=\"Enregistra els canvis\">Enregistra els canvis</link>"
+msgid "<link href=\"text/shared/01/02230100.xhp\">Record Changes</link>"
+msgstr "<link href=\"text/shared/01/02230100.xhp\">Enregistra els canvis</link>"
#. FeZzp
#: 02230100.xhp
@@ -12257,23 +12401,23 @@ msgctxt ""
msgid "On the <emph>Track Changes</emph> toolbar, click"
msgstr ""
-#. FJDpx
+#. Fwimv
#: 02230100.xhp
msgctxt ""
"02230100.xhp\n"
"par_id3155934\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Edit - Track Changes - 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 <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the <emph>Options</emph> dialog box.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Si seleccioneu <emph>Edita ▸ Seguiment de canvis ▸ Mostra</emph>, s'indiquen les línies que contenen passatges de text modificats mitjançant una línia vertical al marge esquerre de la pàgina. Podeu definir les propietats de la línia vertical i dels altres elements d'etiquetatge a <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer ▸ Canvis\"><emph>%PRODUCTNAME Writer ▸ Canvis</emph></link> del quadre de diàleg <emph>Opcions</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Edit - Track Changes - 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 <link href=\"text/shared/optionen/01040700.xhp\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the <emph>Options</emph> dialog box.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Si seleccioneu <emph>Edita ▸ Seguiment de canvis ▸ Mostra</emph>, s'indiquen les línies que contenen passatges de text modificats mitjançant una línia vertical al marge esquerre de la pàgina. Podeu definir les propietats de la línia vertical i dels altres elements d'etiquetatge a <link href=\"text/shared/optionen/01040700.xhp\"><emph>%PRODUCTNAME Writer ▸ Canvis</emph></link> del quadre de diàleg <emph>Opcions</emph>.</caseinline></switchinline>"
-#. EaBGD
+#. jrd6A
#: 02230100.xhp
msgctxt ""
"02230100.xhp\n"
"par_id3147261\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 <emph>Options</emph> dialog box.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Podeu definir les propietats dels elements d'etiquetatge a <link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc ▸ Canvis\"><emph>%PRODUCTNAME Calc ▸ Canvis</emph></link> del quadre de diàleg <emph>Opcions</emph>.</caseinline></switchinline>"
+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\"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the <emph>Options</emph> dialog box.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Podeu definir les propietats dels elements d'etiquetatge a <link href=\"text/shared/optionen/01060600.xhp\"><emph>%PRODUCTNAME Calc ▸ Canvis</emph></link> del quadre de diàleg <emph>Opcions</emph>.</caseinline></switchinline>"
#. FZjJC
#: 02230100.xhp
@@ -12428,14 +12572,14 @@ msgctxt ""
msgid "Protect Changes"
msgstr "Protegeix els canvis"
-#. FsMUP
+#. JWyBT
#: 02230150.xhp
msgctxt ""
"02230150.xhp\n"
"hd_id3154349\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230150.xhp\" name=\"Protect Changes\">Protect Changes</link>"
-msgstr "<link href=\"text/shared/01/02230150.xhp\" name=\"Protegeix els canvis\">Protegeix els canvis</link>"
+msgid "<link href=\"text/shared/01/02230150.xhp\">Protect Changes</link>"
+msgstr "<link href=\"text/shared/01/02230150.xhp\">Protegeix els canvis</link>"
#. xSn6G
#: 02230150.xhp
@@ -12473,13 +12617,13 @@ msgctxt ""
msgid "<bookmark_value>changes; showing</bookmark_value><bookmark_value>hiding;changes</bookmark_value><bookmark_value>showing; changes</bookmark_value>"
msgstr "<bookmark_value>canvis; visualització</bookmark_value><bookmark_value>amagar; canvis</bookmark_value><bookmark_value>visualització;canvis</bookmark_value>"
-#. NXNow
+#. WNNbZ
#: 02230200.xhp
msgctxt ""
"02230200.xhp\n"
"hd_id3149988\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230200.xhp\" name=\"Show Changes\">Show Track Changes</link>"
+msgid "<link href=\"text/shared/01/02230200.xhp\">Show Track Changes</link>"
msgstr ""
#. Bk7zQ
@@ -12500,13 +12644,13 @@ msgctxt ""
msgid "On the <emph>Track Changes</emph> toolbar, click"
msgstr ""
-#. yi8Qe
+#. 8Mq8v
#: 02230200.xhp
msgctxt ""
"02230200.xhp\n"
"par_id3152425\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></caseinline></switchinline> <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc - Changes\"><emph>%PRODUCTNAME Calc - Changes</emph></link></caseinline></switchinline> in the <emph>Options</emph> dialog box."
+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\"><emph>%PRODUCTNAME Writer - Changes</emph></link></caseinline></switchinline> <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060600.xhp\"><emph>%PRODUCTNAME Calc - Changes</emph></link></caseinline></switchinline> in the <emph>Options</emph> dialog box."
msgstr ""
#. ZBLxs
@@ -12590,13 +12734,13 @@ msgctxt ""
msgid "All Changes Inline"
msgstr ""
-#. DHVcU
+#. f4KbK
#: 02230200.xhp
msgctxt ""
"02230200.xhp\n"
"par_id581668110199198\n"
"help.text"
-msgid "The default. Insertions and deletions are displayed in the contents according to the settings in <link href=\"text/shared/optionen/01060600.xhp\" name=\"Writer - Changes\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <menuitem>%PRODUCTNAME Writer - Changes</menuitem></link>."
+msgid "The default. Insertions and deletions are displayed in the contents according to the settings in <link href=\"text/shared/optionen/01060600.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <menuitem>%PRODUCTNAME Writer - Changes</menuitem></link>."
msgstr ""
#. ARQV7
@@ -12671,13 +12815,13 @@ msgctxt ""
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>Manage Changes</emph> dialog."
msgstr ""
-#. ny8JD
+#. Botsg
#: 02230300.xhp
msgctxt ""
"02230300.xhp\n"
"par_id3156426\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=\"Manage Changes\"><emph>Manage Changes</emph></link> dialog.</caseinline></switchinline>"
+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\"><emph>Manage Changes</emph></link> dialog.</caseinline></switchinline>"
msgstr ""
#. bhD8i
@@ -12689,13 +12833,13 @@ msgctxt ""
msgid "Manage changes"
msgstr "Gestiona els canvis"
-#. PLMdJ
+#. yGaGz
#: 02230400.xhp
msgctxt ""
"02230400.xhp\n"
"hd_id3145138\n"
"help.text"
-msgid "<variable id=\"Manage changesh1\"><link href=\"text/shared/01/02230400.xhp\" name=\"Manage changes\">Manage changes</link></variable>"
+msgid "<variable id=\"Manage changesh1\"><link href=\"text/shared/01/02230400.xhp\">Manage changes</link></variable>"
msgstr ""
#. frkxa
@@ -12725,14 +12869,14 @@ msgctxt ""
msgid "List"
msgstr "Llista"
-#. 37YBA
+#. GiB4j
#: 02230401.xhp
msgctxt ""
"02230401.xhp\n"
"hd_id3159242\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230401.xhp\" name=\"List\">List</link>"
-msgstr "<link href=\"text/shared/01/02230401.xhp\" name=\"Llista\">Llista</link>"
+msgid "<link href=\"text/shared/01/02230401.xhp\">List</link>"
+msgstr "<link href=\"text/shared/01/02230401.xhp\">Llista</link>"
#. iTDdD
#: 02230401.xhp
@@ -12743,14 +12887,14 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/redlineviewpage/RedlineViewPage\">Accept or reject individual changes.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/redlineviewpage/RedlineViewPage\">Accepteu o rebutgeu canvis individuals.</ahelp>"
-#. g6UNF
+#. GReuM
#: 02230401.xhp
msgctxt ""
"02230401.xhp\n"
"par_id3149511\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 "La pestanya <emph>Llista</emph> mostra tots els canvis que s'han enregistrat al document actual. Per a filtrar aquesta llista, feu clic a la pestanya <emph>Filtre</emph> i seleccioneu els <link href=\"text/shared/01/02230402.xhp\" name=\"criteris de filtre\">criteris de filtre</link> que vulgueu aplicar.<switchinline select=\"appl\"><caseinline select=\"WRITER\"> Si la llista conté canvis imbricats, se'n mostren les dependències siga quin siga el filtre.</caseinline></switchinline>"
+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\">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 "La pestanya <emph>Llista</emph> mostra tots els canvis que s'han enregistrat al document actual. Per a filtrar aquesta llista, feu clic a la pestanya <emph>Filtre</emph> i seleccioneu els <link href=\"text/shared/01/02230402.xhp\">criteris de filtre</link> que vulgueu aplicar.<switchinline select=\"appl\"><caseinline select=\"WRITER\"> Si la llista conté canvis imbricats, se'n mostren les dependències siga quin siga el filtre.</caseinline></switchinline>"
#. QwEH4
#: 02230401.xhp
@@ -13238,23 +13382,23 @@ msgctxt ""
msgid "Filter"
msgstr "Filtre"
-#. szgPK
+#. PF7tk
#: 02230402.xhp
msgctxt ""
"02230402.xhp\n"
"hd_id3153323\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230402.xhp\" name=\"Filter\">Filter</link>"
-msgstr "<link href=\"text/shared/01/02230402.xhp\" name=\"Filtre\">Filtre</link>"
+msgid "<link href=\"text/shared/01/02230402.xhp\">Filter</link>"
+msgstr "<link href=\"text/shared/01/02230402.xhp\">Filtre</link>"
-#. RBocS
+#. wuBcK
#: 02230402.xhp
msgctxt ""
"02230402.xhp\n"
"par_id3147088\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 "Definiu els criteris per filtrar la llista de canvis a la pestanya <link href=\"text/shared/01/02230401.xhp\" name=\"Llista\"><emph>Llista</emph></link>."
+msgid "Set the criteria for filtering the list of changes on the <link href=\"text/shared/01/02230401.xhp\"><emph>List</emph></link> tab."
+msgstr "Definiu els criteris per filtrar la llista de canvis a la pestanya <link href=\"text/shared/01/02230401.xhp\"><emph>Llista</emph></link>."
#. vGWGJ
#: 02230402.xhp
@@ -13400,14 +13544,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Filters the comments of the changes according to the keyword(s) that you enter.</ahelp>"
msgstr "<ahelp hid=\".\">Filtra els comentaris dels canvis en funció de les paraules clau que introduïu.</ahelp>"
-#. CoXqW
+#. BVFrM
#: 02230402.xhp
msgctxt ""
"02230402.xhp\n"
"par_id3163820\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 "També podeu utilitzar <link href=\"text/shared/01/02100000.xhp\" name=\"expressions regulars\">expressions regulars</link> (comodins) quan filtreu els comentaris."
+msgid "You can also use <link href=\"text/shared/01/02100000.xhp\">regular expressions</link> (wildcards) when you filter the comments."
+msgstr "També podeu utilitzar <link href=\"text/shared/01/02100000.xhp\">expressions regulars</link> (comodins) quan filtreu els comentaris."
#. FAAiS
#: 02230500.xhp
@@ -13418,14 +13562,14 @@ msgctxt ""
msgid "Merge Document"
msgstr "Fusiona el document"
-#. dFS5u
+#. Vozeu
#: 02230500.xhp
msgctxt ""
"02230500.xhp\n"
"hd_id3149000\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=\"Fusiona el document\">Fusiona el document</link>"
+msgid "<link href=\"text/shared/01/02230500.xhp\">Merge Document</link>"
+msgstr "<link href=\"text/shared/01/02230500.xhp\">Fusiona el document</link>"
#. asDcB
#: 02230500.xhp
@@ -13454,13 +13598,13 @@ msgctxt ""
msgid "Compare Document"
msgstr "Compara el document"
-#. gRCCF
+#. VZYP7
#: 02240000.xhp
msgctxt ""
"02240000.xhp\n"
"hd_id3149877\n"
"help.text"
-msgid "<variable id=\"Compare Documenth1\"><link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link></variable>"
+msgid "<variable id=\"Compare Documenth1\"><link href=\"text/shared/01/02240000.xhp\">Compare Document</link></variable>"
msgstr ""
#. hoReE
@@ -13499,14 +13643,14 @@ msgctxt ""
msgid "Bibliography Database"
msgstr "Base de dades bibliogràfica"
-#. vjscB
+#. A9yEA
#: 02250000.xhp
msgctxt ""
"02250000.xhp\n"
"hd_id3150999\n"
"help.text"
-msgid "<link href=\"text/shared/01/02250000.xhp\" name=\"Bibliography Database\">Bibliography Database</link>"
-msgstr "<link href=\"text/shared/01/02250000.xhp\" name=\"Base de dades bibliogràfica\">Base de dades bibliogràfica</link>"
+msgid "<link href=\"text/shared/01/02250000.xhp\">Bibliography Database</link>"
+msgstr "<link href=\"text/shared/01/02250000.xhp\">Base de dades bibliogràfica</link>"
#. 9GNiP
#: 02250000.xhp
@@ -14084,14 +14228,14 @@ msgctxt ""
msgid "<bookmark_value>standard bar on/off</bookmark_value>"
msgstr "<bookmark_value>activació i desactivació de la barra estàndard</bookmark_value>"
-#. JGvRA
+#. vHECB
#: 03020000.xhp
msgctxt ""
"03020000.xhp\n"
"hd_id3150467\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=\"Barra Estàndard\">Barra Estàndard</link>"
+msgid "<link href=\"text/shared/01/03020000.xhp\">Standard Bar</link>"
+msgstr "<link href=\"text/shared/01/03020000.xhp\">Barra Estàndard</link>"
#. iyNTo
#: 03020000.xhp
@@ -14120,14 +14264,14 @@ msgctxt ""
msgid "<bookmark_value>tools bar</bookmark_value>"
msgstr "<bookmark_value>barra d'eines</bookmark_value>"
-#. CZZ4E
+#. 3kZxu
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"hd_id3145356\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=\"Barra d'eines\">Barra d'eines</link>"
+msgid "<link href=\"text/shared/01/03050000.xhp\">Tools Bar</link>"
+msgstr "<link href=\"text/shared/01/03050000.xhp\">Barra d'eines</link>"
#. 65to7
#: 03050000.xhp
@@ -14165,14 +14309,14 @@ msgctxt ""
msgid "<bookmark_value>status bar on/off</bookmark_value>"
msgstr "<bookmark_value>activació i desactivació de la barra d'estat</bookmark_value>"
-#. ThuE8
+#. DXCGA
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"hd_id3152823\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=\"Barra d'estat\">Barra d'estat</link>"
+msgid "<link href=\"text/shared/01/03060000.xhp\">Status Bar</link>"
+msgstr "<link href=\"text/shared/01/03060000.xhp\">Barra d'estat</link>"
#. ZAHp3
#: 03060000.xhp
@@ -14183,40 +14327,40 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows or hides the <emph>Status</emph> bar at the bottom edge of the window.</ahelp>"
msgstr "<ahelp hid=\".\">Mostra o amaga la barra d'<emph>estat</emph> a la part superior de la finestra.</ahelp>"
-#. vC7eu
+#. AnWCb
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id621603817886869\n"
"help.text"
-msgid "<link href=\"text/swriter/main0208.xhp\" name=\"writerstatusbar\">Status Bar - Overview</link>"
+msgid "<link href=\"text/swriter/main0208.xhp\">Status Bar - Overview</link>"
msgstr ""
-#. NGFKi
+#. L4bjR
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id971603817903925\n"
"help.text"
-msgid "<link href=\"text/scalc/main0208.xhp\" name=\"calcstatusbar\">Status Bar - Overview</link>"
+msgid "<link href=\"text/scalc/main0208.xhp\">Status Bar - Overview</link>"
msgstr ""
-#. ENxHS
+#. qmE2B
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id441603817913885\n"
"help.text"
-msgid "<link href=\"text/simpress/main0206.xhp\" name=\"impressstatusbar\">Status Bar - Overview</link>"
+msgid "<link href=\"text/simpress/main0206.xhp\">Status Bar - Overview</link>"
msgstr ""
-#. hjuib
+#. kGREM
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id111603817924684\n"
"help.text"
-msgid "<link href=\"text/smath/main0202.xhp\" name=\"mathstatusbar\">Status Bar - Overview</link>"
+msgid "<link href=\"text/smath/main0202.xhp\">Status Bar - Overview</link>"
msgstr ""
#. DpD8W
@@ -14237,14 +14381,14 @@ msgctxt ""
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>vista de pantalla completa</bookmark_value> <bookmark_value>pantalla; vista de pantalla completa</bookmark_value> <bookmark_value>vista de pantalla completa</bookmark_value> <bookmark_value>vistes; pantalla completa</bookmark_value>"
-#. yXYuf
+#. WWeEZ
#: 03110000.xhp
msgctxt ""
"03110000.xhp\n"
"hd_id3160463\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=\"Pantalla completa\">Pantalla completa</link>"
+msgid "<link href=\"text/shared/01/03110000.xhp\">Full Screen</link>"
+msgstr "<link href=\"text/shared/01/03110000.xhp\">Pantalla completa</link>"
#. WXoo5
#: 03110000.xhp
@@ -14291,14 +14435,14 @@ msgctxt ""
msgid "<bookmark_value>color bar</bookmark_value><bookmark_value>paint box</bookmark_value>"
msgstr "<bookmark_value>barra de colors</bookmark_value><bookmark_value>quadre de colors</bookmark_value>"
-#. xjyCv
+#. otDxy
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
"hd_id3147477\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=\"Barra de colors\">Barra de colors</link>"
+msgid "<link href=\"text/shared/01/03170000.xhp\">Color Bar</link>"
+msgstr "<link href=\"text/shared/01/03170000.xhp\">Barra de colors</link>"
#. kTGpu
#: 03170000.xhp
@@ -14345,14 +14489,14 @@ msgctxt ""
msgid "Toolbars"
msgstr "Barres d'eines"
-#. Ux6Yu
+#. UBZ5D
#: 03990000.xhp
msgctxt ""
"03990000.xhp\n"
"hd_id3160463\n"
"help.text"
-msgid "<link href=\"text/shared/01/03990000.xhp\" name=\"Toolbars\">Toolbars</link>"
-msgstr "<link href=\"text/shared/01/03990000.xhp\" name=\"Barres d'eines\">Barres d'eines</link>"
+msgid "<link href=\"text/shared/01/03990000.xhp\">Toolbars</link>"
+msgstr "<link href=\"text/shared/01/03990000.xhp\">Barres d'eines</link>"
#. BFA43
#: 03990000.xhp
@@ -14363,14 +14507,14 @@ msgctxt ""
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=\".\">Obri un submenú que permet mostrar barres d'eines i amagar-les.</ahelp> Les barres d'eines contenen icones i opcions que permeten accedir ràpidament a les ordes del $[officename]."
-#. ZESXV
+#. FePVX
#: 03990000.xhp
msgctxt ""
"03990000.xhp\n"
"hd_id3153683\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=\"Personalitza\">Personalitza</link>"
+msgid "<link href=\"text/shared/guide/edit_symbolbar.xhp\">Customize</link>"
+msgstr "<link href=\"text/shared/guide/edit_symbolbar.xhp\">Personalitza</link>"
#. r5C3M
#: 03990000.xhp
@@ -14858,14 +15002,14 @@ msgctxt ""
msgid "Scan"
msgstr "Escàner"
-#. mCrWY
+#. MumDm
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3146902\n"
"help.text"
-msgid "<link href=\"text/shared/01/04060000.xhp\" name=\"Scan\">Scan</link>"
-msgstr "<link href=\"text/shared/01/04060000.xhp\" name=\"Escàner\">Escàner</link>"
+msgid "<link href=\"text/shared/01/04060000.xhp\">Scan</link>"
+msgstr "<link href=\"text/shared/01/04060000.xhp\">Escàner</link>"
#. oHtoh
#: 04060000.xhp
@@ -14876,32 +15020,32 @@ msgctxt ""
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\">Insereix una imatge escanejada al document.</ahelp></variable>"
-#. 9T5Fb
+#. sRD8M
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"par_id3153124\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 <link href=\"http://www.sane-project.org\" name=\"Sane Project\">http://www.sane-project.org</link>. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
+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 <link href=\"http://www.sane-project.org\">http://www.sane-project.org</link>. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
msgstr ""
-#. UiuhH
+#. 7D2TB
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3154673\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=\"Selecciona la font\">Selecciona la font</link>"
+msgid "<link href=\"text/shared/01/04060100.xhp\">Select Source</link>"
+msgstr "<link href=\"text/shared/01/04060100.xhp\">Selecciona la font</link>"
-#. ANGEu
+#. wPwmM
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3152801\n"
"help.text"
-msgid "<link href=\"text/shared/01/04060200.xhp\" name=\"Request\">Request</link>"
-msgstr "<link href=\"text/shared/01/04060200.xhp\" name=\"Sol·licita\">Sol·licita</link>"
+msgid "<link href=\"text/shared/01/04060200.xhp\">Request</link>"
+msgstr "<link href=\"text/shared/01/04060200.xhp\">Sol·licita</link>"
#. AMvoY
#: 04060100.xhp
@@ -15317,13 +15461,13 @@ msgctxt ""
msgid "Inserting Pictures"
msgstr "Inserció d'imatges"
-#. JJBRu
+#. BNBCi
#: 04140000.xhp
msgctxt ""
"04140000.xhp\n"
"hd_id3154350\n"
"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"Inserting Images\">Image</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\">Image</link>"
msgstr ""
#. qtoD9
@@ -15416,13 +15560,13 @@ msgctxt ""
msgid "OLE Object (Insert Menu)"
msgstr ""
-#. 9hJLy
+#. 4GbPj
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3146873\n"
"help.text"
-msgid "<variable id=\"oleobjecth1\"><link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link></variable>"
+msgid "<variable id=\"oleobjecth1\"><link href=\"text/shared/01/04150000.xhp\">OLE Object</link></variable>"
msgstr ""
#. s2t34
@@ -15434,23 +15578,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Inserts an embedded or linked object into your document, including formulas, QR codes, and OLE objects.</ahelp>"
msgstr ""
-#. PuimY
+#. AGA3M
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3153577\n"
"help.text"
-msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula Object</link>"
+msgid "<link href=\"text/shared/01/04160300.xhp\">Formula Object</link>"
msgstr ""
-#. mRZCQ
+#. BxLBb
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3154894\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=\"Objecte OLE\">Objecte OLE</link>"
+msgid "<link href=\"text/shared/01/04150100.xhp\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\">Objecte OLE</link>"
#. Prhay
#: 04150100.xhp
@@ -15479,13 +15623,13 @@ msgctxt ""
msgid "Insert OLE Object"
msgstr "Insereix un objecte OLE"
-#. EsbYc
+#. ztzw8
#: 04150100.xhp
msgctxt ""
"04150100.xhp\n"
"par_id3149748\n"
"help.text"
-msgid "<variable id=\"ole\"><ahelp hid=\".\">Inserts an <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\"><emph>OLE</emph></link> object into the current document. The OLE object is inserted as a link or an embedded object.</ahelp></variable>"
+msgid "<variable id=\"ole\"><ahelp hid=\".\">Inserts an <link href=\"text/shared/00/00000005.xhp#ole\"><emph>OLE</emph></link> object into the current document. The OLE object is inserted as a link or an embedded object.</ahelp></variable>"
msgstr ""
#. HAHCE
@@ -15668,14 +15812,14 @@ msgctxt ""
msgid "<variable id=\"starmath\"><ahelp hid=\".\">Inserts a formula into the current document.</ahelp> <switchinline select=\"appl\"><caseinline select=\"MATH\"/><defaultinline>For more information open the <emph>$[officename] Math Help</emph>.</defaultinline></switchinline></variable>"
msgstr ""
-#. 4aSw9
+#. AvvRC
#: 04160300.xhp
msgctxt ""
"04160300.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "<link href=\"text/smath/main0000.xhp\" name=\"Formulas\">Formulas</link>"
-msgstr "<link href=\"text/smath/main0000.xhp\" name=\"Fórmules\">Fórmules</link>"
+msgid "<link href=\"text/smath/main0000.xhp\">Formulas</link>"
+msgstr "<link href=\"text/smath/main0000.xhp\">Fórmules</link>"
#. 2mEnY
#: 04160500.xhp
@@ -15722,14 +15866,14 @@ msgctxt ""
msgid "If you want to create HTML pages that use floating frames, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML compatibility</emph>, and then select the \"MS Internet Explorer\" option. The floating frame is bounded by <IFRAME> and </IFRAME> tags."
msgstr "Si voleu crear pàgines HTML que continguen marcs flotants, trieu <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - Carrega/guarda - Compatibilitat HTML</emph> i, tot seguit, seleccioneu l'opció \"MS Internet Explorer\". El marc flotant està delimitat per les etiquetes <IFRAME> i </IFRAME>."
-#. UVYwj
+#. eBBPq
#: 04160500.xhp
msgctxt ""
"04160500.xhp\n"
"par_id3151330\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=\"Propietats dels marcs flotants\">Propietats dels marcs flotants</link>"
+msgid "<link href=\"text/shared/01/02210101.xhp\">Floating frame properties</link>"
+msgstr "<link href=\"text/shared/01/02210101.xhp\">Propietats dels marcs flotants</link>"
#. pE38h
#: 04180100.xhp
@@ -15740,14 +15884,14 @@ msgctxt ""
msgid "Data Sources"
msgstr "Fonts de dades"
-#. NpqZF
+#. D2nvF
#: 04180100.xhp
msgctxt ""
"04180100.xhp\n"
"hd_id3156053\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=\"Fonts de dades\">Fonts de dades</link>"
+msgid "<link href=\"text/shared/01/04180100.xhp\">Data Sources</link>"
+msgstr "<link href=\"text/shared/01/04180100.xhp\">Fonts de dades</link>"
#. YA9SQ
#: 04180100.xhp
@@ -15776,23 +15920,23 @@ msgctxt ""
msgid "You can insert fields from a database into your file or you can create forms to access the database."
msgstr "Podeu inserir camps d'una base de dades al fitxer o crear formularis per accedir a la base de dades."
-#. NGJ7B
+#. S3Ew5
#: 04180100.xhp
msgctxt ""
"04180100.xhp\n"
"par_id3156427\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=\"Barra de dades de la taula\">Barra de dades de la taula</link>"
+msgid "<link href=\"text/shared/main0212.xhp\">Table Data bar</link>"
+msgstr "<link href=\"text/shared/main0212.xhp\">Barra de dades de la taula</link>"
-#. LzYvb
+#. EWqqt
#: 04180100.xhp
msgctxt ""
"04180100.xhp\n"
"par_id3153311\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Forms\">Forms</link>"
-msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Formularis\">Formularis</link>"
+msgid "<link href=\"text/shared/02/01170000.xhp\">Forms</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\">Formularis</link>"
#. 6C3hS
#: 04990000.xhp
@@ -15803,14 +15947,14 @@ msgctxt ""
msgid "Media"
msgstr "Multimèdia"
-#. FepyM
+#. fTDJb
#: 04990000.xhp
msgctxt ""
"04990000.xhp\n"
"hd_id3156045\n"
"help.text"
-msgid "<link href=\"text/shared/01/04990000.xhp\" name=\"media\">Media</link>"
-msgstr "<link href=\"text/shared/01/02020000.xhp\" name=\"Restaura\">Restaura</link>"
+msgid "<link href=\"text/shared/01/04990000.xhp\">Media</link>"
+msgstr "<link href=\"text/shared/01/02020000.xhp\">Restaura</link>"
#. YGAMw
#: 04990000.xhp
@@ -15839,14 +15983,14 @@ msgctxt ""
msgid "<bookmark_value>formatting; undoing when writing</bookmark_value><bookmark_value>paragraph;clear direct formatting</bookmark_value><bookmark_value>format;clear direct formatting</bookmark_value><bookmark_value>direct formatting;clear</bookmark_value><bookmark_value>hyperlinks; deleting</bookmark_value><bookmark_value>deleting; hyperlinks</bookmark_value><bookmark_value>cells;resetting formats</bookmark_value>"
msgstr ""
-#. y96Dt
+#. bRXN8
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"hd_id3153391\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=\"Neteja el format directe\">Neteja el format directe</link>"
+msgid "<link href=\"text/shared/01/05010000.xhp\">Clear Direct Formatting</link>"
+msgstr "<link href=\"text/shared/01/05010000.xhp\">Neteja el format directe</link>"
#. 25NkJ
#: 05010000.xhp
@@ -15920,22 +16064,22 @@ msgctxt ""
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\">Modifica el tipus de lletra i la formatació de tipus de lletra dels caràcters seleccionats.</ahelp></variable>"
-#. Ycmxn
+#. hdCpG
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgid "<link href=\"text/shared/01/05020400.xhp\">Hyperlink</link>"
msgstr ""
-#. 3GCPA
+#. YMW57
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"par_id831610541188010\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05130002.xhp\" name=\"Character_Style\">Character Style</link>"
+msgid "<link href=\"text/swriter/01/05130002.xhp\">Character Style</link>"
msgstr ""
#. ruEdb
@@ -15956,14 +16100,14 @@ msgctxt ""
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>languages; spelling</bookmark_value><bookmark_value>characters; enabling CTL and Asian characters</bookmark_value>"
msgstr ""
-#. tYER7
+#. eEAgK
#: 05020100.xhp
msgctxt ""
"05020100.xhp\n"
"hd_id3154812\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=\"Caràcters\">Caràcters</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\" name=\"Tipus de lletra\">Tipus de lletra</link></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\">Characters</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\">Font</link></defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\">Caràcters</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\">Tipus de lletra</link></defaultinline></switchinline>"
#. ABAbR
#: 05020100.xhp
@@ -16145,23 +16289,23 @@ msgctxt ""
msgid "The following buttons appear only for Paragraph Style and Character Style."
msgstr ""
-#. ZqG5G
+#. DfLUe
#: 05020100.xhp
msgctxt ""
"05020100.xhp\n"
"par_id3145364\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=\"Habilitació de llengües asiàtiques\">Habilitació de llengües asiàtiques</link>"
+msgid "<link href=\"text/shared/optionen/01140000.xhp\">Asian languages support</link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\">Habilitació de llengües asiàtiques</link>"
-#. yEggE
+#. qRWA3
#: 05020100.xhp
msgctxt ""
"05020100.xhp\n"
"par_id3147213\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=\"Habilitació de la disposició complexa de text\">Habilitació de la disposició complexa de text</link>"
+msgid "<link href=\"text/shared/optionen/01140000.xhp\">Complex text layout support</link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\">Habilitació de la disposició complexa de text</link>"
#. FC2BQ
#: 05020200.xhp
@@ -16181,14 +16325,14 @@ msgctxt ""
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>tipus de lletra;efectes</bookmark_value><bookmark_value>formatació; efectes dels tipus de lletra</bookmark_value><bookmark_value>caràcters;efectes dels tipus de lletra</bookmark_value><bookmark_value>text; efectes dels tipus de lletra</bookmark_value><bookmark_value>efectes; tipus de lletra</bookmark_value><bookmark_value>subratllat; text</bookmark_value><bookmark_value>majúscules; efectes dels tipus de lletra</bookmark_value><bookmark_value>minúscules; efectes dels tipus de lletra</bookmark_value><bookmark_value>títols; efectes dels tipus de lletra</bookmark_value><bookmark_value>versaletes</bookmark_value><bookmark_value>ratllat; efectes dels tipus de lletra</bookmark_value><bookmark_value>tipus de lletra; ratllat</bookmark_value><bookmark_value>contorns; efectes dels tipus de lletra</bookmark_value><bookmark_value>tipus de lletra; contorns</bookmark_value><bookmark_value>ombres; caràcters</bookmark_value><bookmark_value>tipus de lletra; ombres</bookmark_value><bookmark_value>tipus de lletra; color ignorat</bookmark_value><bookmark_value>colors de tipus de lletra ignorats</bookmark_value><bookmark_value>colors; color de text ignorat</bookmark_value>"
-#. ENsDC
+#. tgLa4
#: 05020200.xhp
msgctxt ""
"05020200.xhp\n"
"hd_id3153514\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=\"Efectes dels tipus de lletra\">Efectes dels tipus de lletra</link>"
+msgid "<link href=\"text/shared/01/05020200.xhp\">Font Effects</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\">Efectes dels tipus de lletra</link>"
#. BGt5t
#: 05020200.xhp
@@ -16253,13 +16397,13 @@ msgctxt ""
msgid "To exit the paint can mode, click once, or press the <emph>Esc</emph> key."
msgstr "Per a eixir del mode d'emplenament, feu un clic o premeu la tecla <emph>Esc</emph>."
-#. MFvGw
+#. XqzQT
#: 05020200.xhp
msgctxt ""
"05020200.xhp\n"
"par_id3150037\n"
"help.text"
-msgid "The text color is ignored when printing, if the <emph>Print text in 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 <emph>Options</emph> dialog box."
+msgid "The text color is ignored when printing, if the <emph>Print text in black</emph> check box is selected in <link href=\"text/shared/optionen/01040400.xhp\"><emph>%PRODUCTNAME Writer - Print</emph></link> in the <emph>Options</emph> dialog box."
msgstr ""
#. tFhVN
@@ -16658,13 +16802,13 @@ msgctxt ""
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>formats; formats numèrics i monetaris</bookmark_value><bookmark_value>formats numèrics; formats</bookmark_value><bookmark_value>monedes; codis de format</bookmark_value><bookmark_value>valors per defecte; formats numèrics</bookmark_value>"
-#. YGEmP
+#. HDxCA
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
"hd_id3162942\n"
"help.text"
-msgid "<variable id=\"NumbersLink\"><link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link></variable>"
+msgid "<variable id=\"NumbersLink\"><link href=\"text/shared/01/05020300.xhp\">Numbers</link></variable>"
msgstr ""
#. z8GFZ
@@ -16676,13 +16820,13 @@ msgctxt ""
msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp></variable>"
msgstr ""
-#. E2nXs
+#. pAt94
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
"hd_id3152942\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers/Format\">Numbers / Format</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Numbers / Format</link>"
msgstr ""
#. CNMbg
@@ -17027,13 +17171,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/numberingformatpage/commented\">Enter a comment for the selected number format, and then click outside this box.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/numberingformatpage/commented\">Introduïu un comentari per al format numèric seleccionat i feu clic a l'exterior d'este quadre.</ahelp>"
-#. cbCBA
+#. jEtKU
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
"par_id3145364\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>: <link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">custom format codes</link> defined by user."
+msgid "<link href=\"text/shared/01/05020301.xhp\">Number format codes</link>: <link href=\"text/shared/01/05020301.xhp\">custom format codes</link> defined by user."
msgstr ""
#. VAMWj
@@ -17054,14 +17198,14 @@ msgctxt ""
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> <bookmark_value>percentages, formats</bookmark_value> <bookmark_value>scientific notation, formats</bookmark_value> <bookmark_value>engineering notation, formats</bookmark_value> <bookmark_value>fraction, formats</bookmark_value> <bookmark_value>native numeral</bookmark_value> <bookmark_value>LCID, extended</bookmark_value>"
msgstr ""
-#. fqAEA
+#. HKUYG
#: 05020301.xhp
msgctxt ""
"05020301.xhp\n"
"hd_id3153514\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=\"Codis de format numèric\">Codis de format numèric</link> </variable>"
+msgid "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\">Number Format Codes</link> </variable>"
+msgstr "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\">Codis de format numèric</link> </variable>"
#. As75i
#: 05020301.xhp
@@ -20753,14 +20897,14 @@ msgctxt ""
msgid "<bookmark_value>formatting; hyperlinks</bookmark_value><bookmark_value>characters; hyperlinks</bookmark_value><bookmark_value>hyperlinks; character formats</bookmark_value><bookmark_value>text;hyperlinks</bookmark_value><bookmark_value>links; character formats</bookmark_value>"
msgstr "<bookmark_value>formatació; enllaços</bookmark_value><bookmark_value>caràcters; enllaços</bookmark_value><bookmark_value>enllaços; formats de caràcters</bookmark_value><bookmark_value>text;enllaços</bookmark_value><bookmark_value>enllaços; formats de caràcters</bookmark_value>"
-#. SP5ME
+#. wHbHQ
#: 05020400.xhp
msgctxt ""
"05020400.xhp\n"
"hd_id3152895\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/shared/01/05020400.xhp\" name=\"Enllaç\">Enllaç</link>"
+msgid "<link href=\"text/shared/01/05020400.xhp\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/01/05020400.xhp\">Enllaç</link>"
#. RRuMa
#: 05020400.xhp
@@ -20771,14 +20915,14 @@ msgctxt ""
msgid "<variable id=\"hyperlinktext\"><ahelp hid=\".uno:InsertHyperlinkDlg\">Assigns a new hyperlink or edits the selected hyperlink.</ahelp></variable> A hyperlink is a link to a file on the Internet or on your local system."
msgstr "<variable id=\"hyperlinktext\"><ahelp hid=\".uno:InsertHyperlinkDlg\">Assigna un enllaç nou o modifica l'enllaç seleccionat.</ahelp></variable> Un enllaç és un vincle cap a un fitxer situat a Internet o al sistema local."
-#. o6FDn
+#. yiH9t
#: 05020400.xhp
msgctxt ""
"05020400.xhp\n"
"par_id3145211\n"
"help.text"
-msgid "You can also assign or edit a named HTML anchor, or <link href=\"text/swriter/01/04040000.xhp\" name=\"Bookmark\">Bookmark</link>, that refers to a specific place in a document."
-msgstr "També podeu assignar o editar una àncora HTML, o una <link href=\"text/swriter/01/04040000.xhp\" name=\"adreça d'interés\">adreça d'interés</link>, que fa referència a un lloc concret d'un document."
+msgid "You can also assign or edit a named HTML anchor, or <link href=\"text/swriter/01/04040000.xhp\">Bookmark</link>, that refers to a specific place in a document."
+msgstr "També podeu assignar o editar una àncora HTML, o una <link href=\"text/swriter/01/04040000.xhp\">adreça d'interés</link>, que fa referència a un lloc concret d'un document."
#. DELTS
#: 05020400.xhp
@@ -20807,14 +20951,14 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. RybA2
+#. Qk3u3
#: 05020400.xhp
msgctxt ""
"05020400.xhp\n"
"par_id3153332\n"
"help.text"
-msgid "<variable id=\"texturl\"><ahelp hid=\"modules/swriter/ui/charurlpage/urled\">Enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> for the file that you want to open when you click the hyperlink.</ahelp> If you do not specify a target frame, the file opens in the current document or frame.</variable>"
-msgstr "<variable id=\"texturl\"><ahelp hid=\"modules/swriter/ui/charurlpage/urled\">Introduïu un <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> per al fitxer que voleu obrir quan feu clic a l'enllaç.</ahelp> Si no indiqueu cap marc de destinació, el fitxer s'obri al document o marc actual. </variable>"
+msgid "<variable id=\"texturl\"><ahelp hid=\"modules/swriter/ui/charurlpage/urled\">Enter a <link href=\"text/shared/00/00000002.xhp#url\">URL</link> for the file that you want to open when you click the hyperlink.</ahelp> If you do not specify a target frame, the file opens in the current document or frame.</variable>"
+msgstr "<variable id=\"texturl\"><ahelp hid=\"modules/swriter/ui/charurlpage/urled\">Introduïu un <link href=\"text/shared/00/00000002.xhp#url\">URL</link> per al fitxer que voleu obrir quan feu clic a l'enllaç.</ahelp> Si no indiqueu cap marc de destinació, el fitxer s'obri al document o marc actual. </variable>"
#. kEEzJ
#: 05020400.xhp
@@ -21041,23 +21185,23 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
msgstr ""
-#. Er7g2
+#. rDAAB
#: 05020400.xhp
msgctxt ""
"05020400.xhp\n"
"par_id3143231\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link>"
-msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Diàleg Enllaç\">Diàleg Enllaç</link>"
+msgid "<link href=\"text/shared/02/09070000.xhp\">Hyperlink dialog</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\">Diàleg Enllaç</link>"
-#. dFmVm
+#. ABeAU
#: 05020400.xhp
msgctxt ""
"05020400.xhp\n"
"par_id3152933\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Assign macro\">Assign macro</link>"
-msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Assigna la macro\">Assigna la macro</link>"
+msgid "<link href=\"text/swriter/01/05060700.xhp\">Assign macro</link>"
+msgstr "<link href=\"text/swriter/01/05060700.xhp\">Assigna la macro</link>"
#. kabbQ
#: 05020500.xhp
@@ -21077,14 +21221,14 @@ msgctxt ""
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>posicionament; tipus de lletra</bookmark_value><bookmark_value>formats; posicions</bookmark_value><bookmark_value>efectes;posicions dels tipus de lletra</bookmark_value><bookmark_value>tipus de lletra; posicions al text</bookmark_value><bookmark_value>espaiat; efectes dels tipus de lletra</bookmark_value><bookmark_value>caràcters; espaiat</bookmark_value><bookmark_value>interlletratge parell</bookmark_value><bookmark_value>interlletratge; en caràcters</bookmark_value><bookmark_value>text; interlletratge</bookmark_value>"
-#. wkW2J
+#. u9gvA
#: 05020500.xhp
msgctxt ""
"05020500.xhp\n"
"hd_id3154841\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=\"Posició del tipus de lletra\">Posició del tipus de lletra</link></caseinline><defaultinline><link href=\"text/shared/01/05020500.xhp\" name=\"Posició\">Posició</link></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/05020500.xhp\">Font Position</link></caseinline><defaultinline><link href=\"text/shared/01/05020500.xhp\">Position</link></defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/05020500.xhp\">Posició del tipus de lletra</link></caseinline><defaultinline><link href=\"text/shared/01/05020500.xhp\">Posició</link></defaultinline></switchinline>"
#. R9U8S
#: 05020500.xhp
@@ -21374,14 +21518,14 @@ msgctxt ""
msgid "To increase the spacing, set a positive value; to reduce it, set a negative value."
msgstr ""
-#. FbHMC
+#. 7ACuv
#: 05020500.xhp
msgctxt ""
"05020500.xhp\n"
"hd_id3154127\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=\"Ajustament de l'interlletratge\">Ajustament de l'interlletratge</link>"
+msgid "<link href=\"text/shared/00/00000005.xhp#kerning\">Pair kerning</link>"
+msgstr "<link href=\"text/shared/00/00000005.xhp#kerning\">Ajustament de l'interlletratge</link>"
#. vxBDh
#: 05020500.xhp
@@ -21419,14 +21563,14 @@ msgctxt ""
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>escriptura de doble línia en la disposició asiàtica</bookmark_value><bookmark_value>formats; disposició asiàtica</bookmark_value><bookmark_value>caràcters; disposició asiàtica</bookmark_value><bookmark_value>text; disposició asiàtica</bookmark_value>"
-#. aAkv5
+#. sEFMx
#: 05020600.xhp
msgctxt ""
"05020600.xhp\n"
"hd_id3156053\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=\"Disposició asiàtica\">Disposició asiàtica</link>"
+msgid "<link href=\"text/shared/01/05020600.xhp\">Asian Layout</link>"
+msgstr "<link href=\"text/shared/01/05020600.xhp\">Disposició asiàtica</link>"
#. wkzR7
#: 05020600.xhp
@@ -21545,14 +21689,14 @@ msgctxt ""
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>tipografia asiàtica</bookmark_value><bookmark_value>formatació; tipografia asiàtica</bookmark_value><bookmark_value>paràgrafs; tipografia asiàtica</bookmark_value><bookmark_value>tipografia; asiàtica</bookmark_value>"
-#. ZBWeA
+#. cgQFy
#: 05020700.xhp
msgctxt ""
"05020700.xhp\n"
"hd_id3155620\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=\"Tipografia asiàtica\">Tipografia asiàtica</link>"
+msgid "<link href=\"text/shared/01/05020700.xhp\">Asian Typography</link>"
+msgstr "<link href=\"text/shared/01/05020700.xhp\">Tipografia asiàtica</link>"
#. 7qAta
#: 05020700.xhp
@@ -21590,14 +21734,14 @@ msgctxt ""
msgid "Apply list of forbidden characters to the beginning and end of line"
msgstr "Aplica la llista de caràcters prohibits a l'inici i al final de línia."
-#. 8JnEU
+#. 2JDnf
#: 05020700.xhp
msgctxt ""
"05020700.xhp\n"
"par_id3153683\n"
"help.text"
-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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - </emph><link href=\"text/shared/optionen/01150100.xhp\" name=\"Asian Layout\"><emph>Asian Layout</emph></link>."
-msgstr "<ahelp hid=\"cui/ui/asiantypography/checkForbidList\">Evita que els caràcters de la llista comencen o acaben una línia. Els caràcters s'ubiquen a la línia anterior o a la següent.</ahelp> Per editar la llista de caràcters restringits, trieu <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - Configuració de la llengua - <link href=\"text/shared/optionen/01150100.xhp\" name=\"Disposició asiàtica\">Disposició asiàtica</link></emph>."
+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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - </emph><link href=\"text/shared/optionen/01150100.xhp\"><emph>Asian Layout</emph></link>."
+msgstr "<ahelp hid=\"cui/ui/asiantypography/checkForbidList\">Evita que els caràcters de la llista comencen o acaben una línia. Els caràcters s'ubiquen a la línia anterior o a la següent.</ahelp> Per editar la llista de caràcters restringits, trieu <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - Configuració de la llengua - <link href=\"text/shared/optionen/01150100.xhp\">Disposició asiàtica</link></emph>."
#. fjYBm
#: 05020700.xhp
@@ -21635,14 +21779,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/asiantypography/checkApplySpacing\">Inserts a space between ideographic and alphabetic text.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/asiantypography/checkApplySpacing\">Insereix un espai entre els texts ideogràfics i els alfabètics.</ahelp>"
-#. HGAr6
+#. Xdv3e
#: 05020700.xhp
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=\"Habilitació de les llengües asiàtiques\">Habilitació de les llengües asiàtiques</link>"
+msgid "<link href=\"text/shared/optionen/01140000.xhp\">Enabling Asian language support</link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\">Habilitació de les llengües asiàtiques</link>"
#. zyX4D
#: 05030000.xhp
@@ -21671,13 +21815,13 @@ msgctxt ""
msgid "<variable id=\"absatztext\"><ahelp hid=\".\">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=\".\">Modifica el format del paràgraf actual, com ara el sagnat i l'alineació.</ahelp></variable> Per a modificar el tipus de lletra del paràgraf actual, seleccioneu tot el paràgraf, trieu Format ▸ Caràcter i feu clic a la pestanya Tipus de lletra."
-#. WTG9S
+#. PvcTF
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
"par_id3156042\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 window</link>.</caseinline></switchinline>"
+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\">Styles window</link>.</caseinline></switchinline>"
msgstr ""
#. 3xcFE
@@ -21698,14 +21842,14 @@ msgctxt ""
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>espaiat; entre els paràgrafs a les notes al peu</bookmark_value><bookmark_value>interlineat; paràgraf</bookmark_value><bookmark_value>espaiat; línies i paràgrafs</bookmark_value><bookmark_value>interlineat simple al text</bookmark_value><bookmark_value>interlineat d'una línia i mitja al text</bookmark_value><bookmark_value>interlineat doble als paràgrafs</bookmark_value><bookmark_value>interlineat addicional entre els paràgrafs</bookmark_value><bookmark_value>paràgrafs; espaiat</bookmark_value>"
-#. 7nXFS
+#. ND9VP
#: 05030100.xhp
msgctxt ""
"05030100.xhp\n"
"hd_id3154689\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=\"Sagnats i espaiat\">Sagnats i espaiat</link>"
+msgid "<link href=\"text/shared/01/05030100.xhp\">Indents and Spacing</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\">Sagnats i espaiat</link>"
#. CfTPu
#: 05030100.xhp
@@ -21725,13 +21869,13 @@ msgctxt ""
msgid "To change the measurement units used in this dialog, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Writer - General</menuitem> , and then select a new measurement unit in the Settings area."
msgstr ""
-#. 4fwpx
+#. 4Jdni
#: 05030100.xhp
msgctxt ""
"05030100.xhp\n"
"par_id3154823\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 <menuitem>View - Ruler</menuitem>."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\">set indents using the ruler</link>. To display the ruler, choose <menuitem>View - Ruler</menuitem>."
msgstr ""
#. JndpY
@@ -22175,13 +22319,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/paraindentspacing/checkCB_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>Use page line-spacing</emph> option for the current page style. Choose <menuitem>Format - Page Style</menuitem>, click on the <emph>Page </emph>tab, and then select the <emph>Use page line-spacing</emph> box in the <emph>Layout settings</emph> section.</ahelp></caseinline></switchinline>"
msgstr ""
-#. qLQP7
+#. SNwP4
#: 05030100.xhp
msgctxt ""
"05030100.xhp\n"
"par_id9267250\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Printing with Page line-spacing</link>"
+msgid "<link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing</link>"
msgstr ""
#. eLFiC
@@ -22202,14 +22346,14 @@ msgctxt ""
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>formats; tabuladors</bookmark_value><bookmark_value>caràcters de farciment amb tabuladors</bookmark_value><bookmark_value>tabuladors; configuració</bookmark_value>"
-#. Xs9do
+#. 7EeZY
#: 05030300.xhp
msgctxt ""
"05030300.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030300.xhp\" name=\"Tabs\">Tabs</link>"
-msgstr "<link href=\"text/shared/01/05030300.xhp\" name=\"Tabuladors\">Tabuladors</link>"
+msgid "<link href=\"text/shared/01/05030300.xhp\">Tabs</link>"
+msgstr "<link href=\"text/shared/01/05030300.xhp\">Tabuladors</link>"
#. DKzwT
#: 05030300.xhp
@@ -22508,14 +22652,14 @@ msgctxt ""
msgid "Borders"
msgstr "Vores"
-#. kZD7z
+#. PGGRP
#: 05030500.xhp
msgctxt ""
"05030500.xhp\n"
"hd_id3154812\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
-msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Vores\">Vores</link>"
+msgid "<link href=\"text/shared/01/05030500.xhp\">Borders</link>"
+msgstr "<link href=\"text/shared/01/05030500.xhp\">Vores</link>"
#. HEcpE
#: 05030500.xhp
@@ -22895,14 +23039,14 @@ msgctxt ""
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>alineació; paràgrafs</bookmark_value><bookmark_value>paràgrafs; alineació</bookmark_value><bookmark_value>línies de text; alineació</bookmark_value><bookmark_value>alineació esquerra dels paràgrafs</bookmark_value><bookmark_value>alineació dreta dels paràgrafs</bookmark_value><bookmark_value>text centrat</bookmark_value><bookmark_value>justificació de text</bookmark_value>"
-#. aJrFk
+#. neioF
#: 05030700.xhp
msgctxt ""
"05030700.xhp\n"
"hd_id3150008\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Alignment\">Alignment</link>"
-msgstr "<link href=\"text/shared/01/05030700.xhp\" name=\"Alineació\">Alineació</link>"
+msgid "<link href=\"text/shared/01/05030700.xhp\">Alignment</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\">Alineació</link>"
#. EYRFX
#: 05030700.xhp
@@ -23048,13 +23192,13 @@ msgctxt ""
msgid "Snap to text grid (if active)"
msgstr "Ajusta a la graella de text (si està activa)"
-#. fDSDg
+#. RDF2f
#: 05030700.xhp
msgctxt ""
"05030700.xhp\n"
"par_id3154331\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/paragalignpage/checkCB_SNAP\">Aligns the paragraph to a text grid. To activate the text grid, choose <link href=\"text/swriter/01/05040800.xhp\" name=\"Format - Page Style - Text Grid\"><emph>Format - Page Style - Text Grid</emph></link>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/paragalignpage/checkCB_SNAP\">Aligns the paragraph to a text grid. To activate the text grid, choose <link href=\"text/swriter/01/05040800.xhp\"><emph>Format - Page Style - Text Grid</emph></link>.</ahelp>"
msgstr ""
#. 8fVGt
@@ -23129,14 +23273,14 @@ msgctxt ""
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>escapçament d'imatges</bookmark_value><bookmark_value>imatges; escapçament i escala</bookmark_value><bookmark_value>escala; imatges</bookmark_value><bookmark_value>escala;imatges</bookmark_value><bookmark_value>mides;imatges</bookmark_value><bookmark_value>mida original; restauració després de l'escapçament</bookmark_value>"
-#. KN9Tx
+#. MCZ5C
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3154044\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030800.xhp\" name=\"Crop\">Crop</link>"
-msgstr "<link href=\"text/shared/01/05030800.xhp\" name=\"Escapça\">Escapça</link>"
+msgid "<link href=\"text/shared/01/05030800.xhp\">Crop</link>"
+msgstr "<link href=\"text/shared/01/05030800.xhp\">Escapça</link>"
#. QFkBW
#: 05030800.xhp
@@ -23417,14 +23561,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. SZdCB
+#. 4DRBX
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\" name=\"Organizer\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\" name=\"Organitzador\">Organitzador</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgstr "<link href=\"text/shared/01/05040100.xhp\">Organitzador</link>"
#. HCNHK
#: 05040100.xhp
@@ -23588,14 +23732,14 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/managestylepage/desc\">Describes the relevant formatting used in the current style.</ahelp>"
msgstr "<ahelp hid=\"sfx/ui/managestylepage/desc\">Descriu la formatació rellevant que s'utilitza a l'estil actual.</ahelp>"
-#. UjGXL
+#. ehsVB
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"par_id3145085\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=\"Actualitza l'estil\">Actualitza l'estil</link>"
+msgid "<link href=\"text/swriter/01/05140000.xhp\">Update Style</link>"
+msgstr "<link href=\"text/swriter/01/05140000.xhp\">Actualitza l'estil</link>"
#. wUCX4
#: 05040200.xhp
@@ -23615,13 +23759,13 @@ msgctxt ""
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><bookmark_value>changing;page size</bookmark_value><bookmark_value>changing;page margins</bookmark_value><bookmark_value>page margins</bookmark_value><bookmark_value>margins;defining</bookmark_value><bookmark_value>page size;defining</bookmark_value>"
msgstr ""
-#. FXKZZ
+#. aVubE
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040200.xhp\" name=\"Page\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Slide</caseinline><defaultinline>Page</defaultinline></switchinline></link>"
+msgid "<link href=\"text/shared/01/05040200.xhp\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Slide</caseinline><defaultinline>Page</defaultinline></switchinline></link>"
msgstr ""
#. bcFN5
@@ -24209,22 +24353,22 @@ msgctxt ""
msgid "<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>"
msgstr ""
-#. AhYsC
+#. FeZ3F
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"par_id3149123\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Changing measurement units\">Changing measurement units</link>"
+msgid "<link href=\"text/shared/00/00000003.xhp#measurement_units\">Changing measurement units</link>"
msgstr ""
-#. BQAVs
+#. 89WT8
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"par_id3153730\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Printing with Page line-spacing (register-true)</link>"
+msgid "<link href=\"text/swriter/guide/registertrue.xhp\">Printing with Page line-spacing (register-true)</link>"
msgstr ""
#. 8CcQd
@@ -24236,14 +24380,14 @@ msgctxt ""
msgid "Header"
msgstr "Capçalera"
-#. hmSc9
+#. PDwvA
#: 05040300.xhp
msgctxt ""
"05040300.xhp\n"
"hd_id3155599\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040300.xhp\" name=\"Header\">Header</link>"
-msgstr "<link href=\"text/shared/01/05040300.xhp\" name=\"Capçalera\">Capçalera</link>"
+msgid "<link href=\"text/shared/01/05040300.xhp\">Header</link>"
+msgstr "<link href=\"text/shared/01/05040300.xhp\">Capçalera</link>"
#. CHjxs
#: 05040300.xhp
@@ -24506,49 +24650,49 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit header text.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afegiu o editeu el text de la capçalera.</ahelp>"
-#. RJzZt
+#. shGNh
#: 05040300.xhp
msgctxt ""
"05040300.xhp\n"
"par_id3145749\n"
"help.text"
-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=\"Afegiu o editeu\">Afegiu o editeu</link> el text de la capçalera.</caseinline></switchinline></ahelp>"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/buttonEdit\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\">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\">Afegiu o editeu</link> el text de la capçalera.</caseinline></switchinline></ahelp>"
-#. C9Ux3
+#. Qwvta
#: 05040300.xhp
msgctxt ""
"05040300.xhp\n"
"par_id3163716\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04220000.xhp\" name=\"Headers\">Headers</link>"
-msgstr "<link href=\"text/swriter/01/04220000.xhp\" name=\"Capçaleres\">Capçaleres</link>"
+msgid "<link href=\"text/swriter/01/04220000.xhp\">Headers</link>"
+msgstr "<link href=\"text/swriter/01/04220000.xhp\">Capçaleres</link>"
-#. G6JD3
+#. jBLD5
#: 05040300.xhp
msgctxt ""
"05040300.xhp\n"
"par_id3150032\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Changing measurement units\">Changing measurement units</link>"
+msgid "<link href=\"text/shared/00/00000003.xhp#measurement_units\">Changing measurement units</link>"
msgstr ""
-#. 2EDA5
+#. 8inkR
#: 05040300.xhp
msgctxt ""
"05040300.xhp\n"
"par_id3150873\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
-msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Vores\">Vores</link>"
+msgid "<link href=\"text/shared/01/05030500.xhp\">Borders</link>"
+msgstr "<link href=\"text/shared/01/05030500.xhp\">Vores</link>"
-#. mctak
+#. DxrBp
#: 05040300.xhp
msgctxt ""
"05040300.xhp\n"
"par_id3147326\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Backgrounds\">Area</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Area</link>"
msgstr ""
#. 7xtR7
@@ -24560,14 +24704,14 @@ msgctxt ""
msgid "Footer"
msgstr "Peu de pàgina"
-#. ib5LP
+#. igD3p
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"hd_id3155620\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040400.xhp\" name=\"Footer\">Footer</link>"
-msgstr "<link href=\"text/shared/01/05040400.xhp\" name=\"Peu de pàgina\">Peu de pàgina</link>"
+msgid "<link href=\"text/shared/01/05040400.xhp\">Footer</link>"
+msgstr "<link href=\"text/shared/01/05040400.xhp\">Peu de pàgina</link>"
#. ah7vE
#: 05040400.xhp
@@ -24830,49 +24974,49 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit footer text.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afegiu o editeu el text del peu de pàgina.</ahelp>"
-#. qCkQe
+#. Yxms8
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"par_id3150439\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=\"Afegiu o editeu el text del peu de pàgina.\">Afegiu o editeu el text del peu de pàgina.</link></caseinline></switchinline></ahelp>"
+msgid "<ahelp hid=\"HID_SC_FOOTER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\">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\">Afegiu o editeu el text del peu de pàgina.</link></caseinline></switchinline></ahelp>"
-#. BZjnP
+#. vFoHW
#: 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=\"Peus de pàgina\">Peus de pàgina</link>"
+msgid "<link href=\"text/swriter/01/04230000.xhp\">Footers</link>"
+msgstr "<link href=\"text/swriter/01/04230000.xhp\">Peus de pàgina</link>"
-#. KppSZ
+#. Gt9fi
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"par_id3155411\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Changing measurement units\">Changing measurement units</link>"
+msgid "<link href=\"text/shared/00/00000003.xhp#measurement_units\">Changing measurement units</link>"
msgstr ""
-#. 7Avg4
+#. metZn
#: 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=\"Vores\">Vores</link>"
+msgid "<link href=\"text/shared/01/05030500.xhp\">Borders</link>"
+msgstr "<link href=\"text/shared/01/05030500.xhp\">Vores</link>"
-#. 4DfxW
+#. f8CiA
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"par_id3152791\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Backgrounds\">Area</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Area</link>"
msgstr ""
#. CgGUH
@@ -24893,14 +25037,14 @@ msgctxt ""
msgid "<bookmark_value>Asian Phonetic Guide</bookmark_value><bookmark_value>phonetic guide</bookmark_value>"
msgstr "<bookmark_value>guia fonètica asiàtica</bookmark_value><bookmark_value>guia fonètica</bookmark_value>"
-#. dZ3kt
+#. NFR5n
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
"hd_id3147527\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\">Guia fonètica asiàtica</link>"
+msgid "<link href=\"text/shared/01/05060000.xhp\">Asian Phonetic Guide</link>"
+msgstr "<link href=\"text/shared/01/05060000.xhp\">Guia fonètica asiàtica</link>"
#. SpxCa
#: 05060000.xhp
@@ -25037,13 +25181,13 @@ msgctxt ""
msgid "Styles"
msgstr "Estils"
-#. NyRLW
+#. UJM7h
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
"par_id3149202\n"
"help.text"
-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 deck of the Sidebar</link></caseinline><defaultinline>Styles deck of the Sidebar</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\">Styles deck of the Sidebar</link></caseinline><defaultinline>Styles deck of the Sidebar</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
msgstr ""
#. MD7GR
@@ -25064,13 +25208,13 @@ msgctxt ""
msgid "<bookmark_value>aligning; objects</bookmark_value><bookmark_value>positioning; objects</bookmark_value><bookmark_value>ordering; objects</bookmark_value>"
msgstr "<bookmark_value>alineació; objectes</bookmark_value><bookmark_value>posicionament; objectes</bookmark_value><bookmark_value>ordenació; objectes</bookmark_value>"
-#. xAmKa
+#. GrJDE
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"hd_id3149987\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Align Objects</link>"
+msgid "<link href=\"text/shared/01/05070000.xhp\">Align Objects</link>"
msgstr ""
#. dFAkA
@@ -25109,14 +25253,14 @@ msgctxt ""
msgid "Align Left"
msgstr "Alinea a l'esquerra"
-#. GpUBk
+#. 5B4AR
#: 05070100.xhp
msgctxt ""
"05070100.xhp\n"
"hd_id3147069\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=\"Alinea a l'esquerra\">Alinea a l'esquerra</link>"
+msgid "<link href=\"text/shared/01/05070100.xhp\">Align Left</link>"
+msgstr "<link href=\"text/shared/01/05070100.xhp\">Alinea a l'esquerra</link>"
#. j3z4Y
#: 05070100.xhp
@@ -25154,14 +25298,14 @@ msgctxt ""
msgid "Center Horizontal"
msgstr "Centra horitzontalment"
-#. XMBLu
+#. pFvba
#: 05070200.xhp
msgctxt ""
"05070200.xhp\n"
"hd_id3150278\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=\"Centra horitzontalment\">Centra horitzontalment</link>"
+msgid "<link href=\"text/shared/01/05070200.xhp\">Center Horizontal</link>"
+msgstr "<link href=\"text/shared/01/05070200.xhp\">Centra horitzontalment</link>"
#. eBarq
#: 05070200.xhp
@@ -25208,14 +25352,14 @@ msgctxt ""
msgid "Align Right"
msgstr "Alinea a la dreta"
-#. EEeDf
+#. CEYwD
#: 05070300.xhp
msgctxt ""
"05070300.xhp\n"
"hd_id3153383\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=\"Alinea a la dreta\">Alinea a la dreta</link>"
+msgid "<link href=\"text/shared/01/05070300.xhp\">Align Right</link>"
+msgstr "<link href=\"text/shared/01/05070300.xhp\">Alinea a la dreta</link>"
#. FXsP3
#: 05070300.xhp
@@ -25244,14 +25388,14 @@ msgctxt ""
msgid "Align Top"
msgstr "Alinea a la part superior"
-#. PTPH2
+#. ooXpY
#: 05070400.xhp
msgctxt ""
"05070400.xhp\n"
"hd_id3160463\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=\"Alinea a la part superior\">Alinea a la part superior</link>"
+msgid "<link href=\"text/shared/01/05070400.xhp\">Align Top</link>"
+msgstr "<link href=\"text/shared/01/05070400.xhp\">Alinea a la part superior</link>"
#. zPAkd
#: 05070400.xhp
@@ -25280,14 +25424,14 @@ msgctxt ""
msgid "Align Vertical Center"
msgstr "Alinea al centre vertical"
-#. hH2Eu
+#. W7Gun
#: 05070500.xhp
msgctxt ""
"05070500.xhp\n"
"hd_id3152876\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=\"Alinea al centre vertical\">Alinea al centre vertical</link>"
+msgid "<link href=\"text/shared/01/05070500.xhp\">Align Vertical Center</link>"
+msgstr "<link href=\"text/shared/01/05070500.xhp\">Alinea al centre vertical</link>"
#. MjCis
#: 05070500.xhp
@@ -25307,14 +25451,14 @@ msgctxt ""
msgid "Align Bottom"
msgstr "Alinea a la part inferior"
-#. 6KynV
+#. U2tFj
#: 05070600.xhp
msgctxt ""
"05070600.xhp\n"
"hd_id3153383\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=\"Alinea a la part inferior\">Alinea a la part inferior</link>"
+msgid "<link href=\"text/shared/01/05070600.xhp\">Align Bottom</link>"
+msgstr "<link href=\"text/shared/01/05070600.xhp\">Alinea a la part inferior</link>"
#. BfAtx
#: 05070600.xhp
@@ -25352,14 +25496,14 @@ msgctxt ""
msgid "<bookmark_value>aligning; text objects</bookmark_value><bookmark_value>text objects; alignment</bookmark_value>"
msgstr "<bookmark_value>alineació; objectes de text</bookmark_value><bookmark_value>objectes de text; alineació</bookmark_value>"
-#. sYxsa
+#. nGr7k
#: 05080000.xhp
msgctxt ""
"05080000.xhp\n"
"hd_id3152942\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=\"Alineació (objectes de text)\">Alineació (objectes de text)</link>"
+msgid "<link href=\"text/shared/01/05080000.xhp\">Alignment (Text Objects)</link>"
+msgstr "<link href=\"text/shared/01/05080000.xhp\">Alineació (objectes de text)</link>"
#. Y4KeX
#: 05080000.xhp
@@ -25379,14 +25523,14 @@ msgctxt ""
msgid "Left"
msgstr "Esquerra"
-#. CfH8H
+#. FUUXV
#: 05080100.xhp
msgctxt ""
"05080100.xhp\n"
"hd_id3154349\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080100.xhp\" name=\"Left\">Left</link>"
-msgstr "<link href=\"text/shared/01/05080100.xhp\" name=\"Esquerra\">Esquerra</link>"
+msgid "<link href=\"text/shared/01/05080100.xhp\">Left</link>"
+msgstr "<link href=\"text/shared/01/05080100.xhp\">Esquerra</link>"
#. w2iLo
#: 05080100.xhp
@@ -25406,14 +25550,14 @@ msgctxt ""
msgid "Right"
msgstr "Dreta"
-#. E7QFw
+#. WEPNR
#: 05080200.xhp
msgctxt ""
"05080200.xhp\n"
"hd_id3160463\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080200.xhp\" name=\"Right\">Right</link>"
-msgstr "<link href=\"text/shared/01/05080200.xhp\" name=\"Dreta\">Dreta</link>"
+msgid "<link href=\"text/shared/01/05080200.xhp\">Right</link>"
+msgstr "<link href=\"text/shared/01/05080200.xhp\">Dreta</link>"
#. MKgG4
#: 05080200.xhp
@@ -25433,14 +25577,14 @@ msgctxt ""
msgid "Center"
msgstr "Centre"
-#. 9DoNC
+#. Q8vEg
#: 05080300.xhp
msgctxt ""
"05080300.xhp\n"
"hd_id3153514\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080300.xhp\" name=\"Center\">Center</link>"
-msgstr "<link href=\"text/shared/01/05080300.xhp\" name=\"Centrada\">Centrada</link>"
+msgid "<link href=\"text/shared/01/05080300.xhp\">Center</link>"
+msgstr "<link href=\"text/shared/01/05080300.xhp\">Centrada</link>"
#. WffDx
#: 05080300.xhp
@@ -25460,14 +25604,14 @@ msgctxt ""
msgid "Justify"
msgstr "Justificada"
-#. ANWuL
+#. v75Fq
#: 05080400.xhp
msgctxt ""
"05080400.xhp\n"
"hd_id3152937\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080400.xhp\" name=\"Justify\">Justify</link>"
-msgstr "<link href=\"text/shared/01/05080400.xhp\" name=\"Justificada\">Justificada</link>"
+msgid "<link href=\"text/shared/01/05080400.xhp\">Justify</link>"
+msgstr "<link href=\"text/shared/01/05080400.xhp\">Justificada</link>"
#. 5NP77
#: 05080400.xhp
@@ -25496,14 +25640,14 @@ msgctxt ""
msgid "<bookmark_value>fonts; text objects</bookmark_value><bookmark_value>text objects; fonts</bookmark_value>"
msgstr "<bookmark_value>tipus de lletra; objectes de text</bookmark_value><bookmark_value>objectes de text; tipus de lletra</bookmark_value>"
-#. amJAf
+#. BErhu
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"hd_id3155271\n"
"help.text"
-msgid "<link href=\"text/shared/01/05090000.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/shared/01/05090000.xhp\" name=\"Tipus de lletra\">Tipus de lletra</link>"
+msgid "<link href=\"text/shared/01/05090000.xhp\">Font</link>"
+msgstr "<link href=\"text/shared/01/05090000.xhp\">Tipus de lletra</link>"
#. BT8e6
#: 05090000.xhp
@@ -25532,14 +25676,14 @@ msgctxt ""
msgid "<bookmark_value>text; font sizes</bookmark_value><bookmark_value>font sizes; text</bookmark_value>"
msgstr "<bookmark_value>text; mida del tipus de lletra</bookmark_value><bookmark_value>mida del tipus de lletra; text</bookmark_value>"
-#. 6ETdw
+#. kVeGv
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"hd_id3153391\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100000.xhp\" name=\"Size\">Size</link>"
-msgstr "<link href=\"text/shared/01/05100000.xhp\" name=\"Mida\">Mida</link>"
+msgid "<link href=\"text/shared/01/05100000.xhp\">Size</link>"
+msgstr "<link href=\"text/shared/01/05100000.xhp\">Mida</link>"
#. LfqbG
#: 05100000.xhp
@@ -25568,13 +25712,13 @@ msgctxt ""
msgid "<bookmark_value>merge/merging cells</bookmark_value>"
msgstr ""
-#. 4qzwA
+#. 2TDVY
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
"hd_id451632377983974\n"
"help.text"
-msgid "<variable id=\"mergecells\"><link href=\"text/shared/01/05100100.xhp\" name=\"Merging Cells without centering\">Merge Cells</link></variable>"
+msgid "<variable id=\"mergecells\"><link href=\"text/shared/01/05100100.xhp\">Merge Cells</link></variable>"
msgstr ""
#. NCP7C
@@ -25667,13 +25811,13 @@ msgctxt ""
msgid "<bookmark_value>unmerge/unmerging cells</bookmark_value><bookmark_value>split/splitting cells</bookmark_value>"
msgstr ""
-#. zDkKt
+#. APBGD
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"hd_id621632385142590\n"
"help.text"
-msgid "<variable id=\"unmergecells\"><link href=\"text/shared/01/05100200.xhp\" name=\"Unmerging Cells\">Unmerge Cells</link></variable>"
+msgid "<variable id=\"unmergecells\"><link href=\"text/shared/01/05100200.xhp\">Unmerge Cells</link></variable>"
msgstr ""
#. vXyfX
@@ -25730,13 +25874,13 @@ msgctxt ""
msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>"
msgstr ""
-#. Tvbae
+#. BpGMp
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"hd_id3154654\n"
"help.text"
-msgid "<variable id=\"splitcells\"><link href=\"text/shared/01/05100200.xhp\" name=\"Splitting Cells\">Split Cells</link></variable>"
+msgid "<variable id=\"splitcells\"><link href=\"text/shared/01/05100200.xhp\">Split Cells</link></variable>"
msgstr ""
#. 3sZ8J
@@ -25865,14 +26009,14 @@ msgctxt ""
msgid "Top"
msgstr "Superior"
-#. UGah8
+#. 8KBX3
#: 05100500.xhp
msgctxt ""
"05100500.xhp\n"
"hd_id3154765\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100500.xhp\" name=\"Top\">Top</link>"
-msgstr "<link href=\"text/shared/01/05100500.xhp\" name=\"Amunt\">Amunt</link>"
+msgid "<link href=\"text/shared/01/05100500.xhp\">Top</link>"
+msgstr "<link href=\"text/shared/01/05100500.xhp\">Amunt</link>"
#. WKvvU
#: 05100500.xhp
@@ -25901,14 +26045,14 @@ msgctxt ""
msgid "Center (vertical)"
msgstr "Centre (vertical)"
-#. w5xJb
+#. mgNiJ
#: 05100600.xhp
msgctxt ""
"05100600.xhp\n"
"hd_id3149874\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=\"Centra verticalment\">Centra verticalment</link>"
+msgid "<link href=\"text/shared/01/05100600.xhp\">Center (vertical)</link>"
+msgstr "<link href=\"text/shared/01/05070200.xhp\">Centra verticalment</link>"
#. bsy28
#: 05100600.xhp
@@ -25937,14 +26081,14 @@ msgctxt ""
msgid "Bottom"
msgstr "Inferior"
-#. eBofW
+#. cJxA7
#: 05100700.xhp
msgctxt ""
"05100700.xhp\n"
"hd_id3150249\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100700.xhp\" name=\"Bottom\">Bottom</link>"
-msgstr "<link href=\"text/shared/01/05100700.xhp\" name=\"Avall\">Avall</link>"
+msgid "<link href=\"text/shared/01/05100700.xhp\">Bottom</link>"
+msgstr "<link href=\"text/shared/01/05100700.xhp\">Avall</link>"
#. Sni9M
#: 05100700.xhp
@@ -25982,14 +26126,14 @@ msgctxt ""
msgid "<bookmark_value>text; font styles</bookmark_value><bookmark_value>fonts; styles</bookmark_value>"
msgstr "<bookmark_value>text; estils de tipus de lletra</bookmark_value><bookmark_value>tipus de lletra; estils</bookmark_value>"
-#. bFbbp
+#. 62jaW
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3147366\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110000.xhp\" name=\"Style\">Style</link>"
-msgstr "<link href=\"text/shared/01/05110000.xhp\" name=\"Estil\">Estil</link>"
+msgid "<link href=\"text/shared/01/05110000.xhp\">Style</link>"
+msgstr "<link href=\"text/shared/01/05110000.xhp\">Estil</link>"
#. HpR29
#: 05110000.xhp
@@ -26027,14 +26171,14 @@ msgctxt ""
msgid "<bookmark_value>text; bold</bookmark_value><bookmark_value>bold; text</bookmark_value><bookmark_value>characters; bold</bookmark_value>"
msgstr "<bookmark_value>text; negreta</bookmark_value><bookmark_value>negreta; text</bookmark_value><bookmark_value>caràcters; negreta</bookmark_value>"
-#. BokYt
+#. hRPDD
#: 05110100.xhp
msgctxt ""
"05110100.xhp\n"
"hd_id3150278\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110100.xhp\" name=\"Bold\">Bold</link>"
-msgstr "<link href=\"text/shared/01/05110100.xhp\" name=\"Negreta\">Negreta</link>"
+msgid "<link href=\"text/shared/01/05110100.xhp\">Bold</link>"
+msgstr "<link href=\"text/shared/01/05110100.xhp\">Negreta</link>"
#. E3deh
#: 05110100.xhp
@@ -26072,14 +26216,14 @@ msgctxt ""
msgid "<bookmark_value>text; italics</bookmark_value><bookmark_value>italic text</bookmark_value><bookmark_value>characters; italics</bookmark_value>"
msgstr "<bookmark_value>text; cursiva</bookmark_value><bookmark_value>text en cursiva</bookmark_value><bookmark_value>caràcters; cursiva</bookmark_value>"
-#. Sbey4
+#. JCEmy
#: 05110200.xhp
msgctxt ""
"05110200.xhp\n"
"hd_id3155182\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110200.xhp\" name=\"Italic\">Italic</link>"
-msgstr "<link href=\"text/shared/01/05110200.xhp\" name=\"Cursiva\">Cursiva</link>"
+msgid "<link href=\"text/shared/01/05110200.xhp\">Italic</link>"
+msgstr "<link href=\"text/shared/01/05110200.xhp\">Cursiva</link>"
#. SG5oY
#: 05110200.xhp
@@ -26117,14 +26261,14 @@ msgctxt ""
msgid "<bookmark_value>characters;underlining</bookmark_value><bookmark_value>underlining;characters</bookmark_value>"
msgstr "<bookmark_value>caràcters;subratllat</bookmark_value><bookmark_value>subratllat;caràcters</bookmark_value>"
-#. KGCnb
+#. gjiBs
#: 05110300.xhp
msgctxt ""
"05110300.xhp\n"
"hd_id3150756\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110300.xhp\" name=\"Underline\">Underline</link>"
-msgstr "<link href=\"text/shared/01/05110300.xhp\" name=\"Subratllat\">Subratllat</link>"
+msgid "<link href=\"text/shared/01/05110300.xhp\">Underline</link>"
+msgstr "<link href=\"text/shared/01/05110300.xhp\">Subratllat</link>"
#. ECBrK
#: 05110300.xhp
@@ -26144,13 +26288,13 @@ msgctxt ""
msgid "If the cursor is not in a word, the new text that you enter is underlined."
msgstr "Si el cursor no es troba en una paraula, se subratlla el text nou que introduïu."
-#. VGYv6
+#. kH7C8
#: 05110300.xhp
msgctxt ""
"05110300.xhp\n"
"hd_id849353401761432\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110300.xhp\" name=\"SingleUnderline\">Single Underline</link>"
+msgid "<link href=\"text/shared/01/05110300.xhp\">Single Underline</link>"
msgstr ""
#. PiPG2
@@ -26162,13 +26306,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Underline\">Underlines the selected text with a single line.</ahelp>"
msgstr ""
-#. ciLxw
+#. aiM4L
#: 05110300.xhp
msgctxt ""
"05110300.xhp\n"
"hd_id949353401761432\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110300.xhp\" name=\"DoubleUnderline\">Double Underline</link>"
+msgid "<link href=\"text/shared/01/05110300.xhp\">Double Underline</link>"
msgstr ""
#. NS8wf
@@ -26198,14 +26342,14 @@ msgctxt ""
msgid "<bookmark_value>strikethrough;characters</bookmark_value>"
msgstr "<bookmark_value>ratllat;caràcters</bookmark_value>"
-#. agpon
+#. i9VeF
#: 05110400.xhp
msgctxt ""
"05110400.xhp\n"
"hd_id3152942\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110400.xhp\" name=\"Strikethrough\">Strikethrough</link>"
-msgstr "<link href=\"text/shared/01/05110400.xhp\" name=\"Ratllat\">Ratllat</link>"
+msgid "<link href=\"text/shared/01/05110400.xhp\">Strikethrough</link>"
+msgstr "<link href=\"text/shared/01/05110400.xhp\">Ratllat</link>"
#. AWFgC
#: 05110400.xhp
@@ -26234,14 +26378,14 @@ msgctxt ""
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>text; ombrejat</bookmark_value><bookmark_value>caràcters; ombrejat</bookmark_value><bookmark_value>ombres;caràcters, mitjançant el menú contextual</bookmark_value>"
-#. typc4
+#. QsBg5
#: 05110500.xhp
msgctxt ""
"05110500.xhp\n"
"hd_id3154545\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110500.xhp\" name=\"Shadows\">Shadows</link>"
-msgstr "<link href=\"text/shared/01/05110500.xhp\" name=\"Ombres\">Ombres</link>"
+msgid "<link href=\"text/shared/01/05110500.xhp\">Shadows</link>"
+msgstr "<link href=\"text/shared/01/05110500.xhp\">Ombres</link>"
#. SCwGx
#: 05110500.xhp
@@ -26270,13 +26414,13 @@ msgctxt ""
msgid "<bookmark_value>table rows;distribute height equally</bookmark_value> <bookmark_value>row height;distribute equally</bookmark_value>"
msgstr ""
-#. 5gEvu
+#. pF7nx
#: 05110600m.xhp
msgctxt ""
"05110600m.xhp\n"
"hd_id3149871\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Distribute Evenly\">Distribute Rows Evenly</link>"
+msgid "<link href=\"text/shared/01/05110600m.xhp\">Distribute Rows Evenly</link>"
msgstr ""
#. Ae4jH
@@ -26306,14 +26450,14 @@ msgctxt ""
msgid "Superscript"
msgstr "Superíndex"
-#. qBNBa
+#. EvvXE
#: 05110700.xhp
msgctxt ""
"05110700.xhp\n"
"hd_id3083278\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110700.xhp\" name=\"Superscript\">Superscript</link>"
-msgstr "<link href=\"text/shared/01/05110700.xhp\" name=\"Superíndex\">Superíndex</link>"
+msgid "<link href=\"text/shared/01/05110700.xhp\">Superscript</link>"
+msgstr "<link href=\"text/shared/01/05110700.xhp\">Superíndex</link>"
#. S7Dnu
#: 05110700.xhp
@@ -26333,14 +26477,14 @@ msgctxt ""
msgid "Subscript"
msgstr "Subíndex"
-#. buCVR
+#. gkEpk
#: 05110800.xhp
msgctxt ""
"05110800.xhp\n"
"hd_id3150278\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110800.xhp\" name=\"Subscript\">Subscript</link>"
-msgstr "<link href=\"text/shared/01/05110800.xhp\" name=\"Subíndex\">Subíndex</link>"
+msgid "<link href=\"text/shared/01/05110800.xhp\">Subscript</link>"
+msgstr "<link href=\"text/shared/01/05110800.xhp\">Subíndex</link>"
#. GAu8D
#: 05110800.xhp
@@ -26369,14 +26513,14 @@ msgctxt ""
msgid "<bookmark_value>line spacing; context menu in paragraphs</bookmark_value><bookmark_value>text; line spacing</bookmark_value>"
msgstr "<bookmark_value>interlineat; menú contextual als paràgrafs</bookmark_value><bookmark_value>text; interlineat</bookmark_value>"
-#. g5Bp9
+#. ghGaq
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"hd_id3152876\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=\"Interlineat\">Interlineat</link>"
+msgid "<link href=\"text/shared/01/05120000.xhp\">Line Spacing</link>"
+msgstr "<link href=\"text/shared/01/05120000.xhp\">Interlineat</link>"
#. 6XMBn
#: 05120000.xhp
@@ -26387,14 +26531,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the amount of space to leave between lines of text in a paragraph.</ahelp>"
msgstr ""
-#. hBX9A
+#. HGXP7
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"par_id3155364\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=\"Sagnats i espaiat\">Sagnats i espaiat</link>"
+msgid "<link href=\"text/shared/01/05030100.xhp\">Indents and Spacing</link>"
+msgstr "<link href=\"text/shared/01/05030100.xhp\">Sagnats i espaiat</link>"
#. GbvHj
#: 05120100.xhp
@@ -26405,14 +26549,14 @@ msgctxt ""
msgid "Single Line"
msgstr "Línia simple"
-#. 2kyoT
+#. jdvVj
#: 05120100.xhp
msgctxt ""
"05120100.xhp\n"
"hd_id3154545\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=\"Interlineat simple\">Interlineat simple</link>"
+msgid "<link href=\"text/shared/01/05120100.xhp\">Single Line</link>"
+msgstr "<link href=\"text/shared/01/05120100.xhp\">Interlineat simple</link>"
#. XqUKK
#: 05120100.xhp
@@ -26432,14 +26576,14 @@ msgctxt ""
msgid "1.5 Lines"
msgstr "1,5 línies"
-#. 7UFUB
+#. SCCee
#: 05120200.xhp
msgctxt ""
"05120200.xhp\n"
"hd_id3152459\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 línies\">1,5 línies</link>"
+msgid "<link href=\"text/shared/01/05120200.xhp\">1.5 Lines</link>"
+msgstr "<link href=\"text/shared/01/05120200.xhp\">1,5 línies</link>"
#. E4SjK
#: 05120200.xhp
@@ -26459,14 +26603,14 @@ msgctxt ""
msgid "Double (Line)"
msgstr "Doble (línia)"
-#. BGhBV
+#. smPdf
#: 05120300.xhp
msgctxt ""
"05120300.xhp\n"
"hd_id3083278\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=\"Doble (línia)\">Doble (línia)</link>"
+msgid "<link href=\"text/shared/01/05120300.xhp\">Double (Line)</link>"
+msgstr "<link href=\"text/shared/01/05120300.xhp\">Doble (línia)</link>"
#. YuY4q
#: 05120300.xhp
@@ -26495,13 +26639,13 @@ msgctxt ""
msgid "<bookmark_value>table columns;distribute columns evenly</bookmark_value> <bookmark_value>column width;distribute evenly</bookmark_value>"
msgstr ""
-#. YcCRp
+#. ZxAPT
#: 05120600.xhp
msgctxt ""
"05120600.xhp\n"
"hd_id3153811\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Distribute Evenly\">Distribute Columns Evenly</link>"
+msgid "<link href=\"text/shared/01/05120600.xhp\">Distribute Columns Evenly</link>"
msgstr ""
#. w2jZV
@@ -26684,31 +26828,31 @@ msgctxt ""
msgid "Lists all custom styles <switchinline select=\"appl\"><caseinline select=\"WRITER\">in the selected style category for</caseinline><caseinline select=\"CALC\">in the selected style category for</caseinline><defaultinline>in</defaultinline></switchinline> the current document. These styles can be overwritten with a new style selection if you want."
msgstr ""
-#. Ey5dK
+#. GG3bS
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id401608258192415\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Calc Styles\">Styles in Calc</link>"
+msgid "<link href=\"text/scalc/01/05100000.xhp\">Styles in Calc</link>"
msgstr ""
-#. whwZY
+#. HBgw9
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id641608263698887\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Impress Styles\">Styles in Impress</link>"
+msgid "<link href=\"text/simpress/01/05100000.xhp\">Styles in Impress</link>"
msgstr ""
-#. CCTFZ
+#. sVA9e
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id641369863698831\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Draw Styles\">Styles</link>"
+msgid "<link href=\"text/simpress/01/05100000.xhp\">Styles</link>"
msgstr ""
#. CJiJX
@@ -26855,22 +26999,22 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter a longer description of the object, especially if the object is too complex or contains too much detail to be described adequately with the short <menuitem>Text Alternative</menuitem>.</ahelp> Use <menuitem>Description</menuitem> to add additional information to the short description found in <menuitem>Text Alternative</menuitem>. This text is available for use by assistive technologies."
msgstr ""
-#. toUVu
+#. S35Kt
#: 05190100.xhp
msgctxt ""
"05190100.xhp\n"
"par_id561653440782428\n"
"help.text"
-msgid "For images, <menuitem>Text Alternative</menuitem> and <menuitem>Description</menuitem> are exported with an appropriate tag in HTML and PDF format (remember to enable the <link href=\"text/shared/01/ref_pdf_export_universal_accessibility.xhp\" name=\"Link to PDF/UA\"><menuitem>Universal Accessibility (PDF/UA)</menuitem></link> option in PDF export)."
+msgid "For images, <menuitem>Text Alternative</menuitem> and <menuitem>Description</menuitem> are exported with an appropriate tag in HTML and PDF format (remember to enable the <link href=\"text/shared/01/ref_pdf_export_universal_accessibility.xhp\"><menuitem>Universal Accessibility (PDF/UA)</menuitem></link> option in PDF export)."
msgstr ""
-#. 5h9FB
+#. E38ne
#: 05190100.xhp
msgctxt ""
"05190100.xhp\n"
"par_id731653238967459\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060900.xhp\" name=\"Options\">Options in Object Properties</link>"
+msgid "<link href=\"text/swriter/01/05060900.xhp\">Options in Object Properties</link>"
msgstr ""
#. ehBwb
@@ -26882,14 +27026,14 @@ msgctxt ""
msgid "Line"
msgstr "Línia"
-#. DngwB
+#. f8EmB
#: 05200000.xhp
msgctxt ""
"05200000.xhp\n"
"hd_id3154350\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Línia\">Línia</link>"
+msgid "<link href=\"text/shared/01/05200000.xhp\">Line</link>"
+msgstr "<link href=\"text/shared/01/05200000.xhp\">Línia</link>"
#. cGWaW
#: 05200000.xhp
@@ -26909,14 +27053,14 @@ msgctxt ""
msgid "Line"
msgstr "Línia"
-#. AM3FY
+#. xpRGy
#: 05200100.xhp
msgctxt ""
"05200100.xhp\n"
"hd_id3148882\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line\">Line</link>"
-msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Línia\">Línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Línia</link>"
#. 2gUm9
#: 05200100.xhp
@@ -27116,14 +27260,14 @@ msgctxt ""
msgid "Arrow styles"
msgstr "Estils de fletxa"
-#. xMzou
+#. kKxNr
#: 05200100.xhp
msgctxt ""
"05200100.xhp\n"
"par_id3161459\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 "Podeu afegir extrems de fletxa a un o als dos extrems de la línia seleccionada. Per afegir un estil de fletxa personalitzat a la llista, seleccioneu la fletxa al document i feu clic a la pestanya <link href=\"text/shared/01/05200300.xhp\" name=\"Estils de fletxa\"><emph>Estils de fletxa</emph></link> d'este diàleg."
+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\"><emph>Arrow Styles</emph></link> tab of this dialog."
+msgstr "Podeu afegir extrems de fletxa a un o als dos extrems de la línia seleccionada. Per afegir un estil de fletxa personalitzat a la llista, seleccioneu la fletxa al document i feu clic a la pestanya <link href=\"text/shared/01/05200300.xhp\"><emph>Estils de fletxa</emph></link> d'este diàleg."
#. jvwvF
#: 05200100.xhp
@@ -27251,14 +27395,14 @@ msgctxt ""
msgid "Line Styles"
msgstr "Estils de línia"
-#. JBbND
+#. 4qd54
#: 05200200.xhp
msgctxt ""
"05200200.xhp\n"
"hd_id3148919\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=\"Estils de línia\">Estils de línia</link>"
+msgid "<link href=\"text/shared/01/05200200.xhp\">Line Styles</link>"
+msgstr "<link href=\"text/shared/01/05200200.xhp\">Estils de línia</link>"
#. AapDp
#: 05200200.xhp
@@ -27467,14 +27611,14 @@ msgctxt ""
msgid "Arrow Styles"
msgstr "Estils de fletxa"
-#. 5BDow
+#. RBSUC
#: 05200300.xhp
msgctxt ""
"05200300.xhp\n"
"hd_id3156045\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=\"Estils de fletxa\">Estils de fletxa</link>"
+msgid "<link href=\"text/shared/01/05200300.xhp\">Arrow Styles</link>"
+msgstr "<link href=\"text/shared/01/05200300.xhp\">Estils de fletxa</link>"
#. s86vc
#: 05200300.xhp
@@ -27485,13 +27629,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/lineendstabpage/LineEndPage\">Edit or create arrow styles.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/lineendstabpage/LineEndPage\">Editeu o creeu estils de fletxa.</ahelp>"
-#. aCyvx
+#. B8DFA
#: 05200300.xhp
msgctxt ""
"05200300.xhp\n"
"par_id711654765705735\n"
"help.text"
-msgid "You can add arrow styles to the start or end of a line using the <link href=\"text/shared/01/05200100.xhp\" name=\"Line tab\"><menuitem>Line</menuitem></link> tab of the <menuitem>Line</menuitem> dialog."
+msgid "You can add arrow styles to the start or end of a line using the <link href=\"text/shared/01/05200100.xhp\"><menuitem>Line</menuitem></link> tab of the <menuitem>Line</menuitem> dialog."
msgstr ""
#. FLeSj
@@ -27629,14 +27773,14 @@ msgctxt ""
msgid "Area window"
msgstr "Finestra Àrea"
-#. AKnrv
+#. jHAks
#: 05210000.xhp
msgctxt ""
"05210000.xhp\n"
"hd_id3085157\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Àrea\">Àrea</link>"
+msgid "<link href=\"text/shared/01/05210000.xhp\">Area</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\">Àrea</link>"
#. ZEoKv
#: 05210000.xhp
@@ -27665,13 +27809,13 @@ msgctxt ""
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><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 ""
-#. VGQD4
+#. X3JAC
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"hd_id3145759\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Area</caseinline><defaultinline>Background</defaultinline></switchinline></link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Area</caseinline><defaultinline>Background</defaultinline></switchinline></link>"
msgstr ""
#. ubruG
@@ -27710,14 +27854,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/btnnone\">Do not fill the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/btnnone\">No ompli l'objecte seleccionat.</ahelp>"
-#. 58oAC
+#. 3EDuF
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"hd_id3144438\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210300.xhp\" name=\"Gradient\">Gradient</link>"
-msgstr "<link href=\"text/shared/01/05210300.xhp\" name=\"Degradat\">Degradat</link>"
+msgid "<link href=\"text/shared/01/05210300.xhp\">Gradient</link>"
+msgstr "<link href=\"text/shared/01/05210300.xhp\">Degradat</link>"
#. jFoGv
#: 05210100.xhp
@@ -27728,13 +27872,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/btngradient\">Fills the object with a gradient selected on this page.</ahelp>"
msgstr ""
-#. ydNTt
+#. zE5v4
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"hd_id3154047\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210400.xhp\" name=\"Hatch\">Hatch</link>"
+msgid "<link href=\"text/shared/01/05210400.xhp\">Hatch</link>"
msgstr ""
#. uBWuP
@@ -27782,14 +27926,14 @@ msgctxt ""
msgid "<bookmark_value>colors;palette</bookmark_value><bookmark_value>palette;document colors</bookmark_value><bookmark_value>colors;adding</bookmark_value><bookmark_value>colors;delete</bookmark_value><bookmark_value>document colors;palette</bookmark_value>"
msgstr ""
-#. vay4k
+#. VEjAo
#: 05210200.xhp
msgctxt ""
"05210200.xhp\n"
"hd_id681578759272545\n"
"help.text"
-msgid "<variable id=\"colorpageh1\"><link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link></variable>"
-msgstr "<variable id=\"colorpageh1\"><link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link></variable>"
+msgid "<variable id=\"colorpageh1\"><link href=\"text/shared/01/05210200.xhp\">Colors</link></variable>"
+msgstr "<variable id=\"colorpageh1\"><link href=\"text/shared/01/05210200.xhp\">Colors</link></variable>"
#. QfPqQ
#: 05210200.xhp
@@ -27989,13 +28133,13 @@ msgctxt ""
msgid "Pick"
msgstr ""
-#. oVvDT
+#. 5GD3G
#: 05210200.xhp
msgctxt ""
"05210200.xhp\n"
"par_id131578758826856\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker\">color picker dialog</link> for a graphical selection of the desired color."
+msgid "Opens the <link href=\"text/shared/optionen/01010501.xhp\">color picker dialog</link> for a graphical selection of the desired color."
msgstr ""
#. bdrRA
@@ -28007,14 +28151,14 @@ msgctxt ""
msgid "Gradient"
msgstr ""
-#. BSymY
+#. EcqJK
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
"hd_id3145356\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210300.xhp\" name=\"Gradients\">Gradients</link>"
-msgstr "<link href=\"text/shared/01/05210300.xhp\" name=\"Degradats\">Degradats</link>"
+msgid "<link href=\"text/shared/01/05210300.xhp\">Gradients</link>"
+msgstr "<link href=\"text/shared/01/05210300.xhp\">Degradats</link>"
#. NYyR5
#: 05210300.xhp
@@ -28268,13 +28412,13 @@ msgctxt ""
msgid "<bookmark_value>hatching</bookmark_value><bookmark_value>areas; hatched/dotted</bookmark_value><bookmark_value>dotted areas</bookmark_value>"
msgstr "<bookmark_value>ombreig</bookmark_value><bookmark_value>àrees; ombrejades/puntejades</bookmark_value><bookmark_value>àrees puntejades</bookmark_value>"
-#. JLC9v
+#. 4NjxW
#: 05210400.xhp
msgctxt ""
"05210400.xhp\n"
"hd_id3149962\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210400.xhp\" name=\"Hatching\">Hatch</link>"
+msgid "<link href=\"text/shared/01/05210400.xhp\">Hatch</link>"
msgstr ""
#. MgSvL
@@ -28475,13 +28619,13 @@ msgctxt ""
msgid "<bookmark_value>images; areas</bookmark_value><bookmark_value>areas; image</bookmark_value>"
msgstr ""
-#. EXFDE
+#. YhG5K
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"hd_id3155619\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210500.xhp\" name=\"Image\">Image</link>"
+msgid "<link href=\"text/shared/01/05210500.xhp\">Image</link>"
msgstr ""
#. AAzK8
@@ -28718,14 +28862,14 @@ msgctxt ""
msgid "<bookmark_value>areas; shadows</bookmark_value><bookmark_value>shadows; areas</bookmark_value>"
msgstr "<bookmark_value>àrees; ombres</bookmark_value><bookmark_value>ombres; àrees</bookmark_value>"
-#. cK95v
+#. ALAk5
#: 05210600.xhp
msgctxt ""
"05210600.xhp\n"
"hd_id3150014\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
-msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Ombra\">Ombra</link>"
+msgid "<link href=\"text/shared/01/05210600.xhp\">Shadow</link>"
+msgstr "<link href=\"text/shared/01/05210600.xhp\">Ombra</link>"
#. oCVLD
#: 05210600.xhp
@@ -28898,14 +29042,14 @@ msgctxt ""
msgid "<bookmark_value>transparency;areas</bookmark_value><bookmark_value>areas; transparency</bookmark_value>"
msgstr "<bookmark_value>transparència;àrees</bookmark_value><bookmark_value>àrees; transparència</bookmark_value>"
-#. 8WKMj
+#. TqbGJ
#: 05210700.xhp
msgctxt ""
"05210700.xhp\n"
"hd_id3146807\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210700.xhp\" name=\"Transparency\">Transparency</link>"
-msgstr "<link href=\"text/shared/01/05210700.xhp\" name=\"Transparència\">Transparència</link>"
+msgid "<link href=\"text/shared/01/05210700.xhp\">Transparency</link>"
+msgstr "<link href=\"text/shared/01/05210700.xhp\">Transparència</link>"
#. EnRaP
#: 05210700.xhp
@@ -29168,13 +29312,13 @@ msgctxt ""
msgid "<bookmark_value>pattern;area</bookmark_value><bookmark_value>pattern;background</bookmark_value><bookmark_value>background;pattern</bookmark_value><bookmark_value>background;area</bookmark_value>"
msgstr ""
-#. S8BBE
+#. nnBFf
#: 05210800.xhp
msgctxt ""
"05210800.xhp\n"
"hd_id801592861657875\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210800.xhp\" name=\"pattern\">Pattern</link>"
+msgid "<link href=\"text/shared/01/05210800.xhp\">Pattern</link>"
msgstr ""
#. qLwKU
@@ -29339,14 +29483,14 @@ msgctxt ""
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>text; objectes de text o de dibuix </bookmark_value><bookmark_value>objectes de dibuix; text en</bookmark_value><bookmark_value>marcs; ajustament del text als marcs</bookmark_value>"
-#. UEuLi
+#. HXhA2
#: 05220000.xhp
msgctxt ""
"05220000.xhp\n"
"hd_id3146856\n"
"help.text"
-msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
+msgid "<link href=\"text/shared/01/05220000.xhp\">Text</link>"
+msgstr "<link href=\"text/shared/01/05220000.xhp\">Text</link>"
#. cBEMC
#: 05220000.xhp
@@ -29645,14 +29789,14 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posició i mida"
-#. TfU36
+#. FG7xt
#: 05230000.xhp
msgctxt ""
"05230000.xhp\n"
"hd_id3152790\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=\"Posició i mida\">Posició i mida</link>"
+msgid "<link href=\"text/shared/01/05230000.xhp\">Position and Size</link>"
+msgstr "<link href=\"text/shared/01/05230000.xhp\">Posició i mida</link>"
#. L9FAk
#: 05230000.xhp
@@ -29681,14 +29825,14 @@ msgctxt ""
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 ""
-#. p36co
+#. DAtfB
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"hd_id3154350\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=\"Posició i mida\">Posició i mida</link>"
+msgid "<link href=\"text/shared/01/05230100.xhp\">Position and Size</link>"
+msgstr "<link href=\"text/shared/01/05230100.xhp\">Posició i mida</link>"
#. RW2Aj
#: 05230100.xhp
@@ -30077,31 +30221,31 @@ msgctxt ""
msgid "Adapt is only available for Text Boxes. To adapt Shapes to text, use <menuitem>Format - Text</menuitem>."
msgstr ""
-#. F5Va7
+#. FvuJn
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id3145606\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Anchor types\">Positioning Objects</link>"
+msgid "<link href=\"text/swriter/guide/anchor_object.xhp\">Positioning Objects</link>"
msgstr ""
-#. jswWJ
+#. wT2dE
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id31456062468\n"
"help.text"
-msgid "<link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link>"
+msgid "<link href=\"text/sdraw/guide/rotate_object.xhp\">Rotating Objects</link>"
msgstr ""
-#. NxdaT
+#. Vuc3r
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id3145624967\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230300.xhp\" name=\"Rotation\">Rotation</link>"
+msgid "<link href=\"text/shared/01/05230300.xhp\">Rotation</link>"
msgstr ""
#. UuCyG
@@ -30113,14 +30257,14 @@ msgctxt ""
msgid "Rotation"
msgstr "Gir"
-#. GKREV
+#. QDAJU
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3149741\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230300.xhp\" name=\"Rotation\">Rotation</link>"
-msgstr "<link href=\"text/shared/01/05230300.xhp\" name=\"Gir\">Gir</link>"
+msgid "<link href=\"text/shared/01/05230300.xhp\">Rotation</link>"
+msgstr "<link href=\"text/shared/01/05230300.xhp\">Gir</link>"
#. uXUXL
#: 05230300.xhp
@@ -30284,14 +30428,14 @@ msgctxt ""
msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value><bookmark_value>shapes; control points</bookmark_value><bookmark_value>draw objects; control points</bookmark_value>"
msgstr ""
-#. DxadW
+#. RXJV9
#: 05230400.xhp
msgctxt ""
"05230400.xhp\n"
"hd_id3149988\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=\"Inclinació i radi de la cantonada\">Inclinació i radi de la cantonada</link>"
+msgid "<link href=\"text/shared/01/05230400.xhp\">Slant & Corner Radius</link>"
+msgstr "<link href=\"text/shared/01/05230400.xhp\">Inclinació i radi de la cantonada</link>"
#. Qvkuj
#: 05230400.xhp
@@ -30428,14 +30572,14 @@ msgctxt ""
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>llegendes; objectes de dibuix</bookmark_value><bookmark_value>objectes de dibuix; llegendes</bookmark_value><bookmark_value>etiquetes;per a objectes de dibuix</bookmark_value><bookmark_value>etiquetes, vegeu també noms/llegendes</bookmark_value><bookmark_value>llegendes, vegeu també etiquetes/llegendes</bookmark_value><bookmark_value>noms, vegeu també etiquetes/llegendes</bookmark_value>"
-#. Nmn3U
+#. DiMuK
#: 05230500.xhp
msgctxt ""
"05230500.xhp\n"
"hd_id3149038\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230500.xhp\" name=\"Callout\">Callout</link>"
-msgstr "<link href=\"text/shared/01/05230500.xhp\" name=\"Llegenda\">Llegenda</link>"
+msgid "<link href=\"text/shared/01/05230500.xhp\">Callout</link>"
+msgstr "<link href=\"text/shared/01/05230500.xhp\">Llegenda</link>"
#. UwQ8D
#: 05230500.xhp
@@ -30572,14 +30716,14 @@ msgctxt ""
msgid "<bookmark_value>draw objects; flipping</bookmark_value><bookmark_value>flipping draw objects</bookmark_value>"
msgstr "<bookmark_value>objectes de dibuix; inversió</bookmark_value><bookmark_value>inversió d'objectes de dibuix</bookmark_value>"
-#. 8FRPx
+#. WxBHC
#: 05240000.xhp
msgctxt ""
"05240000.xhp\n"
"hd_id3151264\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240000.xhp\" name=\"Flip\">Flip</link>"
-msgstr "<link href=\"text/shared/01/05240000.xhp\" name=\"Inverteix\">Inverteix</link>"
+msgid "<link href=\"text/shared/01/05240000.xhp\">Flip</link>"
+msgstr "<link href=\"text/shared/01/05240000.xhp\">Inverteix</link>"
#. NauBa
#: 05240000.xhp
@@ -30599,14 +30743,14 @@ msgctxt ""
msgid "Vertically"
msgstr "Vertical"
-#. 6h8C2
+#. XuYuF
#: 05240100.xhp
msgctxt ""
"05240100.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240100.xhp\" name=\"Vertically\">Vertically</link>"
-msgstr "<link href=\"text/shared/01/05240100.xhp\" name=\"Verticalment\">Verticalment</link>"
+msgid "<link href=\"text/shared/01/05240100.xhp\">Vertically</link>"
+msgstr "<link href=\"text/shared/01/05240100.xhp\">Verticalment</link>"
#. fy9eJ
#: 05240100.xhp
@@ -30626,14 +30770,14 @@ msgctxt ""
msgid "Horizontally"
msgstr "Horitzontal"
-#. gDSQC
+#. 7UGmb
#: 05240200.xhp
msgctxt ""
"05240200.xhp\n"
"hd_id3147543\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240200.xhp\" name=\"Horizontally\">Horizontally</link>"
-msgstr "<link href=\"text/shared/01/05240200.xhp\" name=\"Horitzontalment\">Horitzontalment</link>"
+msgid "<link href=\"text/shared/01/05240200.xhp\">Horizontally</link>"
+msgstr "<link href=\"text/shared/01/05240200.xhp\">Horitzontalment</link>"
#. YqcCi
#: 05240200.xhp
@@ -30662,14 +30806,14 @@ msgctxt ""
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>objectes; organització en piles</bookmark_value><bookmark_value>organització; objectes</bookmark_value><bookmark_value>vores; organització</bookmark_value><bookmark_value>imatges; organització en piles</bookmark_value><bookmark_value>objectes de dibuix; organització en piles</bookmark_value><bookmark_value>controls; organització en piles</bookmark_value><bookmark_value>objectes OLE; organització en piles</bookmark_value><bookmark_value>diagrames; organització en piles</bookmark_value><bookmark_value>organització en capes</bookmark_value><bookmark_value>nivells; escalonament de la profunditat</bookmark_value><bookmark_value>escalonament de la profunditat</bookmark_value>"
-#. tMMEN
+#. PAiAz
#: 05250000.xhp
msgctxt ""
"05250000.xhp\n"
"hd_id3152427\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=\"Organització d'objectes\">Organitza</link>"
+msgid "<link href=\"text/shared/01/05250000.xhp\">Arrange</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\">Organitza</link>"
#. 5XqtC
#: 05250000.xhp
@@ -30707,14 +30851,14 @@ msgctxt ""
msgid "Bring to Front"
msgstr "Porta al davant"
-#. HgZyG
+#. GNohx
#: 05250100.xhp
msgctxt ""
"05250100.xhp\n"
"hd_id3154044\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=\"Porta al davant\">Porta al davant</link>"
+msgid "<link href=\"text/shared/01/05250100.xhp\">Bring to Front</link>"
+msgstr "<link href=\"text/shared/01/05250100.xhp\">Porta al davant</link>"
#. CjaFn
#: 05250100.xhp
@@ -30725,14 +30869,14 @@ msgctxt ""
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\">Mou l'objecte seleccionat al principi de l'orde d'apilament, de manera que quede davant de la resta d'objectes.</ahelp>"
-#. 97xBK
+#. DESy9
#: 05250100.xhp
msgctxt ""
"05250100.xhp\n"
"par_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Capa\">Capa</link>"
+msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\">Capa</link>"
#. bEzE2
#: 05250200.xhp
@@ -30743,14 +30887,14 @@ msgctxt ""
msgid "Bring Forward"
msgstr "Envia cap avant"
-#. C4EtB
+#. tVGu3
#: 05250200.xhp
msgctxt ""
"05250200.xhp\n"
"hd_id3152790\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=\"Envia cap avant\">Envia cap avant</link>"
+msgid "<link href=\"text/shared/01/05250200.xhp\">Bring Forward </link>"
+msgstr "<link href=\"text/shared/01/05250200.xhp\">Envia cap avant</link>"
#. 6besX
#: 05250200.xhp
@@ -30761,14 +30905,14 @@ msgctxt ""
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=\".\">Mou l'objecte seleccionat un nivell cap amunt, de manera que quede més a prop de la part superior de l'orde d'apilament.</ahelp>"
-#. rMtfn
+#. xDgPN
#: 05250200.xhp
msgctxt ""
"05250200.xhp\n"
"par_id3149495\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Capa\">Capa</link>"
+msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\">Capa</link>"
#. vFjiJ
#: 05250300.xhp
@@ -30779,14 +30923,14 @@ msgctxt ""
msgid "Send Backward"
msgstr "Envia cap arrere"
-#. Ev8mv
+#. bZzyD
#: 05250300.xhp
msgctxt ""
"05250300.xhp\n"
"hd_id3150146\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=\"Envia cap arrere\">Envia cap arrere</link>"
+msgid "<link href=\"text/shared/01/05250300.xhp\">Send Backward</link>"
+msgstr "<link href=\"text/shared/01/05250300.xhp\">Envia cap arrere</link>"
#. 7VUrQ
#: 05250300.xhp
@@ -30797,14 +30941,14 @@ msgctxt ""
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=\".\">Mou l'objecte seleccionat un nivell cap avall, de manera que quede més a prop de la part inferior de l'orde d'apilament.</ahelp>"
-#. wm4aA
+#. GE5C6
#: 05250300.xhp
msgctxt ""
"05250300.xhp\n"
"par_id3150445\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Capa\">Capa</link>"
+msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\">Capa</link>"
#. mHSzG
#: 05250400.xhp
@@ -30815,14 +30959,14 @@ msgctxt ""
msgid "Send to Back"
msgstr "Envia al fons"
-#. FAaT8
+#. ky3PT
#: 05250400.xhp
msgctxt ""
"05250400.xhp\n"
"hd_id3155620\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=\"Envia al fons\">Envia al fons</link>"
+msgid "<link href=\"text/shared/01/05250400.xhp\">Send to Back</link>"
+msgstr "<link href=\"text/shared/01/05250400.xhp\">Envia al fons</link>"
#. H28NG
#: 05250400.xhp
@@ -30833,14 +30977,14 @@ msgctxt ""
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\">Mou l'objecte seleccionat a darrere de l'orde d'apilament, de manera que quede darrere de la resta d'objectes.</ahelp>"
-#. LDp2i
+#. AjCjz
#: 05250400.xhp
msgctxt ""
"05250400.xhp\n"
"par_id3152895\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Capa\">Capa</link>"
+msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\">Capa</link>"
#. LkGPC
#: 05250500.xhp
@@ -30851,14 +30995,14 @@ msgctxt ""
msgid "To Foreground"
msgstr "Al primer pla"
-#. NDnSk
+#. 2FgCA
#: 05250500.xhp
msgctxt ""
"05250500.xhp\n"
"hd_id3150278\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=\"Al primer pla\">Al primer pla</link></variable>"
+msgid "<variable id=\"foreground\"><link href=\"text/shared/01/05250500.xhp\">To Foreground</link></variable>"
+msgstr "<variable id=\"foreground\"><link href=\"text/shared/01/05250500.xhp\">Al primer pla</link></variable>"
#. fUfA4
#: 05250500.xhp
@@ -30869,14 +31013,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:SetObjectToForeground\">Moves the selected object in front of text.</ahelp>"
msgstr "<ahelp hid=\".uno:SetObjectToForeground\">Mou l'objecte seleccionat davant del text.</ahelp>"
-#. SvZnB
+#. KMKwb
#: 05250500.xhp
msgctxt ""
"05250500.xhp\n"
"par_id3147000\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Capa\">Capa</link>"
+msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\">Capa</link>"
#. KT8sS
#: 05250600.xhp
@@ -30887,14 +31031,14 @@ msgctxt ""
msgid "To Background"
msgstr "Al fons"
-#. yWoaU
+#. tbzkJ
#: 05250600.xhp
msgctxt ""
"05250600.xhp\n"
"hd_id3146959\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=\"Al fons\">Al fons</link></variable>"
+msgid "<variable id=\"background\"><link href=\"text/shared/01/05250600.xhp\">To Background</link></variable>"
+msgstr "<variable id=\"background\"><link href=\"text/shared/01/05250600.xhp\">Al fons</link></variable>"
#. PUHDM
#: 05250600.xhp
@@ -30905,14 +31049,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:SetObjectToBackground\">Moves the selected object behind text.</ahelp>"
msgstr "<ahelp hid=\".uno:SetObjectToBackground\">Mou l'objecte seleccionat darrere del text.</ahelp>"
-#. 3pUmV
+#. QhX6c
#: 05250600.xhp
msgctxt ""
"05250600.xhp\n"
"par_id3148731\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Capa\">Capa</link>"
+msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
+msgstr "<link href=\"text/shared/01/05250000.xhp\">Capa</link>"
#. rBWfF
#: 05260000.xhp
@@ -30923,13 +31067,13 @@ msgctxt ""
msgid "Anchor"
msgstr "Ancora"
-#. jomkE
+#. hDDvA
#: 05260000.xhp
msgctxt ""
"05260000.xhp\n"
"hd_id3155913\n"
"help.text"
-msgid "<variable id=\"anchorh1\"><link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\">Anchor</link></variable>"
+msgid "<variable id=\"anchorh1\"><link href=\"text/shared/01/05260000.xhp\">Anchor</link></variable>"
msgstr ""
#. PMQ8n
@@ -30959,14 +31103,14 @@ msgctxt ""
msgid "To Page"
msgstr "A la pàgina"
-#. gGh5R
+#. DJ6DX
#: 05260100.xhp
msgctxt ""
"05260100.xhp\n"
"hd_id3150278\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=\"A la pàgina\">A la pàgina</link>"
+msgid "<link href=\"text/shared/01/05260100.xhp\">To Page</link>"
+msgstr "<link href=\"text/shared/01/05260100.xhp\">A la pàgina</link>"
#. 4FEeX
#: 05260100.xhp
@@ -31022,14 +31166,14 @@ msgctxt ""
msgid "To Paragraph"
msgstr "Al paràgraf"
-#. 8njsr
+#. BE9BX
#: 05260200.xhp
msgctxt ""
"05260200.xhp\n"
"hd_id3151260\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=\"Al paràgraf\">Al paràgraf</link>"
+msgid "<link href=\"text/shared/01/05260200.xhp\">To Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05260200.xhp\">Al paràgraf</link>"
#. BJCWw
#: 05260200.xhp
@@ -31076,14 +31220,14 @@ msgctxt ""
msgid "To Character"
msgstr "Al caràcter"
-#. EQY5U
+#. qQTCn
#: 05260300.xhp
msgctxt ""
"05260300.xhp\n"
"hd_id3154044\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=\"Al caràcter\">Al caràcter</link>"
+msgid "<link href=\"text/shared/01/05260300.xhp\">To Character</link>"
+msgstr "<link href=\"text/shared/01/05260300.xhp\">Al caràcter</link>"
#. sxXLc
#: 05260300.xhp
@@ -31130,14 +31274,14 @@ msgctxt ""
msgid "To Cell"
msgstr "A la cel·la"
-#. MeShn
+#. ywVkQ
#: 05260400.xhp
msgctxt ""
"05260400.xhp\n"
"hd_id3147212\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=\"A la cel·la\">A la cel·la</link>"
+msgid "<link href=\"text/shared/01/05260400.xhp\">To Cell</link>"
+msgstr "<link href=\"text/shared/01/05260400.xhp\">A la cel·la</link>"
#. B9AGv
#: 05260400.xhp
@@ -31157,14 +31301,14 @@ msgctxt ""
msgid "To Frame"
msgstr "Al marc"
-#. skzTC
+#. XuXbj
#: 05260500.xhp
msgctxt ""
"05260500.xhp\n"
"hd_id3149991\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=\"Al marc\">Al marc</link>"
+msgid "<link href=\"text/shared/01/05260500.xhp\">To Frame</link>"
+msgstr "<link href=\"text/shared/01/05260500.xhp\">Al marc</link>"
#. tdWAR
#: 05260500.xhp
@@ -31184,14 +31328,14 @@ msgctxt ""
msgid "As Character"
msgstr "Com a caràcter"
-#. RgVjA
+#. GCBMC
#: 05260600.xhp
msgctxt ""
"05260600.xhp\n"
"hd_id3154621\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=\"Com a caràcter\">Com a caràcter</link>"
+msgid "<link href=\"text/shared/01/05260600.xhp\">As Character</link>"
+msgstr "<link href=\"text/shared/01/05260600.xhp\">Com a caràcter</link>"
#. fUwJp
#: 05260600.xhp
@@ -31211,14 +31355,14 @@ msgctxt ""
msgid "Edit Points"
msgstr "Edita els punts"
-#. E9MwB
+#. Dksfe
#: 05270000.xhp
msgctxt ""
"05270000.xhp\n"
"hd_id3155271\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=\"Edita els punts\">Edita els punts</link>"
+msgid "<link href=\"text/shared/01/05270000.xhp\">Edit Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\">Edita els punts</link>"
#. TfQA6
#: 05270000.xhp
@@ -31238,14 +31382,14 @@ msgctxt ""
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 "Per editar la forma de l'objecte de dibuix seleccionat, feu clic a la icona <emph>Punts</emph> de la barra <emph>Dibuix</emph> i, a continuació, arrossegueu un dels punts de l'objecte."
-#. mfTH3
+#. 9RP7q
#: 05270000.xhp
msgctxt ""
"05270000.xhp\n"
"par_id3093440\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=\"Barra Edita els punts\">Barra Edita els punts</link>"
+msgid "<link href=\"text/shared/main0227.xhp\">Edit Points Bar</link>"
+msgstr "<link href=\"text/shared/main0227.xhp\">Barra Edita els punts</link>"
#. XDXXq
#: 05280000.xhp
@@ -31256,13 +31400,13 @@ msgctxt ""
msgid "Fontwork"
msgstr "Fontwork"
-#. TCGqk
+#. JAPDz
#: 05280000.xhp
msgctxt ""
"05280000.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<variable id=\"fntwrk\"><link href=\"text/shared/01/05280000.xhp\" name=\"FontWork\">Fontwork Dialog (for putting text along a curve)</link></variable>"
+msgid "<variable id=\"fntwrk\"><link href=\"text/shared/01/05280000.xhp\">Fontwork Dialog (for putting text along a curve)</link></variable>"
msgstr ""
#. EF8Ai
@@ -32012,14 +32156,14 @@ msgctxt ""
msgid "Group"
msgstr "Agrupa"
-#. e5cjW
+#. tHZP5
#: 05290000.xhp
msgctxt ""
"05290000.xhp\n"
"hd_id3150603\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290000.xhp\" name=\"Agrupa\">Agrupa</link>"
+msgid "<link href=\"text/shared/01/05290000.xhp\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290000.xhp\">Agrupa</link>"
#. 5FCia
#: 05290000.xhp
@@ -32075,41 +32219,41 @@ msgctxt ""
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 "Per eixir d'un grup, feu-hi clic amb el botó dret i trieu <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Treu-ho del grup</emph></caseinline><defaultinline><emph>Agrupa - Treu-ho del grup</emph></defaultinline></switchinline>"
-#. mR8Ae
+#. GYfBa
#: 05290000.xhp
msgctxt ""
"05290000.xhp\n"
"hd_id3145120\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Grouping\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Agrupament\">Agrupa</link>"
+msgid "<link href=\"text/shared/01/05290100.xhp\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290100.xhp\">Agrupa</link>"
-#. VdY6K
+#. zuFUo
#: 05290000.xhp
msgctxt ""
"05290000.xhp\n"
"hd_id3152474\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Remove\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Suprimeix\">Desagrupa</link>"
+msgid "<link href=\"text/shared/01/05290200.xhp\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\">Desagrupa</link>"
-#. nQnDA
+#. 9pJMe
#: 05290000.xhp
msgctxt ""
"05290000.xhp\n"
"hd_id3145609\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=\"Inclou-ho al grup\">Inclou-ho al grup</link>"
+msgid "<link href=\"text/shared/01/05290300.xhp\">Enter Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\">Inclou-ho al grup</link>"
-#. J8EV2
+#. JE7hN
#: 05290000.xhp
msgctxt ""
"05290000.xhp\n"
"hd_id3145068\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=\"Treu-ho del grup\">Treu-ho del grup</link>"
+msgid "<link href=\"text/shared/01/05290400.xhp\">Exit Group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\">Treu-ho del grup</link>"
#. zUUQd
#: 05290100.xhp
@@ -32120,14 +32264,14 @@ msgctxt ""
msgid "Group"
msgstr "Agrupa"
-#. yFvMJ
+#. LSKGG
#: 05290100.xhp
msgctxt ""
"05290100.xhp\n"
"hd_id3152823\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Agrupa\">Agrupa</link>"
+msgid "<link href=\"text/shared/01/05290100.xhp\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290100.xhp\">Agrupa</link>"
#. emCZb
#: 05290100.xhp
@@ -32156,14 +32300,14 @@ msgctxt ""
msgid "Ungroup"
msgstr "Desagrupa"
-#. AEDDM
+#. PNFzP
#: 05290200.xhp
msgctxt ""
"05290200.xhp\n"
"hd_id3159217\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Desagrupa\">Desagrupa</link>"
+msgid "<link href=\"text/shared/01/05290200.xhp\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\">Desagrupa</link>"
#. mvaxo
#: 05290200.xhp
@@ -32192,14 +32336,14 @@ msgctxt ""
msgid "Enter Group"
msgstr "Inclou-ho al grup"
-#. jZGpR
+#. dHiiH
#: 05290300.xhp
msgctxt ""
"05290300.xhp\n"
"hd_id3083278\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=\"Inclou-ho al grup\">Inclou-ho al grup</link>"
+msgid "<link href=\"text/shared/01/05290300.xhp\">Enter Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\">Inclou-ho al grup</link>"
#. GBM4J
#: 05290300.xhp
@@ -32219,23 +32363,23 @@ msgctxt ""
msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>, and then click the object."
msgstr ""
-#. yNMnY
+#. SUGhF
#: 05290300.xhp
msgctxt ""
"05290300.xhp\n"
"par_id3153049\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
-msgstr "<link href=\"text/shared/01/05290000.xhp\" name=\"Grups\">Grups</link>"
+msgid "<link href=\"text/shared/01/05290000.xhp\">Groups</link>"
+msgstr "<link href=\"text/shared/01/05290000.xhp\">Grups</link>"
-#. uk2wW
+#. FyRDs
#: 05290300.xhp
msgctxt ""
"05290300.xhp\n"
"par_id3148548\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=\"Treu-ho del grup\">Treu-ho del grup</link>"
+msgid "<link href=\"text/shared/01/05290400.xhp\">Exit Group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\">Treu-ho del grup</link>"
#. rKmmR
#: 05290400.xhp
@@ -32246,14 +32390,14 @@ msgctxt ""
msgid "Exit Group"
msgstr "Treu-ho del grup"
-#. qB7TB
+#. CB4CV
#: 05290400.xhp
msgctxt ""
"05290400.xhp\n"
"hd_id3157552\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=\"Treu-ho del grup\">Treu-ho del grup</link>"
+msgid "<link href=\"text/shared/01/05290400.xhp\">Exit Group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\">Treu-ho del grup</link>"
#. wCwv6
#: 05290400.xhp
@@ -32264,23 +32408,23 @@ msgctxt ""
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\">Permet eixir del grup, de manera que ja no en pugueu editar els objectes individuals.</ahelp></variable> Si vos trobeu en un grup incrustat, només es tancarà este subgrup."
-#. DqiAs
+#. Jvoyp
#: 05290400.xhp
msgctxt ""
"05290400.xhp\n"
"par_id3153124\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
-msgstr "<link href=\"text/shared/01/05290000.xhp\" name=\"Grups\">Grups</link>"
+msgid "<link href=\"text/shared/01/05290000.xhp\">Groups</link>"
+msgstr "<link href=\"text/shared/01/05290000.xhp\">Grups</link>"
-#. 8AETd
+#. 4yYAg
#: 05290400.xhp
msgctxt ""
"05290400.xhp\n"
"par_id3148520\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=\"Inclou-ho al grup\">Inclou-ho al grup</link>"
+msgid "<link href=\"text/shared/01/05290300.xhp\">Enter Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\">Inclou-ho al grup</link>"
#. 9zYzh
#: 05320000.xhp
@@ -32291,14 +32435,14 @@ msgctxt ""
msgid "Text Animation"
msgstr "Animació de text"
-#. BUFxF
+#. jJEWh
#: 05320000.xhp
msgctxt ""
"05320000.xhp\n"
"hd_id3150014\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=\"Animació de text\">Animació de text</link>"
+msgid "<link href=\"text/shared/01/05320000.xhp\">Text Animation</link>"
+msgstr "<link href=\"text/shared/01/05320000.xhp\">Animació de text</link>"
#. o6rVF
#: 05320000.xhp
@@ -32705,13 +32849,13 @@ msgctxt ""
msgid "Text Columns"
msgstr ""
-#. SCszB
+#. zzYp3
#: 05320001.xhp
msgctxt ""
"05320001.xhp\n"
"hd_id3150014\n"
"help.text"
-msgid "<link href=\"text/shared/01/05320001.xhp\" name=\"Text Columns\">Text Columns</link>"
+msgid "<link href=\"text/shared/01/05320001.xhp\">Text Columns</link>"
msgstr ""
#. u37pw
@@ -32768,13 +32912,13 @@ msgctxt ""
msgid "Theme"
msgstr ""
-#. a8DFA
+#. HQBCk
#: 05320002.xhp
msgctxt ""
"05320002.xhp\n"
"hd_id3150014\n"
"help.text"
-msgid "<link href=\"text/shared/01/05320002.xhp\" name=\"Theme\">Theme</link>"
+msgid "<link href=\"text/shared/01/05320002.xhp\">Theme</link>"
msgstr ""
#. CeYvv
@@ -33218,14 +33362,14 @@ msgctxt ""
msgid "<bookmark_value>aligning; cells</bookmark_value><bookmark_value>cells; aligning</bookmark_value>"
msgstr "<bookmark_value>alineació; cel·les</bookmark_value><bookmark_value>cel·les; alineació</bookmark_value>"
-#. WhtUA
+#. vwCEp
#: 05340300.xhp
msgctxt ""
"05340300.xhp\n"
"hd_id3154545\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Alignment\">Alignment</link>"
-msgstr "<link href=\"text/shared/01/05340300.xhp\" name=\"Alineació\">Alineació</link>"
+msgid "<link href=\"text/shared/01/05340300.xhp\">Alignment</link>"
+msgstr "<link href=\"text/shared/01/05340300.xhp\">Alineació</link>"
#. XFgHs
#: 05340300.xhp
@@ -33749,14 +33893,14 @@ msgctxt ""
msgid "<bookmark_value>data source browser</bookmark_value><bookmark_value>tables in databases;browsing and editing</bookmark_value><bookmark_value>databases; editing tables</bookmark_value><bookmark_value>editing; database tables and queries</bookmark_value><bookmark_value>queries; editing in data source view</bookmark_value>"
msgstr "<bookmark_value>navegador de la font de dades</bookmark_value><bookmark_value>taules en bases de dades;navegació i edició</bookmark_value><bookmark_value>bases de dades; edició de taules</bookmark_value><bookmark_value>edició; taules i consultes de bases de dades</bookmark_value><bookmark_value>consultes; edició a la vista de la font de dades</bookmark_value>"
-#. QEB8c
+#. K7fxK
#: 05340400.xhp
msgctxt ""
"05340400.xhp\n"
"hd_id3153323\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340400.xhp\" name=\"Data Sources\">Data Sources</link>"
-msgstr "<link href=\"text/shared/01/05340400.xhp\" name=\"Fonts de dades\">Fonts de dades</link>"
+msgid "<link href=\"text/shared/01/05340400.xhp\">Data Sources</link>"
+msgstr "<link href=\"text/shared/01/05340400.xhp\">Fonts de dades</link>"
#. CTcGZ
#: 05340400.xhp
@@ -33785,14 +33929,14 @@ msgctxt ""
msgid "Data source browser"
msgstr "Navegador de la font de dades"
-#. je2Y8
+#. MmFWi
#: 05340400.xhp
msgctxt ""
"05340400.xhp\n"
"par_id3154897\n"
"help.text"
-msgid "<ahelp hid=\".\">The commands for the data source browser are found on the <link href=\"text/shared/01/05340400.xhp\" name=\"Database Bar\">Table Data bar</link> and in <link href=\"text/shared/01/05340400.xhp\" name=\"context menus\">context menus</link>.</ahelp>"
-msgstr "<ahelp hid=\".\">Les ordes per al navegador de la font de dades es troben a la <link href=\"text/shared/01/05340400.xhp\" name=\"barra Base de dades\">barra Dades de la taula</link> i als <link href=\"text/shared/01/05340400.xhp\" name=\"menús contextuals\">menús contextuals</link>.</ahelp>"
+msgid "<ahelp hid=\".\">The commands for the data source browser are found on the <link href=\"text/shared/01/05340400.xhp\">Table Data bar</link> and in <link href=\"text/shared/01/05340400.xhp\">context menus</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Les ordes per al navegador de la font de dades es troben a la <link href=\"text/shared/01/05340400.xhp\">barra Dades de la taula</link> i als <link href=\"text/shared/01/05340400.xhp\">menús contextuals</link>.</ahelp>"
#. T3Ddv
#: 05340400.xhp
@@ -34208,41 +34352,41 @@ msgctxt ""
msgid "To access the commands for formatting the table, right-click a column header, or a row header."
msgstr "Per accedir a les ordes per a la formatació de la taula, feu clic amb el botó dret a la capçalera d'una columna o d'una fila."
-#. cK4QP
+#. nCtCW
#: 05340400.xhp
msgctxt ""
"05340400.xhp\n"
"hd_id3148405\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340402.xhp\" name=\"Table Format\">Table Format</link>"
-msgstr "<link href=\"text/shared/01/05340402.xhp\" name=\"Format de la taula\">Format de la taula</link>"
+msgid "<link href=\"text/shared/01/05340402.xhp\">Table Format</link>"
+msgstr "<link href=\"text/shared/01/05340402.xhp\">Format de la taula</link>"
-#. SYvt9
+#. g2Qm9
#: 05340400.xhp
msgctxt ""
"05340400.xhp\n"
"hd_id3083283\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=\"Alçària de la fila\">Alçària de la fila</link>"
+msgid "<link href=\"text/shared/01/05340100.xhp\">Row Height</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\">Alçària de la fila</link>"
-#. KMe3R
+#. dfBaz
#: 05340400.xhp
msgctxt ""
"05340400.xhp\n"
"hd_id3150321\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340405.xhp\" name=\"Column Format\">Column Format</link>"
-msgstr "<link href=\"text/shared/01/05340405.xhp\" name=\"Format de la columna\">Format de la columna</link>"
+msgid "<link href=\"text/shared/01/05340405.xhp\">Column Format</link>"
+msgstr "<link href=\"text/shared/01/05340405.xhp\">Format de la columna</link>"
-#. uZAyB
+#. cAcMC
#: 05340400.xhp
msgctxt ""
"05340400.xhp\n"
"hd_id3147341\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=\"Amplària de la columna\">Amplària de la columna</link>"
+msgid "<link href=\"text/shared/01/05340200.xhp\">Column Width</link>"
+msgstr "<link href=\"text/shared/01/05340200.xhp\">Amplària de la columna</link>"
#. BCetv
#: 05340402.xhp
@@ -34280,14 +34424,14 @@ msgctxt ""
msgid "Delete Rows"
msgstr "Suprimeix les files"
-#. EcaNw
+#. EDWe6
#: 05340404.xhp
msgctxt ""
"05340404.xhp\n"
"hd_id3147617\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=\"Suprimeix les files\">Suprimeix les files</link>"
+msgid "<link href=\"text/shared/01/05340404.xhp\">Delete Rows</link>"
+msgstr "<link href=\"text/shared/01/05340404.xhp\">Suprimeix les files</link>"
#. nAjbj
#: 05340404.xhp
@@ -34298,14 +34442,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Deletes the selected row(s).</ahelp>"
msgstr "<ahelp hid=\".\">Suprimeix la fila o les files seleccionades.</ahelp>"
-#. VoCSX
+#. KtyPw
#: 05340404.xhp
msgctxt ""
"05340404.xhp\n"
"par_id3145129\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 "Esta orde només es pot activar quan seleccioneu la icona <link href=\"text/shared/02/07070000.xhp\" name=\"Edita\">Edita</link> a la barra Dades de la taula o a la barra Estàndard."
+msgid "This command can be activated only when you select the <link href=\"text/shared/02/07070000.xhp\">Edit</link> icon on the Table Data bar or Standard bar."
+msgstr "Esta orde només es pot activar quan seleccioneu la icona <link href=\"text/shared/02/07070000.xhp\">Edita</link> a la barra Dades de la taula o a la barra Estàndard."
#. Ja3qT
#: 05340405.xhp
@@ -34343,14 +34487,14 @@ msgctxt ""
msgid "Hide Columns"
msgstr "Amaga les columnes"
-#. dbDPw
+#. VGBHT
#: 05340500.xhp
msgctxt ""
"05340500.xhp\n"
"hd_id3148882\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=\"Amaga les columnes\">Amaga les columnes</link>"
+msgid "<link href=\"text/shared/01/05340500.xhp\">Hide Columns</link>"
+msgstr "<link href=\"text/shared/01/05340500.xhp\">Amaga les columnes</link>"
#. nv2eq
#: 05340500.xhp
@@ -34370,14 +34514,14 @@ msgctxt ""
msgid "Show Columns"
msgstr "Mostra les columnes"
-#. JgG7J
+#. AXk52
#: 05340600.xhp
msgctxt ""
"05340600.xhp\n"
"hd_id3152876\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=\"Mostra les columnes\">Mostra les columnes</link>"
+msgid "<link href=\"text/shared/01/05340600.xhp\">Show Columns</link>"
+msgstr "<link href=\"text/shared/01/05340600.xhp\">Mostra les columnes</link>"
#. ebBLm
#: 05340600.xhp
@@ -34406,14 +34550,14 @@ msgctxt ""
msgid "<bookmark_value>3D Effects</bookmark_value>"
msgstr "<bookmark_value>efectes 3D</bookmark_value>"
-#. TFRAz
+#. CCokZ
#: 05350000.xhp
msgctxt ""
"05350000.xhp\n"
"hd_id3153136\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=\"Efectes 3D\">Efectes 3D</link>"
+msgid "<link href=\"text/shared/01/05350000.xhp\">3D Effects</link>"
+msgstr "<link href=\"text/shared/01/05350000.xhp\">Efectes 3D</link>"
#. CoFfY
#: 05350000.xhp
@@ -34613,14 +34757,14 @@ msgctxt ""
msgid "Geometry"
msgstr "Geometria"
-#. sKAWa
+#. QG4kF
#: 05350200.xhp
msgctxt ""
"05350200.xhp\n"
"hd_id3149551\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\">Geometry</link>"
-msgstr "<link href=\"text/shared/01/05350200.xhp\" name=\"Geometria\">Geometria</link>"
+msgid "<link href=\"text/shared/01/05350200.xhp\">Geometry</link>"
+msgstr "<link href=\"text/shared/01/05350200.xhp\">Geometria</link>"
#. p3RzR
#: 05350200.xhp
@@ -35036,14 +35180,14 @@ msgctxt ""
msgid "Shading"
msgstr "Ombreig"
-#. 9a6Pi
+#. 2ECfg
#: 05350300.xhp
msgctxt ""
"05350300.xhp\n"
"hd_id3148919\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350300.xhp\" name=\"Shading\">Shading</link>"
-msgstr "<link href=\"text/shared/01/05350300.xhp\" name=\"Ombreig\">Ombreig</link>"
+msgid "<link href=\"text/shared/01/05350300.xhp\">Shading</link>"
+msgstr "<link href=\"text/shared/01/05350300.xhp\">Ombreig</link>"
#. CzwCV
#: 05350300.xhp
@@ -35225,14 +35369,14 @@ msgctxt ""
msgid "Illumination"
msgstr "Il·luminació"
-#. akYiD
+#. UMxwJ
#: 05350400.xhp
msgctxt ""
"05350400.xhp\n"
"hd_id3151260\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350400.xhp\" name=\"Illumination\">Illumination</link>"
-msgstr "<link href=\"text/shared/01/05350400.xhp\" name=\"Il·luminació\">Il·luminació</link>"
+msgid "<link href=\"text/shared/01/05350400.xhp\">Illumination</link>"
+msgstr "<link href=\"text/shared/01/05350400.xhp\">Il·luminació</link>"
#. ARNKN
#: 05350400.xhp
@@ -35351,14 +35495,14 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/docking3deffects/lightcolor1\">Select a color for the current light source.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/docking3deffects/lightcolor1\">Seleccioneu un color per a la font de llum actual.</ahelp>"
-#. oFWkk
+#. XYGZk
#: 05350400.xhp
msgctxt ""
"05350400.xhp\n"
"hd_id3149955\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=\"Selecció de colors al diàleg Color\">Selecció de colors al diàleg Color</link>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\">Select Color in the color dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\">Selecció de colors al diàleg Color</link>"
#. vgbGe
#: 05350400.xhp
@@ -35387,14 +35531,14 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/docking3deffects/ambientcolor\">Select a color for the ambient light.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/docking3deffects/ambientcolor\">Seleccioneu un color per a la llum ambiental.</ahelp>"
-#. Gggj4
+#. DEsFC
#: 05350400.xhp
msgctxt ""
"05350400.xhp\n"
"hd_id3149670\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=\"Selecció de colors mitjançant el diàleg Color\">Selecció de colors mitjançant el diàleg Color</link>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\">Select Color Through the Color Dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\">Selecció de colors mitjançant el diàleg Color</link>"
#. uZSpP
#: 05350400.xhp
@@ -35423,14 +35567,14 @@ msgctxt ""
msgid "Textures"
msgstr "Textures"
-#. MhFpC
+#. dSZfu
#: 05350500.xhp
msgctxt ""
"05350500.xhp\n"
"hd_id3150014\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350500.xhp\" name=\"Textures\">Textures</link>"
-msgstr "<link href=\"text/shared/01/05350500.xhp\" name=\"Textures\">Textures</link>"
+msgid "<link href=\"text/shared/01/05350500.xhp\">Textures</link>"
+msgstr "<link href=\"text/shared/01/05350500.xhp\">Textures</link>"
#. 7EKzr
#: 05350500.xhp
@@ -35972,14 +36116,14 @@ msgctxt ""
msgid "Material"
msgstr "Material"
-#. sELWH
+#. DVVuw
#: 05350600.xhp
msgctxt ""
"05350600.xhp\n"
"hd_id3154349\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350600.xhp\" name=\"Material\">Material</link>"
-msgstr "<link href=\"text/shared/01/05350600.xhp\" name=\"Material\">Material</link>"
+msgid "<link href=\"text/shared/01/05350600.xhp\">Material</link>"
+msgstr "<link href=\"text/shared/01/05350600.xhp\">Material</link>"
#. sCzNE
#: 05350600.xhp
@@ -36062,14 +36206,14 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/docking3deffects/objcolor\">Select the color that you want to apply to the object.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/docking3deffects/objcolor\">Seleccioneu el color que vulgueu aplicar a l'objecte.</ahelp>"
-#. nCnE4
+#. FcaDL
#: 05350600.xhp
msgctxt ""
"05350600.xhp\n"
"hd_id3147373\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=\"Selecció de colors mitjançant el diàleg Color\">Selecció de colors mitjançant el diàleg Color</link>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\">Select Color Through the Color Dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\">Selecció de colors mitjançant el diàleg Color</link>"
#. xjgvM
#: 05350600.xhp
@@ -36089,14 +36233,14 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/docking3deffects/illumcolor\">Select the color to illuminate the object.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/docking3deffects/illumcolor\">Seleccioneu el color que vulgueu que il·lumini l'objecte.</ahelp>"
-#. NXQYp
+#. xdjsG
#: 05350600.xhp
msgctxt ""
"05350600.xhp\n"
"hd_id3153748\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=\"Selecció de colors mitjançant el diàleg Color\">Selecció de colors mitjançant el diàleg Color</link>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\">Select Color Through the Color Dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\">Selecció de colors mitjançant el diàleg Color</link>"
#. 4zGQr
#: 05350600.xhp
@@ -36134,14 +36278,14 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/docking3deffects/speccolor\">Select the color that you want the object to reflect.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/docking3deffects/speccolor\">Seleccioneu el color que vulgueu que reflectisca l'objecte.</ahelp>"
-#. DijkD
+#. j3ax5
#: 05350600.xhp
msgctxt ""
"05350600.xhp\n"
"hd_id3152996\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=\"Selecció de colors mitjançant el diàleg Color\">Selecció de colors mitjançant el diàleg Color</link>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\">Select Color Through the Color Dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01010501.xhp\">Selecció de colors mitjançant el diàleg Color</link>"
#. gWXBF
#: 05350600.xhp
@@ -36179,14 +36323,14 @@ msgctxt ""
msgid "<bookmark_value>drawing objects;distribute</bookmark_value><bookmark_value>drawing objects;distribute evenly</bookmark_value><bookmark_value>distribute objects in drawings</bookmark_value><bookmark_value>distribute objects vertically</bookmark_value><bookmark_value>distribute objects;vertically evenly</bookmark_value><bookmark_value>distribute objects horizontally</bookmark_value><bookmark_value>distribute objects;horizontally evenly</bookmark_value>"
msgstr ""
-#. suNMy
+#. SfcHq
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"hd_id3154812\n"
"help.text"
-msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribute Selection</link>"
-msgstr "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribució\">Distribueix la selecció</link>"
+msgid "<link href=\"text/shared/01/05360000.xhp\">Distribute Selection</link>"
+msgstr "<link href=\"text/shared/01/05360000.xhp\">Distribueix la selecció</link>"
#. qsB33
#: 05360000.xhp
@@ -36476,13 +36620,13 @@ msgctxt ""
msgid "Text Attributes"
msgstr ""
-#. dZtp3
+#. z3gFZ
#: 05990000.xhp
msgctxt ""
"05990000.xhp\n"
"hd_id3155757\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text Attributes</link>"
+msgid "<link href=\"text/shared/01/05990000.xhp\">Text Attributes</link>"
msgstr ""
#. B2wiN
@@ -36521,14 +36665,14 @@ msgctxt ""
msgid "<bookmark_value>dictionaries; spellcheck</bookmark_value> <bookmark_value>spellcheck; dialog</bookmark_value> <bookmark_value>dictionaries; spelling</bookmark_value> <bookmark_value>spelling; dialog</bookmark_value> <bookmark_value>languages; spellcheck</bookmark_value> <bookmark_value>languages; spelling</bookmark_value>"
msgstr "<bookmark_value>diccionaris; verificació ortogràfica</bookmark_value><bookmark_value>verificació ortogràfica; diàleg</bookmark_value><bookmark_value>diccionaris; ortografia</bookmark_value><bookmark_value>ortografia; diàleg</bookmark_value><bookmark_value>llengües; verificació ortogràfica</bookmark_value><bookmark_value>llengües; ortografia</bookmark_value>"
-#. Pqa2F
+#. Fqb6C
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
"hd_id3153882\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Spelling</link>"
-msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Ortografia\">Ortografia</link>"
+msgid "<link href=\"text/shared/01/06010000.xhp\">Spelling</link>"
+msgstr "<link href=\"text/shared/01/06010000.xhp\">Ortografia</link>"
#. WLdXq
#: 06010000.xhp
@@ -36827,32 +36971,32 @@ msgctxt ""
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 "<ahelp hid=\".\">Feu-hi clic per desfer l'últim canvi fet a la frase actual. Feu-hi clic de nou per desfer el canvi anterior fet a la mateixa frase.</ahelp>"
-#. TwEvy
+#. RiQaa
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
"par_id101611835512800\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010101.xhp\" name=\"Writing Aids\">Spelling Options</link>"
+msgid "<link href=\"text/shared/01/06010101.xhp\">Spelling Options</link>"
msgstr ""
-#. BwDHK
+#. CTSSo
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
"par_id871611602271367\n"
"help.text"
-msgid "<link name=\"AutoCorrect\" href=\"text/swriter/01/05150000.xhp\">AutoCorrect Commands</link>"
+msgid "<link href=\"text/swriter/01/05150000.xhp\">AutoCorrect Commands</link>"
msgstr ""
-#. JnB8j
+#. iDcsf
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
"par_id3147426\n"
"help.text"
-msgid "<link href=\"text/shared/01/06020000.xhp\" name=\"Thesaurus\">Thesaurus</link>"
-msgstr "<link href=\"text/shared/01/06020000.xhp\" name=\"Tesaurus\">Tesaurus</link>"
+msgid "<link href=\"text/shared/01/06020000.xhp\">Thesaurus</link>"
+msgstr "<link href=\"text/shared/01/06020000.xhp\">Tesaurus</link>"
#. EPWXE
#: 06010101.xhp
@@ -37394,13 +37538,13 @@ msgctxt ""
msgid "Thesaurus"
msgstr "Tesaurus"
-#. npNDK
+#. CwGMw
#: 06020000.xhp
msgctxt ""
"06020000.xhp\n"
"hd_id3146946\n"
"help.text"
-msgid "<variable id=\"Thesaurush1\"><link href=\"text/shared/01/06020000.xhp\" name=\"Thesaurus\">Thesaurus</link></variable>"
+msgid "<variable id=\"Thesaurush1\"><link href=\"text/shared/01/06020000.xhp\">Thesaurus</link></variable>"
msgstr ""
#. haxwE
@@ -37520,14 +37664,14 @@ msgctxt ""
msgid "Color Replacer"
msgstr "Reemplaçament de color"
-#. F8J8n
+#. GD3JM
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
"hd_id3156324\n"
"help.text"
-msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
-msgstr "<link href=\"text/shared/01/06030000.xhp\" name=\"Reemplaçament de color\">Reemplaçament de color</link>"
+msgid "<link href=\"text/shared/01/06030000.xhp\">Color Replacer</link>"
+msgstr "<link href=\"text/shared/01/06030000.xhp\">Reemplaçament de color</link>"
#. tQEGW
#: 06030000.xhp
@@ -37781,13 +37925,13 @@ msgctxt ""
msgid "To apply an AutoCorrect rule, enter the predefined text in the document and press the <widget>Spacebar</widget>."
msgstr ""
-#. rBtji
+#. WstE9
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id791632159942582\n"
"help.text"
-msgid "To turn off AutoCorrect in %PRODUCTNAME Writer choose <menuitem>Tools - AutoCorrect - While Typing</menuitem>. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\" name=\"auto_off_link1\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Writer."
+msgid "To turn off AutoCorrect in %PRODUCTNAME Writer choose <menuitem>Tools - AutoCorrect - While Typing</menuitem>. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Writer."
msgstr ""
#. rqivx
@@ -37799,23 +37943,23 @@ msgctxt ""
msgid "To apply AutoCorrect to an entire text document, choose <menuitem>Tools - AutoCorrect - Apply</menuitem>."
msgstr ""
-#. 9cDF3
+#. BTucf
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id911632159367467\n"
"help.text"
-msgid "To turn off AutoCorrect in %PRODUCTNAME Calc, go to <menuitem>Tools - AutoCorrect Options</menuitem> and uncheck all items in the <emph>Options</emph> and <emph>Localized Options</emph> tabs. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\" name=\"auto_off_link2\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc."
+msgid "To turn off AutoCorrect in %PRODUCTNAME Calc, go to <menuitem>Tools - AutoCorrect Options</menuitem> and uncheck all items in the <emph>Options</emph> and <emph>Localized Options</emph> tabs. Refer to the help page <link href=\"text/swriter/guide/auto_off.xhp\">Turning Off AutoCorrect</link> to learn more about deactivating AutoCorrect in %PRODUCTNAME Calc."
msgstr ""
-#. EmB5a
+#. T5mEG
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3146137\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"AutoFormat\">AutoCorrect</link>"
-msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Formatació automàtica\">Correcció automàtica</link>"
+msgid "<link href=\"text/swriter/01/05150200.xhp\">AutoCorrect</link>"
+msgstr "<link href=\"text/swriter/01/05150200.xhp\">Correcció automàtica</link>"
#. AdAHF
#: 06040100.xhp
@@ -37835,14 +37979,14 @@ msgctxt ""
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>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 ""
-#. dwyc9
+#. geiHV
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"hd_id3155620\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040100.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/shared/01/06040100.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/shared/01/06040100.xhp\">Options</link>"
+msgstr "<link href=\"text/shared/01/06040100.xhp\">Opcions</link>"
#. PXGqK
#: 06040100.xhp
@@ -37898,14 +38042,14 @@ msgctxt ""
msgid "Use replacement table"
msgstr "Utilitza la taula de reemplaçament"
-#. 5BxmH
+#. FHXGV
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3151234\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 "Si introduïu una combinació de lletres que coincidisca amb una drecera de la <link href=\"text/shared/01/06040200.xhp\" name=\"taula de reemplaçament\">taula de reemplaçament</link>, la combinació de lletres es reemplaçarà pel text de reemplaçament."
+msgid "If you type a letter combination that matches a shortcut in the <link href=\"text/shared/01/06040200.xhp\">replacement table</link>, the letter combination is replaced with the replacement text."
+msgstr "Si introduïu una combinació de lletres que coincidisca amb una drecera de la <link href=\"text/shared/01/06040200.xhp\">taula de reemplaçament</link>, la combinació de lletres es reemplaçarà pel text de reemplaçament."
#. ZhaW7
#: 06040100.xhp
@@ -37988,14 +38132,14 @@ msgctxt ""
msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr "Aplica automàticament una formatació de negreta, cursiva, ratllat o subratllat al text comprés entre asteriscs (*), barres (/), guionets (-) o guions baixos (_) respectivament. Aquests caràcters desapareixeran després que s'apliqui la formatació."
-#. fp3o2
+#. by9ff
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Aquesta característica no funciona si introduïu els caràcters de formatació <item type=\"literal\">* / - _</item> amb un <link href=\"text/shared/00/00000005.xhp#IME\" name=\"editor del mètode d'entrada\">editor del mètode d'entrada</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\">Input Method Editor</link>."
+msgstr "Aquesta característica no funciona si introduïu els caràcters de formatació <item type=\"literal\">* / - _</item> amb un <link href=\"text/shared/00/00000005.xhp#IME\">editor del mètode d'entrada</link>."
#. tA7S7
#: 06040100.xhp
@@ -38006,14 +38150,14 @@ msgctxt ""
msgid "URL Recognition"
msgstr "Reconeix els URL"
-#. yBEmz
+#. zuWCY
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3158430\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 "Crea automàticament un enllaç quan introduïu un <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>."
+msgid "Automatically creates a hyperlink when you type a <link href=\"text/shared/00/00000002.xhp#url\">URL</link>."
+msgstr "Crea automàticament un enllaç quan introduïu un <link href=\"text/shared/00/00000002.xhp#url\">URL</link>."
#. FD7DC
#: 06040100.xhp
@@ -38663,13 +38807,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/applyautofmtpage/edit\">Modifies the selected AutoCorrect option.</ahelp></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/applyautofmtpage/edit\">Modifica l'opció de correcció automàtica seleccionada.</ahelp></caseinline></switchinline>"
-#. FdJq6
+#. ccyRA
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id871611602271367\n"
"help.text"
-msgid "<link name=\"AutoCorrect\" href=\"text/swriter/01/05150000.xhp\">AutoCorrect Commands</link>"
+msgid "<link href=\"text/swriter/01/05150000.xhp\">AutoCorrect Commands</link>"
msgstr ""
#. KBaQh
@@ -38690,14 +38834,14 @@ msgctxt ""
msgid "<bookmark_value>AutoCorrect function; replacement table</bookmark_value><bookmark_value>replacement table</bookmark_value><bookmark_value>replacing; AutoCorrect function</bookmark_value><bookmark_value>text; replacing with format</bookmark_value><bookmark_value>frames; AutoCorrect function</bookmark_value><bookmark_value>pictures; inserting automatically</bookmark_value><bookmark_value>AutoCorrect function; pictures and frames</bookmark_value>"
msgstr "<bookmark_value>funció de correcció automàtica; taula de reemplaçament</bookmark_value><bookmark_value>taula de reemplaçament</bookmark_value><bookmark_value>reemplaçament; funció de correcció automàtica</bookmark_value><bookmark_value>text; reemplaçament amb format</bookmark_value><bookmark_value>marcs; funció de correcció automàtica</bookmark_value><bookmark_value>imatges; inserció automàtica</bookmark_value><bookmark_value>funció de correcció automàtica; imatges i marcs</bookmark_value>"
-#. penrE
+#. XADsG
#: 06040200.xhp
msgctxt ""
"06040200.xhp\n"
"hd_id3152876\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040200.xhp\" name=\"Replace\">Replace</link>"
-msgstr "<link href=\"text/shared/01/06040200.xhp\" name=\"Reemplaça\">Reemplaça</link>"
+msgid "<link href=\"text/shared/01/06040200.xhp\">Replace</link>"
+msgstr "<link href=\"text/shared/01/06040200.xhp\">Reemplaça</link>"
#. VFdj9
#: 06040200.xhp
@@ -38942,14 +39086,14 @@ msgctxt ""
msgid "Exceptions"
msgstr "Excepcions"
-#. Fozxv
+#. t8C3a
#: 06040300.xhp
msgctxt ""
"06040300.xhp\n"
"hd_id3150278\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040300.xhp\" name=\"Exceptions\">Exceptions</link>"
-msgstr "<link href=\"text/shared/01/06040300.xhp\" name=\"Excepcions\">Excepcions</link>"
+msgid "<link href=\"text/shared/01/06040300.xhp\">Exceptions</link>"
+msgstr "<link href=\"text/shared/01/06040300.xhp\">Excepcions</link>"
#. EVDSP
#: 06040300.xhp
@@ -39077,13 +39221,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/acorexceptpage/autodouble\">Adds autocorrected abbreviations or autocorrected words that start with two capital letters to the corresponding list of exceptions, if the autocorrection is immediately undone</ahelp> by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Z</keycode>."
msgstr ""
-#. YSTRA
+#. gAGJ3
#: 06040300.xhp
msgctxt ""
"06040300.xhp\n"
"par_id901613130624924\n"
"help.text"
-msgid "This feature is relevant when the <emph>Capitalize first letter of every sentence</emph> option or the <emph>Correct TWo INitial CApitals</emph> option are selected in the <emph>[T]</emph> column on the <link href=\"text/shared/01/06040100.xhp\" name=\"Options\"><emph>Options</emph></link> tab of this dialog, and <menuitem>Tools - AutoCorrect - While Typing</menuitem> is enabled."
+msgid "This feature is relevant when the <emph>Capitalize first letter of every sentence</emph> option or the <emph>Correct TWo INitial CApitals</emph> option are selected in the <emph>[T]</emph> column on the <link href=\"text/shared/01/06040100.xhp\"><emph>Options</emph></link> tab of this dialog, and <menuitem>Tools - AutoCorrect - While Typing</menuitem> is enabled."
msgstr ""
#. iDNuq
@@ -39104,14 +39248,14 @@ msgctxt ""
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 "<bookmark_value>cometes; personalitzades</bookmark_value><bookmark_value>cometes personalitzades</bookmark_value><bookmark_value>funció de correcció automàtica; cometes</bookmark_value><bookmark_value>reemplaçament; nombres ordinals</bookmark_value><bookmark_value>nombres ordinals; reemplaçament</bookmark_value>"
-#. C7GFf
+#. fwyhk
#: 06040400.xhp
msgctxt ""
"06040400.xhp\n"
"hd_id3153899\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040400.xhp\" name=\"Localized Options\">Localized Options</link>"
-msgstr "<link href=\"text/shared/01/06040400.xhp\" name=\"Opcions de llengua\">Opcions de llenguaOpcions de llengua</link>"
+msgid "<link href=\"text/shared/01/06040400.xhp\">Localized Options</link>"
+msgstr "<link href=\"text/shared/01/06040400.xhp\">Opcions de llenguaOpcions de llengua</link>"
#. pTkZE
#: 06040400.xhp
@@ -39257,14 +39401,14 @@ msgctxt ""
msgid "Start quote"
msgstr "Cometa inicial"
-#. MBS7T
+#. 2RniE
#: 06040400.xhp
msgctxt ""
"06040400.xhp\n"
"par_id3152425\n"
"help.text"
-msgid "<ahelp hid=\".\">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>Tools - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Seleccioneu el <link href=\"text/shared/01/04100000.xhp\" name=\"caràcter especial\">caràcter especial</link> que reemplaçarà automàticament la cometa d'obertura actual quan trieu <emph>Eines ▸ Correcció automàtica ▸ Aplica</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccioneu el <link href=\"text/shared/01/04100000.xhp\">caràcter especial</link> que reemplaçarà automàticament la cometa d'obertura actual quan trieu <emph>Eines ▸ Correcció automàtica ▸ Aplica</emph>.</ahelp>"
#. rmnSr
#: 06040400.xhp
@@ -39275,14 +39419,14 @@ msgctxt ""
msgid "End quote"
msgstr "Cometa final"
-#. mgdRK
+#. EBP74
#: 06040400.xhp
msgctxt ""
"06040400.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "<ahelp hid=\".\">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>Tools - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Seleccioneu el <link href=\"text/shared/01/04100000.xhp\" name=\"caràcter especial\">caràcter especial</link> que reemplaçarà de manera automàtica la cometa de tancament actual quan trieu <emph>Eines ▸ Correcció automàtica ▸ Aplica</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleccioneu el <link href=\"text/shared/01/04100000.xhp\">caràcter especial</link> que reemplaçarà de manera automàtica la cometa de tancament actual quan trieu <emph>Eines ▸ Correcció automàtica ▸ Aplica</emph>.</ahelp>"
#. fzTrp
#: 06040400.xhp
@@ -39365,14 +39509,14 @@ msgctxt ""
msgid "Spelling"
msgstr "Ortografia"
-#. TFCeh
+#. XsiAF
#: 06040500.xhp
msgctxt ""
"06040500.xhp\n"
"par_id3154497\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\">Opens the <link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Spelling</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\">Obri el diàleg <link href=\"text/shared/01/06010000.xhp\" name=\"Ortografia\">Ortografia</link>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\">Opens the <link href=\"text/shared/01/06010000.xhp\">Spelling</link> dialog.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\">Obri el diàleg <link href=\"text/shared/01/06010000.xhp\">Ortografia</link>.</ahelp>"
#. mfvxN
#: 06040500.xhp
@@ -39473,14 +39617,14 @@ msgctxt ""
msgid "Word Completion"
msgstr "Compleció de paraules"
-#. 4jDBM
+#. MtPb7
#: 06040600.xhp
msgctxt ""
"06040600.xhp\n"
"hd_id3148882\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=\"Compleció de paraules\">Compleció de paraules</link>"
+msgid "<link href=\"text/shared/01/06040600.xhp\">Word Completion</link>"
+msgstr "<link href=\"text/shared/01/06040600.xhp\">Compleció de paraules</link>"
#. 9v5os
#: 06040600.xhp
@@ -39788,14 +39932,14 @@ msgctxt ""
msgid "Bullets and Numbering"
msgstr "Pics i numeració"
-#. Woa5J
+#. eZAKE
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"hd_id3149551\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=\"Pics i numeració\">Pics i numeració</link>"
+msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\">Pics i numeració</link>"
#. S7psX
#: 06050000.xhp
@@ -39851,13 +39995,13 @@ msgctxt ""
msgid "<bookmark_value>bullets;paragraphs</bookmark_value> <bookmark_value>paragraphs; inserting bullets</bookmark_value> <bookmark_value>inserting; paragraph bullets</bookmark_value> <bookmark_value>unordered list</bookmark_value>"
msgstr ""
-#. oMhph
+#. MeEvK
#: 06050100.xhp
msgctxt ""
"06050100.xhp\n"
"hd_id3150502\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050100.xhp\" name=\"Bullets\">Unordered</link>"
+msgid "<link href=\"text/shared/01/06050100.xhp\">Unordered</link>"
msgstr ""
#. eGidZ
@@ -39896,22 +40040,22 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/pickbulletpage/valueset\">Click the bullet type that you want to use.</ahelp>"
msgstr ""
-#. su62X
+#. bAEHs
#: 06050100.xhp
msgctxt ""
"06050100.xhp\n"
"par_id3149549\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=\"Pestanya Posició (diàleg Pics i numeració)\">Pestanya Posició (diàleg Pics i numeració)</link>"
+msgid "<link href=\"text/shared/01/06050600.xhp\">Position tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050600.xhp\">Pestanya Posició (diàleg Pics i numeració)</link>"
-#. Q6jPV
+#. cuzXH
#: 06050100.xhp
msgctxt ""
"06050100.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Customize tab (Numbering/Bullets dialog)\">Customize tab (Bullets and Numbering dialog)</link>"
+msgid "<link href=\"text/shared/01/06050500.xhp\">Customize tab (Bullets and Numbering dialog)</link>"
msgstr ""
#. BFX2M
@@ -39923,13 +40067,13 @@ msgctxt ""
msgid "Ordered"
msgstr ""
-#. 849FS
+#. XuABy
#: 06050200.xhp
msgctxt ""
"06050200.xhp\n"
"hd_id3146807\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050200.xhp\" name=\"Numbering Style\">Ordered</link>"
+msgid "<link href=\"text/shared/01/06050200.xhp\">Ordered</link>"
msgstr ""
#. sbPaF
@@ -39959,22 +40103,22 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/picknumberingpage/valueset\">Click the numbering that you want to use.</ahelp>"
msgstr ""
-#. EGa48
+#. qU8B9
#: 06050200.xhp
msgctxt ""
"06050200.xhp\n"
"par_id3149355\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=\"Pestanya Posició (diàleg Pics i numeració)\">Pestanya Posició (diàleg Pics i numeració)</link>"
+msgid "<link href=\"text/shared/01/06050600.xhp\">Position tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050600.xhp\">Pestanya Posició (diàleg Pics i numeració)</link>"
-#. b4BYW
+#. Av8ue
#: 06050200.xhp
msgctxt ""
"06050200.xhp\n"
"par_id3152918\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Customize tab (Bullets and Numbering dialog)</link>"
+msgid "<link href=\"text/shared/01/06050500.xhp\">Customize tab (Bullets and Numbering dialog)</link>"
msgstr ""
#. AQgFB
@@ -39986,14 +40130,14 @@ msgctxt ""
msgid "Outline (Bullets and Numbering)"
msgstr ""
-#. Tuc3B
+#. 3LEfA
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"hd_id3147543\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">Outline</link>"
-msgstr "<link href=\"text/shared/01/06050300.xhp\" name=\"Esquema\">Esquema</link>"
+msgid "<link href=\"text/shared/01/06050300.xhp\">Outline</link>"
+msgstr "<link href=\"text/shared/01/06050300.xhp\">Esquema</link>"
#. 2DJLS
#: 06050300.xhp
@@ -40022,23 +40166,23 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline format that you want to use.</ahelp>"
msgstr ""
-#. WYun7
+#. FPCe9
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3144436\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=\"Pestanya Posició (diàleg Pics i numeració)\">Pestanya Posició (diàleg Pics i numeració)</link>"
+msgid "<link href=\"text/shared/01/06050600.xhp\">Position tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050600.xhp\">Pestanya Posició (diàleg Pics i numeració)</link>"
-#. BDn5Q
+#. x6Usk
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3153935\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=\"Pestanya Opcions (diàleg Pics i numeració)\">Pestanya Opcions (diàleg Pics i numeració)</link>"
+msgid "<link href=\"text/shared/01/06050500.xhp\">Options tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050500.xhp\">Pestanya Opcions (diàleg Pics i numeració)</link>"
#. iVBDk
#: 06050400.xhp
@@ -40049,13 +40193,13 @@ msgctxt ""
msgid "Image"
msgstr "Imatge"
-#. b9BPD
+#. CwjBg
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
"hd_id0611200904373284\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Image</link>"
+msgid "<link href=\"text/shared/01/06050400.xhp\">Image</link>"
msgstr ""
#. YBPGk
@@ -40103,23 +40247,23 @@ msgctxt ""
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=\".\">Si esta opció està activada, els gràfics s'insereixen com a enllaços. Si està desactivada, els gràfics s'incrusten al document.</ahelp>"
-#. kHYGo
+#. y5Mpc
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
"par_id061120090437338\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=\"Pestanya Posició (diàleg Pics i numeració)\">Pestanya Posició (diàleg Pics i numeració)</link>"
+msgid "<link href=\"text/shared/01/06050600.xhp\">Position tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050600.xhp\">Pestanya Posició (diàleg Pics i numeració)</link>"
-#. ddzTz
+#. GGXd8
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
"par_id0611200904373391\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=\"Pestanya Opcions (diàleg Pics i numeració)\">Pestanya Opcions (diàleg Pics i numeració)</link>"
+msgid "<link href=\"text/shared/01/06050500.xhp\">Options tab (Bullets and Numbering dialog)</link>"
+msgstr "<link href=\"text/shared/01/06050500.xhp\">Pestanya Opcions (diàleg Pics i numeració)</link>"
#. MZF62
#: 06050500.xhp
@@ -40139,13 +40283,13 @@ msgctxt ""
msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
msgstr "<bookmark_value>numeració;opcions</bookmark_value><bookmark_value>llistes amb pics; opcions de formatació</bookmark_value><bookmark_value>mides dels tipus de lletra;pics</bookmark_value>"
-#. Cq4hL
+#. Roq5k
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"hd_id3147240\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options\">Customize</link>"
+msgid "<link href=\"text/shared/01/06050500.xhp\">Customize</link>"
msgstr ""
#. ptL6S
@@ -40508,13 +40652,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Character Style</caseinline></switchinline>"
msgstr ""
-#. DXsYK
+#. zJZnd
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3150495\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in an ordered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</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 an ordered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>.</caseinline></switchinline>"
msgstr ""
#. AXZAF
@@ -40751,13 +40895,13 @@ msgctxt ""
msgid "Position (Lists)"
msgstr ""
-#. pbtfH
+#. doZun
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"hd_id3150467\n"
"help.text"
-msgid "<variable id=\"positionh1\"><link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link></variable>"
+msgid "<variable id=\"positionh1\"><link href=\"text/shared/01/06050600.xhp\">Position</link></variable>"
msgstr ""
#. ZuAPU
@@ -40796,13 +40940,13 @@ msgctxt ""
msgid "Position and Spacing"
msgstr ""
-#. AGzEA
+#. 5nJR9
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id5004119\n"
"help.text"
-msgid "This page shows the position controls used in all versions of %PRODUCTNAME Writer. Some documents (produced by other applications) use another method for positioning and spacing. Opening such documents will show the position controls documented in <link href=\"text/swriter/01/legacynumbering.xhp\" name=\"Legacy numbering alignment\">Position for List styles (legacy)</link>."
+msgid "This page shows the position controls used in all versions of %PRODUCTNAME Writer. Some documents (produced by other applications) use another method for positioning and spacing. Opening such documents will show the position controls documented in <link href=\"text/swriter/01/legacynumbering.xhp\">Position for List styles (legacy)</link>."
msgstr ""
#. 9zM7v
@@ -40931,32 +41075,32 @@ msgctxt ""
msgid "This control appears only when modifying a List style."
msgstr ""
-#. XV3ZK
+#. MmicD
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3116228\n"
"help.text"
-msgid "<link href=\"text/swriter/01/legacynumbering.xhp\" name=\"Legacy numbering alignment\">Position for List styles (legacy)</link>"
+msgid "<link href=\"text/swriter/01/legacynumbering.xhp\">Position for List styles (legacy)</link>"
msgstr ""
-#. G6S8m
+#. 9tuBA
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3147228\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=\"Alineació de paràgrafs\">Alineació de paràgrafs</link>"
+msgid "<link href=\"text/shared/01/05030700.xhp\">Paragraph alignment</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\">Alineació de paràgrafs</link>"
-#. pyAz7
+#. 7CrKd
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3124378\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/indenting.xhp\" name=\"Paragraph indenting\">Indenting Paragraphs</link>"
-msgstr "<link href=\"text/swriter/guide/indenting.xhp\" name=\"Sagnat de paràgrafs\">Sagnat de paràgrafs</link>"
+msgid "<link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link>"
+msgstr "<link href=\"text/swriter/guide/indenting.xhp\">Sagnat de paràgrafs</link>"
#. hf4eV
#: 06130000.xhp
@@ -40967,14 +41111,14 @@ msgctxt ""
msgid "Basic Macros"
msgstr "Macros del Basic"
-#. DgfU7
+#. 3rXPt
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
"hd_id3157552\n"
"help.text"
-msgid "<variable id=\"basicmacros\"><link href=\"text/shared/01/06130000.xhp\" name=\"%PRODUCTNAME Basic Macros\">%PRODUCTNAME Basic Macros</link></variable>"
-msgstr "<variable id=\"basicmacros\"><link href=\"text/shared/01/06130000.xhp\" name=\"Macros del %PRODUCTNAME Basic\">Macros del %PRODUCTNAME Basic</link></variable>"
+msgid "<variable id=\"basicmacros\"><link href=\"text/shared/01/06130000.xhp\">%PRODUCTNAME Basic Macros</link></variable>"
+msgstr "<variable id=\"basicmacros\"><link href=\"text/shared/01/06130000.xhp\">Macros del %PRODUCTNAME Basic</link></variable>"
#. S9vS4
#: 06130000.xhp
@@ -41057,14 +41201,14 @@ msgctxt ""
msgid "Assign"
msgstr "Assigna"
-#. FgweP
+#. vXXCe
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
"par_id3153577\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=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Obri el diàleg <link href=\"text/shared/01/06140000.xhp\" name=\"Personalitza\">Personalitza</link>, que vos permet assignar la macro seleccionada a una orde de menú, una barra d'eines o un esdeveniment.</ahelp>"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Opens the <link href=\"text/shared/01/06140000.xhp\">Customize</link> dialog, where you can assign the selected macro to a menu command, a toolbar, or an event.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/assign\">Obri el diàleg <link href=\"text/shared/01/06140000.xhp\">Personalitza</link>, que vos permet assignar la macro seleccionada a una orde de menú, una barra d'eines o un esdeveniment.</ahelp>"
#. zYN5n
#: 06130000.xhp
@@ -41165,13 +41309,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newmodule\">Saves the recorded macro in a new module.</ahelp>"
msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/newmodule\">Guarda la macro gravada en un mòdul nou.</ahelp>"
-#. FcFb6
+#. 2AyFa
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
"hd_id3153665\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130300.xhp\" name=\"organizer\">Organizer</link>"
+msgid "<link href=\"text/shared/01/06130300.xhp\">Organizer</link>"
msgstr ""
#. GvfVP
@@ -41192,14 +41336,14 @@ msgctxt ""
msgid "Macros"
msgstr "Macros"
-#. FDAsS
+#. ktnPV
#: 06130001.xhp
msgctxt ""
"06130001.xhp\n"
"hd_id3152414\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130001.xhp\" name=\"Macros\">Macros</link>"
-msgstr "<link href=\"text/shared/01/06130001.xhp\" name=\"Macros\">Macros</link>"
+msgid "<link href=\"text/shared/01/06130001.xhp\">Macros</link>"
+msgstr "<link href=\"text/shared/01/06130001.xhp\">Macros</link>"
#. QpEGb
#: 06130001.xhp
@@ -41282,14 +41426,14 @@ msgctxt ""
msgid "Record Macro"
msgstr "Grava una macro"
-#. eKWF5
+#. K82a7
#: 06130010.xhp
msgctxt ""
"06130010.xhp\n"
"hd_id3153383\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=\"Grava una macro\">Grava una macro</link>"
+msgid "<link href=\"text/shared/01/06130010.xhp\">Record Macro</link>"
+msgstr "<link href=\"text/shared/01/06130010.xhp\">Grava una macro</link>"
#. 9pC9X
#: 06130010.xhp
@@ -41336,13 +41480,13 @@ msgctxt ""
msgid "<bookmark_value>macro;select macro to run</bookmark_value> <bookmark_value>run macro;select</bookmark_value>"
msgstr ""
-#. Cfej6
+#. io7eF
#: 06130020.xhp
msgctxt ""
"06130020.xhp\n"
"hd_id131571264310511\n"
"help.text"
-msgid "<variable id=\"macroselectorh1\"><link href=\"text/shared/01/06130020.xhp\" name=\"macro selector\">Basic Macro selector</link></variable>"
+msgid "<variable id=\"macroselectorh1\"><link href=\"text/shared/01/06130020.xhp\">Basic Macro selector</link></variable>"
msgstr ""
#. VEFaS
@@ -41957,13 +42101,13 @@ msgctxt ""
msgid "Password"
msgstr "Contrasenya"
-#. 2uxEq
+#. PBaVC
#: 06130300.xhp
msgctxt ""
"06130300.xhp\n"
"par_id3154299\n"
"help.text"
-msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">Assigns or edits the <link href=\"text/shared/01/06130100.xhp\" name=\"password\">password</link> for the selected library.</ahelp>"
+msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/password\">Assigns or edits the <link href=\"text/shared/01/06130100.xhp\">password</link> for the selected library.</ahelp>"
msgstr ""
#. FZAUF
@@ -42191,14 +42335,14 @@ msgctxt ""
msgid "<bookmark_value>menus;customizing</bookmark_value> <bookmark_value>customizing;menus</bookmark_value> <bookmark_value>editing;menus</bookmark_value>"
msgstr "<bookmark_value>menús;personalització</bookmark_value><bookmark_value>personalització;menús</bookmark_value><bookmark_value>edició;menús</bookmark_value>"
-#. dqEqQ
+#. b7fy6
#: 06140100.xhp
msgctxt ""
"06140100.xhp\n"
"hd_id431514298399070\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140100.xhp\" name=\"Menus\">Menus</link>"
-msgstr "<link href=\"text/shared/01/06140100.xhp\" name=\"Menus\">Menús</link>"
+msgid "<link href=\"text/shared/01/06140100.xhp\">Menus</link>"
+msgstr "<link href=\"text/shared/01/06140100.xhp\">Menús</link>"
#. RgrUg
#: 06140100.xhp
@@ -42551,14 +42695,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/menuassignpage/defaultsbtn\">Deletes all changes previously made to this menu.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/menuassignpage/defaultsbtn\">Suprimeix tots els canvis que s'hagen fet prèviament en aquest menú.</ahelp>"
-#. 5cP5F
+#. Evw75
#: 06140100.xhp
msgctxt ""
"06140100.xhp\n"
"par_id481514299760750\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"linkname\">Customizing %PRODUCTNAME context menus</link>"
-msgstr "<link href=\"text/shared/01/06140300.xhp\" name=\"linkname\">Personalització dels menús contextuals del %PRODUCTNAME</link>"
+msgid "<link href=\"text/shared/01/06140300.xhp\">Customizing %PRODUCTNAME context menus</link>"
+msgstr "<link href=\"text/shared/01/06140300.xhp\">Personalització dels menús contextuals del %PRODUCTNAME</link>"
#. ZsZDA
#: 06140101.xhp
@@ -42668,14 +42812,14 @@ msgctxt ""
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>teclat;assignació o edició de tecles de drecera</bookmark_value><bookmark_value>personalització;teclat</bookmark_value><bookmark_value>edició;tecles de drecera</bookmark_value><bookmark_value>estils;tecles de drecera</bookmark_value>"
-#. w7TbR
+#. rEMyy
#: 06140200.xhp
msgctxt ""
"06140200.xhp\n"
"hd_id3148882\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"Keyboard\">Keyboard</link>"
-msgstr "<link href=\"text/shared/01/06140200.xhp\" name=\"Teclat\">Teclat</link>"
+msgid "<link href=\"text/shared/01/06140200.xhp\">Keyboard</link>"
+msgstr "<link href=\"text/shared/01/06140200.xhp\">Teclat</link>"
#. FHDBV
#: 06140200.xhp
@@ -42929,13 +43073,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/accelconfigpage/save\">Saves the current shortcut key configuration, so that you can load it later.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/accelconfigpage/save\">Guarda la configuració actual per a la tecla de drecera per tal que la pugueu carregar més avant.</ahelp>"
-#. D33Wg
+#. KqRty
#: 06140200.xhp
msgctxt ""
"06140200.xhp\n"
"par_id261603929349350\n"
"help.text"
-msgid "<link href=\"text/shared/main0400.xhp\" name=\"frequentkeys\">Shortcut Keys in %PRODUCTNAME</link>"
+msgid "<link href=\"text/shared/main0400.xhp\">Shortcut Keys in %PRODUCTNAME</link>"
msgstr ""
#. fybrb
@@ -42956,14 +43100,14 @@ msgctxt ""
msgid "<bookmark_value>context menus;customizing</bookmark_value> <bookmark_value>customizing;context menus</bookmark_value> <bookmark_value>editing;context menus</bookmark_value>"
msgstr "<bookmark_value>menús contextuals;personalització</bookmark_value> <bookmark_value>personalització;menús contextuals</bookmark_value> <bookmark_value>edició;menús contextuals</bookmark_value>"
-#. vrAui
+#. Pf9Ci
#: 06140300.xhp
msgctxt ""
"06140300.xhp\n"
"hd_id431514298399070\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"Context Menus\">Context Menus</link>"
-msgstr "<link href=\"text/shared/01/06140300.xhp\" name=\"Context Menus\">Menús contextuals</link>"
+msgid "<link href=\"text/shared/01/06140300.xhp\">Context Menus</link>"
+msgstr "<link href=\"text/shared/01/06140300.xhp\">Menús contextuals</link>"
#. BAGoB
#: 06140300.xhp
@@ -43199,13 +43343,13 @@ msgctxt ""
msgid "Deletes all changes previously made to this context menu."
msgstr ""
-#. CQgQr
+#. BFr83
#: 06140300.xhp
msgctxt ""
"06140300.xhp\n"
"par_id481514299760750\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140100.xhp\" name=\"linkname\">Customizing %PRODUCTNAME menus</link>"
+msgid "<link href=\"text/shared/01/06140100.xhp\">Customizing %PRODUCTNAME menus</link>"
msgstr ""
#. g9jJe
@@ -43217,14 +43361,14 @@ msgctxt ""
msgid "Toolbars"
msgstr "Barres d'eines"
-#. nuHYB
+#. msLkF
#: 06140400.xhp
msgctxt ""
"06140400.xhp\n"
"hd_id3154100\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140400.xhp\" name=\"Toolbars\">Toolbars</link>"
-msgstr "<link href=\"text/shared/01/06140400.xhp\" name=\"Barres d'eines\">Barres d'eines</link>"
+msgid "<link href=\"text/shared/01/06140400.xhp\">Toolbars</link>"
+msgstr "<link href=\"text/shared/01/06140400.xhp\">Barres d'eines</link>"
#. USNMB
#: 06140400.xhp
@@ -43487,13 +43631,13 @@ msgctxt ""
msgid "<emph>Rename</emph>: Rename the entry."
msgstr "<emph>Canvia el nom</emph>: canvia el nom de l'entrada."
-#. wgMVC
+#. oyCC6
#: 06140400.xhp
msgctxt ""
"06140400.xhp\n"
"par_idN106B2\n"
"help.text"
-msgid "<emph>Change Icon</emph>: Opens the <link href=\"text/shared/01/06140402.xhp\" name=\"Change Icon\">Change Icon</link> dialog, where you can assign a different icon to the current command."
+msgid "<emph>Change Icon</emph>: Opens the <link href=\"text/shared/01/06140402.xhp\">Change Icon</link> dialog, where you can assign a different icon to the current command."
msgstr ""
#. Gja5A
@@ -43622,14 +43766,14 @@ msgctxt ""
msgid "<bookmark_value>customizing; events</bookmark_value> <bookmark_value>events; customizing</bookmark_value>"
msgstr ""
-#. gvzR4
+#. eCUWQ
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"hd_id3152427\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Esdeveniments\">Esdeveniments</link>"
+msgid "<link href=\"text/shared/01/06140500.xhp\">Events</link>"
+msgstr "<link href=\"text/shared/01/06140500.xhp\">Esdeveniments</link>"
#. LtwjV
#: 06140500.xhp
@@ -43748,22 +43892,22 @@ msgctxt ""
msgid "<ahelp hid=\".\">Deletes the macro or component assignment for the selected event.</ahelp>"
msgstr ""
-#. QTTif
+#. Vy3SW
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3159147\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=\"Llista d'esdeveniments\">Llista d'esdeveniments</link>"
+msgid "<link href=\"text/swriter/01/05060700.xhp\">List of events</link>"
+msgstr "<link href=\"text/swriter/01/05060700.xhp\">Llista d'esdeveniments</link>"
-#. kuxSx
+#. J3vbQ
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id831568910303156\n"
"help.text"
-msgid "<link href=\"text/sbasic/python/python_handler.xhp\" name=\"Creating a Dialog Handler\">Creating a Dialog Handler</link>"
+msgid "<link href=\"text/sbasic/python/python_handler.xhp\">Creating a Dialog Handler</link>"
msgstr ""
#. 9vSFr
@@ -43784,14 +43928,14 @@ msgctxt ""
msgid "<bookmark_value>filters; XML filter settings</bookmark_value><bookmark_value>XML filters; settings</bookmark_value>"
msgstr "<bookmark_value>filtres; paràmetres del filtre XML</bookmark_value><bookmark_value>filtres XML; paràmetres</bookmark_value>"
-#. CaLds
+#. vGCs2
#: 06150000.xhp
msgctxt ""
"06150000.xhp\n"
"hd_id3153272\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=\"Paràmetres del filtre XML\">Paràmetres del filtre del filtre XML</link>"
+msgid "<link href=\"text/shared/01/06150000.xhp\">XML Filter Settings</link>"
+msgstr "<link href=\"text/shared/01/06150000.xhp\">Paràmetres del filtre del filtre XML</link>"
#. Gk7jE
#: 06150000.xhp
@@ -44108,23 +44252,23 @@ msgctxt ""
msgid "XML Filter"
msgstr "Filtre XML"
-#. riLyy
+#. awW9Z
#: 06150100.xhp
msgctxt ""
"06150100.xhp\n"
"hd_id3153882\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=\"Filtre XML\">Filtre XML</link></variable>"
+msgid "<variable id=\"xml_filter\"><link href=\"text/shared/01/06150100.xhp\">XML Filter</link></variable>"
+msgstr "<variable id=\"xml_filter\"><link href=\"text/shared/01/06150100.xhp\">Filtre XML</link></variable>"
-#. ctusL
+#. 3PjWt
#: 06150100.xhp
msgctxt ""
"06150100.xhp\n"
"par_id3153070\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=\".\">Permet visualitzar i editar els paràmetres d'un <link href=\"text/shared/01/06150000.xhp\" name=\"filtre XML\">filtre XML</link>.</ahelp>"
+msgid "<ahelp hid=\".\">View and edit the settings of an <link href=\"text/shared/01/06150000.xhp\">XML filter</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Permet visualitzar i editar els paràmetres d'un <link href=\"text/shared/01/06150000.xhp\">filtre XML</link>.</ahelp>"
#. Sutrb
#: 06150110.xhp
@@ -44135,23 +44279,23 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. jG7C8
+#. 3i8pT
#: 06150110.xhp
msgctxt ""
"06150110.xhp\n"
"hd_id3158442\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=\"General\">General</link></variable>"
+msgid "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\">General</link></variable>"
+msgstr "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\">General</link></variable>"
-#. fkerg
+#. FnEMR
#: 06150110.xhp
msgctxt ""
"06150110.xhp\n"
"par_id3149038\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=\".\">Introduïu o editeu la informació general per a un <link href=\"text/shared/01/06150000.xhp\" name=\"filtre XML\">filtre XML</link>.</ahelp>"
+msgid "<ahelp hid=\".\">Enter or edit general information for an <link href=\"text/shared/01/06150000.xhp\">XML filter</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Introduïu o editeu la informació general per a un <link href=\"text/shared/01/06150000.xhp\">filtre XML</link>.</ahelp>"
#. RNEeA
#: 06150110.xhp
@@ -44252,23 +44396,23 @@ msgctxt ""
msgid "Transformation"
msgstr "Transformació"
-#. PwehY
+#. FfrHG
#: 06150120.xhp
msgctxt ""
"06150120.xhp\n"
"hd_id3147477\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=\"Transformació\">Transformació</link></variable>"
+msgid "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\">Transformation</link></variable>"
+msgstr "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\">Transformació</link></variable>"
-#. JAnWe
+#. qcTip
#: 06150120.xhp
msgctxt ""
"06150120.xhp\n"
"par_id3154350\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=\".\">Permet introduir o editar la informació de fitxer per a un <link href=\"text/shared/01/06150000.xhp\" name=\"filtre XML\">filtre XML</link>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".\">Enter or edit file information for an <link href=\"text/shared/01/06150000.xhp\">XML filter</link>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".\">Permet introduir o editar la informació de fitxer per a un <link href=\"text/shared/01/06150000.xhp\">filtre XML</link>.</ahelp>"
#. g3CRN
#: 06150120.xhp
@@ -44387,23 +44531,23 @@ msgctxt ""
msgid "Test XML Filter"
msgstr "Verifica el filtre XML"
-#. A8NLL
+#. BLH6E
#: 06150200.xhp
msgctxt ""
"06150200.xhp\n"
"hd_id3150379\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=\"Verificació del filtre XML\">Verificació del filtre XML</link></variable>"
+msgid "<variable id=\"testxml\"><link href=\"text/shared/01/06150200.xhp\">Test XML Filter</link></variable>"
+msgstr "<variable id=\"testxml\"><link href=\"text/shared/01/06150200.xhp\">Verificació del filtre XML</link></variable>"
-#. nFHSw
+#. i2iuu
#: 06150200.xhp
msgctxt ""
"06150200.xhp\n"
"par_id3146857\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=\".\">Verifica els fulls d'estil XSLT utilitzats pel <link href=\"text/shared/01/06150000.xhp\" name=\"filtre XML\">filtre XML</link> seleccionat.</ahelp>"
+msgid "<ahelp hid=\".\">Tests the XSLT stylesheets used by the selected <link href=\"text/shared/01/06150000.xhp\">XML filter</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Verifica els fulls d'estil XSLT utilitzats pel <link href=\"text/shared/01/06150000.xhp\">filtre XML</link> seleccionat.</ahelp>"
#. VhAt6
#: 06150200.xhp
@@ -44603,23 +44747,23 @@ msgctxt ""
msgid "XML Filter output"
msgstr "Filtre d'eixida XML"
-#. Pnysa
+#. WfB6Y
#: 06150210.xhp
msgctxt ""
"06150210.xhp\n"
"hd_id3158397\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=\"Filtre d'eixida XML\">Filtre d'eixida XML</link></variable>"
+msgid "<variable id=\"xmlfilteroutput\"><link href=\"text/shared/01/06150210.xhp\">XML Filter output</link></variable>"
+msgstr "<variable id=\"xmlfilteroutput\"><link href=\"text/shared/01/06150210.xhp\">Filtre d'eixida XML</link></variable>"
-#. cEfMm
+#. er3s8
#: 06150210.xhp
msgctxt ""
"06150210.xhp\n"
"par_id3153882\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\">Llista els resultats de verificació d'un <link href=\"text/shared/01/06150000.xhp\" name=\"filtre XML\">filtre XML</link>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"HID_XML_FILTER_OUTPUT_WINDOW\">Lists the test results of an <link href=\"text/shared/01/06150000.xhp\">XML filter</link>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"HID_XML_FILTER_OUTPUT_WINDOW\">Llista els resultats de verificació d'un <link href=\"text/shared/01/06150000.xhp\">filtre XML</link>.</ahelp>"
#. g2s98
#: 06150210.xhp
@@ -44675,14 +44819,14 @@ msgctxt ""
msgid "<bookmark_value>converting;Hangul/Hanja</bookmark_value><bookmark_value>Hangul/Hanja</bookmark_value>"
msgstr "<bookmark_value>conversió;hangul/hanja</bookmark_value><bookmark_value>hangul/hanja</bookmark_value>"
-#. npX4p
+#. UWHfh
#: 06200000.xhp
msgctxt ""
"06200000.xhp\n"
"hd_id3155757\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=\"Conversió hangul/hanja\">Conversió hangul/hanja</link>"
+msgid "<link href=\"text/shared/01/06200000.xhp\">Hangul/Hanja Conversion</link>"
+msgstr "<link href=\"text/shared/01/06200000.xhp\">Conversió hangul/hanja</link>"
#. B7EXU
#: 06200000.xhp
@@ -45386,14 +45530,14 @@ msgctxt ""
msgid "Spelling"
msgstr "Ortografia"
-#. cTCCi
+#. NeemC
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
"hd_id3147069\n"
"help.text"
-msgid "<link href=\"text/shared/01/06990000.xhp\" name=\"Spelling\">Spelling</link>"
-msgstr "<link href=\"text/shared/01/06990000.xhp\" name=\"Ortografia\">Ortografia</link>"
+msgid "<link href=\"text/shared/01/06990000.xhp\">Spelling</link>"
+msgstr "<link href=\"text/shared/01/06990000.xhp\">Ortografia</link>"
#. C5oKq
#: 06990000.xhp
@@ -45404,14 +45548,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Checks spelling manually.</ahelp>"
msgstr "<ahelp hid=\".\">Permet verificar l'ortografia de manera manual.</ahelp>"
-#. 5xrjz
+#. tCGCj
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
"par_id2551957\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Spelling dialog</link>"
-msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Ortografia\">Diàleg Ortografia</link>"
+msgid "<link href=\"text/shared/01/06010000.xhp\">Spelling dialog</link>"
+msgstr "<link href=\"text/shared/01/06010000.xhp\">Diàleg Ortografia</link>"
#. Eq4Ep
#: 07010000.xhp
@@ -45431,14 +45575,14 @@ msgctxt ""
msgid "<bookmark_value>new windows</bookmark_value><bookmark_value>windows;new</bookmark_value>"
msgstr "<bookmark_value>finestres noves</bookmark_value><bookmark_value>finestres;noves</bookmark_value>"
-#. QYQCC
+#. BHGto
#: 07010000.xhp
msgctxt ""
"07010000.xhp\n"
"hd_id3148882\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=\"Finestra nova\">Finestra nova</link>"
+msgid "<link href=\"text/shared/01/07010000.xhp\">New Window</link>"
+msgstr "<link href=\"text/shared/01/07010000.xhp\">Finestra nova</link>"
#. 5Y2ET
#: 07010000.xhp
@@ -45467,14 +45611,14 @@ msgctxt ""
msgid "Document List"
msgstr "Llista de documents"
-#. AhMX8
+#. JZpiC
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
"hd_id3155620\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=\"Llista de documents\">Llista de documents</link>"
+msgid "<link href=\"text/shared/01/07080000.xhp\">Document List</link>"
+msgstr "<link href=\"text/shared/01/07080000.xhp\">Llista de documents</link>"
#. oEczn
#: 07080000.xhp
@@ -45512,13 +45656,13 @@ msgctxt ""
msgid "HTML import and export"
msgstr "Importació i exportació d'HTML"
-#. AQC2u
+#. EGTkD
#: about_meta_tags.xhp
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3145119\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 <menuitem>File - Properties</menuitem>, click the <emph>Description</emph> or <emph>Custom Properties</emph> tabs, and then type the information you want."
+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\">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 <menuitem>File - Properties</menuitem>, click the <emph>Description</emph> or <emph>Custom Properties</emph> tabs, and then type the information you want."
msgstr ""
#. AMHpy
@@ -45737,13 +45881,13 @@ msgctxt ""
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
msgstr ""
-#. fYs2f
+#. Mep8C
#: addsignatureline.xhp
msgctxt ""
"addsignatureline.xhp\n"
"hd_id501526421873817\n"
"help.text"
-msgid "<variable id=\"addsignatureline01\"><link href=\"text/shared/01/addsignatureline.xhp\" name=\"Signature Line\">Signature Line</link></variable>"
+msgid "<variable id=\"addsignatureline01\"><link href=\"text/shared/01/addsignatureline.xhp\">Signature Line</link></variable>"
msgstr ""
#. bcvDE
@@ -45899,13 +46043,13 @@ msgctxt ""
msgid "<bookmark_value>digital signatures;certificate path</bookmark_value> <bookmark_value>certificate path</bookmark_value>"
msgstr ""
-#. MhnU5
+#. PDrnD
#: certificatepath.xhp
msgctxt ""
"certificatepath.xhp\n"
"hd_id141594763815174\n"
"help.text"
-msgid "<variable id=\"Certificateh1\"><link href=\"text/shared/01/certificatepath.xhp\" name=\"Certificate\">Certificate</link></variable>"
+msgid "<variable id=\"Certificateh1\"><link href=\"text/shared/01/certificatepath.xhp\">Certificate</link></variable>"
msgstr ""
#. BuRGD
@@ -45971,13 +46115,13 @@ msgctxt ""
msgid "<bookmark_value>classification toolbar;display</bookmark_value>"
msgstr ""
-#. KaU95
+#. xbRSQ
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"hd_id3150342\n"
"help.text"
-msgid "<variable id=\"classbarh1\"><link href=\"text/shared/01/classificationbar.xhp\" name=\"Classification Bar\">Classification Toolbar</link></variable>"
+msgid "<variable id=\"classbarh1\"><link href=\"text/shared/01/classificationbar.xhp\">Classification Toolbar</link></variable>"
msgstr ""
#. WnDNP
@@ -46025,13 +46169,13 @@ msgctxt ""
msgid "Manage Document Classification"
msgstr ""
-#. vPT8t
+#. fuaER
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_id501623161122070\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/classificationdialog.xhp\" name=\"classification dialog\">Classification dialog</link> for document classification."
+msgid "Opens the <link href=\"text/shared/01/classificationdialog.xhp\">Classification dialog</link> for document classification."
msgstr ""
#. m5zCN
@@ -46043,22 +46187,22 @@ msgctxt ""
msgid "Manage Paragraph Classification"
msgstr ""
-#. MSJDf
+#. K6DVb
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_id871623161127282\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/classificationdialog.xhp\" name=\"classification dialog\">Classification dialog</link> for paragraph classification."
+msgid "Opens the <link href=\"text/shared/01/classificationdialog.xhp\">Classification dialog</link> for paragraph classification."
msgstr ""
-#. kfv3h
+#. BCCaG
#: classificationbar.xhp
msgctxt ""
"classificationbar.xhp\n"
"par_id51623177298121\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/TSCP-classification\" name=\"wiki classification\">Wiki page on document classification</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/TSCP-classification\">Wiki page on document classification</link>"
msgstr ""
#. dsZAF
@@ -46079,22 +46223,22 @@ msgctxt ""
msgid "<bookmark_value>classification;contents</bookmark_value> <bookmark_value>classification;licenses</bookmark_value> <bookmark_value>classification;part numbers</bookmark_value> <bookmark_value>classification;markings</bookmark_value> <bookmark_value>classification;paragraph</bookmark_value> <bookmark_value>paragraph;classification</bookmark_value>"
msgstr ""
-#. nD79p
+#. MvcH9
#: classificationdialog.xhp
msgctxt ""
"classificationdialog.xhp\n"
"hd_id21623159004194\n"
"help.text"
-msgid "<variable id=\"classdialogh1\"><link href=\"text/shared/01/classificationdialog.xhp\" name=\"classificationdialog\">Document and Paragraph Classification Dialog</link></variable>"
+msgid "<variable id=\"classdialogh1\"><link href=\"text/shared/01/classificationdialog.xhp\">Document and Paragraph Classification Dialog</link></variable>"
msgstr ""
-#. RuUAE
+#. b2jAF
#: classificationdialog.xhp
msgctxt ""
"classificationdialog.xhp\n"
"par_id461623164674397\n"
"help.text"
-msgid "Applies classification policy to the current document or paragraph. The dialog helps to assemble the classification policy terms of the document or paragraph by using predefined classification terms or by entering custom classification terms. The dialog display several lists of predefined items, which are loaded from the <link href=\"text/shared/guide/classification.xhp#configfile\" name=\"config file\">BAILS-xml TSCP policy file</link>."
+msgid "Applies classification policy to the current document or paragraph. The dialog helps to assemble the classification policy terms of the document or paragraph by using predefined classification terms or by entering custom classification terms. The dialog display several lists of predefined items, which are loaded from the <link href=\"text/shared/guide/classification.xhp#configfile\">BAILS-xml TSCP policy file</link>."
msgstr ""
#. Q2FkA
@@ -46115,13 +46259,13 @@ msgctxt ""
msgid "Content"
msgstr ""
-#. 7bGF5
+#. 2cL5t
#: classificationdialog.xhp
msgctxt ""
"classificationdialog.xhp\n"
"par_id301623172724879\n"
"help.text"
-msgid "The <emph>Content</emph> text box displays the classification text created by the dialog and displays the existing document or paragraph classification terms. You can add your own terms in addition to the existing text in the box and the classification terms from the <link href=\"text/shared/guide/classification.xhp#configfile\" name=\"config file\">classification policy configuration file</link>."
+msgid "The <emph>Content</emph> text box displays the classification text created by the dialog and displays the existing document or paragraph classification terms. You can add your own terms in addition to the existing text in the box and the classification terms from the <link href=\"text/shared/guide/classification.xhp#configfile\">classification policy configuration file</link>."
msgstr ""
#. 8WD3B
@@ -46232,13 +46376,13 @@ msgctxt ""
msgid "Marking"
msgstr ""
-#. FnA4y
+#. 9CKgZ
#: classificationdialog.xhp
msgctxt ""
"classificationdialog.xhp\n"
"par_id41623173977713\n"
"help.text"
-msgid "Display a list of pre-existing markings available to be added to the Contents text box. Double click one entry to have it added to the contents text box at the cursor location. The markings are defined in the <link href=\"text/shared/guide/classification.xhp#configfile\" name=\"config file\">classification policy configuration file</link>."
+msgid "Display a list of pre-existing markings available to be added to the Contents text box. Double click one entry to have it added to the contents text box at the cursor location. The markings are defined in the <link href=\"text/shared/guide/classification.xhp#configfile\">classification policy configuration file</link>."
msgstr ""
#. cBseC
@@ -46250,13 +46394,13 @@ msgctxt ""
msgid "License"
msgstr ""
-#. sEc2R
+#. xDCw5
#: classificationdialog.xhp
msgctxt ""
"classificationdialog.xhp\n"
"par_id1001623174051869\n"
"help.text"
-msgid "Displays the existing intellectual property licenses. Double click the license to have it displayed in the <emph>Part text</emph> box below. Click the <emph>Add</emph> button to place the license text in the <emph>Content</emph> box.The licenses are defined in the <link href=\"text/shared/guide/classification.xhp#configfile\" name=\"config file\">classification policy configuration file</link>."
+msgid "Displays the existing intellectual property licenses. Double click the license to have it displayed in the <emph>Part text</emph> box below. Click the <emph>Add</emph> button to place the license text in the <emph>Content</emph> box.The licenses are defined in the <link href=\"text/shared/guide/classification.xhp#configfile\">classification policy configuration file</link>."
msgstr ""
#. BZFwp
@@ -46268,13 +46412,13 @@ msgctxt ""
msgid "Part number"
msgstr ""
-#. DDJqR
+#. p6AkN
#: classificationdialog.xhp
msgctxt ""
"classificationdialog.xhp\n"
"par_id191623174046018\n"
"help.text"
-msgid "Displays the existing intellectual property part numbers. Double click the part number to have it displayed in the <emph>Part text</emph> box below and click the <emph>Add</emph> button to place the part number in the <emph>Content</emph> text box. The part numbers are defined in the <link href=\"text/shared/guide/classification.xhp#configfile\" name=\"config file\">classification policy configuration file</link>."
+msgid "Displays the existing intellectual property part numbers. Double click the part number to have it displayed in the <emph>Part text</emph> box below and click the <emph>Add</emph> button to place the part number in the <emph>Content</emph> text box. The part numbers are defined in the <link href=\"text/shared/guide/classification.xhp#configfile\">classification policy configuration file</link>."
msgstr ""
#. uGvTQ
@@ -46322,13 +46466,13 @@ msgctxt ""
msgid "Settings of the Classification dialog are part of the document custom properties."
msgstr ""
-#. iVA7f
+#. LJDVC
#: classificationdialog.xhp
msgctxt ""
"classificationdialog.xhp\n"
"par_id51623177298121\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/TSCP-classification\" name=\"wiki classification\">Wiki page on document classification</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/TSCP-classification\">Wiki page on document classification</link>"
msgstr ""
#. ViF5g
@@ -46745,13 +46889,13 @@ msgctxt ""
msgid "<bookmark_value>font features</bookmark_value> <bookmark_value>font features;OpenType</bookmark_value> <bookmark_value>OpenType;font features</bookmark_value>"
msgstr ""
-#. BLj8y
+#. 8ZxB9
#: font_features.xhp
msgctxt ""
"font_features.xhp\n"
"hd_id581541769624076\n"
"help.text"
-msgid "<link href=\"text/shared/01/font_features.xhp\" name=\"Features\">Font Features</link>"
+msgid "<link href=\"text/shared/01/font_features.xhp\">Font Features</link>"
msgstr ""
#. rHZVt
@@ -46826,13 +46970,13 @@ msgctxt ""
msgid "The feature visualization window displays a default text where the selected features can be inspected."
msgstr ""
-#. kcd8R
+#. aCRz9
#: font_features.xhp
msgctxt ""
"font_features.xhp\n"
"par_id801541774734588\n"
"help.text"
-msgid "<link href=\"https://en.wikipedia.org/wiki/OpenType\" name=\"OpenType\">Wikipedia on OpenType</link>"
+msgid "<link href=\"https://en.wikipedia.org/wiki/OpenType\">Wikipedia on OpenType</link>"
msgstr ""
#. SAPKA
@@ -47024,14 +47168,14 @@ msgctxt ""
msgid "<ahelp hid=\"SVX_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=\"SVX_HID_GALLERY_LISTVIEW\" visibility=\"hidden\">Mostra els continguts de la <emph>Galeria</emph> com a icones petites, juntament amb el títol i la informació sobre el camí corresponents.</ahelp>"
-#. SJKyz
+#. NjGBG
#: gallery.xhp
msgctxt ""
"gallery.xhp\n"
"hd_id3153894\n"
"help.text"
-msgid "<link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link>"
-msgstr "<link href=\"text/shared/01/gallery.xhp\" name=\"Galeria\">Galeria</link>"
+msgid "<link href=\"text/shared/01/gallery.xhp\">Gallery</link>"
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Galeria</link>"
#. o76wC
#: gallery.xhp
@@ -47141,14 +47285,14 @@ msgctxt ""
msgid "The <emph>Properties of (Theme)</emph> dialog contains the following tabs:"
msgstr "El diàleg <emph>Propietats de (Tema)</emph> conté les pestanyes següents:"
-#. WBTaB
+#. rRbmM
#: gallery.xhp
msgctxt ""
"gallery.xhp\n"
"hd_id3151384\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=\"Fitxers\">Fitxers</link>"
+msgid "<link href=\"text/shared/01/gallery_files.xhp\">Files</link>"
+msgstr "<link href=\"text/shared/01/gallery_files.xhp\">Fitxers</link>"
#. dFbRR
#: gallery_files.xhp
@@ -47519,13 +47663,13 @@ msgctxt ""
msgid "<bookmark_value>image;compression</bookmark_value> <bookmark_value>image;reduce image size</bookmark_value> <bookmark_value>image;size reduction</bookmark_value> <bookmark_value>image;resize</bookmark_value> <bookmark_value>image;change resolution</bookmark_value>"
msgstr ""
-#. isaEV
+#. WZoFm
#: image_compression.xhp
msgctxt ""
"image_compression.xhp\n"
"hd_id581534528193621\n"
"help.text"
-msgid "<link href=\"text/shared/01/image_compression.xhp\" name=\"compress graphics\">Compress Image</link>"
+msgid "<link href=\"text/shared/01/image_compression.xhp\">Compress Image</link>"
msgstr ""
#. QNR3c
@@ -47735,13 +47879,13 @@ msgctxt ""
msgid "Click to calculate the size of the image data, based on the settings of the dialog box."
msgstr "Feu-hi clic per a calcular la mida de les dades de la imatge en funció dels paràmetres triats al diàleg."
-#. 29KLN
+#. 5E3PA
#: image_compression.xhp
msgctxt ""
"image_compression.xhp\n"
"par_id121534718376301\n"
"help.text"
-msgid "<link href=\"https://en.wikipedia.org/wiki/Image_file_formats\" name=\"wikipedia\">Wikipedia on image file formats.</link>"
+msgid "<link href=\"https://en.wikipedia.org/wiki/Image_file_formats\">Wikipedia on image file formats.</link>"
msgstr ""
#. zsqvo
@@ -47978,14 +48122,14 @@ msgctxt ""
msgid "Find"
msgstr "Busca"
-#. sTDLD
+#. oZLEE
#: menu_edit_find.xhp
msgctxt ""
"menu_edit_find.xhp\n"
"hd_id102920151222294818\n"
"help.text"
-msgid "<link href=\"text/shared/01/menu_edit_find.xhp\" name=\"Find\">Find</link>"
-msgstr "<link href=\"text/shared/01/menu_edit_find.xhp\" name=\"Busca\">Busca</link>"
+msgid "<link href=\"text/shared/01/menu_edit_find.xhp\">Find</link>"
+msgstr "<link href=\"text/shared/01/menu_edit_find.xhp\">Busca</link>"
#. zuPeA
#: menu_edit_find.xhp
@@ -48005,14 +48149,14 @@ msgctxt ""
msgid "Sidebar"
msgstr "Barra lateral"
-#. eCfXA
+#. fsfuC
#: menu_view_sidebar.xhp
msgctxt ""
"menu_view_sidebar.xhp\n"
"hd_id102720150837294513\n"
"help.text"
-msgid "<link href=\"text/shared/01/menu_view_sidebar.xhp\" name=\"Sidebar\">Sidebar</link>"
-msgstr "<link href=\"text/shared/01/menu_view_sidebar.xhp\" name=\"Sidebar\">Barra lateral</link>"
+msgid "<link href=\"text/shared/01/menu_view_sidebar.xhp\">Sidebar</link>"
+msgstr "<link href=\"text/shared/01/menu_view_sidebar.xhp\">Barra lateral</link>"
#. x2xsT
#: menu_view_sidebar.xhp
@@ -48050,13 +48194,13 @@ msgctxt ""
msgid "Minimal Column Width"
msgstr ""
-#. rDHGh
+#. HDnW2
#: minimal_column_width.xhp
msgctxt ""
"minimal_column_width.xhp\n"
"hd_id421654218230011\n"
"help.text"
-msgid "<variable id=\"minimalcolh1\"><link href=\"text/shared/01/minimal_column_width.xhp\" name=\"Minimal Column Width\">Minimal Column Width</link></variable>"
+msgid "<variable id=\"minimalcolh1\"><link href=\"text/shared/01/minimal_column_width.xhp\">Minimal Column Width</link></variable>"
msgstr ""
#. FTeCy
@@ -48149,13 +48293,13 @@ msgctxt ""
msgid "Minimal Row Height"
msgstr ""
-#. iNvE8
+#. tz7La
#: minimal_row_height.xhp
msgctxt ""
"minimal_row_height.xhp\n"
"hd_id421654218230011\n"
"help.text"
-msgid "<variable id=\"minimalrowh1\"><link href=\"text/shared/01/minimal_row_height.xhp\" name=\"Minimal Row Height\">Minimal Row Height</link></variable>"
+msgid "<variable id=\"minimalrowh1\"><link href=\"text/shared/01/minimal_row_height.xhp\">Minimal Row Height</link></variable>"
msgstr ""
#. c8ffb
@@ -48167,13 +48311,13 @@ msgctxt ""
msgid "Adjust the row height for selected row(s) so that the tallest content in each selected row fits exactly."
msgstr ""
-#. 344TX
+#. WfVoz
#: minimal_row_height.xhp
msgctxt ""
"minimal_row_height.xhp\n"
"par_id211656116102899\n"
"help.text"
-msgid "This option is only available if the selection contains a row with a fixed height. The command has the same effect as selecting the <menuitem>Fit to size</menuitem> option for <link href=\"text/swriter/01/05110100.xhp\" name=\"Row Height\">Row Height</link>."
+msgid "This option is only available if the selection contains a row with a fixed height. The command has the same effect as selecting the <menuitem>Fit to size</menuitem> option for <link href=\"text/swriter/01/05110100.xhp\">Row Height</link>."
msgstr ""
#. xGDaw
@@ -48383,67 +48527,67 @@ msgctxt ""
msgid "%PRODUCTNAME relies on the operating system's installed media support."
msgstr ""
-#. E4JVX
+#. UULCj
#: moviesound.xhp
msgctxt ""
"moviesound.xhp\n"
"par_id231511209745892\n"
"help.text"
-msgid "<emph>For Microsoft Windows</emph>: %PRODUCTNAME can open anything for which <emph>DirectShow</emph> filters are installed (<link href=\"https://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx\" name=\"mediaplayer\">list of default formats</link>)."
+msgid "<emph>For Microsoft Windows</emph>: %PRODUCTNAME can open anything for which <emph>DirectShow</emph> filters are installed (<link href=\"https://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx\">list of default formats</link>)."
msgstr ""
-#. A4XDK
+#. kUmBA
#: moviesound.xhp
msgctxt ""
"moviesound.xhp\n"
"par_id601511209768414\n"
"help.text"
-msgid "<emph>For GNU/Linux</emph>: %PRODUCTNAME uses <emph>gstreamer</emph>, so whatever you can play using gstreamer can be used with %PRODUCTNAME (<link href=\"https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html#list-of-defined-types\" name=\"gstreamer1\">list of defined types</link>)."
+msgid "<emph>For GNU/Linux</emph>: %PRODUCTNAME uses <emph>gstreamer</emph>, so whatever you can play using gstreamer can be used with %PRODUCTNAME (<link href=\"https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html#list-of-defined-types\">list of defined types</link>)."
msgstr ""
-#. fnNBR
+#. zY4VF
#: moviesound.xhp
msgctxt ""
"moviesound.xhp\n"
"par_id841511209784505\n"
"help.text"
-msgid "<emph>For Apple macOS</emph>: %PRODUCTNAME uses <emph>QuickTime</emph> supported media formats (<link href=\"https://help.apple.com/finalcutpro/mac/10.4.6/en.lproj/ver2833f855.html\" name=\"quicktime2\">list of media formats</link>)."
+msgid "<emph>For Apple macOS</emph>: %PRODUCTNAME uses <emph>QuickTime</emph> supported media formats (<link href=\"https://help.apple.com/finalcutpro/mac/10.4.6/en.lproj/ver2833f855.html\">list of media formats</link>)."
msgstr ""
-#. pNgz8
+#. LGKEk
#: moviesound.xhp
msgctxt ""
"moviesound.xhp\n"
"par_id391511209364018\n"
"help.text"
-msgid "<link href=\"https://docs.microsoft.com/en-us/windows/win32/directshow/supported-formats-in-directshow\" name=\"directshow\">List of default formats for Microsoft Windows DirectShow</link>."
+msgid "<link href=\"https://docs.microsoft.com/en-us/windows/win32/directshow/supported-formats-in-directshow\">List of default formats for Microsoft Windows DirectShow</link>."
msgstr ""
-#. SqAph
+#. JoDBW
#: moviesound.xhp
msgctxt ""
"moviesound.xhp\n"
"par_id921511209448360\n"
"help.text"
-msgid "<link href=\"https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html#list-of-defined-types\" name=\"gstreamer\">List of defined types for gstreamer in GNU/Linux</link>."
+msgid "<link href=\"https://gstreamer.freedesktop.org/documentation/plugin-development/advanced/media-types.html#list-of-defined-types\">List of defined types for gstreamer in GNU/Linux</link>."
msgstr ""
-#. 5x8d6
+#. kv94n
#: moviesound.xhp
msgctxt ""
"moviesound.xhp\n"
"par_id591511209548848\n"
"help.text"
-msgid "<link href=\"https://help.apple.com/finalcutpro/mac/10.4.6/en.lproj/ver2833f855.html\" name=\"quicktime\">List of media formats for Apple macOS QuickTime</link>."
-msgstr "<link href=\"https://help.apple.com/finalcutpro/mac/10.4.6/en.lproj/ver2833f855.html\" name=\"quicktime\">Llista de formats multimèdia compatibles amb el QuickTime del macOS d'Apple</link> (en anglés)."
+msgid "<link href=\"https://help.apple.com/finalcutpro/mac/10.4.6/en.lproj/ver2833f855.html\">List of media formats for Apple macOS QuickTime</link>."
+msgstr "<link href=\"https://help.apple.com/finalcutpro/mac/10.4.6/en.lproj/ver2833f855.html\">Llista de formats multimèdia compatibles amb el QuickTime del macOS d'Apple</link> (en anglés)."
-#. DLcGC
+#. tgPoW
#: moviesound.xhp
msgctxt ""
"moviesound.xhp\n"
"par_id561511210645479\n"
"help.text"
-msgid "<link href=\"https://ask.libreoffice.org/t/what-video-formats-does-libreoffice-impress-support/291\" name=\"AskLO\">“What video formats does Impress support?” on Ask</link>"
+msgid "<link href=\"https://ask.libreoffice.org/t/what-video-formats-does-libreoffice-impress-support/291\">“What video formats does Impress support?” on Ask</link>"
msgstr ""
#. BfayS
@@ -48770,14 +48914,14 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/floating_toolbar.xhp\">Toolbars</link>"
msgstr ""
-#. tZPkf
+#. wNdU2
#: notebook_bar.xhp
msgctxt ""
"notebook_bar.xhp\n"
"par_id921589901261168\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010800.xhp\" name=\"view\">View</link> options"
-msgstr "Opcions de <link href=\"text/shared/optionen/01010800.xhp\" name=\"view\">visualització</link>"
+msgid "<link href=\"text/shared/optionen/01010800.xhp\">View</link> options"
+msgstr "Opcions de <link href=\"text/shared/optionen/01010800.xhp\">visualització</link>"
#. kgVKD
#: online_update.xhp
@@ -49121,13 +49265,13 @@ msgctxt ""
msgid "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions.</ahelp>"
msgstr "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">El gestor d'extensions afig, suprimeix, desactiva, activa i actualitza les extensions del %PRODUCTNAME.</ahelp>"
-#. DaSEM
+#. wA7Aa
#: packagemanager.xhp
msgctxt ""
"packagemanager.xhp\n"
"par_id941619265371175\n"
"help.text"
-msgid "For security reasons, the installation and removal of extensions are controlled by settings in the <link href=\"text/shared/optionen/expertconfig.xhp\" name=\"expert configuration\">Expert Configuration</link>. By default, installation and removal are enabled."
+msgid "For security reasons, the installation and removal of extensions are controlled by settings in the <link href=\"text/shared/optionen/expertconfig.xhp\">Expert Configuration</link>. By default, installation and removal are enabled."
msgstr ""
#. AEioS
@@ -49562,14 +49706,14 @@ msgctxt ""
msgid "Password"
msgstr "Contrasenya"
-#. BKsuj
+#. yjUXE
#: password_dlg.xhp
msgctxt ""
"password_dlg.xhp\n"
"hd_id3146902\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=\"Contrasenya\">Contrasenya</link>"
+msgid "<link href=\"text/shared/01/password_dlg.xhp\">Password</link>"
+msgstr "<link href=\"text/shared/01/password_dlg.xhp\">Contrasenya</link>"
#. F3sTb
#: password_dlg.xhp
@@ -49796,13 +49940,13 @@ msgctxt ""
msgid "Paste as Column Before"
msgstr ""
-#. gsE4t
+#. 8NT78
#: pastecolumnleft.xhp
msgctxt ""
"pastecolumnleft.xhp\n"
"hd_id211584810952165\n"
"help.text"
-msgid "<variable id=\"pastecolumnlefth1\"><link href=\"text/shared/01/pastecolumnleft.xhp\" name=\"Paste Column Before\">Paste as Column Before</link></variable>"
+msgid "<variable id=\"pastecolumnlefth1\"><link href=\"text/shared/01/pastecolumnleft.xhp\">Paste as Column Before</link></variable>"
msgstr ""
#. sYvSY
@@ -49832,13 +49976,13 @@ msgctxt ""
msgid "<bookmark_value>paste;nested table</bookmark_value> <bookmark_value>paste special;nested table</bookmark_value> <bookmark_value>paste nested table</bookmark_value>"
msgstr ""
-#. BXzAw
+#. 2RQDF
#: pastenestedtable.xhp
msgctxt ""
"pastenestedtable.xhp\n"
"hd_id81584806817671\n"
"help.text"
-msgid "<variable id=\"pastenestedtableh1\"><link href=\"text/shared/01/pastenestedtable.xhp\" name=\"Paste Nested Table\">Paste Nested Table</link></variable>"
+msgid "<variable id=\"pastenestedtableh1\"><link href=\"text/shared/01/pastenestedtable.xhp\">Paste Nested Table</link></variable>"
msgstr ""
#. sr9PD
@@ -49868,13 +50012,13 @@ msgctxt ""
msgid "Paste as Row Above"
msgstr ""
-#. LH8xb
+#. ftJLG
#: pasterowabove.xhp
msgctxt ""
"pasterowabove.xhp\n"
"hd_id211584810952165\n"
"help.text"
-msgid "<variable id=\"pasterowaboveh1\"><link href=\"text/shared/01/pasterowabove.xhp\" name=\"Paste as Row Above\">Paste as Row Above</link></variable>"
+msgid "<variable id=\"pasterowaboveh1\"><link href=\"text/shared/01/pasterowabove.xhp\">Paste as Row Above</link></variable>"
msgstr ""
#. YbQg8
@@ -49895,14 +50039,14 @@ msgctxt ""
msgid "Paste Special"
msgstr "Enganxament especial"
-#. HuP73
+#. 4Vh77
#: pastespecialmenu.xhp
msgctxt ""
"pastespecialmenu.xhp\n"
"hd_id361584804540671\n"
"help.text"
-msgid "<variable id=\"pastespecialmenuh1\"><link href=\"text/shared/01/pastespecialmenu.xhp\" name=\"paste special\">Paste Special</link></variable>"
-msgstr "<variable id=\"pastespecialmenuh1\"><link href=\"text/shared/01/pastespecialmenu.xhp\" name=\"Enganxament especial\">Enganxament especial</link></variable>"
+msgid "<variable id=\"pastespecialmenuh1\"><link href=\"text/shared/01/pastespecialmenu.xhp\">Paste Special</link></variable>"
+msgstr "<variable id=\"pastespecialmenuh1\"><link href=\"text/shared/01/pastespecialmenu.xhp\">Enganxament especial</link></variable>"
#. RWjTr
#: pastespecialmenu.xhp
@@ -49994,13 +50138,13 @@ msgctxt ""
msgid "<bookmark_value>paste;unformatted text</bookmark_value><bookmark_value>paste special;unformatted text</bookmark_value><bookmark_value>unformatted text;paste special</bookmark_value>"
msgstr ""
-#. G344i
+#. 2QZT3
#: pasteunformatted.xhp
msgctxt ""
"pasteunformatted.xhp\n"
"hd_id41584805874368\n"
"help.text"
-msgid "<variable id=\"pasteunformattedh1\"><link href=\"text/shared/01/pasteunformatted.xhp\" name=\"Paste Unformatted Text\">Paste Unformatted Text</link></variable>"
+msgid "<variable id=\"pasteunformattedh1\"><link href=\"text/shared/01/pasteunformatted.xhp\">Paste Unformatted Text</link></variable>"
msgstr ""
#. euzNe
@@ -50264,14 +50408,14 @@ msgctxt ""
msgid "<bookmark_value>embedding fonts in document file</bookmark_value><bookmark_value>documents; embedding fonts</bookmark_value><bookmark_value>font embedding; in documents</bookmark_value><bookmark_value>fonts; embedding</bookmark_value><bookmark_value>fonts; licensing for embedding</bookmark_value><bookmark_value>embedding; fonts</bookmark_value><bookmark_value>embedding licensed fonts</bookmark_value>"
msgstr ""
-#. VdsXE
+#. b2Cu3
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
"hd_id3148668\n"
"help.text"
-msgid "<link href=\"text/shared/01/prop_font_embed.xhp\" name=\"Fonts\">Font</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Tipus de lletra\">Tipus de lletra</link>"
+msgid "<link href=\"text/shared/01/prop_font_embed.xhp\">Font</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\">Tipus de lletra</link>"
#. ERyPL
#: prop_font_embed.xhp
@@ -50336,23 +50480,23 @@ msgctxt ""
msgid "<bookmark_value>EPUB;export</bookmark_value> <bookmark_value>electronic publication</bookmark_value> <bookmark_value>exporting;to EPUB</bookmark_value>"
msgstr ""
-#. hmHhQ
+#. AGtDv
#: ref_epub_export.xhp
msgctxt ""
"ref_epub_export.xhp\n"
"hd_id3149532\n"
"help.text"
-msgid "<variable id=\"ref_epub_export\"><link href=\"text/shared/01/ref_epub_export.xhp\" name=\"Export as EPUB\">Export as EPUB</link></variable>"
-msgstr "<variable id=\"ref_epub_export\"><link href=\"text/shared/01/ref_epub_export.xhp\" name=\"Exporta com a EPUB\">Exporta com a EPUB</link></variable>"
+msgid "<variable id=\"ref_epub_export\"><link href=\"text/shared/01/ref_epub_export.xhp\">Export as EPUB</link></variable>"
+msgstr "<variable id=\"ref_epub_export\"><link href=\"text/shared/01/ref_epub_export.xhp\">Exporta com a EPUB</link></variable>"
-#. eFrro
+#. bBK9a
#: ref_epub_export.xhp
msgctxt ""
"ref_epub_export.xhp\n"
"par_id3154044\n"
"help.text"
-msgid "Export the current file to <link href=\"text/shared/00/00000002.xhp#epub\" name=\"epub\">EPUB</link>."
-msgstr "Exporta el fitxer actual com a <link href=\"text/shared/00/00000002.xhp#epub\" name=\"epub\">EPUB</link>."
+msgid "Export the current file to <link href=\"text/shared/00/00000002.xhp#epub\">EPUB</link>."
+msgstr "Exporta el fitxer actual com a <link href=\"text/shared/00/00000002.xhp#epub\">EPUB</link>."
#. Rhx4d
#: ref_epub_export.xhp
@@ -50651,14 +50795,14 @@ msgctxt ""
msgid "<bookmark_value>PDF;export</bookmark_value><bookmark_value>portable document format</bookmark_value><bookmark_value>exporting;to PDF</bookmark_value>"
msgstr ""
-#. iNwuy
+#. FtCia
#: ref_pdf_export.xhp
msgctxt ""
"ref_pdf_export.xhp\n"
"hd_id3149532\n"
"help.text"
-msgid "<variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Export as PDF\">Export as PDF</link></variable>"
-msgstr "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"Missatges de correu electrònic com a PDF\">Missatges de correu electrònic com a PDF</link></variable>"
+msgid "<variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\">Export as PDF</link></variable>"
+msgstr "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\">Missatges de correu electrònic com a PDF</link></variable>"
#. TNNPb
#: ref_pdf_export.xhp
@@ -50705,13 +50849,13 @@ msgctxt ""
msgid "<bookmark_value>PDF export;digital signature</bookmark_value><bookmark_value>PDF export;sign PDF document</bookmark_value><bookmark_value>PDF export;time stamp</bookmark_value>"
msgstr ""
-#. ChX9A
+#. 8F9qz
#: ref_pdf_export_digital_signature.xhp
msgctxt ""
"ref_pdf_export_digital_signature.xhp\n"
"hd_id13068636\n"
"help.text"
-msgid "<variable id=\"pdfexportdigitalsignatureh1\"><link href=\"text/shared/01/ref_pdf_export_digital_signature.xhp\" name=\"Digital Signatures\">Digital Signatures</link></variable>"
+msgid "<variable id=\"pdfexportdigitalsignatureh1\"><link href=\"text/shared/01/ref_pdf_export_digital_signature.xhp\">Digital Signatures</link></variable>"
msgstr ""
#. uXfCT
@@ -50921,13 +51065,13 @@ msgctxt ""
msgid "<bookmark_value>PDF export;general options</bookmark_value><bookmark_value>hybrid PDF</bookmark_value><bookmark_value>PDF forms</bookmark_value>"
msgstr ""
-#. 7dwDw
+#. 3q3sT
#: ref_pdf_export_general.xhp
msgctxt ""
"ref_pdf_export_general.xhp\n"
"hd_id746482\n"
"help.text"
-msgid "<variable id=\"pdfexportgeneralh1\"><link href=\"text/shared/01/ref_pdf_export_general.xhp\" name=\"General tab\">General</link></variable>"
+msgid "<variable id=\"pdfexportgeneralh1\"><link href=\"text/shared/01/ref_pdf_export_general.xhp\">General</link></variable>"
msgstr ""
#. G9CkE
@@ -51587,13 +51731,13 @@ msgctxt ""
msgid "<bookmark_value>PDF export;initial document view</bookmark_value>"
msgstr ""
-#. sygue
+#. DdRZD
#: ref_pdf_export_initial_view.xhp
msgctxt ""
"ref_pdf_export_initial_view.xhp\n"
"hd_id9796441\n"
"help.text"
-msgid "<variable id=\"pdfexportinitialviewh1\"><link href=\"text/shared/01/ref_pdf_export_initial_view.xhp\" name=\"Initial View tab\">Initial View</link></variable>"
+msgid "<variable id=\"pdfexportinitialviewh1\"><link href=\"text/shared/01/ref_pdf_export_initial_view.xhp\">Initial View</link></variable>"
msgstr ""
#. A3pPj
@@ -51902,13 +52046,13 @@ msgctxt ""
msgid "<bookmark_value>PDF export;links</bookmark_value>"
msgstr ""
-#. 4baAA
+#. 5wj5m
#: ref_pdf_export_links.xhp
msgctxt ""
"ref_pdf_export_links.xhp\n"
"hd_id9464094\n"
"help.text"
-msgid "<variable id=\"pdfexportlinksh1\"><link href=\"text/shared/01/ref_pdf_export_links.xhp\" name=\"Links tab\">Links</link></variable>"
+msgid "<variable id=\"pdfexportlinksh1\"><link href=\"text/shared/01/ref_pdf_export_links.xhp\">Links</link></variable>"
msgstr ""
#. hBEgz
@@ -52073,13 +52217,13 @@ msgctxt ""
msgid "<bookmark_value>PDF export;security</bookmark_value>"
msgstr ""
-#. 4c4XK
+#. uXcF8
#: ref_pdf_export_security.xhp
msgctxt ""
"ref_pdf_export_security.xhp\n"
"hd_id3068636\n"
"help.text"
-msgid "<variable id=\"pdfexportsecurityh1\"><link href=\"text/shared/01/ref_pdf_export_security.xhp\" name=\"Security tab\">Security</link></variable>"
+msgid "<variable id=\"pdfexportsecurityh1\"><link href=\"text/shared/01/ref_pdf_export_security.xhp\">Security</link></variable>"
msgstr ""
#. RRcJ2
@@ -52523,13 +52667,13 @@ msgctxt ""
msgid "<bookmark_value>PDF export;user interface</bookmark_value>"
msgstr ""
-#. TYF4D
+#. rQDPJ
#: ref_pdf_export_user_interface.xhp
msgctxt ""
"ref_pdf_export_user_interface.xhp\n"
"hd_id18005\n"
"help.text"
-msgid "<variable id=\"pdfexportuserinterfaceh1\"><link href=\"text/shared/01/ref_pdf_export_user_interface.xhp\" name=\"User Interface tab\">User Interface</link></variable>"
+msgid "<variable id=\"pdfexportuserinterfaceh1\"><link href=\"text/shared/01/ref_pdf_export_user_interface.xhp\">User Interface</link></variable>"
msgstr ""
#. tiBmQ
@@ -52766,13 +52910,13 @@ msgctxt ""
msgid "Email as PDF"
msgstr ""
-#. rAFEF
+#. jUMVz
#: ref_pdf_send_as.xhp
msgctxt ""
"ref_pdf_send_as.xhp\n"
"hd_id3146902\n"
"help.text"
-msgid "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"Email as PDF\">Email as PDF</link></variable>"
+msgid "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\">Email as PDF</link></variable>"
msgstr ""
#. 7Uvgd
@@ -53000,13 +53144,13 @@ msgctxt ""
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
msgstr "<bookmark_value>signatura digital;signatura de PDF existents</bookmark_value>"
-#. ohSz3
+#. rNCsL
#: signexistingpdf.xhp
msgctxt ""
"signexistingpdf.xhp\n"
"hd_id201526432498222\n"
"help.text"
-msgid "<variable id=\"signexistingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
+msgid "<variable id=\"signexistingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\">Signing Existing PDF files</link></variable>"
msgstr ""
#. RM32g
@@ -53054,13 +53198,13 @@ msgctxt ""
msgid "<bookmark_value>digital signature;sign signature line</bookmark_value><bookmark_value>signature line;signing</bookmark_value>"
msgstr ""
-#. NC7Qf
+#. GrLyg
#: signsignatureline.xhp
msgctxt ""
"signsignatureline.xhp\n"
"hd_id401526575112776\n"
"help.text"
-msgid "<variable id=\"signsignatureline01\"><link href=\"text/shared/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Digitally Signing the Signature Line</link></variable>"
+msgid "<variable id=\"signsignatureline01\"><link href=\"text/shared/01/signsignatureline.xhp\">Digitally Signing the Signature Line</link></variable>"
msgstr ""
#. wfYC7
@@ -53144,13 +53288,13 @@ msgctxt ""
msgid "Instructions from the document creator"
msgstr ""
-#. GoLTw
+#. QeAww
#: signsignatureline.xhp
msgctxt ""
"signsignatureline.xhp\n"
"par_id271526564228571\n"
"help.text"
-msgid "<ahelp hid=\".\">This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">adding the signature line</link>.</ahelp>"
+msgid "<ahelp hid=\".\">This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\">adding the signature line</link>.</ahelp>"
msgstr ""
#. H8zHw
@@ -53207,13 +53351,13 @@ msgctxt ""
msgid "<bookmark_value>time stamp;digital signature</bookmark_value> <bookmark_value>digital signature;time stamp</bookmark_value> <bookmark_value>time stamp authority</bookmark_value> <bookmark_value>TSA</bookmark_value> <bookmark_value>time stamp for PDF digital signature</bookmark_value>"
msgstr ""
-#. QwKC7
+#. NRajA
#: timestampauth.xhp
msgctxt ""
"timestampauth.xhp\n"
"hd_id901597433114069\n"
"help.text"
-msgid "<variable id=\"timestampauthorityh1\"><link href=\"text/shared/01/timestampauth.xhp\" name=\"tsa\">Time Stamp Authority</link></variable>"
+msgid "<variable id=\"timestampauthorityh1\"><link href=\"text/shared/01/timestampauth.xhp\">Time Stamp Authority</link></variable>"
msgstr ""
#. L47NV
@@ -53270,13 +53414,13 @@ msgctxt ""
msgid "Add"
msgstr "Afig"
-#. vZdyd
+#. TPZGY
#: timestampauth.xhp
msgctxt ""
"timestampauth.xhp\n"
"par_idN1068B1\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/02/namedialog.xhp\" name=\"name dialog\">Name dialog</link> to enter a new Time Stamping Authority URL."
+msgid "Opens the <link href=\"text/shared/02/namedialog.xhp\">Name dialog</link> to enter a new Time Stamping Authority URL."
msgstr ""
#. stnAc
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/02.po b/source/ca-valencia/helpcontent2/source/text/shared/02.po
index 79154c37b3c..6a16da109b5 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/02.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/ca_VALENCIA/>\n"
@@ -35,23 +35,23 @@ msgctxt ""
msgid "<bookmark_value>printing; directly</bookmark_value>"
msgstr "<bookmark_value>impressió, directa</bookmark_value>"
-#. WgGRd
+#. p7Byg
#: 01110000.xhp
msgctxt ""
"01110000.xhp\n"
"hd_id3153539\n"
"help.text"
-msgid "<link href=\"text/shared/02/01110000.xhp\" name=\"Print File Directly\">Print File Directly</link>"
-msgstr "<link href=\"text/shared/02/01110000.xhp\" name=\"Imprimeix el fitxer directament\">Imprimeix el fitxer directament</link>"
+msgid "<link href=\"text/shared/02/01110000.xhp\">Print File Directly</link>"
+msgstr "<link href=\"text/shared/02/01110000.xhp\">Imprimeix el fitxer directament</link>"
-#. dMLnY
+#. 7YZD2
#: 01110000.xhp
msgctxt ""
"01110000.xhp\n"
"par_id3154398\n"
"help.text"
-msgid "<ahelp hid=\".uno:PrintDefault\">Click the <emph>Print File Directly</emph> icon to print the active document with the current default print settings.</ahelp> These can be found in the <emph>Printer Setup</emph> dialog, which you can call with the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\"><emph>Printer Settings</emph></link> menu command."
-msgstr "<ahelp hid=\".uno:PrintDefault\">Feu clic a la icona <emph>Imprimeix el fitxer directament</emph> per imprimir el document actiu amb els paràmetres d'impressió actuals per defecte.</ahelp> Estos paràmetres es poden trobar al diàleg <emph>Configuració de la impressora</emph> que podeu cridar amb l'orde <link href=\"text/shared/01/01140000.xhp\" name=\"Paràmetres de la impressora\"><emph>Paràmetres de la impressora</emph></link>."
+msgid "<ahelp hid=\".uno:PrintDefault\">Click the <emph>Print File Directly</emph> icon to print the active document with the current default print settings.</ahelp> These can be found in the <emph>Printer Setup</emph> dialog, which you can call with the <link href=\"text/shared/01/01140000.xhp\"><emph>Printer Settings</emph></link> menu command."
+msgstr "<ahelp hid=\".uno:PrintDefault\">Feu clic a la icona <emph>Imprimeix el fitxer directament</emph> per imprimir el document actiu amb els paràmetres d'impressió actuals per defecte.</ahelp> Estos paràmetres es poden trobar al diàleg <emph>Configuració de la impressora</emph> que podeu cridar amb l'orde <link href=\"text/shared/01/01140000.xhp\"><emph>Paràmetres de la impressora</emph></link>."
#. EqERF
#: 01110000.xhp
@@ -107,14 +107,14 @@ msgctxt ""
msgid "<bookmark_value>Drawing bar</bookmark_value><bookmark_value>lines; draw functions</bookmark_value><bookmark_value>polygon drawing</bookmark_value><bookmark_value>freeform lines; draw functions</bookmark_value><bookmark_value>text boxes; positioning</bookmark_value><bookmark_value>headings; entering as text box</bookmark_value><bookmark_value>text objects; draw functions</bookmark_value><bookmark_value>ticker text</bookmark_value><bookmark_value>text; animating</bookmark_value><bookmark_value>vertical callouts</bookmark_value><bookmark_value>vertical text boxes</bookmark_value><bookmark_value>cube drawing</bookmark_value><bookmark_value>triangle drawing</bookmark_value><bookmark_value>ellipse drawing</bookmark_value><bookmark_value>rectangle drawing</bookmark_value><bookmark_value>shapes</bookmark_value>"
msgstr "<bookmark_value>barra de dibuix</bookmark_value><bookmark_value>línies; funcions de dibuix</bookmark_value><bookmark_value>dibuix de polígons</bookmark_value><bookmark_value>línies de forma lliure; funcions de dibuix</bookmark_value><bookmark_value>quadres de text; posicionament</bookmark_value><bookmark_value>capçaleres; introducció com a quadre de text</bookmark_value><bookmark_value>objectes de text; funcions de dibuix</bookmark_value><bookmark_value>text teletip</bookmark_value><bookmark_value>text; animació</bookmark_value><bookmark_value>llegendes verticals</bookmark_value><bookmark_value>quadres de text verticals</bookmark_value><bookmark_value>cub, dibuix</bookmark_value><bookmark_value>triangle, dibuix</bookmark_value><bookmark_value>el·lipse, dibuix</bookmark_value><bookmark_value>rectangle, dibuix</bookmark_value><bookmark_value>formes</bookmark_value>"
-#. H4R3Z
+#. 5SdT9
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3152363\n"
"help.text"
-msgid "<link href=\"text/shared/02/01140000.xhp\" name=\"Show Draw Functions\">Show Draw Functions</link>"
-msgstr "<link href=\"text/shared/02/01140000.xhp\" name=\"Mostra de les funcions de dibuix\">Mostra de les funcions de dibuix</link>"
+msgid "<link href=\"text/shared/02/01140000.xhp\">Show Draw Functions</link>"
+msgstr "<link href=\"text/shared/02/01140000.xhp\">Mostra de les funcions de dibuix</link>"
#. WtUuY
#: 01140000.xhp
@@ -314,14 +314,14 @@ msgctxt ""
msgid "Hold the <emph>Shift</emph> key while drawing a polygon to position new points at 45 degree angles."
msgstr "Premeu la tecla <emph>Maj</emph> mentre dibuixeu un polígon per a col·locar punts nous a 45 graus."
-#. NoTGN
+#. PYqw3
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3154319\n"
"help.text"
-msgid "The <link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\"><emph>Edit Points</emph></link> mode enables you to interactively modify the individual points of the polygon."
-msgstr "El mode <link href=\"text/shared/01/05270000.xhp\" name=\"Edita els punts\"><emph>Edita els punts</emph></link> vos permet modificar interactivament els punts individuals del polígon."
+msgid "The <link href=\"text/shared/01/05270000.xhp\"><emph>Edit Points</emph></link> mode enables you to interactively modify the individual points of the polygon."
+msgstr "El mode <link href=\"text/shared/01/05270000.xhp\"><emph>Edita els punts</emph></link> vos permet modificar interactivament els punts individuals del polígon."
#. GcF9Y
#: 01140000.xhp
@@ -539,14 +539,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DrawCaption\">Draws a line that ends in a rectangular callout with horizontal text direction from where you drag in the current document. Drag a handle of the callout to resize the callout. To add text, click the edge of the callout, and then type or paste your text. To change a rectangular callout to a rounded callout, drag the largest corner handle when the pointer changes to a hand.</ahelp>"
msgstr "<ahelp hid=\".uno:DrawCaption\">Dibuixa una línia que acaba amb una llegenda rectangular amb direcció de text horitzontal allà on l'arrossegueu del document actual. Arrossegueu una ansa de la llegenda per redimensionar-la. Per afegir text, feu clic a la vora de la llegenda i escriviu o enganxeu el text. Per canviar una llegenda rectangular per una llegenda arrodonida, arrossegueu l'ansa de l'angle més gran quan la busca es transformi en una mà.</ahelp>"
-#. 3wvLq
+#. FEZGH
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_idN10E50\n"
"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punts\">Punts</link>"
+msgid "<link href=\"text/shared/01/05270000.xhp\">Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\">Punts</link>"
#. ZHTzD
#: 01140000.xhp
@@ -557,14 +557,14 @@ msgctxt ""
msgid "Enables you to edit points on your drawing."
msgstr "Permet editar punts del dibuix."
-#. KAJbx
+#. tWRjq
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_idN10E75\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=\"Des d'un fitxer\">Des d'un fitxer</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\">Des d'un fitxer</link>"
#. vwjvL
#: 01140000.xhp
@@ -638,14 +638,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:VerticalText\">Draws a text box with vertical text direction where you click or drag in the current document. Click anywhere in the document, and then type or paste your text. You can also move the cursor to where you want to add the text, drag a text box, and then type or paste your text. Only available when Asian language support is enabled.</ahelp>"
msgstr "<ahelp hid=\".uno:VerticalText\">Dibuixa un quadre de text amb direcció de text horitzontal quan feu clic o l'arrossegueu al document actual. Feu clic a qualsevol lloc del document i escriviu o enganxeu el text. També podeu moure el cursor allà on vulgueu afegir el text, arrossegar un quadre de text i escriure o enganxar el text. Això només és possible quan l'habilitació de llengües asiàtiques està activada.</ahelp>"
-#. AWuqc
+#. Aw72Q
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id3155555\n"
"help.text"
-msgid "<link href=\"text/shared/guide/insert_graphic_drawit.xhp\" name=\"Tips\">Tips for working with the <emph>Drawing</emph> bar</link>."
-msgstr "<link href=\"text/shared/guide/insert_graphic_drawit.xhp\" name=\"Consells\">Consells per a treballar amb la barra <emph>Dibuix</emph></link>."
+msgid "<link href=\"text/shared/guide/insert_graphic_drawit.xhp\">Tips for working with the <emph>Drawing</emph> bar</link>."
+msgstr "<link href=\"text/shared/guide/insert_graphic_drawit.xhp\">Consells per a treballar amb la barra <emph>Dibuix</emph></link>."
#. CoJt2
#: 01170000.xhp
@@ -665,14 +665,14 @@ msgctxt ""
msgid "<bookmark_value>form controls;toolbars</bookmark_value><bookmark_value>inserting; form fields</bookmark_value><bookmark_value>form fields</bookmark_value><bookmark_value>command button creation</bookmark_value><bookmark_value>buttons; form functions</bookmark_value><bookmark_value>controls; inserting</bookmark_value><bookmark_value>push buttons;creating</bookmark_value><bookmark_value>radio button creation</bookmark_value><bookmark_value>check box creation</bookmark_value><bookmark_value>labels; form functions</bookmark_value><bookmark_value>fixed text; form functions</bookmark_value><bookmark_value>text boxes;form functions</bookmark_value><bookmark_value>list box creation</bookmark_value><bookmark_value>picklist creation</bookmark_value><bookmark_value>drop-down lists in form functions</bookmark_value><bookmark_value>combo box creation</bookmark_value><bookmark_value>selecting;controls</bookmark_value><bookmark_value>controls; select mode</bookmark_value>"
msgstr "<bookmark_value>controls de formularis;barres d'eines</bookmark_value><bookmark_value>inserció; camps de formularis</bookmark_value><bookmark_value>camps de formularis</bookmark_value><bookmark_value>creació de botons d'orde</bookmark_value><bookmark_value>botons; funcions de formularis</bookmark_value><bookmark_value>controls; inserció</bookmark_value><bookmark_value>botons per prémer;creació</bookmark_value><bookmark_value>creació de botons d'opció</bookmark_value><bookmark_value>creació de caselles de selecció</bookmark_value><bookmark_value>etiquetes; funcions de formularis</bookmark_value><bookmark_value>text fix; funcions de formularis</bookmark_value><bookmark_value>quadres de text;funcions de formularis</bookmark_value><bookmark_value>creació de quadres de llista</bookmark_value><bookmark_value>creació de llistes d'elecció</bookmark_value><bookmark_value>llistes desplegables en funcions</bookmark_value><bookmark_value>creació de quadres combinats</bookmark_value><bookmark_value>selecció;controls</bookmark_value><bookmark_value>controls; mode de selecció</bookmark_value>"
-#. CiCXW
+#. VhWEY
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"hd_id3154142\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Form Controls\">Form Controls</link>"
-msgstr "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls de formulari\">Controls de formulari</link>"
+msgid "<link href=\"text/shared/02/01170000.xhp\">Form Controls</link>"
+msgstr "<link href=\"text/shared/02/01170000.xhp\">Controls de formulari</link>"
#. wU73F
#: 01170000.xhp
@@ -1016,14 +1016,14 @@ msgctxt ""
msgid "<image id=\"img_id3152999\" src=\"cmd/lc_radiobutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Icon Option Button</alt></image>"
msgstr ""
-#. DJdqY
+#. 7efdH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3149123\n"
"help.text"
-msgid "<ahelp hid=\".uno:RadioButton\">Creates an option button.</ahelp> Option buttons enable the user to choose one of several options. Option buttons with the same functionality are given the same name (<link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph>Name</emph></link> <emph>property</emph>). Normally, they are given a <link href=\"text/shared/02/01170000.xhp\" name=\"group box\">group box</link>."
-msgstr "<ahelp hid=\".uno:RadioButton\">Crea un botó d'opció.</ahelp> Els botons d'opció permeten a l'usuari triar una de diferents opcions. Els botons d'opció amb la mateixa funció tenen el mateix nom (<emph>propietat</emph> <link href=\"text/shared/02/01170101.xhp\" name=\"Nom\"><emph>Nom</emph></link>). Normalment, se'ls assigna un <link href=\"text/shared/02/01170000.xhp\" name=\"quadre de grup\">quadre de grup</link>."
+msgid "<ahelp hid=\".uno:RadioButton\">Creates an option button.</ahelp> Option buttons enable the user to choose one of several options. Option buttons with the same functionality are given the same name (<link href=\"text/shared/02/01170101.xhp\"><emph>Name</emph></link> <emph>property</emph>). Normally, they are given a <link href=\"text/shared/02/01170000.xhp\">group box</link>."
+msgstr "<ahelp hid=\".uno:RadioButton\">Crea un botó d'opció.</ahelp> Els botons d'opció permeten a l'usuari triar una de diferents opcions. Els botons d'opció amb la mateixa funció tenen el mateix nom (<emph>propietat</emph> <link href=\"text/shared/02/01170101.xhp\"><emph>Nom</emph></link>). Normalment, se'ls assigna un <link href=\"text/shared/02/01170000.xhp\">quadre de grup</link>."
#. PEmCF
#: 01170000.xhp
@@ -1043,14 +1043,14 @@ msgctxt ""
msgid "<image id=\"img_id3154135\" src=\"cmd/lc_listbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154135\">Icon List Box</alt></image>"
msgstr ""
-#. Dbwav
+#. tExCD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3166428\n"
"help.text"
-msgid "<ahelp hid=\".uno:ListBox\">Creates a list box.</ahelp> A list box lets users select an entry from a list. If the form is linked to a database and the database connection is active, the <link href=\"text/shared/02/01170900.xhp\" name=\"List Box Wizard\"><emph>List Box Wizard</emph></link> will automatically appear after the list box is inserted in the document. This wizard helps you create the list box."
-msgstr "<ahelp hid=\".uno:ListBox\">Crea un quadre de llista.</ahelp> Un quadre de llista permet als usuaris seleccionar una entrada d'una llista. Si el formulari està enllaçat amb una base de dades i la connexió a la base de dades és activa, l'<link href=\"text/shared/02/01170900.xhp\" name=\"Auxiliar del quadre de llista\"><emph>Auxiliar del quadre de llista</emph></link> apareixerà automàticament després que el quadre de llista s'inserisca al document. Este auxiliar vos ajuda a crear el quadre de llista."
+msgid "<ahelp hid=\".uno:ListBox\">Creates a list box.</ahelp> A list box lets users select an entry from a list. If the form is linked to a database and the database connection is active, the <link href=\"text/shared/02/01170900.xhp\"><emph>List Box Wizard</emph></link> will automatically appear after the list box is inserted in the document. This wizard helps you create the list box."
+msgstr "<ahelp hid=\".uno:ListBox\">Crea un quadre de llista.</ahelp> Un quadre de llista permet als usuaris seleccionar una entrada d'una llista. Si el formulari està enllaçat amb una base de dades i la connexió a la base de dades és activa, l'<link href=\"text/shared/02/01170900.xhp\"><emph>Auxiliar del quadre de llista</emph></link> apareixerà automàticament després que el quadre de llista s'inserisca al document. Este auxiliar vos ajuda a crear el quadre de llista."
#. T6y5B
#: 01170000.xhp
@@ -1070,14 +1070,14 @@ msgctxt ""
msgid "<image id=\"img_id3148817\" src=\"cmd/lc_combobox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148817\">Icon Combo Box</alt></image>"
msgstr ""
-#. bUeTF
+#. eJywq
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3149407\n"
"help.text"
-msgid "<ahelp hid=\".uno:ComboBox\">Creates a combo box.</ahelp> A combo box is a single-line list box with a drop-down list from which users choose an option. You can assign the \"read-only\" property to the combo box so that users cannot enter other entries than those found in the list. If the form is bound to a database and the database connection is active, the <link href=\"text/shared/02/01170900.xhp\" name=\"Combo Box Wizard\"><emph>Combo Box Wizard</emph></link> will automatically appear after you insert the combo box in the document."
-msgstr "<ahelp hid=\".uno:ComboBox\">Crea un quadre combinat.</ahelp> Un quadre combinat és un quadre de llista d'una sola línia amb una llista desplegable de la qual els usuaris trien una opció. Podeu assignar la propietat \"només de lectura\" al quadre combinat perquè els usuaris no puguen introduir entrades que no siguen les que hi ha a la llista. Si el formulari està enllaçat a una base de dades i la base de dades és activa, l'<link href=\"text/shared/02/01170900.xhp\" name=\"Auxiliar del quadre combinat\"><emph>Auxiliar del quadre combinat</emph></link> apareixerà automàticament després que inseriu el quadre combinat al document."
+msgid "<ahelp hid=\".uno:ComboBox\">Creates a combo box.</ahelp> A combo box is a single-line list box with a drop-down list from which users choose an option. You can assign the \"read-only\" property to the combo box so that users cannot enter other entries than those found in the list. If the form is bound to a database and the database connection is active, the <link href=\"text/shared/02/01170900.xhp\"><emph>Combo Box Wizard</emph></link> will automatically appear after you insert the combo box in the document."
+msgstr "<ahelp hid=\".uno:ComboBox\">Crea un quadre combinat.</ahelp> Un quadre combinat és un quadre de llista d'una sola línia amb una llista desplegable de la qual els usuaris trien una opció. Podeu assignar la propietat \"només de lectura\" al quadre combinat perquè els usuaris no puguen introduir entrades que no siguen les que hi ha a la llista. Si el formulari està enllaçat a una base de dades i la base de dades és activa, l'<link href=\"text/shared/02/01170900.xhp\"><emph>Auxiliar del quadre combinat</emph></link> apareixerà automàticament després que inseriu el quadre combinat al document."
#. gcjjG
#: 01170000.xhp
@@ -1169,14 +1169,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormattedField\">Creates a formatted field.</ahelp> A formatted field is a text box in which you can define how the inputs and outputs are formatted, and which limiting values apply."
msgstr "<ahelp hid=\".uno:FormattedField\">Crea un camp formatat.</ahelp> Un camp formatat és un quadre de text en el qual podeu definir com es formaten les entrades i les eixides, i quins valors de limitació s'apliquen."
-#. aVSCN
+#. mRZLT
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3155346\n"
"help.text"
-msgid "A formatted field has <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">special control properties</link> (choose <emph>Format - Control</emph>)."
-msgstr "Un camp formatat té <link href=\"text/shared/02/01170002.xhp\" name=\"propietats especials de control\">propietats especials de control</link> (trieu <emph>Format - Control</emph>)."
+msgid "A formatted field has <link href=\"text/shared/02/01170002.xhp\">special control properties</link> (choose <emph>Format - Control</emph>)."
+msgstr "Un camp formatat té <link href=\"text/shared/02/01170002.xhp\">propietats especials de control</link> (trieu <emph>Format - Control</emph>)."
#. FDhXd
#: 01170000.xhp
@@ -1223,14 +1223,14 @@ msgctxt ""
msgid "Date fields can be easily edited by the user with the up arrow and down arrow keys. Depending on the cursor position, the day, month, or the year is can be increased or decreased using the arrow keys."
msgstr "L'usuari pot editar fàcilment els camps de data amb les tecles de fletxa amunt i fletxa avall. En funció de la posició del cursor, es pot augmentar o disminuir el dia, el mes o l'any utilitzant les tecles de fletxa."
-#. zBejA
+#. MCkwr
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3153112\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">Specific Remarks on Date Fields</link>."
-msgstr "<link href=\"text/shared/02/01170003.xhp\" name=\"Comentaris concrets sobre els camps de data\">Comentaris concrets sobre els camps de data</link>."
+msgid "<link href=\"text/shared/02/01170003.xhp\">Specific Remarks on Date Fields</link>."
+msgstr "<link href=\"text/shared/02/01170003.xhp\">Comentaris concrets sobre els camps de data</link>."
#. Qw4Qa
#: 01170000.xhp
@@ -1286,14 +1286,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:GroupBox\">Creates a frame to visually group several controls.</ahelp> <emph>Group boxes</emph> allow you to group option buttons in a frame."
msgstr "<ahelp hid=\".uno:GroupBox\">Crea un quadre per a agrupar visualment diversos controls.</ahelp> Els <emph>quadres de grup</emph> permeten agrupar els botons d'opció en un quadre."
-#. GXbwz
+#. NcBV5
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3148394\n"
"help.text"
-msgid "If you insert a group frame into the document, the <link href=\"text/shared/autopi/01120000.xhp\" name=\"Group Element Wizard\"><emph>Group Element Wizard</emph></link> starts, which allows you to easily create an option group."
-msgstr "Si inseriu un marc de grup al document, s'inicia l'<link href=\"text/shared/autopi/01120000.xhp\" name=\"Auxiliar d'elements de grup\"><emph>Auxiliar d'elements de grup</emph></link>, que permet crear fàcilment un grup d'opcions."
+msgid "If you insert a group frame into the document, the <link href=\"text/shared/autopi/01120000.xhp\"><emph>Group Element Wizard</emph></link> starts, which allows you to easily create an option group."
+msgstr "Si inseriu un marc de grup al document, s'inicia l'<link href=\"text/shared/autopi/01120000.xhp\"><emph>Auxiliar d'elements de grup</emph></link>, que permet crear fàcilment un grup d'opcions."
#. YPpYV
#: 01170000.xhp
@@ -1304,14 +1304,14 @@ msgctxt ""
msgid "<emph>Note:</emph> When you drag a group box over already existing controls and then want to select a control, you have to first open the context menu of the group box and choose <emph>Arrange - Send to Back</emph>. Then select the control while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>."
msgstr "<emph>Nota:</emph> quan arrossegueu un quadre de grup damunt de controls que ja existeixen i llavors voleu seleccionar un control, primer heu d'obrir el menú contextual del quadre de grup i triar <emph>Organitza ▸ Envia-ho al fons</emph>. Tot seguit, seleccioneu el control mentre premeu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Ordre</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>."
-#. 6DEDD
+#. JyEp2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3145615\n"
"help.text"
-msgid "<emph>Group boxes</emph> are used only for a visual effect. A functional grouping of option fields can be made through the name definition: under the <link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph>Name</emph></link> properties of all option fields, enter the same name in order to group them."
-msgstr "Els <emph>quadres de grup</emph> només s'utilitzen per a aconseguir un efecte visual. Es pot fer un agrupament funcional de camps d'opció mitjançant la definició d'un nom: sota les propietats de <link href=\"text/shared/02/01170101.xhp\" name=\"Nom\"><emph>Nom</emph></link> de tots els camps d'opció, introduïu el mateix nom per a agrupar-los."
+msgid "<emph>Group boxes</emph> are used only for a visual effect. A functional grouping of option fields can be made through the name definition: under the <link href=\"text/shared/02/01170101.xhp\"><emph>Name</emph></link> properties of all option fields, enter the same name in order to group them."
+msgstr "Els <emph>quadres de grup</emph> només s'utilitzen per a aconseguir un efecte visual. Es pot fer un agrupament funcional de camps d'opció mitjançant la definició d'un nom: sota les propietats de <link href=\"text/shared/02/01170101.xhp\"><emph>Nom</emph></link> de tots els camps d'opció, introduïu el mateix nom per a agrupar-los."
#. Aj5PP
#: 01170000.xhp
@@ -1430,23 +1430,23 @@ msgctxt ""
msgid "<image id=\"img_id3146324\" src=\"cmd/lc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146324\">Icon Table Control</alt></image>"
msgstr ""
-#. YNpAD
+#. FtVhL
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3154579\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates a <emph>table control</emph> to display a database table.</ahelp> If you create a new table control, the <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph>Table Element Wizard</emph></link> appears."
-msgstr "<ahelp hid=\".\">Crea un <emph>control de taula</emph> per a mostrar la taula d'una base de dades.</ahelp> Si creeu un control de taula nou, apareix l'<link href=\"text/shared/02/01170800.xhp\" name=\"Auxiliar d'elements de taula\"><emph>Auxiliar d'elements de taula</emph></link>."
+msgid "<ahelp hid=\".\">Creates a <emph>table control</emph> to display a database table.</ahelp> If you create a new table control, the <link href=\"text/shared/02/01170800.xhp\"><emph>Table Element Wizard</emph></link> appears."
+msgstr "<ahelp hid=\".\">Crea un <emph>control de taula</emph> per a mostrar la taula d'una base de dades.</ahelp> Si creeu un control de taula nou, apareix l'<link href=\"text/shared/02/01170800.xhp\"><emph>Auxiliar d'elements de taula</emph></link>."
-#. n4JKM
+#. jAA8B
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3154697\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Special information about Table Controls</link>."
-msgstr "<link href=\"text/shared/02/01170004.xhp\" name=\"Informació especial sobre els controls de taula\">Informació especial sobre els controls de taula</link>."
+msgid "<link href=\"text/shared/02/01170004.xhp\">Special information about Table Controls</link>."
+msgstr "<link href=\"text/shared/02/01170004.xhp\">Informació especial sobre els controls de taula</link>."
#. yJm6y
#: 01170000.xhp
@@ -1817,14 +1817,14 @@ msgctxt ""
msgid "In a Calc spreadsheet, you can use the <emph>Data</emph> tab page to create a two-way link between a scrollbar and a cell."
msgstr "En un full de càlcul del Calc, podeu utilitzar la pestanya <emph>Dades</emph> per a crear un enllaç doble entre una barra de desplaçament i una cel·la."
-#. DKSBw
+#. 8UrPk
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"hd_id3149436\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">Context Menu Commands</link>"
-msgstr "<link href=\"text/shared/02/01170001.xhp\" name=\"Ordes del menú contextual\">Ordes del menú contextual</link>"
+msgid "<link href=\"text/shared/02/01170001.xhp\">Context Menu Commands</link>"
+msgstr "<link href=\"text/shared/02/01170001.xhp\">Ordes del menú contextual</link>"
#. EphvU
#: 01170001.xhp
@@ -2519,14 +2519,14 @@ msgctxt ""
msgid "To enter the special keyboard-only edit mode for <emph>Table Controls</emph>:"
msgstr "Per a entrar al mode especial d'edició només amb el teclat per als <emph>controls de la taula</emph>:"
-#. dXupH
+#. zyF6P
#: 01170004.xhp
msgctxt ""
"01170004.xhp\n"
"par_id3144510\n"
"help.text"
-msgid "The form document must be in <link href=\"text/shared/02/01170500.xhp\" name=\"design mode\"><emph>Design mode</emph></link>."
-msgstr "El formulari del document ha d'estar en <link href=\"text/shared/02/01170500.xhp\" name=\"mode de disseny\"><emph>mode de disseny</emph></link>."
+msgid "The form document must be in <link href=\"text/shared/02/01170500.xhp\"><emph>Design mode</emph></link>."
+msgstr "El formulari del document ha d'estar en <link href=\"text/shared/02/01170500.xhp\"><emph>mode de disseny</emph></link>."
#. fzk3Q
#: 01170004.xhp
@@ -2600,14 +2600,14 @@ msgctxt ""
msgid "<bookmark_value>controls; properties of form controls</bookmark_value><bookmark_value>properties; form controls</bookmark_value>"
msgstr "<bookmark_value>controls; propietats dels controls dels formularis</bookmark_value><bookmark_value>propietats, controls dels formularis</bookmark_value>"
-#. AA8W6
+#. S4LNT
#: 01170100.xhp
msgctxt ""
"01170100.xhp\n"
"hd_id3147102\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control Properties\">Control Properties</link>"
-msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Propietats dels controls\">Propietats dels controls</link>"
+msgid "<link href=\"text/shared/02/01170100.xhp\">Control Properties</link>"
+msgstr "<link href=\"text/shared/02/01170100.xhp\">Propietats dels controls</link>"
#. BJAGR
#: 01170100.xhp
@@ -2780,14 +2780,14 @@ msgctxt ""
msgid "General"
msgstr "General"
-#. g8Ds4
+#. bJRNV
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"hd_id3153681\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170101.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/02/01170101.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/shared/02/01170101.xhp\">General</link>"
+msgstr "<link href=\"text/shared/02/01170101.xhp\">General</link>"
#. 7aXp6
#: 01170101.xhp
@@ -2915,14 +2915,14 @@ msgctxt ""
msgid "Submit form"
msgstr "Envia el formulari"
-#. hBAFr
+#. b5eNF
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3147228\n"
"help.text"
-msgid "Sends the data that is entered in other control fields of the current form to the address that is specified in <link href=\"text/shared/02/01170200.xhp\" name=\"Form Properties\"><emph>Form Properties</emph></link> under <link href=\"text/shared/02/01170201.xhp\" name=\"URL\"><emph>URL</emph></link>."
-msgstr "Envia les dades que s'introdueixen a altres camps de control del formulari actual a l'adreça que s'indica a les <link href=\"text/shared/02/01170200.xhp\" name=\"Propietats del formulari\"><emph>Propietats del formulari</emph></link> a <link href=\"text/shared/02/01170201.xhp\" name=\"URL\"><emph>URL</emph></link>."
+msgid "Sends the data that is entered in other control fields of the current form to the address that is specified in <link href=\"text/shared/02/01170200.xhp\"><emph>Form Properties</emph></link> under <link href=\"text/shared/02/01170201.xhp\"><emph>URL</emph></link>."
+msgstr "Envia les dades que s'introdueixen a altres camps de control del formulari actual a l'adreça que s'indica a les <link href=\"text/shared/02/01170200.xhp\"><emph>Propietats del formulari</emph></link> a <link href=\"text/shared/02/01170201.xhp\"><emph>URL</emph></link>."
#. ftvDz
#: 01170101.xhp
@@ -3851,13 +3851,13 @@ msgctxt ""
msgid "Background color"
msgstr "Color de fons"
-#. vhu29
+#. N7AFb
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3155073\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the background color of the control field.</ahelp> A background color is available for most control fields. If you click on <emph>Background color</emph>, a list will open which enables you to select among various colors. The \"Standard\" option adopts the system setting. If the desired color is not listed, click the <emph>...</emph> button to define a color in the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the background color of the control field.</ahelp> A background color is available for most control fields. If you click on <emph>Background color</emph>, a list will open which enables you to select among various colors. The \"Standard\" option adopts the system setting. If the desired color is not listed, click the <emph>...</emph> button to define a color in the <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link> dialog."
msgstr ""
#. MCzAE
@@ -3923,13 +3923,13 @@ msgctxt ""
msgid "List entries"
msgstr "Llista les entrades"
-#. 5FGGc
+#. EBEQY
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3151300\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Defines the list entries visible in the document. Open this list and type your text. Use <emph>Shift</emph>+<emph>Enter</emph> for a new line. With list and combo boxes, you can define the list entries that will be visible in the document. Open the <emph>List entries</emph> field and type your text.</ahelp> Please note the <link href=\"text/shared/02/01170100.xhp\" name=\"tips\">tips</link> referring to the keyboard controls."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Defines the list entries visible in the document. Open this list and type your text. Use <emph>Shift</emph>+<emph>Enter</emph> for a new line. With list and combo boxes, you can define the list entries that will be visible in the document. Open the <emph>List entries</emph> field and type your text.</ahelp> Please note the <link href=\"text/shared/02/01170100.xhp\">tips</link> referring to the keyboard controls."
msgstr ""
#. ELF5e
@@ -3950,14 +3950,14 @@ msgctxt ""
msgid "Note that the list entries entered here are only incorporated into the form if, on the <emph>Data</emph> tab under <emph>List Content Type</emph>, the option \"Value List\" is selected."
msgstr "Tingueu en compte que les entrades de llista que s'introdueixen ací només s'incorporen al formulari si a la pestanya <emph>Dades</emph>, a <emph>Tipus de contingut de la llista</emph>, l'opció\"Llista de valors\" està seleccionada."
-#. 6XqBd
+#. j7Ywy
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3154767\n"
"help.text"
-msgid "If you do not want the list entries to be written to the database or transmitted to the recipient of the Web form, but rather assigned values that are not visible in the form, you can assign the list entries to other values in a value list. The value list is determined on the <link href=\"text/shared/02/01170102.xhp\" name=\"Data\"><emph>Data</emph></link> tab. Under <emph>Type of List Contents</emph>, select the option \"Value List\". Then enter the values under <emph>List Contents</emph> that are to be assigned to the corresponding visible list entries of the form. For the correct assignment, the order in the value list is relevant."
-msgstr "Si no voleu que les entrades de llista s'escriguen en una base de dades o es transmetin al destinatari del formulari web, sinó que voleu valors assignats que no es mostren al formulari, podeu assignar les entrades de llista a altres valors en una llista de valors. La llista de valors es determina a la pestanya <link href=\"text/shared/02/01170102.xhp\" name=\"Dades\"><emph>Dades</emph></link>. A <emph>Tipus de contingut de la llista</emph>, seleccioneu l'opció \"Llista de valors\". Tot seguit introduïu els valors a <emph>Contingut de la llista</emph> que s'han d'assignar a les entrades de llista visibles al formulari. Perquè l'assignació siga correcta, és rellevant l'orde a la llista de valors."
+msgid "If you do not want the list entries to be written to the database or transmitted to the recipient of the Web form, but rather assigned values that are not visible in the form, you can assign the list entries to other values in a value list. The value list is determined on the <link href=\"text/shared/02/01170102.xhp\"><emph>Data</emph></link> tab. Under <emph>Type of List Contents</emph>, select the option \"Value List\". Then enter the values under <emph>List Contents</emph> that are to be assigned to the corresponding visible list entries of the form. For the correct assignment, the order in the value list is relevant."
+msgstr "Si no voleu que les entrades de llista s'escriguen en una base de dades o es transmetin al destinatari del formulari web, sinó que voleu valors assignats que no es mostren al formulari, podeu assignar les entrades de llista a altres valors en una llista de valors. La llista de valors es determina a la pestanya <link href=\"text/shared/02/01170102.xhp\"><emph>Dades</emph></link>. A <emph>Tipus de contingut de la llista</emph>, seleccioneu l'opció \"Llista de valors\". Tot seguit introduïu els valors a <emph>Contingut de la llista</emph> que s'han d'assignar a les entrades de llista visibles al formulari. Perquè l'assignació siga correcta, és rellevant l'orde a la llista de valors."
#. tJXYS
#: 01170101.xhp
@@ -4319,13 +4319,13 @@ msgctxt ""
msgid "Name"
msgstr "Nom"
-#. BcaCY
+#. iTT9E
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3149819\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">On the <emph>Properties</emph> tab page, this option specifies the name for the control field. On the <emph>Form Properties</emph> tab page, this option specifies the name for the form.</ahelp> Each control field and each form has a \"Name\" property through which it can be identified. The name will appear in the <link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\"><emph>Form Navigator</emph></link> and, using the name, the control field can be referred to from a macro. The default settings already specify a name which is constructed from using the field's label and number."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">On the <emph>Properties</emph> tab page, this option specifies the name for the control field. On the <emph>Form Properties</emph> tab page, this option specifies the name for the form.</ahelp> Each control field and each form has a \"Name\" property through which it can be identified. The name will appear in the <link href=\"text/shared/02/01170600.xhp\"><emph>Form Navigator</emph></link> and, using the name, the control field can be referred to from a macro. The default settings already specify a name which is constructed from using the field's label and number."
msgstr ""
#. MCCG9
@@ -4346,14 +4346,14 @@ msgctxt ""
msgid "<bookmark_value>controls; grouping</bookmark_value><bookmark_value>groups; of controls</bookmark_value><bookmark_value>forms; grouping controls</bookmark_value>"
msgstr "<bookmark_value>controls; agrupació</bookmark_value><bookmark_value>grups;de controls</bookmark_value><bookmark_value>formularis; agrupació de controls</bookmark_value>"
-#. KWoXB
+#. GBtsm
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3146325\n"
"help.text"
-msgid "The name is also used to group different controls that belong together functionally, such as radio buttons. To do so, give the same name to all members of the group: controls with identical names form a group. Grouped controls can be represented visually by using a <link href=\"text/shared/02/01170000.xhp\" name=\"Group Box\"><emph>Group Box</emph></link>."
-msgstr "El nom també s'utilitza per a agrupar diferents controls que funcionalment pertanyen a un mateix grup, com els botons d'opció. Per a fer-ho, doneu el mateix nom a tots els membres del grup: els controls amb noms idèntics formen un grup. Els controls agrupats es poden representar visualment mitjançant un <link href=\"text/shared/02/01170000.xhp\" name=\"Quadre de grup\"><emph>quadre de grup</emph></link>."
+msgid "The name is also used to group different controls that belong together functionally, such as radio buttons. To do so, give the same name to all members of the group: controls with identical names form a group. Grouped controls can be represented visually by using a <link href=\"text/shared/02/01170000.xhp\"><emph>Group Box</emph></link>."
+msgstr "El nom també s'utilitza per a agrupar diferents controls que funcionalment pertanyen a un mateix grup, com els botons d'opció. Per a fer-ho, doneu el mateix nom a tots els membres del grup: els controls amb noms idèntics formen un grup. Els controls agrupats es poden representar visualment mitjançant un <link href=\"text/shared/02/01170000.xhp\"><emph>quadre de grup</emph></link>."
#. HWKMj
#: 01170101.xhp
@@ -4427,14 +4427,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">The \"Tab order\" property determines the order in which the controls are focused in the form when you press the <emph>Tab</emph> key.</ahelp> In a form that contains more than one control, the focus moves to the next control when you press the <emph>Tab</emph> key. You can specify the order in which the focus changes with an index under \"Tab order\"."
msgstr ""
-#. CBFLW
+#. PcEAx
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3156207\n"
"help.text"
-msgid "The \"Tab order\" property is <emph>not</emph> available to <link href=\"text/shared/02/01170600.xhp\" name=\"Hidden Controls\"><emph>Hidden Controls</emph></link>. If you want, you can also set this property for image buttons and image controls, so that you can select these controls with the <emph>Tab</emph> key."
-msgstr "La propietat «Ordre de les tabulacions» <emph>no</emph> està disponible per als <link href=\"text/shared/02/01170600.xhp\" name=\"Controls amagats\"><emph>controls amagats</emph></link>. Si voleu, podeu definir aquesta propietat per a botons d'imatge i controls d'imatge de manera que pugueu seleccionar aquests controls amb la tecla <emph>Tab</emph>."
+msgid "The \"Tab order\" property is <emph>not</emph> available to <link href=\"text/shared/02/01170600.xhp\"><emph>Hidden Controls</emph></link>. If you want, you can also set this property for image buttons and image controls, so that you can select these controls with the <emph>Tab</emph> key."
+msgstr "La propietat «Ordre de les tabulacions» <emph>no</emph> està disponible per als <link href=\"text/shared/02/01170600.xhp\"><emph>controls amagats</emph></link>. Si voleu, podeu definir aquesta propietat per a botons d'imatge i controls d'imatge de manera que pugueu seleccionar aquests controls amb la tecla <emph>Tab</emph>."
#. j4nyL
#: 01170101.xhp
@@ -4445,14 +4445,14 @@ msgctxt ""
msgid "When creating a form, an index is automatically assigned to the control fields that are added to this form; every control field added is assigned an index increased by <emph>1</emph>. If you change the index of a control, the indices of the other controls are updated automatically. Elements that cannot be focused (\"Tabstop = No\") are also assigned a value. However, these controls are skipped when using the <emph>Tab</emph> key."
msgstr "Quan creeu un formulari, s'assigna automàticament un índex als camps de control que s'afigen a aquest formulari; a cada camp de control afegit s'assigna un índex augmentat per <emph>1</emph>. Si canvieu l'índex d'un control, s'actualitzaran automàticament els índexs d'altres controls. També s'assigna un valor als elements que no es poden focalitzar (Aturada de tabulació = no). Malgrat tot, aquests controls s'ometen quan s'utilitza la tecla <emph>Tab</emph>."
-#. BAvfE
+#. bTZRR
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3150640\n"
"help.text"
-msgid "You can also easily define the indices of the different controls in the <link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\"><emph>Tab Order</emph></link> dialog."
-msgstr "També podeu definir fàcilment els índexs dels diferents controls al diàleg <link href=\"text/shared/02/01170300.xhp\" name=\"Orde de les tabulacions\"><emph>Orde de les tabulacions</emph></link>."
+msgid "You can also easily define the indices of the different controls in the <link href=\"text/shared/02/01170300.xhp\"><emph>Tab Order</emph></link> dialog."
+msgstr "També podeu definir fàcilment els índexs dels diferents controls al diàleg <link href=\"text/shared/02/01170300.xhp\"><emph>Orde de les tabulacions</emph></link>."
#. 5MiV4
#: 01170101.xhp
@@ -4958,13 +4958,13 @@ msgctxt ""
msgid "Value"
msgstr "Valor"
-#. BKGD7
+#. cSNbG
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3152417\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">You can enter the data that is inherited by the hidden control.</ahelp> In a <link href=\"text/shared/02/01170600.xhp\" name=\"hidden control\">hidden control</link>, under <emph>Value</emph>, you can enter the data which is inherited by the hidden control. This data will be transferred when sending the form."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">You can enter the data that is inherited by the hidden control.</ahelp> In a <link href=\"text/shared/02/01170600.xhp\">hidden control</link>, under <emph>Value</emph>, you can enter the data which is inherited by the hidden control. This data will be transferred when sending the form."
msgstr ""
#. irNhJ
@@ -5030,13 +5030,13 @@ msgctxt ""
msgid "Font"
msgstr "Tipus de lletra"
-#. DjtWR
+#. ZrPbi
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
"par_id3151037\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the font for the text that is in the control field.</ahelp> For control fields which have visible text or titles, select the display font that you want to use. To open the <link href=\"text/shared/01/05020100.xhp\" name=\"Font\"><emph>Font</emph></link> dialog, click the <emph>...</emph> button. The selected font is used in control fields names and to display data in table control fields."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the font for the text that is in the control field.</ahelp> For control fields which have visible text or titles, select the display font that you want to use. To open the <link href=\"text/shared/01/05020100.xhp\"><emph>Font</emph></link> dialog, click the <emph>...</emph> button. The selected font is used in control fields names and to display data in table control fields."
msgstr ""
#. c7NuT
@@ -5345,14 +5345,14 @@ msgctxt ""
msgid "<bookmark_value>controls; reference by SQL</bookmark_value><bookmark_value>bound fields; controls</bookmark_value><bookmark_value>controls; bound fields/list contents/linked cells</bookmark_value><bookmark_value>lists;data assigned to controls</bookmark_value><bookmark_value>cells;linked to controls</bookmark_value><bookmark_value>links;between cells and controls</bookmark_value><bookmark_value>controls;assigning data sources</bookmark_value>"
msgstr "<bookmark_value>controls; referència per SQL</bookmark_value><bookmark_value>camps lligats; controls</bookmark_value><bookmark_value>controls; camps lligats/continguts de la llista/cel·les enllaçades</bookmark_value><bookmark_value>llistes;dades assignades als controls</bookmark_value><bookmark_value>cel·les;enllaçades als controls</bookmark_value><bookmark_value>enllaços;entre cel·les i controls</bookmark_value><bookmark_value>controls;assignació de fonts de dades</bookmark_value>"
-#. EeGMe
+#. MkrZm
#: 01170102.xhp
msgctxt ""
"01170102.xhp\n"
"hd_id3155413\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170102.xhp\" name=\"Data\">Data</link>"
-msgstr "<link href=\"text/shared/02/01170102.xhp\" name=\"Dades\">Dades</link>"
+msgid "<link href=\"text/shared/02/01170102.xhp\">Data</link>"
+msgstr "<link href=\"text/shared/02/01170102.xhp\">Dades</link>"
#. j97ur
#: 01170102.xhp
@@ -5363,14 +5363,14 @@ msgctxt ""
msgid "The <emph>Data</emph> tab page allows you to assign a data source to the selected control."
msgstr "La pestanya <emph>Dades</emph> permet assignar una font de dades al control seleccionat."
-#. 7DAsb
+#. WZLNm
#: 01170102.xhp
msgctxt ""
"01170102.xhp\n"
"par_id3148773\n"
"help.text"
-msgid "For forms with database links, the associated database is defined in the <link href=\"text/shared/02/01170200.xhp\" name=\"Form Properties\"><emph>Form Properties</emph></link>. You will find the functions for this on the <link href=\"text/shared/02/01170203.xhp\" name=\"Data\"><emph>Data</emph></link> tab page."
-msgstr "Per a formularis amb enllaços a bases de dades, la base de dades associada es defineix a les <link href=\"text/shared/02/01170200.xhp\" name=\"Propietats del formulari\"><emph>Propietats del formulari</emph></link>. Trobareu les funcions a la pestanya <link href=\"text/shared/02/01170203.xhp\" name=\"Dades\"><emph>Dades</emph></link>."
+msgid "For forms with database links, the associated database is defined in the <link href=\"text/shared/02/01170200.xhp\"><emph>Form Properties</emph></link>. You will find the functions for this on the <link href=\"text/shared/02/01170203.xhp\"><emph>Data</emph></link> tab page."
+msgstr "Per a formularis amb enllaços a bases de dades, la base de dades associada es defineix a les <link href=\"text/shared/02/01170200.xhp\"><emph>Propietats del formulari</emph></link>. Trobareu les funcions a la pestanya <link href=\"text/shared/02/01170203.xhp\"><emph>Dades</emph></link>."
#. Y8T7N
#: 01170102.xhp
@@ -5525,14 +5525,14 @@ msgctxt ""
msgid "Under <emph>Data field</emph>, specify the field of the SQL statement whose contents you want to be displayed."
msgstr "A <emph>Camp de dades</emph>, indiqueu el camp de l'expressió SQL de la qual voleu que es mostren els continguts."
-#. PZJaT
+#. 6FD9z
#: 01170102.xhp
msgctxt ""
"01170102.xhp\n"
"par_id3153949\n"
"help.text"
-msgid "Third case: <link href=\"text/shared/02/01170900.xhp\" name=\"Combo Boxes\">Combo Boxes</link>"
-msgstr "Tercer cas: <link href=\"text/shared/02/01170900.xhp\" name=\"Quadres combinats\">Quadres combinats</link>"
+msgid "Third case: <link href=\"text/shared/02/01170900.xhp\">Combo Boxes</link>"
+msgstr "Tercer cas: <link href=\"text/shared/02/01170900.xhp\">Quadres combinats</link>"
#. AXEkS
#: 01170102.xhp
@@ -5543,14 +5543,14 @@ msgctxt ""
msgid "For combo boxes, the field of the data source table in which the values entered or selected by the user should be stored is specified under <emph>Data field</emph>. The values displayed in the list of the combo box are based on an SQL statement, which is entered under <emph>List content</emph>."
msgstr "Per als quadres combinats, el camp de la taula de la font de dades en la qual s'han d'emmagatzemar els valors introduïts o seleccionats per l'usuari s'indica a <emph>Camp de dades</emph>. Els valors mostrats a la llista del quadre combinat es basen en una expressió SQL que s'introdueix a <emph>Contingut de la llista</emph>."
-#. PwxsU
+#. ahU6a
#: 01170102.xhp
msgctxt ""
"01170102.xhp\n"
"par_id3145167\n"
"help.text"
-msgid "Fourth case: <link href=\"text/shared/02/01170900.xhp\" name=\"List Boxes\">List Boxes</link>"
-msgstr "Quart cas: <link href=\"text/shared/02/01170900.xhp\" name=\"Quadres de llista\">Quadres de llista</link>"
+msgid "Fourth case: <link href=\"text/shared/02/01170900.xhp\">List Boxes</link>"
+msgstr "Quart cas: <link href=\"text/shared/02/01170900.xhp\">Quadres de llista</link>"
#. KwJVt
#: 01170102.xhp
@@ -5642,14 +5642,14 @@ msgctxt ""
msgid "For list boxes, you can use value lists. Value lists are lists that define reference values. In this way, the control in the form does not directly display the content of a database field, but rather values assigned in the value list."
msgstr "Per als quadres de llista podeu utilitzar llistes de valors. Les llistes de valors són llistes que defineixen valors de referència. D'esta manera, el control del formulari no mostra directament el contingut d'una base de dades, sinó valors assignats a la llista de valors."
-#. EycVV
+#. VGDPF
#: 01170102.xhp
msgctxt ""
"01170102.xhp\n"
"par_id3151186\n"
"help.text"
-msgid "If you work with reference values of a value list, the contents of the data field that you specified under <emph>Data Field</emph> in the form are not visible, but rather the assigned values. If you chose \"Valuelist\" on the <emph>Data</emph> tab under <emph>Type of list contents</emph> and assigned a reference value to the visible list entries in the form under <emph>List entries</emph> (entered in the <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link> tab), then the reference values are compared with the data content of the given data field. If a reference value corresponds to the content of a data field, the associated list entries are displayed in the form."
-msgstr "Si treballeu amb valors de referència d'una llista de valors, els continguts del camp de dades que heu indicat a <emph>Camp de dades</emph> del formulari no es veuen, sinó que es veuen els valors assignats. Si trieu \"Llista de valors\" a la pestanya <emph>Dades</emph>, a <emph>Tipus de contingut de la llista</emph>, i heu assignat un valor de referència a les entrades de llista que es veuen al formulari, a <emph>Llista les entrades</emph> (introduïdes a la pestanya <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link>), els valors de referència es compararan amb el contingut de les dades del camp de dades indicat. Si un valor de referència es correspon al contingut d'un camp de dades, les entrades de llista associades es mostraran al formulari."
+msgid "If you work with reference values of a value list, the contents of the data field that you specified under <emph>Data Field</emph> in the form are not visible, but rather the assigned values. If you chose \"Valuelist\" on the <emph>Data</emph> tab under <emph>Type of list contents</emph> and assigned a reference value to the visible list entries in the form under <emph>List entries</emph> (entered in the <link href=\"text/shared/02/01170101.xhp\"><emph>General</emph></link> tab), then the reference values are compared with the data content of the given data field. If a reference value corresponds to the content of a data field, the associated list entries are displayed in the form."
+msgstr "Si treballeu amb valors de referència d'una llista de valors, els continguts del camp de dades que heu indicat a <emph>Camp de dades</emph> del formulari no es veuen, sinó que es veuen els valors assignats. Si trieu \"Llista de valors\" a la pestanya <emph>Dades</emph>, a <emph>Tipus de contingut de la llista</emph>, i heu assignat un valor de referència a les entrades de llista que es veuen al formulari, a <emph>Llista les entrades</emph> (introduïdes a la pestanya <link href=\"text/shared/02/01170101.xhp\"><emph>General</emph></link>), els valors de referència es compararan amb el contingut de les dades del camp de dades indicat. Si un valor de referència es correspon al contingut d'un camp de dades, les entrades de llista associades es mostraran al formulari."
#. sBFuk
#: 01170102.xhp
@@ -5903,14 +5903,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Determines the data to fill the lists in list and combo boxes.</ahelp> Determines the data to fill the lists in list and combo boxes."
msgstr ""
-#. kStEy
+#. RC3x3
#: 01170102.xhp
msgctxt ""
"01170102.xhp\n"
"par_id3153326\n"
"help.text"
-msgid "With the \"Valuelist\" option, all entries entered in the <emph>List entries</emph> field of the <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link> tab appear in the control. For database forms, you can use reference values (see the <link href=\"text/shared/02/01170102.xhp\" name=\" References Using Value Lists\"><emph>References Using Value Lists</emph></link> section)."
-msgstr "Amb l'opció \"Llista de valors\" apareixen al control totes les entrades introduïdes al camp <emph>Llista les entrades</emph> de la pestanya <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link>. Per als formularis de bases de dades, podeu utilitzar valors de referència (vegeu la secció <link href=\"text/shared/02/01170102.xhp\" name=\" Referències que utilitzen llistes de valors\"><emph>Referències que utilitzen llistes de valors</emph></link>)."
+msgid "With the \"Valuelist\" option, all entries entered in the <emph>List entries</emph> field of the <link href=\"text/shared/02/01170101.xhp\"><emph>General</emph></link> tab appear in the control. For database forms, you can use reference values (see the <link href=\"text/shared/02/01170102.xhp\"><emph>References Using Value Lists</emph></link> section)."
+msgstr "Amb l'opció \"Llista de valors\" apareixen al control totes les entrades introduïdes al camp <emph>Llista les entrades</emph> de la pestanya <link href=\"text/shared/02/01170101.xhp\"><emph>General</emph></link>. Per als formularis de bases de dades, podeu utilitzar valors de referència (vegeu la secció <link href=\"text/shared/02/01170102.xhp\"><emph>Referències que utilitzen llistes de valors</emph></link>)."
#. wGtpV
#: 01170102.xhp
@@ -6029,14 +6029,14 @@ msgctxt ""
msgid "For HTML forms, you can enter a value list under <emph>List content</emph>. Select the option \"Valuelist\" under <emph>Type of list contents</emph>. The values entered here will not be visible in the form, and are used to assign values to the visible entries. The entries made under <emph>List content</emph> correspond to the HTML tag <OPTION VALUE=...>."
msgstr "Per als formularis HTML, podeu introduir una llista de valors a <emph>Contingut de la llista</emph>. Seleccioneu l'opció \"Llista de valors\" a <emph>Tipus de contingut de la llista</emph>. Els valors introduïts ací no es veuran al formulari, i s'utilitzen per assignar valors a les entrades visibles. Les entrades fetes a <emph>Contingut de la llista</emph> corresponen a l'etiqueta HTML <OPTION VALUE=...>."
-#. ZGDwk
+#. bUiZ3
#: 01170102.xhp
msgctxt ""
"01170102.xhp\n"
"par_id3154855\n"
"help.text"
-msgid "In the data transfer of a selected entry from a list box or a combo box, both the list of the values displayed in the form, which was entered on the <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link> tab under <emph>List entries</emph>, and the value list entered on the <emph>Data</emph> tab under <emph>List content</emph>, are taken into consideration: If a (non-empty) text is at the selected position in the value list (<OPTION VALUE=...>), it will be transmitted. Otherwise, the text displayed in the (<OPTION>) control is sent."
-msgstr "A la transferència de dades d'una entrada seleccionada d'un quadre de llista o d'un quadre combinat, es tenen en compte la llista de valors que es visualitzen al formulari, que es van introduir a la pestanya <link href=\"text/shared/02/01170101.xhp\" name=\"General\"><emph>General</emph></link> a <emph>Llista les entrades</emph> i la llista de valors introduïda a la pestanya <emph>Dades</emph>, a <emph>Contingut de la llista</emph>: si un text (no buit) es troba a la posició seleccionada de la llista de valors (<OPTION VALUE=...>), s'enviarà. Si no és així, s'enviarà el text que es visualitza al control (<OPTION>)."
+msgid "In the data transfer of a selected entry from a list box or a combo box, both the list of the values displayed in the form, which was entered on the <link href=\"text/shared/02/01170101.xhp\"><emph>General</emph></link> tab under <emph>List entries</emph>, and the value list entered on the <emph>Data</emph> tab under <emph>List content</emph>, are taken into consideration: If a (non-empty) text is at the selected position in the value list (<OPTION VALUE=...>), it will be transmitted. Otherwise, the text displayed in the (<OPTION>) control is sent."
+msgstr "A la transferència de dades d'una entrada seleccionada d'un quadre de llista o d'un quadre combinat, es tenen en compte la llista de valors que es visualitzen al formulari, que es van introduir a la pestanya <link href=\"text/shared/02/01170101.xhp\"><emph>General</emph></link> a <emph>Llista les entrades</emph> i la llista de valors introduïda a la pestanya <emph>Dades</emph>, a <emph>Contingut de la llista</emph>: si un text (no buit) es troba a la posició seleccionada de la llista de valors (<OPTION VALUE=...>), s'enviarà. Si no és així, s'enviarà el text que es visualitza al control (<OPTION>)."
#. 9FbN6
#: 01170102.xhp
@@ -7262,14 +7262,14 @@ msgctxt ""
msgid "<bookmark_value>controls; events</bookmark_value><bookmark_value>events; controls</bookmark_value><bookmark_value>macros; assigning to events in forms</bookmark_value>"
msgstr "<bookmark_value>controls; esdeveniments</bookmark_value><bookmark_value>esdeveniments; controls</bookmark_value><bookmark_value>macros; assignació a esdeveniments en formularis</bookmark_value>"
-#. CDpzC
+#. 4Vur2
#: 01170103.xhp
msgctxt ""
"01170103.xhp\n"
"hd_id3148643\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170103.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/shared/02/01170103.xhp\" name=\"Esdeveniments\">Esdeveniments</link>"
+msgid "<link href=\"text/shared/02/01170103.xhp\">Events</link>"
+msgstr "<link href=\"text/shared/02/01170103.xhp\">Esdeveniments</link>"
#. kJ5Y2
#: 01170103.xhp
@@ -7280,13 +7280,13 @@ msgctxt ""
msgid "On the <emph>Events</emph> tab page you can link macros to events that occur in a form's control fields."
msgstr "A la pestanya <emph>Esdeveniments</emph> podeu enllaçar macros a esdeveniments que tenen lloc als camps de control d'un formulari."
-#. oL8WM
+#. pGBLE
#: 01170103.xhp
msgctxt ""
"01170103.xhp\n"
"par_id3155419\n"
"help.text"
-msgid "When the event occurs, the linked macro will be called. To assign a macro to an event, press the <emph>...</emph> button. The <link href=\"text/shared/01/06140500.xhp\" name=\"Assign Action\"><emph>Assign Action</emph></link> dialog opens."
+msgid "When the event occurs, the linked macro will be called. To assign a macro to an event, press the <emph>...</emph> button. The <link href=\"text/shared/01/06140500.xhp\"><emph>Assign Action</emph></link> dialog opens."
msgstr ""
#. 4kxBE
@@ -7343,13 +7343,13 @@ msgctxt ""
msgid "Changed"
msgstr "Canviat"
-#. FSNEk
+#. tDTAD
#: 01170103.xhp
msgctxt ""
"01170103.xhp\n"
"par_id3148755\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Changed</emph> event takes place when the control loses the <link href=\"text/shared/00/00000005.xhp#form_focus\" name=\"focus\">focus</link> and the content of the control has changed since it lost the focus.</ahelp>"
+msgid "<ahelp hid=\".\">The <emph>Changed</emph> event takes place when the control loses the <link href=\"text/shared/00/00000005.xhp#form_focus\">focus</link> and the content of the control has changed since it lost the focus.</ahelp>"
msgstr ""
#. pW2Ah
@@ -7397,13 +7397,13 @@ msgctxt ""
msgid "When receiving focus"
msgstr "En rebre el focus"
-#. vSAqD
+#. NRdbe
#: 01170103.xhp
msgctxt ""
"01170103.xhp\n"
"par_id3154218\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>When receiving focus</emph> event takes place if a control field receives the <link href=\"text/shared/00/00000005.xhp#form_focus\" name=\"focus\">focus</link>.</ahelp>"
+msgid "<ahelp hid=\".\">The <emph>When receiving focus</emph> event takes place if a control field receives the <link href=\"text/shared/00/00000005.xhp#form_focus\">focus</link>.</ahelp>"
msgstr ""
#. NrRE4
@@ -7415,13 +7415,13 @@ msgctxt ""
msgid "When losing focus"
msgstr "En perdre el focus"
-#. epakc
+#. 5YQWR
#: 01170103.xhp
msgctxt ""
"01170103.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>When losing focus</emph> event takes place if a control field loses the <link href=\"text/shared/00/00000005.xhp#form_focus\" name=\"focus\">focus</link>.</ahelp>"
+msgid "<ahelp hid=\".\">The <emph>When losing focus</emph> event takes place if a control field loses the <link href=\"text/shared/00/00000005.xhp#form_focus\">focus</link>.</ahelp>"
msgstr ""
#. JkyEm
@@ -7595,14 +7595,14 @@ msgctxt ""
msgid "<bookmark_value>forms; properties</bookmark_value><bookmark_value>properties; forms</bookmark_value>"
msgstr "<bookmark_value>formularis; propietats</bookmark_value><bookmark_value>propietats; formularis</bookmark_value>"
-#. RCmTF
+#. 78st6
#: 01170200.xhp
msgctxt ""
"01170200.xhp\n"
"hd_id3147285\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form Properties\">Form Properties</link>"
-msgstr "<link href=\"text/shared/02/01170200.xhp\" name=\"Propietats del formulari\">Propietats del formulari</link>"
+msgid "<link href=\"text/shared/02/01170200.xhp\">Form Properties</link>"
+msgstr "<link href=\"text/shared/02/01170200.xhp\">Propietats del formulari</link>"
#. YnaQW
#: 01170200.xhp
@@ -7631,14 +7631,14 @@ msgctxt ""
msgid "<bookmark_value>submitting forms</bookmark_value><bookmark_value>get method for form transmissions</bookmark_value><bookmark_value>post method for form transmissions</bookmark_value>"
msgstr "<bookmark_value>enviament de formularis</bookmark_value><bookmark_value>mètode d'obtenció per a transmissions de formularis</bookmark_value><bookmark_value>mètode d'enviament per a transmissions de formularis</bookmark_value>"
-#. 8ZGYT
+#. XUY8G
#: 01170201.xhp
msgctxt ""
"01170201.xhp\n"
"hd_id3151100\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170201.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/02/01170201.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/shared/02/01170201.xhp\">General</link>"
+msgstr "<link href=\"text/shared/02/01170201.xhp\">General</link>"
#. 68rVo
#: 01170201.xhp
@@ -7658,14 +7658,14 @@ msgctxt ""
msgid "Name"
msgstr "Nom"
-#. NDXDA
+#. GMJm3
#: 01170201.xhp
msgctxt ""
"01170201.xhp\n"
"par_id3150789\n"
"help.text"
-msgid "Specifies a name for the form. This name is used to identify the form in the <link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\">Form Navigator</link>."
-msgstr "Indica un nom per al formulari. Este nom s'utilitza per identificar el formulari al <link href=\"text/shared/02/01170600.xhp\" name=\"Navegador de formularis\">Navegador de formularis</link>."
+msgid "Specifies a name for the form. This name is used to identify the form in the <link href=\"text/shared/02/01170600.xhp\">Form Navigator</link>."
+msgstr "Indica un nom per al formulari. Este nom s'utilitza per identificar el formulari al <link href=\"text/shared/02/01170600.xhp\">Navegador de formularis</link>."
#. RStFA
#: 01170201.xhp
@@ -7928,13 +7928,13 @@ msgctxt ""
msgid "<bookmark_value>forms; events</bookmark_value> <bookmark_value>events;in database forms</bookmark_value> <bookmark_value>forms;database events</bookmark_value>"
msgstr ""
-#. 4UQe2
+#. oxqWi
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170202.xhp\" name=\"Events\">Database Form Events</link>"
+msgid "<link href=\"text/shared/02/01170202.xhp\">Database Form Events</link>"
msgstr ""
#. UDFJU
@@ -8549,14 +8549,14 @@ msgctxt ""
msgid "<bookmark_value>forms; data</bookmark_value><bookmark_value>data; forms and subforms</bookmark_value><bookmark_value>forms; subforms</bookmark_value><bookmark_value>subforms; description</bookmark_value>"
msgstr "<bookmark_value>formularis; dades</bookmark_value><bookmark_value>dades; formularis i subformularis</bookmark_value><bookmark_value>formularis; subformularis</bookmark_value><bookmark_value>subformularis;descripció</bookmark_value>"
-#. KFUAs
+#. QqJn2
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"hd_id3150040\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170203.xhp\" name=\"Data\">Data</link>"
-msgstr "<link href=\"text/shared/02/01170203.xhp\" name=\"Dades\">Dades</link>"
+msgid "<link href=\"text/shared/02/01170203.xhp\">Data</link>"
+msgstr "<link href=\"text/shared/02/01170203.xhp\">Dades</link>"
#. DcNE9
#: 01170203.xhp
@@ -8567,14 +8567,14 @@ msgctxt ""
msgid "The<emph> Data </emph>tab page defines the form properties that refer to the database that is linked to the form."
msgstr "La pestanya<emph> Dades </emph>defineix les propietats del formulari que fan referència a la base de dades que està enllaçada al formulari."
-#. qMxm7
+#. HhSFJ
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"par_id3149398\n"
"help.text"
-msgid "Defines the data source on which the form is based, or specifies whether the data can be edited by the user. Apart from the sort and filter functions, you will also find all the necessary properties to create a <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">subform</link>."
-msgstr "Defineix la font de dades a partir de la qual es basa el formulari, o indica si l'usuari pot editar les dades. A part de les funcions d'ordenació i filtre, també hi trobareu les propietats necessàries per crear un <link href=\"text/shared/02/01170203.xhp\" name=\"subformulari\">subformulari</link>."
+msgid "Defines the data source on which the form is based, or specifies whether the data can be edited by the user. Apart from the sort and filter functions, you will also find all the necessary properties to create a <link href=\"text/shared/02/01170203.xhp\">subform</link>."
+msgstr "Defineix la font de dades a partir de la qual es basa el formulari, o indica si l'usuari pot editar les dades. A part de les funcions d'ordenació i filtre, també hi trobareu les propietats necessàries per crear un <link href=\"text/shared/02/01170203.xhp\">subformulari</link>."
#. LChMy
#: 01170203.xhp
@@ -8585,13 +8585,13 @@ msgctxt ""
msgid "Data source"
msgstr "Font de dades"
-#. mEAAT
+#. X6FMF
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"par_id3152349\n"
"help.text"
-msgid "<ahelp hid=\".\">Defines the data source to which the form should refer.</ahelp> If you click the <emph>...</emph> button, you call the <link href=\"text/shared/01/01020000.xhp\" name=\"Open\"><emph>Open</emph></link> dialog, where you can choose a data source."
+msgid "<ahelp hid=\".\">Defines the data source to which the form should refer.</ahelp> If you click the <emph>...</emph> button, you call the <link href=\"text/shared/01/01020000.xhp\"><emph>Open</emph></link> dialog, where you can choose a data source."
msgstr ""
#. QFsfp
@@ -8639,14 +8639,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_PROP_CURSORSOURCETYPE\">Defines whether the data source is to be an existing database table or query, or if the form is to be generated based on an SQL statement.</ahelp>"
msgstr "<ahelp hid=\"HID_PROP_CURSORSOURCETYPE\">Defineix si la font de dades ha de ser una taula d'una base de dades que ja existeix o una consulta, o si el formulari s'ha de generar a partir d'una expressió SQL.</ahelp>"
-#. KctcM
+#. pBBUS
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "If you choose \"Table\" or \"Query\", the form will refer to the table or query that you specify under <emph>Content</emph>. If you want to create a new query or a <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">subform</link>, then you have to choose the \"SQL\" option. You can then enter the statement for the SQL query or the subform directly in the <emph>List content</emph> box on the Control properties Data tab page."
-msgstr "Si trieu \"Taula\" o \"Consulta\", el formulari farà referència a la taula o consulta que indiqueu a <emph>Contingut</emph>. Si voleu crear una nova consulta o un <link href=\"text/shared/02/01170203.xhp\" name=\"subformulari\">subformulari</link>, heu de triar l'opció SQL. Podeu introduir l'expressió per a la consulta SQL o el subformulari directament al quadre <emph>Contingut de la llista</emph> de la pestanya Dades de les Propietats de control."
+msgid "If you choose \"Table\" or \"Query\", the form will refer to the table or query that you specify under <emph>Content</emph>. If you want to create a new query or a <link href=\"text/shared/02/01170203.xhp\">subform</link>, then you have to choose the \"SQL\" option. You can then enter the statement for the SQL query or the subform directly in the <emph>List content</emph> box on the Control properties Data tab page."
+msgstr "Si trieu \"Taula\" o \"Consulta\", el formulari farà referència a la taula o consulta que indiqueu a <emph>Contingut</emph>. Si voleu crear una nova consulta o un <link href=\"text/shared/02/01170203.xhp\">subformulari</link>, heu de triar l'opció SQL. Podeu introduir l'expressió per a la consulta SQL o el subformulari directament al quadre <emph>Contingut de la llista</emph> de la pestanya Dades de les Propietats de control."
#. ZSNb6
#: 01170203.xhp
@@ -8684,14 +8684,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the required conditions for filtering the data in the form. The filter specifications follow SQL rules without using the WHERE clause.</ahelp> For example, if you want to display all records with the \"Mike\" forename, type into the data field: Forename = 'Mike'. You can also combine conditions: Forename = 'Mike' OR Forename = 'Peter'. All records matching either of these two conditions will be displayed."
msgstr ""
-#. y7z5H
+#. 2eNBc
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"par_id3156212\n"
"help.text"
-msgid "The filter function is available in user mode through the <link href=\"text/shared/02/12030000.xhp\" name=\"AutoFilter\"><emph>AutoFilter</emph></link> and <link href=\"text/shared/02/12090000.xhp\" name=\"Default Filter\"><emph>Default Filter</emph></link> icons on the <link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\"><emph>Form Navigation</emph> Bar</link>."
-msgstr "La funció de filtre està disponible en mode d'usuari, mitjançant les icones <link href=\"text/shared/02/12030000.xhp\" name=\"Filtre automàtic\"><emph>Filtre automàtic</emph></link> i <link href=\"text/shared/02/12090000.xhp\" name=\"Filtre per defecte\"><emph>Filtre per defecte</emph></link> a la barra de <link href=\"text/shared/main0213.xhp\" name=\"Navegació de formularis\"><emph>Navegació de formularis</emph></link>."
+msgid "The filter function is available in user mode through the <link href=\"text/shared/02/12030000.xhp\"><emph>AutoFilter</emph></link> and <link href=\"text/shared/02/12090000.xhp\"><emph>Default Filter</emph></link> icons on the <link href=\"text/shared/main0213.xhp\"><emph>Form Navigation</emph> Bar</link>."
+msgstr "La funció de filtre està disponible en mode d'usuari, mitjançant les icones <link href=\"text/shared/02/12030000.xhp\"><emph>Filtre automàtic</emph></link> i <link href=\"text/shared/02/12090000.xhp\"><emph>Filtre per defecte</emph></link> a la barra de <link href=\"text/shared/main0213.xhp\"><emph>Navegació de formularis</emph></link>."
#. kFDjB
#: 01170203.xhp
@@ -8711,14 +8711,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the conditions to sort the data in the form. The specification of the sorting conditions follows SQL rules without the use of the ORDER BY clause.</ahelp> For example, if you want all records of a database to be sorted in one field in an ascending order and in another field in a descending order, enter Forename ASC, Name DESC (presuming Forename and Name are the names of the data fields)."
msgstr ""
-#. PE6SR
+#. vFong
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"par_id3156444\n"
"help.text"
-msgid "The appropriate icons on the <link href=\"text/shared/main0213.xhp\" name=\"Form Navigation Bar\"><emph>Form Navigation</emph> Bar</link> can be used in User mode to sort: <link href=\"text/shared/02/12010000.xhp\" name=\"Sort Ascending\"><emph>Sort Ascending</emph></link>, <link href=\"text/shared/02/12020000.xhp\" name=\"Sort Descending\"><emph>Sort Descending</emph></link>, <link href=\"text/shared/02/12100100.xhp\" name=\"Sort\"><emph>Sort</emph></link>."
-msgstr "Les icones adequades de la barra <link href=\"text/shared/main0213.xhp\" name=\"Navegació de formularis\"><emph>Navegació de formularis</emph></link> es poden utilitzar en mode d'usuari per ordenar: <link href=\"text/shared/02/12010000.xhp\" name=\"Orde ascendent\"><emph>Orde ascendent</emph></link>, <link href=\"text/shared/02/12020000.xhp\" name=\"Orde descendent\"><emph>Orde descendent</emph></link>, <link href=\"text/shared/02/12100100.xhp\" name=\"Ordena\"><emph>Ordena</emph></link>."
+msgid "The appropriate icons on the <link href=\"text/shared/main0213.xhp\"><emph>Form Navigation</emph> Bar</link> can be used in User mode to sort: <link href=\"text/shared/02/12010000.xhp\"><emph>Sort Ascending</emph></link>, <link href=\"text/shared/02/12020000.xhp\"><emph>Sort Descending</emph></link>, <link href=\"text/shared/02/12100100.xhp\"><emph>Sort</emph></link>."
+msgstr "Les icones adequades de la barra <link href=\"text/shared/main0213.xhp\"><emph>Navegació de formularis</emph></link> es poden utilitzar en mode d'usuari per ordenar: <link href=\"text/shared/02/12010000.xhp\"><emph>Orde ascendent</emph></link>, <link href=\"text/shared/02/12020000.xhp\"><emph>Orde descendent</emph></link>, <link href=\"text/shared/02/12100100.xhp\"><emph>Ordena</emph></link>."
#. TLB5m
#: 01170203.xhp
@@ -8945,22 +8945,22 @@ msgctxt ""
msgid "Link master fields"
msgstr "Enllaça els camps mestre"
-#. Pfhi5
+#. cDFUa
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"par_id3147339\n"
"help.text"
-msgid "<ahelp hid=\".\">If you create a <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">subform</link>, enter the data field of the parent form responsible for the synchronization between parent and subform.</ahelp> To enter multiple values, press Shift + Enter after each input line."
+msgid "<ahelp hid=\".\">If you create a <link href=\"text/shared/02/01170203.xhp\">subform</link>, enter the data field of the parent form responsible for the synchronization between parent and subform.</ahelp> To enter multiple values, press Shift + Enter after each input line."
msgstr ""
-#. BB25h
+#. zUdJF
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"par_id3149568\n"
"help.text"
-msgid "The subform is based on an <link href=\"text/shared/00/00000005.xhp#sql\" name=\"SQL\">SQL</link> query; more specifically, on a <link href=\"text/sdatabase/02010100.xhp\" name=\"Parameter Query\">Parameter Query</link>. If a field name is entered in the <emph>Link master fields</emph> box, the data contained in that field in the main form is read to a variable that you must enter in <emph>Link slave fields</emph>. In an appropriate SQL statement, this variable is compared to the table data that the subform refers to. Alternatively, you can enter the column name in the <emph>Link master fields</emph> box."
+msgid "The subform is based on an <link href=\"text/shared/00/00000005.xhp#sql\">SQL</link> query; more specifically, on a <link href=\"text/sdatabase/02010100.xhp\">Parameter Query</link>. If a field name is entered in the <emph>Link master fields</emph> box, the data contained in that field in the main form is read to a variable that you must enter in <emph>Link slave fields</emph>. In an appropriate SQL statement, this variable is compared to the table data that the subform refers to. Alternatively, you can enter the column name in the <emph>Link master fields</emph> box."
msgstr ""
#. KAQ4c
@@ -9143,13 +9143,13 @@ msgctxt ""
msgid "Activation Order"
msgstr ""
-#. LWAYe
+#. 4syiD
#: 01170300.xhp
msgctxt ""
"01170300.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Activation Order</link>"
+msgid "<link href=\"text/shared/02/01170300.xhp\">Activation Order</link>"
msgstr ""
#. ds3GH
@@ -9170,14 +9170,14 @@ msgctxt ""
msgid "If form elements are inserted into a document, <item type=\"productname\">%PRODUCTNAME</item> automatically determines in which order to move from one control to the next when using the Tab key. Every new control added is automatically placed at the end of this series. In the <emph>Tab Order</emph> dialog, you can adapt the order of this series to your individual needs."
msgstr "Si s'insereixen elements de formulari al document, el <item type=\"productname\">%PRODUCTNAME</item> determina automàticament en quin orde s'ha de moure d'un control fins al següent mitjançant la tecla de tabulació. Cada control nou afegit se situa automàticament al final d'esta sèrie. Al diàleg <emph>Orde de les tabulacions</emph>, podeu adaptar l'orde d'esta sèrie perquè s'adapti a les vostres necessitats individuals."
-#. DTro2
+#. dYLts
#: 01170300.xhp
msgctxt ""
"01170300.xhp\n"
"par_id3155934\n"
"help.text"
-msgid "You can also define the index of a control through its specific properties by entering the desired value under <link href=\"text/shared/02/01170101.xhp\" name=\"Order\"><emph>Order</emph></link> in the <emph>Properties</emph> dialog of the control."
-msgstr "També podeu definir l'índex d'un control mitjançant les seues propietats específiques si introduïu el valor desitjat a la pestanya <link href=\"text/shared/02/01170101.xhp\" name=\"Orde\"><emph>Orde</emph></link> del diàleg <emph>Propietats</emph> del control."
+msgid "You can also define the index of a control through its specific properties by entering the desired value under <link href=\"text/shared/02/01170101.xhp\"><emph>Order</emph></link> in the <emph>Properties</emph> dialog of the control."
+msgstr "També podeu definir l'índex d'un control mitjançant les seues propietats específiques si introduïu el valor desitjat a la pestanya <link href=\"text/shared/02/01170101.xhp\"><emph>Orde</emph></link> del diàleg <emph>Propietats</emph> del control."
#. cquFG
#: 01170300.xhp
@@ -9278,14 +9278,14 @@ msgctxt ""
msgid "<bookmark_value>database field;add to form</bookmark_value><bookmark_value>forms;add database field</bookmark_value><bookmark_value>database field;add to report</bookmark_value><bookmark_value>report;add database field</bookmark_value>"
msgstr ""
-#. AmADg
+#. GNGsG
#: 01170400.xhp
msgctxt ""
"01170400.xhp\n"
"hd_id3144436\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=\"Afig un camp\">Afig un camp</link>"
+msgid "<link href=\"text/shared/02/01170400.xhp\">Add Field</link>"
+msgstr "<link href=\"text/shared/02/01170400.xhp\">Afig un camp</link>"
#. BxVuz
#: 01170400.xhp
@@ -9296,14 +9296,14 @@ msgctxt ""
msgid "<variable id=\"text\"><ahelp hid=\".uno:AddField\">Opens a window where you can select a database field to add to the form or report.</ahelp></variable>"
msgstr "<variable id=\"text\"><ahelp hid=\".uno:AddField\">Obri una finestra on podeu seleccionar un camp d'una base de dades per afegir-lo al formulari o l'informe.</ahelp></variable>"
-#. vJsyr
+#. r4SGa
#: 01170400.xhp
msgctxt ""
"01170400.xhp\n"
"par_id3156114\n"
"help.text"
-msgid "<ahelp hid=\"HID_FIELD_SEL\">The field selection window lists all database fields of the table or query that was specified as the data source in the <link href=\"text/shared/02/01170201.xhp\" name=\"Form Properties\">Form Properties</link>.</ahelp>"
-msgstr "<ahelp hid=\"HID_FIELD_SEL\">La finestra de selecció de camp mostra tots els camps de la base de dades de la taula o la consulta que s'haja indicat com a font de dades a <link href=\"text/shared/02/01170201.xhp\" name=\"Propietats del formulari \">Propietats del formulari </link>.</ahelp>"
+msgid "<ahelp hid=\"HID_FIELD_SEL\">The field selection window lists all database fields of the table or query that was specified as the data source in the <link href=\"text/shared/02/01170201.xhp\">Form Properties</link>.</ahelp>"
+msgstr "<ahelp hid=\"HID_FIELD_SEL\">La finestra de selecció de camp mostra tots els camps de la base de dades de la taula o la consulta que s'haja indicat com a font de dades a <link href=\"text/shared/02/01170201.xhp\">Propietats del formulari </link>.</ahelp>"
#. HeoE8
#: 01170400.xhp
@@ -9314,14 +9314,14 @@ msgctxt ""
msgid "You can insert a field into the current document by dragging and dropping. A field is then inserted which contains a link to the database."
msgstr "Podeu inserir un camp al document actual si arrossegueu i deixeu anar el camp. S'inserirà un camp que conté un enllaç a la base de dades."
-#. EbJjn
+#. xJ4rK
#: 01170400.xhp
msgctxt ""
"01170400.xhp\n"
"par_id3153541\n"
"help.text"
-msgid "If you add fields to a form and you switch off the <link href=\"text/shared/02/01170500.xhp\" name=\"Design Mode\">Design Mode</link>, you can see that $[officename] adds a labeled input field for every inserted database field."
-msgstr "Si afegiu camps a un formulari i canvieu al <link href=\"text/shared/02/01170500.xhp\" name=\"Mode de disseny\">Mode de disseny</link>, podeu veure que el $[officename] afig un camp d'entrada etiquetat per a cada camp de base de dades inserit."
+msgid "If you add fields to a form and you switch off the <link href=\"text/shared/02/01170500.xhp\">Design Mode</link>, you can see that $[officename] adds a labeled input field for every inserted database field."
+msgstr "Si afegiu camps a un formulari i canvieu al <link href=\"text/shared/02/01170500.xhp\">Mode de disseny</link>, podeu veure que el $[officename] afig un camp d'entrada etiquetat per a cada camp de base de dades inserit."
#. cKWk5
#: 01170500.xhp
@@ -9332,41 +9332,41 @@ msgctxt ""
msgid "Design Mode On/Off"
msgstr "Mode de disseny activat/desactivat"
-#. 7GiLw
+#. CyGno
#: 01170500.xhp
msgctxt ""
"01170500.xhp\n"
"hd_id3151100\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170500.xhp\" name=\"Design Mode On/Off\">Design Mode On/Off</link>"
-msgstr "<link href=\"text/shared/02/01170500.xhp\" name=\"Mode de disseny activat/desactivat\">Mode de disseny activat/desactivat</link>"
+msgid "<link href=\"text/shared/02/01170500.xhp\">Design Mode On/Off</link>"
+msgstr "<link href=\"text/shared/02/01170500.xhp\">Mode de disseny activat/desactivat</link>"
-#. ADnwZ
+#. huAdi
#: 01170500.xhp
msgctxt ""
"01170500.xhp\n"
"par_id3150040\n"
"help.text"
-msgid "<ahelp hid=\".\">Toggles the Design mode on or off. This function is used to switch quickly between <link href=\"text/sdatabase/04030000.xhp\" name=\"Design\">Design</link> and User mode. Activate to edit the form controls, deactivate to use the form controls.</ahelp>"
+msgid "<ahelp hid=\".\">Toggles the Design mode on or off. This function is used to switch quickly between <link href=\"text/sdatabase/04030000.xhp\">Design</link> and User mode. Activate to edit the form controls, deactivate to use the form controls.</ahelp>"
msgstr ""
-#. HQ3Ny
+#. rcrBD
#: 01170500.xhp
msgctxt ""
"01170500.xhp\n"
"par_id3153528\n"
"help.text"
-msgid "Please note the <link href=\"text/shared/02/01171000.xhp\" name=\"Open in Design Mode\"><emph>Open in Design Mode</emph></link> function. If <emph>Open in Design Mode</emph> is activated, the document is always opened in Design mode, regardless of the state in which it is saved."
-msgstr "Tingueu en compte la funció <link href=\"text/shared/02/01171000.xhp\" name=\"Obri en mode de disseny\"><emph>Obri en mode de disseny</emph></link>. Si <emph>Obri en mode de disseny</emph> està activat, el document sempre s'obrirà en mode de disseny, siga quin siga l'estat en què es va guardar."
+msgid "Please note the <link href=\"text/shared/02/01171000.xhp\"><emph>Open in Design Mode</emph></link> function. If <emph>Open in Design Mode</emph> is activated, the document is always opened in Design mode, regardless of the state in which it is saved."
+msgstr "Tingueu en compte la funció <link href=\"text/shared/02/01171000.xhp\"><emph>Obri en mode de disseny</emph></link>. Si <emph>Obri en mode de disseny</emph> està activat, el document sempre s'obrirà en mode de disseny, siga quin siga l'estat en què es va guardar."
-#. p5n5v
+#. N9xYj
#: 01170500.xhp
msgctxt ""
"01170500.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "If your form is linked to a database and you turn off the Design mode, the <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\">Form Bar</link> is displayed at the lower margin of the document window. You can edit the link to the database in the <link href=\"text/shared/02/01170201.xhp\" name=\"Form Properties\">Form Properties</link>."
-msgstr "Si el formulari està enllaçat a una base de dades i desactiveu el mode de disseny, es mostra la barra <link href=\"text/shared/main0213.xhp\" name=\"Disseny del formulari\">Disseny del formulari</link> al marge inferior de la finestra del document. Podeu editar l'enllaç a la base de dades, a <link href=\"text/shared/02/01170201.xhp\" name=\"Propietats del formulari\">Propietats del formulari</link>."
+msgid "If your form is linked to a database and you turn off the Design mode, the <link href=\"text/shared/main0213.xhp\">Form Bar</link> is displayed at the lower margin of the document window. You can edit the link to the database in the <link href=\"text/shared/02/01170201.xhp\">Form Properties</link>."
+msgstr "Si el formulari està enllaçat a una base de dades i desactiveu el mode de disseny, es mostra la barra <link href=\"text/shared/main0213.xhp\">Disseny del formulari</link> al marge inferior de la finestra del document. Podeu editar l'enllaç a la base de dades, a <link href=\"text/shared/02/01170201.xhp\">Propietats del formulari</link>."
#. 4eiNf
#: 01170600.xhp
@@ -9386,14 +9386,14 @@ msgctxt ""
msgid "<bookmark_value>controls;arranging in forms</bookmark_value><bookmark_value>forms;Navigator</bookmark_value><bookmark_value>Form Navigator</bookmark_value><bookmark_value>subforms; creating</bookmark_value><bookmark_value>controls; hidden</bookmark_value><bookmark_value>hidden controls in Form Navigator</bookmark_value>"
msgstr "<bookmark_value>controls;organització als formularis</bookmark_value><bookmark_value>formularis; navegador</bookmark_value><bookmark_value>navegador de formularis</bookmark_value><bookmark_value>subformularis; creació</bookmark_value><bookmark_value>controls; amagats</bookmark_value><bookmark_value>controls amagats del Navegador de formularis</bookmark_value>"
-#. kS5iY
+#. 2XrKV
#: 01170600.xhp
msgctxt ""
"01170600.xhp\n"
"hd_id3143284\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\">Form Navigator</link>"
-msgstr "<link href=\"text/shared/02/01170600.xhp\" name=\"Navegador de formularis\">Navegador de formularis</link>"
+msgid "<link href=\"text/shared/02/01170600.xhp\">Form Navigator</link>"
+msgstr "<link href=\"text/shared/02/01170600.xhp\">Navegador de formularis</link>"
#. mMGrA
#: 01170600.xhp
@@ -9485,14 +9485,14 @@ msgctxt ""
msgid "Form"
msgstr "Formulari"
-#. NpUBM
+#. qHndD
#: 01170600.xhp
msgctxt ""
"01170600.xhp\n"
"par_id3156117\n"
"help.text"
-msgid "<ahelp hid=\"SID_FM_NEW_FORM\">Creates a new form in the document. </ahelp> To create a <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">subform</link>, add the new form under the desired parent form."
-msgstr "<ahelp hid=\"SID_FM_NEW_FORM\">Crea un formulari nou al document.</ahelp> Per crear un <link href=\"text/shared/02/01170203.xhp\" name=\"subformulari\">subformulari</link>, afegiu el formulari nou sota el formulari pare que voleu."
+msgid "<ahelp hid=\"SID_FM_NEW_FORM\">Creates a new form in the document. </ahelp> To create a <link href=\"text/shared/02/01170203.xhp\">subform</link>, add the new form under the desired parent form."
+msgstr "<ahelp hid=\"SID_FM_NEW_FORM\">Crea un formulari nou al document.</ahelp> Per crear un <link href=\"text/shared/02/01170203.xhp\">subformulari</link>, afegiu el formulari nou sota el formulari pare que voleu."
#. QLUJU
#: 01170600.xhp
@@ -9503,14 +9503,14 @@ msgctxt ""
msgid "Hidden Control"
msgstr "Control amagat"
-#. 9EzVG
+#. DGqL3
#: 01170600.xhp
msgctxt ""
"01170600.xhp\n"
"par_id3158430\n"
"help.text"
-msgid "<ahelp hid=\"SID_FM_NEW_HIDDEN\">Creates a hidden control in the selected form that is not displayed on the screen. A hidden control serves to include data that is transmitted together with the form.</ahelp> It contains additional information or clarifying text that you can specify when creating the form through the <link href=\"text/shared/02/01170101.xhp\" name=\"Special Properties\">Special Properties</link> of the control. Select the entry of the hidden control in the <emph>Form Navigator</emph> and select the <emph>Properties</emph> command."
-msgstr "<ahelp hid=\"SID_FM_NEW_HIDDEN\">Crea un control amagat al formulari seleccionat que no es mostra a la pantalla. Un control amagat serveix per incloure dades que es transmeten juntament amb el formulari.</ahelp> Conté informació addicional o text aclaridor que podeu indicar quan creeu el formulari mitjançant les <link href=\"text/shared/02/01170101.xhp\" name=\"Propietats especials\">Propietats especials</link> del control. Seleccioneu l'entrada del control amagat al <emph>Navegador de formularis</emph> i seleccioneu l'orde <emph>Propietats</emph>."
+msgid "<ahelp hid=\"SID_FM_NEW_HIDDEN\">Creates a hidden control in the selected form that is not displayed on the screen. A hidden control serves to include data that is transmitted together with the form.</ahelp> It contains additional information or clarifying text that you can specify when creating the form through the <link href=\"text/shared/02/01170101.xhp\">Special Properties</link> of the control. Select the entry of the hidden control in the <emph>Form Navigator</emph> and select the <emph>Properties</emph> command."
+msgstr "<ahelp hid=\"SID_FM_NEW_HIDDEN\">Crea un control amagat al formulari seleccionat que no es mostra a la pantalla. Un control amagat serveix per incloure dades que es transmeten juntament amb el formulari.</ahelp> Conté informació addicional o text aclaridor que podeu indicar quan creeu el formulari mitjançant les <link href=\"text/shared/02/01170101.xhp\">Propietats especials</link> del control. Seleccioneu l'entrada del control amagat al <emph>Navegador de formularis</emph> i seleccioneu l'orde <emph>Propietats</emph>."
#. NR45T
#: 01170600.xhp
@@ -9557,14 +9557,14 @@ msgctxt ""
msgid "Tab order"
msgstr "Orde de les tabulacions"
-#. 9KPjF
+#. xGdFi
#: 01170600.xhp
msgctxt ""
"01170600.xhp\n"
"par_id3156282\n"
"help.text"
-msgid "When a form is selected, it opens the <link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\"><emph>Tab Order</emph></link> dialog, where the indices for focusing the control elements on the Tab key are defined."
-msgstr "Quan se selecciona un formulari, obri el diàleg <link href=\"text/shared/02/01170300.xhp\" name=\"Orde de les tabulacions\"><emph>Orde de les tabulacions</emph></link>, on es defineixen els índexs per enfocar els elements de control amb la tecla de tabulació."
+msgid "When a form is selected, it opens the <link href=\"text/shared/02/01170300.xhp\"><emph>Tab Order</emph></link> dialog, where the indices for focusing the control elements on the Tab key are defined."
+msgstr "Quan se selecciona un formulari, obri el diàleg <link href=\"text/shared/02/01170300.xhp\"><emph>Orde de les tabulacions</emph></link>, on es defineixen els índexs per enfocar els elements de control amb la tecla de tabulació."
#. RNWoJ
#: 01170600.xhp
@@ -9593,14 +9593,14 @@ msgctxt ""
msgid "Properties"
msgstr "Propietats"
-#. aJ2w9
+#. XmBX5
#: 01170600.xhp
msgctxt ""
"01170600.xhp\n"
"par_id3149766\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowPropertyBrowser\">Starts the <emph>Properties</emph> dialog for the selected entry.</ahelp> If a form is selected, the <link href=\"text/shared/02/01170200.xhp\" name=\"Form Properties\">Form Properties</link> dialog opens. If a control is selected, the <link href=\"text/shared/02/01170100.xhp\" name=\"Control Properties\">Control Properties</link> dialog opens."
-msgstr "<ahelp hid=\".uno:ShowPropertyBrowser\">Inicia el diàleg <emph>Propietats</emph> per a l'entrada seleccionada.</ahelp> Si se selecciona un formulari, s'obri el diàleg <link href=\"text/shared/02/01170200.xhp\" name=\"Propietats del formulari\">Propietats del formulari</link>. Si se selecciona un control, s'obri el diàleg <link href=\"text/shared/02/01170100.xhp\" name=\"Propietats del control\">Propietats del control</link>."
+msgid "<ahelp hid=\".uno:ShowPropertyBrowser\">Starts the <emph>Properties</emph> dialog for the selected entry.</ahelp> If a form is selected, the <link href=\"text/shared/02/01170200.xhp\">Form Properties</link> dialog opens. If a control is selected, the <link href=\"text/shared/02/01170100.xhp\">Control Properties</link> dialog opens."
+msgstr "<ahelp hid=\".uno:ShowPropertyBrowser\">Inicia el diàleg <emph>Propietats</emph> per a l'entrada seleccionada.</ahelp> Si se selecciona un formulari, s'obri el diàleg <link href=\"text/shared/02/01170200.xhp\">Propietats del formulari</link>. Si se selecciona un control, s'obri el diàleg <link href=\"text/shared/02/01170100.xhp\">Propietats del control</link>."
#. gbGFA
#: 01170700.xhp
@@ -9755,14 +9755,14 @@ msgctxt ""
msgid "Table Element Wizard"
msgstr "Auxiliar d'elements de taula"
-#. PFvFr
+#. FiFb3
#: 01170800.xhp
msgctxt ""
"01170800.xhp\n"
"hd_id3150620\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\">Table Element Wizard</link>"
-msgstr "<link href=\"text/shared/02/01170800.xhp\" name=\"Auxiliar d'elements de la taula\">Auxiliar d'elements de taula</link>"
+msgid "<link href=\"text/shared/02/01170800.xhp\">Table Element Wizard</link>"
+msgstr "<link href=\"text/shared/02/01170800.xhp\">Auxiliar d'elements de taula</link>"
#. 7EVod
#: 01170800.xhp
@@ -9773,14 +9773,14 @@ msgctxt ""
msgid "If you insert a table control in a document, the <emph>Table Element Wizard</emph> starts automatically. In this wizard, you can interactively specify which information is displayed in the table control."
msgstr "Si inseriu un control de taula en un document, s'inicia automàticament l'<emph>Auxiliar d'elements de taula</emph>. En este auxiliar podeu indicar interactivament quina informació es mostra al control de taula."
-#. Bo2sj
+#. usZJF
#: 01170800.xhp
msgctxt ""
"01170800.xhp\n"
"par_id3154422\n"
"help.text"
-msgid "You can use the <link href=\"text/shared/02/01171100.xhp\" name=\"Wizards On/Off\"><emph>Wizards On/Off</emph></link> icon to keep the wizard from starting automatically."
-msgstr "Podeu utilitzar la icona <link href=\"text/shared/02/01171100.xhp\" name=\"Auxiliars habilitats/inhabilitats\"><emph></emph></link> per evitar que l'auxiliar s'inicie automàticament."
+msgid "You can use the <link href=\"text/shared/02/01171100.xhp\"><emph>Wizards On/Off</emph></link> icon to keep the wizard from starting automatically."
+msgstr "Podeu utilitzar la icona <link href=\"text/shared/02/01171100.xhp\"><emph></emph></link> per evitar que l'auxiliar s'inicie automàticament."
#. CrThK
#: 01170801.xhp
@@ -9791,14 +9791,14 @@ msgctxt ""
msgid "Table Element / List Box / Combo Box Wizard: Data"
msgstr "Auxiliar d'elements de taula, quadres de llista o quadres combinats: Dades"
-#. AFF2r
+#. Eh2W5
#: 01170801.xhp
msgctxt ""
"01170801.xhp\n"
"hd_id3153323\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170801.xhp\" name=\"Table Element / List Box / Combo Box Wizard: Data\">Table Element / List Box / Combo Box Wizard: Data</link>"
-msgstr "<link href=\"text/shared/02/01170801.xhp\" name=\"Auxiliar d'elements de taula, quadres de llista o quadres combinats: Dades\">Auxiliar d'elements de taula, quadres de llista o quadres combinats: Dades</link>"
+msgid "<link href=\"text/shared/02/01170801.xhp\">Table Element / List Box / Combo Box Wizard: Data</link>"
+msgstr "<link href=\"text/shared/02/01170801.xhp\">Auxiliar d'elements de taula, quadres de llista o quadres combinats: Dades</link>"
#. tZ8GG
#: 01170801.xhp
@@ -9854,14 +9854,14 @@ msgctxt ""
msgid "Table Element Wizard: Field Selection"
msgstr "Auxiliar d'elements de taula: selecció de camp"
-#. 5duee
+#. eBuEQ
#: 01170802.xhp
msgctxt ""
"01170802.xhp\n"
"hd_id3155934\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170802.xhp\" name=\"Table Element Wizard: Field Selection\">Table Element Wizard: Field Selection</link>"
-msgstr "<link href=\"text/shared/02/01170802.xhp\" name=\"Auxiliar d'elements de taula \">Auxiliar d'elements de taula: selecció de camps</link>"
+msgid "<link href=\"text/shared/02/01170802.xhp\">Table Element Wizard: Field Selection</link>"
+msgstr "<link href=\"text/shared/02/01170802.xhp\">Auxiliar d'elements de taula: selecció de camps</link>"
#. WJFrx
#: 01170802.xhp
@@ -9908,14 +9908,14 @@ msgctxt ""
msgid "<bookmark_value>forms; Combo Box/List Box Wizard</bookmark_value>"
msgstr "<bookmark_value>formularis; auxiliar del quadre combinat/quadre de llista</bookmark_value>"
-#. ZvjMo
+#. oiRuM
#: 01170900.xhp
msgctxt ""
"01170900.xhp\n"
"hd_id3154094\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170900.xhp\" name=\"Combo Box/List Box Wizard\">Combo Box/List Box Wizard</link>"
-msgstr "<link href=\"text/shared/02/01170900.xhp\" name=\"Auxiliar del quadre combinat/quadre de llista\">Auxiliar del quadre combinat/quadre de llista</link>"
+msgid "<link href=\"text/shared/02/01170900.xhp\">Combo Box/List Box Wizard</link>"
+msgstr "<link href=\"text/shared/02/01170900.xhp\">Auxiliar del quadre combinat/quadre de llista</link>"
#. D6vFE
#: 01170900.xhp
@@ -9926,14 +9926,14 @@ msgctxt ""
msgid "If you insert a combo box or a list box in a document, a wizard starts automatically. This wizard allows you to interactively specify which information is shown."
msgstr "Si inseriu un quadre combinat o un quadre de llista en un document, s'inicia automàticament un auxiliar. Este auxiliar vos permet indicar interactivament quina informació es mostra."
-#. 5XaEC
+#. WUvbJ
#: 01170900.xhp
msgctxt ""
"01170900.xhp\n"
"par_id3145211\n"
"help.text"
-msgid "You can use the <link href=\"text/shared/02/01171100.xhp\" name=\"Wizards On/Off\"><emph>Wizards On/Off</emph></link> icon to keep the wizard from starting automatically."
-msgstr "Podeu utilitzar la icona <link href=\"text/shared/02/01171100.xhp\" name=\"Auxiliars habilitats/inhabilitats\"><emph></emph></link> per evitar que l'auxiliar s'inicie automàticament."
+msgid "You can use the <link href=\"text/shared/02/01171100.xhp\"><emph>Wizards On/Off</emph></link> icon to keep the wizard from starting automatically."
+msgstr "Podeu utilitzar la icona <link href=\"text/shared/02/01171100.xhp\"><emph></emph></link> per evitar que l'auxiliar s'inicie automàticament."
#. oBGqf
#: 01170900.xhp
@@ -10034,14 +10034,14 @@ msgctxt ""
msgid "Combo Box / List Box Wizard: Table Selection"
msgstr "Auxiliar del quadre combinat/quadre de llista: selecció de la taula"
-#. pGNJk
+#. nRyFx
#: 01170901.xhp
msgctxt ""
"01170901.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170901.xhp\" name=\"Combo Box / List Box Wizard: Table Selection\">Combo Box / List Box Wizard: Table Selection</link>"
-msgstr "<link href=\"text/shared/02/01170901.xhp\" name=\"Auxiliar del quadre combinat/quadre de llista: selecció de taula\">Auxiliar del quadre combinat/quadre de llista: selecció de taula</link>"
+msgid "<link href=\"text/shared/02/01170901.xhp\">Combo Box / List Box Wizard: Table Selection</link>"
+msgstr "<link href=\"text/shared/02/01170901.xhp\">Auxiliar del quadre combinat/quadre de llista: selecció de taula</link>"
#. 5arqH
#: 01170901.xhp
@@ -10088,14 +10088,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/sabpilot/ui/contenttablepage/table\">In the<emph> Table </emph>field, select the table containing the data field whose content should be displayed in the control field.</ahelp>"
msgstr "<ahelp hid=\"modules/sabpilot/ui/contenttablepage/table\">Al camp<emph> Taula</emph>, seleccioneu la taula que conté el camp de dades el contingut del qual s'ha de mostrar al camp de control.</ahelp>"
-#. QVBFj
+#. WgCFD
#: 01170901.xhp
msgctxt ""
"01170901.xhp\n"
"par_id3159233\n"
"help.text"
-msgid "The table given here appears in the <link href=\"text/shared/02/01170102.xhp\" name=\"Control properties\">Control properties</link> as an element of an SQL statement in the <emph>List Contents</emph> field."
-msgstr "La taula donada ací apareix a les <link href=\"text/shared/02/01170102.xhp\" name=\"Propietats del control \">Propietats del control </link> com una expressió SQL al camp <emph>Continguts de la llista</emph>."
+msgid "The table given here appears in the <link href=\"text/shared/02/01170102.xhp\">Control properties</link> as an element of an SQL statement in the <emph>List Contents</emph> field."
+msgstr "La taula donada ací apareix a les <link href=\"text/shared/02/01170102.xhp\">Propietats del control </link> com una expressió SQL al camp <emph>Continguts de la llista</emph>."
#. fiDLo
#: 01170902.xhp
@@ -10106,14 +10106,14 @@ msgctxt ""
msgid "Combo/List Box Wizard: Field Selection"
msgstr "Auxiliar del quadre combinat/quadre de llista: selecció de camp"
-#. b9LS7
+#. NRkdi
#: 01170902.xhp
msgctxt ""
"01170902.xhp\n"
"hd_id3153323\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170902.xhp\" name=\"Combo/List Box Wizard: Field Selection\">Combo/List Box Wizard: Field Selection</link>"
-msgstr "<link href=\"text/shared/02/01170902.xhp\" name=\"Auxiliar del quadre combinat/quadre de llista: selecció de camp\">Auxiliar del quadre combinat/quadre de llista: selecció de camp</link>"
+msgid "<link href=\"text/shared/02/01170902.xhp\">Combo/List Box Wizard: Field Selection</link>"
+msgstr "<link href=\"text/shared/02/01170902.xhp\">Auxiliar del quadre combinat/quadre de llista: selecció de camp</link>"
#. LSXGT
#: 01170902.xhp
@@ -10160,14 +10160,14 @@ msgctxt ""
msgid "<ahelp hid=\"DBP_EDIT_RID_PAGE_LCW_CONTENTSELECTION_FIELD_ET_DISPLAYEDFIELD\">Specifies the field whose data are to be shown in the combo or list boxes.</ahelp>"
msgstr "<ahelp hid=\"DBP_EDIT_RID_PAGE_LCW_CONTENTSELECTION_FIELD_ET_DISPLAYEDFIELD\">Indica el camp les dades del qual s'han de mostrar als quadres combinats o als quadres de llista.</ahelp>"
-#. zVxgx
+#. JByGM
#: 01170902.xhp
msgctxt ""
"01170902.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "The field name given here appears in the <link href=\"text/shared/02/01170102.xhp\" name=\"Control properties\">Control properties</link> as an element of an SQL statement in the <emph>List Contents</emph> field."
-msgstr "El nom del camp donat ací apareix a les <link href=\"text/shared/02/01170102.xhp\" name=\"Propietats del control\">Propietats del control</link> com un element d'una expressió SQL als <emph>Continguts de la llista</emph> field."
+msgid "The field name given here appears in the <link href=\"text/shared/02/01170102.xhp\">Control properties</link> as an element of an SQL statement in the <emph>List Contents</emph> field."
+msgstr "El nom del camp donat ací apareix a les <link href=\"text/shared/02/01170102.xhp\">Propietats del control</link> com un element d'una expressió SQL als <emph>Continguts de la llista</emph> field."
#. WDn2B
#: 01170903.xhp
@@ -10178,14 +10178,14 @@ msgctxt ""
msgid "List Box Wizard: Field Link"
msgstr "Auxiliar del quadre de llista: enllaç del camp"
-#. hscLB
+#. tQdHA
#: 01170903.xhp
msgctxt ""
"01170903.xhp\n"
"hd_id3149119\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170903.xhp\" name=\"List Box Wizard: Field Link\">List Box Wizard: Field Link</link>"
-msgstr "<link href=\"text/shared/02/01170903.xhp\" name=\"Auxiliar del quadre de llista: enllaç del camp\">Auxiliar del quadre de llista: enllaç del camp</link>"
+msgid "<link href=\"text/shared/02/01170903.xhp\">List Box Wizard: Field Link</link>"
+msgstr "<link href=\"text/shared/02/01170903.xhp\">Auxiliar del quadre de llista: enllaç del camp</link>"
#. 7uydH
#: 01170903.xhp
@@ -10223,14 +10223,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/sabpilot/ui/fieldlinkpage/valuefield\">Specifies the current form data field which should be related to a field in the linked table.</ahelp> In addition, click the desired data field in the list field below."
msgstr "<ahelp hid=\"modules/sabpilot/ui/fieldlinkpage/valuefield\">Indica el camp de dades del formulari actual que s'ha de relacionar amb un camp de la taula enllaçada.</ahelp> Feu clic al camp de dades desitjat al camp de llista que apareix a sota."
-#. BQXJv
+#. NREzu
#: 01170903.xhp
msgctxt ""
"01170903.xhp\n"
"par_id3145669\n"
"help.text"
-msgid "In <link href=\"text/shared/02/01170102.xhp\" name=\"Control - Properties\">Control - Properties</link>, the specified field will appear as an entry in the <emph>Data</emph> tab page under <emph>Data field</emph>."
-msgstr "A <link href=\"text/shared/02/01170102.xhp\" name=\"Control - Propietats\">Control - Propietats</link>, el camp indicat apareixerà com una entrada a la pestanya <emph>Dades</emph> a sota de <emph>Camp de dades</emph>."
+msgid "In <link href=\"text/shared/02/01170102.xhp\">Control - Properties</link>, the specified field will appear as an entry in the <emph>Data</emph> tab page under <emph>Data field</emph>."
+msgstr "A <link href=\"text/shared/02/01170102.xhp\">Control - Propietats</link>, el camp indicat apareixerà com una entrada a la pestanya <emph>Dades</emph> a sota de <emph>Camp de dades</emph>."
#. 9s3QV
#: 01170903.xhp
@@ -10250,14 +10250,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/sabpilot/ui/fieldlinkpage/listtable\">Specifies the linked table data field, which is related to the specified value table field.</ahelp> In addition, click the data field in the lower list field."
msgstr "<ahelp hid=\"modules/sabpilot/ui/fieldlinkpage/listtable\">Indica el camp de dades de la taula enllaçada, que està relacionat amb el valor indicat del camp de la taula.</ahelp> Feu clic al camp de dades del camp de la llista inferior."
-#. U6B4R
+#. eF3as
#: 01170903.xhp
msgctxt ""
"01170903.xhp\n"
"par_id3154823\n"
"help.text"
-msgid "In <link href=\"text/shared/02/01170102.xhp\" name=\"Control - Properties\">Control - Properties</link>, the specified field will appear in the <emph>Data</emph> tab page of a SQL statement under <emph>List Contents</emph>."
-msgstr "A <link href=\"text/shared/02/01170102.xhp\" name=\"Control - Propietats\">Control - Propietats</link>, el camp indicat apareixerà a la pestanya <emph>Dades</emph> d'una expressió SQL, a<emph>Contingut de la llista</emph>."
+msgid "In <link href=\"text/shared/02/01170102.xhp\">Control - Properties</link>, the specified field will appear in the <emph>Data</emph> tab page of a SQL statement under <emph>List Contents</emph>."
+msgstr "A <link href=\"text/shared/02/01170102.xhp\">Control - Propietats</link>, el camp indicat apareixerà a la pestanya <emph>Dades</emph> d'una expressió SQL, a<emph>Contingut de la llista</emph>."
#. DD6Sb
#: 01170904.xhp
@@ -10268,14 +10268,14 @@ msgctxt ""
msgid "Combo Box Wizard: Database Field"
msgstr "Auxiliar del quadre combinat: camp de la base de dades"
-#. hcyyz
+#. VTGbY
#: 01170904.xhp
msgctxt ""
"01170904.xhp\n"
"hd_id3144740\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170904.xhp\" name=\"Combo Box Wizard: Database Field\">Combo Box Wizard: Database Field</link>"
-msgstr "<link href=\"text/shared/02/01170904.xhp\" name=\"Auxiliar del quadre combinat: camp de la base de dades\">Auxiliar del quadre combinat: camp de la base de dades</link>"
+msgid "<link href=\"text/shared/02/01170904.xhp\">Combo Box Wizard: Database Field</link>"
+msgstr "<link href=\"text/shared/02/01170904.xhp\">Auxiliar del quadre combinat: camp de la base de dades</link>"
#. PWA67
#: 01170904.xhp
@@ -10331,14 +10331,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/yesRadiobutton\">Specifies whether the user's entered or selected combination field value should be saved in a database field.</ahelp> Several database table fields are offered which can be accessed in the current form."
msgstr "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/yesRadiobutton\">Indica si el valor del camp de combinació introduït o seleccionat per l'usuari s'ha de guardar en un camp d'una base de dades.</ahelp> S'ofereixen diversos camps de taula de la base de dades als quals es pot accedir al formulari actual."
-#. FPyqN
+#. BUn8C
#: 01170904.xhp
msgctxt ""
"01170904.xhp\n"
"par_id3145212\n"
"help.text"
-msgid "In <link href=\"text/shared/02/01170102.xhp\" name=\"Control - Properties\">Control - Properties</link> the selected field appears as an entry in the <emph>Data</emph> tab page under <emph>Data field</emph>."
-msgstr "A <link href=\"text/shared/02/01170102.xhp\" name=\"Control - Propietats\">Control - Propietats</link> el camp seleccionat apareix com una entrada a la pestanya <emph>Dades</emph> a sota de <emph>Camp de dades</emph>."
+msgid "In <link href=\"text/shared/02/01170102.xhp\">Control - Properties</link> the selected field appears as an entry in the <emph>Data</emph> tab page under <emph>Data field</emph>."
+msgstr "A <link href=\"text/shared/02/01170102.xhp\">Control - Propietats</link> el camp seleccionat apareix com una entrada a la pestanya <emph>Dades</emph> a sota de <emph>Camp de dades</emph>."
#. AsWmN
#: 01170904.xhp
@@ -10394,22 +10394,22 @@ msgctxt ""
msgid "<bookmark_value>forms; opening in design mode</bookmark_value><bookmark_value>controls; activating in forms</bookmark_value><bookmark_value>design mode after saving</bookmark_value><bookmark_value>documents; opening in design mode</bookmark_value><bookmark_value>edit mode; after opening</bookmark_value>"
msgstr "<bookmark_value>formularis; obrir en mode de disseny</bookmark_value><bookmark_value>controls; activació en formularis</bookmark_value><bookmark_value>mode de disseny després de guardar</bookmark_value><bookmark_value>documents; obrir en mode de disseny</bookmark_value><bookmark_value>mode d'edició; després d'obrir</bookmark_value>"
-#. 4DsEb
+#. cpFGb
#: 01171000.xhp
msgctxt ""
"01171000.xhp\n"
"hd_id3156211\n"
"help.text"
-msgid "<link href=\"text/shared/02/01171000.xhp\" name=\"Open in Design Mode\">Open in Design Mode</link>"
-msgstr "<link href=\"text/shared/02/01171000.xhp\" name=\"Obri en mode de disseny\">Obri en mode de disseny</link>"
+msgid "<link href=\"text/shared/02/01171000.xhp\">Open in Design Mode</link>"
+msgstr "<link href=\"text/shared/02/01171000.xhp\">Obri en mode de disseny</link>"
-#. dcALM
+#. rEtE6
#: 01171000.xhp
msgctxt ""
"01171000.xhp\n"
"par_id3146130\n"
"help.text"
-msgid "<ahelp hid=\".uno:OpenReadOnly\">Opens forms in <link href=\"text/sdatabase/04030000.xhp\" name=\"Design Mode\">Design Mode</link> so that the form can be edited.</ahelp>"
+msgid "<ahelp hid=\".uno:OpenReadOnly\">Opens forms in <link href=\"text/sdatabase/04030000.xhp\">Design Mode</link> so that the form can be edited.</ahelp>"
msgstr ""
#. heWLU
@@ -10448,14 +10448,14 @@ msgctxt ""
msgid "Wizards On/Off"
msgstr "Auxiliars habilitats/inhabilitats"
-#. ywPzj
+#. oVMAb
#: 01171100.xhp
msgctxt ""
"01171100.xhp\n"
"hd_id3155934\n"
"help.text"
-msgid "<link href=\"text/shared/02/01171100.xhp\" name=\"Wizards On/Off\">Wizards On/Off</link>"
-msgstr "<link href=\"text/shared/02/01171100.xhp\" name=\"Auxiliars habilitats/inhabilitats\">Auxiliars habilitats/inhabilitats</link>"
+msgid "<link href=\"text/shared/02/01171100.xhp\">Wizards On/Off</link>"
+msgstr "<link href=\"text/shared/02/01171100.xhp\">Auxiliars habilitats/inhabilitats</link>"
#. mSsiE
#: 01171100.xhp
@@ -10520,14 +10520,14 @@ msgctxt ""
msgid "Snap to Grid"
msgstr "Ajusta a la graella"
-#. ihk8N
+#. Eds8g
#: 01171300.xhp
msgctxt ""
"01171300.xhp\n"
"hd_id3151262\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=\"Ajusta a la graella\">Ajusta a la graella</link>"
+msgid "<link href=\"text/shared/02/01171300.xhp\">Snap to Grid</link>"
+msgstr "<link href=\"text/shared/02/01171300.xhp\">Ajusta a la graella</link>"
#. JWkWQ
#: 01171300.xhp
@@ -10601,14 +10601,14 @@ msgctxt ""
msgid "Navigator"
msgstr "Navegador"
-#. D5y6K
+#. JjEai
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
"hd_id3155934\n"
"help.text"
-msgid "<link href=\"text/shared/02/01220000.xhp\" name=\"Navigator\">Navigator</link>"
-msgstr "<link href=\"text/shared/02/01220000.xhp\" name=\"Navegador\">Navegador</link>"
+msgid "<link href=\"text/shared/02/01220000.xhp\">Navigator</link>"
+msgstr "<link href=\"text/shared/02/01220000.xhp\">Navegador</link>"
#. aq8R6
#: 01220000.xhp
@@ -10619,14 +10619,14 @@ msgctxt ""
msgid "Click the <emph>Navigator On/Off</emph> icon to hide or show the <emph>Navigator</emph>."
msgstr "Feu clic a la icona <emph>Navegador activat/desactivat</emph> per a amagar o mostrar el <emph>Navegador</emph>."
-#. FVj3F
+#. iFG9s
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
"par_id3152594\n"
"help.text"
-msgid "You can also call the <emph>Navigator</emph> by selecting <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/02110000.xhp\" name=\"View - Navigator\"><emph>View - Navigator</emph></link></caseinline><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"View - Navigator\"><emph>View - Navigator</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/02110000.xhp\" name=\"View - Navigator\"><emph>View - Navigator</emph></link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/02110000.xhp\" name=\"View - Navigator\"><emph>View - Navigator</emph></link></caseinline><defaultinline><emph>View - Navigator</emph></defaultinline></switchinline>."
-msgstr "També podeu cridar el <emph>Navegador</emph> seleccionant <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Visualitza ▸ Navegador\"><emph>Visualitza ▸ Navegador</emph></link></caseinline><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Visualitza ▸ Navegador\"><emph>Visualitza ▸ Navegador</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/02110000.xhp\" name=\"Visualitza ▸ Navegador\"><emph>Visualitza ▸ Navegador</emph></link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/02110000.xhp\" name=\"Visualitza ▸ Navegador\"><emph>Visualitza ▸ Navegador</emph></link></caseinline><defaultinline><emph>Visualitza ▸ Navegador</emph></defaultinline></switchinline>"
+msgid "You can also call the <emph>Navigator</emph> by selecting <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/02110000.xhp\"><emph>View - Navigator</emph></link></caseinline><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\"><emph>View - Navigator</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/02110000.xhp\"><emph>View - Navigator</emph></link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/02110000.xhp\"><emph>View - Navigator</emph></link></caseinline><defaultinline><emph>View - Navigator</emph></defaultinline></switchinline>."
+msgstr "També podeu cridar el <emph>Navegador</emph> seleccionant <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/02110000.xhp\"><emph>Visualitza ▸ Navegador</emph></link></caseinline><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\"><emph>Visualitza ▸ Navegador</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/02110000.xhp\"><emph>Visualitza ▸ Navegador</emph></link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/02110000.xhp\"><emph>Visualitza ▸ Navegador</emph></link></caseinline><defaultinline><emph>Visualitza ▸ Navegador</emph></defaultinline></switchinline>"
#. SwwSd
#: 01220000.xhp
@@ -10655,13 +10655,13 @@ msgctxt ""
msgid "Styles (icon)"
msgstr ""
-#. PUeB4
+#. 9qict
#: 01230000.xhp
msgctxt ""
"01230000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"text documents\">Styles</link></caseinline><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\" name=\"spreadsheets\">Styles</link></caseinline><defaultinline><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">Styles</link></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\">Styles</link></caseinline><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\">Styles</link></caseinline><defaultinline><link href=\"text/simpress/01/05100000.xhp\">Styles</link></defaultinline></switchinline>"
msgstr ""
#. 8NLAN
@@ -10673,14 +10673,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DesignerDialog\">Specifies whether to show or hide the <emph>Styles</emph> window, which is where you can assign and organize styles.</ahelp>"
msgstr "<ahelp hid=\".uno:DesignerDialog\">Indica si s'ha de mostrar la finestra <emph>Estils</emph>, que és on podeu assignar i organitzar estils.</ahelp>"
-#. CAqfM
+#. 4vuTK
#: 01230000.xhp
msgctxt ""
"01230000.xhp\n"
"par_id3153894\n"
"help.text"
-msgid "Each $[officename] application has its own <emph>Styles</emph> window. Hence there are separate windows for <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"text documents\">text documents</link></caseinline><defaultinline>text documents</defaultinline></switchinline>, for <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\" name=\"spreadsheets\">spreadsheets</link></caseinline><defaultinline>spreadsheets</defaultinline></switchinline> and for <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><defaultinline>presentations/drawing documents</defaultinline></switchinline>."
-msgstr "Cada aplicació del $[officename] té la seua finestra d'<emph>Estils</emph>. Per tant, hi ha finestres diferents per a <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"documents de text \">documents de text</link></caseinline><defaultinline>documents de text</defaultinline></switchinline>, <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\" name=\"fulls de càlcul\">fulls de càlcul</link></caseinline><defaultinline>fulls de càlcul</defaultinline></switchinline> i per a <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentacions/documents de dibuix documents\">presentacions/documents de dibuix</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentacions/documents de dibuix \">presentacions/documents de dibuix</link></caseinline><defaultinline>presentacions/documents de dibuix</defaultinline></switchinline>."
+msgid "Each $[officename] application has its own <emph>Styles</emph> window. Hence there are separate windows for <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\">text documents</link></caseinline><defaultinline>text documents</defaultinline></switchinline>, for <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\">spreadsheets</link></caseinline><defaultinline>spreadsheets</defaultinline></switchinline> and for <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\">presentations/drawing documents</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\">presentations/drawing documents</link></caseinline><defaultinline>presentations/drawing documents</defaultinline></switchinline>."
+msgstr "Cada aplicació del $[officename] té la seua finestra d'<emph>Estils</emph>. Per tant, hi ha finestres diferents per a <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\">documents de text</link></caseinline><defaultinline>documents de text</defaultinline></switchinline>, <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\">fulls de càlcul</link></caseinline><defaultinline>fulls de càlcul</defaultinline></switchinline> i per a <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\">presentacions/documents de dibuix</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\">presentacions/documents de dibuix</link></caseinline><defaultinline>presentacions/documents de dibuix</defaultinline></switchinline>."
#. VmzDY
#: 01230000.xhp
@@ -10709,14 +10709,14 @@ msgctxt ""
msgid "Set Paragraph Style"
msgstr "Defineix l'estil del paràgraf"
-#. b7cD8
+#. DjDtd
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Set Paragraph Style\">Set Paragraph Style</link>"
-msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Defineix l'estil del paràgraf\">Defineix l'estil del paràgraf</link>"
+msgid "<link href=\"text/shared/02/02010000.xhp\">Set Paragraph Style</link>"
+msgstr "<link href=\"text/shared/02/02010000.xhp\">Defineix l'estil del paràgraf</link>"
#. YUmBx
#: 02010000.xhp
@@ -10781,14 +10781,14 @@ msgctxt ""
msgid "<bookmark_value>fonts; specifying several</bookmark_value><bookmark_value>alternative fonts</bookmark_value><bookmark_value>characters; alternative fonts</bookmark_value>"
msgstr "<bookmark_value>tipus de lletra; especificació de diversos tipus de lletra</bookmark_value><bookmark_value>tipus de lletra alternatius</bookmark_value><bookmark_value>caràcters; tipus de lletra alternatius</bookmark_value>"
-#. LtBy9
+#. KezmB
#: 02020000.xhp
msgctxt ""
"02020000.xhp\n"
"hd_id3150808\n"
"help.text"
-msgid "<link href=\"text/shared/02/02020000.xhp\" name=\"Font Name\">Font Name</link>"
-msgstr "<link href=\"text/shared/02/02020000.xhp\" name=\"Nom del tipus de lletra\">Nom del tipus de lletra</link>"
+msgid "<link href=\"text/shared/02/02020000.xhp\">Font Name</link>"
+msgstr "<link href=\"text/shared/02/02020000.xhp\">Nom del tipus de lletra</link>"
#. sWoXi
#: 02020000.xhp
@@ -10853,13 +10853,13 @@ msgctxt ""
msgid "In $[officename] you see the available fonts only if a printer is installed as the default printer in your system. In order to install a printer as the default printer please refer to your operating system documentation."
msgstr ""
-#. i2iSS
+#. AkdrM
#: 02020000.xhp
msgctxt ""
"02020000.xhp\n"
"par_id3148550\n"
"help.text"
-msgid "<variable id=\"vorschautext\">You can see the name of the fonts formatted in their respective font if you mark the <emph>Show preview of fonts</emph> field in <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - View\"><emph>$[officename] - View</emph></link> in the <emph>Options</emph> dialog box.</variable>"
+msgid "<variable id=\"vorschautext\">You can see the name of the fonts formatted in their respective font if you mark the <emph>Show preview of fonts</emph> field in <link href=\"text/shared/optionen/01010800.xhp\"><emph>$[officename] - View</emph></link> in the <emph>Options</emph> dialog box.</variable>"
msgstr ""
#. xFsW2
@@ -10880,14 +10880,14 @@ msgctxt ""
msgid "Font Size"
msgstr "Mida de la lletra"
-#. W3piK
+#. 3FCpN
#: 02030000.xhp
msgctxt ""
"02030000.xhp\n"
"hd_id3085157\n"
"help.text"
-msgid "<link href=\"text/shared/02/02030000.xhp\" name=\"Font Size\">Font Size</link>"
-msgstr "<link href=\"text/shared/02/02030000.xhp\" name=\"Mida de la lletra\">Mida de la lletra</link>"
+msgid "<link href=\"text/shared/02/02030000.xhp\">Font Size</link>"
+msgstr "<link href=\"text/shared/02/02030000.xhp\">Mida de la lletra</link>"
#. 6GRjL
#: 02030000.xhp
@@ -10943,14 +10943,14 @@ msgctxt ""
msgid "Text running from left to right"
msgstr "Direcció del text d'esquerra a dreta"
-#. Y2McD
+#. 32CxC
#: 02040000.xhp
msgctxt ""
"02040000.xhp\n"
"hd_id3153255\n"
"help.text"
-msgid "<link href=\"text/shared/02/02040000.xhp\" name=\"Text running from left to right\">Text running from left to right</link>"
-msgstr "<link href=\"text/shared/02/02040000.xhp\" name=\"Text d'esquerra a dreta\">D'esquerra a dreta</link>"
+msgid "<link href=\"text/shared/02/02040000.xhp\">Text running from left to right</link>"
+msgstr "<link href=\"text/shared/02/02040000.xhp\">D'esquerra a dreta</link>"
#. vTM7z
#: 02040000.xhp
@@ -10988,14 +10988,14 @@ msgctxt ""
msgid "Text running from top to bottom"
msgstr "Direcció del text de dalt a baix"
-#. zUG98
+#. ZEmAE
#: 02050000.xhp
msgctxt ""
"02050000.xhp\n"
"hd_id3149119\n"
"help.text"
-msgid "<link href=\"text/shared/02/02050000.xhp\" name=\"Text running from top to bottom\">Text running from top to bottom</link>"
-msgstr "<link href=\"text/shared/02/02050000.xhp\" name=\"Direcció del text de dalt a baix\">Direcció del text de dalt a baix</link>"
+msgid "<link href=\"text/shared/02/02050000.xhp\">Text running from top to bottom</link>"
+msgstr "<link href=\"text/shared/02/02050000.xhp\">Direcció del text de dalt a baix</link>"
#. huihZ
#: 02050000.xhp
@@ -11042,13 +11042,13 @@ msgctxt ""
msgid "<bookmark_value>paragraphs;decreasing indents of</bookmark_value><bookmark_value>decrease indent of paragraph</bookmark_value>"
msgstr ""
-#. WWFB7
+#. A7Y8B
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\" name=\"Decrease Indent\">Decrease Indent</link></variable>"
+msgid "<variable id=\"decreaseindent_h1\"> <link href=\"text/shared/02/02130000.xhp\">Decrease Indent</link></variable>"
msgstr ""
#. DCXbA
@@ -11060,13 +11060,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DecrementIndent\">Click the <emph>Decrease Indent</emph> icon to reduce the left indent of the current paragraph or cell content and set it to the previous default tab position.</ahelp>"
msgstr "<ahelp hid=\".uno:DecrementIndent\">Feu clic a la icona <emph>Redueix el sagnat</emph> per reduir el sagnat esquerre del paràgraf actual o el contingut de la cel·la i posar-lo a la posició anterior per defecte del tabulador.</ahelp>"
-#. DZsGF
+#. HPhUT
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3154186\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
msgstr ""
#. ii8Wo
@@ -11087,13 +11087,13 @@ msgctxt ""
msgid "Decrease Indent"
msgstr "Redueix el sagnat"
-#. 29Vhy
+#. FFVqt
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3153031\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you click the <emph>Decrease Indent</emph> icon while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> key, the indent for the selected paragraph is moved by the default tab stop that has been set under <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - General\"><emph>%PRODUCTNAME Writer - General</emph></link> in the <emph>Options</emph> dialog box.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you click the <emph>Decrease Indent</emph> icon while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> key, the indent for the selected paragraph is moved by the default tab stop that has been set under <link href=\"text/shared/optionen/01040200.xhp\"><emph>%PRODUCTNAME Writer - General</emph></link> in the <emph>Options</emph> dialog box.</caseinline></switchinline>"
msgstr ""
#. bQJwB
@@ -11114,13 +11114,13 @@ msgctxt ""
msgid "<bookmark_value>paragraphs; increasing indents of</bookmark_value><bookmark_value>increase indent of paragraph</bookmark_value>"
msgstr "<bookmark_value>paràgrafs; augment del sagnat dels</bookmark_value><bookmark_value>augment del sagnat del paràgraf</bookmark_value>"
-#. ydABo
+#. Tz5wF
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\" name=\"Increase Indent\">Increase Indent</link></variable>"
+msgid "<variable id=\"increaseindent_h1\"><link href=\"text/shared/02/02140000.xhp\">Increase Indent</link></variable>"
msgstr ""
#. FBggx
@@ -11132,13 +11132,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click the <emph>Increase Indent</emph> icon to increase the left indent of the current paragraph or cell content and set it to the next default tab position.</ahelp>"
msgstr "<ahelp hid=\".\">Feu clic a la icona <emph>Augmenta el sagnat</emph> per a augmentar el sagnat esquerre del paràgraf actual o el contingut de la cel·la i posar-lo a la posició següent per defecte del tabulador.</ahelp>"
-#. hE64G
+#. yriSY
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3149798\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased. </caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\"><emph>Format - Cells - Alignment</emph></link> tab. </caseinline></switchinline>"
msgstr ""
#. LBvjm
@@ -11159,13 +11159,13 @@ msgctxt ""
msgid "Increase Indent"
msgstr "Augmenta el sagnat"
-#. AaWfB
+#. 8FJBt
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3152996\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click the <emph>Increase Indent</emph> icon while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> key to move the indenting of the selected paragraph by the default tab distance set under <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - General\"><emph>%PRODUCTNAME Writer - General</emph></link> in the <emph>Options</emph> dialog box.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click the <emph>Increase Indent</emph> icon while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> key to move the indenting of the selected paragraph by the default tab distance set under <link href=\"text/shared/optionen/01040200.xhp\"><emph>%PRODUCTNAME Writer - General</emph></link> in the <emph>Options</emph> dialog box.</caseinline></switchinline>"
msgstr ""
#. LssTS
@@ -11276,14 +11276,14 @@ msgctxt ""
msgid "Character Highlighting Color"
msgstr ""
-#. 5GRDP
+#. jzSM9
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Highlighting</link>"
-msgstr "<link href=\"text/shared/02/02160000.xhp\" name=\"Color de realçament\">Realçament</link>"
+msgid "<link href=\"text/shared/02/02160000.xhp\">Highlighting</link>"
+msgstr "<link href=\"text/shared/02/02160000.xhp\">Realçament</link>"
#. 6EDWk
#: 02160000.xhp
@@ -11519,14 +11519,14 @@ msgctxt ""
msgid "Background color/Paragraph background"
msgstr "Color de fons/fons del paràgraf"
-#. uS3DY
+#. JFczU
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/shared/02/02170000.xhp\" name=\"Background Color\">Background Color</link>"
-msgstr "<link href=\"text/shared/02/02170000.xhp\" name=\"Color de fons\">Color de fons</link>"
+msgid "<link href=\"text/shared/02/02170000.xhp\">Background Color</link>"
+msgstr "<link href=\"text/shared/02/02170000.xhp\">Color de fons</link>"
#. CKCF9
#: 02170000.xhp
@@ -11564,14 +11564,14 @@ msgctxt ""
msgid "Increase Spacing"
msgstr "Augmenta l'espaiat"
-#. JQF9B
+#. TSC3B
#: 03110000.xhp
msgctxt ""
"03110000.xhp\n"
"hd_id3154873\n"
"help.text"
-msgid "<link href=\"text/shared/02/03110000.xhp\" name=\"Increase Spacing\">Increase Spacing</link>"
-msgstr "<link href=\"text/shared/02/03110000.xhp\" name=\"Augmenta l'espaiat\">Augmenta l'espaiat</link>"
+msgid "<link href=\"text/shared/02/03110000.xhp\">Increase Spacing</link>"
+msgstr "<link href=\"text/shared/02/03110000.xhp\">Augmenta l'espaiat</link>"
#. 2qhMM
#: 03110000.xhp
@@ -11600,14 +11600,14 @@ msgctxt ""
msgid "Increase Spacing"
msgstr "Augmenta l'espaiat"
-#. wyVYG
+#. Mwm3z
#: 03110000.xhp
msgctxt ""
"03110000.xhp\n"
"par_id3155391\n"
"help.text"
-msgid "You can make additional adjustments to the spacing by selecting <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph - Indents & Spacing\"><emph>Format - Paragraph - Indents & Spacing</emph></link>."
-msgstr "Podeu ajustar més l'espaiat si seleccioneu <link href=\"text/shared/01/05030100.xhp\" name=\"Format ▸ Paràgraf ▸ Sagnats i espaiat\"><emph>Format ▸ Paràgraf ▸ Sagnats i espaiat</emph></link>."
+msgid "You can make additional adjustments to the spacing by selecting <link href=\"text/shared/01/05030100.xhp\"><emph>Format - Paragraph - Indents & Spacing</emph></link>."
+msgstr "Podeu ajustar més l'espaiat si seleccioneu <link href=\"text/shared/01/05030100.xhp\"><emph>Format ▸ Paràgraf ▸ Sagnats i espaiat</emph></link>."
#. krudS
#: 03120000.xhp
@@ -11618,14 +11618,14 @@ msgctxt ""
msgid "Decrease Spacing"
msgstr "Redueix l'espaiat"
-#. hysfi
+#. WhpEZ
#: 03120000.xhp
msgctxt ""
"03120000.xhp\n"
"hd_id3155934\n"
"help.text"
-msgid "<link href=\"text/shared/02/03120000.xhp\" name=\"Decrease Spacing\">Decrease Spacing</link>"
-msgstr "<link href=\"text/shared/02/03120000.xhp\" name=\"Redueix l'espaiat\">Redueix l'espaiat</link>"
+msgid "<link href=\"text/shared/02/03120000.xhp\">Decrease Spacing</link>"
+msgstr "<link href=\"text/shared/02/03120000.xhp\">Redueix l'espaiat</link>"
#. noLNa
#: 03120000.xhp
@@ -11654,14 +11654,14 @@ msgctxt ""
msgid "Decrease Spacing"
msgstr "Redueix l'espaiat"
-#. oyGdA
+#. 4Gpea
#: 03120000.xhp
msgctxt ""
"03120000.xhp\n"
"par_id3156410\n"
"help.text"
-msgid "You can make additional adjustments to the spacing by selecting <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph - Indents & Spacing\"><emph>Format - Paragraph - Indents & Spacing</emph></link>."
-msgstr "Podeu ajustar més l'espaiat si seleccioneu <link href=\"text/shared/01/05030100.xhp\" name=\"Format ▸ Paràgraf ▸ Sagnats i espaiat\"><emph>Format ▸ Paràgraf ▸ Sagnats i espaiat</emph></link>."
+msgid "You can make additional adjustments to the spacing by selecting <link href=\"text/shared/01/05030100.xhp\"><emph>Format - Paragraph - Indents & Spacing</emph></link>."
+msgstr "Podeu ajustar més l'espaiat si seleccioneu <link href=\"text/shared/01/05030100.xhp\"><emph>Format ▸ Paràgraf ▸ Sagnats i espaiat</emph></link>."
#. 3JoaM
#: 03130000.xhp
@@ -11672,14 +11672,14 @@ msgctxt ""
msgid "Borders"
msgstr "Vores"
-#. NrTSB
+#. fs5iX
#: 03130000.xhp
msgctxt ""
"03130000.xhp\n"
"hd_id3143284\n"
"help.text"
-msgid "<link href=\"text/shared/02/03130000.xhp\" name=\"Borders\">Borders</link>"
-msgstr "<link href=\"text/shared/02/03130000.xhp\" name=\"Vores\">Vores</link>"
+msgid "<link href=\"text/shared/02/03130000.xhp\">Borders</link>"
+msgstr "<link href=\"text/shared/02/03130000.xhp\">Vores</link>"
#. kxF9k
#: 03130000.xhp
@@ -11726,14 +11726,14 @@ msgctxt ""
msgid "Borders"
msgstr "Vores"
-#. GE9or
+#. qFjWi
#: 03130000.xhp
msgctxt ""
"03130000.xhp\n"
"par_id3148990\n"
"help.text"
-msgid "Further information can be found in the Help in <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"><emph>Borders</emph></link>. You can also find information on how to <link href=\"text/shared/guide/border_table.xhp\" name=\"format a text table\"><emph>format a text table</emph></link> with the <emph>Borders</emph> icon."
-msgstr "Es pot trobar més informació a l'Ajuda, a <link href=\"text/shared/01/05030500.xhp\" name=\"Vores\"><emph>Vores</emph></link>. També podeu trobar informació sobre com s'ha de <link href=\"text/shared/guide/border_table.xhp\" name=\"formatar una taula de text\"><emph>formatar una taula de text</emph></link> amb la icona <emph>Vores</emph>."
+msgid "Further information can be found in the Help in <link href=\"text/shared/01/05030500.xhp\"><emph>Borders</emph></link>. You can also find information on how to <link href=\"text/shared/guide/border_table.xhp\"><emph>format a text table</emph></link> with the <emph>Borders</emph> icon."
+msgstr "Es pot trobar més informació a l'Ajuda, a <link href=\"text/shared/01/05030500.xhp\"><emph>Vores</emph></link>. També podeu trobar informació sobre com s'ha de <link href=\"text/shared/guide/border_table.xhp\"><emph>formatar una taula de text</emph></link> amb la icona <emph>Vores</emph>."
#. C69yc
#: 03140000.xhp
@@ -11744,14 +11744,14 @@ msgctxt ""
msgid "Line Style"
msgstr "Estil de la línia"
-#. ukvBA
+#. FGDba
#: 03140000.xhp
msgctxt ""
"03140000.xhp\n"
"hd_id3146936\n"
"help.text"
-msgid "<link href=\"text/shared/02/03140000.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr "<link href=\"text/shared/02/03140000.xhp\" name=\"Estil de la línia\">Estil de la línia</link>"
+msgid "<link href=\"text/shared/02/03140000.xhp\">Line Style</link>"
+msgstr "<link href=\"text/shared/02/03140000.xhp\">Estil de la línia</link>"
#. Lr4ML
#: 03140000.xhp
@@ -11789,14 +11789,14 @@ msgctxt ""
msgid "Line Style"
msgstr "Estil de la línia"
-#. FSPjb
+#. piCGY
#: 03140000.xhp
msgctxt ""
"03140000.xhp\n"
"par_id3153114\n"
"help.text"
-msgid "For more information, see the <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"><emph>Borders</emph></link> section of the Help."
-msgstr "Per a obtindre més informació, consulteu l'apartat <link href=\"text/shared/01/05030500.xhp\" name=\"Vores\"><emph>Vores</emph></link> de l'Ajuda."
+msgid "For more information, see the <link href=\"text/shared/01/05030500.xhp\"><emph>Borders</emph></link> section of the Help."
+msgstr "Per a obtindre més informació, consulteu l'apartat <link href=\"text/shared/01/05030500.xhp\"><emph>Vores</emph></link> de l'Ajuda."
#. CHGDB
#: 03150000.xhp
@@ -11807,14 +11807,14 @@ msgctxt ""
msgid "Border Color"
msgstr "Color de la vora"
-#. WQyfd
+#. kcDRF
#: 03150000.xhp
msgctxt ""
"03150000.xhp\n"
"hd_id3154873\n"
"help.text"
-msgid "<link href=\"text/shared/02/03150000.xhp\" name=\"Border Color\">Border Color</link>"
-msgstr "<link href=\"text/shared/02/03150000.xhp\" name=\"Color de la vora\">Color de la vora</link>"
+msgid "<link href=\"text/shared/02/03150000.xhp\">Border Color</link>"
+msgstr "<link href=\"text/shared/02/03150000.xhp\">Color de la vora</link>"
#. CTwNN
#: 03150000.xhp
@@ -11843,14 +11843,14 @@ msgctxt ""
msgid "Line Color (of the border)"
msgstr "Color de la línia (de la vora)"
-#. 3EMMA
+#. ZPSFF
#: 03150000.xhp
msgctxt ""
"03150000.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "For more information, see the <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"><emph>Borders</emph></link> section in the Help."
-msgstr "Per a obtindre més informació, consulteu l'apartat <link href=\"text/shared/01/05030500.xhp\" name=\"Vores\"><emph>Vores</emph></link> de l'Ajuda."
+msgid "For more information, see the <link href=\"text/shared/01/05030500.xhp\"><emph>Borders</emph></link> section in the Help."
+msgstr "Per a obtindre més informació, consulteu l'apartat <link href=\"text/shared/01/05030500.xhp\"><emph>Vores</emph></link> de l'Ajuda."
#. A48cq
#: 03200000.xhp
@@ -11870,13 +11870,13 @@ msgctxt ""
msgid "<bookmark_value>anchors; changing</bookmark_value>"
msgstr "<bookmark_value>àncores; canviar</bookmark_value>"
-#. BEMJf
+#. tRdQG
#: 03200000.xhp
msgctxt ""
"03200000.xhp\n"
"hd_id3153323\n"
"help.text"
-msgid "<link href=\"text/shared/02/03200000.xhp\" name=\"Change Anchor\">Anchor</link>"
+msgid "<link href=\"text/shared/02/03200000.xhp\">Anchor</link>"
msgstr ""
#. e4cEL
@@ -11888,14 +11888,14 @@ msgctxt ""
msgid "<variable id=\"verankerungtext\"><ahelp hid=\".uno:ToggleAnchorType\">Allows you to switch between anchoring options.</ahelp></variable> The <menuitem>Anchor</menuitem> icon is only visible when an object such as a graphic or control field <switchinline select=\"appl\"><caseinline select=\"WRITER\">or frame</caseinline></switchinline> is selected."
msgstr ""
-#. 7Rrur
+#. pGuoE
#: 03200000.xhp
msgctxt ""
"03200000.xhp\n"
"par_id3155555\n"
"help.text"
-msgid "Further information about the anchoring is contained in the <link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\"><emph>Anchoring</emph></link> help section."
-msgstr "A l'apartat <link href=\"text/shared/01/05260000.xhp\" name=\"Ancoratge\"><emph>Ancoratge </emph></link> de l'Ajuda trobareu més informació sobre aquest tema."
+msgid "Further information about the anchoring is contained in the <link href=\"text/shared/01/05260000.xhp\"><emph>Anchoring</emph></link> help section."
+msgstr "A l'apartat <link href=\"text/shared/01/05260000.xhp\"><emph>Ancoratge </emph></link> de l'Ajuda trobareu més informació sobre aquest tema."
#. 4EUzr
#: 04210000.xhp
@@ -11906,13 +11906,13 @@ msgctxt ""
msgid "Optimize Size"
msgstr "Optimitza la mida"
-#. zAnNw
+#. Ri9dr
#: 04210000.xhp
msgctxt ""
"04210000.xhp\n"
"hd_id3151185\n"
"help.text"
-msgid "<variable id=\"optimizeh1\"><link href=\"text/shared/02/04210000.xhp\" name=\"Optimize Size\">Optimize Size</link></variable>"
+msgid "<variable id=\"optimizeh1\"><link href=\"text/shared/02/04210000.xhp\">Optimize Size</link></variable>"
msgstr ""
#. M3VPg
@@ -11960,14 +11960,14 @@ msgctxt ""
msgid "Arrow Style"
msgstr "Estil de la fletxa"
-#. HBwDu
+#. CnFjD
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/05020000.xhp\" name=\"Arrow Style\">Arrow Style</link>"
-msgstr "<link href=\"text/shared/02/05020000.xhp\" name=\"Estil de la fletxa\">Estil de la fletxa</link>"
+msgid "<link href=\"text/shared/02/05020000.xhp\">Arrow Style</link>"
+msgstr "<link href=\"text/shared/02/05020000.xhp\">Estil de la fletxa</link>"
#. GWBck
#: 05020000.xhp
@@ -11978,14 +11978,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:LineEndStyle\">Opens the <emph>Arrowheads</emph> toolbar. Use the symbols shown to define the style for the end of the selected line.</ahelp>"
msgstr "<ahelp hid=\".uno:LineEndStyle\">Obri la barra d'eines <emph>Extrems de fletxa</emph>. Utilitzeu els símbols que es mostren per definir l'estil de l'extrem de la línia seleccionada.</ahelp>"
-#. 8CudK
+#. dHBHP
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"par_id3150808\n"
"help.text"
-msgid "The <emph>Arrow Style</emph> icon is only displayed when you create a drawing with the drawing functions. For more information, see the <link href=\"text/shared/01/05200300.xhp\" name=\"Line Styles\"><emph>Line Styles</emph></link> section of the Help."
-msgstr "La icona <emph>Estil de la fletxa</emph> només es veu quan creeu un dibuix amb les funcions de dibuix. Per obtindre més informació, consulteu l'apartat <link href=\"text/shared/01/05200300.xhp\" name=\"Estils de la línia\"><emph>Estils de la línia</emph></link> de l'Ajuda."
+msgid "The <emph>Arrow Style</emph> icon is only displayed when you create a drawing with the drawing functions. For more information, see the <link href=\"text/shared/01/05200300.xhp\"><emph>Line Styles</emph></link> section of the Help."
+msgstr "La icona <emph>Estil de la fletxa</emph> només es veu quan creeu un dibuix amb les funcions de dibuix. Per obtindre més informació, consulteu l'apartat <link href=\"text/shared/01/05200300.xhp\"><emph>Estils de la línia</emph></link> de l'Ajuda."
#. MeQRj
#: 05020000.xhp
@@ -12014,14 +12014,14 @@ msgctxt ""
msgid "Rotate"
msgstr "Gira"
-#. QR37f
+#. 5uEQ4
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"hd_id3154863\n"
"help.text"
-msgid "<link href=\"text/shared/02/05090000.xhp\" name=\"Rotate\">Rotate</link>"
-msgstr "<link href=\"text/shared/02/05090000.xhp\" name=\"Gira\">Gira</link>"
+msgid "<link href=\"text/shared/02/05090000.xhp\">Rotate</link>"
+msgstr "<link href=\"text/shared/02/05090000.xhp\">Gira</link>"
#. ycqR8
#: 05090000.xhp
@@ -12059,14 +12059,14 @@ msgctxt ""
msgid "Rotate"
msgstr "Gira"
-#. UCAyu
+#. YGLcz
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"par_id3156113\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230300.xhp\" name=\"Format - Position and Size - Rotate\"><emph>Format - Position and Size - Rotate</emph></link>."
-msgstr "<link href=\"text/shared/01/05230300.xhp\" name=\"Format - Posició i mida - Gira\"><emph>Format - Posició i mida - Gira</emph></link>."
+msgid "<link href=\"text/shared/01/05230300.xhp\"><emph>Format - Position and Size - Rotate</emph></link>."
+msgstr "<link href=\"text/shared/01/05230300.xhp\"><emph>Format - Posició i mida - Gira</emph></link>."
#. E56tc
#: 05110000.xhp
@@ -12122,13 +12122,13 @@ msgctxt ""
msgid "Demote Outline Level"
msgstr ""
-#. wGfZQ
+#. ZArHg
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"hd_id3148983\n"
"help.text"
-msgid "<link href=\"text/shared/02/06050000.xhp\" name=\"Demote One Level\">Demote<switchinline select=\"appl\"><caseinline select=\"WRITER\"> Outline Level</caseinline></switchinline></link>"
+msgid "<link href=\"text/shared/02/06050000.xhp\">Demote<switchinline select=\"appl\"><caseinline select=\"WRITER\"> Outline Level</caseinline></switchinline></link>"
msgstr ""
#. Sfgf2
@@ -12140,13 +12140,13 @@ msgctxt ""
msgid "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Moves a chapter heading where the cursor is located, or selected chapter headings, down one outline level. </caseinline></switchinline>Moves a list paragraph where the cursor is located, or selected list paragraphs, down one list level.</ahelp>"
msgstr ""
-#. CFARy
+#. M7qiX
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"par_id3149549\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The <menuitem>Demote Outline Level</menuitem> icon is on the <link href=\"text/swriter/main0206.xhp\" name=\"BulletNumberingBar\"><menuitem>Bullets and Numbering</menuitem></link> bar, which appears when the cursor is positioned on a numbered chapter heading or a list paragraph.</caseinline><caseinline select=\"IMPRESS\">The <menuitem>Demote</menuitem> icon is on the <menuitem>Outline</menuitem> bar, which appears when working in the outline view. This function can also be called by pressing <keycode>Alt+Shift+Right Arrow</keycode>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The <menuitem>Demote Outline Level</menuitem> icon is on the <link href=\"text/swriter/main0206.xhp\"><menuitem>Bullets and Numbering</menuitem></link> bar, which appears when the cursor is positioned on a numbered chapter heading or a list paragraph.</caseinline><caseinline select=\"IMPRESS\">The <menuitem>Demote</menuitem> icon is on the <menuitem>Outline</menuitem> bar, which appears when working in the outline view. This function can also be called by pressing <keycode>Alt+Shift+Right Arrow</keycode>.</caseinline></switchinline>"
msgstr ""
#. MsnjV
@@ -12176,13 +12176,13 @@ msgctxt ""
msgid "Promote Outline Level"
msgstr ""
-#. h9r7k
+#. DdEJG
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3159225\n"
"help.text"
-msgid "<link href=\"text/shared/02/06060000.xhp\" name=\"Promote One Level\">Promote<switchinline select=\"appl\"><caseinline select=\"WRITER\"> Outline Level</caseinline></switchinline></link>"
+msgid "<link href=\"text/shared/02/06060000.xhp\">Promote<switchinline select=\"appl\"><caseinline select=\"WRITER\"> Outline Level</caseinline></switchinline></link>"
msgstr ""
#. 2oDAi
@@ -12194,13 +12194,13 @@ msgctxt ""
msgid "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Moves a chapter heading where the cursor is located, or selected chapter headings, up one outline level. </caseinline></switchinline>Moves a list paragraph where the cursor is located, or selected list paragraphs, up one list level.</ahelp>"
msgstr ""
-#. ACowG
+#. QDYTa
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3149205\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The <menuitem>Promote Outline Level</menuitem> icon is on the <link href=\"text/swriter/main0206.xhp\" name=\"BulletNumberingBar\"><menuitem>Bullets and Numbering</menuitem></link> bar, which appears when the cursor is positioned on a numbered chapter heading or a list paragraph.</caseinline><caseinline select=\"IMPRESS\">The <menuitem>Promote</menuitem> icon is on the <menuitem>Outline</menuitem> bar, which appears when working in the outline view. This function can also be called by pressing <keycode>Alt+Shift+Left Arrow</keycode>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The <menuitem>Promote Outline Level</menuitem> icon is on the <link href=\"text/swriter/main0206.xhp\"><menuitem>Bullets and Numbering</menuitem></link> bar, which appears when the cursor is positioned on a numbered chapter heading or a list paragraph.</caseinline><caseinline select=\"IMPRESS\">The <menuitem>Promote</menuitem> icon is on the <menuitem>Outline</menuitem> bar, which appears when working in the outline view. This function can also be called by pressing <keycode>Alt+Shift+Left Arrow</keycode>.</caseinline></switchinline>"
msgstr ""
#. sACm6
@@ -12230,13 +12230,13 @@ msgctxt ""
msgid "Move Up"
msgstr "Mou amunt"
-#. a7CWw
+#. uvBgB
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"hd_id3144740\n"
"help.text"
-msgid "<link href=\"text/shared/02/06100000.xhp\" name=\"Move Up\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Move Item Up</caseinline><defaultinline>Move Up</defaultinline></switchinline></link>"
+msgid "<link href=\"text/shared/02/06100000.xhp\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Move Item Up</caseinline><defaultinline>Move Up</defaultinline></switchinline></link>"
msgstr ""
#. BooTD
@@ -12257,13 +12257,13 @@ msgctxt ""
msgid "If you have numbered paragraphs and use the <menuitem>Move Item Up</menuitem> command, then the numbers are adjusted automatically to the current order."
msgstr ""
-#. uQaWS
+#. ThZ5C
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id681650030725110\n"
"help.text"
-msgid "The <menuitem>Move Item Up</menuitem> icon appears on the <link href=\"text/swriter/main0206.xhp\" name=\"BulletNumberingBar\"><menuitem>Bullets and Numbering</menuitem></link> bar."
+msgid "The <menuitem>Move Item Up</menuitem> icon appears on the <link href=\"text/swriter/main0206.xhp\"><menuitem>Bullets and Numbering</menuitem></link> bar."
msgstr ""
#. LWL4T
@@ -12338,13 +12338,13 @@ msgctxt ""
msgid "Move Down"
msgstr "Mou avall"
-#. ExiKN
+#. 4m5DT
#: 06110000.xhp
msgctxt ""
"06110000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/06110000.xhp\" name=\"Move Down\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Move Item Down</caseinline><defaultinline>Move Down</defaultinline></switchinline></link>"
+msgid "<link href=\"text/shared/02/06110000.xhp\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Move Item Down</caseinline><defaultinline>Move Down</defaultinline></switchinline></link>"
msgstr ""
#. nDsC7
@@ -12365,13 +12365,13 @@ msgctxt ""
msgid "If you have numbered paragraphs and use <menuitem>Move Item Down</menuitem>, then the numbers are adjusted automatically to the current order."
msgstr ""
-#. vAAGh
+#. CLFSq
#: 06110000.xhp
msgctxt ""
"06110000.xhp\n"
"par_id431650033515260\n"
"help.text"
-msgid "The <menuitem>Move Item Down</menuitem> icon appears on the <link href=\"text/swriter/main0206.xhp\" name=\"BulletNumberingBar\"><menuitem>Bullets and Numbering</menuitem></link> bar."
+msgid "The <menuitem>Move Item Down</menuitem> icon appears on the <link href=\"text/swriter/main0206.xhp\"><menuitem>Bullets and Numbering</menuitem></link> bar."
msgstr ""
#. CCELD
@@ -12446,13 +12446,13 @@ msgctxt ""
msgid "Toggle Unordered List"
msgstr ""
-#. CCrby
+#. bYLMW
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Toggle Unordered List</link>"
+msgid "<link href=\"text/shared/02/06120000.xhp\">Toggle Unordered List</link>"
msgstr ""
#. GQ9yd
@@ -12464,40 +12464,40 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DefaultBullet\">Assigns bullet points to the selected paragraphs, or removes them from bulleted paragraphs.</ahelp>"
msgstr "<ahelp hid=\".uno:DefaultBullet\">Assigna pics als paràgrafs seleccionats, o els elimina dels paràgrafs amb pics.</ahelp>"
-#. C3Cpy
+#. qd9QL
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3155150\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bullet options such as type and position are defined in the <link href=\"text/shared/01/06050000.xhp\" name=\"Bullets and Numbering\"><emph>Bullets and Numbering</emph></link> dialog. To open this dialog, click the <emph>Bullets and Numbering</emph> icon on the <link href=\"text/swriter/main0206.xhp\" name=\"Bullets and Numbering Bar\"><emph>Bullets and Numbering</emph> bar</link>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bullet options such as type and position are defined in the <link href=\"text/shared/01/06050000.xhp\"><emph>Bullets and Numbering</emph></link> dialog. To open this dialog, click the <emph>Bullets and Numbering</emph> icon on the <link href=\"text/swriter/main0206.xhp\"><emph>Bullets and Numbering</emph> bar</link>.</caseinline></switchinline>"
msgstr ""
-#. HhBfE
+#. BTu7F
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3145669\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Bullet options such as type and position are defined in the <link href=\"text/shared/01/06050000.xhp\" name=\"Bullets and Numbering\"><emph>Bullets and Numbering</emph></link> dialog. To open this dialog, click the <emph>Bullets and Numbering</emph> icon on the <emph>Text Formatting</emph> bar.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Les opcions de pics, com ara el tipus i la posició, es defineixen al diàleg <link href=\"text/shared/01/06050000.xhp\" name=\"Pics i numeració\"><emph>Pics i numeració</emph></link>. Per a obrir el diàleg, feu clic a la icona <emph>Pics i numeració</emph> de la barra <emph>Formatació del text</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Bullet options such as type and position are defined in the <link href=\"text/shared/01/06050000.xhp\"><emph>Bullets and Numbering</emph></link> dialog. To open this dialog, click the <emph>Bullets and Numbering</emph> icon on the <emph>Text Formatting</emph> bar.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Les opcions de pics, com ara el tipus i la posició, es defineixen al diàleg <link href=\"text/shared/01/06050000.xhp\"><emph>Pics i numeració</emph></link>. Per a obrir el diàleg, feu clic a la icona <emph>Pics i numeració</emph> de la barra <emph>Formatació del text</emph>.</caseinline></switchinline>"
-#. rp4db
+#. PKzqg
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">In the <link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\"><emph>Web Layout</emph></link>, some numbering/bullet options are not available.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">In the <link href=\"text/swriter/01/03120000.xhp\"><emph>Web Layout</emph></link>, some numbering/bullet options are not available.</caseinline></switchinline>"
msgstr ""
-#. 23PDg
+#. gG3oE
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The distance between the text and the left text box and the position of the bullets can be determined in the dialog under <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph\"><emph>Format - Paragraph</emph></link> by entering the left indent and the first-line indent.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The distance between the text and the left text box and the position of the bullets can be determined in the dialog under <link href=\"text/shared/01/05030100.xhp\"><emph>Format - Paragraph</emph></link> by entering the left indent and the first-line indent.</caseinline></switchinline>"
msgstr ""
#. iQf7d
@@ -12527,14 +12527,14 @@ msgctxt ""
msgid "Load URL"
msgstr "Carrega l'URL"
-#. tBCUX
+#. EfFS6
#: 07010000.xhp
msgctxt ""
"07010000.xhp\n"
"hd_id3149119\n"
"help.text"
-msgid "<link href=\"text/shared/02/07010000.xhp\" name=\"Load URL\">Load URL</link>"
-msgstr "<link href=\"text/shared/02/07010000.xhp\" name=\"Carrega l'URL\">Carrega l'URL</link>"
+msgid "<link href=\"text/shared/02/07010000.xhp\">Load URL</link>"
+msgstr "<link href=\"text/shared/02/07010000.xhp\">Carrega l'URL</link>"
#. j3DaG
#: 07010000.xhp
@@ -12572,14 +12572,14 @@ msgctxt ""
msgid "<bookmark_value>reloading; documents</bookmark_value><bookmark_value>documents; reloading</bookmark_value><bookmark_value>loading; reloading</bookmark_value>"
msgstr "<bookmark_value>recàrrega; documents</bookmark_value><bookmark_value>documents; recàrrega</bookmark_value><bookmark_value>càrrega; recàrrega</bookmark_value>"
-#. BKmj8
+#. sKufG
#: 07060000.xhp
msgctxt ""
"07060000.xhp\n"
"hd_id3153089\n"
"help.text"
-msgid "<link href=\"text/shared/02/07060000.xhp\" name=\"Reload\">Reload</link>"
-msgstr "<link href=\"text/shared/02/07060000.xhp\" name=\"Torna a carregar\">Torna a carregar</link>"
+msgid "<link href=\"text/shared/02/07060000.xhp\">Reload</link>"
+msgstr "<link href=\"text/shared/02/07060000.xhp\">Torna a carregar</link>"
#. uFkfV
#: 07060000.xhp
@@ -12617,13 +12617,13 @@ msgctxt ""
msgid "<bookmark_value>write protection on/off</bookmark_value><bookmark_value>protected documents</bookmark_value><bookmark_value>documents; read-only</bookmark_value><bookmark_value>read-only documents; editing</bookmark_value><bookmark_value>cursor;in read-only text</bookmark_value><bookmark_value>read-only documents;cursor</bookmark_value><bookmark_value>Edit Mode icon</bookmark_value>"
msgstr ""
-#. cQEWf
+#. GyPsJ
#: 07070000.xhp
msgctxt ""
"07070000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/07070000.xhp\" name=\"Edit File\">Edit Mode</link>"
+msgid "<link href=\"text/shared/02/07070000.xhp\">Edit Mode</link>"
msgstr ""
#. B9CS6
@@ -12671,14 +12671,14 @@ msgctxt ""
msgid "Edit Data"
msgstr "Edita les dades"
-#. 9xvHD
+#. RvBV4
#: 07070100.xhp
msgctxt ""
"07070100.xhp\n"
"hd_id3144415\n"
"help.text"
-msgid "<link href=\"text/shared/02/07070100.xhp\" name=\"Edit Data\">Edit Data</link>"
-msgstr "<link href=\"text/shared/02/07070100.xhp\" name=\"Edita les dades\">Edita les dades</link>"
+msgid "<link href=\"text/shared/02/07070100.xhp\">Edit Data</link>"
+msgstr "<link href=\"text/shared/02/07070100.xhp\">Edita les dades</link>"
#. DEFTe
#: 07070100.xhp
@@ -12743,14 +12743,14 @@ msgctxt ""
msgid "Save Record"
msgstr "Guarda el registre"
-#. tBtmk
+#. EABnE
#: 07070200.xhp
msgctxt ""
"07070200.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/02/07070200.xhp\" name=\"Save Record\">Save Record</link>"
-msgstr "<link href=\"text/shared/02/07070200.xhp\" name=\"Guarda el registre\">Guarda el registre</link>"
+msgid "<link href=\"text/shared/02/07070200.xhp\">Save Record</link>"
+msgstr "<link href=\"text/shared/02/07070200.xhp\">Guarda el registre</link>"
#. CRXMf
#: 07070200.xhp
@@ -12761,14 +12761,14 @@ msgctxt ""
msgid "<bookmark_value>records; saving</bookmark_value>"
msgstr "<bookmark_value>registre; guardar</bookmark_value>"
-#. qLejd
+#. sUCih
#: 07070200.xhp
msgctxt ""
"07070200.xhp\n"
"par_id3163829\n"
"help.text"
-msgid "<ahelp hid=\".\">Saves the current database table record.</ahelp> The <emph>Save Record</emph> icon is found on the <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\"><emph>Table Data</emph> bar</link>."
-msgstr "<ahelp hid=\".\">Guarda el registre de la taula de la base de dades actual.</ahelp> La icona <emph>Guarda el registre</emph> es troba a la barra <link href=\"text/shared/main0212.xhp\" name=\"Barra Base de dades\"><emph>Dades de la taula</emph></link>."
+msgid "<ahelp hid=\".\">Saves the current database table record.</ahelp> The <emph>Save Record</emph> icon is found on the <link href=\"text/shared/main0212.xhp\"><emph>Table Data</emph> bar</link>."
+msgstr "<ahelp hid=\".\">Guarda el registre de la taula de la base de dades actual.</ahelp> La icona <emph>Guarda el registre</emph> es troba a la barra <link href=\"text/shared/main0212.xhp\"><emph>Dades de la taula</emph></link>."
#. Yj5gy
#: 07070200.xhp
@@ -12788,14 +12788,14 @@ msgctxt ""
msgid "Stop Loading"
msgstr "Atura la càrrega"
-#. FGu8E
+#. s7viG
#: 07080000.xhp
msgctxt ""
"07080000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/07080000.xhp\" name=\"Stop Loading\">Stop Loading</link>"
-msgstr "<link href=\"text/shared/02/07080000.xhp\" name=\"Atura la càrrega\">Atura la càrrega</link>"
+msgid "<link href=\"text/shared/02/07080000.xhp\">Stop Loading</link>"
+msgstr "<link href=\"text/shared/02/07080000.xhp\">Atura la càrrega</link>"
#. cD2pz
#: 07080000.xhp
@@ -12815,14 +12815,14 @@ msgctxt ""
msgid "Export Directly as PDF"
msgstr "Exporta directament a PDF"
-#. A98Xc
+#. FzuRY
#: 07090000.xhp
msgctxt ""
"07090000.xhp\n"
"hd_id3146946\n"
"help.text"
-msgid "<link href=\"text/shared/02/07090000.xhp\" name=\"Export Directly as PDF\">Export Directly as PDF</link>"
-msgstr "<link href=\"text/shared/02/07090000.xhp\" name=\"Exporta directament a PDF\">Exporta directament a PDF</link>"
+msgid "<link href=\"text/shared/02/07090000.xhp\">Export Directly as PDF</link>"
+msgstr "<link href=\"text/shared/02/07090000.xhp\">Exporta directament a PDF</link>"
#. MKhDs
#: 07090000.xhp
@@ -12842,14 +12842,14 @@ msgctxt ""
msgid "Document Information"
msgstr "Informació del document"
-#. Z6JuK
+#. dA4bD
#: 08010000.xhp
msgctxt ""
"08010000.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/02/08010000.xhp\" name=\"Document Information\">Document Information</link>"
-msgstr "<link href=\"text/shared/02/08010000.xhp\" name=\"Informació del document\">Informació del document</link>"
+msgid "<link href=\"text/shared/02/08010000.xhp\">Document Information</link>"
+msgstr "<link href=\"text/shared/02/08010000.xhp\">Informació del document</link>"
#. eQFAt
#: 08010000.xhp
@@ -12869,14 +12869,14 @@ msgctxt ""
msgid "Position in Document"
msgstr "Posició al document"
-#. ZQAVV
+#. yN3z2
#: 08020000.xhp
msgctxt ""
"08020000.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/02/08020000.xhp\" name=\"Position in Document\">Position in Document</link>"
-msgstr "<link href=\"text/shared/02/08020000.xhp\" name=\"Posició al document\">Posició al document</link>"
+msgid "<link href=\"text/shared/02/08020000.xhp\">Position in Document</link>"
+msgstr "<link href=\"text/shared/02/08020000.xhp\">Posició al document</link>"
#. w3hMy
#: 08020000.xhp
@@ -12896,14 +12896,14 @@ msgctxt ""
msgid "Hyperlink Dialog"
msgstr "Diàleg Enllaç"
-#. hPsbw
+#. 5qH6i
#: 09070000.xhp
msgctxt ""
"09070000.xhp\n"
"hd_id3145759\n"
"help.text"
-msgid "<variable id=\"hyperdia\"><link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink Dialog\">Hyperlink</link></variable>"
-msgstr "<variable id=\"hyperdia\"><link href=\"text/shared/02/09070000.xhp\" name=\"Diàleg Enllaç\">Enllaç</link></variable>"
+msgid "<variable id=\"hyperdia\"><link href=\"text/shared/02/09070000.xhp\">Hyperlink</link></variable>"
+msgstr "<variable id=\"hyperdia\"><link href=\"text/shared/02/09070000.xhp\">Enllaç</link></variable>"
#. uywoD
#: 09070000.xhp
@@ -12932,13 +12932,13 @@ msgctxt ""
msgid "Choose <menuitem>Edit - Hyperlink</menuitem>, when the cursor is placed in a hyperlink."
msgstr ""
-#. E6FB3
+#. cMHrB
#: 09070000.xhp
msgctxt ""
"09070000.xhp\n"
"par_id161616407054506\n"
"help.text"
-msgid "On <link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\"><emph>Standard</emph></link> bar, click"
+msgid "On <link href=\"text/shared/main0201.xhp\"><emph>Standard</emph></link> bar, click"
msgstr ""
#. MSjJA
@@ -13085,23 +13085,23 @@ msgctxt ""
msgid "Internet"
msgstr "Internet"
-#. MgeXM
+#. eRi8a
#: 09070100.xhp
msgctxt ""
"09070100.xhp\n"
"hd_id3151100\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070100.xhp\" name=\"Internet\">Internet</link>"
-msgstr "<link href=\"text/shared/02/09070100.xhp\" name=\"Internet\">Internet</link>"
+msgid "<link href=\"text/shared/02/09070100.xhp\">Internet</link>"
+msgstr "<link href=\"text/shared/02/09070100.xhp\">Internet</link>"
-#. Aer9R
+#. qYWYQ
#: 09070100.xhp
msgctxt ""
"09070100.xhp\n"
"par_id3154230\n"
"help.text"
-msgid "<ahelp hid=\".\">Use the <emph>Internet</emph> page of the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link> to edit hyperlinks with <emph>WWW</emph> or <emph>FTP</emph> addresses.</ahelp>"
-msgstr "<ahelp hid=\".\">Utilitzeu la pàgina <emph>Internet</emph> del <link href=\"text/shared/02/09070000.xhp\" name=\"Diàleg Enllaç\">diàleg <emph>Enllaç</emph></link> per a editar enllaços amb adreces <emph>WWW</emph> o <emph>FTP</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Use the <emph>Internet</emph> page of the <link href=\"text/shared/02/09070000.xhp\"><emph>Hyperlink</emph> dialog</link> to edit hyperlinks with <emph>WWW</emph> or <emph>FTP</emph> addresses.</ahelp>"
+msgstr "<ahelp hid=\".\">Utilitzeu la pàgina <emph>Internet</emph> del <link href=\"text/shared/02/09070000.xhp\">diàleg <emph>Enllaç</emph></link> per a editar enllaços amb adreces <emph>WWW</emph> o <emph>FTP</emph>.</ahelp>"
#. T2DCR
#: 09070100.xhp
@@ -13364,22 +13364,22 @@ msgctxt ""
msgid "Mail"
msgstr "Correu"
-#. 6fz5W
+#. vGVay
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"
"hd_id3147102\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070200.xhp\" name=\"Mail\">Mail</link>"
-msgstr "<link href=\"text/shared/02/09070200.xhp\" name=\"Mail\">Correu</link>"
+msgid "<link href=\"text/shared/02/09070200.xhp\">Mail</link>"
+msgstr "<link href=\"text/shared/02/09070200.xhp\">Correu</link>"
-#. BBHET
+#. jWGDW
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"
"par_id3153049\n"
"help.text"
-msgid "<ahelp hid=\".\">On the <emph>Mail</emph> page in the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link> you can edit hyperlinks for email addresses.</ahelp>"
+msgid "<ahelp hid=\".\">On the <emph>Mail</emph> page in the <link href=\"text/shared/02/09070000.xhp\"><emph>Hyperlink</emph> dialog</link> you can edit hyperlinks for email addresses.</ahelp>"
msgstr ""
#. mDsga
@@ -13454,22 +13454,22 @@ msgctxt ""
msgid "Document"
msgstr "Document"
-#. DrVBu
+#. BjVLf
#: 09070300.xhp
msgctxt ""
"09070300.xhp\n"
"hd_id3143284\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070300.xhp\" name=\"Document\">Document</link>"
-msgstr "<link href=\"text/shared/02/09070300.xhp\" name=\"Document\">Document</link>"
+msgid "<link href=\"text/shared/02/09070300.xhp\">Document</link>"
+msgstr "<link href=\"text/shared/02/09070300.xhp\">Document</link>"
-#. uFEGb
+#. C3p3t
#: 09070300.xhp
msgctxt ""
"09070300.xhp\n"
"par_id3154682\n"
"help.text"
-msgid "<ahelp hid=\".\">Hyperlinks to any document or targets in documents can be edited using the <emph>Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link>.</ahelp>"
+msgid "<ahelp hid=\".\">Hyperlinks to any document or targets in documents can be edited using the <emph>Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\"><emph>Hyperlink</emph> dialog</link>.</ahelp>"
msgstr ""
#. rozNN
@@ -13607,23 +13607,23 @@ msgctxt ""
msgid "New Document"
msgstr "Document nou"
-#. 6Sz7e
+#. giEjD
#: 09070400.xhp
msgctxt ""
"09070400.xhp\n"
"hd_id3154873\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070400.xhp\" name=\"New Document\">New Document</link>"
-msgstr "<link href=\"text/shared/02/09070400.xhp\" name=\"Document nou\">Document nou</link>"
+msgid "<link href=\"text/shared/02/09070400.xhp\">New Document</link>"
+msgstr "<link href=\"text/shared/02/09070400.xhp\">Document nou</link>"
-#. YmWEp
+#. dkgDW
#: 09070400.xhp
msgctxt ""
"09070400.xhp\n"
"par_id3150445\n"
"help.text"
-msgid "<ahelp hid=\".\">Use the <emph>New Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link> to set up a hyperlink to a new document and create the new document simultaneously.</ahelp>"
-msgstr "<ahelp hid=\".\">Utilitzeu la pestanya <emph>Document nou</emph> del diàleg <link href=\"text/shared/02/09070000.xhp\" name=\"Enllaç\"><emph>Enllaç</emph></link> per a definir un enllaç a un document nou i crear el document nou simultàniament.</ahelp>"
+msgid "<ahelp hid=\".\">Use the <emph>New Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\"><emph>Hyperlink</emph> dialog</link> to set up a hyperlink to a new document and create the new document simultaneously.</ahelp>"
+msgstr "<ahelp hid=\".\">Utilitzeu la pestanya <emph>Document nou</emph> del diàleg <link href=\"text/shared/02/09070000.xhp\"><emph>Enllaç</emph></link> per a definir un enllaç a un document nou i crear el document nou simultàniament.</ahelp>"
#. LTRYF
#: 09070400.xhp
@@ -13742,14 +13742,14 @@ msgctxt ""
msgid "Previous Page"
msgstr "Pàgina anterior"
-#. Sfvri
+#. ESEFz
#: 10010000.xhp
msgctxt ""
"10010000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/10010000.xhp\" name=\"Previous Page\">Previous Page</link>"
-msgstr "<link href=\"text/shared/02/10010000.xhp\" name=\"Pàgina anterior\">Pàgina anterior</link>"
+msgid "<link href=\"text/shared/02/10010000.xhp\">Previous Page</link>"
+msgstr "<link href=\"text/shared/02/10010000.xhp\">Pàgina anterior</link>"
#. uBQWG
#: 10010000.xhp
@@ -13787,14 +13787,14 @@ msgctxt ""
msgid "Next Page"
msgstr "Pàgina següent"
-#. jvDeb
+#. gfQZq
#: 10020000.xhp
msgctxt ""
"10020000.xhp\n"
"hd_id3156183\n"
"help.text"
-msgid "<link href=\"text/shared/02/10020000.xhp\" name=\"Next Page\">Next Page</link>"
-msgstr "<link href=\"text/shared/02/10020000.xhp\" name=\"Pàgina següent\">Pàgina següent</link>"
+msgid "<link href=\"text/shared/02/10020000.xhp\">Next Page</link>"
+msgstr "<link href=\"text/shared/02/10020000.xhp\">Pàgina següent</link>"
#. 5vXcJ
#: 10020000.xhp
@@ -13832,14 +13832,14 @@ msgctxt ""
msgid "To Document Begin/First Page"
msgstr "A l'inici del document/primera pàgina"
-#. FBxm9
+#. GnXs6
#: 10030000.xhp
msgctxt ""
"10030000.xhp\n"
"hd_id3149031\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/02/10030000.xhp\" name=\"To Document Begin\">To Document Begin</link></caseinline> <defaultinline><link href=\"text/shared/02/10030000.xhp\" name=\"First Page\">First Page</link></defaultinline> </switchinline>"
-msgstr "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/02/10030000.xhp\" name=\"A l'inici del document\">A l'inici del document</link></caseinline> <defaultinline><link href=\"text/shared/02/10030000.xhp\" name=\"Primera pàgina\">Primera pàgina</link></defaultinline> </switchinline>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/02/10030000.xhp\">To Document Begin</link></caseinline> <defaultinline><link href=\"text/shared/02/10030000.xhp\">First Page</link></defaultinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/02/10030000.xhp\">A l'inici del document</link></caseinline> <defaultinline><link href=\"text/shared/02/10030000.xhp\">Primera pàgina</link></defaultinline> </switchinline>"
#. kLdRc
#: 10030000.xhp
@@ -13877,13 +13877,13 @@ msgctxt ""
msgid "To Document End/Last Page"
msgstr ""
-#. FdpK5
+#. xXjqV
#: 10040000.xhp
msgctxt ""
"10040000.xhp\n"
"hd_id3154840\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/02/10040000.xhp\" name=\"To Document End\">To Document End</link></caseinline><defaultinline><link href=\"text/shared/02/10040000.xhp\" name=\"Last Page\">Last Page</link></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/02/10040000.xhp\">To Document End</link></caseinline><defaultinline><link href=\"text/shared/02/10040000.xhp\">Last Page</link></defaultinline></switchinline>"
msgstr ""
#. Goz9M
@@ -13922,14 +13922,14 @@ msgctxt ""
msgid "Close Window"
msgstr "Tanca la finestra"
-#. eFTUF
+#. G6kwo
#: 10100000.xhp
msgctxt ""
"10100000.xhp\n"
"hd_id3152895\n"
"help.text"
-msgid "<link href=\"text/shared/02/10100000.xhp\" name=\"Close Window\">Close Window</link>"
-msgstr "<link href=\"text/shared/02/10100000.xhp\" name=\"Tanca la finestra\">Tanca la finestra</link>"
+msgid "<link href=\"text/shared/02/10100000.xhp\">Close Window</link>"
+msgstr "<link href=\"text/shared/02/10100000.xhp\">Tanca la finestra</link>"
#. 3xwyB
#: 10100000.xhp
@@ -13949,14 +13949,14 @@ msgctxt ""
msgid "If additional views of the current document were opened by <emph>Window - New Window</emph>, this command will close only the current view."
msgstr "Si s'han obert altres vistes del document actual mitjançant l'opció <emph>Finestra - Finestra nova</emph>, esta orde només tancarà la visualització actual."
-#. LFB4V
+#. ajY7E
#: 10100000.xhp
msgctxt ""
"10100000.xhp\n"
"par_id3153910\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=\"Tanca el document actual\">Tanca el document actual</link>"
+msgid "<link href=\"text/shared/01/01050000.xhp\">Close the current document</link>"
+msgstr "<link href=\"text/shared/01/01050000.xhp\">Tanca el document actual</link>"
#. 9wmfM
#: 12000000.xhp
@@ -13967,23 +13967,23 @@ msgctxt ""
msgid "Explorer On/Off"
msgstr "Explorador activat/desactivat"
-#. XHjC9
+#. nLBFc
#: 12000000.xhp
msgctxt ""
"12000000.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/02/12000000.xhp\" name=\"Explorer On/Off\">Explorer On/Off</link>"
-msgstr "<link href=\"text/shared/02/12000000.xhp\" name=\"Explorador activat/desactivat\">Explorador activat/desactivat</link>"
+msgid "<link href=\"text/shared/02/12000000.xhp\">Explorer On/Off</link>"
+msgstr "<link href=\"text/shared/02/12000000.xhp\">Explorador activat/desactivat</link>"
-#. Qnqvz
+#. WE3E9
#: 12000000.xhp
msgctxt ""
"12000000.xhp\n"
"par_id3144740\n"
"help.text"
-msgid "<ahelp hid=\".uno:DSBrowserExplorer\">Turns on and off the view of the data source explorer.</ahelp> The <emph>Explorer On/Off</emph> icon is visible on the <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Table Data bar</link>."
-msgstr "<ahelp hid=\".uno:DSBrowserExplorer\">Activa i desactiva la visualització de l'explorador de la font de dades.</ahelp> La icona <emph>Explorador activat/desactivat</emph> es veu a la barra <link href=\"text/shared/main0212.xhp\" name=\"Barra de base de dades\">Dades de la taula</link>."
+msgid "<ahelp hid=\".uno:DSBrowserExplorer\">Turns on and off the view of the data source explorer.</ahelp> The <emph>Explorer On/Off</emph> icon is visible on the <link href=\"text/shared/main0212.xhp\">Table Data bar</link>."
+msgstr "<ahelp hid=\".uno:DSBrowserExplorer\">Activa i desactiva la visualització de l'explorador de la font de dades.</ahelp> La icona <emph>Explorador activat/desactivat</emph> es veu a la barra <link href=\"text/shared/main0212.xhp\">Dades de la taula</link>."
#. 6JHEY
#: 12000000.xhp
@@ -14066,14 +14066,14 @@ msgctxt ""
msgid "Sort Ascending"
msgstr "Orde ascendent"
-#. CxURG
+#. xCQCM
#: 12010000.xhp
msgctxt ""
"12010000.xhp\n"
"hd_id3152594\n"
"help.text"
-msgid "<link href=\"text/shared/02/12010000.xhp\" name=\"Sort Ascending\">Sort Ascending</link>"
-msgstr "<link href=\"text/shared/02/12010000.xhp\" name=\"Orde ascendent\">Orde ascendent</link>"
+msgid "<link href=\"text/shared/02/12010000.xhp\">Sort Ascending</link>"
+msgstr "<link href=\"text/shared/02/12010000.xhp\">Orde ascendent</link>"
#. CrCRQ
#: 12010000.xhp
@@ -14093,13 +14093,13 @@ msgctxt ""
msgid "<variable id=\"selektionsortieren\">Data of the currently selected field are always sorted. A field is always selected as soon as you place the cursor in the field. To sort within tables, you can also click the corresponding column header.</variable>"
msgstr ""
-#. WrDm4
+#. Jupqd
#: 12010000.xhp
msgctxt ""
"12010000.xhp\n"
"par_id3150504\n"
"help.text"
-msgid "<variable id=\"dialogsortieren\">To sort more than one data field, choose <emph>Data - Sort</emph>, then choose the <link href=\"text/shared/02/12100100.xhp\" name=\"Sort Criteria\">Sort Criteria</link> tab, where you can combine several sort criteria.</variable>"
+msgid "<variable id=\"dialogsortieren\">To sort more than one data field, choose <emph>Data - Sort</emph>, then choose the <link href=\"text/shared/02/12100100.xhp\">Sort Criteria</link> tab, where you can combine several sort criteria.</variable>"
msgstr ""
#. QAjRs
@@ -14111,14 +14111,14 @@ msgctxt ""
msgid "Sort Descending"
msgstr "Orde descendent"
-#. FFNGc
+#. aKafC
#: 12020000.xhp
msgctxt ""
"12020000.xhp\n"
"hd_id3154689\n"
"help.text"
-msgid "<link href=\"text/shared/02/12020000.xhp\" name=\"Sort Descending\">Sort Descending</link>"
-msgstr "<link href=\"text/shared/02/12020000.xhp\" name=\"Orde descendent\">Orde descendent</link>"
+msgid "<link href=\"text/shared/02/12020000.xhp\">Sort Descending</link>"
+msgstr "<link href=\"text/shared/02/12020000.xhp\">Orde descendent</link>"
#. GRQ75
#: 12020000.xhp
@@ -14138,14 +14138,14 @@ msgctxt ""
msgid "AutoFilter"
msgstr "Filtre automàtic"
-#. eFhvE
+#. 5BkmD
#: 12030000.xhp
msgctxt ""
"12030000.xhp\n"
"hd_id3149495\n"
"help.text"
-msgid "<link href=\"text/shared/02/12030000.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/shared/02/12030000.xhp\" name=\"Filtre automàtic\">Filtre automàtic</link>"
+msgid "<link href=\"text/shared/02/12030000.xhp\">AutoFilter</link>"
+msgstr "<link href=\"text/shared/02/12030000.xhp\">Filtre automàtic</link>"
#. jkAzj
#: 12030000.xhp
@@ -14192,23 +14192,23 @@ msgctxt ""
msgid "For example, to view all the customers from New York, click a field name with the entry \"New York\". AutoFilter then filters all customers from New York from the database."
msgstr "Per exemple, per visualitzar tots els clients de Nova York, feu clic al nom d'un camp amb l'entrada \"Nova York\". El filtre automàtic filtra tots els clients que són de Nova York inclosos a la base de dades."
-#. MVkfU
+#. UmBBf
#: 12030000.xhp
msgctxt ""
"12030000.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "You can remove the current AutoFilter with the <link href=\"text/shared/02/12040000.xhp\" name=\"Reset Filter/Sorting\">Reset Filter/Sorting</link> icon or with <emph>Data - Filter - Reset Filter</emph>."
+msgid "You can remove the current AutoFilter with the <link href=\"text/shared/02/12040000.xhp\">Reset Filter/Sorting</link> icon or with <emph>Data - Filter - Reset Filter</emph>."
msgstr ""
-#. kuPEn
+#. rBBw5
#: 12030000.xhp
msgctxt ""
"12030000.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "To filter with several field names simultaneously, click the <emph>Default Filter </emph>icon. The <link href=\"text/shared/02/12090000.xhp\" name=\"Default Filter dialog\">Default Filter</link> dialog appears, in which you can combine several filter criteria."
-msgstr "Per filtrar amb diferents noms de camp simultàniament, feu clic a la icona <emph>Filtre per defecte </emph>. Apareixerà el diàleg <link href=\"text/shared/02/12090000.xhp\" name=\"Filtre per defecte\">Filtre per defecte</link>, on podeu combinar diferents criteris de filtre."
+msgid "To filter with several field names simultaneously, click the <emph>Default Filter </emph>icon. The <link href=\"text/shared/02/12090000.xhp\">Default Filter</link> dialog appears, in which you can combine several filter criteria."
+msgstr "Per filtrar amb diferents noms de camp simultàniament, feu clic a la icona <emph>Filtre per defecte </emph>. Apareixerà el diàleg <link href=\"text/shared/02/12090000.xhp\">Filtre per defecte</link>, on podeu combinar diferents criteris de filtre."
#. xUfgF
#: 12040000.xhp
@@ -14219,13 +14219,13 @@ msgctxt ""
msgid "Reset Filter/Sorting"
msgstr "Suprimeix el filtre/l'ordenació"
-#. TjLfb
+#. XGYzE
#: 12040000.xhp
msgctxt ""
"12040000.xhp\n"
"hd_id3155069\n"
"help.text"
-msgid "<link href=\"text/shared/02/12040000.xhp\" name=\"Reset Filter/Sorting\">Reset Filter/Sorting</link>"
+msgid "<link href=\"text/shared/02/12040000.xhp\">Reset Filter/Sorting</link>"
msgstr ""
#. nxp5e
@@ -14264,14 +14264,14 @@ msgctxt ""
msgid "Refresh"
msgstr "Refresca"
-#. 5C9zt
+#. 5dbKE
#: 12050000.xhp
msgctxt ""
"12050000.xhp\n"
"hd_id3154926\n"
"help.text"
-msgid "<link href=\"text/shared/02/12050000.xhp\" name=\"Refresh\">Refresh</link>"
-msgstr "<link href=\"text/shared/02/12050000.xhp\" name=\"Refresca\">Refresca</link>"
+msgid "<link href=\"text/shared/02/12050000.xhp\">Refresh</link>"
+msgstr "<link href=\"text/shared/02/12050000.xhp\">Refresca</link>"
#. mFd2G
#: 12050000.xhp
@@ -14381,14 +14381,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">In the data source browser, select the record that you want to insert into the document and then click the <emph>Data to Text</emph> icon. The record is inserted in the document at the cursor position, with the contents of each individual field of the record copied to a table column. You can also select multiple records and transfer them into the document by clicking the <emph>Data to Text </emph>icon. Each individual record is then written to a new row.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Al navegador de la font de dades, seleccioneu el registre que voleu inserir al document i tot seguit feu clic a la icona <emph>Dades a text</emph>. El registre s'insereix al document, a la posició del cursor, amb els continguts de cada camp individual del registre copiats a una columna de la taula. També podeu seleccionar registres múltiples i transferir-los al document si feu clic a la icona <emph>Dades a text </emph>. Cada registre individual s'escriu en una fila nova.</caseinline></switchinline>"
-#. BsDdi
+#. sCeZH
#: 12070000.xhp
msgctxt ""
"12070000.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">In the data source browser, select the records that you want to insert into the document and then click the <emph>Data to Text</emph> icon, or drag-and-drop data from the data source browser into the document. This opens the <emph>Insert Database Columns </emph>dialog. Select whether the data should be inserted as a <link href=\"text/shared/02/12070100.xhp\" name=\"table\">table</link>, as <link href=\"text/shared/02/12070200.xhp\" name=\"fields\">fields</link> or as <link href=\"text/shared/02/12070300.xhp\" name=\"text\">text</link>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Al navegador de la font de dades, seleccioneu els registres que voleu inserir al document i tot seguit feu clic a la icona <emph>Dades a text</emph> o arrossegueu i deixeu anar les dades del navegador de la font de dades al document. Esta acció obrirà el diàleg <emph>Insereix les columnes de la base de dades</emph>. Seleccioneu si les dades s'han d'inserir com a <link href=\"text/shared/02/12070100.xhp\" name=\"taula\">taula</link>, com a <link href=\"text/shared/02/12070200.xhp\" name=\"camps\">camps</link> o com a <link href=\"text/shared/02/12070300.xhp\" name=\"text\">text</link>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">In the data source browser, select the records that you want to insert into the document and then click the <emph>Data to Text</emph> icon, or drag-and-drop data from the data source browser into the document. This opens the <emph>Insert Database Columns </emph>dialog. Select whether the data should be inserted as a <link href=\"text/shared/02/12070100.xhp\">table</link>, as <link href=\"text/shared/02/12070200.xhp\">fields</link> or as <link href=\"text/shared/02/12070300.xhp\">text</link>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Al navegador de la font de dades, seleccioneu els registres que voleu inserir al document i tot seguit feu clic a la icona <emph>Dades a text</emph> o arrossegueu i deixeu anar les dades del navegador de la font de dades al document. Esta acció obrirà el diàleg <emph>Insereix les columnes de la base de dades</emph>. Seleccioneu si les dades s'han d'inserir com a <link href=\"text/shared/02/12070100.xhp\">taula</link>, com a <link href=\"text/shared/02/12070200.xhp\">camps</link> o com a <link href=\"text/shared/02/12070300.xhp\">text</link>.</caseinline></switchinline>"
#. s4gFx
#: 12070000.xhp
@@ -14624,14 +14624,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/numformat\">Specifies a format from the list, if the format information of certain data fields is not accepted.</ahelp> The formats supplied here are only available for certain database fields, such as numeric or Boolean fields. If you select a database field in text format, you will not be able to select any format from the selection list, since the text format will be automatically maintained."
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/numformat\">Indica un format de la llista si la informació del format de certs camps de dades no s'accepta.</ahelp> Els formats que ací es donen només estan disponibles per a certs camps de la base de dades, com ara camps numèrics o booleans. Si seleccioneu un camp de la base de dades en format text, no podreu seleccionar cap format de la llista de selecció, ja que es mantindrà automàticament el format de text."
-#. dvJFT
+#. Nq8xH
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
"par_id3144511\n"
"help.text"
-msgid "If the format you want is not listed, select \"Other Formats...\" and define the desired format in the <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph>Number Format</emph></link> dialog."
-msgstr "Si el format que voleu no està llistat, seleccioneu \"Altres formats...\" i definiu el format que voleu al diàleg <link href=\"text/shared/01/05020300.xhp\" name=\"Format numèric\"><emph>Format numèric</emph></link>."
+msgid "If the format you want is not listed, select \"Other Formats...\" and define the desired format in the <link href=\"text/shared/01/05020300.xhp\"><emph>Number Format</emph></link> dialog."
+msgstr "Si el format que voleu no està llistat, seleccioneu \"Altres formats...\" i definiu el format que voleu al diàleg <link href=\"text/shared/01/05020300.xhp\"><emph>Format numèric</emph></link>."
#. r4mEG
#: 12070100.xhp
@@ -14714,14 +14714,14 @@ msgctxt ""
msgid "Properties"
msgstr "Propietats"
-#. XTnE5
+#. AwJYA
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
"par_id3154299\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tableformat\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05090000.xhp\" name=\"Table Format\"><emph>Table Format</emph></link></caseinline><defaultinline><emph>Table Format</emph></defaultinline></switchinline> dialog, which enables you to define the table properties such as borders, background, and column width.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tableformat\">Obri el diàleg <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05090000.xhp\" name=\"Format de la taula\"><emph>Format de la taula</emph></link></caseinline><defaultinline><emph>Format de la taula</emph></defaultinline></switchinline>, que vos permet definir les propietats de la taula com les vores, el fons o l'amplària de les columnes.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tableformat\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05090000.xhp\"><emph>Table Format</emph></link></caseinline><defaultinline><emph>Table Format</emph></defaultinline></switchinline> dialog, which enables you to define the table properties such as borders, background, and column width.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tableformat\">Obri el diàleg <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05090000.xhp\"><emph>Format de la taula</emph></link></caseinline><defaultinline><emph>Format de la taula</emph></defaultinline></switchinline>, que vos permet definir les propietats de la taula com les vores, el fons o l'amplària de les columnes.</ahelp>"
#. hjSX8
#: 12070100.xhp
@@ -14732,14 +14732,14 @@ msgctxt ""
msgid "AutoFormat"
msgstr "Formatació automàtica"
-#. xPJqr
+#. Fou2G
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
"par_id3154988\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05150101.xhp\" name=\"AutoFormat\"><emph>AutoFormat</emph></link></caseinline><defaultinline><emph>AutoFormat</emph></defaultinline></switchinline> dialog, in which you can select format styles that are immediately applied when inserting the table.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">Obri el diàleg <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05150101.xhp\" name=\"Formatació automàtica\"><emph>Formatació automàtica</emph></link></caseinline><defaultinline><emph>Formatació automàtica</emph></defaultinline></switchinline>, en què podeu seleccionar els estils de format que s'apliquen immediatament quan s'insereix la taula.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05150101.xhp\"><emph>AutoFormat</emph></link></caseinline><defaultinline><emph>AutoFormat</emph></defaultinline></switchinline> dialog, in which you can select format styles that are immediately applied when inserting the table.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">Obri el diàleg <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05150101.xhp\"><emph>Formatació automàtica</emph></link></caseinline><defaultinline><emph>Formatació automàtica</emph></defaultinline></switchinline>, en què podeu seleccionar els estils de format que s'apliquen immediatament quan s'insereix la taula.</ahelp>"
#. BtwJD
#: 12070200.xhp
@@ -14768,14 +14768,14 @@ msgctxt ""
msgid "<bookmark_value>database contents; inserting as fields</bookmark_value>"
msgstr "<bookmark_value>continguts de la base de dades; inserció com a camps</bookmark_value>"
-#. o9tEp
+#. bwNki
#: 12070200.xhp
msgctxt ""
"12070200.xhp\n"
"par_id3149987\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/asfields\" visibility=\"hidden\">Inserts data selected from the data source browser into the document as fields.</ahelp> In the <emph>Insert Database Columns</emph> dialog, select the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\">Fields</link> to insert the selected data into the document as fields. These <link href=\"text/swriter/01/04090006.xhp\" name=\"database fields\">database fields</link> work as wildcards for the individual database columns and can be used for form letters. Click the <link href=\"text/shared/02/12080000.xhp\" name=\"Data to Fields\"><emph>Data to Fields</emph></link> icon to match the contents of the fields to the currently selected record."
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/asfields\" visibility=\"hidden\">Insereix les dades seleccionades del navegador de la font de dades al document com a camps.</ahelp> Al diàleg<emph>Insereix les columnes de la base de dades</emph>, seleccioneu <link href=\"text/swriter/01/04090000.xhp\" name=\"Camps\">Camps</link> per inserir les dades seleccionades al document com a camps. Estos <link href=\"text/swriter/01/04090006.xhp\" name=\"camps de la base de dades\">camps de la base de dades</link> treballen com a comodins per a les columnes individuals de la base de dades i es poden utilitzar per a cartes de formulari. Feu clic a la icona <link href=\"text/shared/02/12080000.xhp\" name=\"Dades a camps\"><emph>Dades a camps</emph></link> per relacionar els continguts dels camps al registre seleccionat actualment."
+msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/asfields\" visibility=\"hidden\">Inserts data selected from the data source browser into the document as fields.</ahelp> In the <emph>Insert Database Columns</emph> dialog, select the <link href=\"text/swriter/01/04090000.xhp\">Fields</link> to insert the selected data into the document as fields. These <link href=\"text/swriter/01/04090006.xhp\">database fields</link> work as wildcards for the individual database columns and can be used for form letters. Click the <link href=\"text/shared/02/12080000.xhp\"><emph>Data to Fields</emph></link> icon to match the contents of the fields to the currently selected record."
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/asfields\" visibility=\"hidden\">Insereix les dades seleccionades del navegador de la font de dades al document com a camps.</ahelp> Al diàleg<emph>Insereix les columnes de la base de dades</emph>, seleccioneu <link href=\"text/swriter/01/04090000.xhp\">Camps</link> per inserir les dades seleccionades al document com a camps. Estos <link href=\"text/swriter/01/04090006.xhp\">camps de la base de dades</link> treballen com a comodins per a les columnes individuals de la base de dades i es poden utilitzar per a cartes de formulari. Feu clic a la icona <link href=\"text/shared/02/12080000.xhp\"><emph>Dades a camps</emph></link> per relacionar els continguts dels camps al registre seleccionat actualment."
#. ar87S
#: 12070200.xhp
@@ -14876,14 +14876,14 @@ msgctxt ""
msgid "Paragraph Style"
msgstr "Estil de paràgraf"
-#. FnJwq
+#. iRXKV
#: 12070200.xhp
msgctxt ""
"12070200.xhp\n"
"par_id3158430\n"
"help.text"
-msgid "By default, the inserted paragraphs are formatted with the current Paragraph Styles. This format corresponds to the \"none\" entry in the <emph>Paragraph Style</emph> list box. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/parastyle\" visibility=\"visible\">This is where you can select other Paragraph Styles to apply to the paragraph you want to insert into the document.</ahelp> The list box displays the available Paragraph Styles defined in <item type=\"productname\">%PRODUCTNAME</item> and managed in the <link href=\"text/swriter/01/05130000.xhp\" name=\"Style Catalog\">Style Catalog</link>."
-msgstr "Per defecte, els paràgrafs inserits es formaten amb els estils de paràgraf actuals. Este format correspon a l'entrada \"cap\" del quadre de llista <emph>Estil de paràgraf</emph>. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/parastyle\" visibility=\"visible\">Ací és on podeu seleccionar altres estils de paràgraf perquè s'apliquin al paràgraf que voleu inserir al document.</ahelp> El quadre de llista mostra els estils de paràgraf disponibles al <item type=\"productname\">%PRODUCTNAME</item> i que es gestionen al <link href=\"text/swriter/01/05130000.xhp\" name=\"Catàleg d'estils\">Catàleg d'estils</link>."
+msgid "By default, the inserted paragraphs are formatted with the current Paragraph Styles. This format corresponds to the \"none\" entry in the <emph>Paragraph Style</emph> list box. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/parastyle\" visibility=\"visible\">This is where you can select other Paragraph Styles to apply to the paragraph you want to insert into the document.</ahelp> The list box displays the available Paragraph Styles defined in <item type=\"productname\">%PRODUCTNAME</item> and managed in the <link href=\"text/swriter/01/05130000.xhp\">Style Catalog</link>."
+msgstr "Per defecte, els paràgrafs inserits es formaten amb els estils de paràgraf actuals. Este format correspon a l'entrada \"cap\" del quadre de llista <emph>Estil de paràgraf</emph>. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/parastyle\" visibility=\"visible\">Ací és on podeu seleccionar altres estils de paràgraf perquè s'apliquin al paràgraf que voleu inserir al document.</ahelp> El quadre de llista mostra els estils de paràgraf disponibles al <item type=\"productname\">%PRODUCTNAME</item> i que es gestionen al <link href=\"text/swriter/01/05130000.xhp\">Catàleg d'estils</link>."
#. 6uBjk
#: 12070300.xhp
@@ -14957,14 +14957,14 @@ msgctxt ""
msgid "Data to Fields"
msgstr "Dades a camps"
-#. YE9DG
+#. cZuzS
#: 12080000.xhp
msgctxt ""
"12080000.xhp\n"
"hd_id3149031\n"
"help.text"
-msgid "<link href=\"text/shared/02/12080000.xhp\" name=\"Data to Fields\">Data to Fields</link>"
-msgstr "<link href=\"text/shared/02/12080000.xhp\" name=\"Dades a camps\">Dades a camps</link>"
+msgid "<link href=\"text/shared/02/12080000.xhp\">Data to Fields</link>"
+msgstr "<link href=\"text/shared/02/12080000.xhp\">Dades a camps</link>"
#. 829jY
#: 12080000.xhp
@@ -15011,14 +15011,14 @@ msgctxt ""
msgid "<bookmark_value>default filters, see standard filters</bookmark_value> <bookmark_value>databases; standard filters</bookmark_value> <bookmark_value>standard filters;databases</bookmark_value>"
msgstr "<bookmark_value>filtres per defecte, vegeu filtres estàndard</bookmark_value><bookmark_value>bases de dades; filtres estàndard</bookmark_value><bookmark_value>filtres estàndard; bases de dades</bookmark_value>"
-#. uDz67
+#. Sc3oE
#: 12090000.xhp
msgctxt ""
"12090000.xhp\n"
"hd_id3109850\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=\"Filtre estàndard\">Filtre estàndard</link>"
+msgid "<link href=\"text/shared/02/12090000.xhp\">Standard Filter</link>"
+msgstr "<link href=\"text/shared/02/12090000.xhp\">Filtre estàndard</link>"
#. 7YEPf
#: 12090000.xhp
@@ -15065,23 +15065,23 @@ msgctxt ""
msgid "$[officename] saves the current filter settings for the next time that you open this dialog."
msgstr "El $[officename] guarda els paràmetres actuals de filtre per a la propera vegada que obriu este diàleg."
-#. FXUDj
+#. D5Dbs
#: 12090000.xhp
msgctxt ""
"12090000.xhp\n"
"par_id3156410\n"
"help.text"
-msgid "To remove the current filter, click <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sorting\"><emph>Reset Filter/Sorting</emph></link> icon."
+msgid "To remove the current filter, click <link href=\"text/shared/02/12040000.xhp\"><emph>Reset Filter/Sorting</emph></link> icon."
msgstr ""
-#. NGeb8
+#. JGrCA
#: 12090000.xhp
msgctxt ""
"12090000.xhp\n"
"par_id3152996\n"
"help.text"
-msgid "<link href=\"text/shared/02/12030000.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/shared/02/12030000.xhp\" name=\"Filtre automàtic\">Filtre automàtic</link>"
+msgid "<link href=\"text/shared/02/12030000.xhp\">AutoFilter</link>"
+msgstr "<link href=\"text/shared/02/12030000.xhp\">Filtre automàtic</link>"
#. trCAA
#: 12090100.xhp
@@ -15092,13 +15092,13 @@ msgctxt ""
msgid "Standard Filter"
msgstr "Filtre estàndard"
-#. AdEPW
+#. kyGfn
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
"hd_id3151097\n"
"help.text"
-msgid "<variable id=\"StandardFilter_h1\"><link href=\"text/shared/02/12090100.xhp\" name=\"StandardFilter_link\">Standard Filter</link></variable>"
+msgid "<variable id=\"StandardFilter_h1\"><link href=\"text/shared/02/12090100.xhp\">Standard Filter</link></variable>"
msgstr ""
#. u4zmZ
@@ -15173,14 +15173,14 @@ msgctxt ""
msgid "Condition"
msgstr "Condició"
-#. nGEGx
+#. B7zhC
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
"par_id3150254\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the <link href=\"text/shared/02/12090101.xhp\" name=\"comparative operators\">comparative operators</link> through which the entries in the <emph>Field name</emph> and <emph>Value</emph> fields can be linked.</ahelp>"
-msgstr "<ahelp hid=\".\">Indica els <link href=\"text/shared/02/12090101.xhp\" name=\"operadors de comparació\">operadors de comparació</link> a través dels quals es poden enllaçar les entrades als camps <emph>Nom del camp</emph> i <emph>Valor</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the <link href=\"text/shared/02/12090101.xhp\">comparative operators</link> through which the entries in the <emph>Field name</emph> and <emph>Value</emph> fields can be linked.</ahelp>"
+msgstr "<ahelp hid=\".\">Indica els <link href=\"text/shared/02/12090101.xhp\">operadors de comparació</link> a través dels quals es poden enllaçar les entrades als camps <emph>Nom del camp</emph> i <emph>Valor</emph>.</ahelp>"
#. 9A8dA
#: 12090100.xhp
@@ -15218,14 +15218,14 @@ msgctxt ""
msgid "If you use the filter function in database tables or forms, then type the value in the <emph>Value </emph>text box to be used for filtering."
msgstr "Si utilitzeu la funció de filtre en taules o formularis de bases de dades, escriviu el valor al quadre de text <emph>Valor</emph> que s'ha d'utilitzar per filtrar."
-#. KF7Vw
+#. SU5gj
#: 12090100.xhp
msgctxt ""
"12090100.xhp\n"
"hd_id3153061\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\">Opcions</link>"
#. KupG6
#: 12090101.xhp
@@ -15470,14 +15470,14 @@ msgctxt ""
msgid "Sort Order"
msgstr "Ordenació"
-#. hGBS9
+#. yH5GK
#: 12100000.xhp
msgctxt ""
"12100000.xhp\n"
"hd_id3149988\n"
"help.text"
-msgid "<link href=\"text/shared/02/12100000.xhp\" name=\"Sort Order\">Sort Order</link>"
-msgstr "<link href=\"text/shared/02/12100000.xhp\" name=\"Ordenació\">Ordenació</link>"
+msgid "<link href=\"text/shared/02/12100000.xhp\">Sort Order</link>"
+msgstr "<link href=\"text/shared/02/12100000.xhp\">Ordenació</link>"
#. 7cyxb
#: 12100000.xhp
@@ -15515,14 +15515,14 @@ msgctxt ""
msgid "<bookmark_value>sorting; databases</bookmark_value><bookmark_value>databases; sorting</bookmark_value>"
msgstr "<bookmark_value>ordenació; bases de dades</bookmark_value><bookmark_value>bases de dades; ordenació</bookmark_value>"
-#. kAUF8
+#. ywze2
#: 12100100.xhp
msgctxt ""
"12100100.xhp\n"
"hd_id3147000\n"
"help.text"
-msgid "<variable id=\"sortierung\"><link href=\"text/shared/02/12100100.xhp\" name=\"Sort Order\">Sort Order</link></variable>"
-msgstr "<variable id=\"eixierung\"><link href=\"text/shared/02/12100100.xhp\" name=\"Ordenació\">Ordenació</link></variable>"
+msgid "<variable id=\"sortierung\"><link href=\"text/shared/02/12100100.xhp\">Sort Order</link></variable>"
+msgstr "<variable id=\"eixierung\"><link href=\"text/shared/02/12100100.xhp\">Ordenació</link></variable>"
#. AU2Qu
#: 12100100.xhp
@@ -15533,22 +15533,22 @@ msgctxt ""
msgid "<variable id=\"sortierentext\"><ahelp hid=\".uno:OrderCrit\">Specifies the sort criteria for the data display.</ahelp></variable>"
msgstr "<variable id=\"eixierentext\"><ahelp hid=\".uno:OrderCrit\">Indica el criteri d'ordenació per a la visualització de les dades.</ahelp></variable>"
-#. Awtku
+#. MLADC
#: 12100100.xhp
msgctxt ""
"12100100.xhp\n"
"par_id3149549\n"
"help.text"
-msgid "While the functions <link href=\"text/shared/02/12010000.xhp\" name=\"Sort in Ascending Order\"><emph>Sort in Ascending Order</emph></link> and <link href=\"text/shared/02/12020000.xhp\" name=\"Sort in Descending Order\"><emph>Sort in Descending Order</emph></link> sort by one criterion only, you can combine several criteria in the <emph>Sort Order</emph> dialog."
-msgstr "Mentre les funcions <link href=\"text/shared/02/12010000.xhp\" name=\"Ordena en ordre ascendent\"><emph>Ordena en ordre ascendent</emph></link> i <link href=\"text/shared/02/12020000.xhp\" name=\"Ordena en ordre descendent\"><emph>Ordena en ordre descendent</emph></link> ordenen només per un criteri, podeu combinar diversos criteris amb el diàleg <emph>Ordena </emph>."
+msgid "While the functions <link href=\"text/shared/02/12010000.xhp\"><emph>Sort in Ascending Order</emph></link> and <link href=\"text/shared/02/12020000.xhp\"><emph>Sort in Descending Order</emph></link> sort by one criterion only, you can combine several criteria in the <emph>Sort Order</emph> dialog."
+msgstr "Mentre les funcions <link href=\"text/shared/02/12010000.xhp\"><emph>Ordena en ordre ascendent</emph></link> i <link href=\"text/shared/02/12020000.xhp\"><emph>Ordena en ordre descendent</emph></link> ordenen només per un criteri, podeu combinar diversos criteris amb el diàleg <emph>Ordena </emph>."
-#. y5zaU
+#. eyLVZ
#: 12100100.xhp
msgctxt ""
"12100100.xhp\n"
"par_id3145136\n"
"help.text"
-msgid "You can remove a sorting that has been performed with the <link href=\"text/shared/02/12040000.xhp\" name=\"Reset Filter/Sorting\"><emph>Reset Filter/Sorting</emph></link> icon."
+msgid "You can remove a sorting that has been performed with the <link href=\"text/shared/02/12040000.xhp\"><emph>Reset Filter/Sorting</emph></link> icon."
msgstr ""
#. bzKc3
@@ -15650,14 +15650,14 @@ msgctxt ""
msgid "<bookmark_value>tables in databases; searching</bookmark_value><bookmark_value>forms; browsing</bookmark_value><bookmark_value>records; searching in databases</bookmark_value><bookmark_value>searching; databases</bookmark_value><bookmark_value>databases; searching records</bookmark_value>"
msgstr ""
-#. vMdGF
+#. XrPM5
#: 12100200.xhp
msgctxt ""
"12100200.xhp\n"
"hd_id3146936\n"
"help.text"
-msgid "<variable id=\"datensatzsuche\"><link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link></variable>"
-msgstr "<variable id=\"datensatzsuche\"><link href=\"text/shared/02/12100200.xhp\" name=\"Busca un registre\">Busca un registre</link></variable>"
+msgid "<variable id=\"datensatzsuche\"><link href=\"text/shared/02/12100200.xhp\">Find Record</link></variable>"
+msgstr "<variable id=\"datensatzsuche\"><link href=\"text/shared/02/12100200.xhp\">Busca un registre</link></variable>"
#. 5Q5FH
#: 12100200.xhp
@@ -15677,14 +15677,14 @@ msgctxt ""
msgid "When searching a table, the data fields of the current table are searched. When searching in a form, the data fields of the table linked with the form are searched."
msgstr "Quan es fan cerques a una taula, es cerquen els camps de dades de la taula actual. Quan es fan cerques a un formulari, es cerquen els camps de dades de la taula enllaçada amb el formulari."
-#. 56VKR
+#. BNa3a
#: 12100200.xhp
msgctxt ""
"12100200.xhp\n"
"par_id3153394\n"
"help.text"
-msgid "The search described here is carried out by <item type=\"productname\">%PRODUCTNAME</item>. If you want to use the SQL server to search in a database, then you should use the <link href=\"text/shared/02/12110000.xhp\" name=\"Form-based Filters\"><emph>Form-based Filters</emph></link> icon on the <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\"><emph>Form</emph> bar</link>."
-msgstr "El <item type=\"productname\">%PRODUCTNAME</item> duu a terme la cerca que es descriu ací. Si voleu utilitzar el servidor SQL per a fer cerques a la base de dades, heu d'utilitzar la icona <link href=\"text/shared/02/12110000.xhp\" name=\"Filtres basats en un formulari\"><emph>Filtres basats en un formulari</emph></link> de la barra <link href=\"text/shared/main0213.xhp\" name=\"Navegació de formularis\"><emph>Navegació de formularis</emph></link>."
+msgid "The search described here is carried out by <item type=\"productname\">%PRODUCTNAME</item>. If you want to use the SQL server to search in a database, then you should use the <link href=\"text/shared/02/12110000.xhp\"><emph>Form-based Filters</emph></link> icon on the <link href=\"text/shared/main0213.xhp\"><emph>Form</emph> bar</link>."
+msgstr "El <item type=\"productname\">%PRODUCTNAME</item> duu a terme la cerca que es descriu ací. Si voleu utilitzar el servidor SQL per a fer cerques a la base de dades, heu d'utilitzar la icona <link href=\"text/shared/02/12110000.xhp\"><emph>Filtres basats en un formulari</emph></link> de la barra <link href=\"text/shared/main0213.xhp\"><emph>Navegació de formularis</emph></link>."
#. eVvxL
#: 12100200.xhp
@@ -16442,13 +16442,13 @@ msgctxt ""
msgid "Regular expression"
msgstr "Expressió regular"
-#. tMT4v
+#. kuF6v
#: 12100200.xhp
msgctxt ""
"12100200.xhp\n"
"par_id3150982\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/fmsearchdialog/cbRegular\">Searches with regular expressions.</ahelp> The same regular expressions that are supported here are also supported in the <item type=\"productname\">%PRODUCTNAME</item> <link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace dialog\"><emph>Find & Replace</emph> dialog</link>."
+msgid "<ahelp hid=\"cui/ui/fmsearchdialog/cbRegular\">Searches with regular expressions.</ahelp> The same regular expressions that are supported here are also supported in the <item type=\"productname\">%PRODUCTNAME</item> <link href=\"text/shared/01/02100000.xhp\"><emph>Find & Replace</emph> dialog</link>."
msgstr ""
#. NYmii
@@ -16595,14 +16595,14 @@ msgctxt ""
msgid "Form-based Filters"
msgstr "Filtres basats en un formulari"
-#. HDchD
+#. aCCm7
#: 12110000.xhp
msgctxt ""
"12110000.xhp\n"
"hd_id3147000\n"
"help.text"
-msgid "<variable id=\"formfilter\"><link href=\"text/shared/02/12110000.xhp\" name=\"Form-based Filters\">Form-based Filters</link></variable>"
-msgstr "<variable id=\"formfilter\"><link href=\"text/shared/02/12110000.xhp\" name=\"Filtres basats en un formulari\">Filtres basats en un formulari</link></variable>"
+msgid "<variable id=\"formfilter\"><link href=\"text/shared/02/12110000.xhp\">Form-based Filters</link></variable>"
+msgstr "<variable id=\"formfilter\"><link href=\"text/shared/02/12110000.xhp\">Filtres basats en un formulari</link></variable>"
#. nJ3CC
#: 12110000.xhp
@@ -16613,13 +16613,13 @@ msgctxt ""
msgid "<variable id=\"formfiltertext\"><ahelp hid=\".uno:FormFilter\">Prompts the database server to filter the visible data by specified criteria.</ahelp></variable>"
msgstr "<variable id=\"formfiltertext\"><ahelp hid=\".uno:FormFilter\">Indica al servidor de la base de dades que filtri les dades visibles segons els criteris indicats.</ahelp></variable>"
-#. DWi78
+#. S5YQQ
#: 12110000.xhp
msgctxt ""
"12110000.xhp\n"
"par_id3152918\n"
"help.text"
-msgid "Unlike the normal search, which is activated by the <link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\"><emph>Find Record</emph></link> icon on the <emph>Form</emph> bar, you can search more quickly by using the form-based filter. Usually a quick database server is charged with the search. Also, you can enter more complex search conditions."
+msgid "Unlike the normal search, which is activated by the <link href=\"text/shared/02/12100200.xhp\"><emph>Find Record</emph></link> icon on the <emph>Form</emph> bar, you can search more quickly by using the form-based filter. Usually a quick database server is charged with the search. Also, you can enter more complex search conditions."
msgstr ""
#. kDLDD
@@ -16649,14 +16649,14 @@ msgctxt ""
msgid "Apply Filter"
msgstr "Aplica el filtre"
-#. jFD4R
+#. Rh82k
#: 12120000.xhp
msgctxt ""
"12120000.xhp\n"
"hd_id3149748\n"
"help.text"
-msgid "<link href=\"text/shared/02/12120000.xhp\" name=\"Apply Filter\">Apply Filter</link>"
-msgstr "<link href=\"text/shared/02/12120000.xhp\" name=\"Aplica el filtre\">Aplica el filtre</link>"
+msgid "<link href=\"text/shared/02/12120000.xhp\">Apply Filter</link>"
+msgstr "<link href=\"text/shared/02/12120000.xhp\">Aplica el filtre</link>"
#. XyEBZ
#: 12120000.xhp
@@ -16685,13 +16685,13 @@ msgctxt ""
msgid "Apply Filter"
msgstr "Aplica el filtre"
-#. ZBPTA
+#. ycZvF
#: 12120000.xhp
msgctxt ""
"12120000.xhp\n"
"par_id3147226\n"
"help.text"
-msgid "The <emph>Apply Filter</emph> function retains <link href=\"text/shared/02/12110000.xhp\" name=\"form-based filters\"><emph>form-based filters</emph></link> that have been set. You do not need to redefine them."
+msgid "The <emph>Apply Filter</emph> function retains <link href=\"text/shared/02/12110000.xhp\"><emph>form-based filters</emph></link> that have been set. You do not need to redefine them."
msgstr ""
#. U7zqD
@@ -16712,14 +16712,14 @@ msgctxt ""
msgid "<bookmark_value>data sources; as tables</bookmark_value>"
msgstr "<bookmark_value>fonts de dades; com a taules</bookmark_value>"
-#. 2w8qe
+#. itcv6
#: 12130000.xhp
msgctxt ""
"12130000.xhp\n"
"hd_id3152895\n"
"help.text"
-msgid "<link href=\"text/shared/02/12130000.xhp\" name=\"Data source as table\">Data source as table</link>"
-msgstr "<link href=\"text/shared/02/12130000.xhp\" name=\"Font de dades com a taula\">Font de dades com a taula</link>"
+msgid "<link href=\"text/shared/02/12130000.xhp\">Data source as table</link>"
+msgstr "<link href=\"text/shared/02/12130000.xhp\">Font de dades com a taula</link>"
#. VRMme
#: 12130000.xhp
@@ -16784,14 +16784,14 @@ msgctxt ""
msgid "<bookmark_value>data sources; displaying current</bookmark_value>"
msgstr "<bookmark_value>fonts de dades; visualització de la font de dades actual</bookmark_value>"
-#. RL5xG
+#. PGKfX
#: 12140000.xhp
msgctxt ""
"12140000.xhp\n"
"hd_id3154682\n"
"help.text"
-msgid "<link href=\"text/shared/02/12140000.xhp\" name=\"Data Source of Current Document\">Data Source of Current Document</link>"
-msgstr "<link href=\"text/shared/02/12140000.xhp\" name=\"Font de dades del document actual\">Font de dades del document actual</link>"
+msgid "<link href=\"text/shared/02/12140000.xhp\">Data Source of Current Document</link>"
+msgstr "<link href=\"text/shared/02/12140000.xhp\">Font de dades del document actual</link>"
#. U2Q9a
#: 12140000.xhp
@@ -16838,14 +16838,14 @@ msgctxt ""
msgid "Setting Tabs"
msgstr "Definició de tabulacions"
-#. PGw34
+#. kyEL5
#: 13010000.xhp
msgctxt ""
"13010000.xhp\n"
"hd_id3148668\n"
"help.text"
-msgid "<link href=\"text/shared/02/13010000.xhp\" name=\"Setting Tabs\">Setting Tabs</link>"
-msgstr "<link href=\"text/shared/02/13010000.xhp\" name=\"Definició de tabulacions\">Definició de tabulacions</link>"
+msgid "<link href=\"text/shared/02/13010000.xhp\">Setting Tabs</link>"
+msgstr "<link href=\"text/shared/02/13010000.xhp\">Definició de tabulacions</link>"
#. AyTpR
#: 13010000.xhp
@@ -16892,13 +16892,13 @@ msgctxt ""
msgid "<bookmark_value>cell widths; using ruler</bookmark_value><bookmark_value>cell widths; using mouse</bookmark_value>"
msgstr ""
-#. AAfhg
+#. GLJGh
#: 13020000.xhp
msgctxt ""
"13020000.xhp\n"
"hd_id3148668\n"
"help.text"
-msgid "<variable id=\"setting_margins\"><link href=\"text/shared/02/13020000.xhp\" name=\"Setting Indents, Margins, and Columns\">Setting Indents, Margins, and Columns</link></variable>"
+msgid "<variable id=\"setting_margins\"><link href=\"text/shared/02/13020000.xhp\">Setting Indents, Margins, and Columns</link></variable>"
msgstr ""
#. eXPSg
@@ -17072,14 +17072,14 @@ msgctxt ""
msgid "Run"
msgstr "Executa"
-#. BryNF
+#. 67mrx
#: 14010000.xhp
msgctxt ""
"14010000.xhp\n"
"hd_id3156183\n"
"help.text"
-msgid "<link href=\"text/shared/02/14010000.xhp\" name=\"Run\">Run Query</link>"
-msgstr "<link href=\"text/shared/02/14010000.xhp\" name=\"Executa\">Executa la consulta</link>"
+msgid "<link href=\"text/shared/02/14010000.xhp\">Run Query</link>"
+msgstr "<link href=\"text/shared/02/14010000.xhp\">Executa la consulta</link>"
#. TQ4NP
#: 14010000.xhp
@@ -17135,14 +17135,14 @@ msgctxt ""
msgid "Clear query"
msgstr "Neteja la consulta"
-#. oGv3C
+#. Cgy7E
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
"hd_id3146946\n"
"help.text"
-msgid "<link href=\"text/shared/02/14020000.xhp\" name=\"Clear query\">Clear query</link>"
-msgstr "<link href=\"text/shared/02/14020000.xhp\" name=\"Neteja la consulta\">Neteja la consulta</link>"
+msgid "<link href=\"text/shared/02/14020000.xhp\">Clear query</link>"
+msgstr "<link href=\"text/shared/02/14020000.xhp\">Neteja la consulta</link>"
#. PCyNh
#: 14020000.xhp
@@ -17306,13 +17306,13 @@ msgctxt ""
msgid "Switch Design View On/Off"
msgstr ""
-#. 94soE
+#. 66sTa
#: 14020200.xhp
msgctxt ""
"14020200.xhp\n"
"hd_id3159411\n"
"help.text"
-msgid "<link href=\"text/shared/02/14020200.xhp\" name=\"Switch Design View On / Off\">Switch Design View On/Off</link>"
+msgid "<link href=\"text/shared/02/14020200.xhp\">Switch Design View On/Off</link>"
msgstr ""
#. Y5Dgv
@@ -17351,14 +17351,14 @@ msgctxt ""
msgid "Run SQL command directly"
msgstr "Executa l'orde SQL directament"
-#. pUaZz
+#. HuRMo
#: 14030000.xhp
msgctxt ""
"14030000.xhp\n"
"hd_id3151100\n"
"help.text"
-msgid "<link href=\"text/shared/02/14030000.xhp\" name=\"Run SQL command directly\">Run SQL command directly</link>"
-msgstr "<link href=\"text/shared/02/14030000.xhp\" name=\"Executa l'orde SQL directament\">Executa l'orde SQL directament</link>"
+msgid "<link href=\"text/shared/02/14030000.xhp\">Run SQL command directly</link>"
+msgstr "<link href=\"text/shared/02/14030000.xhp\">Executa l'orde SQL directament</link>"
#. QJL3i
#: 14030000.xhp
@@ -17396,13 +17396,13 @@ msgctxt ""
msgid "Run SQL command directly"
msgstr "Executa l'orde SQL directament"
-#. 2GZmA
+#. zRLhG
#: 14030000.xhp
msgctxt ""
"14030000.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "Click the icon again to return to normal mode, in which the changes in the <link href=\"text/sdatabase/02010100.xhp\" name=\"New Query Design\"><emph>New Query Design</emph></link> are synchronized with the permitted changes through SQL."
+msgid "Click the icon again to return to normal mode, in which the changes in the <link href=\"text/sdatabase/02010100.xhp\"><emph>New Query Design</emph></link> are synchronized with the permitted changes through SQL."
msgstr ""
#. tTG7m
@@ -17414,22 +17414,22 @@ msgctxt ""
msgid "Functions"
msgstr "Funcions"
-#. 4oSsb
+#. bp68U
#: 14040000.xhp
msgctxt ""
"14040000.xhp\n"
"hd_id3153514\n"
"help.text"
-msgid "<link href=\"text/shared/02/14040000.xhp\" name=\"Functions\">Functions</link>"
-msgstr "<link href=\"text/shared/02/14040000.xhp\" name=\"Funcions\">Funcions</link>"
+msgid "<link href=\"text/shared/02/14040000.xhp\">Functions</link>"
+msgstr "<link href=\"text/shared/02/14040000.xhp\">Funcions</link>"
-#. LfbjB
+#. hWFS4
#: 14040000.xhp
msgctxt ""
"14040000.xhp\n"
"par_id3159224\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Displays the <emph>Function</emph> row in the lower part of the design view of the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link> window.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Displays the <emph>Function</emph> row in the lower part of the design view of the <link href=\"text/sdatabase/02010100.xhp\"><emph>Query Design</emph></link> window.</ahelp>"
msgstr ""
#. iGFfH
@@ -17459,22 +17459,22 @@ msgctxt ""
msgid "Table Name"
msgstr "Nom de la taula"
-#. ZFkGv
+#. 7L55P
#: 14050000.xhp
msgctxt ""
"14050000.xhp\n"
"hd_id3149991\n"
"help.text"
-msgid "<link href=\"text/shared/02/14050000.xhp\" name=\"Table Name\">Table Name</link>"
-msgstr "<link href=\"text/shared/02/14050000.xhp\" name=\"Nom de la taula\">Nom de la taula</link>"
+msgid "<link href=\"text/shared/02/14050000.xhp\">Table Name</link>"
+msgstr "<link href=\"text/shared/02/14050000.xhp\">Nom de la taula</link>"
-#. vEiiV
+#. oMKT9
#: 14050000.xhp
msgctxt ""
"14050000.xhp\n"
"par_id3154232\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the <emph>Table</emph> row in the lower part of the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the <emph>Table</emph> row in the lower part of the <link href=\"text/sdatabase/02010100.xhp\"><emph>Query Design</emph></link>.</ahelp>"
msgstr ""
#. t48DA
@@ -17504,22 +17504,22 @@ msgctxt ""
msgid "Alias"
msgstr "Àlies"
-#. ZY47g
+#. kDRU9
#: 14060000.xhp
msgctxt ""
"14060000.xhp\n"
"hd_id3150758\n"
"help.text"
-msgid "<link href=\"text/shared/02/14060000.xhp\" name=\"Alias\">Alias</link>"
-msgstr "<link href=\"text/shared/02/14060000.xhp\" name=\"Àlies\">Àlies</link>"
+msgid "<link href=\"text/shared/02/14060000.xhp\">Alias</link>"
+msgstr "<link href=\"text/shared/02/14060000.xhp\">Àlies</link>"
-#. tE9CF
+#. D2gk5
#: 14060000.xhp
msgctxt ""
"14060000.xhp\n"
"par_id3148731\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Displays the <emph>Alias</emph> row in the lower part of the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Displays the <emph>Alias</emph> row in the lower part of the <link href=\"text/sdatabase/02010100.xhp\"><emph>Query Design</emph></link>.</ahelp>"
msgstr ""
#. CcbaZ
@@ -17558,22 +17558,22 @@ msgctxt ""
msgid "<bookmark_value>SQL; DISTINCT parameter</bookmark_value><bookmark_value>distinct values in SQL queries</bookmark_value>"
msgstr "<bookmark_value>SQL; paràmetre DISTINCT</bookmark_value><bookmark_value>valors diferents a les consultes SQL</bookmark_value>"
-#. BMTBs
+#. V68Dd
#: 14070000.xhp
msgctxt ""
"14070000.xhp\n"
"hd_id3149991\n"
"help.text"
-msgid "<link href=\"text/shared/02/14070000.xhp\" name=\"Distinct Values\">Distinct Values</link>"
-msgstr "<link href=\"text/shared/02/14070000.xhp\" name=\"Valors diferents\">Valors diferents</link>"
+msgid "<link href=\"text/shared/02/14070000.xhp\">Distinct Values</link>"
+msgstr "<link href=\"text/shared/02/14070000.xhp\">Valors diferents</link>"
-#. MhStz
+#. BwCJ3
#: 14070000.xhp
msgctxt ""
"14070000.xhp\n"
"par_id3154894\n"
"help.text"
-msgid "<ahelp hid=\".uno:DBDistinctValues\">Expands the created select statement of the <link href=\"text/sdatabase/02010100.xhp\" name=\"SQL Query\"><emph>SQL Query</emph></link> in the current column by the parameter <emph>DISTINCT</emph>.</ahelp> The consequence is that identical values occurring multiple times are listed only once."
+msgid "<ahelp hid=\".uno:DBDistinctValues\">Expands the created select statement of the <link href=\"text/sdatabase/02010100.xhp\"><emph>SQL Query</emph></link> in the current column by the parameter <emph>DISTINCT</emph>.</ahelp> The consequence is that identical values occurring multiple times are listed only once."
msgstr ""
#. EXAFG
@@ -17603,14 +17603,14 @@ msgctxt ""
msgid "Selection"
msgstr "Selecció"
-#. qVCWe
+#. F8JWV
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3151299\n"
"help.text"
-msgid "<link href=\"text/shared/02/18010000.xhp\" name=\"Selection\">Selection</link>"
-msgstr "<link href=\"text/shared/02/18010000.xhp\" name=\"Selecció\">Selecció</link>"
+msgid "<link href=\"text/shared/02/18010000.xhp\">Selection</link>"
+msgstr "<link href=\"text/shared/02/18010000.xhp\">Selecció</link>"
#. QdXAT
#: 18010000.xhp
@@ -17639,14 +17639,14 @@ msgctxt ""
msgid "Selection"
msgstr "Selecció"
-#. pdiQv
+#. 2GbG3
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"par_id3155555\n"
"help.text"
-msgid "To select an object, click the object with the arrow. To select more than one object, drag a selection frame around the objects. To add an object to a selection, press <emph>Shift</emph>, and then click the object. <switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>The objects selected together can then be defined as a <link href=\"text/shared/01/05290000.xhp\" name=\"group\">group</link>, turning them into a single group object.</defaultinline></switchinline>"
-msgstr "Per a seleccionar un objecte, feu clic a l'objecte amb la fletxa. Per a seleccionar més d'un objecte, arrossegueu un marc de selecció al voltant dels objectes. Per a afegir un objecte a la selecció, premeu <emph>Maj</emph> i, després, feu clic a l'objecte.<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline> Els objectes seleccionats conjuntament es poden definir com a <link href=\"text/shared/01/05290000.xhp\" name=\"grup\">grup</link> i es converteixen en un sol objecte de grup.</defaultinline></switchinline>"
+msgid "To select an object, click the object with the arrow. To select more than one object, drag a selection frame around the objects. To add an object to a selection, press <emph>Shift</emph>, and then click the object. <switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>The objects selected together can then be defined as a <link href=\"text/shared/01/05290000.xhp\">group</link>, turning them into a single group object.</defaultinline></switchinline>"
+msgstr "Per a seleccionar un objecte, feu clic a l'objecte amb la fletxa. Per a seleccionar més d'un objecte, arrossegueu un marc de selecció al voltant dels objectes. Per a afegir un objecte a la selecció, premeu <emph>Maj</emph> i, després, feu clic a l'objecte.<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline> Els objectes seleccionats conjuntament es poden definir com a <link href=\"text/shared/01/05290000.xhp\">grup</link> i es converteixen en un sol objecte de grup.</defaultinline></switchinline>"
#. cD6Eq
#: 18010000.xhp
@@ -17675,14 +17675,14 @@ msgctxt ""
msgid "Automatic Spell Checking On/Off"
msgstr ""
-#. 26pZF
+#. XqkxC
#: 18030000.xhp
msgctxt ""
"18030000.xhp\n"
"hd_id3155599\n"
"help.text"
-msgid "<link href=\"text/shared/02/18030000.xhp\" name=\"Automatic Spell Checking On/Off\">Automatic Spell Checking On/Off</link>"
-msgstr "<link href=\"text/shared/02/18030000.xhp\" name=\"Verificació ortogràfica automàtica activada/desactivada\">Verificació ortogràfica automàtica activada/desactivada</link>"
+msgid "<link href=\"text/shared/02/18030000.xhp\">Automatic Spell Checking On/Off</link>"
+msgstr "<link href=\"text/shared/02/18030000.xhp\">Verificació ortogràfica automàtica activada/desactivada</link>"
#. ECzCe
#: 18030000.xhp
@@ -17720,14 +17720,14 @@ msgctxt ""
msgid "<bookmark_value>HTML documents;source text</bookmark_value>"
msgstr "<bookmark_value>documents HTML;text font</bookmark_value>"
-#. yV2bc
+#. zDuTm
#: 19090000.xhp
msgctxt ""
"19090000.xhp\n"
"hd_id3154788\n"
"help.text"
-msgid "<link href=\"text/shared/02/19090000.xhp\" name=\"HTML Source\">HTML Source</link>"
-msgstr "<link href=\"text/shared/02/19090000.xhp\" name=\"Codi font HTML\">Codi font HTML</link>"
+msgid "<link href=\"text/shared/02/19090000.xhp\">HTML Source</link>"
+msgstr "<link href=\"text/shared/02/19090000.xhp\">Codi font HTML</link>"
#. HvXaF
#: 19090000.xhp
@@ -17738,13 +17738,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the source text of the current HTML document. This view is available when creating a new HTML document or opening an existing one.</ahelp>"
msgstr ""
-#. WfjCo
+#. iYFLF
#: 19090000.xhp
msgctxt ""
"19090000.xhp\n"
"par_id3149760\n"
"help.text"
-msgid "In <emph>HTML Source</emph> mode, you can view and edit the <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\">tags</link> of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>. Save the document as a plain text document. Assign an <emph>.html</emph> or <emph>.htm</emph> extension to designate the document as HTML."
+msgid "In <emph>HTML Source</emph> mode, you can view and edit the <link href=\"text/shared/00/00000002.xhp#tags\">tags</link> of <link href=\"text/shared/00/00000002.xhp#html\">HTML</link>. Save the document as a plain text document. Assign an <emph>.html</emph> or <emph>.htm</emph> extension to designate the document as HTML."
msgstr ""
#. gBWpE
@@ -17765,14 +17765,14 @@ msgctxt ""
msgid "<bookmark_value>page styles;editing/applying with statusbar</bookmark_value>"
msgstr "<bookmark_value>estils de pàgina;edició/aplicació amb la barra d'estat</bookmark_value>"
-#. TmGkK
+#. gJEKk
#: 20020000.xhp
msgctxt ""
"20020000.xhp\n"
"hd_id3083278\n"
"help.text"
-msgid "<link href=\"text/shared/02/20020000.xhp\" name=\"Current Page Style\">Current Page Style</link>"
-msgstr "<link href=\"text/shared/02/20020000.xhp\" name=\"Estil de la pàgina actual\">Estil de la pàgina actual</link>"
+msgid "<link href=\"text/shared/02/20020000.xhp\">Current Page Style</link>"
+msgstr "<link href=\"text/shared/02/20020000.xhp\">Estil de la pàgina actual</link>"
#. sBotS
#: 20020000.xhp
@@ -17783,40 +17783,40 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the current <emph>Page Style</emph>. Double-click to edit the style, right-click to select another style.</ahelp>"
msgstr ""
-#. AEALb
+#. aa2nF
#: 20020000.xhp
msgctxt ""
"20020000.xhp\n"
"par_id3149283\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Double-click the <emph>Page Style</emph> field to open the <link href=\"text/swriter/01/05040000.xhp\" name=\"Page Style\"><emph>Page Style</emph></link> dialog, in which you can edit the style for the current page. In the context menu of this field, you can apply a page style.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Double-click the <emph>Page Style</emph> field to open the <link href=\"text/swriter/01/05040000.xhp\"><emph>Page Style</emph></link> dialog, in which you can edit the style for the current page. In the context menu of this field, you can apply a page style.</caseinline></switchinline>"
msgstr ""
-#. 8YCRX
+#. qd75D
#: 20020000.xhp
msgctxt ""
"20020000.xhp\n"
"par_id3151234\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Double-click the <emph>Page Style</emph> field to open the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\"><emph>Page Style</emph></link> dialog, in which you can edit the style for the current page.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Double-click the <emph>Page Style</emph> field to open the <link href=\"text/scalc/01/05070000.xhp\"><emph>Page Style</emph></link> dialog, in which you can edit the style for the current page.</caseinline></switchinline>"
msgstr ""
-#. DJrnE
+#. vQxGC
#: 20020000.xhp
msgctxt ""
"20020000.xhp\n"
"par_id3149346\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Double-click this field to open the <link href=\"text/simpress/01/05120000.xhp\" name=\"Available Master Slides\"><emph>Available Master Slides</emph></link> dialog in which you can select the style for the current slide. You can select a different paper format or background.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Double-click this field to open the <link href=\"text/simpress/01/05120000.xhp\"><emph>Available Master Slides</emph></link> dialog in which you can select the style for the current slide. You can select a different paper format or background.</caseinline></switchinline>"
msgstr ""
-#. DLgbQ
+#. pxPbg
#: 20020000.xhp
msgctxt ""
"20020000.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Double-click this field to open the <link href=\"text/simpress/01/05120000.xhp\" name=\"Available Master Slides\"><emph>Available Master Slides</emph></link> dialog in which you select the style for the current page. You can select a different paper format or background.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Double-click this field to open the <link href=\"text/simpress/01/05120000.xhp\"><emph>Available Master Slides</emph></link> dialog in which you select the style for the current page. You can select a different paper format or background.</caseinline></switchinline>"
msgstr ""
#. AMiFU
@@ -17837,14 +17837,14 @@ msgctxt ""
msgid "<bookmark_value>zooming; status bar</bookmark_value>"
msgstr "<bookmark_value>escala; barra d'estat</bookmark_value>"
-#. aSdXr
+#. DAbch
#: 20030000.xhp
msgctxt ""
"20030000.xhp\n"
"hd_id3155619\n"
"help.text"
-msgid "<link href=\"text/shared/02/20030000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/02/20030000.xhp\" name=\"Escala\">Escala</link>"
+msgid "<link href=\"text/shared/02/20030000.xhp\">Zoom</link>"
+msgstr "<link href=\"text/shared/02/20030000.xhp\">Escala</link>"
#. Jv3Ay
#: 20030000.xhp
@@ -17855,13 +17855,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:StateZoom\">Specifies the current page display zoom factor.</ahelp>"
msgstr "<ahelp hid=\".uno:StateZoom\">Indica el factor d'escala de la visualització actual de la pàgina.</ahelp>"
-#. cCAHu
+#. dfT2m
#: 20030000.xhp
msgctxt ""
"20030000.xhp\n"
"par_id3150935\n"
"help.text"
-msgid "Click this field to open the <link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\"><emph>Zoom</emph></link> dialog, where you can change the current zoom factor."
+msgid "Click this field to open the <link href=\"text/shared/01/03010000.xhp\"><emph>Zoom</emph></link> dialog, where you can change the current zoom factor."
msgstr ""
#. fyWyi
@@ -17882,14 +17882,14 @@ msgctxt ""
msgid "Insert Mode"
msgstr "Mode d'inserció"
-#. AJ69j
+#. KVot3
#: 20040000.xhp
msgctxt ""
"20040000.xhp\n"
"hd_id3149748\n"
"help.text"
-msgid "<link href=\"text/shared/02/20040000.xhp\" name=\"Insert Mode\">Insert Mode</link>"
-msgstr "<link href=\"text/shared/02/20040000.xhp\" name=\"Mode d'inserció\">Mode d'inserció</link>"
+msgid "<link href=\"text/shared/02/20040000.xhp\">Insert Mode</link>"
+msgstr "<link href=\"text/shared/02/20040000.xhp\">Mode d'inserció</link>"
#. EonG9
#: 20040000.xhp
@@ -17981,14 +17981,14 @@ msgctxt ""
msgid "<bookmark_value>selection modes in text</bookmark_value> <bookmark_value>text; selection modes</bookmark_value> <bookmark_value>extending selection mode</bookmark_value> <bookmark_value>adding selection mode</bookmark_value> <bookmark_value>block selection mode</bookmark_value>"
msgstr ""
-#. ntcAk
+#. dmHBv
#: 20050000.xhp
msgctxt ""
"20050000.xhp\n"
"hd_id3148668\n"
"help.text"
-msgid "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection Mode\">Selection Mode</link>"
-msgstr "<link href=\"text/shared/02/20050000.xhp\" name=\"Mode de selecció\">Mode de selecció</link>"
+msgid "<link href=\"text/shared/02/20050000.xhp\">Selection Mode</link>"
+msgstr "<link href=\"text/shared/02/20050000.xhp\">Mode de selecció</link>"
#. jwKSR
#: 20050000.xhp
@@ -18134,14 +18134,14 @@ msgctxt ""
msgid "Document Modification"
msgstr "Modificació del document"
-#. tYEgf
+#. hoTXH
#: 20060000.xhp
msgctxt ""
"20060000.xhp\n"
"hd_id3147477\n"
"help.text"
-msgid "<link href=\"text/shared/02/20060000.xhp\" name=\"Document Modification\">Document Modification</link>"
-msgstr "<link href=\"text/shared/02/20060000.xhp\" name=\"Modificació del document\">Modificació del document</link>"
+msgid "<link href=\"text/shared/02/20060000.xhp\">Document Modification</link>"
+msgstr "<link href=\"text/shared/02/20060000.xhp\">Modificació del document</link>"
#. umVEB
#: 20060000.xhp
@@ -18161,14 +18161,14 @@ msgctxt ""
msgid "Time"
msgstr "Hora"
-#. K3BxE
+#. RXh7s
#: 20090000.xhp
msgctxt ""
"20090000.xhp\n"
"hd_id3152823\n"
"help.text"
-msgid "<link href=\"text/shared/02/20090000.xhp\" name=\"Time\">Time</link>"
-msgstr "<link href=\"text/shared/02/20090000.xhp\" name=\"Hora\">Hora</link>"
+msgid "<link href=\"text/shared/02/20090000.xhp\">Time</link>"
+msgstr "<link href=\"text/shared/02/20090000.xhp\">Hora</link>"
#. rCU4f
#: 20090000.xhp
@@ -18188,14 +18188,14 @@ msgctxt ""
msgid "Date"
msgstr "Data"
-#. uwGd5
+#. YDVCi
#: 20100000.xhp
msgctxt ""
"20100000.xhp\n"
"hd_id3146902\n"
"help.text"
-msgid "<link href=\"text/shared/02/20100000.xhp\" name=\"Date\">Date</link>"
-msgstr "<link href=\"text/shared/02/20100000.xhp\" name=\"Data\">Data</link>"
+msgid "<link href=\"text/shared/02/20100000.xhp\">Date</link>"
+msgstr "<link href=\"text/shared/02/20100000.xhp\">Data</link>"
#. fApm7
#: 20100000.xhp
@@ -18215,13 +18215,13 @@ msgctxt ""
msgid "Image Filter Bar"
msgstr ""
-#. NkK8H
+#. xGSYg
#: 24010000.xhp
msgctxt ""
"24010000.xhp\n"
"hd_id3151299\n"
"help.text"
-msgid "<link href=\"text/shared/02/24010000.xhp\" name=\"Image Filter Bar\">Image Filter Bar</link>"
+msgid "<link href=\"text/shared/02/24010000.xhp\">Image Filter Bar</link>"
msgstr ""
#. 9C63P
@@ -18836,14 +18836,14 @@ msgctxt ""
msgid "Graphics Mode"
msgstr "Mode gràfic"
-#. SNB3q
+#. XFv9H
#: 24020000.xhp
msgctxt ""
"24020000.xhp\n"
"hd_id3149762\n"
"help.text"
-msgid "<link href=\"text/shared/02/24020000.xhp\" name=\"Graphics Mode\">Graphics Mode</link>"
-msgstr "<link href=\"text/shared/02/24020000.xhp\" name=\"Mode gràfic\">Mode gràfic</link>"
+msgid "<link href=\"text/shared/02/24020000.xhp\">Graphics Mode</link>"
+msgstr "<link href=\"text/shared/02/24020000.xhp\">Mode gràfic</link>"
#. oiCiN
#: 24020000.xhp
@@ -18953,14 +18953,14 @@ msgctxt ""
msgid "Red"
msgstr "Roig"
-#. ZuyJk
+#. StpuV
#: 24030000.xhp
msgctxt ""
"24030000.xhp\n"
"hd_id3151097\n"
"help.text"
-msgid "<link href=\"text/shared/02/24030000.xhp\" name=\"Red\">Red</link>"
-msgstr "<link href=\"text/shared/02/24030000.xhp\" name=\"Roig\">Roig</link>"
+msgid "<link href=\"text/shared/02/24030000.xhp\">Red</link>"
+msgstr "<link href=\"text/shared/02/24030000.xhp\">Roig</link>"
#. DFUxs
#: 24030000.xhp
@@ -18998,14 +18998,14 @@ msgctxt ""
msgid "Green"
msgstr "Verd"
-#. DtRbz
+#. DfRDF
#: 24040000.xhp
msgctxt ""
"24040000.xhp\n"
"hd_id3154840\n"
"help.text"
-msgid "<link href=\"text/shared/02/24040000.xhp\" name=\"Green\">Green</link>"
-msgstr "<link href=\"text/shared/02/24040000.xhp\" name=\"Verd\">Verd</link>"
+msgid "<link href=\"text/shared/02/24040000.xhp\">Green</link>"
+msgstr "<link href=\"text/shared/02/24040000.xhp\">Verd</link>"
#. JBGCC
#: 24040000.xhp
@@ -19043,14 +19043,14 @@ msgctxt ""
msgid "Blue"
msgstr "Blau"
-#. dYinP
+#. QoyFw
#: 24050000.xhp
msgctxt ""
"24050000.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/02/24050000.xhp\" name=\"Blue\">Blue</link>"
-msgstr "<link href=\"text/shared/02/24050000.xhp\" name=\"Blau\">Blau</link>"
+msgid "<link href=\"text/shared/02/24050000.xhp\">Blue</link>"
+msgstr "<link href=\"text/shared/02/24050000.xhp\">Blau</link>"
#. o4cny
#: 24050000.xhp
@@ -19088,14 +19088,14 @@ msgctxt ""
msgid "Brightness"
msgstr "Brillantor"
-#. DcqKS
+#. KcERA
#: 24060000.xhp
msgctxt ""
"24060000.xhp\n"
"hd_id3153514\n"
"help.text"
-msgid "<link href=\"text/shared/02/24060000.xhp\" name=\"Brightness\">Brightness</link>"
-msgstr "<link href=\"text/shared/02/24060000.xhp\" name=\"Brillantor\">Brillantor</link>"
+msgid "<link href=\"text/shared/02/24060000.xhp\">Brightness</link>"
+msgstr "<link href=\"text/shared/02/24060000.xhp\">Brillantor</link>"
#. bTBFs
#: 24060000.xhp
@@ -19133,14 +19133,14 @@ msgctxt ""
msgid "Contrast"
msgstr "Contrast"
-#. 5F2mt
+#. 252df
#: 24070000.xhp
msgctxt ""
"24070000.xhp\n"
"hd_id3154926\n"
"help.text"
-msgid "<link href=\"text/shared/02/24070000.xhp\" name=\"Contrast\">Contrast</link>"
-msgstr "<link href=\"text/shared/02/24070000.xhp\" name=\"Contrast\">Contrast</link>"
+msgid "<link href=\"text/shared/02/24070000.xhp\">Contrast</link>"
+msgstr "<link href=\"text/shared/02/24070000.xhp\">Contrast</link>"
#. NkEFQ
#: 24070000.xhp
@@ -19178,14 +19178,14 @@ msgctxt ""
msgid "Gamma"
msgstr "Gamma"
-#. yNPMK
+#. QE57Z
#: 24080000.xhp
msgctxt ""
"24080000.xhp\n"
"hd_id3154100\n"
"help.text"
-msgid "<link href=\"text/shared/02/24080000.xhp\" name=\"Gamma\">Gamma</link>"
-msgstr "<link href=\"text/shared/02/24080000.xhp\" name=\"Gamma\">Gamma</link>"
+msgid "<link href=\"text/shared/02/24080000.xhp\">Gamma</link>"
+msgstr "<link href=\"text/shared/02/24080000.xhp\">Gamma</link>"
#. WENKb
#: 24080000.xhp
@@ -19223,14 +19223,14 @@ msgctxt ""
msgid "Transparency"
msgstr "Transparència"
-#. sa8yC
+#. 9e3Ym
#: 24090000.xhp
msgctxt ""
"24090000.xhp\n"
"hd_id3159411\n"
"help.text"
-msgid "<link href=\"text/shared/02/24090000.xhp\" name=\"Transparency\">Transparency</link>"
-msgstr "<link href=\"text/shared/02/24090000.xhp\" name=\"Transparència\">Transparència</link>"
+msgid "<link href=\"text/shared/02/24090000.xhp\">Transparency</link>"
+msgstr "<link href=\"text/shared/02/24090000.xhp\">Transparència</link>"
#. 6qnFJ
#: 24090000.xhp
@@ -19268,14 +19268,14 @@ msgctxt ""
msgid "Crop"
msgstr "Escapça"
-#. pFgr4
+#. K4TvH
#: 24100000.xhp
msgctxt ""
"24100000.xhp\n"
"hd_id3154044\n"
"help.text"
-msgid "<link href=\"text/shared/02/24100000.xhp\" name=\"Crop\">Crop</link>"
-msgstr "<link href=\"text/shared/02/24100000.xhp\" name=\"Escapça\">Escapça</link>"
+msgid "<link href=\"text/shared/02/24100000.xhp\">Crop</link>"
+msgstr "<link href=\"text/shared/02/24100000.xhp\">Escapça</link>"
#. uWVYZ
#: 24100000.xhp
@@ -19619,13 +19619,13 @@ msgctxt ""
msgid "Limit"
msgstr "Límit"
-#. SWTG4
+#. sUGfE
#: limit.xhp
msgctxt ""
"limit.xhp\n"
"par_id3154894\n"
"help.text"
-msgid "<ahelp hid=\".\">Expands the created select statement of the <link href=\"text/sdatabase/02010100.xhp\" name=\"SQL Query\">SQL Query</link> by the LIMIT X clause</ahelp>. This can be used to limit your SQL Query results to those that fall within the first X number of it."
+msgid "<ahelp hid=\".\">Expands the created select statement of the <link href=\"text/sdatabase/02010100.xhp\">SQL Query</link> by the LIMIT X clause</ahelp>. This can be used to limit your SQL Query results to those that fall within the first X number of it."
msgstr ""
#. bbAX7
@@ -19637,13 +19637,13 @@ msgctxt ""
msgid "Enter Name"
msgstr ""
-#. pymwL
+#. EnA4q
#: namedialog.xhp
msgctxt ""
"namedialog.xhp\n"
"hd_id581597430248366\n"
"help.text"
-msgid "<variable id=\"namedialogh1\"><link href=\"text/shared/02/namedialog.xhp\" name=\"Name\">Enter Name Dialog</link></variable>"
+msgid "<variable id=\"namedialogh1\"><link href=\"text/shared/02/namedialog.xhp\">Enter Name Dialog</link></variable>"
msgstr ""
#. edfxG
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/04.po b/source/ca-valencia/helpcontent2/source/text/shared/04.po
index 088531adb79..eb50dbb4d97 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/04.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared04/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>keyboard; general commands</bookmark_value><bookmark_value>shortcut keys; general</bookmark_value><bookmark_value>text input fields</bookmark_value><bookmark_value>AutoComplete function in text and list boxes</bookmark_value><bookmark_value>macros; interrupting</bookmark_value><bookmark_value>Unicode; input with keyboard</bookmark_value><bookmark_value>Unicode; shortcut keys</bookmark_value><bookmark_value>shortcut keys; Unicode</bookmark_value>"
msgstr "<bookmark_value>teclat; ordres generals</bookmark_value><bookmark_value>dreceres de teclat; general</bookmark_value><bookmark_value>camps d'entrada de text</bookmark_value><bookmark_value>funció d'autocompletar en quadres de text i llistes</bookmark_value><bookmark_value>macros; interrupció</bookmark_value><bookmark_value>Unicode; introducció amb teclat</bookmark_value><bookmark_value>Unicode; dreceres de teclats</bookmark_value><bookmark_value>dreceres de teclat; Unicode</bookmark_value>"
-#. snVCa
+#. GNwmD
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"hd_id3149991\n"
"help.text"
-msgid "<variable id=\"common_keys\"><link href=\"text/shared/04/01010000.xhp\" name=\"General Shortcut Keys in $[officename]\">General Shortcut Keys in $[officename]</link></variable>"
-msgstr "<variable id=\"common_keys\"><link href=\"text/shared/04/01010000.xhp\" name=\"Tecles de drecera generals del $[officename]\">Tecles de drecera generals del $[officename]</link></variable>"
+msgid "<variable id=\"common_keys\"><link href=\"text/shared/04/01010000.xhp\">General Shortcut Keys in $[officename]</link></variable>"
+msgstr "<variable id=\"common_keys\"><link href=\"text/shared/04/01010000.xhp\">Tecles de drecera generals del $[officename]</link></variable>"
#. 89AtX
#: 01010000.xhp
@@ -2339,14 +2339,14 @@ msgctxt ""
msgid "<bookmark_value>shortcut keys; in databases</bookmark_value><bookmark_value>databases; shortcut keys</bookmark_value>"
msgstr "<bookmark_value>tecles de drecera; en bases de dades</bookmark_value><bookmark_value>bases de dades; tecles de drecera</bookmark_value>"
-#. b99D3
+#. wptBK
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3149809\n"
"help.text"
-msgid "<variable id=\"DB_keys\"><link href=\"text/shared/04/01020000.xhp\" name=\"Database Shortcut Keys\">Database Shortcut Keys</link></variable>"
-msgstr "<variable id=\"DB_keys\"><link href=\"text/shared/04/01020000.xhp\" name=\"Tecles de drecera de bases de dades\">Tecles de drecera de bases de dades</link></variable>"
+msgid "<variable id=\"DB_keys\"><link href=\"text/shared/04/01020000.xhp\">Database Shortcut Keys</link></variable>"
+msgstr "<variable id=\"DB_keys\"><link href=\"text/shared/04/01020000.xhp\">Tecles de drecera de bases de dades</link></variable>"
#. XtS9J
#: 01020000.xhp
@@ -2357,14 +2357,14 @@ msgctxt ""
msgid "The following is a list of shortcut keys available within databases."
msgstr "La següent és una llista de tecles de drecera disponibles dins les bases de dades."
-#. KdAHW
+#. iEkyY
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3147350\n"
"help.text"
-msgid "The general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys in $[officename]\">shortcut keys in $[officename]</link> also apply."
-msgstr "Les <link href=\"text/shared/04/01010000.xhp\" name=\"dreceres generals del $[officename]\"> dreceres generals del $[officename]</link> també s'apliquen."
+msgid "The general <link href=\"text/shared/04/01010000.xhp\">shortcut keys in $[officename]</link> also apply."
+msgstr "Les <link href=\"text/shared/04/01010000.xhp\"> dreceres generals del $[officename]</link> també s'apliquen."
#. xVHCv
#: 01020000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/05.po b/source/ca-valencia/helpcontent2/source/text/shared/05.po
index 8b02a4670c5..897ee5aba72 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/05.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-10-10 13:36+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared05/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>support on the Web</bookmark_value><bookmark_value>getting support</bookmark_value><bookmark_value>forums and support</bookmark_value><bookmark_value>Web support</bookmark_value>"
msgstr "<bookmark_value>assistència tècnica a Internet</bookmark_value><bookmark_value>assistència tècnica</bookmark_value><bookmark_value>fòrums i assistència tècnica</bookmark_value><bookmark_value>assistència web</bookmark_value>"
-#. VDxRq
+#. JRABa
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"hd_id3146873\n"
"help.text"
-msgid "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\" name=\"Getting Support\">Getting Support</link></variable>"
-msgstr "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\" name=\"'Assistència tècnica\">Assistència tècnica</link></variable>"
+msgid "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\">Getting Support</link></variable>"
+msgstr "<variable id=\"00000001\"><link href=\"text/shared/05/00000001.xhp\">Assistència tècnica</link></variable>"
#. wR4ns
#: 00000001.xhp
@@ -206,14 +206,14 @@ msgctxt ""
msgid "Icons in the Documentation"
msgstr "Icones a la documentació"
-#. i93CU
+#. zBUqw
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"hd_id3153116\n"
"help.text"
-msgid "<link href=\"text/shared/05/00000002.xhp\" name=\"Icons in the Documentation\">Icons in the Documentation</link>"
-msgstr "<link href=\"text/shared/05/00000002.xhp\" name=\"Icones a la documentació\">Icones a la documentació</link>"
+msgid "<link href=\"text/shared/05/00000002.xhp\">Icons in the Documentation</link>"
+msgstr "<link href=\"text/shared/05/00000002.xhp\">Icones a la documentació</link>"
#. BF6HG
#: 00000002.xhp
@@ -269,14 +269,14 @@ msgctxt ""
msgid "The Help references the default settings of the program on a system that is set to defaults. Descriptions of colors, mouse actions, or other configurable items can be different for your program and system."
msgstr "L'ajuda fa referència a la configuració per defecte del programa en un sistema configurat amb els paràmetres per defecte. Les descripcions dels colors, les accions del ratolí o altres elements configurables poden ser diferents al vostre programa i sistema."
-#. XnEMC
+#. dVdcf
#: 00000100.xhp
msgctxt ""
"00000100.xhp\n"
"par_id3150618\n"
"help.text"
-msgid "The <emph>$[officename] Help system</emph> provides easy access to information and support. There are several ways to find what you are looking for in the <link href=\"text/shared/05/00000110.xhp\" name=\"Help environment\"><emph>Help environment</emph></link>: You can search for a specific keyword in the <link href=\"text/shared/05/00000130.xhp\" name=\"Index\"><emph>Index</emph></link>, carry out a full-text search under <link href=\"text/shared/05/00000140.xhp\" name=\"Find\"><emph>Find</emph></link>, or look through a hierarchical list of the <link href=\"text/shared/05/00000160.xhp\" name=\"Topics\"><emph>Topics</emph></link>."
-msgstr "El <emph>sistema d'ajuda del $[officename]</emph> proporciona un accés fàcil a la informació i l'assistència. Hi ha diverses maneres de trobar el que cerqueu a l'<link href=\"text/shared/05/00000110.xhp\" name=\"entorn d'ajuda\"><emph>entorn d'ajuda</emph></link>: podeu cercar paraules clau específiques a l'<link href=\"text/shared/05/00000130.xhp\" name=\"Índex\"><emph>Índex</emph></link>, fer cerques a tot el text a <link href=\"text/shared/05/00000140.xhp\" name=\"Cerca\"><emph>Cerca</emph></link> o utilitzar una llista jeràrquica dels <link href=\"text/shared/05/00000160.xhp\" name=\"Temes\"><emph>Temes</emph></link>."
+msgid "The <emph>$[officename] Help system</emph> provides easy access to information and support. There are several ways to find what you are looking for in the <link href=\"text/shared/05/00000110.xhp\"><emph>Help environment</emph></link>: You can search for a specific keyword in the <link href=\"text/shared/05/00000130.xhp\"><emph>Index</emph></link>, carry out a full-text search under <link href=\"text/shared/05/00000140.xhp\"><emph>Find</emph></link>, or look through a hierarchical list of the <link href=\"text/shared/05/00000160.xhp\"><emph>Topics</emph></link>."
+msgstr "El <emph>sistema d'ajuda del $[officename]</emph> proporciona un accés fàcil a la informació i l'assistència. Hi ha diverses maneres de trobar el que cerqueu a l'<link href=\"text/shared/05/00000110.xhp\"><emph>entorn d'ajuda</emph></link>: podeu cercar paraules clau específiques a l'<link href=\"text/shared/05/00000130.xhp\"><emph>Índex</emph></link>, fer cerques a tot el text a <link href=\"text/shared/05/00000140.xhp\"><emph>Cerca</emph></link> o utilitzar una llista jeràrquica dels <link href=\"text/shared/05/00000160.xhp\"><emph>Temes</emph></link>."
#. EGUSS
#: 00000110.xhp
@@ -287,14 +287,14 @@ msgctxt ""
msgid "The %PRODUCTNAME Help Window"
msgstr "La finestra d'ajuda del %PRODUCTNAME"
-#. Bqs7U
+#. 79jBC
#: 00000110.xhp
msgctxt ""
"00000110.xhp\n"
"hd_id3153884\n"
"help.text"
-msgid "<variable id=\"00000110\"><link href=\"text/shared/05/00000110.xhp\" name=\"The %PRODUCTNAME Help Window\">The <item type=\"productname\">%PRODUCTNAME</item> Help Window</link></variable>"
-msgstr "<variable id=\"00000110\"><link href=\"text/shared/05/00000110.xhp\" name=\"La finestra d'ajuda del %PRODUCTNAME\">La finestra d'ajuda del <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
+msgid "<variable id=\"00000110\"><link href=\"text/shared/05/00000110.xhp\">The <item type=\"productname\">%PRODUCTNAME</item> Help Window</link></variable>"
+msgstr "<variable id=\"00000110\"><link href=\"text/shared/05/00000110.xhp\">La finestra d'ajuda del <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
#. 5jyC7
#: 00000110.xhp
@@ -647,14 +647,14 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/helpcontrol/active\">The list box located at the very top is where you can select other <item type=\"productname\">%PRODUCTNAME</item> Help modules.</ahelp> The <emph>Index</emph> and <emph>Find</emph> tab pages only contain the data for the selected <item type=\"productname\">%PRODUCTNAME</item> module."
msgstr "<ahelp hid=\"sfx/ui/helpcontrol/active\">Al quadre de llista ubicat a la part superior podeu seleccionar altres mòduls d'ajuda del <item type=\"productname\">%PRODUCTNAME</item>.</ahelp> Les pestanyes <emph>Índex</emph> i <emph>Busca</emph> només contenen les dades per al mòdul del <item type=\"productname\">%PRODUCTNAME</item> seleccionat."
-#. 8ExDE
+#. mxK3r
#: 00000110.xhp
msgctxt ""
"00000110.xhp\n"
"par_id3149983\n"
"help.text"
-msgid "<link href=\"text/shared/05/00000160.xhp\" name=\"Contents\">Contents</link>"
-msgstr "<link href=\"text/shared/05/00000160.xhp\" name=\"Contents\">Contingut</link>"
+msgid "<link href=\"text/shared/05/00000160.xhp\">Contents</link>"
+msgstr "<link href=\"text/shared/05/00000160.xhp\">Contingut</link>"
#. mDkhN
#: 00000110.xhp
@@ -665,14 +665,14 @@ msgctxt ""
msgid "Displays an index of the main topics of all modules."
msgstr "Mostra un índex dels temes principals de tots els mòduls."
-#. FBsLd
+#. Wh34C
#: 00000110.xhp
msgctxt ""
"00000110.xhp\n"
"par_id3155366\n"
"help.text"
-msgid "<link href=\"text/shared/05/00000130.xhp\" name=\"Index\">Index</link>"
-msgstr "<link href=\"text/shared/05/00000130.xhp\" name=\"Índex\">Índex</link>"
+msgid "<link href=\"text/shared/05/00000130.xhp\">Index</link>"
+msgstr "<link href=\"text/shared/05/00000130.xhp\">Índex</link>"
#. xsWx8
#: 00000110.xhp
@@ -683,14 +683,14 @@ msgctxt ""
msgid "Displays a list of index keywords for the currently selected %PRODUCTNAME module."
msgstr "Mostra una llista de paraules clau indexades per al mòdul del %PRODUCTNAME seleccionat actualment."
-#. sEDFA
+#. ihDdx
#: 00000110.xhp
msgctxt ""
"00000110.xhp\n"
"par_id3149260\n"
"help.text"
-msgid "<link href=\"text/shared/05/00000140.xhp\" name=\"Find\">Find</link>"
-msgstr "<link href=\"text/shared/05/00000140.xhp\" name=\"Find\">Busca</link>"
+msgid "<link href=\"text/shared/05/00000140.xhp\">Find</link>"
+msgstr "<link href=\"text/shared/05/00000140.xhp\">Busca</link>"
#. sb2MP
#: 00000110.xhp
@@ -701,14 +701,14 @@ msgctxt ""
msgid "Allows you to carry out a full-text search. The search will include the entire Help contents of the currently selected <item type=\"productname\">%PRODUCTNAME</item> module."
msgstr "Vos permet fer una busca a tot el text. La busca inclourà tots els continguts de l'ajuda del mòdul del <item type=\"productname\">%PRODUCTNAME</item> actual."
-#. GaiEd
+#. NQRts
#: 00000110.xhp
msgctxt ""
"00000110.xhp\n"
"par_id3154985\n"
"help.text"
-msgid "<link href=\"text/shared/05/00000150.xhp\" name=\"Bookmarks\">Bookmarks</link>"
-msgstr "<link href=\"text/shared/05/00000150.xhp\" name=\"Adreces d'interés\">Adreces d'interés</link>"
+msgid "<link href=\"text/shared/05/00000150.xhp\">Bookmarks</link>"
+msgstr "<link href=\"text/shared/05/00000150.xhp\">Adreces d'interés</link>"
#. AypHA
#: 00000110.xhp
@@ -737,14 +737,14 @@ msgctxt ""
msgid "<bookmark_value>Help; Help tips</bookmark_value><bookmark_value>tooltips; help</bookmark_value>"
msgstr "<bookmark_value>Ajuda; Consells d'ajuda</bookmark_value><bookmark_value>consells d'ajuda; ajuda</bookmark_value>"
-#. gFk32
+#. iE7DY
#: 00000120.xhp
msgctxt ""
"00000120.xhp\n"
"hd_id3155599\n"
"help.text"
-msgid "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\" name=\"Tips and Extended Tips\">Tips and Extended Tips</link></variable>"
-msgstr "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\" name=\"Consell i consells ampliats\">Consells i consells ampliats</link></variable>"
+msgid "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\">Tips and Extended Tips</link></variable>"
+msgstr "<variable id=\"00000120\"><link href=\"text/shared/05/00000120.xhp\">Consells i consells ampliats</link></variable>"
#. UWpFA
#: 00000120.xhp
@@ -836,14 +836,14 @@ msgctxt ""
msgid "<bookmark_value>Index tab in Help</bookmark_value><bookmark_value>Help; keywords</bookmark_value>"
msgstr "<bookmark_value>pestanya Índex a l'Ajuda</bookmark_value><bookmark_value>Ajuda; paraules clau</bookmark_value>"
-#. BnEQz
+#. vEi93
#: 00000130.xhp
msgctxt ""
"00000130.xhp\n"
"hd_id3153884\n"
"help.text"
-msgid "<variable id=\"00000130\"><link href=\"text/shared/05/00000130.xhp\" name=\"Index - Keyword Search in the Help\">Index - Keyword Search in the Help</link></variable>"
-msgstr "<variable id=\"00000130\"><link href=\"text/shared/05/00000130.xhp\" name=\"Índex - Busca de paraules clau a l'Ajuda\">Índex - Busca de paraules clau a l'Ajuda</link></variable>"
+msgid "<variable id=\"00000130\"><link href=\"text/shared/05/00000130.xhp\">Index - Keyword Search in the Help</link></variable>"
+msgstr "<variable id=\"00000130\"><link href=\"text/shared/05/00000130.xhp\">Índex - Busca de paraules clau a l'Ajuda</link></variable>"
#. vmDfR
#: 00000130.xhp
@@ -908,14 +908,14 @@ msgctxt ""
msgid "<bookmark_value>Find tab in Help</bookmark_value><bookmark_value>Help; full-text search</bookmark_value><bookmark_value>full-text search in Help</bookmark_value>"
msgstr "<bookmark_value>pestanya de busca de l'Ajuda</bookmark_value><bookmark_value>Ajuda; busca a tot el text</bookmark_value><bookmark_value>busca a tot el text a l'Ajuda</bookmark_value>"
-#. QaAvG
+#. x3TUv
#: 00000140.xhp
msgctxt ""
"00000140.xhp\n"
"hd_id3148523\n"
"help.text"
-msgid "<variable id=\"00000140\"><link href=\"text/shared/05/00000140.xhp\" name=\"Find - The Full-Text Search\">Find - The Full-Text Search</link></variable>"
-msgstr "<variable id=\"00000140\"><link href=\"text/shared/05/00000140.xhp\" name=\"Busca - Busca a tot el text\">Busca - Busca a tot el text</link></variable>"
+msgid "<variable id=\"00000140\"><link href=\"text/shared/05/00000140.xhp\">Find - The Full-Text Search</link></variable>"
+msgstr "<variable id=\"00000140\"><link href=\"text/shared/05/00000140.xhp\">Busca - Busca a tot el text</link></variable>"
#. U7EA6
#: 00000140.xhp
@@ -1052,14 +1052,14 @@ msgctxt ""
msgid "<bookmark_value>Help; bookmarks</bookmark_value><bookmark_value>bookmarks; Help</bookmark_value>"
msgstr "<bookmark_value>Ajuda; adreces d'interés</bookmark_value><bookmark_value>adreces d'interés; Ajuda</bookmark_value>"
-#. Gz2qm
+#. jcs4K
#: 00000150.xhp
msgctxt ""
"00000150.xhp\n"
"hd_id3154349\n"
"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/shared/05/00000150.xhp\" name=\"Managing Bookmarks\">Managing Bookmarks</link></variable>"
-msgstr "<variable id=\"doc_title\"><link href=\"text/shared/05/00000150.xhp\" name=\"Gestió de les adreces d'interés\">Gestió de les adreces d'interés</link></variable>"
+msgid "<variable id=\"doc_title\"><link href=\"text/shared/05/00000150.xhp\">Managing Bookmarks</link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/shared/05/00000150.xhp\">Gestió de les adreces d'interés</link></variable>"
#. 4k7H2
#: 00000150.xhp
@@ -1169,14 +1169,14 @@ msgctxt ""
msgid "<bookmark_value>Help; topics</bookmark_value><bookmark_value>tree view of Help</bookmark_value>"
msgstr "<bookmark_value>Ajuda; temes</bookmark_value><bookmark_value>vista d'arbre de l'Ajuda</bookmark_value>"
-#. DYuaB
+#. u95Wi
#: 00000160.xhp
msgctxt ""
"00000160.xhp\n"
"hd_id3146856\n"
"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/shared/05/00000160.xhp\" name=\"Contents - The Main Help Topics\">Contents - The Main Help Topics</link></variable>"
-msgstr "<variable id=\"doc_title\"><link href=\"text/shared/05/00000160.xhp\" name=\"Contingut - Els temes d'ajuda principals\">Contingut - Els temes d'ajuda principals</link></variable>"
+msgid "<variable id=\"doc_title\"><link href=\"text/shared/05/00000160.xhp\">Contents - The Main Help Topics</link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/shared/05/00000160.xhp\">Contingut - Els temes d'ajuda principals</link></variable>"
#. 82jUN
#: 00000160.xhp
@@ -1340,14 +1340,14 @@ msgctxt ""
msgid "<bookmark_value>%PRODUCTNAME Help</bookmark_value> <bookmark_value>Help pages;Index</bookmark_value> <bookmark_value>Help pages;search in index</bookmark_value> <bookmark_value>search;Help index</bookmark_value> <bookmark_value>Help pages;contents</bookmark_value>"
msgstr ""
-#. Gh7oo
+#. TwTxY
#: new_help.xhp
msgctxt ""
"new_help.xhp\n"
"hd_id3153884\n"
"help.text"
-msgid "<variable id=\"newhlp\"><link href=\"text/shared/05/new_help.xhp\" name=\"The %PRODUCTNAME Help Window\">The %PRODUCTNAME Help</link></variable>"
-msgstr "<variable id=\"newhlp\"><link href=\"text/shared/05/new_help.xhp\" name=\"The %PRODUCTNAME Help Window\">L'ajuda del %PRODUCTNAME</link></variable>"
+msgid "<variable id=\"newhlp\"><link href=\"text/shared/05/new_help.xhp\">The %PRODUCTNAME Help</link></variable>"
+msgstr "<variable id=\"newhlp\"><link href=\"text/shared/05/new_help.xhp\">L'ajuda del %PRODUCTNAME</link></variable>"
#. 73Gwo
#: new_help.xhp
@@ -1376,13 +1376,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:HelpOnHelp\" visibility=\"hidden\">Provides an overview of the Help system.</ahelp>"
msgstr "<ahelp hid=\".uno:HelpOnHelp\" visibility=\"hidden\">Proporciona una visió general del sistema d'Ajuda.</ahelp>"
-#. oAGqv
+#. RrKY2
#: new_help.xhp
msgctxt ""
"new_help.xhp\n"
"par_id341534965962279\n"
"help.text"
-msgid "Help pages of %PRODUCTNAME Extensions still use the old Help system. The old Help system help pages <link href=\"text/shared/05/00000110.xhp\" name=\"oldhelp\">are available from here</link>."
+msgid "Help pages of %PRODUCTNAME Extensions still use the old Help system. The old Help system help pages <link href=\"text/shared/05/00000110.xhp\">are available from here</link>."
msgstr ""
#. HFYrD
@@ -1430,14 +1430,14 @@ msgctxt ""
msgid "Available only in the online version, select the language to display the current help page."
msgstr "Només disponible en la versió en línia, seleccioneu la llengua a mostrar la pàgina d'ajuda actual."
-#. MA9xD
+#. xL9E7
#: new_help.xhp
msgctxt ""
"new_help.xhp\n"
"hd_id821534891267696\n"
"help.text"
-msgid "<variable id=\"hlpindx01\"><link href=\"text/shared/05/new_help.xhp#helpindx\" name=\"The Help Index\">The Help Index</link></variable>"
-msgstr "<variable id=\"hlpindx01\"><link href=\"text/shared/05/new_help.xhp#helpindx\" name=\"L'índex de l'ajuda\">L'índex de l'ajuda</link></variable>"
+msgid "<variable id=\"hlpindx01\"><link href=\"text/shared/05/new_help.xhp#helpindx\">The Help Index</link></variable>"
+msgstr "<variable id=\"hlpindx01\"><link href=\"text/shared/05/new_help.xhp#helpindx\">L'índex de l'ajuda</link></variable>"
#. CAQ9K
#: new_help.xhp
@@ -1493,14 +1493,14 @@ msgctxt ""
msgid "Use the arrow icons on the bottom of the Index to scroll forward or backward the Index entries or filtered result list."
msgstr "Useu les icones de fletxa de la part inferior de l'índex per a desplaçar-vos avant i arrere entre les entrades de l'índex o de la llista de resultats filtrats."
-#. SzL87
+#. KbQfN
#: new_help.xhp
msgctxt ""
"new_help.xhp\n"
"hd_id901534891620807\n"
"help.text"
-msgid "<variable id=\"hlpcnts01\"><link href=\"text/shared/05/new_help.xhp#hlpcnts\" name=\"Contents - The Main Help Topics\">Contents - The Main Help Topics</link></variable>"
-msgstr "<variable id=\"hlpcnts01\"><link href=\"text/shared/05/new_help.xhp#hlpcnts\" name=\"Contents - The Main Help Topics\">Contingut - Els temes d'ajuda principals</link></variable>"
+msgid "<variable id=\"hlpcnts01\"><link href=\"text/shared/05/new_help.xhp#hlpcnts\">Contents - The Main Help Topics</link></variable>"
+msgstr "<variable id=\"hlpcnts01\"><link href=\"text/shared/05/new_help.xhp#hlpcnts\">Contingut - Els temes d'ajuda principals</link></variable>"
#. mPuEx
#: new_help.xhp
@@ -1565,14 +1565,14 @@ msgctxt ""
msgid "Use the <emph>Back</emph> and <emph>Forward</emph> buttons of the browser to navigate between pages. In most browsers, a long click on the <emph>Back</emph> button displays a dropdown list of previously visited pages and a long click on the <emph>Forward</emph> button display a list of visited pages after the current one."
msgstr ""
-#. X4Vow
+#. HG7Ez
#: new_help.xhp
msgctxt ""
"new_help.xhp\n"
"hd_id321534889287756\n"
"help.text"
-msgid "<variable id=\"bkm01\"><link href=\"text/shared/05/new_help.xhp#bkmhlppag\" name=\"Bookmarking Help pages\">Bookmarking Help pages</link></variable>"
-msgstr "<variable id=\"bkm01\"><link href=\"text/shared/05/new_help.xhp#bkmhlppag\" name=\"Bookmarking Help pages\">Marcatge de pàgines d'ajuda</link></variable>"
+msgid "<variable id=\"bkm01\"><link href=\"text/shared/05/new_help.xhp#bkmhlppag\">Bookmarking Help pages</link></variable>"
+msgstr "<variable id=\"bkm01\"><link href=\"text/shared/05/new_help.xhp#bkmhlppag\">Marcatge de pàgines d'ajuda</link></variable>"
#. bZEVC
#: new_help.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/07.po b/source/ca-valencia/helpcontent2/source/text/shared/07.po
index b547665a41e..eccc5d0646f 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/07.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/07.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textshared07/ca_VALENCIA/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
"X-POOTLE-MTIME: 1531065272.000000\n"
@@ -26,14 +26,14 @@ msgctxt ""
msgid "Web Pages"
msgstr "Pàgines web"
-#. KFDmp
+#. B6vTG
#: 09000000.xhp
msgctxt ""
"09000000.xhp\n"
"hd_id3156014\n"
"help.text"
-msgid "<link href=\"text/shared/07/09000000.xhp\" name=\"Web Pages\">Web Pages</link>"
-msgstr "<link href=\"text/shared/07/09000000.xhp\" name=\"Pàgines web\">Pàgines web</link>"
+msgid "<link href=\"text/shared/07/09000000.xhp\">Web Pages</link>"
+msgstr "<link href=\"text/shared/07/09000000.xhp\">Pàgines web</link>"
#. YuDvW
#: 09000000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/autokorr.po b/source/ca-valencia/helpcontent2/source/text/shared/autokorr.po
index 2febad496be..5cd1f5dd122 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/autokorr.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/autokorr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedautokorr/ca_VALENCIA/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
"X-POOTLE-MTIME: 1494354280.000000\n"
@@ -44,14 +44,14 @@ msgctxt ""
msgid "TWo INitial CApitals have been corrected"
msgstr "S'han corregit DUes MAjúscules INicials"
-#. pEU6M
+#. 5mg5o
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"par_id3158397\n"
"help.text"
-msgid "Typing errors such as \"WOrd\" have been corrected and replaced by the <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> function to \"Word\"."
-msgstr "La funció de <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha corregit les errades tipogràfiques de l'estil \"PAraula\" i les ha substituït per \"Paraula\"."
+msgid "Typing errors such as \"WOrd\" have been corrected and replaced by the <link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> function to \"Word\"."
+msgstr "La funció de <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha corregit les errades tipogràfiques de l'estil \"PAraula\" i les ha substituït per \"Paraula\"."
#. YGggv
#: 02000000.xhp
@@ -80,14 +80,14 @@ msgctxt ""
msgid "Start each sentence with a capital letter"
msgstr "Comença cada frase amb majúscula"
-#. pFvJs
+#. nERrh
#: 02000000.xhp
msgctxt ""
"02000000.xhp\n"
"par_id3158397\n"
"help.text"
-msgid "Your text was corrected with <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> so that the current word began with a capital letter. AutoCorrect changes words at the beginning of a paragraph, and words after the character at the end of a sentence (period, exclamation point, question mark)."
-msgstr "S'ha corregit el text amb la <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> de manera que la paraula actual comence amb majúscula. La correcció automàtica canvia les paraules a l'inici de paràgraf i les paraules a final de frase (punt, signe d'exclamació, signe d'interrogació)."
+msgid "Your text was corrected with <link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> so that the current word began with a capital letter. AutoCorrect changes words at the beginning of a paragraph, and words after the character at the end of a sentence (period, exclamation point, question mark)."
+msgstr "S'ha corregit el text amb la <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> de manera que la paraula actual comence amb majúscula. La correcció automàtica canvia les paraules a l'inici de paràgraf i les paraules a final de frase (punt, signe d'exclamació, signe d'interrogació)."
#. L6A3T
#: 03000000.xhp
@@ -116,14 +116,14 @@ msgctxt ""
msgid "Two capital letters at the beginning of a word and a sentence have been corrected to one capital letter"
msgstr "S'han corregit les dues majúscules a començament de paraula o de frase i s'han deixat en una sola majúscula"
-#. dmDsA
+#. 2DrrP
#: 03000000.xhp
msgctxt ""
"03000000.xhp\n"
"par_id3158397\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text so that a word beginning with two capital letters at the beginning of a sentence now starts with one capital letter."
-msgstr "La <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha modificat el text de manera que les paraules a començament de frase que començaven amb dues majúscules ara comencen amb una sola majúscula."
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> has modified your text so that a word beginning with two capital letters at the beginning of a sentence now starts with one capital letter."
+msgstr "La <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha modificat el text de manera que les paraules a començament de frase que començaven amb dues majúscules ara comencen amb una sola majúscula."
#. gwa8j
#: 04000000.xhp
@@ -152,14 +152,14 @@ msgctxt ""
msgid "A replacement has been carried out"
msgstr "S'ha fet una substitució"
-#. yJMPc
+#. yXFyg
#: 04000000.xhp
msgctxt ""
"04000000.xhp\n"
"par_id3159241\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has replaced a word."
-msgstr "La <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha substituït una paraula."
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> has replaced a word."
+msgstr "La <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha substituït una paraula."
#. CgGde
#: 05000000.xhp
@@ -188,14 +188,14 @@ msgctxt ""
msgid "AutoCorrect has performed a replacement. The beginning of the sentence now starts with a capital letter"
msgstr "La correcció automàtica ha fet una substitució. Els començaments de frase ara comencen amb majúscula"
-#. E4kio
+#. p2CXC
#: 05000000.xhp
msgctxt ""
"05000000.xhp\n"
"par_id3153341\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has performed a replacement, and the beginning of the sentence now starts with a capital letter."
-msgstr "La <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha fet una substitució, i els començaments de frase ara comencen amb majúscula."
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> has performed a replacement, and the beginning of the sentence now starts with a capital letter."
+msgstr "La <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha fet una substitució, i els començaments de frase ara comencen amb majúscula."
#. pMoyc
#: 06000000.xhp
@@ -224,14 +224,14 @@ msgctxt ""
msgid "Double quotation marks (\") have been replaced"
msgstr "S'han substituït les cometes dobles (\")"
-#. MaFTX
+#. xqLMa
#: 06000000.xhp
msgctxt ""
"06000000.xhp\n"
"par_id3146060\n"
"help.text"
-msgid "Your text was corrected by <link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">Autocorrect</link> so that double quotation marks were replaced by <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typographical quotation marks</link>."
-msgstr "La funció de <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha corregit el text de manera que les cometes dobles s'han substituït per <link href=\"text/shared/01/06040400.xhp\" name=\"cometes tipogràfiques\">cometes tipogràfiques</link>."
+msgid "Your text was corrected by <link href=\"text/shared/01/06040000.xhp\">Autocorrect</link> so that double quotation marks were replaced by <link href=\"text/shared/01/06040400.xhp\">typographical quotation marks</link>."
+msgstr "La funció de <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha corregit el text de manera que les cometes dobles s'han substituït per <link href=\"text/shared/01/06040400.xhp\">cometes tipogràfiques</link>."
#. B9CDq
#: 07000000.xhp
@@ -260,14 +260,14 @@ msgctxt ""
msgid "Single quotes have been replaced"
msgstr "S'han substituït les cometes simples"
-#. vH2Er
+#. NhJHF
#: 07000000.xhp
msgctxt ""
"07000000.xhp\n"
"par_id3154688\n"
"help.text"
-msgid "Your text was corrected by <link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">Autocorrect</link> so that single quotation marks were replaced by <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typographical quotation marks</link>."
-msgstr "La funció de <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha corregit el text de manera que les cometes dobles s'han substituït per <link href=\"text/shared/01/06040400.xhp\" name=\"cometes tipogràfiques\">cometes tipogràfiques</link>."
+msgid "Your text was corrected by <link href=\"text/shared/01/06040000.xhp\">Autocorrect</link> so that single quotation marks were replaced by <link href=\"text/shared/01/06040400.xhp\">typographical quotation marks</link>."
+msgstr "La funció de <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha corregit el text de manera que les cometes dobles s'han substituït per <link href=\"text/shared/01/06040400.xhp\">cometes tipogràfiques</link>."
#. RkFAj
#: 08000000.xhp
@@ -296,14 +296,14 @@ msgctxt ""
msgid "An URL has been detected and a hyperlink attribute has been set"
msgstr "S'ha detectat un URL i s'hi ha afegit un atribut d'enllaç"
-#. 6exK7
+#. ApNEw
#: 08000000.xhp
msgctxt ""
"08000000.xhp\n"
"par_id3150278\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text. A string has been detected as an URL and is now shown as a hyperlink."
-msgstr "La <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha modificat el text. S'ha detectat que una cadena era un URL i ara es mostra com a enllaç."
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> has modified your text. A string has been detected as an URL and is now shown as a hyperlink."
+msgstr "La <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha modificat el text. S'ha detectat que una cadena era un URL i ara es mostra com a enllaç."
#. VTdXe
#: 09000000.xhp
@@ -332,14 +332,14 @@ msgctxt ""
msgid "Double spaces have been ignored"
msgstr "S'han ignorat els espais dobles"
-#. G2E4T
+#. AAY6x
#: 09000000.xhp
msgctxt ""
"09000000.xhp\n"
"par_id3149297\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has corrected your text so that the multiple spaces you have entered have now been reduced to one single space."
-msgstr "La <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha corregit el text de manera que els espais múltiples que havíeu introduït s'han reduït a un sol espai."
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> has corrected your text so that the multiple spaces you have entered have now been reduced to one single space."
+msgstr "La <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha corregit el text de manera que els espais múltiples que havíeu introduït s'han reduït a un sol espai."
#. EejSa
#: 10000000.xhp
@@ -368,14 +368,14 @@ msgctxt ""
msgid "Bold and underline attributes have been recognized and applied"
msgstr "S'han reconegut i aplicat els atributs de negreta i de subratllat"
-#. 76NkE
+#. DJ8Eb
#: 10000000.xhp
msgctxt ""
"10000000.xhp\n"
"par_id3156014\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text, and the bold and/or underline text attributes have been automatically applied."
-msgstr "La <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha modificat el text, i s'han aplicat automàticament els atributs de text negreta o de subratllat."
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> has modified your text, and the bold and/or underline text attributes have been automatically applied."
+msgstr "La <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha modificat el text, i s'han aplicat automàticament els atributs de text negreta o de subratllat."
#. FBeJm
#: 12000000.xhp
@@ -404,14 +404,14 @@ msgctxt ""
msgid "Minus signs have been replaced"
msgstr "S'han substituït els signes de menys"
-#. C4dAK
+#. aAQBm
#: 12000000.xhp
msgctxt ""
"12000000.xhp\n"
"par_id3148932\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text, and minus signs have been replaced with dashes."
-msgstr "La <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha modificat el text, i els signes de menys s'han substituït per guions."
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> has modified your text, and minus signs have been replaced with dashes."
+msgstr "La <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha modificat el text, i els signes de menys s'han substituït per guions."
#. bKCng
#: 13000000.xhp
@@ -440,11 +440,11 @@ msgctxt ""
msgid "1st ... has been replaced with 1st ..."
msgstr "1r i similars han estat substituïts per 1r i equivalents"
-#. WMnqT
+#. jrMCC
#: 13000000.xhp
msgctxt ""
"13000000.xhp\n"
"par_id3153220\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has corrected your text so that ordinal number suffixes have been superscripted."
-msgstr "La <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> ha corregit el text de manera que els sufixos dels nombres ordinals s'han canviat per superíndexs."
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link> has corrected your text so that ordinal number suffixes have been superscripted."
+msgstr "La <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> ha corregit el text de manera que els sufixos dels nombres ordinals s'han canviat per superíndexs."
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/autopi.po b/source/ca-valencia/helpcontent2/source/text/shared/autopi.po
index 9c93d84f32e..5a994af846a 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/autopi.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/autopi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsharedautopi/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>wizards; overview</bookmark_value><bookmark_value>AutoPilots, see wizards</bookmark_value>"
msgstr "<bookmark_value>auxiliars; visió general</bookmark_value><bookmark_value>AutoPilots, vegeu auxiliars</bookmark_value>"
-#. uWmcx
+#. qP9Fu
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3152551\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01000000.xhp\" name=\"Wizards\">Wizards</link>"
-msgstr "<link href=\"text/shared/autopi/01000000.xhp\" name=\"Auxiliars\">Auxiliars</link>"
+msgid "<link href=\"text/shared/autopi/01000000.xhp\">Wizards</link>"
+msgstr "<link href=\"text/shared/autopi/01000000.xhp\">Auxiliars</link>"
#. miGFD
#: 01000000.xhp
@@ -53,50 +53,50 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AutoPilotMenu\">Guides you through creating business and personal letters, faxes, agendas, and more.</ahelp>"
msgstr ""
-#. EeudN
+#. dAcHA
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3154750\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010000.xhp\" name=\"Letter\">Letter</link>"
-msgstr "<link href=\"text/shared/autopi/01010000.xhp\" name=\"Carta\">Carta</link>"
+msgid "<link href=\"text/shared/autopi/01010000.xhp\">Letter</link>"
+msgstr "<link href=\"text/shared/autopi/01010000.xhp\">Carta</link>"
-#. HTzKG
+#. 38xQF
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3153662\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020000.xhp\" name=\"Fax\">Fax</link>"
-msgstr "<link href=\"text/shared/autopi/01020000.xhp\" name=\"Fax\">Fax</link>"
+msgid "<link href=\"text/shared/autopi/01020000.xhp\">Fax</link>"
+msgstr "<link href=\"text/shared/autopi/01020000.xhp\">Fax</link>"
-#. oDdXG
+#. SG8Tp
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3153561\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040000.xhp\" name=\"Agenda\">Agenda</link>"
-msgstr "<link href=\"text/shared/autopi/01040000.xhp\" name=\"Agenda\">Agenda</link>"
+msgid "<link href=\"text/shared/autopi/01040000.xhp\">Agenda</link>"
+msgstr "<link href=\"text/shared/autopi/01040000.xhp\">Agenda</link>"
-#. WXHvV
+#. zjitK
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3147530\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Document Converter</link>"
-msgstr "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Convertidor de documents\">Convertidor de documents</link>"
+msgid "<link href=\"text/shared/autopi/01130000.xhp\">Document Converter</link>"
+msgstr "<link href=\"text/shared/autopi/01130000.xhp\">Convertidor de documents</link>"
-#. nxJzj
+#. Z9ju7
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3147303\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=\"Convertidor d'euros\">Convertidor d'euros</link>"
+msgid "<link href=\"text/shared/autopi/01150000.xhp\">Euro Converter</link>"
+msgstr "<link href=\"text/shared/autopi/01150000.xhp\">Convertidor d'euros</link>"
#. eAGW4
#: 01010000.xhp
@@ -233,14 +233,14 @@ msgctxt ""
msgid "Letter Wizard - Page design"
msgstr "Auxiliar de cartes - Disseny de la pàgina"
-#. HhQdD
+#. wGb3D
#: 01010100.xhp
msgctxt ""
"01010100.xhp\n"
"hd_id3147102\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010100.xhp\" name=\"Letter Wizard - Page design\">Letter Wizard - Page design</link>"
-msgstr "<link href=\"text/shared/autopi/01010100.xhp\" name=\"Auxiliar de cartes - Disseny de la pàgina\">Auxiliar de cartes - Disseny de la pàgina</link>"
+msgid "<link href=\"text/shared/autopi/01010100.xhp\">Letter Wizard - Page design</link>"
+msgstr "<link href=\"text/shared/autopi/01010100.xhp\">Auxiliar de cartes - Disseny de la pàgina</link>"
#. jBVzZ
#: 01010100.xhp
@@ -359,14 +359,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether paper is used that already contains an imprinted logo, address, or footer line. The Wizard shows the Letterhead layout page next.</ahelp>"
msgstr "<ahelp hid=\".\">Indica si el paper conté un logotip, una adreça o un peu de pàgina preimpresos. L'auxiliar mostrarà la disposició amb capçalera a continuació.</ahelp>"
-#. Jp9xt
+#. QREhA
#: 01010100.xhp
msgctxt ""
"01010100.xhp\n"
"par_id3150254\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Go to Letter Wizard - Letterhead layout\">Go to Letter Wizard - Letterhead layout</link>"
-msgstr "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Aneu a Auxiliar de cartes - Format de la capçalera\">Aneu a Auxiliar de cartes - Format de la capçalera</link>"
+msgid "<link href=\"text/shared/autopi/01010200.xhp\">Go to Letter Wizard - Letterhead layout</link>"
+msgstr "<link href=\"text/shared/autopi/01010200.xhp\">Aneu a Auxiliar de cartes - Format de la capçalera</link>"
#. ma7Nd
#: 01010200.xhp
@@ -377,14 +377,14 @@ msgctxt ""
msgid "Letter Wizard - Letterhead layout"
msgstr "Auxiliar de cartes - Format de la capçalera"
-#. Amg7R
+#. AEnQz
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"hd_id3155354\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Letter Wizard - Letterhead layout\">Letter Wizard - Letterhead layout</link>"
-msgstr "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Auxiliar de cartes - Format de la capçalera\">Auxiliar de cartes - Format de la capçalera</link>"
+msgid "<link href=\"text/shared/autopi/01010200.xhp\">Letter Wizard - Letterhead layout</link>"
+msgstr "<link href=\"text/shared/autopi/01010200.xhp\">Auxiliar de cartes - Format de la capçalera</link>"
#. 9ZLVJ
#: 01010200.xhp
@@ -566,14 +566,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the height of the footer area that is already imprinted on your letterhead paper. %PRODUCTNAME does not print in that area.</ahelp>"
msgstr "<ahelp hid=\".\">Introduïu l'alçària del peu de pàgina ja imprés en el paper amb capçalera. El %PRODUCTNAME no imprimirà res en aquest espai.</ahelp>"
-#. 5wvMM
+#. URpme
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3153367\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010300.xhp\" name=\"Go to Letter Wizard - Printed items\">Go to Letter Wizard - Printed items</link>"
-msgstr "<link href=\"text/shared/autopi/01010300.xhp\" name=\"Aneu a Auxiliar de cartes - Elements impresos\">Aneu a Auxiliar de cartes - Elements impresos</link>"
+msgid "<link href=\"text/shared/autopi/01010300.xhp\">Go to Letter Wizard - Printed items</link>"
+msgstr "<link href=\"text/shared/autopi/01010300.xhp\">Aneu a Auxiliar de cartes - Elements impresos</link>"
#. hPVFU
#: 01010300.xhp
@@ -584,14 +584,14 @@ msgctxt ""
msgid "Letter Wizard - Printed items"
msgstr "Auxiliar de cartes - Elements impresos"
-#. Syz7w
+#. LfRYv
#: 01010300.xhp
msgctxt ""
"01010300.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010300.xhp\" name=\"Letter Wizard - Printed items\">Letter Wizard - Printed items</link>"
-msgstr "<link href=\"text/shared/autopi/01010300.xhp\" name=\"Auxiliar de cartes - Elements impresos\">Auxiliar de cartes - Elements impresos</link>"
+msgid "<link href=\"text/shared/autopi/01010300.xhp\">Letter Wizard - Printed items</link>"
+msgstr "<link href=\"text/shared/autopi/01010300.xhp\">Auxiliar de cartes - Elements impresos</link>"
#. wnxmZ
#: 01010300.xhp
@@ -746,14 +746,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Includes a footer on the letter template.</ahelp>"
msgstr "<ahelp hid=\".\">Inclou un peu de pàgina a la plantilla de carta.</ahelp>"
-#. njA5B
+#. 6D8fE
#: 01010300.xhp
msgctxt ""
"01010300.xhp\n"
"par_id3149666\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010400.xhp\" name=\"Go to Letter Wizard - Recipient and sender\">Go to Letter Wizard - Recipient and sender</link>"
-msgstr "<link href=\"text/shared/autopi/01010400.xhp\" name=\"Aneu a Auxiliar de cartes - Destinatari i remitent\">Aneu a Auxiliar de cartes - Destinatari i remitent</link>"
+msgid "<link href=\"text/shared/autopi/01010400.xhp\">Go to Letter Wizard - Recipient and sender</link>"
+msgstr "<link href=\"text/shared/autopi/01010400.xhp\">Aneu a Auxiliar de cartes - Destinatari i remitent</link>"
#. EYFFV
#: 01010400.xhp
@@ -764,14 +764,14 @@ msgctxt ""
msgid "Letter Wizard - Recipient and sender"
msgstr "Auxiliar de cartes - Destinatari i remitent"
-#. Fg4tq
+#. ENbsV
#: 01010400.xhp
msgctxt ""
"01010400.xhp\n"
"hd_id3154288\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010400.xhp\" name=\"Letter Wizard - Recipient and sender\">Letter Wizard - Recipient and sender</link>"
-msgstr "<link href=\"text/shared/autopi/01010400.xhp\" name=\"Auxiliar de cartes - Destinatari i remitent\">Auxiliar de cartes - Destinatari i remitent</link>"
+msgid "<link href=\"text/shared/autopi/01010400.xhp\">Letter Wizard - Recipient and sender</link>"
+msgstr "<link href=\"text/shared/autopi/01010400.xhp\">Auxiliar de cartes - Destinatari i remitent</link>"
#. ZFzrE
#: 01010400.xhp
@@ -944,14 +944,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Address database fields are inserted into the letter template.</ahelp>"
msgstr "<ahelp hid=\".\">S'inseriran camps de la base de dades d'adreces a la plantilla de carta.</ahelp>"
-#. LH2Uy
+#. PWjGD
#: 01010400.xhp
msgctxt ""
"01010400.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010500.xhp\" name=\"Go to Letter Wizard - Footer\">Go to Letter Wizard - Footer</link>"
-msgstr "<link href=\"text/shared/autopi/01010500.xhp\" name=\"Aneu a Auxiliar de cartes - Peu de pàgina\">Aneu a Auxiliar de cartes - Peu de pàgina</link>"
+msgid "<link href=\"text/shared/autopi/01010500.xhp\">Go to Letter Wizard - Footer</link>"
+msgstr "<link href=\"text/shared/autopi/01010500.xhp\">Aneu a Auxiliar de cartes - Peu de pàgina</link>"
#. P7eTT
#: 01010500.xhp
@@ -962,14 +962,14 @@ msgctxt ""
msgid "Letter Wizard - Footer"
msgstr "Auxiliar de cartes - Peu de pàgina"
-#. WCeEp
+#. 7UQEB
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
"hd_id3143281\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010500.xhp\" name=\"Letter Wizard - Footer\">Letter Wizard - Footer</link>"
-msgstr "<link href=\"text/shared/autopi/01010500.xhp\" name=\"Auxiliar de cartes - Peu de pàgina\">Auxiliar de cartes - Peu de pàgina</link>"
+msgid "<link href=\"text/shared/autopi/01010500.xhp\">Letter Wizard - Footer</link>"
+msgstr "<link href=\"text/shared/autopi/01010500.xhp\">Auxiliar de cartes - Peu de pàgina</link>"
#. kNGXK
#: 01010500.xhp
@@ -1034,14 +1034,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Includes page numbers in your letter template.</ahelp>"
msgstr "<ahelp hid=\".\">Inclou les números de pàgina en la plantilla de la carta.</ahelp>"
-#. 28z6u
+#. UDwLE
#: 01010500.xhp
msgctxt ""
"01010500.xhp\n"
"par_id3154988\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010600.xhp\" name=\"Go to Letter Wizard - Name and location\">Go to Letter Wizard - Name and location</link>"
-msgstr "<link href=\"text/shared/autopi/01010600.xhp\" name=\"Aneu a Auxiliar de cartes - Nom i ubicació\">Aneu a Auxiliar de cartes - Nom i ubicació</link>"
+msgid "<link href=\"text/shared/autopi/01010600.xhp\">Go to Letter Wizard - Name and location</link>"
+msgstr "<link href=\"text/shared/autopi/01010600.xhp\">Aneu a Auxiliar de cartes - Nom i ubicació</link>"
#. sbinu
#: 01010600.xhp
@@ -1052,14 +1052,14 @@ msgctxt ""
msgid "Letter Wizard - Name and Location"
msgstr "Auxiliar de cartes - Nom i ubicació"
-#. EtxLp
+#. jFU9s
#: 01010600.xhp
msgctxt ""
"01010600.xhp\n"
"hd_id3150355\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01010600.xhp\" name=\"Letter Wizard - Name and Location\">Letter Wizard - Name and Location</link>"
-msgstr "<link href=\"text/shared/autopi/01010600.xhp\" name=\"Auxiliar de cartes - Nom i ubicació\">Auxiliar de cartes - Nom i ubicació</link>"
+msgid "<link href=\"text/shared/autopi/01010600.xhp\">Letter Wizard - Name and Location</link>"
+msgstr "<link href=\"text/shared/autopi/01010600.xhp\">Auxiliar de cartes - Nom i ubicació</link>"
#. Bf2pC
#: 01010600.xhp
@@ -1268,14 +1268,14 @@ msgctxt ""
msgid "Fax Wizard - Page Design"
msgstr "Auxiliar de faxos - Disseny de la pàgina"
-#. PxSiA
+#. ZFqNt
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020100.xhp\" name=\"Fax Wizard - Page Design\">Fax Wizard - Page Design</link>"
-msgstr "<link href=\"text/shared/autopi/01020100.xhp\" name=\"Auxiliar de faxos - Disseny de la pàgina\">Auxiliar de faxos - Disseny de la pàgina</link>"
+msgid "<link href=\"text/shared/autopi/01020100.xhp\">Fax Wizard - Page Design</link>"
+msgstr "<link href=\"text/shared/autopi/01020100.xhp\">Auxiliar de faxos - Disseny de la pàgina</link>"
#. hNAfN
#: 01020100.xhp
@@ -1358,14 +1358,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies the predefined style.</ahelp>"
msgstr "<ahelp hid=\".\">Indica l'estil predefinit.</ahelp>"
-#. FXYDA
+#. LN6vy
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id3156002\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020200.xhp\" name=\"Go to Fax Wizard - Items to include\">Go to Fax Wizard - Items to include</link>"
-msgstr "<link href=\"text/shared/autopi/01020200.xhp\" name=\"Aneu a Auxiliar de faxos - Elements a incloure\">Aneu a Auxiliar de faxos - Elements a incloure</link>"
+msgid "<link href=\"text/shared/autopi/01020200.xhp\">Go to Fax Wizard - Items to include</link>"
+msgstr "<link href=\"text/shared/autopi/01020200.xhp\">Aneu a Auxiliar de faxos - Elements a incloure</link>"
#. fdj9N
#: 01020200.xhp
@@ -1376,14 +1376,14 @@ msgctxt ""
msgid "Fax Wizard - Items to include"
msgstr "Auxiliar de faxos - Elements a incloure"
-#. 4nzcG
+#. YWenL
#: 01020200.xhp
msgctxt ""
"01020200.xhp\n"
"hd_id3157898\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020200.xhp\" name=\"Fax Wizard - Items to include\">Fax Wizard - Items to include</link>"
-msgstr "<link href=\"text/shared/autopi/01020200.xhp\" name=\"Auxiliar de faxos - Elements a incloure\">Auxiliar de faxos - Elements a incloure</link>"
+msgid "<link href=\"text/shared/autopi/01020200.xhp\">Fax Wizard - Items to include</link>"
+msgstr "<link href=\"text/shared/autopi/01020200.xhp\">Auxiliar de faxos - Elements a incloure</link>"
#. gA627
#: 01020200.xhp
@@ -1520,14 +1520,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Includes a footer.</ahelp>"
msgstr "<ahelp hid=\".\">Inclou un peu de pàgina.</ahelp>"
-#. kDDBN
+#. V9gQW
#: 01020200.xhp
msgctxt ""
"01020200.xhp\n"
"par_id3148491\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020300.xhp\" name=\"Go to Fax Wizard - Sender and Recipient\">Go to Fax Wizard - Sender and Recipient</link>"
-msgstr "<link href=\"text/shared/autopi/01020300.xhp\" name=\"Aneu a Auxiliar de faxos - Remitent i destinatari\">Aneu a Auxiliar de faxos - Remitent i destinatari</link>"
+msgid "<link href=\"text/shared/autopi/01020300.xhp\">Go to Fax Wizard - Sender and Recipient</link>"
+msgstr "<link href=\"text/shared/autopi/01020300.xhp\">Aneu a Auxiliar de faxos - Remitent i destinatari</link>"
#. KqE4C
#: 01020300.xhp
@@ -1538,14 +1538,14 @@ msgctxt ""
msgid "Fax Wizard - Sender and Recipient"
msgstr "Auxiliar de faxos - Remitent i destinatari"
-#. DFEty
+#. hTjUX
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"hd_id3155934\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020300.xhp\" name=\"Fax Wizard - Sender and Recipient\">Fax Wizard - Sender and Recipient</link>"
-msgstr "<link href=\"text/shared/autopi/01020300.xhp\" name=\"Auxiliar de faxos - Remitent i destinatari\">Auxiliar de faxos - Remitent i destinatari</link>"
+msgid "<link href=\"text/shared/autopi/01020300.xhp\">Fax Wizard - Sender and Recipient</link>"
+msgstr "<link href=\"text/shared/autopi/01020300.xhp\">Auxiliar de faxos - Remitent i destinatari</link>"
#. 9wCnR
#: 01020300.xhp
@@ -1646,14 +1646,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Inserts database fields for a later mail merge with the fax document.</ahelp>"
msgstr "<ahelp hid=\".\">Insereix camps d'una base de dades per fer una combinació de correu posterior amb el document de fax.</ahelp>"
-#. zQPYE
+#. ESAKo
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_id3154938\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020400.xhp\" name=\"Go to Fax Wizard - Footer\">Go to Fax Wizard - Footer</link>"
-msgstr "<link href=\"text/shared/autopi/01020400.xhp\" name=\"Aneu a l'auxiliar de faxos - Peu de pàgina\">Aneu a l'auxiliar de faxos - Peu de pàgina</link>"
+msgid "<link href=\"text/shared/autopi/01020400.xhp\">Go to Fax Wizard - Footer</link>"
+msgstr "<link href=\"text/shared/autopi/01020400.xhp\">Aneu a l'auxiliar de faxos - Peu de pàgina</link>"
#. q69hP
#: 01020400.xhp
@@ -1664,14 +1664,14 @@ msgctxt ""
msgid "Fax Wizard - Footer"
msgstr "Auxiliar de faxos - Peu de pàgina"
-#. GBKcG
+#. NdRZx
#: 01020400.xhp
msgctxt ""
"01020400.xhp\n"
"hd_id3147143\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020400.xhp\" name=\"Fax Wizard - Footer\">Fax Wizard - Footer</link>"
-msgstr "<link href=\"text/shared/autopi/01020400.xhp\" name=\"Auxiliar de faxos - Peu de pàgina\">Auxiliar de faxos - Peu de pàgina</link>"
+msgid "<link href=\"text/shared/autopi/01020400.xhp\">Fax Wizard - Footer</link>"
+msgstr "<link href=\"text/shared/autopi/01020400.xhp\">Auxiliar de faxos - Peu de pàgina</link>"
#. moG7a
#: 01020400.xhp
@@ -1736,14 +1736,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Prints a page number in the footer area.</ahelp>"
msgstr "<ahelp hid=\".\">Imprimeix el número de pàgina en el peu.</ahelp>"
-#. Gpxsb
+#. ULEDC
#: 01020400.xhp
msgctxt ""
"01020400.xhp\n"
"par_id3152812\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020500.xhp\" name=\"Go to Fax Wizard - Name and location\">Go to Fax Wizard - Name and location</link>"
-msgstr "<link href=\"text/shared/autopi/01020500.xhp\" name=\"Aneu a l'auxiliar de faxos - Nom i ubicació\">Aneu a l'auxiliar de faxos - Nom i ubicació</link>"
+msgid "<link href=\"text/shared/autopi/01020500.xhp\">Go to Fax Wizard - Name and location</link>"
+msgstr "<link href=\"text/shared/autopi/01020500.xhp\">Aneu a l'auxiliar de faxos - Nom i ubicació</link>"
#. 5GTDj
#: 01020500.xhp
@@ -1754,14 +1754,14 @@ msgctxt ""
msgid "Fax Wizard - Name and location"
msgstr "Auxiliar de faxos - Nom i ubicació"
-#. 4u9br
+#. LV9gq
#: 01020500.xhp
msgctxt ""
"01020500.xhp\n"
"hd_id3150247\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020500.xhp\" name=\"Fax Wizard - Name and location\">Fax Wizard - Name and location</link>"
-msgstr "<link href=\"text/shared/autopi/01020500.xhp\" name=\"Auxiliar de faxos - Nom i ubicació\">Auxiliar de faxos - Nom i ubicació</link>"
+msgid "<link href=\"text/shared/autopi/01020500.xhp\">Fax Wizard - Name and location</link>"
+msgstr "<link href=\"text/shared/autopi/01020500.xhp\">Auxiliar de faxos - Nom i ubicació</link>"
#. 9MJNj
#: 01020500.xhp
@@ -1844,14 +1844,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Creates and saves the fax template, then opens the template for further editing.</ahelp>"
msgstr "<ahelp hid=\".\">Crea i guarda la plantilla de fax, i tot seguit obri la plantilla per continuar editant-la.</ahelp>"
-#. yKtBg
+#. fETJG
#: 01020500.xhp
msgctxt ""
"01020500.xhp\n"
"par_id3151119\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01020000.xhp\" name=\"Go to Fax Wizard\">Go to Fax Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01020000.xhp\" name=\"Aneu a l'Auxiliar de faxos\">Aneu a l'auxiliar de faxos</link>"
+msgid "<link href=\"text/shared/autopi/01020000.xhp\">Go to Fax Wizard</link>"
+msgstr "<link href=\"text/shared/autopi/01020000.xhp\">Aneu a l'auxiliar de faxos</link>"
#. sRsoY
#: 01040000.xhp
@@ -1979,14 +1979,14 @@ msgctxt ""
msgid "Agenda Wizard - Page Design"
msgstr "Auxiliar d'agendes - Disseny de la pàgina"
-#. bBzNB
+#. kefJn
#: 01040100.xhp
msgctxt ""
"01040100.xhp\n"
"hd_id3151100\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040100.xhp\" name=\"Agenda Wizard - Page Design\">Agenda Wizard - Page Design</link>"
-msgstr "<link href=\"text/shared/autopi/01040100.xhp\" name=\"Auxiliar d'agendes - Disseny de la pàgina\">Auxiliar d'agendes - Disseny de la pàgina</link>"
+msgid "<link href=\"text/shared/autopi/01040100.xhp\">Agenda Wizard - Page Design</link>"
+msgstr "<link href=\"text/shared/autopi/01040100.xhp\">Auxiliar d'agendes - Disseny de la pàgina</link>"
#. fPTHx
#: 01040100.xhp
@@ -2033,14 +2033,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Prints out a page on which you can write down the minutes during the meeting.</ahelp>"
msgstr "<ahelp hid=\".\">Imprimeix una pàgina en la qual es pot anotar l'acta durant la reunió.</ahelp>"
-#. tCEMs
+#. f7afU
#: 01040100.xhp
msgctxt ""
"01040100.xhp\n"
"par_id3153087\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Go to Agenda Wizard - General information\">Go to Agenda Wizard - General information</link>"
-msgstr "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Aneu a Auxiliar d'agendes - Informació general\">Aneu a Auxiliar d'agendes - Informació general</link>"
+msgid "<link href=\"text/shared/autopi/01040200.xhp\">Go to Agenda Wizard - General information</link>"
+msgstr "<link href=\"text/shared/autopi/01040200.xhp\">Aneu a Auxiliar d'agendes - Informació general</link>"
#. WGmzy
#: 01040200.xhp
@@ -2051,14 +2051,14 @@ msgctxt ""
msgid "Agenda Wizard - General Information"
msgstr "Auxiliar d'agendes - Informació general"
-#. d4naA
+#. TZ7iE
#: 01040200.xhp
msgctxt ""
"01040200.xhp\n"
"hd_id3150247\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Agenda Wizard - General Information\">Agenda Wizard - General Information</link>"
-msgstr "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Auxiliar d'agendes - Informació general\">Auxiliar d'agendes - Informació general</link>"
+msgid "<link href=\"text/shared/autopi/01040200.xhp\">Agenda Wizard - General Information</link>"
+msgstr "<link href=\"text/shared/autopi/01040200.xhp\">Auxiliar d'agendes - Informació general</link>"
#. eLECH
#: 01040200.xhp
@@ -2141,14 +2141,14 @@ msgctxt ""
msgid "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_LOCATION\">Specifies the location of the meeting.</ahelp>"
msgstr "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_LOCATION\">Indica el lloc de la reunió.</ahelp>"
-#. jZums
+#. FUWpn
#: 01040200.xhp
msgctxt ""
"01040200.xhp\n"
"par_id3148946\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Go to Agenda Wizard - Headings to include\">Go to Agenda Wizard - Headings to include</link>"
-msgstr "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Aneu a Auxiliar d'agendes - Encapçalaments a incloure\">Aneu a Auxiliar d'agendes - Encapçalaments a incloure</link>"
+msgid "<link href=\"text/shared/autopi/01040300.xhp\">Go to Agenda Wizard - Headings to include</link>"
+msgstr "<link href=\"text/shared/autopi/01040300.xhp\">Aneu a Auxiliar d'agendes - Encapçalaments a incloure</link>"
#. Q5JDB
#: 01040300.xhp
@@ -2159,14 +2159,14 @@ msgctxt ""
msgid "Agenda Wizard - Headings to include"
msgstr "Auxiliar d'agendes - Encapçalaments a incloure"
-#. ipAGt
+#. sS3Ai
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Agenda Wizard - Headings to include\">Agenda Wizard - Headings to include</link>"
-msgstr "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Auxiliar d'agendes - Encapçalaments a incloure\">Auxiliar d'agendes - Encapçalaments a incloure</link>"
+msgid "<link href=\"text/shared/autopi/01040300.xhp\">Agenda Wizard - Headings to include</link>"
+msgstr "<link href=\"text/shared/autopi/01040300.xhp\">Auxiliar d'agendes - Encapçalaments a incloure</link>"
#. yBn6A
#: 01040300.xhp
@@ -2249,14 +2249,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether to print a Notes line.</ahelp>"
msgstr "<ahelp hid=\".\">Indica si s'ha d'imprimir una línia de notes.</ahelp>"
-#. tobGe
+#. qPJUT
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3163802\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Go to Agenda Wizard - Names\">Go to Agenda Wizard - Names</link>"
-msgstr "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Aneu a Auxiliar d'agendes - Noms\">Aneu a Auxiliar d'agendes - Noms</link>"
+msgid "<link href=\"text/shared/autopi/01040400.xhp\">Go to Agenda Wizard - Names</link>"
+msgstr "<link href=\"text/shared/autopi/01040400.xhp\">Aneu a Auxiliar d'agendes - Noms</link>"
#. zECC7
#: 01040400.xhp
@@ -2267,14 +2267,14 @@ msgctxt ""
msgid "Agenda Wizard - Names"
msgstr "Auxiliar de l'agenda - Noms"
-#. FmZNr
+#. LLyji
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"hd_id3143284\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Agenda Wizard - Names\">Agenda Wizard - Names</link>"
-msgstr "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Auxiliar d'agendes - Noms\">Auxiliar d'agendes - Noms</link>"
+msgid "<link href=\"text/shared/autopi/01040400.xhp\">Agenda Wizard - Names</link>"
+msgstr "<link href=\"text/shared/autopi/01040400.xhp\">Auxiliar d'agendes - Noms</link>"
#. emLhT
#: 01040400.xhp
@@ -2411,14 +2411,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether to print a line where you can enter the facility personnel.</ahelp>"
msgstr "<ahelp hid=\".\">Indica si s'ha d'imprimir una línia on podeu introduir el nom del personal d'ajuda.</ahelp>"
-#. abzRV
+#. aGeGK
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"par_id3150275\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Go to Agenda Wizard - Agenda Items\">Go to Agenda Wizard - Agenda Items</link>"
-msgstr "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Aneu a Auxiliar d'agendes - Elements de l'agenda\">Aneu a Auxiliar d'agendes - Elements de l'agenda</link>"
+msgid "<link href=\"text/shared/autopi/01040500.xhp\">Go to Agenda Wizard - Agenda Items</link>"
+msgstr "<link href=\"text/shared/autopi/01040500.xhp\">Aneu a Auxiliar d'agendes - Elements de l'agenda</link>"
#. STCc4
#: 01040500.xhp
@@ -2429,14 +2429,14 @@ msgctxt ""
msgid "Agenda Wizard - Agenda Items"
msgstr "Auxiliar d'agendes - Elements de l'agenda"
-#. Gj4D2
+#. BRFWD
#: 01040500.xhp
msgctxt ""
"01040500.xhp\n"
"hd_id3159224\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Agenda Wizard - Agenda Items\">Agenda Wizard - Agenda Items</link>"
-msgstr "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Auxiliar d'agendes - Elements de l'agenda\">Auxiliar d'agendes - Elements de l'agenda</link>"
+msgid "<link href=\"text/shared/autopi/01040500.xhp\">Agenda Wizard - Agenda Items</link>"
+msgstr "<link href=\"text/shared/autopi/01040500.xhp\">Auxiliar d'agendes - Elements de l'agenda</link>"
#. BDRvF
#: 01040500.xhp
@@ -2537,14 +2537,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Moves the current topic row down.</ahelp>"
msgstr "<ahelp hid=\".\">Mou avall la fila de tema actual.</ahelp>"
-#. GMToc
+#. 92RXq
#: 01040500.xhp
msgctxt ""
"01040500.xhp\n"
"par_id3146798\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Go to Agenda Wizard - Name and location\">Go to Agenda Wizard - Name and location</link>"
-msgstr "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Aneu a l'Auxiliard'agendes - Nom i ubicació\">Aneu a l'Auxiliar d'agendes - Nom i ubicació</link>"
+msgid "<link href=\"text/shared/autopi/01040600.xhp\">Go to Agenda Wizard - Name and location</link>"
+msgstr "<link href=\"text/shared/autopi/01040600.xhp\">Aneu a l'Auxiliar d'agendes - Nom i ubicació</link>"
#. H9Wbq
#: 01040600.xhp
@@ -2555,14 +2555,14 @@ msgctxt ""
msgid "Agenda Wizard - Name and Location"
msgstr "Auxiliar d'agendes - Nom i ubicació"
-#. VcrH9
+#. DJrxQ
#: 01040600.xhp
msgctxt ""
"01040600.xhp\n"
"hd_id3144740\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Agenda Wizard - Name and Location\">Agenda Wizard - Name and Location</link>"
-msgstr "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Auxiliar d'agendes - Nom i ubicació\">Auxiliar d'agendes - Nom i ubicació</link>"
+msgid "<link href=\"text/shared/autopi/01040600.xhp\">Agenda Wizard - Name and Location</link>"
+msgstr "<link href=\"text/shared/autopi/01040600.xhp\">Auxiliar d'agendes - Nom i ubicació</link>"
#. viGf3
#: 01040600.xhp
@@ -2645,14 +2645,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Creates and saves the agenda template, then opens the template for further editing.</ahelp>"
msgstr "<ahelp hid=\".\">Crea i guarda la plantilla d'agenda, i tot seguit obri la plantilla per continuar amb l'edició.</ahelp>"
-#. QLDxM
+#. 8PBRB
#: 01040600.xhp
msgctxt ""
"01040600.xhp\n"
"par_idN105F6\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01040000.xhp\" name=\"Go to Agenda Wizard\">Go to Agenda Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01040000.xhp\" name=\"Aneu a Auxiliar d'agendes\">Aneu a Auxiliar d'agendes</link>"
+msgid "<link href=\"text/shared/autopi/01040000.xhp\">Go to Agenda Wizard</link>"
+msgstr "<link href=\"text/shared/autopi/01040000.xhp\">Aneu a Auxiliar d'agendes</link>"
#. 4DsCG
#: 01090000.xhp
@@ -2717,14 +2717,14 @@ msgctxt ""
msgid "Form Wizard - Field Selection"
msgstr "Auxiliar de formularis - Selecció de camps"
-#. vKHEZ
+#. dhmCd
#: 01090100.xhp
msgctxt ""
"01090100.xhp\n"
"hd_id3155599\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090100.xhp\" name=\"Form Wizard - Field Selection\">Form Wizard - Field Selection</link>"
-msgstr "<link href=\"text/shared/autopi/01090100.xhp\" name=\"Auxiliar de formularis - Selecció de camps\">Auxiliar de formularis - Selecció de camps</link>"
+msgid "<link href=\"text/shared/autopi/01090100.xhp\">Form Wizard - Field Selection</link>"
+msgstr "<link href=\"text/shared/autopi/01090100.xhp\">Auxiliar de formularis - Selecció de camps</link>"
#. q2PHa
#: 01090100.xhp
@@ -2897,14 +2897,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the fields that are in the new form.</ahelp>"
msgstr "<ahelp hid=\".\">Mostra els camps del formulari nou.</ahelp>"
-#. zvAgb
+#. zPdeU
#: 01090100.xhp
msgctxt ""
"01090100.xhp\n"
"par_id3150398\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090200.xhp\" name=\"Form Wizard - Set up a subform\">Form Wizard - Set up a subform</link>"
-msgstr "<link href=\"text/shared/autopi/01090200.xhp\" name=\"Auxiliar de formularis - Configura un subformulari\">Auxiliar de formularis - Configura un subformulari</link>"
+msgid "<link href=\"text/shared/autopi/01090200.xhp\">Form Wizard - Set up a subform</link>"
+msgstr "<link href=\"text/shared/autopi/01090200.xhp\">Auxiliar de formularis - Configura un subformulari</link>"
#. fwpB4
#: 01090200.xhp
@@ -3005,14 +3005,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click to add a subform based on a manual selection of fields. </ahelp>"
msgstr "<ahelp hid=\".\">Feu clic per afegir un subformulari basat en una selecció manual dels camps. </ahelp>"
-#. BPBmp
+#. Japf2
#: 01090200.xhp
msgctxt ""
"01090200.xhp\n"
"par_idN105E2\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090210.xhp\" name=\"Form Wizard - Add subform fields\">Form Wizard - Add subform fields</link>"
-msgstr "<link href=\"text/shared/autopi/01090210.xhp\" name=\"Auxiliar de formularis - Afegiu camps de subformulari\">Auxiliar de formularis - Afegiu camps de subformulari</link>"
+msgid "<link href=\"text/shared/autopi/01090210.xhp\">Form Wizard - Add subform fields</link>"
+msgstr "<link href=\"text/shared/autopi/01090210.xhp\">Auxiliar de formularis - Afegiu camps de subformulari</link>"
#. pRjtt
#: 01090210.xhp
@@ -3077,14 +3077,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays all fields that will be included in the new subform.</ahelp>"
msgstr "<ahelp hid=\".\">Mostra tots els camps que s'inclouran en el subformulari nou.</ahelp>"
-#. nPCEg
+#. hM6Xf
#: 01090210.xhp
msgctxt ""
"01090210.xhp\n"
"par_idN10597\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090220.xhp\" name=\"Form Wizard - Get joined fields\">Form Wizard - Get joined fields</link>"
-msgstr "<link href=\"text/shared/autopi/01090220.xhp\" name=\"Auxiliar de formularis - Recupereu els camps units\">Auxiliar de formularis - Recupereu els camps units</link>"
+msgid "<link href=\"text/shared/autopi/01090220.xhp\">Form Wizard - Get joined fields</link>"
+msgstr "<link href=\"text/shared/autopi/01090220.xhp\">Auxiliar de formularis - Recupereu els camps units</link>"
#. 6F3Mi
#: 01090220.xhp
@@ -3257,14 +3257,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the main form field that is joined to the subform field, which you select in the list box next to this list box.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccioneu el camp del formulari principal que està unit al camp del subformulari, el qual podeu seleccionar en la llista que hi ha al costat d'esta.</ahelp>"
-#. wdhpM
+#. PEfee
#: 01090220.xhp
msgctxt ""
"01090220.xhp\n"
"par_idN105F8\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090300.xhp\" name=\"Form Wizard - Arrange controls\">Form Wizard - Arrange controls</link>"
-msgstr "<link href=\"text/shared/autopi/01090300.xhp\" name=\"Auxiliar de formularis - Organitzeu els controls\">Auxiliar de formularis - Organitzeu els controls</link>"
+msgid "<link href=\"text/shared/autopi/01090300.xhp\">Form Wizard - Arrange controls</link>"
+msgstr "<link href=\"text/shared/autopi/01090300.xhp\">Auxiliar de formularis - Organitzeu els controls</link>"
#. oKc93
#: 01090300.xhp
@@ -3275,14 +3275,14 @@ msgctxt ""
msgid "Form Wizard - Arrange Controls"
msgstr "Auxiliar de formularis - Organitzeu els controls"
-#. 3JHPB
+#. vpSXC
#: 01090300.xhp
msgctxt ""
"01090300.xhp\n"
"hd_id3163829\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090300.xhp\" name=\"Form Wizard - Arrange Controls\">Form Wizard - Arrange Controls</link>"
-msgstr "<link href=\"text/shared/autopi/01090300.xhp\" name=\"Auxiliar de formularis - Organitzeu els controls\">Auxiliar de formularis - Organitzeu els controls</link>"
+msgid "<link href=\"text/shared/autopi/01090300.xhp\">Form Wizard - Arrange Controls</link>"
+msgstr "<link href=\"text/shared/autopi/01090300.xhp\">Auxiliar de formularis - Organitzeu els controls</link>"
#. T3rtu
#: 01090300.xhp
@@ -3500,14 +3500,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Arranges the labels above the corresponding data.</ahelp>"
msgstr "<ahelp hid=\".\">Situa les etiquetes sobre les dades corresponents.</ahelp>"
-#. caPdS
+#. bF3EF
#: 01090300.xhp
msgctxt ""
"01090300.xhp\n"
"par_idN106F3\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090400.xhp\" name=\"Form Wizard - Set data entry\">Form Wizard - Set data entry</link>"
-msgstr "<link href=\"text/shared/autopi/01090400.xhp\" name=\"Auxiliar de formularis - Especifiqueu l'entrada de dades\">Auxiliar de formularis - Especifiqueu l'entrada de dades</link>"
+msgid "<link href=\"text/shared/autopi/01090400.xhp\">Form Wizard - Set data entry</link>"
+msgstr "<link href=\"text/shared/autopi/01090400.xhp\">Auxiliar de formularis - Especifiqueu l'entrada de dades</link>"
#. R3iBH
#: 01090400.xhp
@@ -3626,14 +3626,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select to disallow adding new data.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccioneu-ho per prohibir l'addició de dades noves.</ahelp>"
-#. 6nwmD
+#. SqRNq
#: 01090400.xhp
msgctxt ""
"01090400.xhp\n"
"par_idN105E4\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090500.xhp\" name=\"Form Wizard - Apply styles\">Form Wizard - Apply styles</link>"
-msgstr "<link href=\"text/shared/autopi/01090500.xhp\" name=\"Auxiliar de formularis - Aplica els estils\">Auxiliar de formularis - Aplica els estils</link>"
+msgid "<link href=\"text/shared/autopi/01090500.xhp\">Form Wizard - Apply styles</link>"
+msgstr "<link href=\"text/shared/autopi/01090500.xhp\">Auxiliar de formularis - Aplica els estils</link>"
#. ZDqNF
#: 01090500.xhp
@@ -3752,14 +3752,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies that the field borders look flat.</ahelp>"
msgstr "<ahelp hid=\".\">Indica que les vores dels camps han de ser planes.</ahelp>"
-#. WmSPU
+#. FtrrC
#: 01090500.xhp
msgctxt ""
"01090500.xhp\n"
"par_idN10579\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090600.xhp\" name=\"Form Wizard - Set name\">Form Wizard - Set name</link>"
-msgstr "<link href=\"text/shared/autopi/01090600.xhp\" name=\"Auxiliar de formularis - Indiqueu el nom\">Auxiliar de formularis - Especifiqueu el nom</link>"
+msgid "<link href=\"text/shared/autopi/01090600.xhp\">Form Wizard - Set name</link>"
+msgstr "<link href=\"text/shared/autopi/01090600.xhp\">Auxiliar de formularis - Especifiqueu el nom</link>"
#. kFiaa
#: 01090600.xhp
@@ -3842,14 +3842,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Saves the form, and opens it in edit mode to change the layout.</ahelp>"
msgstr "<ahelp hid=\".\">Guarda el formulari i l'obri en mode d'edició per canviar-ne el format.</ahelp>"
-#. cCM2Y
+#. qDmWk
#: 01090600.xhp
msgctxt ""
"01090600.xhp\n"
"par_idN10569\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01090000.xhp\" name=\"Form Wizard\">Form Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01090000.xhp\" name=\"Auxiliar de formularis\">Auxiliar de formularis</link>"
+msgid "<link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link>"
+msgstr "<link href=\"text/shared/autopi/01090000.xhp\">Auxiliar de formularis</link>"
#. 9GEmD
#: 01100000.xhp
@@ -3896,14 +3896,14 @@ msgctxt ""
msgid "Report Wizard - Field Selection"
msgstr "Auxiliar d'informes - Selecció de camps"
-#. 3hFgh
+#. Adyxy
#: 01100100.xhp
msgctxt ""
"01100100.xhp\n"
"hd_id3155599\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100100.xhp\" name=\"Report Wizard - Field Selection\">Report Wizard - Field Selection</link>"
-msgstr "<link href=\"text/shared/autopi/01100100.xhp\" name=\"Auxiliar d'informes - Selecció de camps\">Auxiliar d'informes - Selecció de camps</link>"
+msgid "<link href=\"text/shared/autopi/01100100.xhp\">Report Wizard - Field Selection</link>"
+msgstr "<link href=\"text/shared/autopi/01100100.xhp\">Auxiliar d'informes - Selecció de camps</link>"
#. k9HWM
#: 01100100.xhp
@@ -4040,14 +4040,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
msgstr "<ahelp hid=\".\">Feu clic per a moure tots els camps al quadre al qual apunta la fletxa.</ahelp>"
-#. vHEvv
+#. ebFt7
#: 01100100.xhp
msgctxt ""
"01100100.xhp\n"
"par_id3145609\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100150.xhp\" name=\"More about Report Wizard - Labeling Fields\">More about Report Wizard - Labeling Fields</link>"
-msgstr "<link href=\"text/shared/autopi/01100150.xhp\" name=\"Més sobre l'Auxiliar d'informes - Identificació dels camps\">Més sobre l'Auxiliar d'informes - Identificació dels camps</link>"
+msgid "<link href=\"text/shared/autopi/01100150.xhp\">More about Report Wizard - Labeling Fields</link>"
+msgstr "<link href=\"text/shared/autopi/01100150.xhp\">Més sobre l'Auxiliar d'informes - Identificació dels camps</link>"
#. CU6F5
#: 01100150.xhp
@@ -4058,14 +4058,14 @@ msgctxt ""
msgid "Report Wizard - Labeling Fields"
msgstr "Auxiliar d'informes - Identificació dels camps"
-#. pcAoA
+#. w745A
#: 01100150.xhp
msgctxt ""
"01100150.xhp\n"
"hd_id3144415\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100150.xhp\" name=\"Report Wizard - Labeling Fields\">Report Wizard - Labeling Fields</link>"
-msgstr "<link href=\"text/shared/autopi/01100150.xhp\" name=\"Auxiliar d'informes - Identificació dels camps\">Auxiliar d'informes - Identificació dels camps</link>"
+msgid "<link href=\"text/shared/autopi/01100150.xhp\">Report Wizard - Labeling Fields</link>"
+msgstr "<link href=\"text/shared/autopi/01100150.xhp\">Auxiliar d'informes - Identificació dels camps</link>"
#. GsVRi
#: 01100150.xhp
@@ -4094,14 +4094,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the names of the fields to be included in the report. At the right you can enter a label for each field that will be printed in the report.</ahelp>"
msgstr "<ahelp hid=\".\">Mostra els noms dels camps que s'han d'incloure a l'informe. A la dreta podeu introduir una etiqueta per a cada camp que s'imprimirà en l'informe.</ahelp>"
-#. HBDFj
+#. 3ZFEY
#: 01100150.xhp
msgctxt ""
"01100150.xhp\n"
"par_id3153748\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100200.xhp\" name=\"More about Report Wizard - Grouping\">More about Report Wizard - Grouping</link>"
-msgstr "<link href=\"text/shared/autopi/01100200.xhp\" name=\"Més sobre l'Auxiliar d'informes - Agrupacions\">Més sobre l'Auxiliar d'informes - Agrupacions</link>"
+msgid "<link href=\"text/shared/autopi/01100200.xhp\">More about Report Wizard - Grouping</link>"
+msgstr "<link href=\"text/shared/autopi/01100200.xhp\">Més sobre l'Auxiliar d'informes - Agrupacions</link>"
#. BUhYd
#: 01100200.xhp
@@ -4112,14 +4112,14 @@ msgctxt ""
msgid "Report Wizard - Grouping"
msgstr "Auxiliar d'informes - Agrupacions"
-#. QGdmm
+#. zPKjm
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3147000\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100200.xhp\" name=\"Report Wizard - Grouping\">Report Wizard - Grouping</link>"
-msgstr "<link href=\"text/shared/autopi/01100200.xhp\" name=\"Auxiliar d'informes - Agrupacions\">Auxiliar d'informes - Agrupacions</link>"
+msgid "<link href=\"text/shared/autopi/01100200.xhp\">Report Wizard - Grouping</link>"
+msgstr "<link href=\"text/shared/autopi/01100200.xhp\">Auxiliar d'informes - Agrupacions</link>"
#. UURLb
#: 01100200.xhp
@@ -4202,14 +4202,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Click to move the selected field to the box that the arrow is pointing to.</ahelp>"
msgstr "<ahelp hid=\".\">Feu clic per a moure el camp seleccionat al quadre al qual apunta la fletxa.</ahelp>"
-#. YCrQB
+#. uTa48
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"par_id3150355\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100300.xhp\" name=\"More about Report Wizard - Sort Options\">More about Report Wizard - Sort Options</link>"
-msgstr "<link href=\"text/shared/autopi/01100300.xhp\" name=\"Més sobre l'Auxiliar d'informes - Opcions d'ordenació\">Més sobre l'Auxiliar d'informes - Opcions d'ordenació</link>"
+msgid "<link href=\"text/shared/autopi/01100300.xhp\">More about Report Wizard - Sort Options</link>"
+msgstr "<link href=\"text/shared/autopi/01100300.xhp\">Més sobre l'Auxiliar d'informes - Opcions d'ordenació</link>"
#. HPGPg
#: 01100300.xhp
@@ -4220,14 +4220,14 @@ msgctxt ""
msgid "Report Wizard - Sort Options"
msgstr "Auxiliar d'informes - Opcions d'ordenació"
-#. 5icZB
+#. VzFbG
#: 01100300.xhp
msgctxt ""
"01100300.xhp\n"
"hd_id3148668\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100300.xhp\" name=\"Report Wizard - Sort Options\">Report Wizard - Sort Options</link>"
-msgstr "<link href=\"text/shared/autopi/01100300.xhp\" name=\"Auxiliar d'informes - Opcions d'ordenació\">Auxiliar d'informes - Opcions d'ordenació</link>"
+msgid "<link href=\"text/shared/autopi/01100300.xhp\">Report Wizard - Sort Options</link>"
+msgstr "<link href=\"text/shared/autopi/01100300.xhp\">Auxiliar d'informes - Opcions d'ordenació</link>"
#. RSArv
#: 01100300.xhp
@@ -4310,14 +4310,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sorts the field contents in descending order.</ahelp>"
msgstr "<ahelp hid=\".\">Ordena els continguts del camp de manera descendent.</ahelp>"
-#. BqAqU
+#. aT4Eu
#: 01100300.xhp
msgctxt ""
"01100300.xhp\n"
"par_id3156329\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100400.xhp\" name=\"More about Report Wizard - Choose Layout\">More about Report Wizard - Choose Layout</link>"
-msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Més sobre l'Auxiliar d'informes - Trieu un format\">Més sobre l'Auxiliar d'informes - Trieu un format</link>"
+msgid "<link href=\"text/shared/autopi/01100400.xhp\">More about Report Wizard - Choose Layout</link>"
+msgstr "<link href=\"text/shared/autopi/01100400.xhp\">Més sobre l'Auxiliar d'informes - Trieu un format</link>"
#. 8Gkxm
#: 01100400.xhp
@@ -4328,14 +4328,14 @@ msgctxt ""
msgid "Report Wizard - Choose Layout"
msgstr "Auxiliar d'informes - Trieu un format"
-#. GCkoV
+#. 3d3Bi
#: 01100400.xhp
msgctxt ""
"01100400.xhp\n"
"hd_id3148668\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Report Wizard - Choose Layout\">Report Wizard - Choose Layout</link>"
-msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Auxiliar d'informes - Trieu un format\">Auxiliar d'informes - Trieu un format</link>"
+msgid "<link href=\"text/shared/autopi/01100400.xhp\">Report Wizard - Choose Layout</link>"
+msgstr "<link href=\"text/shared/autopi/01100400.xhp\">Auxiliar d'informes - Trieu un format</link>"
#. aPVFq
#: 01100400.xhp
@@ -4436,14 +4436,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Selects a portrait page orientation for the report.</ahelp>"
msgstr "<ahelp hid=\".\">Selecciona una orientació de pàgina vertical per a l'informe.</ahelp>"
-#. xAG3R
+#. CwwC2
#: 01100400.xhp
msgctxt ""
"01100400.xhp\n"
"par_id3148491\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100500.xhp\" name=\"More about Report Wizard - Create Report\">More about Report Wizard - Create Report</link>"
-msgstr "<link href=\"text/shared/autopi/01100500.xhp\" name=\"Més sobre l'Auxiliar d'informes - Crea un informe\">Més sobre l'Auxiliar d'informes - Crea un informe</link>"
+msgid "<link href=\"text/shared/autopi/01100500.xhp\">More about Report Wizard - Create Report</link>"
+msgstr "<link href=\"text/shared/autopi/01100500.xhp\">Més sobre l'Auxiliar d'informes - Crea un informe</link>"
#. KwNon
#: 01100500.xhp
@@ -4454,14 +4454,14 @@ msgctxt ""
msgid "Report Wizard - Create Report"
msgstr "Auxiliar d'informes - Crea un informe"
-#. gKZbX
+#. DBGWP
#: 01100500.xhp
msgctxt ""
"01100500.xhp\n"
"hd_id3156211\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100500.xhp\" name=\"Report Wizard - Create Report\">Report Wizard - Create Report</link>"
-msgstr "<link href=\"text/shared/autopi/01100500.xhp\" name=\"Auxiliar d'informes - Crea un informe\">Auxiliar d'informes - Crea un informe</link>"
+msgid "<link href=\"text/shared/autopi/01100500.xhp\">Report Wizard - Create Report</link>"
+msgstr "<link href=\"text/shared/autopi/01100500.xhp\">Auxiliar d'informes - Crea un informe</link>"
#. G5N3i
#: 01100500.xhp
@@ -4670,14 +4670,14 @@ msgctxt ""
msgid "HTML Export - Page 1"
msgstr "Exportació HTML - Pàgina 1"
-#. Gdp4j
+#. DTGxn
#: 01110100.xhp
msgctxt ""
"01110100.xhp\n"
"hd_id3153323\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01110100.xhp\" name=\"HTML Export - Page 1\">HTML Export - Page 1</link>"
-msgstr "<link href=\"text/shared/autopi/01110100.xhp\" name=\"Exportació HTML - Pàgina 1\">Exportació HTML - Pàgina 1</link>"
+msgid "<link href=\"text/shared/autopi/01110100.xhp\">HTML Export - Page 1</link>"
+msgstr "<link href=\"text/shared/autopi/01110100.xhp\">Exportació HTML - Pàgina 1</link>"
#. DCUPC
#: 01110100.xhp
@@ -4814,14 +4814,14 @@ msgctxt ""
msgid "<bookmark_value>kiosk export</bookmark_value><bookmark_value>HTML; live presentations</bookmark_value><bookmark_value>live presentations on the Internet</bookmark_value><bookmark_value>showing;live presentations on the Internet</bookmark_value><bookmark_value>presentations; live on the Internet</bookmark_value><bookmark_value>Internet; presentations</bookmark_value><bookmark_value>WebCast export</bookmark_value>"
msgstr "<bookmark_value>exportació en quiosc</bookmark_value><bookmark_value>HTML; presentacions en viu</bookmark_value><bookmark_value>presentacions en viu a Internet</bookmark_value><bookmark_value>mostrar;presentacions en viu a Internet</bookmark_value><bookmark_value>presentacions; en viu a Internet</bookmark_value><bookmark_value>Internet; presentacions</bookmark_value><bookmark_value>exportació WebCast</bookmark_value>"
-#. efNvL
+#. 5JY4q
#: 01110200.xhp
msgctxt ""
"01110200.xhp\n"
"hd_id3154840\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01110200.xhp\" name=\"HTML Export - Page 2\">HTML Export - Page 2</link>"
-msgstr "<link href=\"text/shared/autopi/01110200.xhp\" name=\"Exportació HTML - Pàgina 2\">Exportació HTML - Pàgina 2</link>"
+msgid "<link href=\"text/shared/autopi/01110200.xhp\">HTML Export - Page 2</link>"
+msgstr "<link href=\"text/shared/autopi/01110200.xhp\">Exportació HTML - Pàgina 2</link>"
#. F4BGL
#: 01110200.xhp
@@ -5030,14 +5030,14 @@ msgctxt ""
msgid "WebCast"
msgstr "WebCast"
-#. jtRgF
+#. AsNGD
#: 01110200.xhp
msgctxt ""
"01110200.xhp\n"
"par_id3150543\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/webCastRadiobutton\">In a WebCast export, automatic scripts will be generated with Perl or ASP support.</ahelp> This enables the speaker (for example, a speaker in a telephone conference using a slide show on the Internet) to change the slides in the audience's web browsers. You will find more information on <link href=\"text/shared/autopi/01110200.xhp\" name=\"WebCast\">WebCast</link> later in this section."
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/webCastRadiobutton\">En una exportació a WebCast, es generaran scripts automàtics compatibles amb Perl o ASP</ahelp>. Això permet que el locutor (per exemple, un locutor en una conferència telefònica que utilitza una presentació a través d'Internet) canvie les diapositives en els navegadors web de l'audiència. Podeu trobar més informació sobre el <link href=\"text/shared/autopi/01110200.xhp\" name=\"WebCast\">WebCast</link> més avant en esta secció."
+msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/webCastRadiobutton\">In a WebCast export, automatic scripts will be generated with Perl or ASP support.</ahelp> This enables the speaker (for example, a speaker in a telephone conference using a slide show on the Internet) to change the slides in the audience's web browsers. You will find more information on <link href=\"text/shared/autopi/01110200.xhp\">WebCast</link> later in this section."
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/webCastRadiobutton\">En una exportació a WebCast, es generaran scripts automàtics compatibles amb Perl o ASP</ahelp>. Això permet que el locutor (per exemple, un locutor en una conferència telefònica que utilitza una presentació a través d'Internet) canvie les diapositives en els navegadors web de l'audiència. Podeu trobar més informació sobre el <link href=\"text/shared/autopi/01110200.xhp\">WebCast</link> més avant en esta secció."
#. MU45V
#: 01110200.xhp
@@ -5453,14 +5453,14 @@ msgctxt ""
msgid "HTML Export - Page 3"
msgstr "Exportació HTML - Pàgina 3"
-#. HQQEu
+#. 3De3d
#: 01110300.xhp
msgctxt ""
"01110300.xhp\n"
"hd_id3153323\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01110300.xhp\" name=\"HTML Export - Page 3\">HTML Export - Page 3</link>"
-msgstr "<link href=\"text/shared/autopi/01110300.xhp\" name=\"Exportació HTML - Pàgina 3\">Exportació HTML - Pàgina 3</link>"
+msgid "<link href=\"text/shared/autopi/01110300.xhp\">HTML Export - Page 3</link>"
+msgstr "<link href=\"text/shared/autopi/01110300.xhp\">Exportació HTML - Pàgina 3</link>"
#. SMk8P
#: 01110300.xhp
@@ -5669,14 +5669,14 @@ msgctxt ""
msgid "HTML Export - Page 4"
msgstr "Exportació HTML - Pàgina 4"
-#. TFwvF
+#. uUhL4
#: 01110400.xhp
msgctxt ""
"01110400.xhp\n"
"hd_id3151100\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01110400.xhp\" name=\"HTML Export - Page 4\">HTML Export - Page 4</link>"
-msgstr "<link href=\"text/shared/autopi/01110400.xhp\" name=\"Exportació HTML - Pàgina 4\">Exportació HTML - Pàgina 4</link>"
+msgid "<link href=\"text/shared/autopi/01110400.xhp\">HTML Export - Page 4</link>"
+msgstr "<link href=\"text/shared/autopi/01110400.xhp\">Exportació HTML - Pàgina 4</link>"
#. 3q8V2
#: 01110400.xhp
@@ -5804,14 +5804,14 @@ msgctxt ""
msgid "HTML Export - Page 5"
msgstr "Exportació HTML - Pàgina 5"
-#. cr7tE
+#. GF9oG
#: 01110500.xhp
msgctxt ""
"01110500.xhp\n"
"hd_id3144415\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01110500.xhp\" name=\"HTML Export - Page 5\">HTML Export - Page 5</link>"
-msgstr "<link href=\"text/shared/autopi/01110500.xhp\" name=\"Exportació HTML - Pàgina 5\">Exportació HTML - Pàgina 5</link>"
+msgid "<link href=\"text/shared/autopi/01110500.xhp\">HTML Export - Page 5</link>"
+msgstr "<link href=\"text/shared/autopi/01110500.xhp\">Exportació HTML - Pàgina 5</link>"
#. xmKBW
#: 01110500.xhp
@@ -5894,14 +5894,14 @@ msgctxt ""
msgid "HTML Export - Page 6"
msgstr "Exportació HTML - Pàgina 6"
-#. cLaGM
+#. CXyhd
#: 01110600.xhp
msgctxt ""
"01110600.xhp\n"
"hd_id3154926\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01110600.xhp\" name=\"HTML Export - Page 6\">HTML Export - Page 6</link>"
-msgstr "<link href=\"text/shared/autopi/01110600.xhp\" name=\"Exportació HTML - Pàgina 6\">Exportació HTML - Pàgina 6</link>"
+msgid "<link href=\"text/shared/autopi/01110600.xhp\">HTML Export - Page 6</link>"
+msgstr "<link href=\"text/shared/autopi/01110600.xhp\">Exportació HTML - Pàgina 6</link>"
#. NEBtD
#: 01110600.xhp
@@ -6002,14 +6002,14 @@ msgctxt ""
msgid "Text"
msgstr "Text"
-#. uuGoX
+#. hSwmJ
#: 01110600.xhp
msgctxt ""
"01110600.xhp\n"
"par_id3149762\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/textButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the text color of the presentation.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/textButton\">Obri el diàleg <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link>, des del qual podeu seleccionar el color del text de la presentació.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/textButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link> dialog, where you can select the text color of the presentation.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/textButton\">Obri el diàleg <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link>, des del qual podeu seleccionar el color del text de la presentació.</ahelp>"
#. ArEEU
#: 01110600.xhp
@@ -6020,14 +6020,14 @@ msgctxt ""
msgid "Hyperlink"
msgstr "Enllaç"
-#. yTrbC
+#. ihPig
#: 01110600.xhp
msgctxt ""
"01110600.xhp\n"
"par_id3143270\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/linkButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the hyperlink color of the presentation.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/linkButton\">Obri el diàleg <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link>, on podeu seleccionar el color dels enllaços de la presentació.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/linkButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link> dialog, where you can select the hyperlink color of the presentation.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/linkButton\">Obri el diàleg <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link>, on podeu seleccionar el color dels enllaços de la presentació.</ahelp>"
#. QsDFd
#: 01110600.xhp
@@ -6038,14 +6038,14 @@ msgctxt ""
msgid "Active Link"
msgstr "Enllaç actiu"
-#. n5eLN
+#. 2mmqG
#: 01110600.xhp
msgctxt ""
"01110600.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/aLinkButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the active link color of the presentation.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/aLinkButton\">Obri el diàleg <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link>, des del qual podeu seleccionar el color dels enllaços actius de la presentació.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/aLinkButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link> dialog, where you can select the active link color of the presentation.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/aLinkButton\">Obri el diàleg <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link>, des del qual podeu seleccionar el color dels enllaços actius de la presentació.</ahelp>"
#. cTFj8
#: 01110600.xhp
@@ -6056,14 +6056,14 @@ msgctxt ""
msgid "Visited Link"
msgstr "Enllaç visitat"
-#. orbuW
+#. MwBJH
#: 01110600.xhp
msgctxt ""
"01110600.xhp\n"
"par_id3150670\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/vLinkButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the visited link color of the presentation.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/vLinkButton\">Obri el diàleg <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link>, des del qual podeu seleccionar el color dels enllaços visitats de la presentació.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/vLinkButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link> dialog, where you can select the visited link color of the presentation.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/vLinkButton\">Obri el diàleg <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link>, des del qual podeu seleccionar el color dels enllaços visitats de la presentació.</ahelp>"
#. 5KGpg
#: 01110600.xhp
@@ -6074,14 +6074,14 @@ msgctxt ""
msgid "Background"
msgstr "Fons"
-#. 7ue9F
+#. H6wgD
#: 01110600.xhp
msgctxt ""
"01110600.xhp\n"
"par_id3159413\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/backButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog, where you can select the background color of the presentation.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/backButton\">Onre el diàleg <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link>, des del qual podeu seleccionar el color de fons de la presentació.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/backButton\">Opens the <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link> dialog, where you can select the background color of the presentation.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/backButton\">Onre el diàleg <link href=\"text/shared/optionen/01010501.xhp\"><emph>Color</emph></link>, des del qual podeu seleccionar el color de fons de la presentació.</ahelp>"
#. CEeC5
#: 01120000.xhp
@@ -6101,14 +6101,14 @@ msgctxt ""
msgid "Group Element Wizard"
msgstr "Auxiliar d'elements de grup"
-#. auRm3
+#. LZVXR
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
"par_id3151097\n"
"help.text"
-msgid "The Group Element Wizard starts automatically when you insert a <link href=\"text/shared/02/01170000.xhp\" name=\"Group Box\">Group Box</link> into a document."
-msgstr "L'Auxiliar d'elements de grup s'inicia automàticament en inserir un <link href=\"text/shared/02/01170000.xhp\" name=\"Quadre de grup\">Quadre de grup</link> en un document."
+msgid "The Group Element Wizard starts automatically when you insert a <link href=\"text/shared/02/01170000.xhp\">Group Box</link> into a document."
+msgstr "L'Auxiliar d'elements de grup s'inicia automàticament en inserir un <link href=\"text/shared/02/01170000.xhp\">Quadre de grup</link> en un document."
#. 5ftFD
#: 01120000.xhp
@@ -6137,14 +6137,14 @@ msgctxt ""
msgid "Group Element Wizard: Data"
msgstr "Auxiliar d'elements de grup: Dades"
-#. 7xtYF
+#. xgNjY
#: 01120100.xhp
msgctxt ""
"01120100.xhp\n"
"hd_id3155599\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01120100.xhp\" name=\"Group Element Wizard: Data\">Group Element Wizard: Data</link>"
-msgstr "<link href=\"text/shared/autopi/01120100.xhp\" name=\"Auxiliar d'elements de grup: Dades\">Auxiliar d'elements de grup: Dades</link>"
+msgid "<link href=\"text/shared/autopi/01120100.xhp\">Group Element Wizard: Data</link>"
+msgstr "<link href=\"text/shared/autopi/01120100.xhp\">Auxiliar d'elements de grup: Dades</link>"
#. jS7JL
#: 01120100.xhp
@@ -6164,14 +6164,14 @@ msgctxt ""
msgid "Which names do you want to give the option fields?"
msgstr "Quins noms voleu assignar als camps d'opció?"
-#. y5PRR
+#. RMqcA
#: 01120100.xhp
msgctxt ""
"01120100.xhp\n"
"par_id3154673\n"
"help.text"
-msgid "<ahelp hid=\"modules/sabpilot/ui/groupradioselectionpage/radiolabels\" visibility=\"visible\">Specifies the respective label for each option field. You will see the label of the option field in the form.</ahelp> This entry corresponds to the <link href=\"text/shared/02/01170101.xhp\" name=\"Label\">Label</link> property of the option field."
-msgstr "<ahelp hid=\"modules/sabpilot/ui/groupradioselectionpage/radiolabels\" visibility=\"visible\">Indica l'etiqueta respectiva per a cada camp d'opció. Veureu l'etiqueta del camp d'opció en el formulari.</ahelp> Esta entrada correspon a la propietat <link href=\"text/shared/02/01170101.xhp\" name=\"Etiqueta\">Etiqueta</link> del camp d'opció."
+msgid "<ahelp hid=\"modules/sabpilot/ui/groupradioselectionpage/radiolabels\" visibility=\"visible\">Specifies the respective label for each option field. You will see the label of the option field in the form.</ahelp> This entry corresponds to the <link href=\"text/shared/02/01170101.xhp\">Label</link> property of the option field."
+msgstr "<ahelp hid=\"modules/sabpilot/ui/groupradioselectionpage/radiolabels\" visibility=\"visible\">Indica l'etiqueta respectiva per a cada camp d'opció. Veureu l'etiqueta del camp d'opció en el formulari.</ahelp> Esta entrada correspon a la propietat <link href=\"text/shared/02/01170101.xhp\">Etiqueta</link> del camp d'opció."
#. ZExvE
#: 01120100.xhp
@@ -6263,14 +6263,14 @@ msgctxt ""
msgid "Group Element Wizard: Default Field Selection"
msgstr "Auxiliar d'elements de grup: Selecció del camp per defecte"
-#. tdDN7
+#. 3f4Rt
#: 01120200.xhp
msgctxt ""
"01120200.xhp\n"
"hd_id3151299\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01120200.xhp\" name=\"Group Element Wizard: Default Field Selection\">Group Element Wizard: Default Field Selection</link>"
-msgstr "<link href=\"text/shared/autopi/01120200.xhp\" name=\"Auxiliar d'elements de grup: Selecció del camp per defecte\">Auxiliar d'elements de grup: Selecció del camp per defecte</link>"
+msgid "<link href=\"text/shared/autopi/01120200.xhp\">Group Element Wizard: Default Field Selection</link>"
+msgstr "<link href=\"text/shared/autopi/01120200.xhp\">Auxiliar d'elements de grup: Selecció del camp per defecte</link>"
#. jbMoc
#: 01120200.xhp
@@ -6281,14 +6281,14 @@ msgctxt ""
msgid "Determines that you want one option field to be selected as the default choice."
msgstr "Determina que voleu un camp d'opció seleccionat per defecte."
-#. ym8a6
+#. NF68U
#: 01120200.xhp
msgctxt ""
"01120200.xhp\n"
"par_id3154094\n"
"help.text"
-msgid "The default settings will be accepted if you open the form in the user mode. With these settings you determine the control property <link href=\"text/shared/02/01170101.xhp\" name=\"Default Status\">Default Status</link>."
-msgstr "Els paràmetres per defecte s'acceptaran si obriu el formulari en mode usuari. Amb estos paràmetres, determineu la propietat dels controls <link href=\"text/shared/02/01170101.xhp\" name=\"Estat per defecte\">Estat per defecte</link>."
+msgid "The default settings will be accepted if you open the form in the user mode. With these settings you determine the control property <link href=\"text/shared/02/01170101.xhp\">Default Status</link>."
+msgstr "Els paràmetres per defecte s'acceptaran si obriu el formulari en mode usuari. Amb estos paràmetres, determineu la propietat dels controls <link href=\"text/shared/02/01170101.xhp\">Estat per defecte</link>."
#. 5Bk7d
#: 01120200.xhp
@@ -6371,14 +6371,14 @@ msgctxt ""
msgid "Group Element Wizard: Field Values"
msgstr "Auxiliar d'elements de grup: Valors dels camps"
-#. aMEUs
+#. oTfsy
#: 01120300.xhp
msgctxt ""
"01120300.xhp\n"
"hd_id3151097\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01120300.xhp\" name=\"Group Element Wizard: Field Values\">Group Element Wizard: Field Values</link>"
-msgstr "<link href=\"text/shared/autopi/01120300.xhp\" name=\"Auxiliar d'elements de grup: Valors dels camps\">Auxiliar d'elements de grup: Valors dels camps</link>"
+msgid "<link href=\"text/shared/autopi/01120300.xhp\">Group Element Wizard: Field Values</link>"
+msgstr "<link href=\"text/shared/autopi/01120300.xhp\">Auxiliar d'elements de grup: Valors dels camps</link>"
#. mVBx2
#: 01120300.xhp
@@ -6389,14 +6389,14 @@ msgctxt ""
msgid "Assigns a reference value to each option field."
msgstr "Assigna un valor de referència a cada camp d'opció."
-#. pLauq
+#. o2nxm
#: 01120300.xhp
msgctxt ""
"01120300.xhp\n"
"par_id3153323\n"
"help.text"
-msgid "Select a field from the option fields list and enter the corresponding <link href=\"text/shared/02/01170101.xhp\" name=\"reference value\">reference value</link>."
-msgstr "Seleccioneu el camp de la llista de camps d'opció i introduïu el <link href=\"text/shared/02/01170101.xhp\" name=\"valor de referència\">valor de referència</link> corresponent."
+msgid "Select a field from the option fields list and enter the corresponding <link href=\"text/shared/02/01170101.xhp\">reference value</link>."
+msgstr "Seleccioneu el camp de la llista de camps d'opció i introduïu el <link href=\"text/shared/02/01170101.xhp\">valor de referència</link> corresponent."
#. e8DgD
#: 01120300.xhp
@@ -6443,14 +6443,14 @@ msgctxt ""
msgid "Group Element Wizard: Database Field"
msgstr "Auxiliar d'elements de grup: Camp de la base de dades"
-#. AhFKr
+#. BKpyH
#: 01120400.xhp
msgctxt ""
"01120400.xhp\n"
"hd_id3149748\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01120400.xhp\" name=\"Group Element Wizard: Database Field\">Group Element Wizard: Database Field</link>"
-msgstr "<link href=\"text/shared/autopi/01120400.xhp\" name=\"Auxiliar d'elements de grup: Camp de la base de dades\">Auxiliar d'elements de grup: Camp de la base de dades</link>"
+msgid "<link href=\"text/shared/autopi/01120400.xhp\">Group Element Wizard: Database Field</link>"
+msgstr "<link href=\"text/shared/autopi/01120400.xhp\">Auxiliar d'elements de grup: Camp de la base de dades</link>"
#. yTnES
#: 01120400.xhp
@@ -6461,14 +6461,14 @@ msgctxt ""
msgid "This page is only visible if the document is linked to a database. It specifies whether the reference values should be saved in the database."
msgstr "Esta pàgina només és visible si el document està enllaçat a una base de dades. Indica si els valors de referència s'han de guardar a la base de dades."
-#. EDynv
+#. FwS4J
#: 01120400.xhp
msgctxt ""
"01120400.xhp\n"
"par_id3153255\n"
"help.text"
-msgid "Indicate where to save the <link href=\"text/shared/02/01170101.xhp\" name=\"reference values\">reference values</link>. A reference value can represent the current state of the group box in a database."
-msgstr "Indiqueu on s'han de guardar els <link href=\"text/shared/02/01170101.xhp\" name=\"valors de referència\">valors de referència</link>. Un valor de referència pot representar l'estat actual d'un quadre de grup a una base de dades."
+msgid "Indicate where to save the <link href=\"text/shared/02/01170101.xhp\">reference values</link>. A reference value can represent the current state of the group box in a database."
+msgstr "Indiqueu on s'han de guardar els <link href=\"text/shared/02/01170101.xhp\">valors de referència</link>. Un valor de referència pot representar l'estat actual d'un quadre de grup a una base de dades."
#. EQAQC
#: 01120400.xhp
@@ -6551,14 +6551,14 @@ msgctxt ""
msgid "Group Element Wizard: Create Option Group"
msgstr "Auxiliar d'elements de grup: Crea el grup d'opcions"
-#. BDAtj
+#. Xcfm7
#: 01120500.xhp
msgctxt ""
"01120500.xhp\n"
"hd_id3143206\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01120500.xhp\" name=\"Group Element Wizard: Create Option Group\">Group Element Wizard: Create Option Group</link>"
-msgstr "<link href=\"text/shared/autopi/01120500.xhp\" name=\"Auxiliar d'elements de grup: Crea un grup d'opcions\">Auxiliar d'elements de grup: Crea un grup d'opcions</link>"
+msgid "<link href=\"text/shared/autopi/01120500.xhp\">Group Element Wizard: Create Option Group</link>"
+msgstr "<link href=\"text/shared/autopi/01120500.xhp\">Auxiliar d'elements de grup: Crea un grup d'opcions</link>"
#. erbEs
#: 01120500.xhp
@@ -6578,14 +6578,14 @@ msgctxt ""
msgid "Which caption is to be given to your option group?"
msgstr "Quina llegenda s'ha de donar al grup d'opcions?"
-#. zF4RE
+#. 4fkc8
#: 01120500.xhp
msgctxt ""
"01120500.xhp\n"
"par_id3163829\n"
"help.text"
-msgid "<ahelp hid=\"modules/sabpilot/ui/optionsfinalpage/nameit\" visibility=\"visible\">Specifies the label for the option box. You will see the label of the group box displayed in the form.</ahelp> The text you enter here will correspond to the <link href=\"text/shared/02/01170101.xhp\" name=\"Label\">Label</link> property of the group box."
-msgstr "<ahelp hid=\"modules/sabpilot/ui/optionsfinalpage/nameit\" visibility=\"visible\">Indica l'etiqueta per al quadre d'opcions. Veureu l'etiqueta del quadre de grup en el formulari.</ahelp> El text que introduïu ací es correspondrà amb la propietat <link href=\"text/shared/02/01170101.xhp\" name=\"Etiqueta\">Etiqueta</link> del quadre de grup."
+msgid "<ahelp hid=\"modules/sabpilot/ui/optionsfinalpage/nameit\" visibility=\"visible\">Specifies the label for the option box. You will see the label of the group box displayed in the form.</ahelp> The text you enter here will correspond to the <link href=\"text/shared/02/01170101.xhp\">Label</link> property of the group box."
+msgstr "<ahelp hid=\"modules/sabpilot/ui/optionsfinalpage/nameit\" visibility=\"visible\">Indica l'etiqueta per al quadre d'opcions. Veureu l'etiqueta del quadre de grup en el formulari.</ahelp> El text que introduïu ací es correspondrà amb la propietat <link href=\"text/shared/02/01170101.xhp\">Etiqueta</link> del quadre de grup."
#. QbUG5
#: 01130000.xhp
@@ -6659,14 +6659,14 @@ msgctxt ""
msgid "Document Converter Page 1"
msgstr "Convertidor de documents - Pàgina 1"
-#. EhtBu
+#. 3ukbt
#: 01130100.xhp
msgctxt ""
"01130100.xhp\n"
"hd_id3151299\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01130100.xhp\" name=\"Document Converter Page 1\">Document Converter Page 1</link>"
-msgstr "<link href=\"text/shared/autopi/01130100.xhp\" name=\"Convertidor de documents - Pàgina 1\">Convertidor de documents - Pàgina 1</link>"
+msgid "<link href=\"text/shared/autopi/01130100.xhp\">Document Converter Page 1</link>"
+msgstr "<link href=\"text/shared/autopi/01130100.xhp\">Convertidor de documents - Pàgina 1</link>"
#. G7Zgn
#: 01130100.xhp
@@ -6767,14 +6767,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_DLGIMPORT_0_CHKLOGFILE\">Creates a log file in your work directory showing which documents have been converted.</ahelp>"
msgstr "<ahelp hid=\"HID_DLGIMPORT_0_CHKLOGFILE\">Crea un fitxer de registre en el directori de treball que mostra quins documents s'han convertit.</ahelp>"
-#. F2HRc
+#. tg5JD
#: 01130100.xhp
msgctxt ""
"01130100.xhp\n"
"par_id3149578\n"
"help.text"
-msgid "Continue to the next page of the <link href=\"text/shared/autopi/01130200.xhp\" name=\"Document Converter\">Document Converter</link>."
-msgstr "Avança a la pàgina següent del <link href=\"text/shared/autopi/01130200.xhp\" name=\"Convertidor de documents\">Convertidor de documents</link>."
+msgid "Continue to the next page of the <link href=\"text/shared/autopi/01130200.xhp\">Document Converter</link>."
+msgstr "Avança a la pàgina següent del <link href=\"text/shared/autopi/01130200.xhp\">Convertidor de documents</link>."
#. 58vGa
#: 01130200.xhp
@@ -6785,14 +6785,14 @@ msgctxt ""
msgid "Document converter continuation pages"
msgstr "Pàgines de continuació del convertidor de documents"
-#. MZWf5
+#. QMuxr
#: 01130200.xhp
msgctxt ""
"01130200.xhp\n"
"hd_id3149748\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01130200.xhp\" name=\"Document converter continuation pages\">Document converter continuation pages</link>"
-msgstr "<link href=\"text/shared/autopi/01130200.xhp\" name=\"Pàgines de continuació del convertidor de documents\">Pàgines de continuació del convertidor de documents</link>"
+msgid "<link href=\"text/shared/autopi/01130200.xhp\">Document converter continuation pages</link>"
+msgstr "<link href=\"text/shared/autopi/01130200.xhp\">Pàgines de continuació del convertidor de documents</link>"
#. Ve7Wv
#: 01130200.xhp
@@ -6965,14 +6965,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_DLGIMPORT_2_CBDOCUMENT\">Indicates that the documents are to be converted.</ahelp>"
msgstr "<ahelp hid=\"HID_DLGIMPORT_2_CBDOCUMENT\">Indica que s'han de convertir els documents.</ahelp>"
-#. dGf3F
+#. YDwV9
#: 01130200.xhp
msgctxt ""
"01130200.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "Here you can return to the main page of the <link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Document Converter Wizard</link>."
-msgstr "Ací podeu tornar a la pàgina principal de l'<link href=\"text/shared/autopi/01130000.xhp\" name=\"Auxiliar convertidor de documents\">Auxiliar convertidor de documents</link>."
+msgid "Here you can return to the main page of the <link href=\"text/shared/autopi/01130000.xhp\">Document Converter Wizard</link>."
+msgstr "Ací podeu tornar a la pàgina principal de l'<link href=\"text/shared/autopi/01130000.xhp\">Auxiliar convertidor de documents</link>."
#. ELq8D
#: 01150000.xhp
@@ -7010,14 +7010,14 @@ msgctxt ""
msgid "<variable id=\"eurokonv\"><ahelp hid=\".\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
msgstr "<variable id=\"eurokonv\"><ahelp hid=\".\">Converteix a euros les quantitats monetàries trobades als documents del $[officename] Calc, i a camps i taules de documents del $[officename] Writer.</ahelp></variable>"
-#. Air53
+#. 9JFzG
#: 01150000.xhp
msgctxt ""
"01150000.xhp\n"
"par_id3145669\n"
"help.text"
-msgid "Only closed files are converted. It is possible, however, to use the Euro Converter in an open $[officename] Calc document. In this case, a separate dialog opens. This dialog is described <link href=\"text/shared/autopi/01150000.xhp\" name=\"at the end of this section\">at the end of this section</link>."
-msgstr "Només es convertiran els fitxers tancats. Tanmateix, és possible utilitzar el Convertidor d'euros en un document obert del $[officename] Calc. En este cas, s'obri un diàleg apart. Este diàleg està descrit <link href=\"text/shared/autopi/01150000.xhp\" name=\"al final d'esta secció\">al final d'esta secció</link>."
+msgid "Only closed files are converted. It is possible, however, to use the Euro Converter in an open $[officename] Calc document. In this case, a separate dialog opens. This dialog is described <link href=\"text/shared/autopi/01150000.xhp\">at the end of this section</link>."
+msgstr "Només es convertiran els fitxers tancats. Tanmateix, és possible utilitzar el Convertidor d'euros en un document obert del $[officename] Calc. En este cas, s'obri un diàleg apart. Este diàleg està descrit <link href=\"text/shared/autopi/01150000.xhp\">al final d'esta secció</link>."
#. qBXtJ
#: 01150000.xhp
@@ -7496,14 +7496,14 @@ msgctxt ""
msgid "Address Data Source"
msgstr "Font de dades de les adreces"
-#. yj6UG
+#. UdqCV
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"hd_id3147285\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01170000.xhp\" name=\"Address Data Source\">Address Data Source</link>"
-msgstr "<link href=\"text/shared/autopi/01170000.xhp\" name=\"Font de dades d'adreces\">Font de dades de les adreces</link>"
+msgid "<link href=\"text/shared/autopi/01170000.xhp\">Address Data Source</link>"
+msgstr "<link href=\"text/shared/autopi/01170000.xhp\">Font de dades de les adreces</link>"
#. BEBQU
#: 01170000.xhp
@@ -7730,14 +7730,14 @@ msgctxt ""
msgid "Additional Settings"
msgstr "Paràmetres addicionals"
-#. jmEGH
+#. SAEvC
#: 01170200.xhp
msgctxt ""
"01170200.xhp\n"
"hd_id3154094\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01170200.xhp\" name=\"Additional Settings\">Additional Settings</link>"
-msgstr "<link href=\"text/shared/autopi/01170200.xhp\" name=\"Paràmetres addicionals\">Paràmetres addicionals</link>"
+msgid "<link href=\"text/shared/autopi/01170200.xhp\">Additional Settings</link>"
+msgstr "<link href=\"text/shared/autopi/01170200.xhp\">Paràmetres addicionals</link>"
#. DFBck
#: 01170200.xhp
@@ -7775,14 +7775,14 @@ msgctxt ""
msgid "Select Table"
msgstr "Selecciona la taula"
-#. 83gAw
+#. TUPDb
#: 01170300.xhp
msgctxt ""
"01170300.xhp\n"
"hd_id3149748\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01170300.xhp\" name=\"Select Table\">Select Table</link>"
-msgstr "<link href=\"text/shared/autopi/01170300.xhp\" name=\"Selecciona la taula\">Selecciona la taula</link>"
+msgid "<link href=\"text/shared/autopi/01170300.xhp\">Select Table</link>"
+msgstr "<link href=\"text/shared/autopi/01170300.xhp\">Selecciona la taula</link>"
#. pQydK
#: 01170300.xhp
@@ -7838,14 +7838,14 @@ msgctxt ""
msgid "Data Source Title"
msgstr "Títol de la font de dades"
-#. RGEtn
+#. BsQPs
#: 01170400.xhp
msgctxt ""
"01170400.xhp\n"
"hd_id3147000\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01170400.xhp\" name=\"Data Source Name\">Data Source Title</link>"
-msgstr "<link href=\"text/shared/autopi/01170400.xhp\" name=\"Títol de la font de dades\">Títol de la font de dades</link>"
+msgid "<link href=\"text/shared/autopi/01170400.xhp\">Data Source Title</link>"
+msgstr "<link href=\"text/shared/autopi/01170400.xhp\">Títol de la font de dades</link>"
#. CKBwu
#: 01170400.xhp
@@ -7937,14 +7937,14 @@ msgctxt ""
msgid "Field Assignment"
msgstr "Assignació de camps"
-#. 7N2S5
+#. Zq2BM
#: 01170500.xhp
msgctxt ""
"01170500.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01170500.xhp\" name=\"Field Assignment\">Field Assignment</link>"
-msgstr "<link href=\"text/shared/autopi/01170500.xhp\" name=\"Assignació de camps\">Assignació de camps</link>"
+msgid "<link href=\"text/shared/autopi/01170500.xhp\">Field Assignment</link>"
+msgstr "<link href=\"text/shared/autopi/01170500.xhp\">Assignació de camps</link>"
#. yEkbV
#: 01170500.xhp
@@ -7964,11 +7964,11 @@ msgctxt ""
msgid "Field Assignment"
msgstr "Assignació de camps"
-#. qEqfD
+#. HrTyA
#: 01170500.xhp
msgctxt ""
"01170500.xhp\n"
"par_id3149549\n"
"help.text"
-msgid "<ahelp hid=\"modules/sabpilot/ui/fieldassignpage/assign\">Opens the <link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\">Templates: Address Book Assignment</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\"modules/sabpilot/ui/fieldassignpage/assign\">Obri el diàleg <link href=\"text/shared/01/01110101.xhp\" name=\"Plantilles: Assignació de la llibreta d'adreces\">Plantilles: Assignació de la llibreta d'adreces</link>.</ahelp>"
+msgid "<ahelp hid=\"modules/sabpilot/ui/fieldassignpage/assign\">Opens the <link href=\"text/shared/01/01110101.xhp\">Templates: Address Book Assignment</link> dialog.</ahelp>"
+msgstr "<ahelp hid=\"modules/sabpilot/ui/fieldassignpage/assign\">Obri el diàleg <link href=\"text/shared/01/01110101.xhp\">Plantilles: Assignació de la llibreta d'adreces</link>.</ahelp>"
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/guide.po b/source/ca-valencia/helpcontent2/source/text/shared/guide.po
index f618ef753f9..45c3e364624 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>samples and templates</bookmark_value><bookmark_value>templates; new documents from templates</bookmark_value><bookmark_value>business cards; using templates</bookmark_value>"
msgstr "<bookmark_value>mostres i plantilles</bookmark_value><bookmark_value>plantilles; documents nous a partir de plantilles</bookmark_value><bookmark_value>targetes de visita; utilització de plantilles</bookmark_value>"
-#. wQtGF
+#. pAvDj
#: aaa_start.xhp
msgctxt ""
"aaa_start.xhp\n"
"hd_id3156324\n"
"help.text"
-msgid "<variable id=\"aaa_start\"><link href=\"text/shared/guide/aaa_start.xhp\" name=\"First Steps\">First Steps</link></variable>"
-msgstr "<variable id=\"aaa_start\"><link href=\"text/shared/guide/aaa_start.xhp\" name=\"Primers passos\">Primers passos</link></variable>"
+msgid "<variable id=\"aaa_start\"><link href=\"text/shared/guide/aaa_start.xhp\">First Steps</link></variable>"
+msgstr "<variable id=\"aaa_start\"><link href=\"text/shared/guide/aaa_start.xhp\">Primers passos</link></variable>"
#. 6HsAT
#: aaa_start.xhp
@@ -89,68 +89,68 @@ msgctxt ""
msgid "You can also use the various wizards (under the <emph>File - Wizards</emph> menu) to create your own templates, which you can use as a basis for further documents."
msgstr "També podeu utilitzar els diversos auxiliars (al menú <emph>Fitxer ▸ Auxiliars</emph>) per crear les plantilles definides per l'usuari com ara faxos i cartes, que podeu utilitzar com a base per a altres documents."
-#. QeFkV
+#. LsJEK
#: aaa_start.xhp
msgctxt ""
"aaa_start.xhp\n"
"par_id3149177\n"
"help.text"
-msgid "<link href=\"text/shared/guide/main.xhp\" name=\"Working with %PRODUCTNAME\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
-msgstr "<link href=\"text/shared/guide/main.xhp\" name=\"Treballar amb el %PRODUCTNAME\">Treballar amb el <item type=\"productname\">%PRODUCTNAME</item></link>"
+msgid "<link href=\"text/shared/guide/main.xhp\">Working with <item type=\"productname\">%PRODUCTNAME</item></link>"
+msgstr "<link href=\"text/shared/guide/main.xhp\">Treballar amb el <item type=\"productname\">%PRODUCTNAME</item></link>"
-#. tm4Rb
+#. KpQX7
#: aaa_start.xhp
msgctxt ""
"aaa_start.xhp\n"
"par_id401607339239056\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\" name=\"Working with Templates\">Working with Templates</link></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/template_styles.xhp\">Working with Templates</link></caseinline></switchinline>"
msgstr ""
-#. AJDDG
+#. GZwju
#: aaa_start.xhp
msgctxt ""
"aaa_start.xhp\n"
"par_id3149095\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/main.xhp\" name=\"Working with Text Documents\">Working with Text Documents</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/main.xhp\" name=\"Treballar amb documents de text\">Treballar amb documents de text</link></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/main.xhp\">Working with Text Documents</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/guide/main.xhp\">Treballar amb documents de text</link></caseinline></switchinline>"
-#. vHoZD
+#. s7qqR
#: aaa_start.xhp
msgctxt ""
"aaa_start.xhp\n"
"par_id3152997\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/guide/main.xhp\" name=\"Working with Spreadsheets\">Working with Spreadsheets</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/guide/main.xhp\" name=\"Treballar amb fulls de càlcul\">Treballar amb fulls de càlcul</link></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/guide/main.xhp\">Working with Spreadsheets</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/guide/main.xhp\">Treballar amb fulls de càlcul</link></caseinline></switchinline>"
-#. 2GzFq
+#. gBM62
#: aaa_start.xhp
msgctxt ""
"aaa_start.xhp\n"
"par_id3147243\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/guide/main.xhp\" name=\"Working with Presentations\">Working with Presentations</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/guide/main.xhp\" name=\"Treballar amb presentacions\">Treballar amb presentacions</link></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/guide/main.xhp\">Working with Presentations</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/guide/main.xhp\">Treballar amb presentacions</link></caseinline></switchinline>"
-#. iZ5AQ
+#. JLHV4
#: aaa_start.xhp
msgctxt ""
"aaa_start.xhp\n"
"par_id3154047\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Working with Drawings\">Working with Drawings</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/sdraw/guide/main.xhp\" name=\"Treballar amb dibuixos\">Treballar amb dibuixos</link></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/sdraw/guide/main.xhp\">Working with Drawings</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/sdraw/guide/main.xhp\">Treballar amb dibuixos</link></caseinline></switchinline>"
-#. 2o2WB
+#. wD5qU
#: aaa_start.xhp
msgctxt ""
"aaa_start.xhp\n"
"par_id3153824\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"MATH\"><link href=\"text/smath/guide/main.xhp\" name=\"Working with Formulas\">Working with Formulas</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"MATH\"><link href=\"text/smath/guide/main.xhp\" name=\"Treballar amb fórmules\">Treballar amb fórmules</link></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"MATH\"><link href=\"text/smath/guide/main.xhp\">Working with Formulas</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"MATH\"><link href=\"text/smath/guide/main.xhp\">Treballar amb fórmules</link></caseinline></switchinline>"
#. cscXN
#: accessibility.xhp
@@ -170,14 +170,14 @@ msgctxt ""
msgid "<bookmark_value>accessibility; %PRODUCTNAME features</bookmark_value>"
msgstr "<bookmark_value>accessibilitat; funcions del %PRODUCTNAME</bookmark_value>"
-#. FinNu
+#. GiryL
#: accessibility.xhp
msgctxt ""
"accessibility.xhp\n"
"hd_id3150502\n"
"help.text"
-msgid "<variable id=\"accessibility\"><link name=\"Accessibility in %PRODUCTNAME\" href=\"text/shared/guide/accessibility.xhp\">Accessibility in <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
-msgstr "<variable id=\"accessibility\"><link name=\"Accessibilitat al %PRODUCTNAME\" href=\"text/shared/guide/accessibility.xhp\">Accessibilitat al <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
+msgid "<variable id=\"accessibility\"><link href=\"text/shared/guide/accessibility.xhp\">Accessibility in <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
+msgstr "<variable id=\"accessibility\"><link href=\"text/shared/guide/accessibility.xhp\">Accessibilitat al <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
#. GvkGS
#: accessibility.xhp
@@ -188,23 +188,23 @@ msgctxt ""
msgid "The following accessibility features are part of <item type=\"productname\">%PRODUCTNAME</item>:"
msgstr "Les funcions d'accessibilitat següents formen part del <item type=\"productname\">%PRODUCTNAME</item>:"
-#. meQqy
+#. PmAwK
#: accessibility.xhp
msgctxt ""
"accessibility.xhp\n"
"par_id3153894\n"
"help.text"
-msgid "Support of <link href=\"text/shared/guide/assistive.xhp\" name=\"external devices and applications\">external devices and applications</link>"
-msgstr "Compatibilitat amb <link href=\"text/shared/guide/assistive.xhp\" name=\"dispositius i aplicacions externs\">dispositius i aplicacions externs</link>"
+msgid "Support of <link href=\"text/shared/guide/assistive.xhp\">external devices and applications</link>"
+msgstr "Compatibilitat amb <link href=\"text/shared/guide/assistive.xhp\">dispositius i aplicacions externs</link>"
-#. mXJAj
+#. Yofr4
#: accessibility.xhp
msgctxt ""
"accessibility.xhp\n"
"par_id3155552\n"
"help.text"
-msgid "Access to all functions by keyboard. The keys that replace the mouse actions are listed in the <link name=\"%PRODUCTNAME Help\" href=\"text/shared/guide/keyboard.xhp\"><item type=\"productname\">%PRODUCTNAME</item> Help</link>"
-msgstr "Accés a totes les funcions amb el teclat. Les tecles que reemplacen les accions del ratolí es llisten a l'<link name=\"Ajuda del %PRODUCTNAME\" href=\"text/shared/guide/keyboard.xhp\">Ajuda del <item type=\"productname\">%PRODUCTNAME</item></link>"
+msgid "Access to all functions by keyboard. The keys that replace the mouse actions are listed in the <link href=\"text/shared/guide/keyboard.xhp\"><item type=\"productname\">%PRODUCTNAME</item> Help</link>"
+msgstr "Accés a totes les funcions amb el teclat. Les tecles que reemplacen les accions del ratolí es llisten a l'<link href=\"text/shared/guide/keyboard.xhp\">Ajuda del <item type=\"productname\">%PRODUCTNAME</item></link>"
#. nbtSh
#: accessibility.xhp
@@ -242,32 +242,32 @@ msgctxt ""
msgid "Please note that accessibility support relies on Java technology for communications with assistive technology tools. This means that the first program startup may take a few seconds longer, because the Java runtime environment has to be started as well."
msgstr "Tingueu en compte que l'assistència de l'accessibilitat es basa en la tecnologia Java per a les comunicacions amb ajudes tècniques. Això significa que el primer inici del programa pot trigar uns quants segons més perquè l'entorn d'execució del Java també s'ha d'iniciar."
-#. yZ56f
+#. sXx7N
#: accessibility.xhp
msgctxt ""
"accessibility.xhp\n"
"par_id3149578\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link name=\"%PRODUCTNAME - View\" href=\"text/shared/optionen/01010800.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - View</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link name=\"%PRODUCTNAME - Visualització\" href=\"text/shared/optionen/01010800.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - Visualització</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010800.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - View</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010800.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - Visualització</link>"
-#. XNZiF
+#. AMAw3
#: accessibility.xhp
msgctxt ""
"accessibility.xhp\n"
"par_id3150084\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link name=\"%PRODUCTNAME - Application Colors\" href=\"text/shared/optionen/01012000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - Application Colors</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link name=\"%PRODUCTNAME ▸ Colors de l'aplicació\" href=\"text/shared/optionen/01012000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> ▸ Colors de l'aplicació</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - Application Colors</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferències</caseinline><defaultinline>Eines ▸ Opcions</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01012000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> ▸ Colors de l'aplicació</link>"
-#. EGCtG
+#. o8rqD
#: accessibility.xhp
msgctxt ""
"accessibility.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link name=\"%PRODUCTNAME - Accessibility\" href=\"text/shared/optionen/01013000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - Accessibility</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link name=\"%PRODUCTNAME - Accessibilitat\" href=\"text/shared/optionen/01013000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - Accessibilitat</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01013000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - Accessibility</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01013000.xhp\"><item type=\"productname\">%PRODUCTNAME</item> - Accessibilitat</link>"
#. EN8tH
#: active_help_on_off.xhp
@@ -287,14 +287,14 @@ msgctxt ""
msgid "<bookmark_value>Help; extended tips on/off</bookmark_value><bookmark_value>extended tips in Help</bookmark_value><bookmark_value>tips;extended tips in Help</bookmark_value><bookmark_value>tooltips;extended tips</bookmark_value><bookmark_value>activating;extended help tips</bookmark_value>"
msgstr "<bookmark_value>Ajuda; consells ampliats activats/desactivats</bookmark_value><bookmark_value>consells ampliats a l'Ajuda</bookmark_value><bookmark_value>consells;consells ampliats a l'Ajuda</bookmark_value><bookmark_value>indicadors de funció;consells ampliats</bookmark_value><bookmark_value>activació;consells ampliats de l'Ajuda</bookmark_value>"
-#. XeZ7P
+#. syrD2
#: active_help_on_off.xhp
msgctxt ""
"active_help_on_off.xhp\n"
"hd_id3156414\n"
"help.text"
-msgid "<variable id=\"active_help_on_off\"><link href=\"text/shared/guide/active_help_on_off.xhp\" name=\"Turning Extended Tips On and Off\">Turning Extended Tips On and Off</link></variable>"
-msgstr "<variable id=\"active_help_on_off\"><link href=\"text/shared/guide/active_help_on_off.xhp\" name=\"Activació i desactivació dels consells ampliats\">Activació i desactivació dels consells ampliats</link></variable>"
+msgid "<variable id=\"active_help_on_off\"><link href=\"text/shared/guide/active_help_on_off.xhp\">Turning Extended Tips On and Off</link></variable>"
+msgstr "<variable id=\"active_help_on_off\"><link href=\"text/shared/guide/active_help_on_off.xhp\">Activació i desactivació dels consells ampliats</link></variable>"
#. Q57zF
#: active_help_on_off.xhp
@@ -377,14 +377,14 @@ msgctxt ""
msgid "<bookmark_value>ActiveX control</bookmark_value><bookmark_value>installing;ActiveX control</bookmark_value><bookmark_value>Internet; Internet Explorer for displaying $[officename] documents</bookmark_value><bookmark_value>$[officename] documents;viewing and editing in Internet Explorer</bookmark_value><bookmark_value>viewing;%PRODUCTNAME documents in Internet Explorer</bookmark_value><bookmark_value>editing;%PRODUCTNAME documents in Internet Explorer</bookmark_value>"
msgstr "<bookmark_value>control ActiveX</bookmark_value><bookmark_value>instal·lació;control ActiveX</bookmark_value><bookmark_value>Internet; Internet Explorer per mostrar documents del $[officename]</bookmark_value><bookmark_value>documents del $[officename];visualització i edició amb l'Internet Explorer</bookmark_value><bookmark_value>visualització;documents del %PRODUCTNAME a l'Internet Explorer</bookmark_value><bookmark_value>edició;documents del %PRODUCTNAME a l'Internet Explorer</bookmark_value>"
-#. vcxkM
+#. gYmyS
#: activex.xhp
msgctxt ""
"activex.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<variable id=\"activex\"><link href=\"text/shared/guide/activex.xhp\" name=\"ActiveX Control to Display Documents in Internet Explorer\">ActiveX Control to Display Documents in Internet Explorer</link></variable>"
-msgstr "<variable id=\"activex\"><link href=\"text/shared/guide/activex.xhp\" name=\"Control ActiveX per visualitzar documents a l'Internet Explorer\">Control ActiveX per visualitzar documents a l'Internet Explorer</link></variable>"
+msgid "<variable id=\"activex\"><link href=\"text/shared/guide/activex.xhp\">ActiveX Control to Display Documents in Internet Explorer</link></variable>"
+msgstr "<variable id=\"activex\"><link href=\"text/shared/guide/activex.xhp\">Control ActiveX per visualitzar documents a l'Internet Explorer</link></variable>"
#. tSxBG
#: activex.xhp
@@ -557,14 +557,14 @@ msgctxt ""
msgid "<bookmark_value>accessibility; $[officename] assistive technology</bookmark_value><bookmark_value>assistive technology in $[officename]</bookmark_value><bookmark_value>screen readers</bookmark_value><bookmark_value>screen magnifiers</bookmark_value><bookmark_value>magnifiers</bookmark_value>"
msgstr "<bookmark_value>accessibilitat; ajudes tècniques del $[officename]</bookmark_value><bookmark_value>ajudes tècniques al $[officename]</bookmark_value><bookmark_value>lectors de pantalla</bookmark_value><bookmark_value>magnificadors de pantalla</bookmark_value><bookmark_value>magnificadors</bookmark_value>"
-#. kUCoE
+#. PQ7FT
#: assistive.xhp
msgctxt ""
"assistive.xhp\n"
"hd_id3147399\n"
"help.text"
-msgid "<variable id=\"assistive\"><link href=\"text/shared/guide/assistive.xhp\" name=\"Assistive Tools in $[officename]\">Assistive Tools in $[officename]</link></variable>"
-msgstr "<variable id=\"assistive\"><link href=\"text/shared/guide/assistive.xhp\" name=\"Eines d'assistència al $[officename]\">Eines d'assistència al $[officename]</link></variable>"
+msgid "<variable id=\"assistive\"><link href=\"text/shared/guide/assistive.xhp\">Assistive Tools in $[officename]</link></variable>"
+msgstr "<variable id=\"assistive\"><link href=\"text/shared/guide/assistive.xhp\">Eines d'assistència al $[officename]</link></variable>"
#. c7ceE
#: assistive.xhp
@@ -575,14 +575,14 @@ msgctxt ""
msgid "$[officename] supports some assistive technology tools like screen magnification software, screen readers, and on-screen keyboards."
msgstr "El $[officename] admet diverses eines de tecnologia d'assistència, com ara el programari d'amplació de pantalla, els lectors de pantalla i els teclats virtuals."
-#. vXVSF
+#. 83o65
#: assistive.xhp
msgctxt ""
"assistive.xhp\n"
"par_id8847010\n"
"help.text"
-msgid "A current list of supported assistive tools can be found on the Wiki at <link href=\"https://wiki.documentfoundation.org/Accessibility\" name=\"wiki.documentfoundation.org Accessibility\">https://wiki.documentfoundation.org/Accessibility</link>."
-msgstr "Podeu trobar al wiki una llista d'eines d'accessibilitat suportades, a <link href=\"https://wiki.documentfoundation.org/Accessibility\" name=\"wiki.documentfoundation.org Accessibility\">https://wiki.documentfoundation.org/Accessibility</link>."
+msgid "A current list of supported assistive tools can be found on the Wiki at <link href=\"https://wiki.documentfoundation.org/Accessibility\">https://wiki.documentfoundation.org/Accessibility</link>."
+msgstr "Podeu trobar al wiki una llista d'eines d'accessibilitat suportades, a <link href=\"https://wiki.documentfoundation.org/Accessibility\">https://wiki.documentfoundation.org/Accessibility</link>."
#. vENZ6
#: assistive.xhp
@@ -629,32 +629,32 @@ msgctxt ""
msgid "Screen readers allow visually impaired users to access $[officename] with text-to-speech and Braille displays."
msgstr "Els lectors de pantalla permeten que els usuaris invidents accedisquen al $[officename] amb text a veu i pantalles de Braille."
-#. TFxR8
+#. MaHFF
#: assistive.xhp
msgctxt ""
"assistive.xhp\n"
"par_id3152933\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - View\">$[officename] - View</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - Visualització\">$[officename] - Visualització</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010800.xhp\">$[officename] - View</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010800.xhp\">$[officename] - Visualització</link>"
-#. d4umP
+#. Xn7Xj
#: assistive.xhp
msgctxt ""
"assistive.xhp\n"
"par_id3155430\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Application Colors\">$[officename] - Application Colors</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Colors de l'aplicació\">$[officename] - Colors de l'aplicació</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\">$[officename] - Application Colors</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\">$[officename] - Colors de l'aplicació</link>"
-#. MxYao
+#. bukAk
#: assistive.xhp
msgctxt ""
"assistive.xhp\n"
"par_id3148617\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01013000.xhp\" name=\"$[officename] - Accessibility\">$[officename] - Accessibility</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01013000.xhp\" name=\"$[officename] - Accessibilitat\">$[officename] - Accessibilitat</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01013000.xhp\">$[officename] - Accessibility</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01013000.xhp\">$[officename] - Accessibilitat</link>"
#. FFtrt
#: auto_redact.xhp
@@ -674,13 +674,13 @@ msgctxt ""
msgid "<bookmark_value>spreadsheet; auto-redact</bookmark_value> <bookmark_value>presentations; auto-redact</bookmark_value> <bookmark_value>text documents; auto-redact contents</bookmark_value> <bookmark_value>automatic redaction</bookmark_value>"
msgstr ""
-#. ycDxe
+#. QLFCn
#: auto_redact.xhp
msgctxt ""
"auto_redact.xhp\n"
"hd_id171562795247122\n"
"help.text"
-msgid "<variable id=\"autoredact_h1\"><link href=\"text/shared/guide/auto_redact.xhp\" name=\"auto_redact\">Auto-Redact</link></variable>"
+msgid "<variable id=\"autoredact_h1\"><link href=\"text/shared/guide/auto_redact.xhp\">Auto-Redact</link></variable>"
msgstr ""
#. wiGmP
@@ -800,13 +800,13 @@ msgctxt ""
msgid "Continue redacting other portions of the generated document and then print or export it to PDF."
msgstr ""
-#. AGQiE
+#. CLLRn
#: auto_redact.xhp
msgctxt ""
"auto_redact.xhp\n"
"par_id581626101004089\n"
"help.text"
-msgid "Refer to the help page <link href=\"text/shared/01/02100001.xhp\" name=\"regex_link\">List of Regular Expressions</link> to learn more about how to use regular expressions in %PRODUCTNAME."
+msgid "Refer to the help page <link href=\"text/shared/01/02100001.xhp\">List of Regular Expressions</link> to learn more about how to use regular expressions in %PRODUCTNAME."
msgstr ""
#. AE55E
@@ -863,23 +863,23 @@ msgctxt ""
msgid "<bookmark_value>AutoCorrect function; URL recognition</bookmark_value> <bookmark_value>recognizing URLs automatically</bookmark_value> <bookmark_value>automatic hyperlink formatting</bookmark_value> <bookmark_value>URL;turning off URL recognition</bookmark_value> <bookmark_value>hyperlinks;turning off automatic recognition</bookmark_value> <bookmark_value>links;turning off automatic recognition</bookmark_value> <bookmark_value>predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion</bookmark_value>"
msgstr "<bookmark_value>funció de correcció automàtica; reconeixement d'URL</bookmark_value><bookmark_value>reconeixement d'URL automàtic</bookmark_value><bookmark_value>formatació d'enllaç automàtic</bookmark_value><bookmark_value>enllaços;desactivació del reconeixement automàtic</bookmark_value><bookmark_value>text predictiu, vegeu també funció de correcció automàtica/funció d'emplenament automàtic/funció d'entrada automàtica/compleció de paraules/compleció de text</bookmark_value>"
-#. ALsJC
+#. Gz7vG
#: autocorr_url.xhp
msgctxt ""
"autocorr_url.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<variable id=\"autocorr_url\"><link href=\"text/shared/guide/autocorr_url.xhp\" name=\"Turning off Automatic URL Recognition\">Turning off Automatic URL Recognition</link></variable>"
-msgstr "<variable id=\"autocorr_url\"><link href=\"text/shared/guide/autocorr_url.xhp\" name=\"Desactivació del reconeixement automàtic d'URL\">Desactivació del reconeixement automàtic d'URL</link></variable>"
+msgid "<variable id=\"autocorr_url\"><link href=\"text/shared/guide/autocorr_url.xhp\">Turning off Automatic URL Recognition</link></variable>"
+msgstr "<variable id=\"autocorr_url\"><link href=\"text/shared/guide/autocorr_url.xhp\">Desactivació del reconeixement automàtic d'URL</link></variable>"
-#. DAJ2X
+#. YC2Pp
#: autocorr_url.xhp
msgctxt ""
"autocorr_url.xhp\n"
"par_id3166410\n"
"help.text"
-msgid "When you enter text, $[officename] automatically recognizes a word that may be a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> and replaces the word with a hyperlink. $[officename] formats the hyperlink with direct font attributes (color and underline) the properties of which are obtained from certain Character Styles."
-msgstr "Quan introduïu text, el $[officename] reconeix automàticament una paraula que pot ser un <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> i reemplaça la paraula amb un enllaç. El $[officename] formata l'enllaç amb atributs de tipus de lletra directes (color i subratllat), les propietats dels quals s'obtenen de determinats Estils de caràcter."
+msgid "When you enter text, $[officename] automatically recognizes a word that may be a <link href=\"text/shared/00/00000002.xhp#url\">URL</link> and replaces the word with a hyperlink. $[officename] formats the hyperlink with direct font attributes (color and underline) the properties of which are obtained from certain Character Styles."
+msgstr "Quan introduïu text, el $[officename] reconeix automàticament una paraula que pot ser un <link href=\"text/shared/00/00000002.xhp#url\">URL</link> i reemplaça la paraula amb un enllaç. El $[officename] formata l'enllaç amb atributs de tipus de lletra directes (color i subratllat), les propietats dels quals s'obtenen de determinats Estils de caràcter."
#. CtqWL
#: autocorr_url.xhp
@@ -1061,14 +1061,14 @@ msgctxt ""
msgid "<bookmark_value>Gallery; hiding/showing</bookmark_value><bookmark_value>data source view; showing</bookmark_value><bookmark_value>Navigator; docking</bookmark_value><bookmark_value>Styles window; docking</bookmark_value><bookmark_value>windows; hiding/showing/docking</bookmark_value><bookmark_value>docking; windows</bookmark_value><bookmark_value>undocking windows</bookmark_value><bookmark_value>showing;docked windows</bookmark_value><bookmark_value>hiding;docked windows</bookmark_value>"
msgstr "<bookmark_value>Galeria; amaga/mostra</bookmark_value><bookmark_value>visualització de la font de dades; mostra</bookmark_value><bookmark_value>Navegador; acoblament</bookmark_value><bookmark_value>finestra Estils; acoblament</bookmark_value><bookmark_value>finestres; amaga/mostra/acobla</bookmark_value><bookmark_value>acoblament; finestres</bookmark_value><bookmark_value>desacoblament de finestres</bookmark_value><bookmark_value>mostra;finestres acoblades</bookmark_value><bookmark_value>amaga;finestres acoblades</bookmark_value>"
-#. 4TjJd
+#. 7nCuT
#: autohide.xhp
msgctxt ""
"autohide.xhp\n"
"hd_id3145346\n"
"help.text"
-msgid "<variable id=\"autohide\"><link href=\"text/shared/guide/autohide.xhp\" name=\"Showing, Docking and Hiding Windows\">Showing, Docking and Hiding Windows</link></variable>"
-msgstr "<variable id=\"autohide\"><link href=\"text/shared/guide/autohide.xhp\" name=\"Mostrar, amagar i acoblar finestres\">Mostrar, amagar i acoblar finestres</link></variable>"
+msgid "<variable id=\"autohide\"><link href=\"text/shared/guide/autohide.xhp\">Showing, Docking and Hiding Windows</link></variable>"
+msgstr "<variable id=\"autohide\"><link href=\"text/shared/guide/autohide.xhp\">Mostrar, amagar i acoblar finestres</link></variable>"
#. KEnze
#: autohide.xhp
@@ -1169,13 +1169,13 @@ msgctxt ""
msgid "<bookmark_value>backgrounds; defining colors/pictures</bookmark_value><bookmark_value>colors; backgrounds</bookmark_value><bookmark_value>pictures; backgrounds</bookmark_value><bookmark_value>pages; backgrounds in all applications</bookmark_value><bookmark_value>watermarks</bookmark_value><bookmark_value>text, see also text documents, paragraphs and characters</bookmark_value>"
msgstr "<bookmark_value>fons; definició de colors/imatges</bookmark_value><bookmark_value>colors; fons</bookmark_value><bookmark_value>imatges; fons</bookmark_value><bookmark_value>pàgines; fons en totes les aplicacions</bookmark_value><bookmark_value>filigranes</bookmark_value><bookmark_value>text, vegeu també documents de text, paràgrafs i caràcters</bookmark_value>"
-#. C7HBu
+#. X2ePi
#: background.xhp
msgctxt ""
"background.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<variable id=\"background\"><link href=\"text/shared/guide/background.xhp\" name=\"Defining Graphics or Colors in the Background of Pages (Watermark)\">Defining Graphics or Colors in the Background of Pages (Watermark)</link></variable>"
+msgid "<variable id=\"background\"><link href=\"text/shared/guide/background.xhp\">Defining Graphics or Colors in the Background of Pages (Watermark)</link></variable>"
msgstr ""
#. Fa7Pn
@@ -1205,13 +1205,13 @@ msgctxt ""
msgid "In spreadsheets this background appears only in the print behind the cells not formatted elsewhere."
msgstr "Als fulls de càlcul este fons només apareix a la impressió darrere de les cel·les que no estan formatades enlloc més."
-#. v5EAG
+#. RSt23
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3156180\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\"><emph>Area</emph> tab page</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\"><emph>Area</emph> tab page</link>"
msgstr ""
#. BDPLL
@@ -1250,14 +1250,14 @@ msgctxt ""
msgid "<bookmark_value>borders, see also frames</bookmark_value><bookmark_value>paragraphs; defining borders</bookmark_value><bookmark_value>borders; for paragraphs</bookmark_value><bookmark_value>frames; around paragraphs</bookmark_value><bookmark_value>inserting;paragraph borders</bookmark_value><bookmark_value>defining;paragraph borders</bookmark_value>"
msgstr "<bookmark_value>vores, vegeu també marcs</bookmark_value><bookmark_value>paràgrafs; definició de vores</bookmark_value><bookmark_value>vores; per a paràgrafs</bookmark_value><bookmark_value>marcs; al voltant de paràgrafs</bookmark_value><bookmark_value>inserció;vores de paràgrafs</bookmark_value><bookmark_value>definició;vores de paràgraf</bookmark_value>"
-#. pCpXn
+#. 4sRpK
#: border_paragraph.xhp
msgctxt ""
"border_paragraph.xhp\n"
"hd_id3147571\n"
"help.text"
-msgid "<variable id=\"border_paragraph\"><link href=\"text/shared/guide/border_paragraph.xhp\" name=\"Defining Borders for Paragraphs\">Defining Borders for Paragraphs</link> </variable>"
-msgstr "<variable id=\"border_paragraph\"><link href=\"text/shared/guide/border_paragraph.xhp\" name=\"Definició de vores de paràgrafs\">Definició de vores de paràgrafs</link> </variable>"
+msgid "<variable id=\"border_paragraph\"><link href=\"text/shared/guide/border_paragraph.xhp\">Defining Borders for Paragraphs</link> </variable>"
+msgstr "<variable id=\"border_paragraph\"><link href=\"text/shared/guide/border_paragraph.xhp\">Definició de vores de paràgrafs</link> </variable>"
#. X2e8c
#: border_paragraph.xhp
@@ -1403,14 +1403,14 @@ msgctxt ""
msgid "<bookmark_value>tables in text; defining borders</bookmark_value><bookmark_value>tables in spreadsheets;defining borders</bookmark_value><bookmark_value>borders; for tables</bookmark_value><bookmark_value>frames; around tables</bookmark_value><bookmark_value>defining;table borders</bookmark_value>"
msgstr "<bookmark_value>taules en text; definició de vores</bookmark_value><bookmark_value>taules en fulls de càlcul;definició de vores</bookmark_value><bookmark_value>vores; per a taules</bookmark_value><bookmark_value>marcs; al voltant de taules</bookmark_value><bookmark_value>definició;vores de taula</bookmark_value>"
-#. ZHLMo
+#. Bymdk
#: border_table.xhp
msgctxt ""
"border_table.xhp\n"
"hd_id3155805\n"
"help.text"
-msgid "<variable id=\"border_table\"><link href=\"text/shared/guide/border_table.xhp\" name=\"Defining Borders for Tables and Table Cells\">Defining Borders for Tables and Table Cells</link></variable>"
-msgstr "<variable id=\"border_table\"><link href=\"text/shared/guide/border_table.xhp\" name=\"Definició de vores per a taules i cel·les d'una taula\">Definició de vores per a taules i cel·les d'una taula</link></variable>"
+msgid "<variable id=\"border_table\"><link href=\"text/shared/guide/border_table.xhp\">Defining Borders for Tables and Table Cells</link></variable>"
+msgstr "<variable id=\"border_table\"><link href=\"text/shared/guide/border_table.xhp\">Definició de vores per a taules i cel·les d'una taula</link></variable>"
#. kvcWY
#: border_table.xhp
@@ -1691,14 +1691,14 @@ msgctxt ""
msgid "<bookmark_value>titles; changing</bookmark_value><bookmark_value>changing;document titles</bookmark_value><bookmark_value>documents; changing titles</bookmark_value>"
msgstr "<bookmark_value>títols; canvi</bookmark_value><bookmark_value>canvi;títols de document</bookmark_value><bookmark_value>documents; canvi de títols</bookmark_value>"
-#. GCwzV
+#. 6Dns2
#: change_title.xhp
msgctxt ""
"change_title.xhp\n"
"hd_id3156324\n"
"help.text"
-msgid "<variable id=\"change_title\"><link href=\"text/shared/guide/change_title.xhp\" name=\"Changing the Title of a Document\">Changing the Title of a Document</link></variable>"
-msgstr "<variable id=\"change_title\"><link href=\"text/shared/guide/change_title.xhp\" name=\"Canvi del títol d'un document\">Canvi del títol d'un document</link></variable>"
+msgid "<variable id=\"change_title\"><link href=\"text/shared/guide/change_title.xhp\">Changing the Title of a Document</link></variable>"
+msgstr "<variable id=\"change_title\"><link href=\"text/shared/guide/change_title.xhp\">Canvi del títol d'un document</link></variable>"
#. mCrF9
#: change_title.xhp
@@ -1745,14 +1745,14 @@ msgctxt ""
msgid "Type the new title in the <emph>Title</emph> box and click <emph>OK</emph>."
msgstr "Escriviu el títol nou al quadre <emph>Títol</emph> i feu clic a <emph>D'acord</emph>."
-#. tYjrD
+#. UJgdf
#: change_title.xhp
msgctxt ""
"change_title.xhp\n"
"par_id3163802\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Document Properties\">Document Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Propietats del document\">Propietats del document</link>"
+msgid "<link href=\"text/shared/01/01100000.xhp\">Document Properties</link>"
+msgstr "<link href=\"text/shared/01/01100000.xhp\">Propietats del document</link>"
#. d3bkE
#: chart_axis.xhp
@@ -1772,14 +1772,14 @@ msgctxt ""
msgid "<bookmark_value>charts; editing axes</bookmark_value><bookmark_value>axes in charts</bookmark_value><bookmark_value>editing; chart axes</bookmark_value><bookmark_value>formatting; axes in charts</bookmark_value>"
msgstr "<bookmark_value>diagrames; edició dels eixos</bookmark_value><bookmark_value>eixos en diagrames</bookmark_value><bookmark_value>edició; eixos d'un diagrama</bookmark_value><bookmark_value>formatació; eixos en diagrames</bookmark_value>"
-#. DAXCR
+#. ZrXFS
#: chart_axis.xhp
msgctxt ""
"chart_axis.xhp\n"
"hd_id3155555\n"
"help.text"
-msgid "<variable id=\"chart_axis\"><link href=\"text/shared/guide/chart_axis.xhp\" name=\"Editing Chart Axes\">Editing Chart Axes</link></variable>"
-msgstr "<variable id=\"chart_axis\"><link href=\"text/shared/guide/chart_axis.xhp\" name=\"Edició dels eixos d'un diagrama\">Edició dels eixos d'un diagrama</link></variable>"
+msgid "<variable id=\"chart_axis\"><link href=\"text/shared/guide/chart_axis.xhp\">Editing Chart Axes</link></variable>"
+msgstr "<variable id=\"chart_axis\"><link href=\"text/shared/guide/chart_axis.xhp\">Edició dels eixos d'un diagrama</link></variable>"
#. NXWEC
#: chart_axis.xhp
@@ -1835,14 +1835,14 @@ msgctxt ""
msgid "Click <emph>OK</emph>. In your document, click outside the chart to exit chart editing mode."
msgstr "Feu clic a <emph>D'acord</emph>. Al document, feu clic a fora del diagrama per eixir del mode d'edició del diagrama."
-#. 46ssw
+#. QzS9F
#: chart_axis.xhp
msgctxt ""
"chart_axis.xhp\n"
"par_id3147335\n"
"help.text"
-msgid "<link href=\"text/schart/01/05010000.xhp\" name=\"Format - Object properties\">Format - Object properties</link>"
-msgstr "<link href=\"text/schart/01/05010000.xhp\" name=\"Format - Propietats de l'objecte\">Format - Propietats de l'objecte</link>"
+msgid "<link href=\"text/schart/01/05010000.xhp\">Format - Object properties</link>"
+msgstr "<link href=\"text/schart/01/05010000.xhp\">Format - Propietats de l'objecte</link>"
#. 5q346
#: chart_barformat.xhp
@@ -1862,14 +1862,14 @@ msgctxt ""
msgid "<bookmark_value>charts; bars with textures</bookmark_value><bookmark_value>textures;on chart bars</bookmark_value><bookmark_value>inserting;textures on chart bars</bookmark_value>"
msgstr "<bookmark_value>diagrames; barres amb textures</bookmark_value><bookmark_value>textures;a les barres dels diagrames</bookmark_value><bookmark_value>inserció;textures a les barres de diagrama</bookmark_value>"
-#. E7gGZ
+#. fzEsA
#: chart_barformat.xhp
msgctxt ""
"chart_barformat.xhp\n"
"hd_id3149798\n"
"help.text"
-msgid "<variable id=\"chart_barformat\"><link href=\"text/shared/guide/chart_barformat.xhp\" name=\"Adding Texture to Chart Bars\">Adding Texture to Chart Bars</link></variable>"
-msgstr "<variable id=\"chart_barformat\"><link href=\"text/shared/guide/chart_barformat.xhp\" name=\"Addició d'una textura a les barres d'un diagrama\">Addició d'una textura a les barres d'un diagrama</link></variable>"
+msgid "<variable id=\"chart_barformat\"><link href=\"text/shared/guide/chart_barformat.xhp\">Adding Texture to Chart Bars</link></variable>"
+msgstr "<variable id=\"chart_barformat\"><link href=\"text/shared/guide/chart_barformat.xhp\">Addició d'una textura a les barres d'un diagrama</link></variable>"
#. 3ZmxR
#: chart_barformat.xhp
@@ -1943,14 +1943,14 @@ msgctxt ""
msgid "<bookmark_value>charts; inserting</bookmark_value><bookmark_value>plotting data as charts</bookmark_value><bookmark_value>inserting; charts</bookmark_value><bookmark_value>spreadsheets; inserting charts</bookmark_value><bookmark_value>charts; editing data</bookmark_value><bookmark_value>editing; chart data</bookmark_value>"
msgstr "<bookmark_value>diagrames; inserció</bookmark_value><bookmark_value>traçar dades com a diagrames</bookmark_value><bookmark_value>inserció; diagrames</bookmark_value><bookmark_value>fulls de càlcul; inserció de diagrames</bookmark_value><bookmark_value>diagrames; edició de dades</bookmark_value><bookmark_value>edició; dades d'un diagrama</bookmark_value>"
-#. DNfwg
+#. 2UDDc
#: chart_insert.xhp
msgctxt ""
"chart_insert.xhp\n"
"hd_id3153910\n"
"help.text"
-msgid "<variable id=\"chart_insert\"><link href=\"text/shared/guide/chart_insert.xhp\" name=\"Inserting Charts\">Inserting Charts</link></variable>"
-msgstr "<variable id=\"chart_insert\"><link href=\"text/shared/guide/chart_insert.xhp\" name=\"Inserció de diagrames\">Inserció de diagrames</link></variable>"
+msgid "<variable id=\"chart_insert\"><link href=\"text/shared/guide/chart_insert.xhp\">Inserting Charts</link></variable>"
+msgstr "<variable id=\"chart_insert\"><link href=\"text/shared/guide/chart_insert.xhp\">Inserció de diagrames</link></variable>"
#. u6Vsh
#: chart_insert.xhp
@@ -2141,14 +2141,14 @@ msgctxt ""
msgid "In Writer, Draw or Impress, choose <emph>Insert - Chart</emph> to insert a chart based on default data."
msgstr ""
-#. PXCQp
+#. kVMbn
#: chart_insert.xhp
msgctxt ""
"chart_insert.xhp\n"
"par_id3152960\n"
"help.text"
-msgid "You can change the default data values by double-clicking on the chart and then choosing <link href=\"text/schart/01/03010000.xhp\" name=\"View - Chart Data Table\"><emph>View - Chart Data Table</emph></link>."
-msgstr "Podeu canviar els valors de dades per defecte fent doble clic al diagrama i seleccionant <link href=\"text/schart/01/03010000.xhp\" name=\"Visualitza - Taula de dades del diagrama\"><emph>Visualitza - Taula de dades del diagrama</emph></link>."
+msgid "You can change the default data values by double-clicking on the chart and then choosing <link href=\"text/schart/01/03010000.xhp\"><emph>View - Chart Data Table</emph></link>."
+msgstr "Podeu canviar els valors de dades per defecte fent doble clic al diagrama i seleccionant <link href=\"text/schart/01/03010000.xhp\"><emph>Visualitza - Taula de dades del diagrama</emph></link>."
#. uWC3o
#: chart_legend.xhp
@@ -2168,14 +2168,14 @@ msgctxt ""
msgid "<bookmark_value>charts; editing legends</bookmark_value><bookmark_value>legends; charts</bookmark_value><bookmark_value>editing; chart legends</bookmark_value><bookmark_value>formatting; chart legends</bookmark_value>"
msgstr "<bookmark_value>diagrames; edició de llegendes</bookmark_value><bookmark_value>llegendes; diagrames</bookmark_value><bookmark_value>edició; llegendes d'un diagrama</bookmark_value><bookmark_value>formatació; llegendes d'un diagrama</bookmark_value>"
-#. FzqmL
+#. aCPwF
#: chart_legend.xhp
msgctxt ""
"chart_legend.xhp\n"
"hd_id3147291\n"
"help.text"
-msgid "<variable id=\"chart_legend\"><link href=\"text/shared/guide/chart_legend.xhp\" name=\"Editing Chart Legends\">Editing Chart Legends</link></variable>"
-msgstr "<variable id=\"chart_legend\"><link href=\"text/shared/guide/chart_legend.xhp\" name=\"Edició de les llegendes d'un diagrama\">Edició de les llegendes d'un diagrama</link></variable>"
+msgid "<variable id=\"chart_legend\"><link href=\"text/shared/guide/chart_legend.xhp\">Editing Chart Legends</link></variable>"
+msgstr "<variable id=\"chart_legend\"><link href=\"text/shared/guide/chart_legend.xhp\">Edició de les llegendes d'un diagrama</link></variable>"
#. EUSW6
#: chart_legend.xhp
@@ -2231,14 +2231,14 @@ msgctxt ""
msgid "To select the legend, first double-click on the chart (see step 1), then click on the legend. You can now move the legend within the chart using the mouse."
msgstr "Per seleccionar la llegenda, primer feu doble clic al diagrama (vegeu el pas 1) i, a continuació, feu clic a la llegenda. Ara podeu moure la llegenda a dins del diagrama amb el ratolí."
-#. oQEnL
+#. R3cmE
#: chart_legend.xhp
msgctxt ""
"chart_legend.xhp\n"
"par_id3154347\n"
"help.text"
-msgid "<link href=\"text/schart/01/05010000.xhp\" name=\"Format - Object Properties\">Format - Object Properties</link>"
-msgstr "<link href=\"text/schart/01/05010000.xhp\" name=\"Format - Propietats de l'objecte\">Format - Propietats de l'objecte</link>"
+msgid "<link href=\"text/schart/01/05010000.xhp\">Format - Object Properties</link>"
+msgstr "<link href=\"text/schart/01/05010000.xhp\">Format - Propietats de l'objecte</link>"
#. BqTmm
#: chart_title.xhp
@@ -2258,14 +2258,14 @@ msgctxt ""
msgid "<bookmark_value>charts; editing titles</bookmark_value><bookmark_value>editing; chart titles</bookmark_value><bookmark_value>titles; editing in charts</bookmark_value>"
msgstr "<bookmark_value>diagrames; edició de títols</bookmark_value><bookmark_value>edició; títols de diagrames</bookmark_value><bookmark_value>títols; edició en diagrames</bookmark_value>"
-#. t7GTE
+#. LymvF
#: chart_title.xhp
msgctxt ""
"chart_title.xhp\n"
"hd_id3156136\n"
"help.text"
-msgid "<variable id=\"chart_title\"><link href=\"text/shared/guide/chart_title.xhp\" name=\"Editing Chart Titles\">Editing Chart Titles</link></variable>"
-msgstr "<variable id=\"chart_title\"><link href=\"text/shared/guide/chart_title.xhp\" name=\"Edició de títols d'un diagrama\">Edició de títols d'un diagrama</link></variable>"
+msgid "<variable id=\"chart_title\"><link href=\"text/shared/guide/chart_title.xhp\">Editing Chart Titles</link></variable>"
+msgstr "<variable id=\"chart_title\"><link href=\"text/shared/guide/chart_title.xhp\">Edició de títols d'un diagrama</link></variable>"
#. 7KQts
#: chart_title.xhp
@@ -2348,14 +2348,14 @@ msgctxt ""
msgid "Click <emph>OK</emph>. In your document, click outside the chart to exit chart editing mode."
msgstr "Feu clic a <emph>D'acord</emph>. Al document, feu clic a fora del diagrama per eixir del mode d'edició del diagrama."
-#. tPCkG
+#. K5LFy
#: chart_title.xhp
msgctxt ""
"chart_title.xhp\n"
"par_id3154046\n"
"help.text"
-msgid "<link href=\"text/schart/01/05010000.xhp\" name=\"Format - Object properties\">Format - Object properties</link>"
-msgstr "<link href=\"text/schart/01/05010000.xhp\" name=\"Format - Propietats de l'objecte\">Format - Propietats de l'objecte</link>"
+msgid "<link href=\"text/schart/01/05010000.xhp\">Format - Object properties</link>"
+msgstr "<link href=\"text/schart/01/05010000.xhp\">Format - Propietats de l'objecte</link>"
#. kiUUC
#: classification.xhp
@@ -2366,13 +2366,13 @@ msgctxt ""
msgid "Document Classification"
msgstr ""
-#. 8o3Ef
+#. iNnb6
#: classification.xhp
msgctxt ""
"classification.xhp\n"
"hd_id3156324\n"
"help.text"
-msgid "<variable id=\"classdoc\"><link href=\"text/shared/guide/classification.xhp\" name=\"Document Classification\">Document Classification</link></variable>"
+msgid "<variable id=\"classdoc\"><link href=\"text/shared/guide/classification.xhp\">Document Classification</link></variable>"
msgstr ""
#. eb5Uk
@@ -2780,13 +2780,13 @@ msgctxt ""
msgid "Select <item type=\"menuitem\">File - Save Remote</item>"
msgstr "Trieu <item type=\"menuitem\">Fitxer ▸ Guarda en remot</item>"
-#. XjsqJ
+#. EANxM
#: cmis-remote-files-setup.xhp
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816033600\n"
"help.text"
-msgid "Then press <widget>Add Service</widget> button in the dialog to open the File Services dialog."
+msgid "Then press <widget>Manage Services</widget> button in the dialog to open the File Services dialog."
msgstr ""
#. NYgGE
@@ -3914,14 +3914,14 @@ msgctxt ""
msgid "Write access also enables other users to (accidentally or deliberately) delete or change a file."
msgstr "L'accés d'escriptura també permet que altres usuaris suprimisquen o canvien un fitxer (accidentalment o deliberada)."
-#. B3UVF
+#. RjGAM
#: collab.xhp
msgctxt ""
"collab.xhp\n"
"par_id4263740\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=\"Anomena i guarda\">Anomena i guarda</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\">Anomena i guarda</link>"
#. ox7yt
#: configure_overview.xhp
@@ -3941,14 +3941,14 @@ msgctxt ""
msgid "<bookmark_value>configuring; $[officename]</bookmark_value><bookmark_value>customizing; $[officename]</bookmark_value>"
msgstr "<bookmark_value>configuració; $[officename]</bookmark_value><bookmark_value>personalització; $[officename]</bookmark_value>"
-#. kxGyZ
+#. H2pC9
#: configure_overview.xhp
msgctxt ""
"configure_overview.xhp\n"
"hd_id3152801\n"
"help.text"
-msgid "<variable id=\"configure_overview\"><link href=\"text/shared/guide/configure_overview.xhp\" name=\"Configuring $[officename]\">Configuring $[officename]</link></variable>"
-msgstr "<variable id=\"configure_overview\"><link href=\"text/shared/guide/configure_overview.xhp\" name=\"Configuració del $[officename]\">Configuració del $[officename]</link></variable>"
+msgid "<variable id=\"configure_overview\"><link href=\"text/shared/guide/configure_overview.xhp\">Configuring $[officename]</link></variable>"
+msgstr "<variable id=\"configure_overview\"><link href=\"text/shared/guide/configure_overview.xhp\">Configuració del $[officename]</link></variable>"
#. ojFBZ
#: configure_overview.xhp
@@ -3986,23 +3986,23 @@ msgctxt ""
msgid "You can change the shortcut keys."
msgstr "Podeu canviar les tecles de drecera."
-#. 7GQeh
+#. Mvoqn
#: configure_overview.xhp
msgctxt ""
"configure_overview.xhp\n"
"par_id3155421\n"
"help.text"
-msgid "To change these, choose <link href=\"text/shared/01/06140000.xhp\" name=\"Tools - Customize\"><emph>Tools - Customize</emph></link> to open the <emph>Customize</emph> dialog."
-msgstr "Per canviar-los, trieu <link href=\"text/shared/01/06140000.xhp\" name=\"Eines - Personalitza\"><emph>Eines - Personalitza</emph></link> per obrir el diàleg <emph>Personalitza</emph>."
+msgid "To change these, choose <link href=\"text/shared/01/06140000.xhp\"><emph>Tools - Customize</emph></link> to open the <emph>Customize</emph> dialog."
+msgstr "Per canviar-los, trieu <link href=\"text/shared/01/06140000.xhp\"><emph>Eines - Personalitza</emph></link> per obrir el diàleg <emph>Personalitza</emph>."
-#. x2P24
+#. g84tU
#: configure_overview.xhp
msgctxt ""
"configure_overview.xhp\n"
"par_id3155388\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Tools - Customize\">Tools - Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Eines - Personalitza\">Eines - Personalitza</link>"
+msgid "<link href=\"text/shared/01/06140000.xhp\">Tools - Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\">Eines - Personalitza</link>"
#. MG4Uc
#: contextmenu.xhp
@@ -4022,14 +4022,14 @@ msgctxt ""
msgid "<bookmark_value>context menus</bookmark_value><bookmark_value>menus;activating context menus</bookmark_value><bookmark_value>opening; context menus</bookmark_value><bookmark_value>activating;context menus</bookmark_value>"
msgstr "<bookmark_value>menús contextuals</bookmark_value><bookmark_value>menús;activació de menús contextuals</bookmark_value><bookmark_value>obertura; menús contextuals</bookmark_value><bookmark_value>activació;menús contextuals</bookmark_value>"
-#. uBUCG
+#. 8AdBC
#: contextmenu.xhp
msgctxt ""
"contextmenu.xhp\n"
"hd_id3153394\n"
"help.text"
-msgid "<variable id=\"contextmenu\"><link href=\"text/shared/guide/contextmenu.xhp\" name=\"Using Context Menus\">Using Context Menus</link></variable>"
-msgstr "<variable id=\"contextmenu\"><link href=\"text/shared/guide/contextmenu.xhp\" name=\"Utilització dels menús contextuals\">Utilització dels menús contextuals</link></variable>"
+msgid "<variable id=\"contextmenu\"><link href=\"text/shared/guide/contextmenu.xhp\">Using Context Menus</link></variable>"
+msgstr "<variable id=\"contextmenu\"><link href=\"text/shared/guide/contextmenu.xhp\">Utilització dels menús contextuals</link></variable>"
#. xKErR
#: convertfilters.xhp
@@ -4049,22 +4049,22 @@ msgctxt ""
msgid "<bookmark_value>filters;document conversion</bookmark_value> <bookmark_value>document conversion;filters</bookmark_value> <bookmark_value>convert-to;filters</bookmark_value> <bookmark_value>command line document conversion;filters</bookmark_value> <bookmark_value>module file filters</bookmark_value>"
msgstr ""
-#. R5bPc
+#. H2hmH
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
"hd_id771554399002497\n"
"help.text"
-msgid "<variable id=\"convertfilters_h1\"><link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">File Conversion Filter Names</link></variable>"
+msgid "<variable id=\"convertfilters_h1\"><link href=\"text/shared/guide/convertfilters.xhp\">File Conversion Filter Names</link></variable>"
msgstr ""
-#. EoDwz
+#. WNb3G
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
"par_id581554399002498\n"
"help.text"
-msgid "<variable id=\"commandline_intro\"> <ahelp hid=\".\">Tables with filter names for <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link> document conversion.</ahelp> </variable>"
+msgid "<variable id=\"commandline_intro\"> <ahelp hid=\".\">Tables with filter names for <link href=\"text/shared/guide/start_parameters.xhp\">command line</link> document conversion.</ahelp> </variable>"
msgstr ""
#. Whybs
@@ -4076,13 +4076,13 @@ msgctxt ""
msgid "Usage"
msgstr ""
-#. vcWaC
+#. DjtnC
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
"par_id801633524474460\n"
"help.text"
-msgid "Filter names are used when importing and exporting files in alien formats and converting files formats through the <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link>."
+msgid "Filter names are used when importing and exporting files in alien formats and converting files formats through the <link href=\"text/shared/guide/start_parameters.xhp\">command line</link>."
msgstr ""
#. QAzjK
@@ -5696,14 +5696,14 @@ msgctxt ""
msgid "<bookmark_value>draw objects; copying between documents</bookmark_value><bookmark_value>copying; draw objects between documents</bookmark_value><bookmark_value>pasting;draw objects from other documents</bookmark_value>"
msgstr "<bookmark_value>objectes de dibuix; còpia entre documents</bookmark_value><bookmark_value>còpia; objectes de dibuix entre documents</bookmark_value><bookmark_value>enganxa;objectes de dibuix d'altres documents</bookmark_value>"
-#. nbXLc
+#. DiGmk
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
"hd_id3153394\n"
"help.text"
-msgid "<variable id=\"copy_drawfunctions\"><link href=\"text/shared/guide/copy_drawfunctions.xhp\" name=\"Copying Drawing Objects Into Other Documents\">Copying Drawing Objects Into Other Documents</link></variable>"
-msgstr "<variable id=\"copy_drawfunctions\"><link href=\"text/shared/guide/copy_drawfunctions.xhp\" name=\"Còpia d'objectes de dibuix a altres documents\">Còpia d'objectes de dibuix a altres documents</link></variable>"
+msgid "<variable id=\"copy_drawfunctions\"><link href=\"text/shared/guide/copy_drawfunctions.xhp\">Copying Drawing Objects Into Other Documents</link></variable>"
+msgstr "<variable id=\"copy_drawfunctions\"><link href=\"text/shared/guide/copy_drawfunctions.xhp\">Còpia d'objectes de dibuix a altres documents</link></variable>"
#. GvEmd
#: copy_drawfunctions.xhp
@@ -5804,14 +5804,14 @@ msgctxt ""
msgid "<bookmark_value>charts;copying with link to source cell range</bookmark_value><bookmark_value>inserting; cell ranges from spreadsheets</bookmark_value><bookmark_value>pasting;cell ranges from spreadsheets</bookmark_value><bookmark_value>presentations;inserting spreadsheet cells</bookmark_value><bookmark_value>text documents;inserting spreadsheet cells</bookmark_value><bookmark_value>tables in spreadsheets;copying data to other applications</bookmark_value>"
msgstr "<bookmark_value>diagrames;còpia amb enllaç a l'interval de cel·les d'origen</bookmark_value><bookmark_value>inserció; intervals de cel·les des de fulls de càlcul</bookmark_value><bookmark_value>enganxa;intervals de cel·les des de fulls de càlcul</bookmark_value><bookmark_value>presentacions;inserció de cel·les de fulls de càlcul</bookmark_value><bookmark_value>documents de text;inserció de cel·les de fulls de càlcul</bookmark_value><bookmark_value>taules en fulls de càlcul;còpia de dades a altres aplicacions</bookmark_value>"
-#. EXDUK
+#. YAuSM
#: copytable2application.xhp
msgctxt ""
"copytable2application.xhp\n"
"hd_id3154186\n"
"help.text"
-msgid "<variable id=\"copytable2application\"><link href=\"text/shared/guide/copytable2application.xhp\" name=\"Inserting Data From Spreadsheets\">Inserting Data From Spreadsheets</link></variable>"
-msgstr "<variable id=\"copytable2application\"><link href=\"text/shared/guide/copytable2application.xhp\" name=\"Inserció de dades a partir de fulls de càlcul\">Inserció de dades a partir de fulls de càlcul</link></variable>"
+msgid "<variable id=\"copytable2application\"><link href=\"text/shared/guide/copytable2application.xhp\">Inserting Data From Spreadsheets</link></variable>"
+msgstr "<variable id=\"copytable2application\"><link href=\"text/shared/guide/copytable2application.xhp\">Inserció de dades a partir de fulls de càlcul</link></variable>"
#. hr5jw
#: copytable2application.xhp
@@ -5876,14 +5876,14 @@ msgctxt ""
msgid "<bookmark_value>sending; AutoAbstract function in presentations</bookmark_value><bookmark_value>AutoAbstract function for sending text to presentations</bookmark_value><bookmark_value>outlines; sending to presentations</bookmark_value><bookmark_value>text; copying by drag and drop</bookmark_value><bookmark_value>drag and drop; copying and pasting text</bookmark_value><bookmark_value>inserting;data from text documents</bookmark_value><bookmark_value>copying;data from text documents</bookmark_value><bookmark_value>pasting;data from text documents</bookmark_value>"
msgstr "<bookmark_value>enviament; funció Resum automàtic en presentacions</bookmark_value><bookmark_value>funció Resum automàtic per enviar text a presentacions</bookmark_value><bookmark_value>esquemes; enviament a presentacions</bookmark_value><bookmark_value>text; còpia amb arrossega i deixa anar</bookmark_value><bookmark_value>arrossega i deixa anar; copia i enganxa text</bookmark_value><bookmark_value>inserció;dades des de documents de text</bookmark_value><bookmark_value>còpia;dades des de documents de text</bookmark_value><bookmark_value>enganxa;dades des de documents de text</bookmark_value>"
-#. YP2hj
+#. p2JUv
#: copytext2application.xhp
msgctxt ""
"copytext2application.xhp\n"
"hd_id3152924\n"
"help.text"
-msgid "<variable id=\"copytext2application\"><link href=\"text/shared/guide/copytext2application.xhp\" name=\"Inserting Data From Text Documents\">Inserting Data From Text Documents</link></variable>"
-msgstr "<variable id=\"copytext2application\"><link href=\"text/shared/guide/copytext2application.xhp\" name=\"Inserció de dades a partir de documents de text\">Inserció de dades a partir de documents de text</link></variable>"
+msgid "<variable id=\"copytext2application\"><link href=\"text/shared/guide/copytext2application.xhp\">Inserting Data From Text Documents</link></variable>"
+msgstr "<variable id=\"copytext2application\"><link href=\"text/shared/guide/copytext2application.xhp\">Inserció de dades a partir de documents de text</link></variable>"
#. iFDtC
#: copytext2application.xhp
@@ -5993,13 +5993,13 @@ msgctxt ""
msgid "<bookmark_value>CSV;filter options</bookmark_value> <bookmark_value>CSV;separator specification line</bookmark_value> <bookmark_value>CSV;import options</bookmark_value> <bookmark_value>CSV;export options</bookmark_value> <bookmark_value>CSV;command line filter options</bookmark_value>"
msgstr ""
-#. szBoK
+#. v2AUB
#: csv_params.xhp
msgctxt ""
"csv_params.xhp\n"
"hd_id551634734576194\n"
"help.text"
-msgid "<variable id=\"csv_params_h1\"><link href=\"text/shared/guide/csv_params.xhp\" name=\"filter options\">CSV Filter Options</link></variable>"
+msgid "<variable id=\"csv_params_h1\"><link href=\"text/shared/guide/csv_params.xhp\">CSV Filter Options</link></variable>"
msgstr ""
#. qRkBK
@@ -6605,23 +6605,23 @@ msgctxt ""
msgid "<bookmark_value>CTL;complex text layout languages</bookmark_value><bookmark_value>languages;complex text layout</bookmark_value><bookmark_value>text;CTL languages</bookmark_value><bookmark_value>text layout for special languages</bookmark_value><bookmark_value>right-to-left text</bookmark_value><bookmark_value>entering text from right to left</bookmark_value><bookmark_value>bi-directional writing</bookmark_value><bookmark_value>Hindi;entering text</bookmark_value><bookmark_value>Hebrew;entering text</bookmark_value><bookmark_value>Arabic;entering text</bookmark_value><bookmark_value>Thai;entering text</bookmark_value>"
msgstr "<bookmark_value>CTL;llengües de disposició complexa de text</bookmark_value><bookmark_value>llengües;disposició complexa de text</bookmark_value><bookmark_value>text;llengües CTL</bookmark_value><bookmark_value>disposició de text per a llengües especials</bookmark_value><bookmark_value>text de dreta a esquerra</bookmark_value><bookmark_value>introducció de text de dreta a esquerra</bookmark_value><bookmark_value>escriptura bidireccional</bookmark_value><bookmark_value>hindi;introducció de text</bookmark_value><bookmark_value>hebreu;introducció de text</bookmark_value><bookmark_value>àrab;introducció de text</bookmark_value><bookmark_value>tailandés;introducció de text</bookmark_value>"
-#. vwLWg
+#. fAgaG
#: ctl.xhp
msgctxt ""
"ctl.xhp\n"
"hd_id3153662\n"
"help.text"
-msgid "<variable id=\"ctl\"><link href=\"text/shared/guide/ctl.xhp\" name=\"Languages Using Complex Text Layout\">Languages Using Complex Text Layout</link></variable>"
-msgstr "<variable id=\"ctl\"><link href=\"text/shared/guide/ctl.xhp\" name=\"Llengües que utilitzen la disposició complexa de text\">Llengües que utilitzen la disposició complexa de text</link></variable>"
+msgid "<variable id=\"ctl\"><link href=\"text/shared/guide/ctl.xhp\">Languages Using Complex Text Layout</link></variable>"
+msgstr "<variable id=\"ctl\"><link href=\"text/shared/guide/ctl.xhp\">Llengües que utilitzen la disposició complexa de text</link></variable>"
-#. 9KrXb
+#. LaGDy
#: ctl.xhp
msgctxt ""
"ctl.xhp\n"
"par_id3147618\n"
"help.text"
-msgid "Currently, $[officename] supports Hindi, Thai, Hebrew, and Arabic as <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL languages\">CTL languages</link>."
-msgstr "Actualment, el $[officename] admet hindi, tailandés, hebreu i àrab com a <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"Llengües CTL\">llengües CTL</link>."
+msgid "Currently, $[officename] supports Hindi, Thai, Hebrew, and Arabic as <link href=\"text/shared/00/00000005.xhp#ctl\">CTL languages</link>."
+msgstr "Actualment, el $[officename] admet hindi, tailandés, hebreu i àrab com a <link href=\"text/shared/00/00000005.xhp#ctl\">llengües CTL</link>."
#. YE2zw
#: ctl.xhp
@@ -6713,23 +6713,23 @@ msgctxt ""
msgid "Use the Right or Left Arrow key to jump to the next or previous whole composite character. To position the cursor into a composite character, use <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Arrow key."
msgstr "Utilitzeu les tecles de fletxa dreta o esquerra per saltar al caràcter compost anterior o següent. Per posicionar el cursor en un caràcter compost, utilitzeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline>+tecla de fletxa."
-#. oNFeC
+#. uBEpB
#: ctl.xhp
msgctxt ""
"ctl.xhp\n"
"par_id3145786\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\" name=\"Language Settings - Languages\">Language Settings - Languages</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\" name=\"Configuració de la llengua - Llengües\">Configuració de la llengua - Llengües</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\">Language Settings - Languages</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\">Configuració de la llengua - Llengües</link>"
-#. C5ALR
+#. CvDdf
#: ctl.xhp
msgctxt ""
"ctl.xhp\n"
"par_id3153770\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01150300.xhp\" name=\"Language Settings - Complex Text Layout\">Language Settings - Complex Text Layout</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01150300.xhp\" name=\"Configuració de la llengua - Disposició complexa de text\">Configuració de la llengua - Disposició complexa de text</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01150300.xhp\">Language Settings - Complex Text Layout</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01150300.xhp\">Configuració de la llengua - Disposició complexa de text</link>"
#. E7xSj
#: data_addressbook.xhp
@@ -6749,14 +6749,14 @@ msgctxt ""
msgid "<bookmark_value>data sources; registering address books</bookmark_value><bookmark_value>address books; registering</bookmark_value><bookmark_value>system address book registration</bookmark_value><bookmark_value>registering; address books</bookmark_value>"
msgstr "<bookmark_value>fonts de dades; registre de llibretes d'adreces</bookmark_value><bookmark_value>llibretes d'adreces; registre</bookmark_value><bookmark_value>registre de llibretes d'adreces al sistema</bookmark_value><bookmark_value>registre; llibretes d'adreces</bookmark_value>"
-#. T8Di6
+#. fCp6b
#: data_addressbook.xhp
msgctxt ""
"data_addressbook.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<variable id=\"data_addressbook\"><link href=\"text/shared/guide/data_addressbook.xhp\" name=\"Registering an Address Book\">Registering an Address Book</link></variable>"
-msgstr "<variable id=\"data_addressbook\"><link href=\"text/shared/guide/data_addressbook.xhp\" name=\"Registre d'una llibreta d'adreces\">Registre d'una llibreta d'adreces</link></variable>"
+msgid "<variable id=\"data_addressbook\"><link href=\"text/shared/guide/data_addressbook.xhp\">Registering an Address Book</link></variable>"
+msgstr "<variable id=\"data_addressbook\"><link href=\"text/shared/guide/data_addressbook.xhp\">Registre d'una llibreta d'adreces</link></variable>"
#. 9N6KC
#: data_addressbook.xhp
@@ -6803,14 +6803,14 @@ msgctxt ""
msgid "Address Data Source Wizard"
msgstr "Auxiliar de la font de dades de la llibreta d'adreces"
-#. y7tad
+#. Kiq9x
#: data_addressbook.xhp
msgctxt ""
"data_addressbook.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "To call the <link href=\"text/shared/autopi/01170000.xhp\" name=\"Address Data Source\">Address Data Source</link> wizard, choose <emph>File - Wizards - Address Data Source</emph>."
-msgstr "Per cridar l'auxiliar <link href=\"text/shared/autopi/01170000.xhp\" name=\"Font de dades de la llibreta d'adreces\">Font de dades de la llibreta d'adreces</link>, trieu <emph>Fitxer ▸ Auxiliars ▸ Font de dades de la llibreta d'adreces</emph>."
+msgid "To call the <link href=\"text/shared/autopi/01170000.xhp\">Address Data Source</link> wizard, choose <emph>File - Wizards - Address Data Source</emph>."
+msgstr "Per cridar l'auxiliar <link href=\"text/shared/autopi/01170000.xhp\">Font de dades de la llibreta d'adreces</link>, trieu <emph>Fitxer ▸ Auxiliars ▸ Font de dades de la llibreta d'adreces</emph>."
#. KtvnA
#: data_addressbook.xhp
@@ -6821,14 +6821,14 @@ msgctxt ""
msgid "Registering An Existing Address Book Manually"
msgstr "Registre manual d'una llibreta d'adreces existent"
-#. yL6qE
+#. vo3yD
#: data_addressbook.xhp
msgctxt ""
"data_addressbook.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "Choose <emph>Tools - Address Book Source</emph>. The <link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\"><emph>Templates: Address Book Assignment</emph></link> dialog appears."
-msgstr "Trieu <emph>Eines - Assignació de la llibreta d'adreces</emph>. Apareix el diàleg <link href=\"text/shared/01/01110101.xhp\" name=\"Plantilles: Assignació de la llibreta d'adreces\"><emph>Plantilles: Assignació de la llibreta d'adreces</emph></link>."
+msgid "Choose <emph>Tools - Address Book Source</emph>. The <link href=\"text/shared/01/01110101.xhp\"><emph>Templates: Address Book Assignment</emph></link> dialog appears."
+msgstr "Trieu <emph>Eines - Assignació de la llibreta d'adreces</emph>. Apareix el diàleg <link href=\"text/shared/01/01110101.xhp\"><emph>Plantilles: Assignació de la llibreta d'adreces</emph></link>."
#. pvqtk
#: data_addressbook.xhp
@@ -6902,14 +6902,14 @@ msgctxt ""
msgid "<bookmark_value>databases; text formats</bookmark_value><bookmark_value>text formats; databases</bookmark_value><bookmark_value>importing; tables in text format</bookmark_value><bookmark_value>exporting; spreadsheets to text format</bookmark_value>"
msgstr "<bookmark_value>bases de dades; formats de text</bookmark_value><bookmark_value>formats de text; bases de dades</bookmark_value><bookmark_value>importació; taules en format de text</bookmark_value><bookmark_value>exportació; fulls de càlcul a format de text</bookmark_value>"
-#. eAFLb
+#. CjYih
#: data_dbase2office.xhp
msgctxt ""
"data_dbase2office.xhp\n"
"hd_id3154824\n"
"help.text"
-msgid "<variable id=\"data_dbase2office\"><link href=\"text/shared/guide/data_dbase2office.xhp\" name=\"Importing and Exporting Data in Text Format\">Importing and Exporting Data in Text Format</link></variable>"
-msgstr "<variable id=\"data_dbase2office\"><link href=\"text/shared/guide/data_dbase2office.xhp\" name=\"Importació i exportació de dades en format de text\">Importació i exportació de dades en format de text</link></variable>"
+msgid "<variable id=\"data_dbase2office\"><link href=\"text/shared/guide/data_dbase2office.xhp\">Importing and Exporting Data in Text Format</link></variable>"
+msgstr "<variable id=\"data_dbase2office\"><link href=\"text/shared/guide/data_dbase2office.xhp\">Importació i exportació de dades en format de text</link></variable>"
#. mjsFu
#: data_dbase2office.xhp
@@ -6947,14 +6947,14 @@ msgctxt ""
msgid "Export the desired data from the source database in a text format. The CSV text format is recommended. This format separates data fields by using delimiters such as commas or semi-colons, and separates records by inserting line breaks."
msgstr "Exporteu les dades desitjades de la base de dades font a un format de text. Es recomana el format de text CSV. Este format separa els camps de dades amb delimitadors com ara comes o punts i coma, i separa els registres inserint salts de línia."
-#. pCo8V
+#. bANmB
#: data_dbase2office.xhp
msgctxt ""
"data_dbase2office.xhp\n"
"par_id3153821\n"
"help.text"
-msgid "Choose <emph>File - </emph><link href=\"text/shared/01/01020000.xhp\" name=\"Open\"><emph>Open</emph></link> and click the file to import."
-msgstr "Trieu <emph>Fitxer ▸ </emph><link href=\"text/shared/01/01020000.xhp\" name=\"Obri\"><emph>Obri</emph></link> i feu clic al fitxer per importar-lo."
+msgid "Choose <emph>File - </emph><link href=\"text/shared/01/01020000.xhp\"><emph>Open</emph></link> and click the file to import."
+msgstr "Trieu <emph>Fitxer ▸ </emph><link href=\"text/shared/01/01020000.xhp\"><emph>Obri</emph></link> i feu clic al fitxer per importar-lo."
#. AuFfu
#: data_dbase2office.xhp
@@ -6965,14 +6965,14 @@ msgctxt ""
msgid "Select \"Text CSV\" from the <emph>File type</emph> combo box. Click <emph>Open</emph>."
msgstr "Seleccioneu \"Text CSV\" al quadre combinat <emph>Tipus de fitxer</emph>. Feu clic a <emph>Obri</emph>."
-#. AHvyY
+#. QSETP
#: data_dbase2office.xhp
msgctxt ""
"data_dbase2office.xhp\n"
"par_id3150771\n"
"help.text"
-msgid "The <link href=\"text/shared/00/00000208.xhp\" name=\"Text Import\"><emph>Text Import</emph></link> dialog appears. Decide which data to include from the text document."
-msgstr "Apareixerà el diàleg <link href=\"text/shared/00/00000208.xhp\" name=\"Importació de text\"><emph>Importació de text</emph></link>. Decidiu quines dades voleu incloure del document de text."
+msgid "The <link href=\"text/shared/00/00000208.xhp\"><emph>Text Import</emph></link> dialog appears. Decide which data to include from the text document."
+msgstr "Apareixerà el diàleg <link href=\"text/shared/00/00000208.xhp\"><emph>Importació de text</emph></link>. Decidiu quines dades voleu incloure del document de text."
#. kGtpJ
#: data_dbase2office.xhp
@@ -7028,14 +7028,14 @@ msgctxt ""
msgid "In <emph>File type</emph> select the filter \"Text CSV\". Enter a file name and click <emph>Save</emph>."
msgstr "A <emph>Tipus de fitxer</emph> seleccioneu el filtre \"Text CSV\". Introduïu un nom de fitxer i feu clic a <emph>Guarda</emph>."
-#. 8uNVi
+#. YiqhF
#: data_dbase2office.xhp
msgctxt ""
"data_dbase2office.xhp\n"
"par_id3154908\n"
"help.text"
-msgid "This opens the <link href=\"text/shared/00/00000207.xhp\" name=\"dBase Export\"><emph>Export of text files</emph></link> dialog, in which you can select the character set, field delimiter and text delimiter. Click <emph>OK</emph>. A warning informs you that only the active sheet was saved."
-msgstr "Esta acció obri el diàleg <link href=\"text/shared/00/00000207.xhp\" name=\"Exporta cap a dBase\"><emph>Exporta fitxers de text</emph></link>, on podeu seleccionar el conjunt de caràcters i el delimitador de camp i de text. Feu clic a <emph>D'acord</emph>. Un avís vos informa que només s'ha guardat el full actiu."
+msgid "This opens the <link href=\"text/shared/00/00000207.xhp\"><emph>Export of text files</emph></link> dialog, in which you can select the character set, field delimiter and text delimiter. Click <emph>OK</emph>. A warning informs you that only the active sheet was saved."
+msgstr "Esta acció obri el diàleg <link href=\"text/shared/00/00000207.xhp\"><emph>Exporta fitxers de text</emph></link>, on podeu seleccionar el conjunt de caràcters i el delimitador de camp i de text. Feu clic a <emph>D'acord</emph>. Un avís vos informa que només s'ha guardat el full actiu."
#. jPGaJ
#: data_enter_sql.xhp
@@ -7055,14 +7055,14 @@ msgctxt ""
msgid "<bookmark_value>SQL; executing SQL commands</bookmark_value> <bookmark_value>queries;creating in SQL view</bookmark_value> <bookmark_value>commands;SQL</bookmark_value> <bookmark_value>executing SQL commands</bookmark_value>"
msgstr "<bookmark_value>SQL; execució d'ordes SQL</bookmark_value><bookmark_value>consultes;creació en vista SQL</bookmark_value><bookmark_value>ordes;SQL</bookmark_value><bookmark_value>execució d'ordes SQL</bookmark_value>"
-#. HTSkf
+#. 3st8C
#: data_enter_sql.xhp
msgctxt ""
"data_enter_sql.xhp\n"
"hd_id3152801\n"
"help.text"
-msgid "<variable id=\"data_enter_sql\"><link href=\"text/shared/guide/data_enter_sql.xhp\" name=\"Executing SQL Commands\">Executing SQL Commands</link></variable>"
-msgstr "<variable id=\"data_enter_sql\"><link href=\"text/shared/guide/data_enter_sql.xhp\" name=\"Execució d'ordes SQL\">Execució d'ordes SQL</link></variable>"
+msgid "<variable id=\"data_enter_sql\"><link href=\"text/shared/guide/data_enter_sql.xhp\">Executing SQL Commands</link></variable>"
+msgstr "<variable id=\"data_enter_sql\"><link href=\"text/shared/guide/data_enter_sql.xhp\">Execució d'ordes SQL</link></variable>"
#. aCWnT
#: data_enter_sql.xhp
@@ -7154,13 +7154,13 @@ msgctxt ""
msgid "Click the <emph>Save</emph> or <emph>Save As</emph> icon <image id=\"img_id3153159\" src=\"cmd/sc_save.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153159\">Icon</alt></image> to save the query."
msgstr "Feu clic a la icona <emph>Guarda</emph> o <emph>Anomena i guarda</emph> <image id=\"img_id3153159\" src=\"cmd/sc_save.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153159\">Icona</alt></image> per guardar la consulta."
-#. CFL3H
+#. ABbt7
#: data_enter_sql.xhp
msgctxt ""
"data_enter_sql.xhp\n"
"par_id3153223\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>"
+msgid "<link href=\"text/sdatabase/02010100.xhp\">Query Design</link>"
msgstr ""
#. 2ArGc
@@ -7829,14 +7829,14 @@ msgctxt ""
msgid "<bookmark_value>database reports</bookmark_value><bookmark_value>data sources;reports</bookmark_value><bookmark_value>reports;opening and editing</bookmark_value><bookmark_value>editing;reports</bookmark_value><bookmark_value>opening;reports</bookmark_value><bookmark_value>templates;database reports</bookmark_value><bookmark_value>reports;templates</bookmark_value>"
msgstr "<bookmark_value>informes de bases de dades</bookmark_value><bookmark_value>fonts de dades;informes</bookmark_value><bookmark_value>informes;obertura i edició</bookmark_value><bookmark_value>edició;informes</bookmark_value><bookmark_value>obertura;informes</bookmark_value><bookmark_value>plantilles;informes de bases de dades</bookmark_value><bookmark_value>informes;plantilles</bookmark_value>"
-#. H58uP
+#. H34Md
#: data_report.xhp
msgctxt ""
"data_report.xhp\n"
"hd_id3149178\n"
"help.text"
-msgid "<variable id=\"data_report\"><link href=\"text/shared/guide/data_report.xhp\" name=\"Create, Use, and Edit Database Reports\">Using and Editing Database Reports</link></variable>"
-msgstr "<variable id=\"data_report\"><link href=\"text/shared/guide/data_report.xhp\" name=\"Creació, ús i edició d'informes de bases de dades\">Creació, ús i edició d'informes de bases de dades</link></variable>"
+msgid "<variable id=\"data_report\"><link href=\"text/shared/guide/data_report.xhp\">Using and Editing Database Reports</link></variable>"
+msgstr "<variable id=\"data_report\"><link href=\"text/shared/guide/data_report.xhp\">Creació, ús i edició d'informes de bases de dades</link></variable>"
#. egwxE
#: data_report.xhp
@@ -7946,14 +7946,14 @@ msgctxt ""
msgid "Editing a Report Created by the Report Wizard"
msgstr "Edició d'un informe creat per l'Auxiliar d'informes"
-#. PcBjS
+#. mgNFD
#: data_report.xhp
msgctxt ""
"data_report.xhp\n"
"par_id3125863\n"
"help.text"
-msgid "On the <link href=\"text/shared/autopi/01100500.xhp\" name=\"last dialog page of the Report AutoPilot\">last dialog page of the Report Wizard</link>, you can choose to edit the report template before you use the report."
-msgstr "A l'<link href=\"text/shared/autopi/01100500.xhp\" name=\"última pàgina de diàleg de l'informe AutoPilot\">última pàgina de diàleg de l'Auxiliar d'informes</link>, podeu triar editar la plantilla de l'informe abans d'utilitzar-lo."
+msgid "On the <link href=\"text/shared/autopi/01100500.xhp\">last dialog page of the Report Wizard</link>, you can choose to edit the report template before you use the report."
+msgstr "A l'<link href=\"text/shared/autopi/01100500.xhp\">última pàgina de diàleg de l'Auxiliar d'informes</link>, podeu triar editar la plantilla de l'informe abans d'utilitzar-lo."
#. X9jYZ
#: data_report.xhp
@@ -8270,14 +8270,14 @@ msgctxt ""
msgid "<bookmark_value>finding;records in form documents</bookmark_value><bookmark_value>forms;finding records</bookmark_value><bookmark_value>searching;tables and forms</bookmark_value>"
msgstr "<bookmark_value>busca; registres en documents de formulari</bookmark_value><bookmark_value>formularis;busca de registres</bookmark_value><bookmark_value>busca;taules i formularis</bookmark_value>"
-#. e2B7r
+#. EkkUS
#: data_search.xhp
msgctxt ""
"data_search.xhp\n"
"hd_id3154186\n"
"help.text"
-msgid "<variable id=\"data_search\"><link href=\"text/shared/guide/data_search.xhp\" name=\"Searching Tables and Form Documents\">Searching Tables and Form Documents</link></variable>"
-msgstr "<variable id=\"data_search\"><link href=\"text/shared/guide/data_search.xhp\" name=\"Busca de taules i documents de formulari\">Busca de taules i documents de formulari</link></variable>"
+msgid "<variable id=\"data_search\"><link href=\"text/shared/guide/data_search.xhp\">Searching Tables and Form Documents</link></variable>"
+msgstr "<variable id=\"data_search\"><link href=\"text/shared/guide/data_search.xhp\">Busca de taules i documents de formulari</link></variable>"
#. FgqUL
#: data_search.xhp
@@ -8297,14 +8297,14 @@ msgctxt ""
msgid "In spreadsheets and documents in which form controls are used, you can click the <emph>Find Record</emph> icon on the form bar to open a dialog to find any text and values."
msgstr "Als fulls de càlcul i als documents en què s'utilitzen els controls de formulari, podeu fer clic a la icona <emph>Busca un registre</emph> a la barra de formularis per obrir un diàleg i buscar qualsevol text o valor."
-#. mAZDn
+#. B5Mpj
#: data_search.xhp
msgctxt ""
"data_search.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "You can search in one or in all data fields. You can select whether the text must be at the beginning, end or any location of the data field. You also can use the ? and * wildcards, as in the <emph>Find & Replace</emph> dialog. You can find additional information about the database search function in the <link href=\"text/shared/02/12100200.xhp\" name=\"$[officename] Help\">$[officename] Help</link>."
-msgstr "Podeu buscar en un o a tots els camps de dades. Podeu seleccionar si el text ha d'estar al principi, al final o a qualsevol ubicació del camp de dades. També podeu utilitzar els comodins ? i *, igual que al diàleg <emph>Busca i reemplaça</emph>. Podeu trobar informació addicional sobre la funció de busca de la base de dades a l'<link href=\"text/shared/02/12100200.xhp\" name=\"Ajuda del $[officename]\">Ajuda del $[officename]</link>."
+msgid "You can search in one or in all data fields. You can select whether the text must be at the beginning, end or any location of the data field. You also can use the ? and * wildcards, as in the <emph>Find & Replace</emph> dialog. You can find additional information about the database search function in the <link href=\"text/shared/02/12100200.xhp\">$[officename] Help</link>."
+msgstr "Podeu buscar en un o a tots els camps de dades. Podeu seleccionar si el text ha d'estar al principi, al final o a qualsevol ubicació del camp de dades. També podeu utilitzar els comodins ? i *, igual que al diàleg <emph>Busca i reemplaça</emph>. Podeu trobar informació addicional sobre la funció de busca de la base de dades a l'<link href=\"text/shared/02/12100200.xhp\">Ajuda del $[officename]</link>."
#. 27Tfr
#: data_search2.xhp
@@ -8324,14 +8324,14 @@ msgctxt ""
msgid "<bookmark_value>form filters</bookmark_value><bookmark_value>databases;form filters</bookmark_value><bookmark_value>searching; form filters</bookmark_value><bookmark_value>removing;form filters</bookmark_value><bookmark_value>filtering; data in forms</bookmark_value><bookmark_value>data;filtering in forms</bookmark_value><bookmark_value>forms; filtering data</bookmark_value><bookmark_value>data, see also values</bookmark_value>"
msgstr "<bookmark_value>filtres de formulari</bookmark_value><bookmark_value>bases de dades;filtres de formulari</bookmark_value><bookmark_value>busca; filtres de formulari</bookmark_value><bookmark_value>eliminació; filtres de formulari</bookmark_value><bookmark_value>filtres; dades en formularis</bookmark_value><bookmark_value>dades;filtres en formularis</bookmark_value><bookmark_value>formularis; filtratge de dades</bookmark_value><bookmark_value>dades, vegeu també valors</bookmark_value>"
-#. pHTen
+#. ntry2
#: data_search2.xhp
msgctxt ""
"data_search2.xhp\n"
"hd_id3156042\n"
"help.text"
-msgid "<variable id=\"data_search2\"><link href=\"text/shared/guide/data_search2.xhp\" name=\"Searching With a Form Filter\">Searching With a Form Filter</link></variable>"
-msgstr "<variable id=\"data_search2\"><link href=\"text/shared/guide/data_search2.xhp\" name=\"Busca amb un filtre de formulari\">Busca amb un filtre de formulari</link></variable>"
+msgid "<variable id=\"data_search2\"><link href=\"text/shared/guide/data_search2.xhp\">Searching With a Form Filter</link></variable>"
+msgstr "<variable id=\"data_search2\"><link href=\"text/shared/guide/data_search2.xhp\">Busca amb un filtre de formulari</link></variable>"
#. pjcEu
#: data_search2.xhp
@@ -8378,13 +8378,13 @@ msgctxt ""
msgid "Enter the filter conditions into one or several fields. Note that if you enter filter conditions into several fields, all of the entered conditions must match (Boolean AND)."
msgstr "Introduïu les condicions del filtre en un o diversos camps. Tingueu en compte que si introduïu condicions de filtre en diferents camps, totes les condicions introduïdes han de coincidir (booleà AND)."
-#. sNJBm
+#. 6r4AM
#: data_search2.xhp
msgctxt ""
"data_search2.xhp\n"
"par_id3149481\n"
"help.text"
-msgid "More information about wildcards and operators can be found in <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>."
+msgid "More information about wildcards and operators can be found in <link href=\"text/sdatabase/02010100.xhp\">Query Design</link>."
msgstr ""
#. cEDEo
@@ -8405,23 +8405,23 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormFilterExit\">If you click on the <emph>Close</emph> button on the <emph>Form Filter</emph> toolbar, the form is displayed without a filter.</ahelp>"
msgstr "<ahelp hid=\".uno:FormFilterExit\">Si feu clic al botó <emph>Tanca</emph> a la barra d'eines <emph>Filtre de formulari</emph>, el formulari es mostra sense filtre.</ahelp>"
-#. P5nBh
+#. DsNC2
#: data_search2.xhp
msgctxt ""
"data_search2.xhp\n"
"par_id3150114\n"
"help.text"
-msgid "Click the <link href=\"text/shared/02/12120000.xhp\" name=\"Apply Filter\"><emph>Apply Filter</emph></link> icon<image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image> on the <emph>Form Navigation</emph> toolbar to change to the filtered view."
-msgstr "Feu clic a la icona <link href=\"text/shared/02/12120000.xhp\" name=\"Aplica el filtre\"><emph>Aplica el filtre</emph></link> <image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icona</alt></image> a la barra d'eines <emph>Navegació de formularis</emph> per a canviar a la vista filtrada."
+msgid "Click the <link href=\"text/shared/02/12120000.xhp\"><emph>Apply Filter</emph></link> icon<image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image> on the <emph>Form Navigation</emph> toolbar to change to the filtered view."
+msgstr "Feu clic a la icona <link href=\"text/shared/02/12120000.xhp\"><emph>Aplica el filtre</emph></link> <image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icona</alt></image> a la barra d'eines <emph>Navegació de formularis</emph> per a canviar a la vista filtrada."
-#. tFmwa
+#. XoDwE
#: data_search2.xhp
msgctxt ""
"data_search2.xhp\n"
"par_id3146898\n"
"help.text"
-msgid "The filter that has been set can be removed by clicking <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sort\"><emph>Reset Filter/Sort</emph></link> icon<image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icon</alt></image>."
-msgstr "El filtre que s'ha definit es pot eliminar fent clic a la icona <link href=\"text/shared/02/12040000.xhp\" name=\"Reinicia el filtre/l'ordenació\"><emph>Reinicia el filtre/l'ordenació</emph></link> <image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icona</alt></image>."
+msgid "The filter that has been set can be removed by clicking <link href=\"text/shared/02/12040000.xhp\"><emph>Reset Filter/Sort</emph></link> icon<image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icon</alt></image>."
+msgstr "El filtre que s'ha definit es pot eliminar fent clic a la icona <link href=\"text/shared/02/12040000.xhp\"><emph>Reinicia el filtre/l'ordenació</emph></link> <image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icona</alt></image>."
#. 6iFDB
#: data_tabledefine.xhp
@@ -8441,22 +8441,22 @@ msgctxt ""
msgid "<bookmark_value>tables in databases; creating in design view (manually)</bookmark_value> <bookmark_value>designing; database tables</bookmark_value> <bookmark_value>properties;fields in databases</bookmark_value> <bookmark_value>fields;database tables</bookmark_value> <bookmark_value>AutoValue (Base)</bookmark_value> <bookmark_value>primary keys;design view</bookmark_value>"
msgstr "<bookmark_value>taules en bases de dades; creació en la vista de disseny (manualment)</bookmark_value><bookmark_value>disseny; taules de bases de dades</bookmark_value><bookmark_value>propietats;camps en bases de dades</bookmark_value><bookmark_value>camps;taules de bases de dades</bookmark_value><bookmark_value>Valor automàtic (Base)</bookmark_value><bookmark_value>claus primàries;vista de disseny</bookmark_value>"
-#. jvkZe
+#. byuwj
#: data_tabledefine.xhp
msgctxt ""
"data_tabledefine.xhp\n"
"hd_id3149798\n"
"help.text"
-msgid "<variable id=\"data_tabledefine\"><link href=\"text/shared/guide/data_tabledefine.xhp\" name=\"Table Design\">Table Design</link></variable>"
-msgstr "<variable id=\"data_tabledefine\"><link href=\"text/shared/guide/data_tabledefine.xhp\" name=\"Disseny de taula\">Disseny de taula</link></variable>"
+msgid "<variable id=\"data_tabledefine\"><link href=\"text/shared/guide/data_tabledefine.xhp\">Table Design</link></variable>"
+msgstr "<variable id=\"data_tabledefine\"><link href=\"text/shared/guide/data_tabledefine.xhp\">Disseny de taula</link></variable>"
-#. owGgU
+#. kSHNv
#: data_tabledefine.xhp
msgctxt ""
"data_tabledefine.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "This section contains information about how to create a new database table in the <link href=\"text/sdatabase/05010000.xhp\" name=\"design view\">design view</link>."
+msgid "This section contains information about how to create a new database table in the <link href=\"text/sdatabase/05010000.xhp\">design view</link>."
msgstr ""
#. 39GZc
@@ -8837,14 +8837,14 @@ msgctxt ""
msgid "<bookmark_value>databases; overview</bookmark_value><bookmark_value>data source view; overview</bookmark_value><bookmark_value>data source explorer</bookmark_value><bookmark_value>explorer of data sources</bookmark_value>"
msgstr "<bookmark_value>bases de dades; visió general</bookmark_value><bookmark_value>vista de font de dades; visió general</bookmark_value><bookmark_value>explorador de la font de dades</bookmark_value><bookmark_value>explorador de fonts de dades</bookmark_value>"
-#. Nsv2D
+#. hWxw3
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"hd_id3148474\n"
"help.text"
-msgid "<variable id=\"database_main\"><link href=\"text/shared/guide/database_main.xhp\" name=\"Data Source Overview\">Database Overview</link></variable>"
-msgstr "<variable id=\"database_main\"><link href=\"text/shared/guide/database_main.xhp\" name=\"Visió general de la font de dades\">Visió general de les bases de dades</link></variable>"
+msgid "<variable id=\"database_main\"><link href=\"text/shared/guide/database_main.xhp\">Database Overview</link></variable>"
+msgstr "<variable id=\"database_main\"><link href=\"text/shared/guide/database_main.xhp\">Visió general de les bases de dades</link></variable>"
#. ouC3J
#: database_main.xhp
@@ -8873,14 +8873,14 @@ msgctxt ""
msgid "Choose <emph>View - Data Sources</emph> or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys to call the data source view from a text document or spreadsheet."
msgstr ""
-#. mHDEG
+#. BnvA4
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3147531\n"
"help.text"
-msgid "On the left you can see the <link href=\"text/shared/02/12000000.xhp\" name=\"Data source explorer\">Data source explorer</link>. If you select a table or query there, you see the contents of this table or query on the right. At the top margin is the <link href=\"text/shared/main0212.xhp\" name=\"Database bar\">Table Data bar</link>."
-msgstr "A l'esquerra podeu veure l'<link href=\"text/shared/02/12000000.xhp\" name=\"Explorador de font de dades\">Explorador de font de dades</link>. Si ací seleccioneu una taula o consulta, veureu el contingut d'esta taula o consulta a la dreta. Al marge superior dret hi ha la <link href=\"text/shared/main0212.xhp\" name=\"barra Base de dades\">barra Base de dades</link>."
+msgid "On the left you can see the <link href=\"text/shared/02/12000000.xhp\">Data source explorer</link>. If you select a table or query there, you see the contents of this table or query on the right. At the top margin is the <link href=\"text/shared/main0212.xhp\">Table Data bar</link>."
+msgstr "A l'esquerra podeu veure l'<link href=\"text/shared/02/12000000.xhp\">Explorador de font de dades</link>. Si ací seleccioneu una taula o consulta, veureu el contingut d'esta taula o consulta a la dreta. Al marge superior dret hi ha la <link href=\"text/shared/main0212.xhp\">barra Base de dades</link>."
#. meaRs
#: database_main.xhp
@@ -8891,23 +8891,23 @@ msgctxt ""
msgid "Data Sources"
msgstr "Fonts de dades"
-#. e4RGj
+#. uydiS
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3145069\n"
"help.text"
-msgid "<link href=\"text/shared/guide/data_addressbook.xhp\" name=\"address book as data source\">Address book as data source</link>"
-msgstr "<link href=\"text/shared/guide/data_addressbook.xhp\" name=\"llibreta d'adreces com a font de dades\">Llibreta d'adreces com a font de dades</link>"
+msgid "<link href=\"text/shared/guide/data_addressbook.xhp\">Address book as data source</link>"
+msgstr "<link href=\"text/shared/guide/data_addressbook.xhp\">Llibreta d'adreces com a font de dades</link>"
-#. AwPAM
+#. ZpYED
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3150398\n"
"help.text"
-msgid "<link href=\"text/shared/01/04180100.xhp\" name=\"View data source contents\">View data source contents</link>"
-msgstr "<link href=\"text/shared/01/04180100.xhp\" name=\"Visualització del contingut de la font de dades\">Visualització del contingut de la font de dades</link>"
+msgid "<link href=\"text/shared/01/04180100.xhp\">View data source contents</link>"
+msgstr "<link href=\"text/shared/01/04180100.xhp\">Visualització del contingut de la font de dades</link>"
#. 9iJrJ
#: database_main.xhp
@@ -8927,32 +8927,32 @@ msgctxt ""
msgid "Forms and Reports"
msgstr "Formularis i informes"
-#. r33Gv
+#. er6yS
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3154909\n"
"help.text"
-msgid "<link href=\"text/sdatabase/04030000.xhp\" name=\"Create new form document\">Create new form document</link>, <link href=\"text/shared/02/01170000.xhp\" name=\"edit form functions\">edit form controls</link>, <link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link>"
+msgid "<link href=\"text/sdatabase/04030000.xhp\">Create new form document</link>, <link href=\"text/shared/02/01170000.xhp\">edit form controls</link>, <link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link>"
msgstr ""
-#. sD4GB
+#. FMddb
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3152920\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170500.xhp\" name=\"entering data versus editing form\">Entering data versus editing form</link>"
-msgstr "<link href=\"text/shared/02/01170500.xhp\" name=\"introducció de dades o edició del formulari\">Introducció de dades o edició del formulari</link>"
+msgid "<link href=\"text/shared/02/01170500.xhp\">Entering data versus editing form</link>"
+msgstr "<link href=\"text/shared/02/01170500.xhp\">Introducció de dades o edició del formulari</link>"
-#. TtUPG
+#. 7ixNY
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3151380\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01100000.xhp\" name=\"Report AutoPilot\">Report Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01100000.xhp\" name=\"Informe AutoPilot\">Auxiliar d'informes</link>"
+msgid "<link href=\"text/shared/autopi/01100000.xhp\">Report Wizard</link>"
+msgstr "<link href=\"text/shared/autopi/01100000.xhp\">Auxiliar d'informes</link>"
#. tpEVh
#: database_main.xhp
@@ -8963,13 +8963,13 @@ msgctxt ""
msgid "Queries"
msgstr "Consultes"
-#. DwEUz
+#. 8CQuX
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3125864\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02000000.xhp\" name=\"Create new query or table view, edit query structure\">Create new query or table view, edit query structure</link>"
+msgid "<link href=\"text/sdatabase/02000000.xhp\">Create new query or table view, edit query structure</link>"
msgstr ""
#. WuBVH
@@ -8981,14 +8981,14 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>"
msgstr ""
-#. TjEU4
+#. DXtpP
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3155430\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340400.xhp\" name=\"Enter, edit and copy records\">Enter, edit and copy records</link>"
-msgstr "<link href=\"text/shared/01/05340400.xhp\" name=\"Introducció, edició i còpia de registres\">Introducció, edició i còpia de registres</link>"
+msgid "<link href=\"text/shared/01/05340400.xhp\">Enter, edit and copy records</link>"
+msgstr "<link href=\"text/shared/01/05340400.xhp\">Introducció, edició i còpia de registres</link>"
#. GnVZ7
#: database_main.xhp
@@ -8999,13 +8999,13 @@ msgctxt ""
msgid "Tables"
msgstr "Taules"
-#. Gcdea
+#. 54E6i
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3163713\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/sdatabase/05020000.xhp\" name=\"relations\">relations</link>"
+msgid "<link href=\"text/sdatabase/05010000.xhp\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\">index</link>, <link href=\"text/sdatabase/05020000.xhp\">relations</link>"
msgstr ""
#. WaABj
@@ -9017,14 +9017,14 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/tablewizard00.xhp\">Table Wizard</link>"
msgstr ""
-#. x7kax
+#. 2fyFh
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3159196\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340400.xhp\" name=\"Enter, edit and copy records\">Enter, edit and copy records</link>"
-msgstr "<link href=\"text/shared/01/05340400.xhp\" name=\"Introducció, edició i còpia de registres\">Introducció, edició i còpia de registres</link>"
+msgid "<link href=\"text/shared/01/05340400.xhp\">Enter, edit and copy records</link>"
+msgstr "<link href=\"text/shared/01/05340400.xhp\">Introducció, edició i còpia de registres</link>"
#. DiHDB
#: dev_tools.xhp
@@ -9044,13 +9044,13 @@ msgctxt ""
msgid "<bookmark_value>development tools</bookmark_value> <bookmark_value>object inspector</bookmark_value>"
msgstr ""
-#. SfpDF
+#. Ry6rJ
#: dev_tools.xhp
msgctxt ""
"dev_tools.xhp\n"
"hd_id951627860296699\n"
"help.text"
-msgid "<variable id=\"DevTools_h1\"><link href=\"text/shared/guide/dev_tools.xhp\" name=\"DevTools_help\">Development Tools</link></variable>"
+msgid "<variable id=\"DevTools_h1\"><link href=\"text/shared/guide/dev_tools.xhp\">Development Tools</link></variable>"
msgstr ""
#. khuRq
@@ -9278,13 +9278,13 @@ msgctxt ""
msgid "<emph>Class Name</emph>: is the name of the object class."
msgstr ""
-#. TbDBD
+#. FcG94
#: dev_tools.xhp
msgctxt ""
"dev_tools.xhp\n"
"par_id111627931046662\n"
"help.text"
-msgid "Use the class name to search more information in the API documentation. For example, the top-level object in a Writer document is an instance of the class <emph>SwXTextDocument</emph>, which is documented at <link href=\"https://docs.libreoffice.org/sw/html/classSwXTextDocument.html\" name=\"SwXTextDocument_API\">SwXTextDocument Class Reference</link>."
+msgid "Use the class name to search more information in the API documentation. For example, the top-level object in a Writer document is an instance of the class <emph>SwXTextDocument</emph>, which is documented at <link href=\"https://docs.libreoffice.org/sw/html/classSwXTextDocument.html\">SwXTextDocument Class Reference</link>."
msgstr ""
#. 7g3wB
@@ -9791,13 +9791,13 @@ msgctxt ""
msgid "The messages about validation of a signature that you see in %PRODUCTNAME are the messages that the validation files return. The %PRODUCTNAME software has no way to ensure that the messages reflect the true status of any certificate. The %PRODUCTNAME software only displays the messages that other files that are not under control of %PRODUCTNAME report. There is no legal responsibility of %PRODUCTNAME that the displayed messages reflect the true status of a digital signature."
msgstr "Els missatges sobre la validació d'una signatura que veieu al %PRODUCTNAME són els missatges que retornen els fitxers de validació. El programari del %PRODUCTNAME no pot garantir que els missatges reflecteixen l'estat real de qualsevol certificat. El programari del %PRODUCTNAME només mostra els missatges que informen d'altres fitxers que no es troben sota el control del %PRODUCTNAME. El %PRODUCTNAME no es responsabilitza legalment de què els missatges mostrats reflectisquen l'estat real d'una signatura digital."
-#. 5QG7D
+#. DsCBF
#: digital_signatures.xhp
msgctxt ""
"digital_signatures.xhp\n"
"par_id3204443\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org: How to use digital Signatures\">English Wiki page on digital signatures</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">English Wiki page on digital signatures</link>"
msgstr ""
#. p8TL7
@@ -9998,13 +9998,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">If you enable <emph>Remember password till end of session</emph>, your password will be remembered for subsequent WebDAV connections until you exit %PRODUCTNAME.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Si habiliteu <emph>Recorda la contrasenya fins al final de la sessió</emph>, la vostra contrasenya es recordarà en connexions WebDAV posteriors fins que no eixiu del %PRODUCTNAME.</ahelp>"
-#. QBcqG
+#. YAhkz
#: digitalsign_receive.xhp
msgctxt ""
"digitalsign_receive.xhp\n"
"par_id3204443\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org How to use digital Signatures\">English Wiki page on digital signatures</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">English Wiki page on digital signatures</link>"
msgstr ""
#. bZGSc
@@ -10340,14 +10340,14 @@ msgctxt ""
msgid "<bookmark_value>documents; saving automatically</bookmark_value><bookmark_value>saving;documents, automatically</bookmark_value><bookmark_value>automatic saving</bookmark_value><bookmark_value>backups;automatic</bookmark_value><bookmark_value>files; saving automatically</bookmark_value><bookmark_value>text documents; saving automatically</bookmark_value><bookmark_value>spreadsheets; saving automatically</bookmark_value><bookmark_value>drawings; saving automatically</bookmark_value><bookmark_value>presentations; saving automatically</bookmark_value>"
msgstr "<bookmark_value>documents; desament automàtic</bookmark_value><bookmark_value>desament;documents, automàticament</bookmark_value><bookmark_value>desament automàtic</bookmark_value><bookmark_value>còpies de seguretat;automàtiques</bookmark_value><bookmark_value>fitxers; desament automàtic</bookmark_value><bookmark_value>documents de text; desament automàtic</bookmark_value><bookmark_value>fulls de càlcul; desament automàtic</bookmark_value><bookmark_value>dibuixos; desament automàtic</bookmark_value><bookmark_value>presentacions; desament automàtic</bookmark_value>"
-#. DCQGi
+#. wQZGr
#: doc_autosave.xhp
msgctxt ""
"doc_autosave.xhp\n"
"hd_id3155536\n"
"help.text"
-msgid "<variable id=\"doc_autosave\"><link href=\"text/shared/guide/doc_autosave.xhp\" name=\"Saving Documents Automatically\">Saving Documents Automatically</link></variable>"
-msgstr "<variable id=\"doc_autosave\"><link href=\"text/shared/guide/doc_autosave.xhp\" name=\"Desament automàtic de documents\">Desament automàtic de documents</link></variable>"
+msgid "<variable id=\"doc_autosave\"><link href=\"text/shared/guide/doc_autosave.xhp\">Saving Documents Automatically</link></variable>"
+msgstr "<variable id=\"doc_autosave\"><link href=\"text/shared/guide/doc_autosave.xhp\">Desament automàtic de documents</link></variable>"
#. 6GmAr
#: doc_autosave.xhp
@@ -10358,14 +10358,14 @@ msgctxt ""
msgid "To create a backup file every time you save a document"
msgstr "Per crear un fitxer de còpia de seguretat cada cop que guardeu un document"
-#. QBGUG
+#. dCA5j
#: doc_autosave.xhp
msgctxt ""
"doc_autosave.xhp\n"
"par_id3152780\n"
"help.text"
-msgid "Choose <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/01010200.xhp\" name=\"Load/Save - General\"><emph>Load/Save - General</emph></link>."
-msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010200.xhp\" name=\"Carrega/guarda ▸ General\"><emph>Carrega/guarda ▸ General</emph></link>."
+msgid "Choose <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/01010200.xhp\"><emph>Load/Save - General</emph></link>."
+msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010200.xhp\"><emph>Carrega/guarda ▸ General</emph></link>."
#. cjfZJ
#: doc_autosave.xhp
@@ -10412,14 +10412,14 @@ msgctxt ""
msgid "To save recovery information automatically every n minutes"
msgstr "Per guardar la informació de restabliment automàticament cada n minuts"
-#. nEZPe
+#. R7sxn
#: doc_autosave.xhp
msgctxt ""
"doc_autosave.xhp\n"
"par_id3148563\n"
"help.text"
-msgid "Choose <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/01010200.xhp\" name=\"Load/Save - General\"><emph>Load/Save - General</emph></link>."
-msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010200.xhp\" name=\"Carrega/guarda - General\"><emph>Carrega/guarda ▸ General</emph></link>."
+msgid "Choose <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/01010200.xhp\"><emph>Load/Save - General</emph></link>."
+msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010200.xhp\"><emph>Carrega/guarda ▸ General</emph></link>."
#. 9iCjt
#: doc_autosave.xhp
@@ -10439,23 +10439,23 @@ msgctxt ""
msgid "This command saves the information necessary to restore the current document in case of a crash. Additionally, in case of a crash %PRODUCTNAME tries automatically to save AutoRecovery information for all open documents, if possible."
msgstr "Esta orde guarda la informació necessària per restaurar el document actual en cas d'error. A més, en cas d'error, el %PRODUCTNAME intenta guardar automàticament la informació de restabliment automàtic per a tots els documents oberts, si és possible."
-#. RZr2e
+#. 72XGZ
#: doc_autosave.xhp
msgctxt ""
"doc_autosave.xhp\n"
"par_id3148672\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=\"Anomena i guarda\">Anomena i guarda</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\">Anomena i guarda</link>"
-#. GiFbH
+#. 9VabN
#: doc_autosave.xhp
msgctxt ""
"doc_autosave.xhp\n"
"par_id3159150\n"
"help.text"
-msgid "<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>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Carrega/guarda - General\">Carrega/guarda - General</link>."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\">Load/Save - General</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\">Carrega/guarda - General</link>."
#. tGAzm
#: doc_autosave.xhp
@@ -10484,14 +10484,14 @@ msgctxt ""
msgid "<bookmark_value>opening; documents</bookmark_value> <bookmark_value>documents; opening</bookmark_value> <bookmark_value>files; opening</bookmark_value> <bookmark_value>loading; documents</bookmark_value> <bookmark_value>spreadsheets;creating/opening</bookmark_value> <bookmark_value>presentations;creating/opening</bookmark_value> <bookmark_value>new documents</bookmark_value> <bookmark_value>empty documents</bookmark_value> <bookmark_value>text documents;creating/opening</bookmark_value> <bookmark_value>drawings; creating/opening</bookmark_value> <bookmark_value>HTML documents; new</bookmark_value> <bookmark_value>formulas; new</bookmark_value>"
msgstr ""
-#. GG3yh
+#. NMUJz
#: doc_open.xhp
msgctxt ""
"doc_open.xhp\n"
"hd_id3147834\n"
"help.text"
-msgid "<variable id=\"doc_open\"><link href=\"text/shared/guide/doc_open.xhp\" name=\"Opening Documents\">Opening Documents</link></variable>"
-msgstr "<variable id=\"doc_open\"><link href=\"text/shared/guide/doc_open.xhp\" name=\"Obertura de documents\">Obertura de documents</link></variable>"
+msgid "<variable id=\"doc_open\"><link href=\"text/shared/guide/doc_open.xhp\">Opening Documents</link></variable>"
+msgstr "<variable id=\"doc_open\"><link href=\"text/shared/guide/doc_open.xhp\">Obertura de documents</link></variable>"
#. FCBeh
#: doc_open.xhp
@@ -10628,14 +10628,14 @@ msgctxt ""
msgid "If you click the arrow next to the <emph>New</emph> icon, a submenu opens in which you can select another document type."
msgstr "Si feu clic a la fletxa que hi ha al costat de la icona <emph>Nou</emph>, s'obrirà un submenú on podreu seleccionar un altre tipus de document."
-#. Pnafh
+#. RFE99
#: doc_open.xhp
msgctxt ""
"doc_open.xhp\n"
"par_id3148616\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=\"Fitxer ▸ Obri\">Fitxer ▸ Obri</link>"
+msgid "<link href=\"text/shared/01/01020000.xhp\">File - Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\">Fitxer ▸ Obri</link>"
#. TnZ4D
#: doc_save.xhp
@@ -10655,14 +10655,14 @@ msgctxt ""
msgid "<bookmark_value>documents; saving</bookmark_value><bookmark_value>saving; documents</bookmark_value><bookmark_value>backups; documents</bookmark_value><bookmark_value>files; saving</bookmark_value><bookmark_value>text documents; saving</bookmark_value><bookmark_value>spreadsheets; saving</bookmark_value><bookmark_value>drawings; saving</bookmark_value><bookmark_value>presentations; saving</bookmark_value><bookmark_value>FTP; saving documents</bookmark_value>"
msgstr "<bookmark_value>documents; guardar</bookmark_value><bookmark_value>guardar; documents</bookmark_value><bookmark_value>còpies de seguretat; documents</bookmark_value><bookmark_value>fitxers; guardar</bookmark_value><bookmark_value>documents de text; guardar</bookmark_value><bookmark_value>fulls de càlcul; guardar</bookmark_value><bookmark_value>dibuixos; guardar</bookmark_value><bookmark_value>presentacions; guardar</bookmark_value><bookmark_value>FTP; guardar documents</bookmark_value>"
-#. iRMDq
+#. irkmW
#: doc_save.xhp
msgctxt ""
"doc_save.xhp\n"
"hd_id3147226\n"
"help.text"
-msgid "<variable id=\"doc_save\"><link href=\"text/shared/guide/doc_save.xhp\" name=\"Saving Documents\">Saving Documents</link></variable>"
-msgstr "<variable id=\"doc_save\"><link href=\"text/shared/guide/doc_save.xhp\" name=\"Guardar documents\">Guardar documents</link></variable>"
+msgid "<variable id=\"doc_save\"><link href=\"text/shared/guide/doc_save.xhp\">Saving Documents</link></variable>"
+msgstr "<variable id=\"doc_save\"><link href=\"text/shared/guide/doc_save.xhp\">Guardar documents</link></variable>"
#. DKFx6
#: doc_save.xhp
@@ -10691,23 +10691,23 @@ msgctxt ""
msgid "The document is saved under its path and name on the current local data medium or network drive or on the Internet, overwriting any file of the same name."
msgstr "El document es guarda al seu camí i amb el seu nom al suport de dades local, a la unitat de xarxa actual o a Internet, i sobreescriu qualsevol fitxer amb el mateix nom."
-#. qaTtH
+#. nXqWZ
#: doc_save.xhp
msgctxt ""
"doc_save.xhp\n"
"par_id3150984\n"
"help.text"
-msgid "When you save a new file for the first time, the <link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link> dialog opens, in which you can enter a name, folder and drive or volume for the file. To open this dialog, choose <emph>File - Save As</emph>."
-msgstr "Quan guardeu un fitxer nou per primera vegada, s'obri el diàleg <link href=\"text/shared/01/01070000.xhp\" name=\"Anomena i guarda\">Anomena i guarda</link>, on podeu introduir un nom, una carpeta i una unitat o volum per al fitxer. Per obrir este diàleg, trieu <emph>Fitxer ▸ Anomena i guarda</emph>."
+msgid "When you save a new file for the first time, the <link href=\"text/shared/01/01070000.xhp\">Save As</link> dialog opens, in which you can enter a name, folder and drive or volume for the file. To open this dialog, choose <emph>File - Save As</emph>."
+msgstr "Quan guardeu un fitxer nou per primera vegada, s'obri el diàleg <link href=\"text/shared/01/01070000.xhp\">Anomena i guarda</link>, on podeu introduir un nom, una carpeta i una unitat o volum per al fitxer. Per obrir este diàleg, trieu <emph>Fitxer ▸ Anomena i guarda</emph>."
-#. rg8Rf
+#. P2oCF
#: doc_save.xhp
msgctxt ""
"doc_save.xhp\n"
"par_id3152472\n"
"help.text"
-msgid "You can set the automatic creation of a backup copy under <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/01010200.xhp\" name=\"Load/Save - General\"><emph>Load/Save - General</emph></link>."
-msgstr "És possible configurar la creació automàtica de còpies de seguretat a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010200.xhp\" name=\"Carrega/guarda ▸ General\"><emph>Carrega/guarda ▸ General</emph></link>."
+msgid "You can set the automatic creation of a backup copy under <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/01010200.xhp\"><emph>Load/Save - General</emph></link>."
+msgstr "És possible configurar la creació automàtica de còpies de seguretat a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010200.xhp\"><emph>Carrega/guarda ▸ General</emph></link>."
#. 8tKAZ
#: doc_save.xhp
@@ -10871,23 +10871,23 @@ msgctxt ""
msgid "my file.txt"
msgstr "el meu fitxer.txt"
-#. fG4J9
+#. DiQ3z
#: doc_save.xhp
msgctxt ""
"doc_save.xhp\n"
"par_id3153524\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=\"Anomena i guarda\">Anomena i guarda</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\">Anomena i guarda</link>"
-#. uPRys
+#. e38ca
#: doc_save.xhp
msgctxt ""
"doc_save.xhp\n"
"par_id3154140\n"
"help.text"
-msgid "<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>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Carrega/guarda - General\">Carrega/guarda - General</link>."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\">Load/Save - General</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\">Carrega/guarda - General</link>."
#. 4ZyYC
#: dragdrop.xhp
@@ -10907,14 +10907,14 @@ msgctxt ""
msgid "<bookmark_value>drag and drop;overview</bookmark_value><bookmark_value>mouse; pointers when using drag and drop</bookmark_value><bookmark_value>links;by drag and drop</bookmark_value><bookmark_value>copying;by drag and drop</bookmark_value>"
msgstr "<bookmark_value>arrossegar i deixar anar;visió general</bookmark_value><bookmark_value>ratolí; busques quan s'utilitza arrossegar i deixar anar</bookmark_value><bookmark_value>enllaços;arrossegant i deixant anar</bookmark_value><bookmark_value>còpia; arrossegant i deixant anar</bookmark_value>"
-#. SgQF9
+#. F4BV4
#: dragdrop.xhp
msgctxt ""
"dragdrop.xhp\n"
"hd_id3147571\n"
"help.text"
-msgid "<variable id=\"dragdrop\"><link href=\"text/shared/guide/dragdrop.xhp\" name=\"Dragging and Dropping Within a $[officename] Document\">Dragging and Dropping Within a $[officename] Document</link></variable>"
-msgstr "<variable id=\"dragdrop\"><link href=\"text/shared/guide/dragdrop.xhp\" name=\"Arrossegar i deixar anar dins d'un document del $[officename]\">Arrossegar i deixar anar dins d'un document del $[officename]</link></variable>"
+msgid "<variable id=\"dragdrop\"><link href=\"text/shared/guide/dragdrop.xhp\">Dragging and Dropping Within a $[officename] Document</link></variable>"
+msgstr "<variable id=\"dragdrop\"><link href=\"text/shared/guide/dragdrop.xhp\">Arrossegar i deixar anar dins d'un document del $[officename]</link></variable>"
#. GyVoT
#: dragdrop.xhp
@@ -11024,14 +11024,14 @@ msgctxt ""
msgid "<image id=\"img_id3158407\" src=\"sw/res/sc20238.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3158407\">Icon</alt></image>"
msgstr "<image id=\"img_id3158407\" src=\"sw/res/sc20238.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3158407\">Icona</alt></image>"
-#. FffnD
+#. yM3LQ
#: dragdrop.xhp
msgctxt ""
"dragdrop.xhp\n"
"par_id3156422\n"
"help.text"
-msgid "If you drag objects out of the <link href=\"text/shared/guide/navigator.xhp\" name=\"Navigator\"><emph>Navigator</emph></link>, you can specify in the submenu of the Navigator's <emph>Drag Mode</emph> icon whether to copy the object, insert it as a link or insert it as a hyperlink."
-msgstr "Si arrossegueu objectes fora del <link href=\"text/shared/guide/navigator.xhp\" name=\"Navegador\"><emph>Navegador</emph></link>, podeu indicar al submenú de la icona <emph>Mode d'arrossegament</emph> del Navegador si voleu copiar l'objecte o inserir-lo com a enllaç."
+msgid "If you drag objects out of the <link href=\"text/shared/guide/navigator.xhp\"><emph>Navigator</emph></link>, you can specify in the submenu of the Navigator's <emph>Drag Mode</emph> icon whether to copy the object, insert it as a link or insert it as a hyperlink."
+msgstr "Si arrossegueu objectes fora del <link href=\"text/shared/guide/navigator.xhp\"><emph>Navegador</emph></link>, podeu indicar al submenú de la icona <emph>Mode d'arrossegament</emph> del Navegador si voleu copiar l'objecte o inserir-lo com a enllaç."
#. AGXCC
#: dragdrop.xhp
@@ -11060,14 +11060,14 @@ msgctxt ""
msgid "<bookmark_value>drag and drop; data source view</bookmark_value><bookmark_value>data source view; drag and drop</bookmark_value><bookmark_value>copying;from data source view</bookmark_value><bookmark_value>pasting;from data source view</bookmark_value>"
msgstr "<bookmark_value>arrossegar i deixar anar; visualització de la font de dades</bookmark_value><bookmark_value>visualització de la font de dades; arrossegar i deixar anar</bookmark_value><bookmark_value>còpia;des de la visualització de la font de dades</bookmark_value><bookmark_value>enganxar; des de la visualització de la font de dades</bookmark_value>"
-#. JkBST
+#. DYpFc
#: dragdrop_beamer.xhp
msgctxt ""
"dragdrop_beamer.xhp\n"
"hd_id3145071\n"
"help.text"
-msgid "<variable id=\"dragdrop_beamer\"><link href=\"text/shared/guide/dragdrop_beamer.xhp\" name=\"Drag-and-Drop With the Data Source View\">Drag-and-Drop With the Data Source View</link></variable>"
-msgstr "<variable id=\"dragdrop_beamer\"><link href=\"text/shared/guide/dragdrop_beamer.xhp\" name=\"Arrossegar i deixar anar amb la visualització de la font de dades\">Arrossegar i deixar anar amb la visualització de la font de dades</link></variable>"
+msgid "<variable id=\"dragdrop_beamer\"><link href=\"text/shared/guide/dragdrop_beamer.xhp\">Drag-and-Drop With the Data Source View</link></variable>"
+msgstr "<variable id=\"dragdrop_beamer\"><link href=\"text/shared/guide/dragdrop_beamer.xhp\">Arrossegar i deixar anar amb la visualització de la font de dades</link></variable>"
#. DccCG
#: dragdrop_beamer.xhp
@@ -11150,14 +11150,14 @@ msgctxt ""
msgid "You can insert a database field in a text document by dragging a field name from the column header of the data source view into the document. This is especially useful when designing form letters. Simply drag the desired fields - home address, form of address, and so on - into your document."
msgstr "Podeu inserir un camp de base de dades en un document de text arrossegant un nom de camp de la capçalera de la columna de la visualització de la font de dades al document. Això resulta especialment útil quan dissenyeu cartes de formulari. Només cal que arrossegueu els camps que desitgeu (adreça, tractament, etc.) al document."
-#. rB68R
+#. XtqH7
#: dragdrop_beamer.xhp
msgctxt ""
"dragdrop_beamer.xhp\n"
"par_id3153105\n"
"help.text"
-msgid "To insert a complete record, select the corresponding header and drag it into the document. When you release the mouse button, the <link href=\"text/shared/02/12070000.xhp\" name=\"Insert database columns\"><emph>Insert database columns</emph></link> dialog appears, in which you can decide whether to use all database fields, and whether to copy the data into the document as text, a table or fields. All currently selected records will be inserted."
-msgstr "Per inserir un registre complet, seleccioneu la capçalera corresponent i arrossegueu-la al document. Quan deixeu anar el botó del ratolí, apareixerà el diàleg <link href=\"text/shared/02/12070000.xhp\" name=\"Insereix les columnes de la base de dades\"><emph>Insereix les columnes de la base de dades</emph></link>, on podreu decidir si voleu utilitzar tots els camps de la base de dades, i si voleu copiar les dades al document en forma de text, de taula o de camps. S'inseriran tots els registres seleccionats."
+msgid "To insert a complete record, select the corresponding header and drag it into the document. When you release the mouse button, the <link href=\"text/shared/02/12070000.xhp\"><emph>Insert database columns</emph></link> dialog appears, in which you can decide whether to use all database fields, and whether to copy the data into the document as text, a table or fields. All currently selected records will be inserted."
+msgstr "Per inserir un registre complet, seleccioneu la capçalera corresponent i arrossegueu-la al document. Quan deixeu anar el botó del ratolí, apareixerà el diàleg <link href=\"text/shared/02/12070000.xhp\"><emph>Insereix les columnes de la base de dades</emph></link>, on podreu decidir si voleu utilitzar tots els camps de la base de dades, i si voleu copiar les dades al document en forma de text, de taula o de camps. S'inseriran tots els registres seleccionats."
#. FfBFe
#: dragdrop_beamer.xhp
@@ -11222,14 +11222,14 @@ msgctxt ""
msgid "<bookmark_value>Gallery;dragging pictures to draw objects</bookmark_value><bookmark_value>draw objects;dropping Gallery pictures</bookmark_value><bookmark_value>drag and drop;from Gallery to draw objects</bookmark_value>"
msgstr "<bookmark_value>Galeria;arrossegar gràfics per dibuixar objectes</bookmark_value><bookmark_value>dibuixar objectes; deixar anar gràfics de la Galeria</bookmark_value><bookmark_value>arrossegar i deixar anar;des de la Galeria per dibuixar objectes</bookmark_value>"
-#. u2nTt
+#. qGug9
#: dragdrop_fromgallery.xhp
msgctxt ""
"dragdrop_fromgallery.xhp\n"
"hd_id3145345\n"
"help.text"
-msgid "<variable id=\"dragdrop_fromgallery\"><link href=\"text/shared/guide/dragdrop_fromgallery.xhp\" name=\"Copying Graphics From the Gallery\">Copying Graphics From the Gallery</link></variable>"
-msgstr "<variable id=\"dragdrop_fromgallery\"><link href=\"text/shared/guide/dragdrop_fromgallery.xhp\" name=\"Còpia de gràfics des de la Galeria\">Còpia de gràfics des de la Galeria</link></variable>"
+msgid "<variable id=\"dragdrop_fromgallery\"><link href=\"text/shared/guide/dragdrop_fromgallery.xhp\">Copying Graphics From the Gallery</link></variable>"
+msgstr "<variable id=\"dragdrop_fromgallery\"><link href=\"text/shared/guide/dragdrop_fromgallery.xhp\">Còpia de gràfics des de la Galeria</link></variable>"
#. JA2ug
#: dragdrop_fromgallery.xhp
@@ -11294,14 +11294,14 @@ msgctxt ""
msgid "<bookmark_value>drag and drop;to Gallery</bookmark_value><bookmark_value>copying;to Gallery</bookmark_value><bookmark_value>Gallery; adding pictures</bookmark_value><bookmark_value>pictures;adding to Gallery</bookmark_value><bookmark_value>inserting;pictures in Gallery</bookmark_value><bookmark_value>pasting;to Gallery</bookmark_value>"
msgstr "<bookmark_value>arrossegar i deixar anar;a la Galeria</bookmark_value><bookmark_value>còpia;a la Galeria</bookmark_value><bookmark_value>Galeria; addició d'imatges</bookmark_value><bookmark_value>imatges;addició a la Galeria</bookmark_value><bookmark_value>inserció;imatges a la Galeria</bookmark_value><bookmark_value>enganxar;a la Galeria</bookmark_value>"
-#. jhLFR
+#. CGxpp
#: dragdrop_gallery.xhp
msgctxt ""
"dragdrop_gallery.xhp\n"
"hd_id3154927\n"
"help.text"
-msgid "<variable id=\"dragdrop_gallery\"><link href=\"text/shared/guide/dragdrop_gallery.xhp\" name=\"Adding Graphics to the Gallery\">Adding Graphics to the Gallery</link> </variable>"
-msgstr "<variable id=\"dragdrop_gallery\"><link href=\"text/shared/guide/dragdrop_gallery.xhp\" name=\"Addició de gràfics a la Galeria\">Addició de gràfics a la Galeria</link> </variable>"
+msgid "<variable id=\"dragdrop_gallery\"><link href=\"text/shared/guide/dragdrop_gallery.xhp\">Adding Graphics to the Gallery</link> </variable>"
+msgstr "<variable id=\"dragdrop_gallery\"><link href=\"text/shared/guide/dragdrop_gallery.xhp\">Addició de gràfics a la Galeria</link> </variable>"
#. uTcum
#: dragdrop_gallery.xhp
@@ -11384,14 +11384,14 @@ msgctxt ""
msgid "<bookmark_value>drag and drop; pictures</bookmark_value><bookmark_value>pictures; drag and drop between documents</bookmark_value><bookmark_value>copying;pictures, between documents</bookmark_value><bookmark_value>pasting;pictures from other documents</bookmark_value>"
msgstr "<bookmark_value>arrossegar i deixar anar; imatges</bookmark_value><bookmark_value>imatges; arrossegar i deixar anar entre documents</bookmark_value><bookmark_value>còpia;imatges, entre documents</bookmark_value><bookmark_value>enganxa;imatges d'altres documents</bookmark_value>"
-#. 3X6H9
+#. wvBaB
#: dragdrop_graphic.xhp
msgctxt ""
"dragdrop_graphic.xhp\n"
"hd_id3159201\n"
"help.text"
-msgid "<variable id=\"dragdrop_graphic\"><link href=\"text/shared/guide/dragdrop_graphic.xhp\" name=\"Copying Graphics Between Documents\">Copying Graphics Between Documents</link></variable>"
-msgstr "<variable id=\"dragdrop_graphic\"><link href=\"text/shared/guide/dragdrop_graphic.xhp\" name=\"Còpia de gràfics entre documents\">Còpia de gràfics entre documents</link></variable>"
+msgid "<variable id=\"dragdrop_graphic\"><link href=\"text/shared/guide/dragdrop_graphic.xhp\">Copying Graphics Between Documents</link></variable>"
+msgstr "<variable id=\"dragdrop_graphic\"><link href=\"text/shared/guide/dragdrop_graphic.xhp\">Còpia de gràfics entre documents</link></variable>"
#. uY53F
#: dragdrop_graphic.xhp
@@ -11483,14 +11483,14 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets; copying areas to text documents</bookmark_value><bookmark_value>copying; sheet areas, to text documents</bookmark_value><bookmark_value>pasting;sheet areas in text documents</bookmark_value>"
msgstr "<bookmark_value>fulls de càlcul; còpia d'àrees a documents de text</bookmark_value><bookmark_value>còpia; àrees de full, a documents de text</bookmark_value><bookmark_value>enganxar;àrees de full en documents de text</bookmark_value>"
-#. 5TTsH
+#. BAXmU
#: dragdrop_table.xhp
msgctxt ""
"dragdrop_table.xhp\n"
"hd_id3154927\n"
"help.text"
-msgid "<variable id=\"dragdrop_table\"><link href=\"text/shared/guide/dragdrop_table.xhp\" name=\"Copying Spreadsheet Areas to Text Documents\">Copying Spreadsheet Areas to Text Documents</link></variable>"
-msgstr "<variable id=\"dragdrop_table\"><link href=\"text/shared/guide/dragdrop_table.xhp\" name=\"Còpia d'àrees d'un full de càlcul a documents de text\">Còpia d'àrees d'un full de càlcul a documents de text</link></variable>"
+msgid "<variable id=\"dragdrop_table\"><link href=\"text/shared/guide/dragdrop_table.xhp\">Copying Spreadsheet Areas to Text Documents</link></variable>"
+msgstr "<variable id=\"dragdrop_table\"><link href=\"text/shared/guide/dragdrop_table.xhp\">Còpia d'àrees d'un full de càlcul a documents de text</link></variable>"
#. eFT4S
#: dragdrop_table.xhp
@@ -11591,14 +11591,14 @@ msgctxt ""
msgid "<bookmark_value>customizing; toolbars</bookmark_value><bookmark_value>buttons;toolbars</bookmark_value><bookmark_value>toolbars;adding buttons</bookmark_value><bookmark_value>configuring; toolbars</bookmark_value><bookmark_value>editing; toolbars</bookmark_value><bookmark_value>inserting;buttons in toolbars</bookmark_value>"
msgstr "<bookmark_value>personalització; barres d'eines</bookmark_value><bookmark_value>botons;barres d'eines</bookmark_value><bookmark_value>barres d'eines;addició de botons</bookmark_value><bookmark_value>configuració; barres d'eines</bookmark_value><bookmark_value>edició; barres d'eines</bookmark_value><bookmark_value>inserció; botons en barres d'eines</bookmark_value>"
-#. LCD7D
+#. nvE2R
#: edit_symbolbar.xhp
msgctxt ""
"edit_symbolbar.xhp\n"
"hd_id3159201\n"
"help.text"
-msgid "<variable id=\"edit_symbolbar\"><link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"Adding Buttons to Toolbars\">Adding Buttons to Toolbars</link></variable>"
-msgstr "<variable id=\"edit_symbolbar\"><link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"Addició de botons a les barres d'eines\">Addició de botons a les barres d'eines</link></variable>"
+msgid "<variable id=\"edit_symbolbar\"><link href=\"text/shared/guide/edit_symbolbar.xhp\">Adding Buttons to Toolbars</link></variable>"
+msgstr "<variable id=\"edit_symbolbar\"><link href=\"text/shared/guide/edit_symbolbar.xhp\">Addició de botons a les barres d'eines</link></variable>"
#. NkDKU
#: edit_symbolbar.xhp
@@ -11717,13 +11717,13 @@ msgctxt ""
msgid "<bookmark_value>documents; sending as email</bookmark_value><bookmark_value>sending; documents as email</bookmark_value><bookmark_value>email attachments</bookmark_value><bookmark_value>files; sending as email</bookmark_value><bookmark_value>text documents;sending as email</bookmark_value><bookmark_value>spreadsheets; sending as email</bookmark_value><bookmark_value>drawings; sending as email</bookmark_value><bookmark_value>presentations; sending as email</bookmark_value><bookmark_value>attachments in emails</bookmark_value>"
msgstr ""
-#. CU2Ym
+#. vkKDV
#: email.xhp
msgctxt ""
"email.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<variable id=\"email\"><link href=\"text/shared/guide/email.xhp\" name=\"Sending Documents as Email\">Sending Documents as Email</link></variable>"
+msgid "<variable id=\"email\"><link href=\"text/shared/guide/email.xhp\">Sending Documents as Email</link></variable>"
msgstr ""
#. Z3E7r
@@ -11789,13 +11789,13 @@ msgctxt ""
msgid "<bookmark_value>Crash Report Tool</bookmark_value> <bookmark_value>reports;crash reports</bookmark_value> <bookmark_value>crash reports</bookmark_value> <bookmark_value>activating;Crash Report Tool</bookmark_value>"
msgstr ""
-#. sNc7D
+#. G9Kar
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\" name=\"Error Report Tool\">Crash Report Tool</link></variable>"
+msgid "<variable id=\"error_report\"><link href=\"text/shared/guide/error_report.xhp\">Crash Report Tool</link></variable>"
msgstr ""
#. ECi7s
@@ -11924,14 +11924,14 @@ msgctxt ""
msgid "<bookmark_value>documents; saving in other formats</bookmark_value><bookmark_value>saving; documents in other formats</bookmark_value><bookmark_value>files; saving in other formats</bookmark_value><bookmark_value>text documents;saving in other formats</bookmark_value><bookmark_value>spreadsheets; saving in other formats</bookmark_value><bookmark_value>drawings; saving in other formats</bookmark_value><bookmark_value>presentations; saving in other formats</bookmark_value><bookmark_value>exporting; to Microsoft Office formats</bookmark_value><bookmark_value>Word documents; saving as</bookmark_value><bookmark_value>Excel; saving as</bookmark_value><bookmark_value>PowerPoint export</bookmark_value>"
msgstr "<bookmark_value>documents; guardar en altres formats</bookmark_value><bookmark_value>guardar; documents en altres formats</bookmark_value><bookmark_value>fitxers; guardar en altres formats</bookmark_value><bookmark_value>documents de text;guardar en altres formats</bookmark_value><bookmark_value>fulls de càlcul; guardar en altres formats</bookmark_value><bookmark_value>dibuixos; guardar en altres formats</bookmark_value><bookmark_value>presentacions; guardar en altres formats</bookmark_value><bookmark_value>exportació; a formats del Microsoft Office</bookmark_value><bookmark_value>documents del Word; guardar com a</bookmark_value><bookmark_value>Excel; guardar com a</bookmark_value><bookmark_value>exportació de PowerPoint</bookmark_value>"
-#. EigPD
+#. 7UFYM
#: export_ms.xhp
msgctxt ""
"export_ms.xhp\n"
"hd_id3149416\n"
"help.text"
-msgid "<variable id=\"export_ms\"><link href=\"text/shared/guide/export_ms.xhp\" name=\"Saving Documents in Other Formats\">Saving Documents in Other Formats</link></variable>"
-msgstr "<variable id=\"export_ms\"><link href=\"text/shared/guide/export_ms.xhp\" name=\"Guardar documents en altres formats\">Guardar documents en altres formats</link></variable>"
+msgid "<variable id=\"export_ms\"><link href=\"text/shared/guide/export_ms.xhp\">Saving Documents in Other Formats</link></variable>"
+msgstr "<variable id=\"export_ms\"><link href=\"text/shared/guide/export_ms.xhp\">Guardar documents en altres formats</link></variable>"
#. BFPDC
#: export_ms.xhp
@@ -11969,14 +11969,14 @@ msgctxt ""
msgid "If you want the file dialogs to offer another file format as default, select that format in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - General</emph> in the <emph>Default file format </emph>area."
msgstr ""
-#. 9YgGa
+#. TiFpX
#: export_ms.xhp
msgctxt ""
"export_ms.xhp\n"
"par_id3149669\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=\"Anomena i guarda\">Anomena i guarda</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\">Save As</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\">Anomena i guarda</link>"
#. G7Dma
#: fax.xhp
@@ -11996,14 +11996,14 @@ msgctxt ""
msgid "<bookmark_value>faxes; sending</bookmark_value><bookmark_value>faxes;configuring $[officename]</bookmark_value><bookmark_value>sending; documents as faxes </bookmark_value><bookmark_value>configuring;fax icon</bookmark_value>"
msgstr "<bookmark_value>faxos; enviament</bookmark_value><bookmark_value>faxos;configuració del $[officename]</bookmark_value><bookmark_value>enviament; documents com a faxos </bookmark_value><bookmark_value>configuració;icona de fax</bookmark_value>"
-#. GW85Q
+#. Y9SkA
#: fax.xhp
msgctxt ""
"fax.xhp\n"
"hd_id3156426\n"
"help.text"
-msgid "<variable id=\"fax\"><link href=\"text/shared/guide/fax.xhp\" name=\"Sending Faxes and Configuring $[officename] for Faxing\">Sending Faxes and Configuring $[officename] for Faxing</link></variable>"
-msgstr "<variable id=\"fax\"><link href=\"text/shared/guide/fax.xhp\" name=\"Enviament de faxos i configuració del $[officename] per enviar faxos\">Enviament de faxos i configuració del $[officename] per enviar faxos</link></variable>"
+msgid "<variable id=\"fax\"><link href=\"text/shared/guide/fax.xhp\">Sending Faxes and Configuring $[officename] for Faxing</link></variable>"
+msgstr "<variable id=\"fax\"><link href=\"text/shared/guide/fax.xhp\">Enviament de faxos i configuració del $[officename] per enviar faxos</link></variable>"
#. EE7PR
#: fax.xhp
@@ -12059,13 +12059,13 @@ msgctxt ""
msgid "You can configure $[officename] so that a single click on an icon automatically sends the current document as a fax:"
msgstr "Podeu configurar el $[officename] perquè amb un sol clic en una icona s'envie automàticament el document actual en forma de fax:"
-#. HGvHi
+#. xAFDh
#: fax.xhp
msgctxt ""
"fax.xhp\n"
"par_id3145315\n"
"help.text"
-msgid "Choose <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/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link>."
+msgid "Choose <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/01040400.xhp\"><emph>%PRODUCTNAME Writer - Print</emph></link>."
msgstr ""
#. i3pFY
@@ -12410,14 +12410,14 @@ msgctxt ""
msgid "<bookmark_value>buttons; big/small</bookmark_value><bookmark_value>views; icons</bookmark_value><bookmark_value>icon sizes</bookmark_value><bookmark_value>changing;icon sizes</bookmark_value><bookmark_value>large icons</bookmark_value><bookmark_value>small icons</bookmark_value>"
msgstr "<bookmark_value>botons; grans/petits</bookmark_value><bookmark_value>vistes; icones</bookmark_value><bookmark_value>mides d'icones</bookmark_value><bookmark_value>canvi;mides d'icones</bookmark_value><bookmark_value>icones grans</bookmark_value><bookmark_value>icones petites</bookmark_value>"
-#. NZHhF
+#. DPFqv
#: flat_icons.xhp
msgctxt ""
"flat_icons.xhp\n"
"hd_id3145669\n"
"help.text"
-msgid "<variable id=\"flat_icons\"><link href=\"text/shared/guide/flat_icons.xhp\" name=\"Changing Icon Views\">Changing Icon Size</link></variable>"
-msgstr "<variable id=\"flat_icons\"><link href=\"text/shared/guide/flat_icons.xhp\" name=\"Canvi de les vistes d'icones\">Canvi de la mida de les icones</link></variable>"
+msgid "<variable id=\"flat_icons\"><link href=\"text/shared/guide/flat_icons.xhp\">Changing Icon Size</link></variable>"
+msgstr "<variable id=\"flat_icons\"><link href=\"text/shared/guide/flat_icons.xhp\">Canvi de la mida de les icones</link></variable>"
#. avvCx
#: flat_icons.xhp
@@ -12473,14 +12473,14 @@ msgctxt ""
msgid "<bookmark_value>toolbars;docking/undocking</bookmark_value> <bookmark_value>toolbars;viewing/closing</bookmark_value> <bookmark_value>toolbars;locking/unlocking</bookmark_value> <bookmark_value>closing;toolbars</bookmark_value> <bookmark_value>docking;toolbars</bookmark_value> <bookmark_value>fixing toolbars</bookmark_value> <bookmark_value>detaching toolbars</bookmark_value> <bookmark_value>placing toolbars</bookmark_value> <bookmark_value>positioning;toolbars</bookmark_value> <bookmark_value>moving;toolbars</bookmark_value> <bookmark_value>attaching toolbars</bookmark_value> <bookmark_value>floating toolbars</bookmark_value> <bookmark_value>windows;docking</bookmark_value> <bookmark_value>viewing;toolbars</bookmark_value> <bookmark_value>showing;toolbars</bookmark_value> <bookmark_value>icon bars, see toolbars</bookmark_value> <bookmark_value>button bars, see toolbars</bookmark_value>"
msgstr ""
-#. hA6wB
+#. FEzij
#: floating_toolbar.xhp
msgctxt ""
"floating_toolbar.xhp\n"
"hd_id3152801\n"
"help.text"
-msgid "<variable id=\"floating_toolbar\"><link href=\"text/shared/guide/floating_toolbar.xhp\" name=\"Using Toolbars\">Using Toolbars</link> </variable>"
-msgstr "<variable id=\"floating_toolbar\"><link href=\"text/shared/guide/floating_toolbar.xhp\" name=\"Ús de les barres d'eines\">Ús de les barres d'eines</link></variable>"
+msgid "<variable id=\"floating_toolbar\"><link href=\"text/shared/guide/floating_toolbar.xhp\">Using Toolbars</link> </variable>"
+msgstr "<variable id=\"floating_toolbar\"><link href=\"text/shared/guide/floating_toolbar.xhp\">Ús de les barres d'eines</link></variable>"
#. cXEKa
#: floating_toolbar.xhp
@@ -12968,14 +12968,14 @@ msgctxt ""
msgid "<bookmark_value>command buttons, see push buttons</bookmark_value> <bookmark_value>controls;adding to documents</bookmark_value> <bookmark_value>inserting;push buttons</bookmark_value> <bookmark_value>keys;adding push buttons</bookmark_value> <bookmark_value>buttons;adding push buttons</bookmark_value> <bookmark_value>press buttons, see push buttons</bookmark_value> <bookmark_value>push buttons;adding to documents</bookmark_value>"
msgstr "<bookmark_value>botons d'orde, vegeu botons per prémer</bookmark_value><bookmark_value>controls;addició en documents</bookmark_value><bookmark_value>inserció;botons per prémer</bookmark_value><bookmark_value>tecles;addició de botons per prémer</bookmark_value><bookmark_value>botons;addició de botons per prémer</bookmark_value><bookmark_value>botons per prémer, vegeu botons</bookmark_value><bookmark_value>botons per prémer;addició en documents</bookmark_value>"
-#. xrBhy
+#. mdPDi
#: formfields.xhp
msgctxt ""
"formfields.xhp\n"
"hd_id3149798\n"
"help.text"
-msgid "<variable id=\"formfields\"><link href=\"text/shared/guide/formfields.xhp\" name=\"Inserting and Editing Buttons\">Adding a Command Button to a Document</link></variable>"
-msgstr "<variable id=\"formfields\"><link href=\"text/shared/guide/formfields.xhp\" name=\"Inserció i edició de botons\">Addició d'un botó d'orde a un document</link></variable>"
+msgid "<variable id=\"formfields\"><link href=\"text/shared/guide/formfields.xhp\">Adding a Command Button to a Document</link></variable>"
+msgstr "<variable id=\"formfields\"><link href=\"text/shared/guide/formfields.xhp\">Addició d'un botó d'orde a un document</link></variable>"
#. CjP4o
#: formfields.xhp
@@ -13139,14 +13139,14 @@ msgctxt ""
msgid "<bookmark_value>Gallery; inserting pictures from</bookmark_value><bookmark_value>pictures; inserting from Gallery</bookmark_value><bookmark_value>objects; inserting from Gallery</bookmark_value><bookmark_value>patterns for objects</bookmark_value><bookmark_value>textures;inserting from Gallery</bookmark_value><bookmark_value>backgrounds;inserting from Gallery</bookmark_value><bookmark_value>inserting;objects from Gallery</bookmark_value><bookmark_value>copying;from Gallery</bookmark_value>"
msgstr "<bookmark_value>Galeria; inserció d'imatges des de la</bookmark_value><bookmark_value>imatges; inserció des de la Galeria</bookmark_value><bookmark_value>objectes; inserció des de la Galeria</bookmark_value><bookmark_value>patrons per als objectes</bookmark_value><bookmark_value>textures;inserció des de la Galeria</bookmark_value><bookmark_value>fons;inserció des de la Galeria</bookmark_value><bookmark_value>inserció;objectes des de la Galeria</bookmark_value><bookmark_value>còpia;des de la Galeria</bookmark_value>"
-#. ApxYf
+#. YRSYi
#: gallery_insert.xhp
msgctxt ""
"gallery_insert.xhp\n"
"hd_id3145136\n"
"help.text"
-msgid "<variable id=\"gallery_insert\"><link href=\"text/shared/guide/gallery_insert.xhp\" name=\"Inserting Objects From the Gallery\">Inserting Objects From the Gallery</link> </variable>"
-msgstr "<variable id=\"gallery_insert\"><link href=\"text/shared/guide/gallery_insert.xhp\" name=\"Inserció d'objectes des de la Galeria\">Inserció d'objectes des de la Galeria</link> </variable>"
+msgid "<variable id=\"gallery_insert\"><link href=\"text/shared/guide/gallery_insert.xhp\">Inserting Objects From the Gallery</link> </variable>"
+msgstr "<variable id=\"gallery_insert\"><link href=\"text/shared/guide/gallery_insert.xhp\">Inserció d'objectes des de la Galeria</link> </variable>"
#. LAR7B
#: gallery_insert.xhp
@@ -13607,14 +13607,14 @@ msgctxt ""
msgid "<bookmark_value>hyperlinks; editing</bookmark_value><bookmark_value>links; editing hyperlinks</bookmark_value><bookmark_value>editing; hyperlinks</bookmark_value><bookmark_value>text attributes; hyperlinks</bookmark_value><bookmark_value>buttons;editing hyperlink buttons</bookmark_value><bookmark_value>URL;changing hyperlink URLs</bookmark_value>"
msgstr "<bookmark_value>enllaços; edició</bookmark_value><bookmark_value>enllaços; edició d'enllaços</bookmark_value><bookmark_value>edició; enllaços</bookmark_value><bookmark_value>atributs de text; enllaços</bookmark_value><bookmark_value>botons;edició de botons d'enllaç</bookmark_value><bookmark_value>URL;canvi dels URL dels enllaços</bookmark_value>"
-#. V6ywk
+#. SkQGu
#: hyperlink_edit.xhp
msgctxt ""
"hyperlink_edit.xhp\n"
"hd_id3153910\n"
"help.text"
-msgid "<variable id=\"hyperlink_edit\"><link href=\"text/shared/guide/hyperlink_edit.xhp\" name=\"Editing Hyperlinks\">Editing Hyperlinks</link></variable>"
-msgstr "<variable id=\"hyperlink_edit\"><link href=\"text/shared/guide/hyperlink_edit.xhp\" name=\"Edició d'enllaços\">Edició d'enllaços</link></variable>"
+msgid "<variable id=\"hyperlink_edit\"><link href=\"text/shared/guide/hyperlink_edit.xhp\">Editing Hyperlinks</link></variable>"
+msgstr "<variable id=\"hyperlink_edit\"><link href=\"text/shared/guide/hyperlink_edit.xhp\">Edició d'enllaços</link></variable>"
#. FNBDB
#: hyperlink_edit.xhp
@@ -13679,14 +13679,14 @@ msgctxt ""
msgid "Changing the URL of a hyperlink"
msgstr ""
-#. jCEKw
+#. GqyXN
#: hyperlink_edit.xhp
msgctxt ""
"hyperlink_edit.xhp\n"
"par_id3150503\n"
"help.text"
-msgid "As described above, open <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink Dialog\">Hyperlink Dialog</link>."
-msgstr "Podeu obrir el <link href=\"text/shared/02/09070000.xhp\" name=\"Diàleg Enllaç\">Diàleg Enllaç</link>"
+msgid "As described above, open <link href=\"text/shared/02/09070000.xhp\">Hyperlink Dialog</link>."
+msgstr "Podeu obrir el <link href=\"text/shared/02/09070000.xhp\">Diàleg Enllaç</link>"
#. V89FX
#: hyperlink_edit.xhp
@@ -13796,14 +13796,14 @@ msgctxt ""
msgid "<bookmark_value>hyperlinks; inserting</bookmark_value><bookmark_value>links; inserting</bookmark_value><bookmark_value>inserting; hyperlinks</bookmark_value>"
msgstr "<bookmark_value>enllaços; inserció</bookmark_value><bookmark_value>inserció; enllaços</bookmark_value>"
-#. 6hGVf
+#. mb3NF
#: hyperlink_insert.xhp
msgctxt ""
"hyperlink_insert.xhp\n"
"hd_id3150789\n"
"help.text"
-msgid "<variable id=\"hyperlink_insert\"><link href=\"text/shared/guide/hyperlink_insert.xhp\" name=\"Inserting Hyperlinks\">Inserting Hyperlinks</link></variable>"
-msgstr "<variable id=\"hyperlink_insert\"><link href=\"text/shared/guide/hyperlink_insert.xhp\" name=\"Inserció d'enllaços\">Inserció d'enllaços</link></variable>"
+msgid "<variable id=\"hyperlink_insert\"><link href=\"text/shared/guide/hyperlink_insert.xhp\">Inserting Hyperlinks</link></variable>"
+msgstr "<variable id=\"hyperlink_insert\"><link href=\"text/shared/guide/hyperlink_insert.xhp\">Inserció d'enllaços</link></variable>"
#. y4YkT
#: hyperlink_insert.xhp
@@ -13814,13 +13814,13 @@ msgctxt ""
msgid "You can insert hyperlinks in two ways: as text or as a button. In both cases, the visible text can be different from the URL."
msgstr "Podeu inserir enllaços de dues maneres: en forma de text o en forma de botó. En ambdós casos, el text visible pot ser diferent de l'URL."
-#. r7xvA
+#. hQf7h
#: hyperlink_insert.xhp
msgctxt ""
"hyperlink_insert.xhp\n"
"par_id3149811\n"
"help.text"
-msgid "Place the text cursor in the document at the point where you want to insert the hyperlink or select the text that you want to put the hyperlink on. Select <emph>Hyperlink</emph> command from the <emph>Insert</emph> menu. Alternatively click on the <image id=\"img_id3149763\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149763\">Icon</alt></image> Hyperlink icon on the <emph>Standard</emph> toolbar. The <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link> appears."
+msgid "Place the text cursor in the document at the point where you want to insert the hyperlink or select the text that you want to put the hyperlink on. Select <emph>Hyperlink</emph> command from the <emph>Insert</emph> menu. Alternatively click on the <image id=\"img_id3149763\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149763\">Icon</alt></image> Hyperlink icon on the <emph>Standard</emph> toolbar. The <link href=\"text/shared/02/09070000.xhp\">Hyperlink dialog</link> appears."
msgstr ""
#. E8dZA
@@ -13877,14 +13877,14 @@ msgctxt ""
msgid "<bookmark_value>absolute hyperlinks</bookmark_value><bookmark_value>relative hyperlinks</bookmark_value><bookmark_value>hyperlinks; relative and absolute</bookmark_value><bookmark_value>hyperlinks, see also links</bookmark_value>"
msgstr "<bookmark_value>enllaços absoluts</bookmark_value><bookmark_value>enllaços relatius</bookmark_value><bookmark_value>enllaços; relatius i absoluts</bookmark_value><bookmark_value>enllaços</bookmark_value>"
-#. fEfnE
+#. tL4Wk
#: hyperlink_rel_abs.xhp
msgctxt ""
"hyperlink_rel_abs.xhp\n"
"hd_id3147399\n"
"help.text"
-msgid "<variable id=\"hyperlink_rel_abs\"><link href=\"text/shared/guide/hyperlink_rel_abs.xhp\" name=\"Relative and Absolute Links\">Relative and Absolute Links</link></variable>"
-msgstr "<variable id=\"hyperlink_rel_abs\"><link href=\"text/shared/guide/hyperlink_rel_abs.xhp\" name=\"Enllaços relatius i absoluts\">Enllaços relatius i absoluts</link></variable>"
+msgid "<variable id=\"hyperlink_rel_abs\"><link href=\"text/shared/guide/hyperlink_rel_abs.xhp\">Relative and Absolute Links</link></variable>"
+msgstr "<variable id=\"hyperlink_rel_abs\"><link href=\"text/shared/guide/hyperlink_rel_abs.xhp\">Enllaços relatius i absoluts</link></variable>"
#. GYPtz
#: hyperlink_rel_abs.xhp
@@ -13895,13 +13895,13 @@ msgctxt ""
msgid "When you include hyperlinks, two factors must be taken into account: whether they are set as relative or absolute on saving, and whether or not the file is present."
msgstr "Quan inseriu enllaços, heu de tindre en compte dos factors: si s'han definit com a relatius o absoluts en guardar-los, i si el fitxer és present."
-#. KFh7J
+#. BUhmk
#: hyperlink_rel_abs.xhp
msgctxt ""
"hyperlink_rel_abs.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "Choose <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\"><emph>Load/Save - General</emph></link> and specify in the <emph>Save URLs relative to</emph> field if $[officename] creates <link href=\"text/shared/00/00000005.xhp#saving\" name=\"relative or absolute hyperlinks\">relative or absolute hyperlinks</link>. Relative linking is only possible when the document you are working on and the link destination are on the same drive."
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\"><emph>Load/Save - General</emph></link> and specify in the <emph>Save URLs relative to</emph> field if $[officename] creates <link href=\"text/shared/00/00000005.xhp#saving\">relative or absolute hyperlinks</link>. Relative linking is only possible when the document you are working on and the link destination are on the same drive."
msgstr ""
#. Ue6zh
@@ -14129,14 +14129,14 @@ msgctxt ""
msgid "<bookmark_value>Microsoft Office;opening Microsoft documents</bookmark_value> <bookmark_value>documents; importing</bookmark_value> <bookmark_value>importing; documents in other formats</bookmark_value> <bookmark_value>opening; documents from other formats</bookmark_value> <bookmark_value>loading; documents from other formats</bookmark_value> <bookmark_value>converting;Microsoft documents</bookmark_value> <bookmark_value>saving; default file formats</bookmark_value> <bookmark_value>defaults;document formats in file dialogs</bookmark_value> <bookmark_value>file formats; saving always in other formats</bookmark_value> <bookmark_value>Microsoft Office; as default file format</bookmark_value> <bookmark_value>files;importing</bookmark_value> <bookmark_value>XML converters</bookmark_value> <bookmark_value>converters; XML</bookmark_value> <bookmark_value>Document Converter Wizard</bookmark_value> <bookmark_value>wizards; document converter</bookmark_value> <bookmark_value>converters; document converter</bookmark_value> <bookmark_value>files, see also documents</bookmark_value>"
msgstr "<bookmark_value>Microsoft Office;obertura de documents de Microsoft</bookmark_value><bookmark_value>documents; importació</bookmark_value><bookmark_value>importació; documents en altres formats</bookmark_value><bookmark_value>obertura; documents en altres formats</bookmark_value><bookmark_value>càrrega; documents en altres formats</bookmark_value><bookmark_value>conversió;documents de Microsoft</bookmark_value><bookmark_value>guardar; formats de fitxer per defecte</bookmark_value><bookmark_value>per defecte; formats de document en els diàlegs de fitxer</bookmark_value><bookmark_value>formats de fitxer; guardar sempre en altres formats</bookmark_value><bookmark_value>Microsoft Office; com a format de fitxer per defecte</bookmark_value><bookmark_value>fitxers;importació</bookmark_value><bookmark_value>convertidors XML</bookmark_value><bookmark_value>convertidors; XML</bookmark_value><bookmark_value>auxiliar Convertidor de documents</bookmark_value><bookmark_value>auxiliars; convertidor de documents</bookmark_value><bookmark_value>convertidors; convertidor de documents</bookmark_value> <bookmark_value>fitxers, vegeu també documents</bookmark_value>"
-#. 2SFQD
+#. AWFK5
#: import_ms.xhp
msgctxt ""
"import_ms.xhp\n"
"hd_id3145313\n"
"help.text"
-msgid "<variable id=\"import_ms\"><link href=\"text/shared/guide/import_ms.xhp\" name=\"Opening documents saved in other formats\">Opening documents saved in other formats</link></variable>"
-msgstr "<variable id=\"import_ms\"><link href=\"text/shared/guide/import_ms.xhp\" name=\"Obertura de documents guardats en altres formats\">Obertura de documents guardats en altres formats</link></variable>"
+msgid "<variable id=\"import_ms\"><link href=\"text/shared/guide/import_ms.xhp\">Opening documents saved in other formats</link></variable>"
+msgstr "<variable id=\"import_ms\"><link href=\"text/shared/guide/import_ms.xhp\">Obertura de documents guardats en altres formats</link></variable>"
#. RBJGs
#: import_ms.xhp
@@ -14201,14 +14201,14 @@ msgctxt ""
msgid "Open the wizard, which guides you through the operation, to copy and convert all documents from Microsoft Word, Microsoft Excel or Microsoft PowerPoint into OpenDocument file format documents. You can select a source and target directory, specify whether to convert documents and/or templates, and more besides."
msgstr "Obriu l'auxiliar, que vos guiarà a través del procediment de còpia i de conversió de tots els documents del Microsoft Word, el Microsoft Excel o el Microsoft PowerPoint al format de fitxer OpenDocument. Podeu seleccionar un directori d'origen i de destinació, indicar si voleu convertir els documents i/o les plantilles, etcètera."
-#. 4MBpe
+#. i6EyB
#: import_ms.xhp
msgctxt ""
"import_ms.xhp\n"
"par_id3153824\n"
"help.text"
-msgid "Choose <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph>File - Wizards - Document Converter</emph></link>."
-msgstr "Trieu <link href=\"text/shared/autopi/01130000.xhp\" name=\"Fitxer ▸ Auxiliars ▸ Convertidor de documents\"><emph>Fitxer ▸ Auxiliars ▸ Convertidor de documents</emph></link>."
+msgid "Choose <link href=\"text/shared/autopi/01130000.xhp\"><emph>File - Wizards - Document Converter</emph></link>."
+msgstr "Trieu <link href=\"text/shared/autopi/01130000.xhp\"><emph>Fitxer ▸ Auxiliars ▸ Convertidor de documents</emph></link>."
#. uUfaZ
#: import_ms.xhp
@@ -14255,23 +14255,23 @@ msgctxt ""
msgid "All the options of <item type=\"productname\">%PRODUCTNAME</item> Writer are now available to you. Not all options that <item type=\"productname\">%PRODUCTNAME</item> Writer offers for editing of documents can be saved in HTML format."
msgstr "Ara podeu accedir a totes les opcions del <item type=\"productname\">%PRODUCTNAME</item> Writer. Les opcions d'edició de documents que ofereix el <item type=\"productname\">%PRODUCTNAME</item> Writer no sempre es poden guardar en format HTML."
-#. 2QufQ
+#. CeW7m
#: import_ms.xhp
msgctxt ""
"import_ms.xhp\n"
"par_id3148944\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01130100.xhp\" name=\"Working with VBA code\">Working with VBA code</link>"
-msgstr "<link href=\"text/shared/optionen/01130100.xhp\" name=\"Treball amb codi VBA\">Treball amb codi VBA</link>"
+msgid "<link href=\"text/shared/optionen/01130100.xhp\">Working with VBA code</link>"
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">Treball amb codi VBA</link>"
-#. cwfpE
+#. Aia9M
#: import_ms.xhp
msgctxt ""
"import_ms.xhp\n"
"par_id3147264\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010200.xhp\" name=\"Setting the default file format\">Setting the default file format</link>"
-msgstr "<link href=\"text/shared/optionen/01010200.xhp\" name=\"Configuració del format de fitxer per defecte\">Configuració del format de fitxer per defecte</link>"
+msgid "<link href=\"text/shared/optionen/01010200.xhp\">Setting the default file format</link>"
+msgstr "<link href=\"text/shared/optionen/01010200.xhp\">Configuració del format de fitxer per defecte</link>"
#. fxquy
#: insert_bitmap.xhp
@@ -14291,13 +14291,13 @@ msgctxt ""
msgid "<bookmark_value>graphics, see also pictures</bookmark_value><bookmark_value>images, see also pictures</bookmark_value><bookmark_value>images; inserting and editing bitmaps</bookmark_value><bookmark_value>illustrations, see pictures</bookmark_value><bookmark_value>bitmaps; inserting and editing</bookmark_value><bookmark_value>pixel graphics; inserting and editing</bookmark_value><bookmark_value>exporting; bitmaps</bookmark_value><bookmark_value>importing; bitmaps</bookmark_value><bookmark_value>pictures; editing</bookmark_value><bookmark_value>editing; pictures</bookmark_value><bookmark_value>invert filter</bookmark_value><bookmark_value>smoothing filter</bookmark_value><bookmark_value>sharpening filter</bookmark_value><bookmark_value>remove noise filter</bookmark_value><bookmark_value>solarization filter</bookmark_value><bookmark_value>aging filter</bookmark_value><bookmark_value>posterizing filter</bookmark_value><bookmark_value>pop-art filter</bookmark_value><bookmark_value>charcoal sketches filter</bookmark_value><bookmark_value>mosaic filter</bookmark_value><bookmark_value>pictures;filters</bookmark_value><bookmark_value>filters;pictures</bookmark_value>"
msgstr "<bookmark_value>gràfics, vegeu també imatges</bookmark_value><bookmark_value>imatges</bookmark_value><bookmark_value>imatges; inserció i edició de mapes de bits</bookmark_value><bookmark_value>il·lustracions, vegeu imatges</bookmark_value><bookmark_value>mapes de bits; inserció i edició</bookmark_value><bookmark_value>gràfics de píxels; inserció i edició</bookmark_value><bookmark_value>exportació; mapes de bits</bookmark_value><bookmark_value>importació; mapes de bits</bookmark_value><bookmark_value>imatges; edició</bookmark_value><bookmark_value>edició; imatges</bookmark_value><bookmark_value>filtre d'inversió</bookmark_value><bookmark_value>filtre de suavització</bookmark_value><bookmark_value>filtre d'augment de la nitidesa</bookmark_value><bookmark_value>filtre de supressió del soroll</bookmark_value><bookmark_value>filtre d'inversió de colors</bookmark_value><bookmark_value>filtre d'envelliment</bookmark_value><bookmark_value>filtre de reducció de la gamma de colors</bookmark_value><bookmark_value>filtre d'art pop</bookmark_value><bookmark_value>filtre d'esbós al carbonet</bookmark_value><bookmark_value>filtre de mosaic</bookmark_value><bookmark_value>imatges;filtres</bookmark_value><bookmark_value>filtres;imatges</bookmark_value>"
-#. wND7N
+#. o3s8P
#: insert_bitmap.xhp
msgctxt ""
"insert_bitmap.xhp\n"
"hd_id3154136\n"
"help.text"
-msgid "<variable id=\"insert_bitmap\"><link href=\"text/shared/guide/insert_bitmap.xhp\" name=\"Inserting, Editing, Saving Bitmaps\">Inserting, Editing, Saving Bitmaps Images</link></variable>"
+msgid "<variable id=\"insert_bitmap\"><link href=\"text/shared/guide/insert_bitmap.xhp\">Inserting, Editing, Saving Bitmaps Images</link></variable>"
msgstr ""
#. acbbz
@@ -14426,13 +14426,13 @@ msgctxt ""
msgid "The <emph>Image</emph> Bar may look slightly different depending to the module you are using."
msgstr "L'aparença de la barra <emph>Imatge</emph> varia lleugerament en funció del mòdul que utilitzeu."
-#. RFa77
+#. rAKpy
#: insert_bitmap.xhp
msgctxt ""
"insert_bitmap.xhp\n"
"par_id3154124\n"
"help.text"
-msgid "A number of filters are located on the <link href=\"text/shared/02/24010000.xhp\" name=\"Image Filter\"><emph>Image Filter</emph></link> toolbar, which you can open with the icon on the <emph>Image</emph> Bar."
+msgid "A number of filters are located on the <link href=\"text/shared/02/24010000.xhp\"><emph>Image Filter</emph></link> toolbar, which you can open with the icon on the <emph>Image</emph> Bar."
msgstr ""
#. 5CqZC
@@ -14615,14 +14615,14 @@ msgctxt ""
msgid "<bookmark_value>resizing, see also scaling/zooming</bookmark_value> <bookmark_value>scaling, see also zooming</bookmark_value> <bookmark_value>drawings, see also draw objects</bookmark_value> <bookmark_value>graphic objects, see draw objects</bookmark_value> <bookmark_value>text; drawing pictures</bookmark_value> <bookmark_value>inserting; drawings</bookmark_value> <bookmark_value>pictures; drawing</bookmark_value> <bookmark_value>objects; copying when moving in presentations</bookmark_value> <bookmark_value>draw objects; adding/editing/copying</bookmark_value> <bookmark_value>circle drawings</bookmark_value> <bookmark_value>square drawings</bookmark_value> <bookmark_value>handles; scaling</bookmark_value> <bookmark_value>scaling; objects</bookmark_value> <bookmark_value>objects;moving and resizing with mouse</bookmark_value> <bookmark_value>resizing;objects, by mouse</bookmark_value> <bookmark_value>copying; draw objects</bookmark_value> <bookmark_value>pasting;draw objects</bookmark_value> <bookmark_value>editing;draw objects</bookmark_value> <bookmark_value>pictures;scaling/resizing</bookmark_value>"
msgstr "<bookmark_value>redimensionament, vegeu també canvi d'escala/ampliació</bookmark_value><bookmark_value>canvi d'escala, vegeu també ampliació</bookmark_value><bookmark_value>dibuixos, vegeu també objectes de dibuix</bookmark_value><bookmark_value>objectes gràfics, vegeu també objectes de dibuix</bookmark_value><bookmark_value>text; dibuix d'imatges</bookmark_value><bookmark_value>inserció; dibuixos</bookmark_value><bookmark_value>imatges; dibuix</bookmark_value><bookmark_value>objectes; còpia en moure'ls a les presentacions</bookmark_value><bookmark_value>objectes de dibuix; addició/edició/còpia</bookmark_value><bookmark_value>dibuixos de cercles</bookmark_value><bookmark_value>dibuixos de quadrats</bookmark_value><bookmark_value>anses; canvi d'escala</bookmark_value><bookmark_value>canvi d'escala; objectes</bookmark_value><bookmark_value>objectes;moviment i redimensionament amb el ratolí</bookmark_value><bookmark_value>redimensionament;objectes, amb el ratolí</bookmark_value><bookmark_value>còpia; objectes de dibuix</bookmark_value><bookmark_value>enganxament;objectes de dibuix</bookmark_value><bookmark_value>edició;objectes de dibuix</bookmark_value><bookmark_value>imatges;canvi d'escala/redimensionament</bookmark_value>"
-#. Hk78P
+#. tLaCS
#: insert_graphic_drawit.xhp
msgctxt ""
"insert_graphic_drawit.xhp\n"
"hd_id3145136\n"
"help.text"
-msgid "<variable id=\"insert_graphic_drawit\"><link href=\"text/shared/guide/insert_graphic_drawit.xhp\" name=\"Editing Graphic Objects\">Editing Graphic Objects</link></variable>"
-msgstr "<variable id=\"insert_graphic_drawit\"><link href=\"text/shared/guide/insert_graphic_drawit.xhp\" name=\"Edició d'objectes gràfics\">Edició d'objectes gràfics</link></variable>"
+msgid "<variable id=\"insert_graphic_drawit\"><link href=\"text/shared/guide/insert_graphic_drawit.xhp\">Editing Graphic Objects</link></variable>"
+msgstr "<variable id=\"insert_graphic_drawit\"><link href=\"text/shared/guide/insert_graphic_drawit.xhp\">Edició d'objectes gràfics</link></variable>"
#. fUaYn
#: insert_graphic_drawit.xhp
@@ -14732,14 +14732,14 @@ msgctxt ""
msgid "To revert to normal mode after creating and editing draw objects, click in an area of the document containing no objects. If you see a drawing cursor, first exit this mode by clicking the <emph>Select</emph> icon."
msgstr "Per tornar al mode normal després de crear objectes de dibuix i editar-los, feu clic a una àrea del document que no continga cap objecte. Si veieu un cursor de dibuix, primer eixiu d'este mode mitjançant un clic a la icona <emph>Selecciona</emph>."
-#. D86sB
+#. 4DE8F
#: insert_graphic_drawit.xhp
msgctxt ""
"insert_graphic_drawit.xhp\n"
"par_id3145785\n"
"help.text"
-msgid "<link href=\"text/shared/02/01140000.xhp\" name=\"Information about the individual icons\">Information about the individual icons</link>"
-msgstr "<link href=\"text/shared/02/01140000.xhp\" name=\"Informació sobre les icones individuals\">Informació sobre les icones individuals</link>"
+msgid "<link href=\"text/shared/02/01140000.xhp\">Information about the individual icons</link>"
+msgstr "<link href=\"text/shared/02/01140000.xhp\">Informació sobre les icones individuals</link>"
#. k5PBD
#: insert_specialchar.xhp
@@ -14759,14 +14759,14 @@ msgctxt ""
msgid "<bookmark_value>characters; special</bookmark_value><bookmark_value>inserting; special characters</bookmark_value><bookmark_value>special characters</bookmark_value><bookmark_value>text; inserting special characters</bookmark_value><bookmark_value>accents</bookmark_value><bookmark_value>compose key to insert special characters</bookmark_value>"
msgstr "<bookmark_value>caràcters; especials</bookmark_value><bookmark_value>inserció; caràcters especials</bookmark_value><bookmark_value>caràcters especials</bookmark_value><bookmark_value>text; inserció de caràcters especials</bookmark_value><bookmark_value>accents</bookmark_value><bookmark_value>tecla de composició per inserir caràcters especials</bookmark_value>"
-#. 9Ahtx
+#. Axjqn
#: insert_specialchar.xhp
msgctxt ""
"insert_specialchar.xhp\n"
"hd_id3154927\n"
"help.text"
-msgid "<variable id=\"insert_specialchar\"><link href=\"text/shared/guide/insert_specialchar.xhp\" name=\"Inserting Special Characters\">Inserting Special Characters</link></variable>"
-msgstr "<variable id=\"insert_specialchar\"><link href=\"text/shared/guide/insert_specialchar.xhp\" name=\"Inserció de caràcters especials\">Inserció de caràcters especials</link></variable>"
+msgid "<variable id=\"insert_specialchar\"><link href=\"text/shared/guide/insert_specialchar.xhp\">Inserting Special Characters</link></variable>"
+msgstr "<variable id=\"insert_specialchar\"><link href=\"text/shared/guide/insert_specialchar.xhp\">Inserció de caràcters especials</link></variable>"
#. aLZJA
#: insert_specialchar.xhp
@@ -14840,23 +14840,23 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><emph>All Unix systems:</emph> (Alt Graph) as additional compose key. The (Alt Graph) key can work in $[officename] like the Compose key, if you set the environment variable SAL_ALTGR_COMPOSE. The (Alt Graph) key must trigger a mode_switch, so, for example, xmodmap -e \"keysym Alt_R = Mode_switch\" must be set. First press (Alt Graph), then the first modifier, then the second modifier. The characters are combined as described on a Solaris system in the file /usr/openwin/include/X11/Suncompose.h.</caseinline></switchinline>"
msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><emph>Tots els sistemes UNIX:</emph> (Alt Gr) com a tecla de composició addicional. Si definiu la variable d'entorn SAL_ALTGR_COMPOSE, la tecla (Alt Graph) funcionarà com la tecla de composició al $[officename]. La tecla (Alt Gr) ha d'activar una commutació de mode. Per tant, heu de definir, per exemple, xmodmap -e \"keysym Alt_R = Mode_switch\". Premeu primer (Alt Gr) , després el primer modificador i, tot seguit, el segon modificador. Els caràcters es combinen, tal com es descriu en els sistemes Solaris, al fitxer /usr/openwin/include/X11/Suncompose.h. </caseinline></switchinline>"
-#. GrGC8
+#. 3o57g
#: insert_specialchar.xhp
msgctxt ""
"insert_specialchar.xhp\n"
"par_id3149047\n"
"help.text"
-msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Characters\">Special Characters</link>"
-msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Caràcters especials\">Caràcters especials</link>"
+msgid "<link href=\"text/shared/01/04100000.xhp\">Special Characters</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\">Caràcters especials</link>"
-#. Gqfv7
+#. FpxDy
#: insert_specialchar.xhp
msgctxt ""
"insert_specialchar.xhp\n"
"par_id3153896\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040200.xhp\" name=\"AutoCorrect\">AutoCorrect</link>"
-msgstr "<link href=\"text/shared/01/06040200.xhp\" name=\"Correcció automàtica\">Correcció automàtica</link>"
+msgid "<link href=\"text/shared/01/06040200.xhp\">AutoCorrect</link>"
+msgstr "<link href=\"text/shared/01/06040200.xhp\">Correcció automàtica</link>"
#. WDGAE
#: integratinguno.xhp
@@ -14876,14 +14876,14 @@ msgctxt ""
msgid "<bookmark_value>add-ons, see UNO components</bookmark_value><bookmark_value>UNO components;integrating new</bookmark_value><bookmark_value>installing;UNO components</bookmark_value>"
msgstr "<bookmark_value>complements, vegeu components UNO</bookmark_value><bookmark_value>components UNO;integració de nous</bookmark_value><bookmark_value>instal·lació;components UNO</bookmark_value>"
-#. CquJh
+#. 8CAQQ
#: integratinguno.xhp
msgctxt ""
"integratinguno.xhp\n"
"hd_id3149760\n"
"help.text"
-msgid "<variable id=\"integratinguno\"><link href=\"text/shared/guide/integratinguno.xhp\" name=\"Integrating new UNO components\">Integrating new UNO components</link></variable>"
-msgstr "<variable id=\"integratinguno\"><link href=\"text/shared/guide/integratinguno.xhp\" name=\"Integració de components UNO nous\">Integració de components UNO nous</link></variable>"
+msgid "<variable id=\"integratinguno\"><link href=\"text/shared/guide/integratinguno.xhp\">Integrating new UNO components</link></variable>"
+msgstr "<variable id=\"integratinguno\"><link href=\"text/shared/guide/integratinguno.xhp\">Integració de components UNO nous</link></variable>"
#. QFdQX
#: integratinguno.xhp
@@ -14930,14 +14930,14 @@ msgctxt ""
msgid "Change the user interface (menus or toolbars). This can be done almost automatically by writing an XML text file that describes the changes. More information can be found in the $[officename] Developer's Guide."
msgstr "Canvieu la interfície d'usuari (menús o barres d'eines). Podeu fer-ho de manera gairebé automàtica si escriviu un fitxer de text XML que descrigui els canvis. Per obtindre'n més informació, consulteu la Guia del desenvolupador del $[officename] (en anglés)."
-#. 68tms
+#. TPxRB
#: integratinguno.xhp
msgctxt ""
"integratinguno.xhp\n"
"par_id3151110\n"
"help.text"
-msgid "The Add-Ons can extend the functionality of $[officename]. They are not related to the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/04060112.xhp\" name=\"Add-Ins\">Add-Ins</link></caseinline><defaultinline>Add-Ins</defaultinline></switchinline> that provide new functions for $[officename] Calc."
-msgstr "Els complements amplien la funcionalitat del $[officename]. No estan relacionats amb els <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/04060112.xhp\" name=\"complements\">complements</link></caseinline><defaultinline>complements</defaultinline></switchinline> que ofereixen funcions noves per al $[officename] Calc."
+msgid "The Add-Ons can extend the functionality of $[officename]. They are not related to the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/04060112.xhp\">Add-Ins</link></caseinline><defaultinline>Add-Ins</defaultinline></switchinline> that provide new functions for $[officename] Calc."
+msgstr "Els complements amplien la funcionalitat del $[officename]. No estan relacionats amb els <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/04060112.xhp\">complements</link></caseinline><defaultinline>complements</defaultinline></switchinline> que ofereixen funcions noves per al $[officename] Calc."
#. CAFw3
#: keyboard.xhp
@@ -14957,14 +14957,14 @@ msgctxt ""
msgid "<bookmark_value>accessibility;general shortcuts</bookmark_value> <bookmark_value>shortcut keys; %PRODUCTNAME accessibility</bookmark_value>"
msgstr "<bookmark_value>accessibilitat;dreceres generals</bookmark_value><bookmark_value>tecles de drecera; accessibilitat del %PRODUCTNAME</bookmark_value>"
-#. ArwDt
+#. c2Cjk
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"hd_id3158421\n"
"help.text"
-msgid "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\" name=\"Shortcuts (%PRODUCTNAME Accessibility)\">Shortcuts (<item type=\"productname\">%PRODUCTNAME</item> Accessibility)</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\" name=\"Dreceres (accessibilitat del %PRODUCTNAME)\">Dreceres (accessibilitat del <item type=\"productname\">%PRODUCTNAME</item>)</link></variable>"
+msgid "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\">Shortcuts (<item type=\"productname\">%PRODUCTNAME</item> Accessibility)</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\">Dreceres (accessibilitat del <item type=\"productname\">%PRODUCTNAME</item>)</link></variable>"
#. 2drEq
#: keyboard.xhp
@@ -15263,14 +15263,14 @@ msgctxt ""
msgid "Selection in Tables"
msgstr "Selecció a les taules"
-#. E5Bx3
+#. 3XWAB
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3154320\n"
"help.text"
-msgid "In several windows, dialogs, and in the table control field, there are tables to select data, for instance, in the right part of the <link href=\"text/shared/guide/database_main.xhp\" name=\"Data Source View\">Data Source View</link>. The following keys are used for selections in these tables:"
-msgstr "En diverses finestres i diàlegs i al camp de control de la taula, hi ha taules per seleccionar dades, per exemple, a la part dreta de la <link href=\"text/shared/guide/database_main.xhp\" name=\"Vista de la font de dades\">Vista de la font de dades</link>. Les tecles següents s'utilitzen per fer seleccions en estes taules:"
+msgid "In several windows, dialogs, and in the table control field, there are tables to select data, for instance, in the right part of the <link href=\"text/shared/guide/database_main.xhp\">Data Source View</link>. The following keys are used for selections in these tables:"
+msgstr "En diverses finestres i diàlegs i al camp de control de la taula, hi ha taules per seleccionar dades, per exemple, a la part dreta de la <link href=\"text/shared/guide/database_main.xhp\">Vista de la font de dades</link>. Les tecles següents s'utilitzen per fer seleccions en estes taules:"
#. gcpwK
#: keyboard.xhp
@@ -15929,14 +15929,14 @@ msgctxt ""
msgid "Controlling the Help"
msgstr "Control de l'Ajuda"
-#. ZPXdy
+#. Rf4nG
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3149441\n"
"help.text"
-msgid "Press Shift+F1 to display the <link href=\"text/shared/main0108.xhp\" name=\"Extended Tips\">Extended Tips</link> for the currently selected command, icon or control."
-msgstr "Premeu Maj+F1 per visualitzar els <link href=\"text/shared/main0108.xhp\" name=\"Consells ampliats\">Consells ampliats</link> per a l'orde, la icona o el control seleccionat."
+msgid "Press Shift+F1 to display the <link href=\"text/shared/main0108.xhp\">Extended Tips</link> for the currently selected command, icon or control."
+msgstr "Premeu Maj+F1 per visualitzar els <link href=\"text/shared/main0108.xhp\">Consells ampliats</link> per a l'orde, la icona o el control seleccionat."
#. tB7qW
#: keyboard.xhp
@@ -16289,14 +16289,14 @@ msgctxt ""
msgid "<bookmark_value>labels; creating and synchronizing</bookmark_value><bookmark_value>business cards; creating and synchronizing</bookmark_value><bookmark_value>synchronizing;labels and business cards</bookmark_value>"
msgstr "<bookmark_value>etiquetes; creació i sincronització</bookmark_value><bookmark_value>targetes de visita; creació i sincronització</bookmark_value><bookmark_value>sincronització;etiquetes i targetes de visita</bookmark_value>"
-#. QsUyQ
+#. XNFQ4
#: labels.xhp
msgctxt ""
"labels.xhp\n"
"hd_id3150774\n"
"help.text"
-msgid "<variable id=\"labels\"><link href=\"text/shared/guide/labels.xhp\" name=\"Creating and Printing Labels and Business Cards\">Creating and Printing Labels and Business Cards</link></variable>"
-msgstr "<variable id=\"labels\"><link href=\"text/shared/guide/labels.xhp\" name=\"Creació i impressió d'etiquetes i de targetes de visita\">Creació i impressió d'etiquetes i de targetes de visita</link></variable>"
+msgid "<variable id=\"labels\"><link href=\"text/shared/guide/labels.xhp\">Creating and Printing Labels and Business Cards</link></variable>"
+msgstr "<variable id=\"labels\"><link href=\"text/shared/guide/labels.xhp\">Creació i impressió d'etiquetes i de targetes de visita</link></variable>"
#. a2rtY
#: labels.xhp
@@ -16307,14 +16307,14 @@ msgctxt ""
msgid "Designing Business Cards Through a Dialog"
msgstr "Disseny de targetes de visita mitjançant un diàleg"
-#. EH4JV
+#. SxEpR
#: labels.xhp
msgctxt ""
"labels.xhp\n"
"par_id3146798\n"
"help.text"
-msgid "Choose <link href=\"text/shared/01/01010300.xhp\" name=\"File - New - Business Cards\"><emph>File - New - Business Cards</emph></link> to open the<emph> Business Cards </emph>dialog, which allows you to choose how your business cards will look."
-msgstr "Trieu <link href=\"text/shared/01/01010300.xhp\" name=\"Fitxer ▸ Nou ▸ Targetes de visita\"><emph>Fitxer ▸ Nou ▸ Targetes de visita</emph></link> per a obrir el diàleg <emph>Targetes de visita</emph>, que permet triar l'aparença de les targetes de visita."
+msgid "Choose <link href=\"text/shared/01/01010300.xhp\"><emph>File - New - Business Cards</emph></link> to open the<emph> Business Cards </emph>dialog, which allows you to choose how your business cards will look."
+msgstr "Trieu <link href=\"text/shared/01/01010300.xhp\"><emph>Fitxer ▸ Nou ▸ Targetes de visita</emph></link> per a obrir el diàleg <emph>Targetes de visita</emph>, que permet triar l'aparença de les targetes de visita."
#. WD8J3
#: labels.xhp
@@ -16334,14 +16334,14 @@ msgctxt ""
msgid "You can design both labels and business cards through the <emph>Labels</emph> dialog."
msgstr "Des del diàleg <emph>Etiquetes</emph> podeu dissenyar etiquetes i targetes de visita."
-#. kkRRJ
+#. uhXze
#: labels.xhp
msgctxt ""
"labels.xhp\n"
"par_id3153880\n"
"help.text"
-msgid "Choose <link href=\"text/shared/01/01010200.xhp\" name=\"File - New - Labels\"><emph>File - New - Labels</emph></link> to open the <emph>Labels</emph> dialog."
-msgstr "Trieu <link href=\"text/shared/01/01010200.xhp\" name=\"Fitxer ▸ Nou ▸ Etiquetes\"><emph>Fitxer ▸ Nou ▸ Etiquetes</emph></link> per a obrir el diàleg <emph>Etiquetes</emph>."
+msgid "Choose <link href=\"text/shared/01/01010200.xhp\"><emph>File - New - Labels</emph></link> to open the <emph>Labels</emph> dialog."
+msgstr "Trieu <link href=\"text/shared/01/01010200.xhp\"><emph>Fitxer ▸ Nou ▸ Etiquetes</emph></link> per a obrir el diàleg <emph>Etiquetes</emph>."
#. LgAEm
#: labels.xhp
@@ -16424,14 +16424,14 @@ msgctxt ""
msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
msgstr "Quan feu clic a <emph>Document nou</emph> apareix una finestreta amb el botó <emph>Sincronitza les etiquetes</emph>. Introduïu la primera etiqueta. Quan feu clic al botó <emph>Sincronitza les etiquetes</emph>, es copia l'etiqueta a la resta d'etiquetes del full."
-#. UFRTM
+#. EKfDW
#: labels.xhp
msgctxt ""
"labels.xhp\n"
"par_id3150449\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=\"Targetes de visita\">Targetes de visita</link>"
+msgid "<link href=\"text/shared/01/01010300.xhp\">Business Cards</link>"
+msgstr "<link href=\"text/shared/01/01010300.xhp\">Targetes de visita</link>"
#. goNpN
#: labels_database.xhp
@@ -16451,14 +16451,14 @@ msgctxt ""
msgid "<bookmark_value>address labels from databases</bookmark_value> <bookmark_value>labels; from databases</bookmark_value> <bookmark_value>stickers</bookmark_value> <bookmark_value>databases;creating labels</bookmark_value>"
msgstr "<bookmark_value>etiquetes d'adreça des de bases de dades</bookmark_value><bookmark_value>etiquetes; des de bases de dades</bookmark_value><bookmark_value>adhesius</bookmark_value><bookmark_value>bases de dades;creació d'etiquetes</bookmark_value>"
-#. SGFfh
+#. ufu5L
#: labels_database.xhp
msgctxt ""
"labels_database.xhp\n"
"hd_id3147399\n"
"help.text"
-msgid "<variable id=\"labels_database\"><link href=\"text/shared/guide/labels_database.xhp\" name=\"Printing Address Labels\">Printing Address Labels</link></variable>"
-msgstr "<variable id=\"labels_database\"><link href=\"text/shared/guide/labels_database.xhp\" name=\"Impressió d'etiquetes d'adreces\">Impressió d'etiquetes d'adreces</link></variable>"
+msgid "<variable id=\"labels_database\"><link href=\"text/shared/guide/labels_database.xhp\">Printing Address Labels</link></variable>"
+msgstr "<variable id=\"labels_database\"><link href=\"text/shared/guide/labels_database.xhp\">Impressió d'etiquetes d'adreces</link></variable>"
#. VmdTK
#: labels_database.xhp
@@ -16568,14 +16568,14 @@ msgctxt ""
msgid "<bookmark_value>languages; selecting for text</bookmark_value> <bookmark_value>documents; languages</bookmark_value> <bookmark_value>characters; language selection</bookmark_value> <bookmark_value>character styles;language selection</bookmark_value> <bookmark_value>text; language selection</bookmark_value> <bookmark_value>paragraph styles; languages</bookmark_value> <bookmark_value>drawings; languages</bookmark_value> <bookmark_value>defaults;languages</bookmark_value> <bookmark_value>spellcheck; default languages</bookmark_value> <bookmark_value>spelling; default languages</bookmark_value> <bookmark_value>dictionaries, see also languages</bookmark_value>"
msgstr "<bookmark_value>llengües; selecció per al text</bookmark_value><bookmark_value>documents; llengües</bookmark_value><bookmark_value>caràcters; selecció de la llengua</bookmark_value><bookmark_value>estils de caràcter; selecció de la llengua</bookmark_value><bookmark_value>text; selecció de la llengua</bookmark_value><bookmark_value>estils de paràgraf; llengües</bookmark_value><bookmark_value>dibuixos; llengües</bookmark_value><bookmark_value>opcions per defecte; llengües</bookmark_value><bookmark_value>verificació ortogràfica; llengües per defecte</bookmark_value><bookmark_value>ortografia; llengües per defecte</bookmark_value><bookmark_value>diccionaris, vegeu també llengües</bookmark_value>"
-#. AoAWf
+#. VBZBn
#: language_select.xhp
msgctxt ""
"language_select.xhp\n"
"hd_id3083278\n"
"help.text"
-msgid "<variable id=\"language_select\"><link href=\"text/shared/guide/language_select.xhp\" name=\"Selecting the Document Language\">Selecting the Document Language</link></variable>"
-msgstr "<variable id=\"language_select\"><link href=\"text/shared/guide/language_select.xhp\" name=\"Selecció de la llengua del document\">Selecció de la llengua del document</link></variable>"
+msgid "<variable id=\"language_select\"><link href=\"text/shared/guide/language_select.xhp\">Selecting the Document Language</link></variable>"
+msgstr "<variable id=\"language_select\"><link href=\"text/shared/guide/language_select.xhp\">Selecció de la llengua del document</link></variable>"
#. DBMM5
#: language_select.xhp
@@ -16622,14 +16622,14 @@ msgctxt ""
msgid "Selecting a language for the whole document"
msgstr "Selecció d'una llengua per a tot el document"
-#. 8eFyj
+#. E76wE
#: language_select.xhp
msgctxt ""
"language_select.xhp\n"
"par_id3083443\n"
"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline>. Go to <link href=\"text/shared/optionen/01140000.xhp\" name=\"Language Settings - Languages\"><emph>Language Settings - Languages</emph></link>."
-msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline>. Aneu a <link href=\"text/shared/optionen/01140000.xhp\" name=\"Configuració de la llengua ▸ Llengües\"><emph>Configuració de la llengua ▸ Llengües</emph></link>."
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline>. Go to <link href=\"text/shared/optionen/01140000.xhp\"><emph>Language Settings - Languages</emph></link>."
+msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline>. Aneu a <link href=\"text/shared/optionen/01140000.xhp\"><emph>Configuració de la llengua ▸ Llengües</emph></link>."
#. K5mG8
#: language_select.xhp
@@ -17063,23 +17063,23 @@ msgctxt ""
msgid "Install the language pack by double-clicking the dmg file."
msgstr "Instal·leu el paquet de llengua fent doble clic al fitxer dmg."
-#. o6YuB
+#. 23McT
#: language_select.xhp
msgctxt ""
"language_select.xhp\n"
"par_id3150043\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\" name=\"Language Settings - Languages\">Language Settings - Languages</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\" name=\"Configuració de la llengua - Llengües\">Configuració de la llengua - Llengües</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\">Language Settings - Languages</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01140000.xhp\">Configuració de la llengua - Llengües</link>"
-#. 4frEL
+#. Z2TFq
#: language_select.xhp
msgctxt ""
"language_select.xhp\n"
"par_id3152483\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Format - Character - Font\">Format - Character - Font</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Format - Caràcter - Tipus de lletra\">Format - Caràcter - Tipus de lletra</link>"
+msgid "<link href=\"text/shared/01/05020100.xhp\">Format - Character - Font</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\">Format - Caràcter - Tipus de lletra</link>"
#. hAeog
#: line_intext.xhp
@@ -17099,14 +17099,14 @@ msgctxt ""
msgid "<bookmark_value>arrows; drawing in text</bookmark_value><bookmark_value>indicator lines in text</bookmark_value><bookmark_value>lines; drawing in text</bookmark_value><bookmark_value>lines; removing automatic lines</bookmark_value><bookmark_value>deleting; lines in text</bookmark_value><bookmark_value>drawing lines in text</bookmark_value><bookmark_value>automatic lines/borders in text</bookmark_value>"
msgstr "<bookmark_value>fletxes; dibuix al text</bookmark_value><bookmark_value>línies indicadores al text</bookmark_value><bookmark_value>línies; dibuix al text</bookmark_value><bookmark_value>línies; eliminació de línies automàtiques</bookmark_value><bookmark_value>supressió; línies al text</bookmark_value><bookmark_value>dibuix de línies al text</bookmark_value><bookmark_value>línies automàtiques/vores al text</bookmark_value>"
-#. WBboG
+#. zuAkB
#: line_intext.xhp
msgctxt ""
"line_intext.xhp\n"
"hd_id3143206\n"
"help.text"
-msgid "<variable id=\"line_intext\"><link href=\"text/shared/guide/line_intext.xhp\" name=\"Drawing Lines in Text\">Drawing Lines in Text</link></variable>"
-msgstr "<variable id=\"line_intext\"><link href=\"text/shared/guide/line_intext.xhp\" name=\"Dibuix de línies al text\">Dibuix de línies al text</link></variable>"
+msgid "<variable id=\"line_intext\"><link href=\"text/shared/guide/line_intext.xhp\">Drawing Lines in Text</link></variable>"
+msgstr "<variable id=\"line_intext\"><link href=\"text/shared/guide/line_intext.xhp\">Dibuix de línies al text</link></variable>"
#. dFTvK
#: line_intext.xhp
@@ -17234,14 +17234,14 @@ msgctxt ""
msgid "Create a horizontal line by applying the preset Paragraph Style <emph>Horizontal Line</emph>. Click into an empty paragraph, and double-click the <emph>Horizontal Line</emph> Style in the <emph>Styles</emph> window. If the entry for horizontal lines is not visible in the list of Paragraph Styles, select \"All Styles\" in the lower listbox."
msgstr "Per a crear una línia horitzontal, apliqueu l'estil de paràgraf <emph>Línia horitzontal</emph>. Feu clic a un paràgraf buit i, tot seguit, feu doble clic a l'estil <emph>Línia horitzontal</emph> a la finestra <emph>Estils</emph>. Si l'entrada per a línies horitzontals no apareix a la llista d'estils de paràgraf, seleccioneu «Tots els estils» al quadre de llista inferior."
-#. pfpgD
+#. fQrZa
#: line_intext.xhp
msgctxt ""
"line_intext.xhp\n"
"par_id3153748\n"
"help.text"
-msgid "You can draw a line above, beside or below a paragraph in a Writer text document by choosing <emph>Format - Paragraph - </emph><link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"><emph>Borders</emph></link>."
-msgstr "Podeu dibuixar una línia damunt, a sota o al costat d'un paràgraf en un document de text del Writer si trieu <emph>Format - Paràgraf - </emph><link href=\"text/shared/01/05030500.xhp\" name=\"Vores\"><emph>Vores</emph></link>."
+msgid "You can draw a line above, beside or below a paragraph in a Writer text document by choosing <emph>Format - Paragraph - </emph><link href=\"text/shared/01/05030500.xhp\"><emph>Borders</emph></link>."
+msgstr "Podeu dibuixar una línia damunt, a sota o al costat d'un paràgraf en un document de text del Writer si trieu <emph>Format - Paràgraf - </emph><link href=\"text/shared/01/05030500.xhp\"><emph>Vores</emph></link>."
#. ED6cS
#: line_intext.xhp
@@ -17297,14 +17297,14 @@ msgctxt ""
msgid "To disable the automatic borders, choose <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> and clear <emph>Apply border</emph>."
msgstr "Per inhabilitar les vores automàtiques, trieu <emph>Eines - Opcions de correcció automàtica - Opcions</emph> i <emph>Aplica una vora</emph>."
-#. ipxdF
+#. XV8sU
#: line_intext.xhp
msgctxt ""
"line_intext.xhp\n"
"par_id3145787\n"
"help.text"
-msgid "The lines and other drawing objects that you insert in text are not defined in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>, and are therefore not exported directly into HTML format. Instead, they are exported as graphics."
-msgstr "Les línies i els altres objectes de dibuix que inseriu al text no es defineixen en <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> i, per tant, no s'exporten directament al format HTML, sinó que s'exporten com a gràfics."
+msgid "The lines and other drawing objects that you insert in text are not defined in <link href=\"text/shared/00/00000002.xhp#html\">HTML</link>, and are therefore not exported directly into HTML format. Instead, they are exported as graphics."
+msgstr "Les línies i els altres objectes de dibuix que inseriu al text no es defineixen en <link href=\"text/shared/00/00000002.xhp#html\">HTML</link> i, per tant, no s'exporten directament al format HTML, sinó que s'exporten com a gràfics."
#. j98Cn
#: line_intext.xhp
@@ -17315,14 +17315,14 @@ msgctxt ""
msgid "When you enter a line width, you can append a measurement unit. A zero line width results in a hairline with a width of one pixel of the output medium."
msgstr "Quan introduïu una amplària de línia, podeu afegir-hi una unitat de mesura. Si introduïu una amplària de línia zero, es mostra una línia fina amb una amplària d'un píxel al mitjà d'eixida."
-#. Z4CSn
+#. 8jSF6
#: line_intext.xhp
msgctxt ""
"line_intext.xhp\n"
"par_id3154188\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Format - Paragraph - Borders\">Format - Paragraph - Borders</link>"
-msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Format - Paràgraf - Vores\">Format - Paràgraf - Vores</link>"
+msgid "<link href=\"text/shared/01/05030500.xhp\">Format - Paragraph - Borders</link>"
+msgstr "<link href=\"text/shared/01/05030500.xhp\">Format - Paràgraf - Vores</link>"
#. 7ntRp
#: lineend_define.xhp
@@ -17342,13 +17342,13 @@ msgctxt ""
msgid "<bookmark_value>defining; arrowheads and other line ends</bookmark_value><bookmark_value>arrows; defining arrow heads</bookmark_value><bookmark_value>lines;defining ends</bookmark_value>"
msgstr "<bookmark_value>definició; extrems de fletxa i altres finals de línia</bookmark_value><bookmark_value>fletxes; definició d'extrems de fletxa</bookmark_value><bookmark_value>línies;definició de finals</bookmark_value>"
-#. 6SzNd
+#. xPp67
#: lineend_define.xhp
msgctxt ""
"lineend_define.xhp\n"
"hd_id3146117\n"
"help.text"
-msgid "<variable id=\"lineend_define\"><link href=\"text/shared/guide/lineend_define.xhp\" name=\"Defining Line Ends\">Defining Arrow Styles</link></variable>"
+msgid "<variable id=\"lineend_define\"><link href=\"text/shared/guide/lineend_define.xhp\">Defining Arrow Styles</link></variable>"
msgstr ""
#. 7DhAE
@@ -17423,14 +17423,14 @@ msgctxt ""
msgid "<bookmark_value>line styles;defining</bookmark_value><bookmark_value>defining;line styles</bookmark_value>"
msgstr "<bookmark_value>estils de línia;definició</bookmark_value><bookmark_value>definició;estils de línia</bookmark_value>"
-#. 2svQa
+#. FxCxt
#: linestyle_define.xhp
msgctxt ""
"linestyle_define.xhp\n"
"hd_id3153825\n"
"help.text"
-msgid "<variable id=\"linestyle_define\"><link href=\"text/shared/guide/linestyle_define.xhp\" name=\"Defining Line Styles\">Defining Line Styles</link></variable>"
-msgstr "<variable id=\"linestyle_define\"><link href=\"text/shared/guide/linestyle_define.xhp\" name=\"Definició d'estils de línia\">Definició d'estils de línia</link></variable>"
+msgid "<variable id=\"linestyle_define\"><link href=\"text/shared/guide/linestyle_define.xhp\">Defining Line Styles</link></variable>"
+msgstr "<variable id=\"linestyle_define\"><link href=\"text/shared/guide/linestyle_define.xhp\">Definició d'estils de línia</link></variable>"
#. iEAP6
#: linestyle_define.xhp
@@ -17522,14 +17522,14 @@ msgctxt ""
msgid "<bookmark_value>separator lines; defining</bookmark_value><bookmark_value>reference lines</bookmark_value><bookmark_value>arrows; defining arrow lines</bookmark_value><bookmark_value>line styles; applying</bookmark_value>"
msgstr "<bookmark_value>línies de separació; definició</bookmark_value><bookmark_value>línies de referència</bookmark_value><bookmark_value>fletxes; definició de línies de fletxa</bookmark_value><bookmark_value>estils de línia; aplicació</bookmark_value>"
-#. AAqCH
+#. E8EKb
#: linestyles.xhp
msgctxt ""
"linestyles.xhp\n"
"hd_id3153884\n"
"help.text"
-msgid "<variable id=\"linestyles\"><link href=\"text/shared/guide/linestyles.xhp\" name=\"Applying Line Styles Using the Toolbar\">Applying Line Styles Using the Toolbar</link></variable>"
-msgstr "<variable id=\"linestyles\"><link href=\"text/shared/guide/linestyles.xhp\" name=\"Aplicació d'estils de línia mitjançant la barra d'eines\">Aplicació d'estils de línia mitjançant la barra d'eines</link></variable>"
+msgid "<variable id=\"linestyles\"><link href=\"text/shared/guide/linestyles.xhp\">Applying Line Styles Using the Toolbar</link></variable>"
+msgstr "<variable id=\"linestyles\"><link href=\"text/shared/guide/linestyles.xhp\">Aplicació d'estils de línia mitjançant la barra d'eines</link></variable>"
#. 7G7xJ
#: linestyles.xhp
@@ -17594,13 +17594,13 @@ msgctxt ""
msgid "<bookmark_value>Lotus;command line filter options</bookmark_value><bookmark_value>dBase;command line filter options</bookmark_value><bookmark_value>Diff;command line filter options</bookmark_value>"
msgstr ""
-#. AMfh8
+#. bJirR
#: lotusdbasediff.xhp
msgctxt ""
"lotusdbasediff.xhp\n"
"hd_id871634727961723\n"
"help.text"
-msgid "<variable id=\"lotusbasediff_h1\"><link href=\"text/shared/guide/lotusdbasediff.xhp\" name=\"LotusdBaseDiff\">Lotus, dBase and Diff filter parameters</link></variable>"
+msgid "<variable id=\"lotusbasediff_h1\"><link href=\"text/shared/guide/lotusdbasediff.xhp\">Lotus, dBase and Diff filter parameters</link></variable>"
msgstr ""
#. GaDJ8
@@ -18530,14 +18530,14 @@ msgctxt ""
msgid "<bookmark_value>macros; recording</bookmark_value> <bookmark_value>recording; macros</bookmark_value> <bookmark_value>Basic; recording macros</bookmark_value>"
msgstr ""
-#. Appej
+#. AdRCt
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
"hd_id3093440\n"
"help.text"
-msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link> </variable>"
-msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Enregistrament d'una macro\">Enregistrament d'una macro</link></variable>"
+msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\">Recording a Macro</link> </variable>"
+msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\">Enregistrament d'una macro</link></variable>"
#. mCnpB
#: macro_recording.xhp
@@ -18746,14 +18746,14 @@ msgctxt ""
msgid "The macro recorder works only in Calc and Writer."
msgstr "L'gravadora de macros només funciona al Calc i al Writer."
-#. qb4j4
+#. BEDW4
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
"par_id3156422\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
-msgstr "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
+msgid "<link href=\"text/shared/01/06130000.xhp\">Macro</link>"
+msgstr "<link href=\"text/shared/01/06130000.xhp\">Macro</link>"
#. v6J64
#: main.xhp
@@ -18773,14 +18773,14 @@ msgctxt ""
msgid "<bookmark_value>instructions; general</bookmark_value>"
msgstr "<bookmark_value>instruccions; generals</bookmark_value>"
-#. hUJ2Q
+#. KzMfi
#: main.xhp
msgctxt ""
"main.xhp\n"
"hd_id3151097\n"
"help.text"
-msgid "<variable id=\"main\"><link href=\"text/shared/guide/main.xhp\" name=\"General Instructions for %PRODUCTNAME\">General Instructions for <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
-msgstr "<variable id=\"main\"><link href=\"text/shared/guide/main.xhp\" name=\"Instruccions generals per al %PRODUCTNAME\">Instruccions generals per al <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
+msgid "<variable id=\"main\"><link href=\"text/shared/guide/main.xhp\">General Instructions for <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
+msgstr "<variable id=\"main\"><link href=\"text/shared/guide/main.xhp\">Instruccions generals per al <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
#. QXpNQ
#: main.xhp
@@ -18908,23 +18908,23 @@ msgctxt ""
msgid "Miscellaneous"
msgstr "Diversos"
-#. hGNRB
+#. oP7C5
#: main.xhp
msgctxt ""
"main.xhp\n"
"par_id3147173\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000005.xhp\" name=\"General Terminology\">General Terminology</link>"
-msgstr "<link href=\"text/shared/00/00000005.xhp\" name=\"Terminologia general\">Terminologia general</link>"
+msgid "<link href=\"text/shared/00/00000005.xhp\">General Terminology</link>"
+msgstr "<link href=\"text/shared/00/00000005.xhp\">Terminologia general</link>"
-#. L6xcw
+#. EYBc3
#: main.xhp
msgctxt ""
"main.xhp\n"
"par_id3156332\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Internet Terminology\">Internet Terminology</link>"
-msgstr "<link href=\"text/shared/00/00000002.xhp\" name=\"Terminologia d'Internet\">Terminologia d'Internet</link>"
+msgid "<link href=\"text/shared/00/00000002.xhp\">Internet Terminology</link>"
+msgstr "<link href=\"text/shared/00/00000002.xhp\">Terminologia d'Internet</link>"
#. jRNxE
#: manage_templates.xhp
@@ -18944,22 +18944,22 @@ msgctxt ""
msgid "<bookmark_value>paths;template files</bookmark_value><bookmark_value>categories;in templates</bookmark_value><bookmark_value>file extensions;in templates</bookmark_value>"
msgstr ""
-#. XoCwL
+#. pTGwc
#: manage_templates.xhp
msgctxt ""
"manage_templates.xhp\n"
"hd_id901607893176311\n"
"help.text"
-msgid "<variable id=\"manage_templates\"><link href=\"text/shared/guide/manage_templates.xhp\" name=\"Manage_Templates\">Templates in the Template Manager</link></variable>"
+msgid "<variable id=\"manage_templates\"><link href=\"text/shared/guide/manage_templates.xhp\">Templates in the Template Manager</link></variable>"
msgstr ""
-#. vGZfY
+#. Fhv8R
#: manage_templates.xhp
msgctxt ""
"manage_templates.xhp\n"
"par_id411607893606359\n"
"help.text"
-msgid "The recommended method for working with templates is to use the <link href=\"text/shared/guide/template_manager.xhp\" name=\"template_manager\">Template Manager</link> and the commands in the <link href=\"text/shared/01/01110000.xhp\" name=\"template_submenu\"><menuitem>File - Templates</menuitem></link> submenu, <menuitem>Edit Template</menuitem> and <menuitem>Save as Template</menuitem>. These commands are sufficient for basic management of templates in %PRODUCTNAME."
+msgid "The recommended method for working with templates is to use the <link href=\"text/shared/guide/template_manager.xhp\">Template Manager</link> and the commands in the <link href=\"text/shared/01/01110000.xhp\"><menuitem>File - Templates</menuitem></link> submenu, <menuitem>Edit Template</menuitem> and <menuitem>Save as Template</menuitem>. These commands are sufficient for basic management of templates in %PRODUCTNAME."
msgstr ""
#. g2AzE
@@ -19007,13 +19007,13 @@ msgctxt ""
msgid "Extensions"
msgstr ""
-#. C6NzD
+#. DGNM2
#: manage_templates.xhp
msgctxt ""
"manage_templates.xhp\n"
"par_id941607989961367\n"
"help.text"
-msgid "For information about the meaning of the extensions see <link href=\"text/shared/guide/convertfilters.xhp\" name=\"File Extensions\">Filter Conversion</link>."
+msgid "For information about the meaning of the extensions see <link href=\"text/shared/guide/convertfilters.xhp\">Filter Conversion</link>."
msgstr ""
#. ZK8TA
@@ -19286,14 +19286,14 @@ msgctxt ""
msgid "<bookmark_value>documents;measurement units in</bookmark_value><bookmark_value>measurement units;selecting</bookmark_value><bookmark_value>units;measurement units</bookmark_value><bookmark_value>centimeters</bookmark_value><bookmark_value>inches</bookmark_value><bookmark_value>distances</bookmark_value><bookmark_value>selecting;measurement units</bookmark_value>"
msgstr "<bookmark_value>documents;unitats de mesura a</bookmark_value><bookmark_value>unitats de mesura;selecció</bookmark_value><bookmark_value>unitats;unitats de mesura</bookmark_value><bookmark_value>centímetres</bookmark_value><bookmark_value>polzades</bookmark_value><bookmark_value>distàncies</bookmark_value><bookmark_value>selecció;unitats de mesura</bookmark_value>"
-#. 37zFF
+#. NvMqb
#: measurement_units.xhp
msgctxt ""
"measurement_units.xhp\n"
"hd_id3159201\n"
"help.text"
-msgid "<variable id=\"measurement_units\"><link href=\"text/shared/guide/measurement_units.xhp\" name=\"Selecting Measurement Units\">Selecting Measurement Units</link></variable>"
-msgstr "<variable id=\"measurement_units\"><link href=\"text/shared/guide/measurement_units.xhp\" name=\"Selecció d'unitats de mesura\">Selecció d'unitats de mesura</link></variable>"
+msgid "<variable id=\"measurement_units\"><link href=\"text/shared/guide/measurement_units.xhp\">Selecting Measurement Units</link></variable>"
+msgstr "<variable id=\"measurement_units\"><link href=\"text/shared/guide/measurement_units.xhp\">Selecció d'unitats de mesura</link></variable>"
#. bFcHJ
#: measurement_units.xhp
@@ -19358,23 +19358,23 @@ msgctxt ""
msgid "On the <emph>General</emph> tab page, select the measurement unit. Close the dialog with <emph>OK</emph>."
msgstr "A la pestanya <emph>General</emph>, seleccioneu la unitat de mesura. Tanqueu el diàleg amb <emph>D'acord</emph>."
-#. mDnnz
+#. 8VEM5
#: measurement_units.xhp
msgctxt ""
"measurement_units.xhp\n"
"par_id3153126\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000003.xhp\" name=\"Entering measurement units directly\">Entering measurement units directly</link>"
-msgstr "<link href=\"text/shared/00/00000003.xhp\" name=\"Introducció directa d'unitats de mesura\">Introducció directa d'unitats de mesura</link>"
+msgid "<link href=\"text/shared/00/00000003.xhp\">Entering measurement units directly</link>"
+msgstr "<link href=\"text/shared/00/00000003.xhp\">Introducció directa d'unitats de mesura</link>"
-#. qHr8k
+#. V7M8J
#: measurement_units.xhp
msgctxt ""
"measurement_units.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - General\">%PRODUCTNAME Writer - General</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - General\">%PRODUCTNAME Writer - General</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040200.xhp\">%PRODUCTNAME Writer - General</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040200.xhp\">%PRODUCTNAME Writer - General</link>"
#. fEwDG
#: microsoft_terms.xhp
@@ -19394,14 +19394,14 @@ msgctxt ""
msgid "<bookmark_value>Microsoft Office;feature comparisons</bookmark_value>"
msgstr "<bookmark_value>Microsoft Office;comparacions de funcions</bookmark_value>"
-#. LeCMA
+#. SnuZ7
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"hd_id3156136\n"
"help.text"
-msgid "<variable id=\"microsoft_terms\"><link href=\"text/shared/guide/microsoft_terms.xhp\" name=\"Comparing Microsoft Office and $[officename] Terms\">Comparing Microsoft Office and $[officename] Terms</link></variable>"
-msgstr "<variable id=\"microsoft_terms\"><link href=\"text/shared/guide/microsoft_terms.xhp\" name=\"Comparació dels termes del Microsoft Office i del $[officename] \">Comparació dels termes del Microsoft Office i del $[officename]</link></variable>"
+msgid "<variable id=\"microsoft_terms\"><link href=\"text/shared/guide/microsoft_terms.xhp\">Comparing Microsoft Office and $[officename] Terms</link></variable>"
+msgstr "<variable id=\"microsoft_terms\"><link href=\"text/shared/guide/microsoft_terms.xhp\">Comparació dels termes del Microsoft Office i del $[officename]</link></variable>"
#. gaThw
#: microsoft_terms.xhp
@@ -19439,14 +19439,14 @@ msgctxt ""
msgid "AutoShapes"
msgstr "Formes automàtiques"
-#. MMVUH
+#. cDzGC
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3154897\n"
"help.text"
-msgid "<link href=\"text/shared/guide/gallery_insert.xhp\" name=\"Gallery Objects\">Gallery Objects</link><br/>Shapes are on the <emph>Drawing</emph> toolbar (menu <item type=\"menuitem\">View - Toolbars - Drawing</item>)"
-msgstr "<link href=\"text/shared/guide/gallery_insert.xhp\" name=\"Objectes de la Galeria\">Objectes de la Galeria</link><br/>Les formes són a la barra d'eines <emph>Dibuix</emph> (menú <item type=\"menuitem\">Visualitza - Barres d'eines - Dibuix</item>)."
+msgid "<link href=\"text/shared/guide/gallery_insert.xhp\">Gallery Objects</link><br/>Shapes are on the <emph>Drawing</emph> toolbar (menu <item type=\"menuitem\">View - Toolbars - Drawing</item>)"
+msgstr "<link href=\"text/shared/guide/gallery_insert.xhp\">Objectes de la Galeria</link><br/>Les formes són a la barra d'eines <emph>Dibuix</emph> (menú <item type=\"menuitem\">Visualitza - Barres d'eines - Dibuix</item>)."
#. BZ4cQ
#: microsoft_terms.xhp
@@ -19457,13 +19457,13 @@ msgctxt ""
msgid "Change Case"
msgstr "Canvia a majúscules/minúscules"
-#. fJjRm
+#. bTsi9
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3153825\n"
"help.text"
-msgid "<link href=\"text/shared/01/05050000.xhp\" name=\"Change Case\">Case/Characters</link>"
+msgid "<link href=\"text/shared/01/05050000.xhp\">Case/Characters</link>"
msgstr ""
#. xjEyD
@@ -19493,14 +19493,14 @@ msgctxt ""
msgid "Compare and Merge Documents"
msgstr "Comparació i combinació de documents"
-#. Gqd4Q
+#. ReXHv
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3153524\n"
"help.text"
-msgid "<link href=\"text/shared/guide/redlining_doccompare.xhp\" name=\"Compare\">Compare</link>"
-msgstr "<link href=\"text/shared/guide/redlining_doccompare.xhp\" name=\"Compara\">Compara</link>"
+msgid "<link href=\"text/shared/guide/redlining_doccompare.xhp\">Compare</link>"
+msgstr "<link href=\"text/shared/guide/redlining_doccompare.xhp\">Compara</link>"
#. 4WKGR
#: microsoft_terms.xhp
@@ -19511,14 +19511,14 @@ msgctxt ""
msgid "Document Map"
msgstr "Mapa del document"
-#. VN4TZ
+#. HMXqC
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3156280\n"
"help.text"
-msgid "<link href=\"text/shared/guide/navigator_setcursor.xhp\" name=\"Navigator\">Navigator</link>"
-msgstr "<link href=\"text/shared/guide/navigator_setcursor.xhp\" name=\"Navegador\">Navegador</link>"
+msgid "<link href=\"text/shared/guide/navigator_setcursor.xhp\">Navigator</link>"
+msgstr "<link href=\"text/shared/guide/navigator_setcursor.xhp\">Navegador</link>"
#. sACbT
#: microsoft_terms.xhp
@@ -19529,14 +19529,14 @@ msgctxt ""
msgid "Formula Auditing"
msgstr "Auditoria de fórmules"
-#. MBkCr
+#. eakJ4
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3154013\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
-msgstr "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detectiu\">Detectiu</link>"
+msgid "<link href=\"text/scalc/01/06030000.xhp\">Detective</link>"
+msgstr "<link href=\"text/scalc/01/06030000.xhp\">Detectiu</link>"
#. qFFM9
#: microsoft_terms.xhp
@@ -19547,14 +19547,14 @@ msgctxt ""
msgid "Lines and Page Breaks"
msgstr "Salts de línia i de pàgina"
-#. 6XvWP
+#. f9cze
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3151116\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030200.xhp\" name=\"Text Flow\">Text Flow</link>"
-msgstr "<link href=\"text/swriter/01/05030200.xhp\" name=\"Flux del text\">Flux del text</link>"
+msgid "<link href=\"text/swriter/01/05030200.xhp\">Text Flow</link>"
+msgstr "<link href=\"text/swriter/01/05030200.xhp\">Flux del text</link>"
#. FGChZ
#: microsoft_terms.xhp
@@ -19592,13 +19592,13 @@ msgctxt ""
msgid "Markup"
msgstr "Etiquetatge"
-#. 89GkF
+#. LwNbJ
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3147048\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230200.xhp\" name=\"Track Changes - Show\">Track Changes - Show</link>"
+msgid "<link href=\"text/shared/01/02230200.xhp\">Track Changes - Show</link>"
msgstr ""
#. 5RTgJ
@@ -19628,14 +19628,14 @@ msgctxt ""
msgid "Replace text as you type"
msgstr "Substitueix el text a mesura que escric"
-#. hiEBE
+#. Livpv
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3152962\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010400.xhp\" name=\"AutoCorrect\">AutoCorrect</link>"
-msgstr "<link href=\"text/shared/optionen/01010400.xhp\" name=\"Correcció automàtica\">Correcció automàtica</link>"
+msgid "<link href=\"text/shared/optionen/01010400.xhp\">AutoCorrect</link>"
+msgstr "<link href=\"text/shared/optionen/01010400.xhp\">Correcció automàtica</link>"
#. WFVDK
#: microsoft_terms.xhp
@@ -19646,14 +19646,14 @@ msgctxt ""
msgid "Show/Hide"
msgstr "Mostra/Amaga"
-#. bY4at
+#. ftwDF
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3150045\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03100000.xhp\" name=\"Nonprinting Characters\">Nonprinting Characters</link>, <link href=\"text/swriter/01/03140000.xhp\" name=\"Hidden Paragraphs\">Hidden Paragraphs</link>"
-msgstr "<link href=\"text/swriter/01/03100000.xhp\" name=\"Caràcters no imprimibles\">Caràcters no imprimibles</link>, <link href=\"text/swriter/01/03140000.xhp\" name=\"Paràgrafs amagats\">Paràgrafs amagats</link>"
+msgid "<link href=\"text/swriter/01/03100000.xhp\">Nonprinting Characters</link>, <link href=\"text/swriter/01/03140000.xhp\">Hidden Paragraphs</link>"
+msgstr "<link href=\"text/swriter/01/03100000.xhp\">Caràcters no imprimibles</link>, <link href=\"text/swriter/01/03140000.xhp\">Paràgrafs amagats</link>"
#. 9GsPr
#: microsoft_terms.xhp
@@ -19664,14 +19664,14 @@ msgctxt ""
msgid "Spelling and Grammar"
msgstr "Ortografia i gramàtica"
-#. sujNt
+#. EkmCg
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3150297\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Spelling</link>"
-msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Ortografia\">Ortografia</link>"
+msgid "<link href=\"text/shared/01/06010000.xhp\">Spelling</link>"
+msgstr "<link href=\"text/shared/01/06010000.xhp\">Ortografia</link>"
#. RdJY7
#: microsoft_terms.xhp
@@ -19682,14 +19682,14 @@ msgctxt ""
msgid "Track changes"
msgstr "Seguiment de canvis"
-#. R4B7A
+#. 2mKQG
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3146810\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes - Record\">Changes - Record</link>"
-msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Canvis - Registre\">Canvis - Registre</link>"
+msgid "<link href=\"text/shared/01/02230000.xhp\">Changes - Record</link>"
+msgstr "<link href=\"text/shared/01/02230000.xhp\">Canvis - Registre</link>"
#. cGDn9
#: microsoft_terms.xhp
@@ -19700,14 +19700,14 @@ msgctxt ""
msgid "Validation"
msgstr "Validació"
-#. ZdNj8
+#. MBm9V
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3156138\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
-msgstr "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validesa\">Validesa</link>"
+msgid "<link href=\"text/scalc/01/12120000.xhp\">Validity</link>"
+msgstr "<link href=\"text/scalc/01/12120000.xhp\">Validesa</link>"
#. EBidb
#: microsoft_terms.xhp
@@ -19718,14 +19718,14 @@ msgctxt ""
msgid "Workbook"
msgstr "Llibre de treball"
-#. E2JaE
+#. QEVU9
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3155379\n"
"help.text"
-msgid "<link href=\"text/scalc/main0503.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
-msgstr "<link href=\"text/scalc/main0503.xhp\" name=\"Full de càlcul\">Full de càlcul</link>"
+msgid "<link href=\"text/scalc/main0503.xhp\">Spreadsheet</link>"
+msgstr "<link href=\"text/scalc/main0503.xhp\">Full de càlcul</link>"
#. SPgoE
#: microsoft_terms.xhp
@@ -19736,14 +19736,14 @@ msgctxt ""
msgid "Worksheet"
msgstr "Full de càlcul"
-#. G6Evw
+#. 2GXsn
#: microsoft_terms.xhp
msgctxt ""
"microsoft_terms.xhp\n"
"par_id3148593\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Full\">Full</link>"
+msgid "<link href=\"text/scalc/01/04050000.xhp\">Sheet</link>"
+msgstr "<link href=\"text/scalc/01/04050000.xhp\">Full</link>"
#. xtQRe
#: microsoft_terms.xhp
@@ -19781,14 +19781,14 @@ msgctxt ""
msgid "<bookmark_value>Microsoft Office;reassigning document types</bookmark_value><bookmark_value>file associations for Microsoft Office</bookmark_value><bookmark_value>changing;file associations in Setup program</bookmark_value>"
msgstr "<bookmark_value>Microsoft Office;reassignació de tipus de documents</bookmark_value><bookmark_value>associacions de fitxers per al Microsoft Office</bookmark_value><bookmark_value>canvi; associacions de fitxers al programa d'instal·lació</bookmark_value>"
-#. ia5Ts
+#. mxuUB
#: ms_doctypes.xhp
msgctxt ""
"ms_doctypes.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<variable id=\"ms_doctypes\"><link href=\"text/shared/guide/ms_doctypes.xhp\" name=\"Changing the Association of Microsoft Office Document Types\">Changing the Association of Microsoft Office Document Types</link></variable>"
-msgstr "<variable id=\"ms_doctypes\"><link href=\"text/shared/guide/ms_doctypes.xhp\" name=\"Canvi de l'associació dels tipus de document del Microsoft Office\">Canvi de l'associació dels tipus de document del Microsoft Office</link></variable>"
+msgid "<variable id=\"ms_doctypes\"><link href=\"text/shared/guide/ms_doctypes.xhp\">Changing the Association of Microsoft Office Document Types</link></variable>"
+msgstr "<variable id=\"ms_doctypes\"><link href=\"text/shared/guide/ms_doctypes.xhp\">Canvi de l'associació dels tipus de document del Microsoft Office</link></variable>"
#. 3N4oG
#: ms_doctypes.xhp
@@ -19853,14 +19853,14 @@ msgctxt ""
msgid "<bookmark_value>Microsoft Office;document import restrictions</bookmark_value> <bookmark_value>import restrictions for Microsoft Office</bookmark_value> <bookmark_value>Microsoft Office;importing password protected files</bookmark_value>"
msgstr "<bookmark_value>Microsoft Office;restriccions d'importació de documents</bookmark_value><bookmark_value>restriccions d'importació per al Microsoft Office</bookmark_value><bookmark_value>Microsoft Office;importació de fitxers protegits amb contrasenya</bookmark_value>"
-#. pmRSN
+#. GEeiE
#: ms_import_export_limitations.xhp
msgctxt ""
"ms_import_export_limitations.xhp\n"
"hd_id3152425\n"
"help.text"
-msgid "<variable id=\"about\"><link href=\"text/shared/guide/ms_import_export_limitations.xhp\" name=\"About Converting Microsoft Office Documents\">About Converting Microsoft Office Documents</link></variable>"
-msgstr "<variable id=\"about\"><link href=\"text/shared/guide/ms_import_export_limitations.xhp\" name=\"Quant a la conversió de documents del Microsoft Office\"> Quant a la conversió de documents del Microsoft Office</link></variable>"
+msgid "<variable id=\"about\"><link href=\"text/shared/guide/ms_import_export_limitations.xhp\">About Converting Microsoft Office Documents</link></variable>"
+msgstr "<variable id=\"about\"><link href=\"text/shared/guide/ms_import_export_limitations.xhp\"> Quant a la conversió de documents del Microsoft Office</link></variable>"
#. Mojph
#: ms_import_export_limitations.xhp
@@ -20132,13 +20132,13 @@ msgctxt ""
msgid "In Excel, the formula =A1+A2 returns 2, but the formula =SUM(A1,A2) returns 0."
msgstr "A l'Excel, la fórmula =A1+A2 torna 2 però la fórmula =SUMA(A1,A2) torna0."
-#. fUCUc
+#. 5hN87
#: ms_import_export_limitations.xhp
msgctxt ""
"ms_import_export_limitations.xhp\n"
"par_id3150439\n"
"help.text"
-msgid "For a detailed overview about converting documents to and from Microsoft Office format, see the <link href=\"https://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\" name=\"wiki.dcoumentfoundation.org OOoAuthors User Manual: Migration Guide\">Migration Guide</link>."
+msgid "For a detailed overview about converting documents to and from Microsoft Office format, see the <link href=\"https://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\">Migration Guide</link>."
msgstr ""
#. rLfhu
@@ -20294,14 +20294,14 @@ msgctxt ""
msgid "Microsoft Office files that are encrypted by AES128 can be opened. Other encryption methods are not supported."
msgstr "Els fitxers Microsoft Office xifrats amb AES128 es poden obrir. Altres mètodes de xifrat no són suportats."
-#. bWxu2
+#. 7SXWu
#: ms_import_export_limitations.xhp
msgctxt ""
"ms_import_export_limitations.xhp\n"
"par_id3147318\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010200.xhp\" name=\"Setting the default file format\">Setting the default file format</link>"
-msgstr "<link href=\"text/shared/optionen/01010200.xhp\" name=\"Configuració del format de fitxer per defecte\">Configuració del format de fitxer per defecte</link>"
+msgid "<link href=\"text/shared/optionen/01010200.xhp\">Setting the default file format</link>"
+msgstr "<link href=\"text/shared/optionen/01010200.xhp\">Configuració del format de fitxer per defecte</link>"
#. 7TwJy
#: ms_user.xhp
@@ -20321,14 +20321,14 @@ msgctxt ""
msgid "<bookmark_value>Office;Microsoft Office and $[officename]</bookmark_value><bookmark_value>Microsoft Office;new users information</bookmark_value><bookmark_value>opening;Microsoft Office files</bookmark_value><bookmark_value>saving;in Microsoft Office file format</bookmark_value><bookmark_value>macros; in MS Office documents</bookmark_value>"
msgstr "<bookmark_value>Office;Microsoft Office i $[officename]</bookmark_value><bookmark_value>Microsoft Office;informació per a nous usuaris</bookmark_value><bookmark_value>obertura;fitxers del Microsoft Office</bookmark_value><bookmark_value>guardar;com a format de fitxer del Microsoft Office</bookmark_value><bookmark_value>macros; als documents del MS Office</bookmark_value>"
-#. cYs8S
+#. Vpkmo
#: ms_user.xhp
msgctxt ""
"ms_user.xhp\n"
"hd_id3150789\n"
"help.text"
-msgid "<variable id=\"ms_user\"><link href=\"text/shared/guide/ms_user.xhp\" name=\"Using Microsoft Office and $[officename]\">Using Microsoft Office and $[officename]</link></variable>"
-msgstr "<variable id=\"ms_user\"><link href=\"text/shared/guide/ms_user.xhp\" name=\"Ús del Microsoft Office i del $[officename]\">Ús del Microsoft Office i del $[officename]</link></variable>"
+msgid "<variable id=\"ms_user\"><link href=\"text/shared/guide/ms_user.xhp\">Using Microsoft Office and $[officename]</link></variable>"
+msgstr "<variable id=\"ms_user\"><link href=\"text/shared/guide/ms_user.xhp\">Ús del Microsoft Office i del $[officename]</link></variable>"
#. Wm5xe
#: ms_user.xhp
@@ -20465,14 +20465,14 @@ msgctxt ""
msgid "Saving Documents by Default in Microsoft Office Formats"
msgstr "Guardar documents per defecte en els formats del Microsoft Office"
-#. APrfG
+#. RBiDC
#: ms_user.xhp
msgctxt ""
"ms_user.xhp\n"
"par_id3144760\n"
"help.text"
-msgid "Choose <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/01010200.xhp\" name=\"Load/Save - General\"><emph>Load/Save - General</emph></link>."
-msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010200.xhp\" name=\"Carrega/guarda - General\"><emph>Carrega/guarda ▸ General</emph></link>."
+msgid "Choose <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/01010200.xhp\"><emph>Load/Save - General</emph></link>."
+msgstr "Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010200.xhp\"><emph>Carrega/guarda ▸ General</emph></link>."
#. uZx9i
#: ms_user.xhp
@@ -20519,14 +20519,14 @@ msgctxt ""
msgid "The <emph>Document Converter Wizard</emph> will copy and convert all Microsoft Office files in a folder into $[officename] documents in the OpenDocument file format. You can specify the folder to be read, and the folder where the converted files are to be saved."
msgstr "L'<emph>auxiliar Convertidor de documents</emph> copiarà i convertirà tots els fitxers del Microsoft Office d'una carpeta en documents del $[officename] amb el format OpenDocument. Podeu indicar la carpeta que s'ha de llegir i la carpeta on s'han de guardar els fitxers convertits."
-#. DnGoX
+#. goskv
#: ms_user.xhp
msgctxt ""
"ms_user.xhp\n"
"par_id3150486\n"
"help.text"
-msgid "Choose <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph>File - Wizards - Document Converter</emph></link> to start the wizard."
-msgstr "Trieu <link href=\"text/shared/autopi/01130000.xhp\" name=\"Fitxer ▸ AutoPilot ▸ Convertidor de documents\"><emph>Fitxer ▸ Auxiliars ▸ Convertidor de documents</emph></link> per a iniciar l'auxiliar."
+msgid "Choose <link href=\"text/shared/autopi/01130000.xhp\"><emph>File - Wizards - Document Converter</emph></link> to start the wizard."
+msgstr "Trieu <link href=\"text/shared/autopi/01130000.xhp\"><emph>Fitxer ▸ Auxiliars ▸ Convertidor de documents</emph></link> per a iniciar l'auxiliar."
#. V3ANF
#: ms_user.xhp
@@ -20555,14 +20555,14 @@ msgctxt ""
msgid "The most recent versions of %PRODUCTNAME can run some Excel Visual Basic scripts if you enable this feature at <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - Load/Save - VBA Properties</item>."
msgstr "Les versions més actuals del %PRODUCTNAME poden executar alguns scripts del Visual Basic de l'Excel si habiliteu la funció pertinent a <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Preferències</item></caseinline><defaultinline><item type=\"menuitem\">Eines ▸ Opcions</item></defaultinline></switchinline><item type=\"menuitem\"> ▸ Carrega/guarda ▸ Propietats VBA</item>."
-#. pfNBk
+#. A9WHS
#: ms_user.xhp
msgctxt ""
"ms_user.xhp\n"
"par_id3152577\n"
"help.text"
-msgid "If you use macros in one of the applications and want to use the same functionality in the other application, you must edit the macros. $[officename] can load the macros that are contained within Microsoft Office files and you can then view and edit the macro code in the $[officename] <link href=\"text/shared/main0600.xhp\" name=\"Basic IDE\">Basic IDE</link> editor."
-msgstr "Si utilitzeu macros en una de les aplicacions i voleu utilitzar la mateixa funció a l'altra aplicació, cal que editeu les macros. El $[officename] pot carregar les macros que contenen els fitxers del Microsoft Office i, així, podeu visualitzar el codi de la macro i editar-lo amb l'editor <link href=\"text/shared/main0600.xhp\" name=\"IDE del Basic\">IDE del Basic</link> del $[officename]."
+msgid "If you use macros in one of the applications and want to use the same functionality in the other application, you must edit the macros. $[officename] can load the macros that are contained within Microsoft Office files and you can then view and edit the macro code in the $[officename] <link href=\"text/shared/main0600.xhp\">Basic IDE</link> editor."
+msgstr "Si utilitzeu macros en una de les aplicacions i voleu utilitzar la mateixa funció a l'altra aplicació, cal que editeu les macros. El $[officename] pot carregar les macros que contenen els fitxers del Microsoft Office i, així, podeu visualitzar el codi de la macro i editar-lo amb l'editor <link href=\"text/shared/main0600.xhp\">IDE del Basic</link> del $[officename]."
#. 8N7fC
#: ms_user.xhp
@@ -20591,13 +20591,13 @@ msgctxt ""
msgid "You may delete the VBA macros from the Microsoft Office file on loading or on saving."
msgstr "Podeu suprimir les macros VBA del fitxer del Microsoft Office en carregar o en guardar."
-#. BKYnC
+#. xB9AG
#: ms_user.xhp
msgctxt ""
"ms_user.xhp\n"
"par_id3155366\n"
"help.text"
-msgid "Choose <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/01130100.xhp\" name=\"Load/Save - VBA Properties\"><emph>Load/Save - VBA Properties</emph></link> to set the VBA macro handling of $[officename]."
+msgid "Choose <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/01130100.xhp\"><emph>Load/Save - VBA Properties</emph></link> to set the VBA macro handling of $[officename]."
msgstr ""
#. DhrJv
@@ -20618,14 +20618,14 @@ msgctxt ""
msgid "<bookmark_value>documents; contents as lists</bookmark_value><bookmark_value>Navigator; contents as lists</bookmark_value>"
msgstr "<bookmark_value>documents; continguts en forma de llistes</bookmark_value><bookmark_value>Navegador; continguts en forma de llistes</bookmark_value>"
-#. QfFKJ
+#. CHGXj
#: navigator.xhp
msgctxt ""
"navigator.xhp\n"
"hd_id3147008\n"
"help.text"
-msgid "<variable id=\"navigator\"><link href=\"text/shared/guide/navigator.xhp\" name=\"Navigator for Document Overview\">Navigator for Document Overview</link></variable>"
-msgstr "<variable id=\"navigator\"><link href=\"text/shared/guide/navigator.xhp\" name=\"Navegador per a la visió general de documents\">Navegador per a la visió general de documents</link></variable>"
+msgid "<variable id=\"navigator\"><link href=\"text/shared/guide/navigator.xhp\">Navigator for Document Overview</link></variable>"
+msgstr "<variable id=\"navigator\"><link href=\"text/shared/guide/navigator.xhp\">Navegador per a la visió general de documents</link></variable>"
#. J58D6
#: navigator.xhp
@@ -20681,14 +20681,14 @@ msgctxt ""
msgid "<bookmark_value>Document Map, see Navigator</bookmark_value><bookmark_value>cursor;quickly moving to an object</bookmark_value><bookmark_value>objects;quickly moving to</bookmark_value><bookmark_value>navigating;in documents</bookmark_value><bookmark_value>Navigator;working with</bookmark_value>"
msgstr "<bookmark_value>mapa del document, vegeu Navegador</bookmark_value><bookmark_value>cursor;moviment ràpid a un objecte</bookmark_value><bookmark_value>objectes;moviment ràpid a</bookmark_value><bookmark_value>navegació;en documents</bookmark_value><bookmark_value>Navegador;treball amb</bookmark_value>"
-#. HAsVS
+#. E54vB
#: navigator_setcursor.xhp
msgctxt ""
"navigator_setcursor.xhp\n"
"hd_id3150774\n"
"help.text"
-msgid "<variable id=\"navigator_setcursor\"><link href=\"text/shared/guide/navigator_setcursor.xhp\" name=\"Navigation to Quickly Reach Objects\">Navigation to Quickly Reach Objects</link></variable>"
-msgstr "<variable id=\"navigator_setcursor\"><link href=\"text/shared/guide/navigator_setcursor.xhp\" name=\"Navegació per arribar als objectes ràpidament\">Navegació per arribar als objectes ràpidament</link></variable>"
+msgid "<variable id=\"navigator_setcursor\"><link href=\"text/shared/guide/navigator_setcursor.xhp\">Navigation to Quickly Reach Objects</link></variable>"
+msgstr "<variable id=\"navigator_setcursor\"><link href=\"text/shared/guide/navigator_setcursor.xhp\">Navegació per arribar als objectes ràpidament</link></variable>"
#. thtDw
#: navigator_setcursor.xhp
@@ -20753,14 +20753,14 @@ msgctxt ""
msgid "<bookmark_value>Help; navigation pane showing/hiding</bookmark_value><bookmark_value>hiding;navigation pane in Help window</bookmark_value><bookmark_value>indexes;showing/hiding Help index tab</bookmark_value>"
msgstr "<bookmark_value>Ajuda; mostrar/amagar la subfinestra de navegació</bookmark_value><bookmark_value>amagar;subfinestra de navegació a la finestra de l'Ajuda</bookmark_value><bookmark_value>índexs;mostrar/amagar la pestanya de l'índex de l'Ajuda</bookmark_value>"
-#. G8d6a
+#. vU3di
#: navpane_on.xhp
msgctxt ""
"navpane_on.xhp\n"
"hd_id3150178\n"
"help.text"
-msgid "<variable id=\"navpane_on\"><link href=\"text/shared/guide/navpane_on.xhp\" name=\"Showing Navigation Pane of the Help\">Showing Navigation Pane of the Help</link></variable>"
-msgstr "<variable id=\"navpane_on\"><link href=\"text/shared/guide/navpane_on.xhp\" name=\"Visualització de la subfinestra de navegació de l'Ajuda\">Visualització de la subfinestra de navegació de l'Ajuda</link></variable>"
+msgid "<variable id=\"navpane_on\"><link href=\"text/shared/guide/navpane_on.xhp\">Showing Navigation Pane of the Help</link></variable>"
+msgstr "<variable id=\"navpane_on\"><link href=\"text/shared/guide/navpane_on.xhp\">Visualització de la subfinestra de navegació de l'Ajuda</link></variable>"
#. 5toQe
#: navpane_on.xhp
@@ -20807,14 +20807,14 @@ msgctxt ""
msgid "<bookmark_value>numbering; turning off</bookmark_value><bookmark_value>bullets; turning off</bookmark_value><bookmark_value>removing, see also deleting</bookmark_value><bookmark_value>removing;bullets and numbering</bookmark_value><bookmark_value>keyboard;removing numbering</bookmark_value>"
msgstr ""
-#. T3U8R
+#. ikF9y
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"hd_id3154186\n"
"help.text"
-msgid "<variable id=\"numbering_stop\"><link href=\"text/shared/guide/numbering_stop.xhp\" name=\"Turning off Bullets and Numbering for Individual Paragraphs\">Turning off Bullets and Numbering for Individual Paragraphs</link></variable>"
-msgstr "<variable id=\"numbering_stop\"><link href=\"text/shared/guide/numbering_stop.xhp\" name=\"Desactivació de pics i numeració per a paràgrafs individuals\">Desactivació de pics i numeració per a paràgrafs individuals</link></variable>"
+msgid "<variable id=\"numbering_stop\"><link href=\"text/shared/guide/numbering_stop.xhp\">Turning off Bullets and Numbering for Individual Paragraphs</link></variable>"
+msgstr "<variable id=\"numbering_stop\"><link href=\"text/shared/guide/numbering_stop.xhp\">Desactivació de pics i numeració per a paràgrafs individuals</link></variable>"
#. 6GkqP
#: numbering_stop.xhp
@@ -20924,14 +20924,14 @@ msgctxt ""
msgid "Press the <keycode>Enter</keycode> key in an empty numbered paragraph to stop the numbering."
msgstr ""
-#. TBFcZ
+#. fmodr
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3151043\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Format - Bullets/Numbering\">Format - Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Format - Pics i numeració\">Format - Pics i numeració</link>"
+msgid "<link href=\"text/shared/01/06050000.xhp\">Format - Bullets and Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\">Format - Pics i numeració</link>"
#. 2pgjC
#: openpgp.xhp
@@ -20951,13 +20951,13 @@ msgctxt ""
msgid "<bookmark_value>OpenPGP;document encryption</bookmark_value> <bookmark_value>file encryption;OpenPGP</bookmark_value> <bookmark_value>public key;file encryption</bookmark_value> <bookmark_value>private key;file encryption</bookmark_value> <bookmark_value>file encryption;symmetric keys</bookmark_value>"
msgstr "<bookmark_value>OpenPGP;xifratge de documents</bookmark_value><bookmark_value>xifratge de fitxers;OpenPGP</bookmark_value><bookmark_value>clau pública;xifratge de fitxers</bookmark_value><bookmark_value>clau privada;xifratge de fitxers</bookmark_value><bookmark_value>xifratge de fitxers;claus simètriques</bookmark_value>"
-#. 3JoL7
+#. pXisx
#: openpgp.xhp
msgctxt ""
"openpgp.xhp\n"
"hd_id131543693200115\n"
"help.text"
-msgid "<variable id=\"openpgph1\"><link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp\">Encrypting Documents with OpenPGP</link></variable>"
+msgid "<variable id=\"openpgph1\"><link href=\"text/shared/guide/openpgp.xhp\">Encrypting Documents with OpenPGP</link></variable>"
msgstr ""
#. pDG6n
@@ -21266,13 +21266,13 @@ msgctxt ""
msgid "With document OpenPGP encryption, you define the set of users that can decrypt the document and you don’t need to send passwords through channels which security is unknown. Besides, the OpenPGP application manages the key chain of public keys more efficiently."
msgstr ""
-#. uvff4
+#. nMjBQ
#: openpgp.xhp
msgctxt ""
"openpgp.xhp\n"
"par_id51543697316590\n"
"help.text"
-msgid "<link href=\"https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP\" name=\"Wikipedia on OpenPGP\">Wikipedia on OpenPGP</link>"
+msgid "<link href=\"https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP\">Wikipedia on OpenPGP</link>"
msgstr ""
#. 7a92f
@@ -21293,14 +21293,14 @@ msgctxt ""
msgid "<bookmark_value>page formats; maximizing</bookmark_value><bookmark_value>formats; maximizing page formats</bookmark_value><bookmark_value>printers; maximum page formats</bookmark_value>"
msgstr "<bookmark_value>formats de pàgina; maximització</bookmark_value><bookmark_value>formats; maximització de formats de pàgina</bookmark_value><bookmark_value>impressores; formats de pàgina màxims</bookmark_value>"
-#. cWjtm
+#. gNxAC
#: pageformat_max.xhp
msgctxt ""
"pageformat_max.xhp\n"
"hd_id3149180\n"
"help.text"
-msgid "<variable id=\"pageformat_max\"><link href=\"text/shared/guide/pageformat_max.xhp\" name=\"Selecting the Maximum Printable Area on a Page\">Selecting the Maximum Printable Area on a Page</link></variable>"
-msgstr "<variable id=\"pageformat_max\"><link href=\"text/shared/guide/pageformat_max.xhp\" name=\"Selecció de la màxima àrea imprimible en una pàgina\">Selecció de la màxima àrea imprimible en una pàgina</link></variable>"
+msgid "<variable id=\"pageformat_max\"><link href=\"text/shared/guide/pageformat_max.xhp\">Selecting the Maximum Printable Area on a Page</link></variable>"
+msgstr "<variable id=\"pageformat_max\"><link href=\"text/shared/guide/pageformat_max.xhp\">Selecció de la màxima àrea imprimible en una pàgina</link></variable>"
#. jaYeM
#: pageformat_max.xhp
@@ -21365,14 +21365,14 @@ msgctxt ""
msgid "Click <emph>OK</emph> to close the dialog."
msgstr "Feu clic a <emph>D'acord</emph> per tancar el diàleg."
-#. GWNaf
+#. tMJ96
#: pageformat_max.xhp
msgctxt ""
"pageformat_max.xhp\n"
"par_id3155388\n"
"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Printing\">Printing</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Impressió\">Impressió</link>"
+msgid "<link href=\"text/shared/01/01130000.xhp\">Printing</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\">Impressió</link>"
#. mgsxE
#: paintbrush.xhp
@@ -21680,13 +21680,13 @@ msgctxt ""
msgid "<bookmark_value>colors;loading lists</bookmark_value><bookmark_value>gradients;loading lists</bookmark_value><bookmark_value>hatching;loading lists</bookmark_value><bookmark_value>loading;colors/gradients/hatchings</bookmark_value>"
msgstr ""
-#. K56V8
+#. khdnE
#: palette_files.xhp
msgctxt ""
"palette_files.xhp\n"
"hd_id3154510\n"
"help.text"
-msgid "<variable id=\"palette_files\"><link href=\"text/shared/guide/palette_files.xhp\" name=\"Loading Color, Gradient, and Hatching palettes\">Loading Color, Gradient, and Hatching Palettes</link></variable>"
+msgid "<variable id=\"palette_files\"><link href=\"text/shared/guide/palette_files.xhp\">Loading Color, Gradient, and Hatching Palettes</link></variable>"
msgstr ""
#. wCTT3
@@ -21725,13 +21725,13 @@ msgctxt ""
msgid "If you have a custom palette available as an extension, use the Extension Manager to load the palette in %PRODUCTNAME:"
msgstr ""
-#. E5GkG
+#. 8jtnt
#: palette_files.xhp
msgctxt ""
"palette_files.xhp\n"
"par_id31653832012564\n"
"help.text"
-msgid "Open the <link href=\"text/shared/01/packagemanager.xhp\" name=\"Extension Manager\">Extension Manager</link>."
+msgid "Open the <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>."
msgstr ""
#. UMGbj
@@ -21878,22 +21878,22 @@ msgctxt ""
msgid "To load a gradient and hatching palette:"
msgstr ""
-#. tEhw5
+#. JKB6A
#: palette_files.xhp
msgctxt ""
"palette_files.xhp\n"
"par_id961653834430135\n"
"help.text"
-msgid "<link href=\"https://extensions.libreoffice.org/\" name=\"Extensions website\">Extensions Website</link>."
+msgid "<link href=\"https://extensions.libreoffice.org/\">Extensions Website</link>."
msgstr ""
-#. 6drbu
+#. FErGV
#: palette_files.xhp
msgctxt ""
"palette_files.xhp\n"
"par_id3155437\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Format - Area\">Format - Area</link>"
+msgid "<link href=\"text/shared/01/05210000.xhp\">Format - Area</link>"
msgstr ""
#. LFKkc
@@ -22076,14 +22076,14 @@ msgctxt ""
msgid "<bookmark_value>printing; black and white</bookmark_value> <bookmark_value>black and white printing</bookmark_value> <bookmark_value>colors; not printing</bookmark_value> <bookmark_value>text; printing in black</bookmark_value>"
msgstr "<bookmark_value>impressió; blanc i negre</bookmark_value><bookmark_value>impressió en blanc i negre</bookmark_value><bookmark_value>colors; impressió sense</bookmark_value><bookmark_value>text; impressió en negre</bookmark_value>"
-#. 6CdAN
+#. SVSbG
#: print_blackwhite.xhp
msgctxt ""
"print_blackwhite.xhp\n"
"hd_id3150125\n"
"help.text"
-msgid "<variable id=\"print_blackwhite\"><link href=\"text/shared/guide/print_blackwhite.xhp\" name=\"Printing in Black and White\">Printing in Black and White</link></variable>"
-msgstr "<variable id=\"print_blackwhite\"><link href=\"text/shared/guide/print_blackwhite.xhp\" name=\"Impressió en blanc i negre\">Impressió en blanc i negre</link></variable>"
+msgid "<variable id=\"print_blackwhite\"><link href=\"text/shared/guide/print_blackwhite.xhp\">Printing in Black and White</link></variable>"
+msgstr "<variable id=\"print_blackwhite\"><link href=\"text/shared/guide/print_blackwhite.xhp\">Impressió en blanc i negre</link></variable>"
#. uAc5B
#: print_blackwhite.xhp
@@ -22292,22 +22292,22 @@ msgctxt ""
msgid "Choose <emph>Print text in black</emph> and click <emph>Print</emph>."
msgstr "Trieu <emph>Imprimeix text en negre</emph> i feu clic a <emph>Imprimeix</emph>."
-#. F8xN2
+#. 8QE4C
#: print_blackwhite.xhp
msgctxt ""
"print_blackwhite.xhp\n"
"par_id3153726\n"
"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Printing dialogs\">Printing dialogs</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Impressió de diàlegs\">Impressió de diàlegs</link>"
+msgid "<link href=\"text/shared/01/01130000.xhp\">Printing dialogs</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\">Impressió de diàlegs</link>"
-#. LWFno
+#. JzbcP
#: print_blackwhite.xhp
msgctxt ""
"print_blackwhite.xhp\n"
"par_id3154146\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01000000.xhp\" name=\"Tools - Options dialog\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> dialog</link>"
+msgid "<link href=\"text/shared/optionen/01000000.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> dialog</link>"
msgstr ""
#. dSas5
@@ -22445,13 +22445,13 @@ msgctxt ""
msgid "<bookmark_value>protecting; contents</bookmark_value> <bookmark_value>protected contents</bookmark_value> <bookmark_value>contents protection</bookmark_value> <bookmark_value>encryption of contents</bookmark_value> <bookmark_value>passwords for protecting contents</bookmark_value> <bookmark_value>security;protecting contents</bookmark_value> <bookmark_value>form controls; protecting</bookmark_value> <bookmark_value>draw objects;protecting</bookmark_value> <bookmark_value>OLE objects;protecting</bookmark_value> <bookmark_value>graphics;protecting</bookmark_value> <bookmark_value>frames;protecting</bookmark_value>"
msgstr ""
-#. gpCCS
+#. ors5t
#: protection.xhp
msgctxt ""
"protection.xhp\n"
"hd_id3155364\n"
"help.text"
-msgid "<variable id=\"protection\"><link href=\"text/shared/guide/protection.xhp\" name=\"Protecting Contents in %PRODUCTNAME\">Protecting Contents in <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
+msgid "<variable id=\"protection\"><link href=\"text/shared/guide/protection.xhp\">Protecting Contents in <item type=\"productname\">%PRODUCTNAME</item></link></variable>"
msgstr ""
#. srHbB
@@ -22472,14 +22472,14 @@ msgctxt ""
msgid "Protecting Documents With Passwords When Saving"
msgstr ""
-#. 74CYA
+#. 4wCBL
#: protection.xhp
msgctxt ""
"protection.xhp\n"
"par_id3150775\n"
"help.text"
-msgid "All documents that are saved in <link href=\"text/shared/00/00000021.xhp\" name=\"OpenDocument format\">OpenDocument format</link> can be saved with a password. Documents that are saved with a password cannot be opened without the password. The content is secured so that it cannot be read with an external editor. This applies to content, graphics and OLE objects."
-msgstr "Tots els documents que es guarden en el <link href=\"text/shared/00/00000021.xhp\" name=\"format OpenDocument\">format OpenDocument</link> es poden guardar amb una contrasenya. Els documents que es guarden amb una contrasenya no es poden obrir sense la contrasenya. Es protegeix el contingut perquè no es puga llegir amb un editor extern. S'aplica al contingut, als gràfics i als objectes OLE."
+msgid "All documents that are saved in <link href=\"text/shared/00/00000021.xhp\">OpenDocument format</link> can be saved with a password. Documents that are saved with a password cannot be opened without the password. The content is secured so that it cannot be read with an external editor. This applies to content, graphics and OLE objects."
+msgstr "Tots els documents que es guarden en el <link href=\"text/shared/00/00000021.xhp\">format OpenDocument</link> es poden guardar amb una contrasenya. Els documents que es guarden amb una contrasenya no es poden obrir sense la contrasenya. Es protegeix el contingut perquè no es puga llegir amb un editor extern. S'aplica al contingut, als gràfics i als objectes OLE."
#. i9B3Z
#: protection.xhp
@@ -22517,13 +22517,13 @@ msgctxt ""
msgid "Open the document, entering the correct password. Choose <emph>File - Save As</emph> and clear the <emph>Save with password</emph> check box."
msgstr "Obriu el document; introduïu la contrasenya correcta. Trieu <emph>Fitxer ▸ Anomena i guarda</emph> i desactiveu la casella de selecció <emph>Guarda amb contrasenya</emph>."
-#. mqKud
+#. MwB7s
#: protection.xhp
msgctxt ""
"protection.xhp\n"
"par_id761632164002322\n"
"help.text"
-msgid "It is possible to use OpenPGP to define private and public keys to be used to encrypt %PRODUCTNAME documents. Read <link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp_link\">Encrypting Documents with OpenPGP</link> to learn more on how to set up OpenPGP encryption keys."
+msgid "It is possible to use OpenPGP to define private and public keys to be used to encrypt %PRODUCTNAME documents. Read <link href=\"text/shared/guide/openpgp.xhp\">Encrypting Documents with OpenPGP</link> to learn more on how to set up OpenPGP encryption keys."
msgstr ""
#. HfUCF
@@ -22706,13 +22706,13 @@ msgctxt ""
msgid "<bookmark_value>QR code;barcode</bookmark_value>"
msgstr ""
-#. 82bgJ
+#. 8FGFU
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"hd_id461566315781439\n"
"help.text"
-msgid "<link href=\"text/shared/guide/qrcode.xhp\" name=\"QR and Barcode\">QR and Barcode</link>"
+msgid "<link href=\"text/shared/guide/qrcode.xhp\">QR and Barcode</link>"
msgstr ""
#. ztYka
@@ -22877,13 +22877,13 @@ msgctxt ""
msgid "<bookmark_value>spreadsheet; redacting contents</bookmark_value> <bookmark_value>presentations; redacting contents</bookmark_value> <bookmark_value>text documents; redacting contents</bookmark_value> <bookmark_value>redaction</bookmark_value>"
msgstr ""
-#. vYCGW
+#. iLC7P
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"hd_id171562795247717\n"
"help.text"
-msgid "<variable id=\"redaction_h1\"><link href=\"text/shared/guide/redaction.xhp\" name=\"redaction_link\">Redaction</link></variable>"
+msgid "<variable id=\"redaction_h1\"><link href=\"text/shared/guide/redaction.xhp\">Redaction</link></variable>"
msgstr ""
#. 4DfDB
@@ -23084,14 +23084,14 @@ msgctxt ""
msgid "<bookmark_value>marking changes</bookmark_value> <bookmark_value>highlighting changes</bookmark_value> <bookmark_value>changes; review function</bookmark_value> <bookmark_value>review function; recording changes example</bookmark_value> <bookmark_value>Track Changes, see review function</bookmark_value>"
msgstr "<bookmark_value>marcatge de canvis</bookmark_value><bookmark_value>realçament de canvis</bookmark_value><bookmark_value>canvis; funció de revisió</bookmark_value> <bookmark_value>funció de revisió; exemple de registre de canvis</bookmark_value> <bookmark_value>Seguiment de canvis, vegeu funció de revisió</bookmark_value>"
-#. T6EXN
+#. UWUn8
#: redlining.xhp
msgctxt ""
"redlining.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<variable id=\"redlining\"><link href=\"text/shared/guide/redlining.xhp\" name=\"Recording and Displaying Changes\">Recording and Displaying Changes</link></variable>"
-msgstr "<variable id=\"redlining\"><link href=\"text/shared/guide/redlining.xhp\" name=\"Registre i visualització de canvis\">Registre i visualització de canvis</link></variable>"
+msgid "<variable id=\"redlining\"><link href=\"text/shared/guide/redlining.xhp\">Recording and Displaying Changes</link></variable>"
+msgstr "<variable id=\"redlining\"><link href=\"text/shared/guide/redlining.xhp\">Registre i visualització de canvis</link></variable>"
#. zuywD
#: redlining.xhp
@@ -23165,14 +23165,14 @@ msgctxt ""
msgid "<bookmark_value>changes; accepting or rejecting</bookmark_value> <bookmark_value>review function;accepting or rejecting changes</bookmark_value>"
msgstr ""
-#. FTaFc
+#. wNAkX
#: redlining_accept.xhp
msgctxt ""
"redlining_accept.xhp\n"
"hd_id3150247\n"
"help.text"
-msgid "<variable id=\"redlining_accept\"><link href=\"text/shared/guide/redlining_accept.xhp\" name=\"Accepting or Rejecting Changes\">Accepting or Rejecting Changes</link></variable>"
-msgstr "<variable id=\"redlining_accept\"><link href=\"text/shared/guide/redlining_accept.xhp\" name=\"Acceptació o rebuig de canvis\">Acceptació o rebuig de canvis</link></variable>"
+msgid "<variable id=\"redlining_accept\"><link href=\"text/shared/guide/redlining_accept.xhp\">Accepting or Rejecting Changes</link></variable>"
+msgstr "<variable id=\"redlining_accept\"><link href=\"text/shared/guide/redlining_accept.xhp\">Acceptació o rebuig de canvis</link></variable>"
#. E3Aos
#: redlining_accept.xhp
@@ -23201,13 +23201,13 @@ msgctxt ""
msgid "When you edit a document in which others have made changes, you can accept or reject the changes individually or all together."
msgstr "Quan editeu un document en què altres persones han fet canvis, podeu acceptar els canvis o rebutjar-los de manera individual, o bé tots alhora."
-#. 5zm2G
+#. nzi2M
#: redlining_accept.xhp
msgctxt ""
"redlining_accept.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "If you have put multiple copies of the document in circulation, first merge these into one document (see <link href=\"text/shared/guide/redlining_docmerge.xhp\" name=\"redlining_docmerge_link\">Merging Versions</link>)."
+msgid "If you have put multiple copies of the document in circulation, first merge these into one document (see <link href=\"text/shared/guide/redlining_docmerge.xhp\">Merging Versions</link>)."
msgstr ""
#. Rk8jv
@@ -23273,14 +23273,14 @@ msgctxt ""
msgid "<bookmark_value>documents; comparing</bookmark_value><bookmark_value>comparisons;document versions</bookmark_value><bookmark_value>versions; comparing documents</bookmark_value><bookmark_value>changes;comparing to original</bookmark_value><bookmark_value>review function; comparing documents</bookmark_value>"
msgstr "<bookmark_value>documents; comparació</bookmark_value><bookmark_value>comparacions;versions de documents</bookmark_value><bookmark_value>versions; comparació de documents</bookmark_value><bookmark_value>canvis;comparació amb l'original</bookmark_value><bookmark_value>funció de revisió; comparació de documents</bookmark_value>"
-#. F6aS9
+#. KjBGj
#: redlining_doccompare.xhp
msgctxt ""
"redlining_doccompare.xhp\n"
"hd_id3154788\n"
"help.text"
-msgid "<variable id=\"redlining_doccompare\"><link href=\"text/shared/guide/redlining_doccompare.xhp\" name=\"Comparing Versions of a Document\">Comparing Versions of a Document</link></variable>"
-msgstr "<variable id=\"redlining_doccompare\"><link href=\"text/shared/guide/redlining_doccompare.xhp\" name=\"Comparació de versions d'un document\">Comparació de versions d'un document</link></variable>"
+msgid "<variable id=\"redlining_doccompare\"><link href=\"text/shared/guide/redlining_doccompare.xhp\">Comparing Versions of a Document</link></variable>"
+msgstr "<variable id=\"redlining_doccompare\"><link href=\"text/shared/guide/redlining_doccompare.xhp\">Comparació de versions d'un document</link></variable>"
#. S6MBn
#: redlining_doccompare.xhp
@@ -23381,14 +23381,14 @@ msgctxt ""
msgid "<bookmark_value>documents; merging</bookmark_value><bookmark_value>merging; documents</bookmark_value><bookmark_value>versions;merging document versions</bookmark_value>"
msgstr "<bookmark_value>documents; fusió</bookmark_value><bookmark_value>fusió; documents</bookmark_value><bookmark_value>versions;fusió de versions de documents</bookmark_value>"
-#. DvSSZ
+#. CDFte
#: redlining_docmerge.xhp
msgctxt ""
"redlining_docmerge.xhp\n"
"hd_id3154230\n"
"help.text"
-msgid "<variable id=\"redlining_docmerge\"><link href=\"text/shared/guide/redlining_docmerge.xhp\" name=\"Merging Versions\">Merging Versions</link></variable>"
-msgstr "<variable id=\"redlining_docmerge\"><link href=\"text/shared/guide/redlining_docmerge.xhp\" name=\"Fusió de versions\">Fusió de versions</link></variable>"
+msgid "<variable id=\"redlining_docmerge\"><link href=\"text/shared/guide/redlining_docmerge.xhp\">Merging Versions</link></variable>"
+msgstr "<variable id=\"redlining_docmerge\"><link href=\"text/shared/guide/redlining_docmerge.xhp\">Fusió de versions</link></variable>"
#. FXCFk
#: redlining_docmerge.xhp
@@ -23471,14 +23471,14 @@ msgctxt ""
msgid "<bookmark_value>changes; recording</bookmark_value> <bookmark_value>recording; changes</bookmark_value> <bookmark_value>comments; on changes</bookmark_value> <bookmark_value>review function;tracking changes</bookmark_value>"
msgstr "<bookmark_value>canvis; registre</bookmark_value><bookmark_value>registre; canvis</bookmark_value><bookmark_value>comentaris; sobre canvis</bookmark_value><bookmark_value>funció de revisió;seguiment de canvis</bookmark_value>"
-#. DgEE4
+#. qQEy7
#: redlining_enter.xhp
msgctxt ""
"redlining_enter.xhp\n"
"hd_id3155364\n"
"help.text"
-msgid "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Recording Changes\">Recording Changes</link></variable>"
-msgstr "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Registre de canvis\">Registre de canvis</link></variable>"
+msgid "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\">Recording Changes</link></variable>"
+msgstr "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\">Registre de canvis</link></variable>"
#. VBpWf
#: redlining_enter.xhp
@@ -23498,13 +23498,13 @@ msgctxt ""
msgid "Not all changes are recorded. For example, the changing of a tab stop from align left to align right is not recorded. However, all usual changes made by a proofreader are recorded, such as additions, deletions, text alterations, and usual formatting."
msgstr "No es registren tots els canvis. Per exemple, el canvi d'alinear un tabulador de la dreta a l'esquerra no es registra. Tanmateix, es registren tots els canvis habituals que fa un revisor, com ara les addicions, les supressions, les alteracions de text i la formatació habitual."
-#. iVqrF
+#. BJHuE
#: redlining_enter.xhp
msgctxt ""
"redlining_enter.xhp\n"
"par_id3149095\n"
"help.text"
-msgid "To start recording changes, open the document to be edited and choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes\"><emph>Edit - Track Changes</emph></link> and then choose <emph>Record</emph>."
+msgid "To start recording changes, open the document to be edited and choose <link href=\"text/shared/01/02230000.xhp\"><emph>Edit - Track Changes</emph></link> and then choose <emph>Record</emph>."
msgstr ""
#. mAwJ3
@@ -23534,13 +23534,13 @@ msgctxt ""
msgid "Changes in a spreadsheet document are highlighted by a border around the cells; when you point to the cell you can see more detailed information on this change in the Help Tip."
msgstr "Els canvis que s'han fet en un document de full de càlcul es realcen mitjançant una vora al voltant de les cel·les; quan poseu el cursor sobre la cel·la, es mostra informació més detallada sobre el canvi en qüestió a l'indicador d'ajuda."
-#. LAx8Z
+#. oGG6d
#: redlining_enter.xhp
msgctxt ""
"redlining_enter.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "You can enter a comment on each recorded change by placing the cursor in the area of the change and then choosing <emph>Edit - Track Changes - Comment</emph>. In addition to Extended Tips, the comment is also displayed in the list in the <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Manage Changes</emph></link> dialog."
+msgid "You can enter a comment on each recorded change by placing the cursor in the area of the change and then choosing <emph>Edit - Track Changes - Comment</emph>. In addition to Extended Tips, the comment is also displayed in the list in the <link href=\"text/shared/01/02230400.xhp\"><emph>Manage Changes</emph></link> dialog."
msgstr ""
#. WiJX9
@@ -23561,13 +23561,13 @@ msgctxt ""
msgid "In a text document, you can highlight all lines that you have changed with an additional colored marking. This can be in the form of a red line in the margin, for example."
msgstr "En un document de text, podeu realçar totes les línies que heu modificat amb una marca de color addicional, com ara una línia vermella al marge."
-#. ZD2tt
+#. ufZR5
#: redlining_enter.xhp
msgctxt ""
"redlining_enter.xhp\n"
"par_id3147530\n"
"help.text"
-msgid "To change the settings for tracking changes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph> - <link href=\"text/shared/optionen/01040700.xhp\" name=\"Changes\"><emph>Changes</emph></link> or on the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060600.xhp\" name=\"Changes\"><emph>Changes</emph></link>."
+msgid "To change the settings for tracking changes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph> - <link href=\"text/shared/optionen/01040700.xhp\"><emph>Changes</emph></link> or on the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060600.xhp\"><emph>Changes</emph></link>."
msgstr ""
#. PFdSQ
@@ -23588,14 +23588,14 @@ msgctxt ""
msgid "<bookmark_value>changes; navigating</bookmark_value> <bookmark_value>review function; navigating changes</bookmark_value>"
msgstr "<bookmark_value>canvis; navagació</bookmark_value><bookmark_value>funció de revisió; navegació pels canvis</bookmark_value>"
-#. Badtk
+#. W3h8N
#: redlining_navigation.xhp
msgctxt ""
"redlining_navigation.xhp\n"
"par_id3153880\n"
"help.text"
-msgid "<variable id=\"redlining_navigation\"><link href=\"text/shared/guide/redlining_navigation.xhp\" name=\"Navigating Changes\">Navigating Changes</link></variable>"
-msgstr "<variable id=\"redlining_navigation\"><link href=\"text/shared/guide/redlining_navigation.xhp\" name=\"Navigating Changes\">Navegació pels canvis</link></variable>"
+msgid "<variable id=\"redlining_navigation\"><link href=\"text/shared/guide/redlining_navigation.xhp\">Navigating Changes</link></variable>"
+msgstr "<variable id=\"redlining_navigation\"><link href=\"text/shared/guide/redlining_navigation.xhp\">Navegació pels canvis</link></variable>"
#. NZ7Xk
#: redlining_navigation.xhp
@@ -23660,13 +23660,13 @@ msgctxt ""
msgid "<bookmark_value>changes; protecting</bookmark_value><bookmark_value>protecting; recorded changes</bookmark_value><bookmark_value>records; protecting</bookmark_value><bookmark_value>review function;protecting records</bookmark_value>"
msgstr "<bookmark_value>canvis; protecció</bookmark_value><bookmark_value>protecció; canvis registrats</bookmark_value><bookmark_value>registres; protecció</bookmark_value><bookmark_value>funció de revisió;protecció de registres</bookmark_value>"
-#. Tj23h
+#. vxdFk
#: redlining_protect.xhp
msgctxt ""
"redlining_protect.xhp\n"
"hd_id3159201\n"
"help.text"
-msgid "<variable id=\"redlining_protect\"><link href=\"text/shared/guide/redlining_protect.xhp\" name=\"Protecting Changes\">Protecting Changes</link></variable>"
+msgid "<variable id=\"redlining_protect\"><link href=\"text/shared/guide/redlining_protect.xhp\">Protecting Changes</link></variable>"
msgstr ""
#. jVeUw
@@ -23687,14 +23687,14 @@ msgctxt ""
msgid "To protect the changes made in a document during editing, choose <emph>Edit - Track Changes - Protect</emph>. To turn off the function or to accept or reject changes it is necessary to enter the correct password first."
msgstr "Per a protegir els canvis que s'hagen fet a un document durant l'edició, trieu <emph>Edita ▸ Seguiment de canvis ▸ Protegeix</emph>. Per a desactivar la funció, o bé per a acceptar o rebutjar els canvis, cal que primer introduïu la contrasenya correcta."
-#. iJNzK
+#. 4yKHh
#: redlining_protect.xhp
msgctxt ""
"redlining_protect.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "Choose <emph>Protect</emph>. This opens the <link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\"><emph>Password</emph></link> dialog."
-msgstr "Trieu <emph>Protegeix</emph>. S'obrirà el diàleg <link href=\"text/shared/01/password_dlg.xhp\" name=\"Contrasenya\"><emph>Contrasenya</emph></link>."
+msgid "Choose <emph>Protect</emph>. This opens the <link href=\"text/shared/01/password_dlg.xhp\"><emph>Password</emph></link> dialog."
+msgstr "Trieu <emph>Protegeix</emph>. S'obrirà el diàleg <link href=\"text/shared/01/password_dlg.xhp\"><emph>Contrasenya</emph></link>."
#. BXNRy
#: redlining_protect.xhp
@@ -23723,23 +23723,23 @@ msgctxt ""
msgid "<bookmark_value>versions; of a document</bookmark_value><bookmark_value>documents; version management</bookmark_value><bookmark_value>version management</bookmark_value>"
msgstr "<bookmark_value>versions; d'un document</bookmark_value><bookmark_value>documents; gestió de versions</bookmark_value><bookmark_value>gestió de versions</bookmark_value>"
-#. FZbFZ
+#. SLb69
#: redlining_versions.xhp
msgctxt ""
"redlining_versions.xhp\n"
"hd_id3154230\n"
"help.text"
-msgid "<variable id=\"redlining_versions\"><link href=\"text/shared/guide/redlining_versions.xhp\" name=\"Version Management\">Version Management</link></variable>"
-msgstr "<variable id=\"redlining_versions\"><link href=\"text/shared/guide/redlining_versions.xhp\" name=\"Gestió de versions\">Gestió de versions</link></variable>"
+msgid "<variable id=\"redlining_versions\"><link href=\"text/shared/guide/redlining_versions.xhp\">Version Management</link></variable>"
+msgstr "<variable id=\"redlining_versions\"><link href=\"text/shared/guide/redlining_versions.xhp\">Gestió de versions</link></variable>"
-#. GahDN
+#. 8uiER
#: redlining_versions.xhp
msgctxt ""
"redlining_versions.xhp\n"
"par_id3153394\n"
"help.text"
-msgid "The <emph>File</emph> menu contains a <link href=\"text/shared/01/01190000.xhp\" name=\"Versions\"><emph>Versions</emph></link> command that enables you to save multiple versions of a document in the same file."
-msgstr "El menú <emph>Fitxer</emph> conté l'orde <link href=\"text/shared/01/01190000.xhp\" name=\"Versions\"><emph>Versions</emph></link>, que vos permet guardar diverses versions d'un document al mateix fitxer."
+msgid "The <emph>File</emph> menu contains a <link href=\"text/shared/01/01190000.xhp\"><emph>Versions</emph></link> command that enables you to save multiple versions of a document in the same file."
+msgstr "El menú <emph>Fitxer</emph> conté l'orde <link href=\"text/shared/01/01190000.xhp\"><emph>Versions</emph></link>, que vos permet guardar diverses versions d'un document al mateix fitxer."
#. PMQ9W
#: redlining_versions.xhp
@@ -23777,14 +23777,14 @@ msgctxt ""
msgid "<bookmark_value>corner roundings</bookmark_value><bookmark_value>rectangles with round corners</bookmark_value><bookmark_value>legends;rounding corners</bookmark_value><bookmark_value>round corners</bookmark_value><bookmark_value>customizing;round corners</bookmark_value>"
msgstr "<bookmark_value>arrodoniments de cantonades</bookmark_value><bookmark_value>rectangles amb cantonades arrodonides</bookmark_value><bookmark_value>llegendes;arrodoniment de cantonades</bookmark_value><bookmark_value>cantonades arrodonides</bookmark_value><bookmark_value>personalització;cantonades arrodonides</bookmark_value>"
-#. BZyrG
+#. 9kBVp
#: round_corner.xhp
msgctxt ""
"round_corner.xhp\n"
"hd_id3150040\n"
"help.text"
-msgid "<variable id=\"round_corner\"><link href=\"text/shared/guide/round_corner.xhp\" name=\"Creating Round Corners\">Creating Round Corners</link></variable>"
-msgstr "<variable id=\"round_corner\"><link href=\"text/shared/guide/round_corner.xhp\" name=\"Creació de cantonades arrodonides\">Creació de cantonades arrodonides</link></variable>"
+msgid "<variable id=\"round_corner\"><link href=\"text/shared/guide/round_corner.xhp\">Creating Round Corners</link></variable>"
+msgstr "<variable id=\"round_corner\"><link href=\"text/shared/guide/round_corner.xhp\">Creació de cantonades arrodonides</link></variable>"
#. 6cVNR
#: round_corner.xhp
@@ -23894,14 +23894,14 @@ msgctxt ""
msgid "Python"
msgstr "Python"
-#. VspZc
+#. LRteX
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN1091F\n"
"help.text"
-msgid "In addition, developers can use high-level languages, for example Java programming language, to control %PRODUCTNAME externally. The API reference is online at <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">api.libreoffice.org</link>."
-msgstr "Addicionalment, els desenvolupadors poden utilitzar llenguatges de programació d'alt nivell, com ara el llenguatge Java, per a controlar el %PRODUCTNAME externament. Trobareu la documentació de l'API en línia a <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">api.libreoffice.org</link>."
+msgid "In addition, developers can use high-level languages, for example Java programming language, to control %PRODUCTNAME externally. The API reference is online at <link href=\"https://api.libreoffice.org/\">api.libreoffice.org</link>."
+msgstr "Addicionalment, els desenvolupadors poden utilitzar llenguatges de programació d'alt nivell, com ara el llenguatge Java, per a controlar el %PRODUCTNAME externament. Trobareu la documentació de l'API en línia a <link href=\"https://api.libreoffice.org/\">api.libreoffice.org</link>."
#. MjqGu
#: scripting.xhp
@@ -24407,14 +24407,14 @@ msgctxt ""
msgid "<bookmark_value>protected spaces;inserting</bookmark_value><bookmark_value>non-breaking spaces;inserting</bookmark_value><bookmark_value>spaces; inserting protected spaces</bookmark_value><bookmark_value>soft hyphens;inserting</bookmark_value><bookmark_value>hyphens;inserting custom</bookmark_value><bookmark_value>conditional separators</bookmark_value><bookmark_value>separators; conditional</bookmark_value><bookmark_value>dashes</bookmark_value><bookmark_value>non-breaking hyphens</bookmark_value><bookmark_value>replacing;dashes</bookmark_value><bookmark_value>protected hyphens</bookmark_value><bookmark_value>exchanging, see also replacing</bookmark_value>"
msgstr "<bookmark_value>espais protegits;inserció</bookmark_value><bookmark_value>espais; inserció d'espais protegits</bookmark_value><bookmark_value>guionets;inserció personalitzada</bookmark_value><bookmark_value>separadors condicionals</bookmark_value><bookmark_value>separadors; condicionals</bookmark_value><bookmark_value>guions</bookmark_value><bookmark_value>guions no separables</bookmark_value><bookmark_value>reemplaçament;guions</bookmark_value><bookmark_value>guions protegits</bookmark_value><bookmark_value>intercanvi, vegeu també reemplaçament</bookmark_value>"
-#. D8DRF
+#. AbycE
#: space_hyphen.xhp
msgctxt ""
"space_hyphen.xhp\n"
"hd_id3155364\n"
"help.text"
-msgid "<variable id=\"space_hyphen\"><link href=\"text/shared/guide/space_hyphen.xhp\" name=\"Inserting Non-breaking Spaces, Hyphens and Soft Hyphens\">Inserting Non-breaking Spaces, Hyphens and Soft Hyphens</link></variable>"
-msgstr "<variable id=\"space_hyphen\"><link href=\"text/shared/guide/space_hyphen.xhp\" name=\"Inserció d'espais protegits, de guionets i de separadors condicionals\">Inserció d'espais protegits, de guionets i de separadors condicionals</link></variable>"
+msgid "<variable id=\"space_hyphen\"><link href=\"text/shared/guide/space_hyphen.xhp\">Inserting Non-breaking Spaces, Hyphens and Soft Hyphens</link></variable>"
+msgstr "<variable id=\"space_hyphen\"><link href=\"text/shared/guide/space_hyphen.xhp\">Inserció d'espais protegits, de guionets i de separadors condicionals</link></variable>"
#. SW2cA
#: space_hyphen.xhp
@@ -24470,23 +24470,23 @@ msgctxt ""
msgid "Replacing hyphens by dashes"
msgstr "Substitució de guionets per guions"
-#. zTjBe
+#. BE2Xv
#: space_hyphen.xhp
msgctxt ""
"space_hyphen.xhp\n"
"par_id3154749\n"
"help.text"
-msgid "In order to enter dashes, you can find under <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> the <emph>Replace dashes</emph> option. This option replaces one or two hyphens under certain conditions with an en-dash or an em-dash (see <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\">AutoCorrect Options</link>)."
-msgstr "Si voleu introduir guions més llargs, a <emph>Eines - Opcions de correcció automàtica</emph><emph> - Opcions</emph> trobareu l'opció <emph>Reemplaça els guions</emph>. Esta opció reemplaça un o dos signes de menys, en determinades condicions, per un guió curt o llarg (vegeu l'<link href=\"text/shared/01/06040100.xhp\" name=\"Ajuda del $[officename]\">Ajuda del $[officename]</link>)."
+msgid "In order to enter dashes, you can find under <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> the <emph>Replace dashes</emph> option. This option replaces one or two hyphens under certain conditions with an en-dash or an em-dash (see <link href=\"text/shared/01/06040100.xhp\">AutoCorrect Options</link>)."
+msgstr "Si voleu introduir guions més llargs, a <emph>Eines - Opcions de correcció automàtica</emph><emph> - Opcions</emph> trobareu l'opció <emph>Reemplaça els guions</emph>. Esta opció reemplaça un o dos signes de menys, en determinades condicions, per un guió curt o llarg (vegeu l'<link href=\"text/shared/01/06040100.xhp\">Ajuda del $[officename]</link>)."
-#. XBNDB
+#. mJPmE
#: space_hyphen.xhp
msgctxt ""
"space_hyphen.xhp\n"
"par_id3153561\n"
"help.text"
-msgid "For additional replacements see the replacements table under <emph>Tools - AutoCorrect - AutoCorrect Options</emph><emph>- </emph><link href=\"text/shared/01/06040200.xhp\" name=\"Replace\"><emph>Replace</emph></link>. Here you can, among other things, replace a shortcut automatically by a dash, even in another font."
-msgstr "Per fer més reemplaçaments, consulteu la taula de reemplaçaments a <emph>Eines - Opcions de correcció automàtica</emph><emph> - </emph><link href=\"text/shared/01/06040200.xhp\" name=\"Reemplaça\"><emph>Reemplaça</emph></link>. Ací podeu, entre altres coses, reemplaçar automàticament una drecera per un guió, fins i tot en un altre tipus de lletra."
+msgid "For additional replacements see the replacements table under <emph>Tools - AutoCorrect - AutoCorrect Options</emph><emph>- </emph><link href=\"text/shared/01/06040200.xhp\"><emph>Replace</emph></link>. Here you can, among other things, replace a shortcut automatically by a dash, even in another font."
+msgstr "Per fer més reemplaçaments, consulteu la taula de reemplaçaments a <emph>Eines - Opcions de correcció automàtica</emph><emph> - </emph><link href=\"text/shared/01/06040200.xhp\"><emph>Reemplaça</emph></link>. Ací podeu, entre altres coses, reemplaçar automàticament una drecera per un guió, fins i tot en un altre tipus de lletra."
#. q9kTq
#: space_hyphen.xhp
@@ -24506,14 +24506,14 @@ msgctxt ""
msgid "To support automatic hyphenation by entering a soft hyphen inside a word yourself, use the keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline><keycode>+minus</keycode> sign. The word is separated at this position when it is at the end of the line, even if automatic hyphenation for this paragraph is switched off."
msgstr ""
-#. hiwHr
+#. JFeAC
#: space_hyphen.xhp
msgctxt ""
"space_hyphen.xhp\n"
"par_id3151245\n"
"help.text"
-msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special characters\">Special characters</link>"
-msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Caràcters especials\">Caràcters especials</link>"
+msgid "<link href=\"text/shared/01/04100000.xhp\">Special characters</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\">Caràcters especials</link>"
#. tGqMr
#: spadmin.xhp
@@ -24533,14 +24533,14 @@ msgctxt ""
msgid "<bookmark_value>printers; adding, UNIX</bookmark_value><bookmark_value>default printer; UNIX</bookmark_value><bookmark_value>standard printer under UNIX</bookmark_value><bookmark_value>faxes; fax programs/fax printers under UNIX</bookmark_value><bookmark_value>printers; faxes under UNIX</bookmark_value>"
msgstr ""
-#. qtmRo
+#. CwAnA
#: spadmin.xhp
msgctxt ""
"spadmin.xhp\n"
"hd_id3147834\n"
"help.text"
-msgid "<variable id=\"spadmin\"><link href=\"text/shared/guide/spadmin.xhp\" name=\"Setting up Printer and Fax Under UNIX Based Platforms\">Setting up Printer and Fax Under UNIX Based Platforms</link></variable>"
-msgstr "<variable id=\"spadmin\"><link href=\"text/shared/guide/spadmin.xhp\" name=\"Configuració d'impressores i de faxos en plataformes basades en el UNIX\">Configuració d'impressores i de faxos en plataformes basades en el UNIX</link></variable>"
+msgid "<variable id=\"spadmin\"><link href=\"text/shared/guide/spadmin.xhp\">Setting up Printer and Fax Under UNIX Based Platforms</link></variable>"
+msgstr "<variable id=\"spadmin\"><link href=\"text/shared/guide/spadmin.xhp\">Configuració d'impressores i de faxos en plataformes basades en el UNIX</link></variable>"
#. 2LXKC
#: spadmin.xhp
@@ -24668,13 +24668,13 @@ msgctxt ""
msgid "<bookmark_value>modifying, see changing</bookmark_value><bookmark_value>changing, see also editing and replacing</bookmark_value><bookmark_value>default templates; changing</bookmark_value><bookmark_value>default templates; creating</bookmark_value><bookmark_value>defaults;documents</bookmark_value><bookmark_value>custom templates</bookmark_value><bookmark_value>updating; templates</bookmark_value><bookmark_value>editing;templates</bookmark_value><bookmark_value>templates;editing and saving</bookmark_value><bookmark_value>saving;templates</bookmark_value><bookmark_value>resetting;templates</bookmark_value>"
msgstr ""
-#. fZ8SR
+#. Egmoa
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\" name=\"Changing Default Templates\">Creating and Changing Default and Custom Templates</link></variable>"
+msgid "<variable id=\"standard_template\"><link href=\"text/shared/guide/standard_template.xhp\">Creating and Changing Default and Custom Templates</link></variable>"
msgstr ""
#. nWgSj
@@ -24911,23 +24911,23 @@ msgctxt ""
msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the <emph>User Paths</emph> directory specified for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>. It is often easier to save a document with <menuitem>File - Templates - Save As Template</menuitem>, because it automatically places the template in the appropriate directory."
msgstr ""
-#. 9uLRP
+#. jBM7H
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id271605485719890\n"
"help.text"
-msgid "The <link href=\"text/shared/guide/template_manager.xhp\" name=\"templatemanager\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+N</keycode> is the predefined shortcut key."
+msgid "The <link href=\"text/shared/guide/template_manager.xhp\">Template Manager</link> is the preferred method for working with templates. <menuitem>File - New - Templates</menuitem> and <menuitem>File - Templates - Manage Templates</menuitem> are equivalent for opening the <emph>Template Manager</emph>. <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+N</keycode> is the predefined shortcut key."
msgstr ""
-#. 6YAP3
+#. vZrE3
#: standard_template.xhp
msgctxt ""
"standard_template.xhp\n"
"par_id3147315\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110000.xhp\" name=\"Templates\">Templates</link>"
-msgstr "<link href=\"text/shared/01/01110000.xhp\" name=\"Plantilles\">Plantilles</link>"
+msgid "<link href=\"text/shared/01/01110000.xhp\">Templates</link>"
+msgstr "<link href=\"text/shared/01/01110000.xhp\">Plantilles</link>"
#. EJtPh
#: start_parameters.xhp
@@ -25334,13 +25334,13 @@ msgctxt ""
msgid "Starts in invisible mode."
msgstr "Inicia l'aplicació en mode invisible."
-#. KxF8C
+#. F9L9o
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"https://api.libreoffice.org\">API</link>."
msgstr ""
#. Rdt2A
@@ -25379,14 +25379,14 @@ msgctxt ""
msgid "Starts in \"headless mode\" which allows using the application without user interface."
msgstr "Inici en mode sense perifèrics, que permet utilitzar l'aplicació sense interfície d'usuari."
-#. eeqxp
+#. vCEcL
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156353\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Aquest mode especial es pot utilitzar quan l'aplicació es controla per clients externs mitjançant l'<link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"https://api.libreoffice.org\">API</link>."
+msgstr "Aquest mode especial es pot utilitzar quan l'aplicació es controla per clients externs mitjançant l'<link href=\"https://api.libreoffice.org\">API</link>."
#. pgHxs
#: start_parameters.xhp
@@ -25748,31 +25748,31 @@ msgctxt ""
msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName[:OutputFilterParams]] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr ""
-#. ir37U
+#. wBsd4
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id781554408625219\n"
"help.text"
-msgid "See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion."
+msgid "See the <link href=\"text/shared/guide/convertfilters.xhp\">list of document filters</link> for file conversion."
msgstr ""
-#. t8brg
+#. zxG8G
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id51634741869672\n"
"help.text"
-msgid "The list of <link href=\"text/shared/guide/lotusdbasediff.xhp\" name=\"lotusparams\">filter options for Lotus, dBase and Diff files</link>."
+msgid "The list of <link href=\"text/shared/guide/lotusdbasediff.xhp\">filter options for Lotus, dBase and Diff files</link>."
msgstr ""
-#. goKPf
+#. Whm8z
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id1001634741874640\n"
"help.text"
-msgid "The list of <link href=\"text/shared/guide/csv_params.xhp\" name=\"csvparams\">filter options for CSV files</link>."
+msgid "The list of <link href=\"text/shared/guide/csv_params.xhp\">filter options for CSV files</link>."
msgstr ""
#. EiUnD
@@ -26090,14 +26090,14 @@ msgctxt ""
msgid "<bookmark_value>tab stops; inserting and editing</bookmark_value><bookmark_value>paragraphs; tab stops</bookmark_value><bookmark_value>defaults;tab stops in text</bookmark_value><bookmark_value>editing; tab stops</bookmark_value><bookmark_value>inserting;tab stops</bookmark_value><bookmark_value>decimal tab stops</bookmark_value><bookmark_value>deleting;tab stops</bookmark_value><bookmark_value>moving;tab stops on ruler</bookmark_value><bookmark_value>rulers; default settings</bookmark_value><bookmark_value>rulers; measurement units</bookmark_value><bookmark_value>measurement units; changing on rulers</bookmark_value>"
msgstr "<bookmark_value>tabuladors; inserció i edició</bookmark_value><bookmark_value>paràgrafs; tabuladors</bookmark_value><bookmark_value>valors per defecte;tabuladors al text</bookmark_value><bookmark_value>edició; tabuladors</bookmark_value><bookmark_value>inserció;tabuladors</bookmark_value><bookmark_value>tabuladors decimals</bookmark_value><bookmark_value>supressió;tabuladors</bookmark_value><bookmark_value>moviment;tabuladors al regle</bookmark_value><bookmark_value>regles; configuració per defecte</bookmark_value><bookmark_value>regles; unitats de mesura</bookmark_value><bookmark_value>unitats de mesura; canvi als regles</bookmark_value>"
-#. w2CC6
+#. CGx2Q
#: tabs.xhp
msgctxt ""
"tabs.xhp\n"
"hd_id3144436\n"
"help.text"
-msgid "<variable id=\"tabs\"><link href=\"text/shared/guide/tabs.xhp\" name=\"Inserting and Editing Tab Stops\">Inserting and Editing Tab Stops</link></variable>"
-msgstr "<variable id=\"tabs\"><link href=\"text/shared/guide/tabs.xhp\" name=\"Inserció i edició de tabuladors\">Inserció i edició de tabuladors</link></variable>"
+msgid "<variable id=\"tabs\"><link href=\"text/shared/guide/tabs.xhp\">Inserting and Editing Tab Stops</link></variable>"
+msgstr "<variable id=\"tabs\"><link href=\"text/shared/guide/tabs.xhp\">Inserció i edició de tabuladors</link></variable>"
#. BUGMM
#: tabs.xhp
@@ -26261,14 +26261,14 @@ msgctxt ""
msgid "Setting centered tabs"
msgstr "Definició de tabuladors centrats"
-#. pqFFB
+#. myVDG
#: tabs.xhp
msgctxt ""
"tabs.xhp\n"
"par_id3154150\n"
"help.text"
-msgid "Double-click the ruler to open the <link href=\"text/shared/01/05030300.xhp\" name=\"Paragraph\"><emph>Paragraph</emph></link> dialog."
-msgstr "Feu doble clic al regle per mostrar el diàleg <link href=\"text/shared/01/05030300.xhp\" name=\"Paràgraf\"><emph>Paràgraf</emph></link>."
+msgid "Double-click the ruler to open the <link href=\"text/shared/01/05030300.xhp\"><emph>Paragraph</emph></link> dialog."
+msgstr "Feu doble clic al regle per mostrar el diàleg <link href=\"text/shared/01/05030300.xhp\"><emph>Paràgraf</emph></link>."
#. NKHUs
#: tabs.xhp
@@ -26360,32 +26360,32 @@ msgctxt ""
msgid "Changing the Defaults"
msgstr "Canvi de les opcions per defecte"
-#. b4UfL
+#. gfFWx
#: tabs.xhp
msgctxt ""
"tabs.xhp\n"
"par_id3151059\n"
"help.text"
-msgid "If you want to change the settings of your default tab stops, you will find further information under <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\" name=\"Text Document - General\">%PRODUCTNAME Writer - General</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - General\">%PRODUCTNAME Calc - General</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Drawing - General\">%PRODUCTNAME Draw - General</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\">%PRODUCTNAME Impress - General</link></caseinline><defaultinline>(module name) - General</defaultinline></switchinline> in the Options dialog box."
-msgstr "Si voleu canviar la configuració de les tabulacions per defecte, en trobareu més informació a <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\" name=\"Document de text - General\">%PRODUCTNAME Writer - General</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\" name=\"Full de càlcul - General\">%PRODUCTNAME Calc - General</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Dibuix - General\">%PRODUCTNAME Draw - General</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentació - General\">%PRODUCTNAME Impress - General</link></caseinline><defaultinline>(nom del mòdul) - General</defaultinline></switchinline> del quadre de diàleg Opcions."
+msgid "If you want to change the settings of your default tab stops, you will find further information under <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\">%PRODUCTNAME Writer - General</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\">%PRODUCTNAME Calc - General</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\">%PRODUCTNAME Draw - General</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\">%PRODUCTNAME Impress - General</link></caseinline><defaultinline>(module name) - General</defaultinline></switchinline> in the Options dialog box."
+msgstr "Si voleu canviar la configuració de les tabulacions per defecte, en trobareu més informació a <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\">%PRODUCTNAME Writer - General</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\">%PRODUCTNAME Calc - General</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\">%PRODUCTNAME Draw - General</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\">%PRODUCTNAME Impress - General</link></caseinline><defaultinline>(nom del mòdul) - General</defaultinline></switchinline> del quadre de diàleg Opcions."
-#. hA4kf
+#. 4EGB5
#: tabs.xhp
msgctxt ""
"tabs.xhp\n"
"par_id3146972\n"
"help.text"
-msgid "The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
+msgid "The <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
msgstr ""
-#. ojDwN
+#. pFXSN
#: tabs.xhp
msgctxt ""
"tabs.xhp\n"
"par_id3148429\n"
"help.text"
-msgid "<link href=\"text/swriter/main0213.xhp\" name=\"Ruler\">Ruler</link>"
-msgstr "<link href=\"text/swriter/main0213.xhp\" name=\"Regle\">Regle</link>"
+msgid "<link href=\"text/swriter/main0213.xhp\">Ruler</link>"
+msgstr "<link href=\"text/swriter/main0213.xhp\">Regle</link>"
#. CgV65
#: template_manager.xhp
@@ -26558,13 +26558,13 @@ msgctxt ""
msgid "Listview"
msgstr ""
-#. RaUDu
+#. GZysY
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id3155306\n"
"help.text"
-msgid "To show templates from another folder in the <emph>My Templates</emph> category, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences - </menuitem></caseinline><defaultinline><menuitem>Tools - Options - </menuitem></defaultinline></switchinline><link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\"><menuitem>$[officename] - Paths</menuitem></link>, select <emph>Templates</emph>, press <widget>Edit</widget>, then press <widget>Add</widget> to open the file dialog for selecting the folder to add."
+msgid "To show templates from another folder in the <emph>My Templates</emph> category, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences - </menuitem></caseinline><defaultinline><menuitem>Tools - Options - </menuitem></defaultinline></switchinline><link href=\"text/shared/optionen/01010300.xhp\"><menuitem>$[officename] - Paths</menuitem></link>, select <emph>Templates</emph>, press <widget>Edit</widget>, then press <widget>Add</widget> to open the file dialog for selecting the folder to add."
msgstr ""
#. mB2AC
@@ -27332,22 +27332,22 @@ msgctxt ""
msgid "<bookmark_value>text; coloring</bookmark_value> <bookmark_value>characters; coloring</bookmark_value> <bookmark_value>colors; fonts</bookmark_value> <bookmark_value>fonts;colors</bookmark_value>"
msgstr "<bookmark_value>text; acoloriment</bookmark_value><bookmark_value>caràcters;acoloriment</bookmark_value><bookmark_value>colors; tipus de lletra</bookmark_value><bookmark_value>tipus de lletra: colors</bookmark_value>"
-#. YGwnc
+#. VViQC
#: text_color.xhp
msgctxt ""
"text_color.xhp\n"
"hd_id3156014\n"
"help.text"
-msgid "<variable id=\"text_color\"><link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the Color of Text\">Changing the Color of Text</link></variable>"
-msgstr "<variable id=\"text_color\"><link href=\"text/shared/guide/text_color.xhp\" name=\"Modificació del color del text\">Modificació del color del text</link></variable>"
+msgid "<variable id=\"text_color\"><link href=\"text/shared/guide/text_color.xhp\">Changing the Color of Text</link></variable>"
+msgstr "<variable id=\"text_color\"><link href=\"text/shared/guide/text_color.xhp\">Modificació del color del text</link></variable>"
-#. PvEAm
+#. CMCLo
#: text_color.xhp
msgctxt ""
"text_color.xhp\n"
"par_id3150040\n"
"help.text"
-msgid "Click the arrow next to the <emph>Font Color</emph> icon to activate a <link href=\"text/shared/00/00000001.xhp#toolbars\" name=\"toolbar\">toolbar</link> from which you can choose from a range of colors."
+msgid "Click the arrow next to the <emph>Font Color</emph> icon to activate a <link href=\"text/shared/00/00000001.xhp#toolbars\">toolbar</link> from which you can choose from a range of colors."
msgstr ""
#. FMST5
@@ -27404,14 +27404,14 @@ msgctxt ""
msgid "The following applies to all modules (<item type=\"productname\">%PRODUCTNAME</item> Writer, Calc, Draw, Impress): Select the text that is to take another color, then click the color you want on the toolbar."
msgstr "La informació següent s'aplica a tots els mòduls del <item type=\"productname\">%PRODUCTNAME</item> (Writer, Calc, Draw, Impress): seleccioneu el text al qual s'ha d'aplicar un altre color i feu clic al color que vulgueu a la barra d'eines."
-#. SAMBY
+#. LiGkU
#: text_color.xhp
msgctxt ""
"text_color.xhp\n"
"par_id3154285\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font color\">Font color</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Color del tipus de lletra\">Color del tipus de lletra</link>"
+msgid "<link href=\"text/shared/01/05020100.xhp\">Font color</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\">Color del tipus de lletra</link>"
#. yszKU
#: textmode_change.xhp
@@ -27431,13 +27431,13 @@ msgctxt ""
msgid "<bookmark_value>text; overwriting or inserting</bookmark_value> <bookmark_value>overwrite mode</bookmark_value> <bookmark_value>insert mode for entering text</bookmark_value>"
msgstr ""
-#. AWrGk
+#. jshAc
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"hd_id3159233\n"
"help.text"
-msgid "<variable id=\"textmode_change\"> <link href=\"text/shared/guide/textmode_change.xhp\" name=\"Switching Between Insert Mode and Overwrite Mode\">Switching Between Insert Mode and Overwrite Mode</link> </variable>"
+msgid "<variable id=\"textmode_change\"> <link href=\"text/shared/guide/textmode_change.xhp\">Switching Between Insert Mode and Overwrite Mode</link> </variable>"
msgstr ""
#. qhFEZ
@@ -27512,14 +27512,14 @@ msgctxt ""
msgid "The overwrite mode is active. The text cursor is a blinking block. Click on the area to activate insert mode."
msgstr ""
-#. tHRqe
+#. 5u8aL
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3154346\n"
"help.text"
-msgid "<link href=\"text/shared/04/01010000.xhp\" name=\"Keyboard commands\">Keyboard commands</link>"
-msgstr "<link href=\"text/shared/04/01010000.xhp\" name=\"Ordes de teclat\">Ordes de teclat</link>"
+msgid "<link href=\"text/shared/04/01010000.xhp\">Keyboard commands</link>"
+msgstr "<link href=\"text/shared/04/01010000.xhp\">Ordes de teclat</link>"
#. AWjj4
#: tipoftheday.xhp
@@ -27539,13 +27539,13 @@ msgctxt ""
msgid "<bookmark_value>tip of the day</bookmark_value>"
msgstr ""
-#. Pmxkf
+#. DwAxd
#: tipoftheday.xhp
msgctxt ""
"tipoftheday.xhp\n"
"hd_id161630843025887\n"
"help.text"
-msgid "<link href=\"text/shared/guide/tipoftheday.xhp\" name=\"tod\">Tip of the Day</link>"
+msgid "<link href=\"text/shared/guide/tipoftheday.xhp\">Tip of the Day</link>"
msgstr ""
#. PtZCz
@@ -27791,14 +27791,14 @@ msgctxt ""
msgid "<bookmark_value>versions; $[officename]</bookmark_value><bookmark_value>build numbers of $[officename]</bookmark_value><bookmark_value>copyright for $[officename]</bookmark_value>"
msgstr "<bookmark_value>versions; $[officename]</bookmark_value><bookmark_value>números de muntatge del $[officename]</bookmark_value><bookmark_value>copyright per al $[officename]</bookmark_value>"
-#. DukD7
+#. DqH9g
#: version_number.xhp
msgctxt ""
"version_number.xhp\n"
"hd_id3144436\n"
"help.text"
-msgid "<variable id=\"version_number\"><link href=\"text/shared/guide/version_number.xhp\" name=\"Versions and Build Numbers\">Versions and Build Numbers</link></variable>"
-msgstr "<variable id=\"version_number\"><link href=\"text/shared/guide/version_number.xhp\" name=\"Versions i números de muntatge\">Versions i números de compilació</link></variable>"
+msgid "<variable id=\"version_number\"><link href=\"text/shared/guide/version_number.xhp\">Versions and Build Numbers</link></variable>"
+msgstr "<variable id=\"version_number\"><link href=\"text/shared/guide/version_number.xhp\">Versions i números de compilació</link></variable>"
#. J69PD
#: version_number.xhp
@@ -27836,14 +27836,14 @@ msgctxt ""
msgid "<bookmark_value>properties;files</bookmark_value><bookmark_value>files;properties</bookmark_value><bookmark_value>viewing;file properties</bookmark_value>"
msgstr "<bookmark_value>propietats;fitxers</bookmark_value><bookmark_value>fitxers;propietats</bookmark_value><bookmark_value>visualització;propietats de fitxers</bookmark_value>"
-#. yngsR
+#. 9Au83
#: viewing_file_properties.xhp
msgctxt ""
"viewing_file_properties.xhp\n"
"hd_id3152594\n"
"help.text"
-msgid "<variable id=\"viewing_file_properties\"><variable id=\"viewing\"><link href=\"text/shared/guide/viewing_file_properties.xhp\" name=\"Viewing File Properties\">Viewing File Properties</link></variable></variable>"
-msgstr "<variable id=\"viewing_file_properties\"><variable id=\"viewing\"><link href=\"text/shared/guide/viewing_file_properties.xhp\" name=\"Visualització de les propietats de fitxer\">Visualització de les propietats de fitxer</link></variable></variable>"
+msgid "<variable id=\"viewing_file_properties\"><variable id=\"viewing\"><link href=\"text/shared/guide/viewing_file_properties.xhp\">Viewing File Properties</link></variable></variable>"
+msgstr "<variable id=\"viewing_file_properties\"><variable id=\"viewing\"><link href=\"text/shared/guide/viewing_file_properties.xhp\">Visualització de les propietats de fitxer</link></variable></variable>"
#. WDxi4
#: viewing_file_properties.xhp
@@ -27935,14 +27935,14 @@ msgctxt ""
msgid "<bookmark_value>working directory change</bookmark_value> <bookmark_value>My Documents folder;changing work directory</bookmark_value> <bookmark_value>paths; changing work directory</bookmark_value> <bookmark_value>pictures; changing paths</bookmark_value> <bookmark_value>changing;work directory</bookmark_value>"
msgstr "<bookmark_value>canvi del directori de treball</bookmark_value><bookmark_value>carpeta Els meus documents;canvi del directori de treball</bookmark_value><bookmark_value>camins; canvi del directori de treball</bookmark_value><bookmark_value>imatges; canvi de camins</bookmark_value><bookmark_value>canvi;directori de treball</bookmark_value>"
-#. tbGk7
+#. uexFu
#: workfolder.xhp
msgctxt ""
"workfolder.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<variable id=\"workfolder\"><link href=\"text/shared/guide/workfolder.xhp\" name=\"Changing Your Working Directory\">Changing Your Working Directory</link></variable>"
-msgstr "<variable id=\"workfolder\"><link href=\"text/shared/guide/workfolder.xhp\" name=\"Canvi del directori de treball\">Canvi del directori de treball</link></variable>"
+msgid "<variable id=\"workfolder\"><link href=\"text/shared/guide/workfolder.xhp\">Changing Your Working Directory</link></variable>"
+msgstr "<variable id=\"workfolder\"><link href=\"text/shared/guide/workfolder.xhp\">Canvi del directori de treball</link></variable>"
#. GC3DS
#: workfolder.xhp
@@ -27989,14 +27989,14 @@ msgctxt ""
msgid "You also use this procedure to change the directory displayed by $[officename] when you want to insert a graphic. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths - Images</emph>, then follow step 3."
msgstr ""
-#. g9fGT
+#. fADde
#: workfolder.xhp
msgctxt ""
"workfolder.xhp\n"
"par_id3154286\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010300.xhp\" name=\"Paths\">Paths</link>"
-msgstr "<link href=\"text/shared/optionen/01010300.xhp\" name=\"Camins\">Camins</link>"
+msgid "<link href=\"text/shared/optionen/01010300.xhp\">Paths</link>"
+msgstr "<link href=\"text/shared/optionen/01010300.xhp\">Camins</link>"
#. FLjkH
#: xforms.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/menu.po b/source/ca-valencia/helpcontent2/source/text/shared/menu.po
index dbaab57113f..be1f5fd6dbf 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/menu.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/menu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:46+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedmenu/ca_VALENCIA/>\n"
@@ -25,13 +25,13 @@ msgctxt ""
msgid "Forms submenu"
msgstr ""
-#. EHLP3
+#. zwjCw
#: forms.xhp
msgctxt ""
"forms.xhp\n"
"hd_id491647289210348\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/shared/menu/forms.xhp\" name=\"Forms Submenu\">Forms Submenu</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/shared/menu/forms.xhp\">Forms Submenu</link></variable>"
msgstr ""
#. EEMss
@@ -196,14 +196,14 @@ msgctxt ""
msgid "<bookmark_value>page;save background image</bookmark_value> <bookmark_value>slide;save background image</bookmark_value> <bookmark_value>page background image;save</bookmark_value> <bookmark_value>slide background image;save</bookmark_value>"
msgstr "<bookmark_value>pàgina; desament de la imatge de fons</bookmark_value><bookmark_value>diapositiva; desament de la imatge de fons</bookmark_value><bookmark_value>imatge de fons de la pàgina; desament</bookmark_value><bookmark_value>imatge de fons de la diapositiva; desament</bookmark_value>"
-#. vT85b
+#. 6cP5z
#: save_image.xhp
msgctxt ""
"save_image.xhp\n"
"hd_id881566143431255\n"
"help.text"
-msgid "<link href=\"text/shared/menu/save_image.xhp\" name=\"savebackgroundimage\">Save Background Image</link>"
-msgstr "<link href=\"text/shared/menu/save_image.xhp\" name=\"Guarda la imatge de fons\">Guarda la imatge de fons</link>"
+msgid "<link href=\"text/shared/menu/save_image.xhp\">Save Background Image</link>"
+msgstr "<link href=\"text/shared/menu/save_image.xhp\">Guarda la imatge de fons</link>"
#. qWmcs
#: save_image.xhp
@@ -259,14 +259,14 @@ msgctxt ""
msgid "<bookmark_value>page;set background image</bookmark_value><bookmark_value>slide;set background image</bookmark_value><bookmark_value>page background image;set</bookmark_value><bookmark_value>slide background image;set</bookmark_value>"
msgstr ""
-#. GYiBH
+#. jnYeL
#: set_image_background.xhp
msgctxt ""
"set_image_background.xhp\n"
"hd_id881566143431255\n"
"help.text"
-msgid "<link href=\"text/shared/menu/set_image_background.xhp\" name=\"setbackgroundimage\">Set Background Image</link>"
-msgstr "<link href=\"text/shared/menu/set_image_background.xhp\" name=\"setbackgroundimage\">Estableix la imatge de fons</link>"
+msgid "<link href=\"text/shared/menu/set_image_background.xhp\">Set Background Image</link>"
+msgstr "<link href=\"text/shared/menu/set_image_background.xhp\">Estableix la imatge de fons</link>"
#. B8FvH
#: set_image_background.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
index 3e8948c5338..14198859bac 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-22 14:43+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>options; tools</bookmark_value> <bookmark_value>defaults; program configuration</bookmark_value> <bookmark_value>settings; program configuration</bookmark_value>"
msgstr "<bookmark_value>opcions; eines</bookmark_value><bookmark_value>paràmetres per defecte; configuració del programa</bookmark_value><bookmark_value>paràmetres; configuració del programa</bookmark_value>"
-#. FeaQL
+#. SZnDk
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3153665\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01000000.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/shared/optionen/01000000.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/shared/optionen/01000000.xhp\">Options</link>"
+msgstr "<link href=\"text/shared/optionen/01000000.xhp\">Opcions</link>"
#. nF5Kc
#: 01000000.xhp
@@ -107,113 +107,113 @@ msgctxt ""
msgid "Opens the help contents for the Options page displayed."
msgstr "Obri el contingut de l'ajuda corresponent a la secció de les Opcions mostrada."
-#. Fg989
+#. QAGQa
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
-msgstr "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
+msgid "<link href=\"text/shared/optionen/01010000.xhp\">%PRODUCTNAME</link>"
+msgstr "<link href=\"text/shared/optionen/01010000.xhp\">%PRODUCTNAME</link>"
-#. d3sto
+#. UpYyE
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3145787\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01020000.xhp\" name=\"Load/Save\">Load/Save</link>"
-msgstr "<link href=\"text/shared/optionen/01020000.xhp\" name=\"Carrega/Guarda\">Carrega/Guarda</link>"
+msgid "<link href=\"text/shared/optionen/01020000.xhp\">Load/Save</link>"
+msgstr "<link href=\"text/shared/optionen/01020000.xhp\">Carrega/Guarda</link>"
-#. GRKjz
+#. inAys
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Language Settings\">Language Settings</link>"
-msgstr "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Configuració de la llengua\">Configuració de la llengua</link>"
+msgid "<link href=\"text/shared/optionen/01150000.xhp\">Language Settings</link>"
+msgstr "<link href=\"text/shared/optionen/01150000.xhp\">Configuració de la llengua</link>"
-#. iyZPJ
+#. KdFsr
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3153188\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040000.xhp\" name=\"Text Document\">%PRODUCTNAME Writer</link>"
-msgstr "<link href=\"text/shared/optionen/01040000.xhp\" name=\"Document de text\">%PRODUCTNAME Writer</link>"
+msgid "<link href=\"text/shared/optionen/01040000.xhp\">%PRODUCTNAME Writer</link>"
+msgstr "<link href=\"text/shared/optionen/01040000.xhp\">%PRODUCTNAME Writer</link>"
-#. afn6b
+#. vNkTY
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3150104\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01050000.xhp\" name=\"HTML Document\">%PRODUCTNAME Writer/Web</link>"
-msgstr "<link href=\"text/shared/optionen/01050000.xhp\" name=\"Document HTML\">%PRODUCTNAME Writer/Web</link>"
+msgid "<link href=\"text/shared/optionen/01050000.xhp\">%PRODUCTNAME Writer/Web</link>"
+msgstr "<link href=\"text/shared/optionen/01050000.xhp\">%PRODUCTNAME Writer/Web</link>"
-#. DBkFx
+#. FCjgZ
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3154918\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060000.xhp\" name=\"Spreadsheet\">%PRODUCTNAME Calc</link>"
-msgstr "<link href=\"text/shared/optionen/01060000.xhp\" name=\"Full de càlcul\">%PRODUCTNAME Calc</link>"
+msgid "<link href=\"text/shared/optionen/01060000.xhp\">%PRODUCTNAME Calc</link>"
+msgstr "<link href=\"text/shared/optionen/01060000.xhp\">%PRODUCTNAME Calc</link>"
-#. VXBAL
+#. dQVTm
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3153142\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01070000.xhp\" name=\"Presentation\">%PRODUCTNAME Impress</link>"
-msgstr "<link href=\"text/shared/optionen/01070000.xhp\" name=\"Presentació\">%PRODUCTNAME Impress</link>"
+msgid "<link href=\"text/shared/optionen/01070000.xhp\">%PRODUCTNAME Impress</link>"
+msgstr "<link href=\"text/shared/optionen/01070000.xhp\">%PRODUCTNAME Impress</link>"
-#. UcRAU
+#. e8D4o
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3147434\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01080000.xhp\" name=\"Drawing\">%PRODUCTNAME Draw</link>"
-msgstr "<link href=\"text/shared/optionen/01080000.xhp\" name=\"Dibuix\">%PRODUCTNAME Draw</link>"
+msgid "<link href=\"text/shared/optionen/01080000.xhp\">%PRODUCTNAME Draw</link>"
+msgstr "<link href=\"text/shared/optionen/01080000.xhp\">%PRODUCTNAME Draw</link>"
-#. kHrUr
+#. P5AqS
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3154732\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01090000.xhp\" name=\"Formula\">%PRODUCTNAME Math</link>"
-msgstr "<link href=\"text/shared/optionen/01090000.xhp\" name=\"Fórmula\">%PRODUCTNAME Math</link>"
+msgid "<link href=\"text/shared/optionen/01090000.xhp\">%PRODUCTNAME Math</link>"
+msgstr "<link href=\"text/shared/optionen/01090000.xhp\">%PRODUCTNAME Math</link>"
-#. wwpdF
+#. Cur9t
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3149420\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Base</link>"
-msgstr "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Fonts de dades\">%PRODUCTNAME Base</link>"
+msgid "<link href=\"text/shared/optionen/01160000.xhp\">%PRODUCTNAME Base</link>"
+msgstr "<link href=\"text/shared/optionen/01160000.xhp\">%PRODUCTNAME Base</link>"
-#. NMLtz
+#. ij9DU
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3155418\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">Charts</link>"
-msgstr "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Diagrama\">Diagrames</link>"
+msgid "<link href=\"text/shared/optionen/01110000.xhp\">Charts</link>"
+msgstr "<link href=\"text/shared/optionen/01110000.xhp\">Diagrames</link>"
-#. Cei3Q
+#. pVQw2
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"hd_id3150872\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
-msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
+msgid "<link href=\"text/shared/optionen/01030000.xhp\">Internet</link>"
+msgstr "<link href=\"text/shared/optionen/01030000.xhp\">Internet</link>"
#. jGkq7
#: 01010000.xhp
@@ -260,14 +260,14 @@ msgctxt ""
msgid "<bookmark_value>data; user data</bookmark_value><bookmark_value>user data; input</bookmark_value><bookmark_value>personal data input</bookmark_value>"
msgstr "<bookmark_value>dades; dades de l'usuari</bookmark_value><bookmark_value>dades de l'usuari; entrada</bookmark_value><bookmark_value>entrada de dades personals</bookmark_value>"
-#. yQjBu
+#. iDNyF
#: 01010100.xhp
msgctxt ""
"01010100.xhp\n"
"hd_id3155805\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010100.xhp\" name=\"User Data\">User Data</link>"
-msgstr "<link href=\"text/shared/optionen/01010100.xhp\" name=\"Dades de l'usuari\">Dades de l'usuari</link>"
+msgid "<link href=\"text/shared/optionen/01010100.xhp\">User Data</link>"
+msgstr "<link href=\"text/shared/optionen/01010100.xhp\">Dades de l'usuari</link>"
#. Trz9C
#: 01010100.xhp
@@ -692,14 +692,14 @@ msgctxt ""
msgid "<bookmark_value>saving; options</bookmark_value><bookmark_value>defaults;of saving</bookmark_value><bookmark_value>URL; saving absolute/relative paths</bookmark_value><bookmark_value>relative saving of URLs</bookmark_value><bookmark_value>absolute saving of URLs</bookmark_value>"
msgstr "<bookmark_value>guardar; opcions</bookmark_value><bookmark_value>paràmetres per defecte;per guardar</bookmark_value><bookmark_value>URL; guardar camins absoluts/relatius</bookmark_value><bookmark_value>guardar URL relatius</bookmark_value><bookmark_value>guardar URL absoluts</bookmark_value>"
-#. 3G9dn
+#. BCb5w
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"hd_id3143284\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010200.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/optionen/01010200.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/shared/optionen/01010200.xhp\">General</link>"
+msgstr "<link href=\"text/shared/optionen/01010200.xhp\">General</link>"
#. pRBjV
#: 01010200.xhp
@@ -944,13 +944,13 @@ msgctxt ""
msgid "<variable id=\"relative_saving_option\">Save URLs relative to file system</variable>"
msgstr ""
-#. URbep
+#. ffQwJ
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149484\n"
"help.text"
-msgid "This option allows you to select the default for <link href=\"text/shared/00/00000005.xhp#saving\" name=\"relative\"><emph>relative</emph></link> addressing of URLs in the file system and on the Internet. Relative addressing is only possible if the source document and the referenced document are both on the same drive."
+msgid "This option allows you to select the default for <link href=\"text/shared/00/00000005.xhp#saving\"><emph>relative</emph></link> addressing of URLs in the file system and on the Internet. Relative addressing is only possible if the source document and the referenced document are both on the same drive."
msgstr ""
#. jDPKd
@@ -1052,13 +1052,13 @@ msgctxt ""
msgid "The Help tip always displays an absolute path. However, if a document is saved in HTML format, <item type=\"productname\">%PRODUCTNAME</item> will enter a relative path if the appropriate check box is selected."
msgstr "L'indicador d'ajuda sempre mostra un camí absolut. No obstant això, si un document es guarda en format HTML, el <item type=\"productname\">%PRODUCTNAME</item> entrarà un camí relatiu si s'activa la casella de selecció adequada."
-#. 2sqRz
+#. cnJiM
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3155176\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/relative_fsys\">Select this box for <link href=\"text/shared/00/00000005.xhp#saving\" name=\"relative saving\"><emph>relative saving</emph></link> of URLs in the file system.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/relative_fsys\">Select this box for <link href=\"text/shared/00/00000005.xhp#saving\"><emph>relative saving</emph></link> of URLs in the file system.</ahelp>"
msgstr ""
#. x9sAv
@@ -1070,13 +1070,13 @@ msgctxt ""
msgid "Save URLs relative to internet"
msgstr "Guarda els URL relatius a Internet"
-#. UHaGc
+#. ccUae
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3155608\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/relative_inet\">Select this box for <link href=\"text/shared/00/00000005.xhp#saving\" name=\"relative saving\"><emph>relative saving</emph></link> of URLs to the Internet.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/relative_inet\">Select this box for <link href=\"text/shared/00/00000005.xhp#saving\"><emph>relative saving</emph></link> of URLs to the Internet.</ahelp>"
msgstr ""
#. Ymh8t
@@ -1097,22 +1097,22 @@ msgctxt ""
msgid "ODF format version"
msgstr "Versió de format ODF"
-#. sDCvq
+#. fGAUG
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id6944182\n"
"help.text"
-msgid "LibreOffice 7.0 supports the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\"><emph>OpenDocument</emph></link> format (ODF) version 1.3. The prior versions of LibreOffice support the file format ODF 1.2. Prior file formats cannot store all new features of the new software."
+msgid "LibreOffice 7.0 supports the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\"><emph>OpenDocument</emph></link> format (ODF) version 1.3. The prior versions of LibreOffice support the file format ODF 1.2. Prior file formats cannot store all new features of the new software."
msgstr ""
-#. BZc73
+#. 9ZuCs
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id6944181\n"
"help.text"
-msgid "OpenOffice.org 3 and StarOffice 9 introduced new features which have to be saved using the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\"><emph>OpenDocument</emph></link> format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software."
+msgid "OpenOffice.org 3 and StarOffice 9 introduced new features which have to be saved using the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\"><emph>OpenDocument</emph></link> format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software."
msgstr ""
#. BoRgh
@@ -1241,13 +1241,13 @@ msgctxt ""
msgid "<bookmark_value>paths; defaults</bookmark_value><bookmark_value>variables; for paths</bookmark_value><bookmark_value>directories;directory structure</bookmark_value><bookmark_value>files and folders in $[officename]</bookmark_value>"
msgstr "<bookmark_value>camins; paràmetres per defecte</bookmark_value><bookmark_value>variables; per a camins</bookmark_value><bookmark_value>directoris;estructura de directori</bookmark_value><bookmark_value>fitxers i carpetes al $[officename]</bookmark_value>"
-#. GM2Rn
+#. isFG4
#: 01010300.xhp
msgctxt ""
"01010300.xhp\n"
"hd_id3149514\n"
"help.text"
-msgid "<variable id=\"pathsh1\"><link href=\"text/shared/optionen/01010300.xhp\" name=\"Paths\">Paths</link></variable>"
+msgid "<variable id=\"pathsh1\"><link href=\"text/shared/optionen/01010300.xhp\">Paths</link></variable>"
msgstr ""
#. PUqHN
@@ -1322,13 +1322,13 @@ msgctxt ""
msgid "You can change the sequence of entries by clicking the bar in the <emph>Type</emph> column. The column width can be changed by moving the separator between the columns with the mouse."
msgstr "Podeu canviar la seqüència d'entrades si feu clic a la barra de la columna <emph>Tipus</emph>. L'amplària de la columna es pot canviar movent el separador que hi ha entre les columnes amb el ratolí."
-#. 4ueLz
+#. jrFRE
#: 01010300.xhp
msgctxt ""
"01010300.xhp\n"
"par_id691607812924039\n"
"help.text"
-msgid "The <emph>{user profile}</emph> directory and its subdirectories contain user data.<variable id=\"userprofile_location\">The location of the <emph>{user profile}</emph> directory is determined when %PRODUCTNAME is installed. See the <link href=\"https://wiki.documentfoundation.org/UserProfile#Default_locations\" name=\"Default_location\">Default location</link> section in the Wiki page about <emph>LibreOffice user profile</emph> for more information about typical locations of the <emph>user profile</emph> in different operating systems.</variable>"
+msgid "The <emph>{user profile}</emph> directory and its subdirectories contain user data.<variable id=\"userprofile_location\">The location of the <emph>{user profile}</emph> directory is determined when %PRODUCTNAME is installed. See the <link href=\"https://wiki.documentfoundation.org/UserProfile#Default_locations\">Default location</link> section in the Wiki page about <emph>LibreOffice user profile</emph> for more information about typical locations of the <emph>user profile</emph> in different operating systems.</variable>"
msgstr ""
#. cFiDw
@@ -1736,14 +1736,14 @@ msgctxt ""
msgid "<bookmark_value>writing aids options</bookmark_value><bookmark_value>custom dictionaries; editing</bookmark_value><bookmark_value>user-defined dictionaries; editing</bookmark_value><bookmark_value>dictionaries; editing user-defined</bookmark_value><bookmark_value>exceptions; user-defined dictionaries</bookmark_value><bookmark_value>user-defined dictionaries; dictionary of exceptions</bookmark_value><bookmark_value>spellcheck; dictionary of exceptions</bookmark_value><bookmark_value>ignore list for spellcheck</bookmark_value><bookmark_value>spellcheck; ignore list</bookmark_value><bookmark_value>spelling; dictionary of exceptions</bookmark_value><bookmark_value>ignore list for spelling</bookmark_value><bookmark_value>spelling; ignore list</bookmark_value><bookmark_value>hyphenation; minimal number of characters</bookmark_value>"
msgstr ""
-#. BfSt6
+#. tsrAz
#: 01010400.xhp
msgctxt ""
"01010400.xhp\n"
"hd_id3145136\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010400.xhp\" name=\"Writing Aids\">Writing Aids</link>"
-msgstr "<link href=\"text/shared/optionen/01010400.xhp\" name=\"Ajudes a l'escriptura\">Ajudes a l'escriptura</link>"
+msgid "<link href=\"text/shared/optionen/01010400.xhp\">Writing Aids</link>"
+msgstr "<link href=\"text/shared/optionen/01010400.xhp\">Ajudes a l'escriptura</link>"
#. SCgzo
#: 01010400.xhp
@@ -1772,13 +1772,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodules\">Contains the installed language modules.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optlingupage/lingumodules\">Conté els mòduls de llengua instal·lats.</ahelp>"
-#. MFzHZ
+#. HfJED
#: 01010400.xhp
msgctxt ""
"01010400.xhp\n"
"par_id3153663\n"
"help.text"
-msgid "A language module can contain one, two or three submodules: Spelling, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog."
+msgid "A language module can contain one, two or three submodules: Spelling, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010401.xhp\"><emph>Edit Modules</emph></link> dialog."
msgstr ""
#. oeBAY
@@ -1799,14 +1799,14 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. ySP74
+#. 3PU3U
#: 01010400.xhp
msgctxt ""
"01010400.xhp\n"
"par_id3145673\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog appears."
-msgstr "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">Per a editar un mòdul de llengua, seleccioneu-lo i feu clic a <emph>Edita</emph>.</ahelp> Apareixerà el diàleg <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edita els mòduls\"><emph>Edita els mòduls</emph></link>."
+msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\"><emph>Edit Modules</emph></link> dialog appears."
+msgstr "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">Per a editar un mòdul de llengua, seleccioneu-lo i feu clic a <emph>Edita</emph>.</ahelp> Apareixerà el diàleg <link href=\"text/shared/optionen/01010401.xhp\"><emph>Edita els mòduls</emph></link>."
#. GBhhC
#: 01010400.xhp
@@ -2204,14 +2204,14 @@ msgctxt ""
msgid "Typing errors are highlighted in the document with a red underline. If you place the cursor over a word marked in this way, you can open the context menu to obtain a list of corrections. Select a correction to replace the word. If you make the same mistake again while editing the document, it will be marked as an error again."
msgstr "Els errors d'escriptura es realcen en el document amb un subratllat roig. Si col·loqueu el cursor damunt d'una paraula marcada d'esta manera, podreu obrir el menú contextual per obtindre una llista de correccions. Seleccioneu una correcció per substituir la paraula. Si torneu a cometre el mateix error mentre editeu el document, es tornarà a marcar com a error."
-#. 8PeLA
+#. riFFL
#: 01010400.xhp
msgctxt ""
"01010400.xhp\n"
"par_id3153815\n"
"help.text"
-msgid "To place the word pair in the <link href=\"text/shared/01/06040200.xhp\" name=\"AutoCorrect replacement table\">AutoCorrect replacement table</link>, open the <link href=\"text/shared/01/06040500.xhp\" name=\"AutoCorrect context menu\">AutoCorrect context menu</link> and choose <emph>AutoCorrect</emph>. Make your selection from the submenu. The word is replaced and at the same time the word pair is placed in the replacement table."
-msgstr "Per col·locar el parell de paraules a la <link href=\"text/shared/01/06040200.xhp\" name=\"taula de reemplaçament de correcció automàtica\">taula de reemplaçament de correcció automàtica</link>, obriu el <link href=\"text/shared/01/06040500.xhp\" name=\"menú contextual de correcció automàtica\">menú contextual de correcció automàtica</link> i seleccioneu <emph>Correcció automàtica</emph>. Trieu una opció al submenú. La paraula es reemplaçarà i, a la vegada, el parell de paraules s'afegirà a la taula de reemplaçament."
+msgid "To place the word pair in the <link href=\"text/shared/01/06040200.xhp\">AutoCorrect replacement table</link>, open the <link href=\"text/shared/01/06040500.xhp\">AutoCorrect context menu</link> and choose <emph>AutoCorrect</emph>. Make your selection from the submenu. The word is replaced and at the same time the word pair is placed in the replacement table."
+msgstr "Per col·locar el parell de paraules a la <link href=\"text/shared/01/06040200.xhp\">taula de reemplaçament de correcció automàtica</link>, obriu el <link href=\"text/shared/01/06040500.xhp\">menú contextual de correcció automàtica</link> i seleccioneu <emph>Correcció automàtica</emph>. Trieu una opció al submenú. La paraula es reemplaçarà i, a la vegada, el parell de paraules s'afegirà a la taula de reemplaçament."
#. jX9FE
#: 01010400.xhp
@@ -2321,14 +2321,14 @@ msgctxt ""
msgid "<bookmark_value>spellcheck; activating for a language</bookmark_value><bookmark_value>spelling; activating for a language</bookmark_value><bookmark_value>hyphenation; activating for a language</bookmark_value><bookmark_value>thesaurus; activating for a language</bookmark_value><bookmark_value>languages; activating modules</bookmark_value><bookmark_value>dictionaries;creating</bookmark_value><bookmark_value>user-defined dictionaries;creating</bookmark_value>"
msgstr ""
-#. LFHnZ
+#. wvEuE
#: 01010401.xhp
msgctxt ""
"01010401.xhp\n"
"hd_id3154046\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit module\">Edit module</link>"
-msgstr "<link href=\"text/shared/optionen/01010401.xhp\" name=\"Edita el mòdul\">Edita el mòdul</link>"
+msgid "<link href=\"text/shared/optionen/01010401.xhp\">Edit module</link>"
+msgstr "<link href=\"text/shared/optionen/01010401.xhp\">Edita el mòdul</link>"
#. zdH9C
#: 01010401.xhp
@@ -2492,14 +2492,14 @@ msgctxt ""
msgid "<bookmark_value>pick color</bookmark_value><bookmark_value>color selector</bookmark_value>"
msgstr ""
-#. yHj82
+#. FExSo
#: 01010501.xhp
msgctxt ""
"01010501.xhp\n"
"hd_id3153126\n"
"help.text"
-msgid "<variable id=\"colorpickerh1\"><link href=\"text/shared/optionen/01010501.xhp\" name=\"Selecting a new color\">Selecting a new color</link></variable>"
-msgstr "<variable id=\"colorpickerh1\"><link href=\"text/shared/optionen/01010501.xhp\" name=\"Selecció d'un color nou\">Selecció d'un color nou</link></variable>"
+msgid "<variable id=\"colorpickerh1\"><link href=\"text/shared/optionen/01010501.xhp\">Selecting a new color</link></variable>"
+msgstr "<variable id=\"colorpickerh1\"><link href=\"text/shared/optionen/01010501.xhp\">Selecció d'un color nou</link></variable>"
#. 2DKci
#: 01010501.xhp
@@ -2897,14 +2897,14 @@ msgctxt ""
msgid "<bookmark_value>opening; dialog settings</bookmark_value> <bookmark_value>saving; dialog settings</bookmark_value> <bookmark_value>years; 2-digit options</bookmark_value>"
msgstr "<bookmark_value>obertura; configuració de diàleg</bookmark_value> <bookmark_value>desament; configuració de diàleg</bookmark_value> <bookmark_value>anys; opcions de dos dígits</bookmark_value>"
-#. Nw2Ew
+#. CBQwf
#: 01010600.xhp
msgctxt ""
"01010600.xhp\n"
"hd_id3154514\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010600.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/optionen/01010600.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/shared/optionen/01010600.xhp\">General</link>"
+msgstr "<link href=\"text/shared/optionen/01010600.xhp\">General</link>"
#. Y9Cxs
#: 01010600.xhp
@@ -3104,14 +3104,14 @@ msgctxt ""
msgid "<bookmark_value>HTML;fonts for source display</bookmark_value><bookmark_value>Basic; fonts for source display</bookmark_value><bookmark_value>fonts;for HTML and Basic</bookmark_value>"
msgstr "<bookmark_value>HTML;tipus de lletra per a la visualització de la font</bookmark_value><bookmark_value>Basic; tipus de lletra per a la visualització de la font</bookmark_value><bookmark_value>tipus de lletra;per HTML i Basic</bookmark_value>"
-#. Nav2y
+#. YPAoB
#: 01010700.xhp
msgctxt ""
"01010700.xhp\n"
"hd_id3149398\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010700.xhp\" name=\"Fonts\">Fonts</link>"
-msgstr "<link href=\"text/shared/optionen/01010700.xhp\" name=\"Tipus de lletra\">Tipus de lletra</link>"
+msgid "<link href=\"text/shared/optionen/01010700.xhp\">Fonts</link>"
+msgstr "<link href=\"text/shared/optionen/01010700.xhp\">Tipus de lletra</link>"
#. zTJGT
#: 01010700.xhp
@@ -3509,14 +3509,14 @@ msgctxt ""
msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>mouse; middle button</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>Skia;settings</bookmark_value> <bookmark_value>Skia;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
msgstr ""
-#. cGjPM
+#. yxnCw
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id3155341\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010800.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/shared/optionen/01010800.xhp\" name=\"Visualització\">Visualització</link>"
+msgid "<link href=\"text/shared/optionen/01010800.xhp\">View</link>"
+msgstr "<link href=\"text/shared/optionen/01010800.xhp\">Visualització</link>"
#. hFBha
#: 01010800.xhp
@@ -4013,14 +4013,14 @@ msgctxt ""
msgid "<bookmark_value>printing; colors in grayscale</bookmark_value><bookmark_value>grayscale printing</bookmark_value><bookmark_value>colors; printing in grayscale</bookmark_value><bookmark_value>printing; warnings</bookmark_value><bookmark_value>paper size warning</bookmark_value>"
msgstr "<bookmark_value>impressió; colors en escala de grisos</bookmark_value><bookmark_value>impressió en escala de grisos</bookmark_value><bookmark_value>colors; impressió en escala de grisos</bookmark_value><bookmark_value>impressió; avisos</bookmark_value><bookmark_value>avís de mida del paper</bookmark_value>"
-#. SqfTp
+#. 4iK2r
#: 01010900.xhp
msgctxt ""
"01010900.xhp\n"
"hd_id3148946\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010900.xhp\" name=\"Print Options\">Print Options</link>"
-msgstr "<link href=\"text/shared/optionen/01010900.xhp\" name=\"Opcions d'impressió\">Opcions d'impressió</link>"
+msgid "<link href=\"text/shared/optionen/01010900.xhp\">Print Options</link>"
+msgstr "<link href=\"text/shared/optionen/01010900.xhp\">Opcions d'impressió</link>"
#. AeGFc
#: 01010900.xhp
@@ -4364,14 +4364,14 @@ msgctxt ""
msgid "<bookmark_value>colors; appearance</bookmark_value><bookmark_value>options; appearance</bookmark_value><bookmark_value>appearance options</bookmark_value><bookmark_value>colors; applications</bookmark_value>"
msgstr "<bookmark_value>colors; aparença</bookmark_value><bookmark_value>opcions; aparença</bookmark_value><bookmark_value>opcions d'aparença</bookmark_value><bookmark_value>colors; aplicacions</bookmark_value>"
-#. MXQk8
+#. oMUzi
#: 01012000.xhp
msgctxt ""
"01012000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01012000.xhp\" name=\"Application Colors\">Application Colors</link>"
-msgstr "<link href=\"text/shared/optionen/01012000.xhp\" name=\"Colors de l'aplicació\">Colors de l'aplicació</link>"
+msgid "<link href=\"text/shared/optionen/01012000.xhp\">Application Colors</link>"
+msgstr "<link href=\"text/shared/optionen/01012000.xhp\">Colors de l'aplicació</link>"
#. Xs6ky
#: 01012000.xhp
@@ -4553,14 +4553,14 @@ msgctxt ""
msgid "<bookmark_value>disabled persons</bookmark_value><bookmark_value>text colors for better accessibility</bookmark_value><bookmark_value>animations; accessibility options</bookmark_value><bookmark_value>Help tips; hiding</bookmark_value><bookmark_value>high contrast mode</bookmark_value><bookmark_value>accessibility; options</bookmark_value><bookmark_value>options; accessibility</bookmark_value>"
msgstr "<bookmark_value>persones discapacitades</bookmark_value><bookmark_value>colors de text per millorar l'accessibilitat</bookmark_value><bookmark_value>animacions; opcions d'accessibilitat</bookmark_value><bookmark_value>indicadors d'ajuda; amagar</bookmark_value><bookmark_value>mode d'alt contrast</bookmark_value><bookmark_value>accessibilitat; opcions</bookmark_value><bookmark_value>opcions; accessibilitat</bookmark_value>"
-#. ymbHD
+#. E7FGE
#: 01013000.xhp
msgctxt ""
"01013000.xhp\n"
"hd_id3159411\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01013000.xhp\" name=\"Accessibility\">Accessibility</link>"
-msgstr "<link href=\"text/shared/optionen/01013000.xhp\" name=\"Accessibilitat\">Accessibilitat</link>"
+msgid "<link href=\"text/shared/optionen/01013000.xhp\">Accessibility</link>"
+msgstr "<link href=\"text/shared/optionen/01013000.xhp\">Accessibilitat</link>"
#. m46an
#: 01013000.xhp
@@ -4787,23 +4787,23 @@ msgctxt ""
msgid "<bookmark_value>settings; proxies</bookmark_value><bookmark_value>proxy settings</bookmark_value>"
msgstr "<bookmark_value>paràmetres; servidors intermediaris</bookmark_value><bookmark_value>paràmetres del servidor intermediari</bookmark_value>"
-#. NLJh3
+#. xu6mb
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"hd_id3156414\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01020100.xhp\" name=\"Proxy\">Proxy</link>"
-msgstr "<link href=\"text/shared/optionen/01020100.xhp\" name=\"Servidor intermediari\">Servidor intermediari</link>"
+msgid "<link href=\"text/shared/optionen/01020100.xhp\">Proxy</link>"
+msgstr "<link href=\"text/shared/optionen/01020100.xhp\">Servidor intermediari</link>"
-#. irHG3
+#. 25FcL
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id3145090\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp#proxy\" name=\"Proxy servers\">Proxy servers</link> for accessing the Internet can be set up manually as needed."
-msgstr "Podeu configurar manualment els <link href=\"text/shared/00/00000002.xhp#proxy\" name=\"Servidors intermediaris\">servidors intermediaris</link> per accedir a Internet segons les vostres necessitats."
+msgid "<link href=\"text/shared/00/00000002.xhp#proxy\">Proxy servers</link> for accessing the Internet can be set up manually as needed."
+msgstr "Podeu configurar manualment els <link href=\"text/shared/00/00000002.xhp#proxy\">servidors intermediaris</link> per accedir a Internet segons les vostres necessitats."
#. NBdSR
#: 01020100.xhp
@@ -4814,14 +4814,14 @@ msgctxt ""
msgid "Settings"
msgstr "Paràmetres"
-#. HgoAS
+#. ZqA93
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id3153748\n"
"help.text"
-msgid "Defines the settings for the <link href=\"text/shared/00/00000002.xhp#proxy\" name=\"proxy server\">proxy server</link>."
-msgstr "Defineix els paràmetres per al <link href=\"text/shared/00/00000002.xhp#proxy\" name=\"servidor intermediari\">servidor intermediari</link>."
+msgid "Defines the settings for the <link href=\"text/shared/00/00000002.xhp#proxy\">proxy server</link>."
+msgstr "Defineix els paràmetres per al <link href=\"text/shared/00/00000002.xhp#proxy\">servidor intermediari</link>."
#. DJ6pi
#: 01020100.xhp
@@ -4913,14 +4913,14 @@ msgctxt ""
msgid "HTTP proxy"
msgstr "Servidor intermediari HTTP"
-#. CiRiL
+#. E7kmc
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id3154923\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optproxypage/http\">Type the name of the proxy server for <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link>.</ahelp> Type the port in the right-hand field."
-msgstr "<ahelp hid=\"cui/ui/optproxypage/http\">Escriviu el nom del servidor intermediari per a <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link>.</ahelp> Escriviu el port al camp de la dreta."
+msgid "<ahelp hid=\"cui/ui/optproxypage/http\">Type the name of the proxy server for <link href=\"text/shared/00/00000002.xhp#http\">HTTP</link>.</ahelp> Type the port in the right-hand field."
+msgstr "<ahelp hid=\"cui/ui/optproxypage/http\">Escriviu el nom del servidor intermediari per a <link href=\"text/shared/00/00000002.xhp#http\">HTTP</link>.</ahelp> Escriviu el port al camp de la dreta."
#. DC73X
#: 01020100.xhp
@@ -4949,14 +4949,14 @@ msgctxt ""
msgid "FTP proxy"
msgstr "Servidor intermediari FTP"
-#. iBL9u
+#. wZpCz
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optproxypage/ftp\">Type the name of the proxy server for <link href=\"text/shared/00/00000002.xhp#ftp\" name=\"FTP\">FTP</link>.</ahelp> Type the port in the right-hand field."
-msgstr "<ahelp hid=\"cui/ui/optproxypage/ftp\">Escriviu el nom del servidor intermediari per a <link href=\"text/shared/00/00000002.xhp#ftp\" name=\"FTP\">FTP</link>.</ahelp> Escriviu el port al camp de la dreta."
+msgid "<ahelp hid=\"cui/ui/optproxypage/ftp\">Type the name of the proxy server for <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link>.</ahelp> Type the port in the right-hand field."
+msgstr "<ahelp hid=\"cui/ui/optproxypage/ftp\">Escriviu el nom del servidor intermediari per a <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link>.</ahelp> Escriviu el port al camp de la dreta."
#. 2XBfa
#: 01020100.xhp
@@ -5102,14 +5102,14 @@ msgctxt ""
msgid "<bookmark_value>macros;selecting security warnings</bookmark_value><bookmark_value>security;options for documents with macros</bookmark_value><bookmark_value>macros;security</bookmark_value>"
msgstr "<bookmark_value>macros;selecció d'avisos de seguretat</bookmark_value><bookmark_value>seguretat;opcions per a documents amb macros</bookmark_value><bookmark_value>macros;seguretat</bookmark_value>"
-#. tHKGA
+#. bB6Bc
#: 01030300.xhp
msgctxt ""
"01030300.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01030300.xhp\" name=\"Security\">Security</link>"
-msgstr "<link href=\"text/shared/optionen/01030300.xhp\" name=\"Seguretat\">Seguretat</link>"
+msgid "<link href=\"text/shared/optionen/01030300.xhp\">Security</link>"
+msgstr "<link href=\"text/shared/optionen/01030300.xhp\">Seguretat</link>"
#. vVGCA
#: 01030300.xhp
@@ -5390,14 +5390,14 @@ msgctxt ""
msgid "<bookmark_value>$[officename] Basic scripts in HTML documents</bookmark_value><bookmark_value>HTML;compatibility settings</bookmark_value>"
msgstr "<bookmark_value>scripts del $[officename] Basic en documents HTML</bookmark_value><bookmark_value>HTML;paràmetres de compatibilitat</bookmark_value>"
-#. aAAiF
+#. wbyDd
#: 01030500.xhp
msgctxt ""
"01030500.xhp\n"
"hd_id3153821\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01030500.xhp\" name=\"HTML compatibility\">HTML compatibility</link>"
-msgstr "<link href=\"text/shared/optionen/01030500.xhp\" name=\"Compatibilitat HTML\">Compatibilitat HTML</link>"
+msgid "<link href=\"text/shared/optionen/01030500.xhp\">HTML compatibility</link>"
+msgstr "<link href=\"text/shared/optionen/01030500.xhp\">Compatibilitat HTML</link>"
#. vPrF6
#: 01030500.xhp
@@ -5480,14 +5480,14 @@ msgctxt ""
msgid "Import unknown HTML tags as fields"
msgstr "Importa les etiquetes HTML desconegudes com a camps"
-#. Db4up
+#. e382Z
#: 01030500.xhp
msgctxt ""
"01030500.xhp\n"
"par_id3149295\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/opthtmlpage/unknowntag\">Mark this check box if you want <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\">tags</link> that are not recognized by $[officename] to be imported as fields.</ahelp> For an opening tag, an HTML_ON field will be created with the value of the tag name. For a closing tag, an HTML_OFF will be created. These fields will be converted to tags in the HTML export."
-msgstr "<ahelp hid=\"cui/ui/opthtmlpage/unknowntag\">Activeu esta casella si voleu que les <link href=\"text/shared/00/00000002.xhp#tags\" name=\"etiquetes\">etiquetes</link> que no es reconeixen al $[officename] s'importin com a camps.</ahelp> Per a una etiqueta d'obertura, es crearà un camp HTML_ON amb el valor del nom de l'etiqueta. Per a una etiqueta de tancament, es crearà un camp HTML_OFF. Estos camps es convertiran en etiquetes a l'exportació d'HTML."
+msgid "<ahelp hid=\"cui/ui/opthtmlpage/unknowntag\">Mark this check box if you want <link href=\"text/shared/00/00000002.xhp#tags\">tags</link> that are not recognized by $[officename] to be imported as fields.</ahelp> For an opening tag, an HTML_ON field will be created with the value of the tag name. For a closing tag, an HTML_OFF will be created. These fields will be converted to tags in the HTML export."
+msgstr "<ahelp hid=\"cui/ui/opthtmlpage/unknowntag\">Activeu esta casella si voleu que les <link href=\"text/shared/00/00000002.xhp#tags\">etiquetes</link> que no es reconeixen al $[officename] s'importin com a camps.</ahelp> Per a una etiqueta d'obertura, es crearà un camp HTML_ON amb el valor del nom de l'etiqueta. Per a una etiqueta de tancament, es crearà un camp HTML_OFF. Estos camps es convertiran en etiquetes a l'exportació d'HTML."
#. MCnDY
#: 01030500.xhp
@@ -5624,14 +5624,14 @@ msgctxt ""
msgid "<variable id=\"optionentextdokument\"><ahelp hid=\".uno:SwEditOptions\">These settings determine the way text documents that are created in $[officename] are handled. It is also possible to define settings for the current text document.</ahelp></variable> The global settings are automatically saved."
msgstr "<variable id=\"optionentextdokument\"><ahelp hid=\".uno:SwEditOptions\">Estos paràmetres determinen la manera en què es gestionen els documents de text que es creen al $[officename]. També és possible definir paràmetres per al document de text actual. </ahelp></variable> Els paràmetres globals es guarden automàticament."
-#. FCRFo
+#. KFx2u
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"hd_id3159399\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Basic Fonts (Western)\">Basic Fonts (Western)</link>"
-msgstr "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Tipus de lletra bàsics (occidental)\">Tipus de lletra bàsics (occidental)</link>"
+msgid "<link href=\"text/shared/optionen/01040300.xhp\">Basic Fonts (Western)</link>"
+msgstr "<link href=\"text/shared/optionen/01040300.xhp\">Tipus de lletra bàsics (occidental)</link>"
#. GfMBt
#: 01040000.xhp
@@ -5642,14 +5642,14 @@ msgctxt ""
msgid "Specifies the settings for the basic fonts."
msgstr "Especifica els paràmetres per als tipus de lletra bàsics."
-#. fwGEu
+#. iqCRE
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"hd_id3148563\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Basic Fonts (Asian)\">Basic Fonts (Asian)</link>"
-msgstr "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Tipus de lletra bàsics (asiàtic)\">Tipus de lletra bàsics (asiàtic)</link>"
+msgid "<link href=\"text/shared/optionen/01040300.xhp\">Basic Fonts (Asian)</link>"
+msgstr "<link href=\"text/shared/optionen/01040300.xhp\">Tipus de lletra bàsics (asiàtic)</link>"
#. GdUHr
#: 01040000.xhp
@@ -5660,14 +5660,14 @@ msgctxt ""
msgid "Specifies the settings for the basic Asian fonts if Asian language support has been activated under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages.</emph>"
msgstr "Especifica els paràmetres per als tipus de lletra bàsics asiàtics si s'ha activat la compatibilitat amb llengües asiàtiques a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - Configuració de la llengua - Llengües.</emph>"
-#. QqGZX
+#. Lkg7A
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"hd_id3149294\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Basic Fonts (CTL)\">Basic Fonts (CTL)</link>"
-msgstr "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Tipus de lletra bàsics (CTL)\">Tipus de lletra bàsics (CTL)</link>"
+msgid "<link href=\"text/shared/optionen/01040300.xhp\">Basic Fonts (CTL)</link>"
+msgstr "<link href=\"text/shared/optionen/01040300.xhp\">Tipus de lletra bàsics (CTL)</link>"
#. RSYFa
#: 01040000.xhp
@@ -5696,14 +5696,14 @@ msgctxt ""
msgid "<bookmark_value>snap lines; showing when moving frames (Writer)</bookmark_value><bookmark_value>scrollbars; horizontal and vertical (Writer)</bookmark_value><bookmark_value>horizontal scrollbars (Writer)</bookmark_value><bookmark_value>vertical scrollbars (Writer)</bookmark_value><bookmark_value>smooth scrolling (Writer)</bookmark_value><bookmark_value>displaying; pictures and objects (Writer)</bookmark_value><bookmark_value>pictures; displaying in Writer (Writer)</bookmark_value><bookmark_value>objects; displaying in text documents</bookmark_value><bookmark_value>displaying; tables (Writer)</bookmark_value><bookmark_value>tables in text; displaying</bookmark_value><bookmark_value>limits of tables (Writer)</bookmark_value><bookmark_value>borders;table boundaries (Writer)</bookmark_value><bookmark_value>boundaries of tables (Writer)</bookmark_value><bookmark_value>showing; drawings and controls (Writer)</bookmark_value><bookmark_value>drawings; showing (Writer)</bookmark_value><bookmark_value>controls; showing (Writer)</bookmark_value><bookmark_value>displaying; comments in text documents</bookmark_value>"
msgstr ""
-#. Bc7jh
+#. r6bQY
#: 01040200.xhp
msgctxt ""
"01040200.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040200.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/shared/optionen/01040200.xhp\" name=\"Visualització\">Visualització</link>"
+msgid "<link href=\"text/shared/optionen/01040200.xhp\">View</link>"
+msgstr "<link href=\"text/shared/optionen/01040200.xhp\">Visualització</link>"
#. WL5Pf
#: 01040200.xhp
@@ -5786,14 +5786,14 @@ msgctxt ""
msgid "<variable id=\"grafikenaus\"><ahelp hid=\"modules/swriter/ui/viewoptionspage/graphics\">Specifies whether to display images and objects on the screen.</ahelp></variable> If these elements are hidden, you will see empty frames as placeholders."
msgstr "<variable id=\"grafikenaus\"><ahelp hid=\"modules/swriter/ui/viewoptionspage/graphics\">Especifica si cal mostrar les imatges i els objectes en pantalla. </ahelp></variable> Si aquests elements s'amaguen, veureu marcs buits com a espais reservats."
-#. ACUX3
+#. imDD5
#: 01040200.xhp
msgctxt ""
"01040200.xhp\n"
"par_id3154944\n"
"help.text"
-msgid "You can also control the display of graphics through the <link href=\"text/swriter/02/18120000.xhp\" name=\"Graphics\"><emph>Images and Charts</emph></link> icon. If a text document is open, this icon is displayed on the <emph>Tools</emph> bar."
-msgstr "També podeu controlar la visualització de gràfics mitjançant la icona <link href=\"text/swriter/02/18120000.xhp\" name=\"Gràfics\"><emph>Gràfics activats/desactivats</emph></link>. Si s'obri un document de text, esta icona es mostra a la barra <emph>Eines</emph>."
+msgid "You can also control the display of graphics through the <link href=\"text/swriter/02/18120000.xhp\"><emph>Images and Charts</emph></link> icon. If a text document is open, this icon is displayed on the <emph>Tools</emph> bar."
+msgstr "També podeu controlar la visualització de gràfics mitjançant la icona <link href=\"text/swriter/02/18120000.xhp\"><emph>Gràfics activats/desactivats</emph></link>. Si s'obri un document de text, esta icona es mostra a la barra <emph>Eines</emph>."
#. dciDP
#: 01040200.xhp
@@ -5903,13 +5903,13 @@ msgctxt ""
msgid "Hidden paragraphs"
msgstr ""
-#. nH86m
+#. QDXAP
#: 01040200.xhp
msgctxt ""
"01040200.xhp\n"
"par_id3149418\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddenparafield\">Display paragraphs that contain a <emph>Hidden Paragraph</emph> field.</ahelp> This option has the same function as the menu command <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/03140000.xhp\" name=\"View - Hidden Paragraphs\"><menuitem>View - Field Hidden Paragraphs</menuitem></link></caseinline><defaultinline>View - Hidden Paragraphs</defaultinline></switchinline>."
+msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddenparafield\">Display paragraphs that contain a <emph>Hidden Paragraph</emph> field.</ahelp> This option has the same function as the menu command <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/03140000.xhp\"><menuitem>View - Field Hidden Paragraphs</menuitem></link></caseinline><defaultinline>View - Hidden Paragraphs</defaultinline></switchinline>."
msgstr ""
#. 5TDVz
@@ -6074,13 +6074,13 @@ msgctxt ""
msgid "Measurement unit"
msgstr ""
-#. hG7QC
+#. F3Fw4
#: 01040200.xhp
msgctxt ""
"01040200.xhp\n"
"par_id3154716\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/viewoptionspage/measureunit\">Specifies the <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Unit\">Unit</link> for HTML documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/viewoptionspage/measureunit\">Specifies the <link href=\"text/shared/00/00000003.xhp#measurement_units\">Unit</link> for HTML documents.</ahelp>"
msgstr ""
#. GCy4m
@@ -6101,14 +6101,14 @@ msgctxt ""
msgid "<bookmark_value>fonts;default settings</bookmark_value><bookmark_value>defaults;fonts</bookmark_value><bookmark_value>basic fonts</bookmark_value><bookmark_value>predefining fonts</bookmark_value><bookmark_value>fonts;changing in templates</bookmark_value><bookmark_value>templates;changing basic fonts</bookmark_value><bookmark_value>paragraph styles;modifying basic fonts</bookmark_value>"
msgstr "<bookmark_value>tipus de lletra;paràmetres per defecte</bookmark_value><bookmark_value>paràmetres per defecte;tipus de lletra</bookmark_value><bookmark_value>tipus de lletra bàsics</bookmark_value><bookmark_value>predefinició de tipus de lletra</bookmark_value><bookmark_value>tipus de lletra;canvi en plantilles</bookmark_value><bookmark_value>plantilles;canvi de tipus de lletra bàsics</bookmark_value><bookmark_value>estils de paràgraf;modificació del tipus de lletra bàsics</bookmark_value>"
-#. mzfAp
+#. EMeGf
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"hd_id3151299\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Basic Fonts\">Basic Fonts</link>"
-msgstr "<link href=\"text/shared/optionen/01040300.xhp\" name=\"Tipus de lletra bàsics\">Tipus de lletra bàsics</link>"
+msgid "<link href=\"text/shared/optionen/01040300.xhp\">Basic Fonts</link>"
+msgstr "<link href=\"text/shared/optionen/01040300.xhp\">Tipus de lletra bàsics</link>"
#. BpL74
#: 01040300.xhp
@@ -6128,13 +6128,13 @@ msgctxt ""
msgid "You can also change the basic fonts for Asian and complex text layout languages if their support is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
msgstr "També podeu canviar els tipus de lletra bàsics per a llengües asiàtiques i de disposició complexa de text si se n'ha habilitat la compatibilitat a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - Configuració de la llengua - Llengües</emph>."
-#. DeGFa
+#. AVdy9
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3145609\n"
"help.text"
-msgid "These settings define the basic fonts for the predefined templates. You can also modify or customize the <link href=\"text/shared/guide/standard_template.xhp\" name=\"default text templates\">default text templates</link>."
+msgid "These settings define the basic fonts for the predefined templates. You can also modify or customize the <link href=\"text/shared/guide/standard_template.xhp\">default text templates</link>."
msgstr ""
#. Cd5Am
@@ -6218,13 +6218,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the font and font size for the <emph>List</emph> paragraph style, which is inherited by all derived paragraph styles.</ahelp>"
msgstr ""
-#. aQFY4
+#. FJSEm
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><menuitem>Format - Bullets and Numbering</menuitem></link></caseinline><defaultinline><menuitem>Format - Bullets and Numbering</menuitem></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
+msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\"><menuitem>Format - Bullets and Numbering</menuitem></link></caseinline><defaultinline><menuitem>Format - Bullets and Numbering</menuitem></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
msgstr ""
#. 3nSZ5
@@ -6281,14 +6281,14 @@ msgctxt ""
msgid "<bookmark_value>pictures; printing</bookmark_value><bookmark_value>tables in text; printing</bookmark_value><bookmark_value>drawings; printing in text documents </bookmark_value><bookmark_value>controls; printing</bookmark_value><bookmark_value>backgrounds; printing</bookmark_value><bookmark_value>printing; elements in text documents</bookmark_value><bookmark_value>text documents; print settings</bookmark_value><bookmark_value>printing; text always in black</bookmark_value><bookmark_value>black printing in Calc</bookmark_value><bookmark_value>printing; left/right pages</bookmark_value><bookmark_value>even/odd pages;printing</bookmark_value><bookmark_value>printing; text in reverse order</bookmark_value><bookmark_value>reversing printing order</bookmark_value><bookmark_value>brochures; printing several</bookmark_value><bookmark_value>printing; brochures</bookmark_value><bookmark_value>comments; printing in text</bookmark_value><bookmark_value>printing; creating individual jobs</bookmark_value><bookmark_value>faxes;selecting a fax machine</bookmark_value>"
msgstr "<bookmark_value>imatges; impressió</bookmark_value><bookmark_value>taules en text; impressió</bookmark_value><bookmark_value>dibuixos; impressió en documents de text</bookmark_value><bookmark_value>controls; impressió</bookmark_value><bookmark_value>fons; impressió</bookmark_value><bookmark_value>impressió; elements en documents de text</bookmark_value><bookmark_value>documents de text; paràmetres d'impressió</bookmark_value><bookmark_value>impressió; text sempre en negre</bookmark_value><bookmark_value>impressió en negre al Calc</bookmark_value><bookmark_value>impressió; pàgines de l'esquerra/de la dreta</bookmark_value><bookmark_value>pàgines parelles/senars;impressió</bookmark_value><bookmark_value>impressió; text en orde invers</bookmark_value><bookmark_value>inversió de l'orde d'impressió</bookmark_value><bookmark_value>fullets; impressió de diversos</bookmark_value><bookmark_value>impressió; fullets</bookmark_value><bookmark_value>comentaris; impressió en text</bookmark_value><bookmark_value>impressió; creació de tasques individuals</bookmark_value><bookmark_value>faxos;selecció d'una màquina de fax</bookmark_value>"
-#. 8ZZMr
+#. v867w
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"hd_id3156414\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040400.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/optionen/01040400.xhp\" name=\"Impressió\">Impressió</link>"
+msgid "<link href=\"text/shared/optionen/01040400.xhp\">Print</link>"
+msgstr "<link href=\"text/shared/optionen/01040400.xhp\">Impressió</link>"
#. nY4Yv
#: 01040400.xhp
@@ -6641,14 +6641,14 @@ msgctxt ""
msgid "<bookmark_value>inserting; new text tables defaults</bookmark_value><bookmark_value>tables in text; default settings</bookmark_value><bookmark_value>aligning;tables in text</bookmark_value><bookmark_value>number formats; recognition in text tables</bookmark_value>"
msgstr "<bookmark_value>inserció; paràmetres per defecte de taules de text noves</bookmark_value><bookmark_value>taules en text; paràmetres per defecte</bookmark_value><bookmark_value>alineació; taules en text</bookmark_value><bookmark_value>formats de nombre; reconeixement en taules de text</bookmark_value>"
-#. 96PPp
+#. xn32Y
#: 01040500.xhp
msgctxt ""
"01040500.xhp\n"
"hd_id3153087\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040500.xhp\" name=\"Table\">Table</link>"
-msgstr "<link href=\"text/shared/optionen/01040500.xhp\" name=\"Taula\">Taula</link>"
+msgid "<link href=\"text/shared/optionen/01040500.xhp\">Table</link>"
+msgstr "<link href=\"text/shared/optionen/01040500.xhp\">Taula</link>"
#. wBsWL
#: 01040500.xhp
@@ -6659,14 +6659,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/opttablepage/OptTablePage\">Defines the attributes of tables in text documents.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/optredlinepage/OptRedLinePage\">Defineix l'aparença dels canvis al document.</ahelp>"
-#. GrwCf
+#. EAC7r
#: 01040500.xhp
msgctxt ""
"01040500.xhp\n"
"par_id3145609\n"
"help.text"
-msgid "Specifies the default settings for columns and rows and the table mode. Also specifies the standard values for moving and inserting columns and rows. For further information see <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05090201.xhp\" name=\"Editing Tables Using the Keyboard\">Editing Tables Using the Keyboard</link></caseinline><defaultinline> in the $[officename] Writer Help</defaultinline></switchinline>."
-msgstr "Especifica els paràmetres per defecte per a columnes i files i el mode de taula. També especifica els valors estàndard per moure i inserir columnes i files. Per obtindre més informació, consulteu <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05090201.xhp\" name=\"Edició de taules mitjançant el teclat\">Edició de taules mitjançant el teclat</link></caseinline><defaultinline> a l'Ajuda del $[officename] Writer</defaultinline></switchinline>."
+msgid "Specifies the default settings for columns and rows and the table mode. Also specifies the standard values for moving and inserting columns and rows. For further information see <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05090201.xhp\">Editing Tables Using the Keyboard</link></caseinline><defaultinline> in the $[officename] Writer Help</defaultinline></switchinline>."
+msgstr "Especifica els paràmetres per defecte per a columnes i files i el mode de taula. També especifica els valors estàndard per moure i inserir columnes i files. Per obtindre més informació, consulteu <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05090201.xhp\">Edició de taules mitjançant el teclat</link></caseinline><defaultinline> a l'Ajuda del $[officename] Writer</defaultinline></switchinline>."
#. dTFTF
#: 01040500.xhp
@@ -7091,14 +7091,14 @@ msgctxt ""
msgid "<bookmark_value>non-printing characters (Writer)</bookmark_value><bookmark_value>formatting marks (Writer)</bookmark_value><bookmark_value>displaying; non-printing characters (Writer)</bookmark_value><bookmark_value>displaying; formatting marks (Writer)</bookmark_value><bookmark_value>paragraph marks; displaying (Writer)</bookmark_value><bookmark_value>characters; displaying only on screen (Writer)</bookmark_value><bookmark_value>optional hyphens (Writer)</bookmark_value><bookmark_value>soft hyphens (Writer)</bookmark_value><bookmark_value>hyphens; displaying custom (Writer)</bookmark_value><bookmark_value>custom hyphens (Writer)</bookmark_value><bookmark_value>spaces; displaying (Writer)</bookmark_value><bookmark_value>spaces; showing protected spaces (Writer)</bookmark_value><bookmark_value>protected spaces; showing (Writer)</bookmark_value><bookmark_value>non-breaking spaces (Writer)</bookmark_value><bookmark_value>tab stops; displaying (Writer)</bookmark_value><bookmark_value>break display (Writer)</bookmark_value><bookmark_value>hidden text;showing (Writer)</bookmark_value><bookmark_value>hidden fields display (Writer)</bookmark_value><bookmark_value>paragraphs; hidden paragraphs (Writer)</bookmark_value><bookmark_value>cursor; allowing in protected areas (Writer)</bookmark_value><bookmark_value>Math baseline alignment (Writer)</bookmark_value>"
msgstr ""
-#. 4FxhX
+#. QgTuK
#: 01040600.xhp
msgctxt ""
"01040600.xhp\n"
"hd_id3154285\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040600.xhp\" name=\"Formatting Aids\">Formatting Aids</link>"
-msgstr "<link href=\"text/shared/optionen/01040600.xhp\" name=\"Ajudes a la formatació\">Ajudes a la formatació</link>"
+msgid "<link href=\"text/shared/optionen/01040600.xhp\">Formatting Aids</link>"
+msgstr "<link href=\"text/shared/optionen/01040600.xhp\">Ajudes a la formatació</link>"
#. GzhGZ
#: 01040600.xhp
@@ -7145,14 +7145,14 @@ msgctxt ""
msgid "Display formatting"
msgstr ""
-#. 7EDoZ
+#. EDgFW
#: 01040600.xhp
msgctxt ""
"01040600.xhp\n"
"par_id3156343\n"
"help.text"
-msgid "Defines which formatting marks are visible on screen. Activate the <link href=\"text/swriter/01/03100000.xhp\" name=\"Formatting marks On/Off\"><emph>Formatting Marks</emph></link> icon on the <emph>Standard</emph> bar. All characters that you have selected on the <emph>Formatting Aids</emph> tab page will be displayed."
-msgstr "Defineix quines marques de formatació són visibles en pantalla. Activeu la icona <link href=\"text/swriter/01/03100000.xhp\" name=\"Marques de formatació activades/desactivades\"><emph>Marques de formatació activades/desactivades</emph></link> a la barra <emph>Estàndard</emph>. Es mostraran tots els caràcters que hàgeu seleccionat a la pàgina <emph>Ajudes a la formatació</emph>."
+msgid "Defines which formatting marks are visible on screen. Activate the <link href=\"text/swriter/01/03100000.xhp\"><emph>Formatting Marks</emph></link> icon on the <emph>Standard</emph> bar. All characters that you have selected on the <emph>Formatting Aids</emph> tab page will be displayed."
+msgstr "Defineix quines marques de formatació són visibles en pantalla. Activeu la icona <link href=\"text/swriter/01/03100000.xhp\"><emph>Marques de formatació activades/desactivades</emph></link> a la barra <emph>Estàndard</emph>. Es mostraran tots els caràcters que hàgeu seleccionat a la pàgina <emph>Ajudes a la formatació</emph>."
#. sTExC
#: 01040600.xhp
@@ -7361,13 +7361,13 @@ msgctxt ""
msgid "Direct cursor"
msgstr "Cursor directe"
-#. oruCQ
+#. YJowa
#: 01040600.xhp
msgctxt ""
"01040600.xhp\n"
"par_id3150749\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/cursoronoff\">Activates the direct cursor.</ahelp> You can also activate this function by clicking the <link href=\"text/swriter/02/18130000.xhp\" name=\"Direct Cursor Mode\">Toggle Direct Cursor Mode</link> icon on the Tools bar or by choosing the <emph>Edit - Direct Cursor Mode</emph> command in a text document."
+msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/cursoronoff\">Activates the direct cursor.</ahelp> You can also activate this function by clicking the <link href=\"text/swriter/02/18130000.xhp\">Toggle Direct Cursor Mode</link> icon on the Tools bar or by choosing the <emph>Edit - Direct Cursor Mode</emph> command in a text document."
msgstr ""
#. BD3Cs
@@ -7496,14 +7496,14 @@ msgctxt ""
msgid "Changes"
msgstr "Canvis"
-#. WRD4W
+#. j77rz
#: 01040700.xhp
msgctxt ""
"01040700.xhp\n"
"hd_id3153823\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040700.xhp\" name=\"Changes\">Changes</link>"
-msgstr "<link href=\"text/shared/optionen/01040700.xhp\" name=\"Canvis\">Canvis</link>"
+msgid "<link href=\"text/shared/optionen/01040700.xhp\">Changes</link>"
+msgstr "<link href=\"text/shared/optionen/01040700.xhp\">Canvis</link>"
#. Pejwx
#: 01040700.xhp
@@ -7514,13 +7514,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/optredlinepage/OptRedLinePage\">Defines the appearance of changes in the document.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/optredlinepage/OptRedLinePage\">Defineix l'aparença dels canvis al document.</ahelp>"
-#. t5def
+#. ZPkCe
#: 01040700.xhp
msgctxt ""
"01040700.xhp\n"
"par_id3156153\n"
"help.text"
-msgid "To record or show changes in your text or spreadsheet document, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes\"><emph>Edit - Track Changes - Record</emph></link> or <emph>Edit - Track Changes - Show</emph>."
+msgid "To record or show changes in your text or spreadsheet document, choose <link href=\"text/shared/01/02230000.xhp\"><emph>Edit - Track Changes - Record</emph></link> or <emph>Edit - Track Changes - Show</emph>."
msgstr ""
#. FGDFT
@@ -7685,13 +7685,13 @@ msgctxt ""
msgid "<bookmark_value>document comparison;options</bookmark_value> <bookmark_value>comparison;automatic</bookmark_value> <bookmark_value>comparison;by word</bookmark_value> <bookmark_value>comparison;by character</bookmark_value> <bookmark_value>document comparison;random ID</bookmark_value>"
msgstr ""
-#. Bw9mZ
+#. bqZpq
#: 01040800.xhp
msgctxt ""
"01040800.xhp\n"
"hd_id801597320214148\n"
"help.text"
-msgid "<variable id=\"comparisonoptionh1\"><link href=\"text/shared/optionen/01040800.xhp\" name=\"Comparison\">Document Comparison Options</link></variable>"
+msgid "<variable id=\"comparisonoptionh1\"><link href=\"text/shared/optionen/01040800.xhp\">Document Comparison Options</link></variable>"
msgstr ""
#. DRYng
@@ -7847,14 +7847,14 @@ msgctxt ""
msgid "<bookmark_value>links; updating options (Writer)</bookmark_value> <bookmark_value>updating; links in text documents</bookmark_value> <bookmark_value>updating; fields and charts, automatically (Writer)</bookmark_value> <bookmark_value>tab stops; spacing in text documents</bookmark_value> <bookmark_value>spacing; tab stops in text documents</bookmark_value> <bookmark_value>word counts; separators</bookmark_value>"
msgstr ""
-#. JhHC7
+#. smQH7
#: 01040900.xhp
msgctxt ""
"01040900.xhp\n"
"hd_id3155892\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01040900.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/optionen/01040900.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/shared/optionen/01040900.xhp\">General</link>"
+msgstr "<link href=\"text/shared/optionen/01040900.xhp\">General</link>"
#. 7xNxH
#: 01040900.xhp
@@ -8171,13 +8171,13 @@ msgctxt ""
msgid "Measurement unit"
msgstr "Unitat de mesura"
-#. TutNJ
+#. EbccA
#: 01040900.xhp
msgctxt ""
"01040900.xhp\n"
"par_id3146147\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/optgeneralpage/metric\">Specifies the <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"unit of measurement\">unit of measurement</link> for text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/optgeneralpage/metric\">Specifies the <link href=\"text/shared/00/00000003.xhp#measurement_units\">unit of measurement</link> for text documents.</ahelp>"
msgstr ""
#. WmFn3
@@ -8999,14 +8999,14 @@ msgctxt ""
msgid "<bookmark_value>grids; defaults (Writer/Calc)</bookmark_value> <bookmark_value>defaults; grids (Writer/Calc)</bookmark_value> <bookmark_value>snap grid defaults (Writer/Calc)</bookmark_value>"
msgstr "<bookmark_value>graelles; paràmetres per defecte (Writer/Calc)</bookmark_value><bookmark_value>paràmetres per defecte; graelles (Writer/Calc)</bookmark_value><bookmark_value>paràmetres per defecte d'ajustament a la graella (Writer/Calc)</bookmark_value>"
-#. RQSgP
+#. uniym
#: 01050100.xhp
msgctxt ""
"01050100.xhp\n"
"hd_id3147226\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01050100.xhp\" name=\"Grid\">Grid</link>"
-msgstr "<link href=\"text/shared/optionen/01050100.xhp\" name=\"Graella\">Graella</link>"
+msgid "<link href=\"text/shared/optionen/01050100.xhp\">Grid</link>"
+msgstr "<link href=\"text/shared/optionen/01050100.xhp\">Graella</link>"
#. kxs4A
#: 01050100.xhp
@@ -9269,14 +9269,14 @@ msgctxt ""
msgid "Background"
msgstr "Fons"
-#. dosgE
+#. WKdTL
#: 01050300.xhp
msgctxt ""
"01050300.xhp\n"
"hd_id3147653\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01050300.xhp\" name=\"Background\">Background</link>"
-msgstr "<link href=\"text/shared/optionen/01050300.xhp\" name=\"Fons\">Fons</link>"
+msgid "<link href=\"text/shared/optionen/01050300.xhp\">Background</link>"
+msgstr "<link href=\"text/shared/optionen/01050300.xhp\">Fons</link>"
#. h9iJH
#: 01050300.xhp
@@ -9341,14 +9341,14 @@ msgctxt ""
msgid "<bookmark_value>cells; showing grid lines (Calc)</bookmark_value> <bookmark_value>borders; cells on screen (Calc)</bookmark_value> <bookmark_value>grids; displaying lines (Calc)</bookmark_value> <bookmark_value>colors; grid lines and cells (Calc)</bookmark_value> <bookmark_value>page breaks; displaying (Calc)</bookmark_value> <bookmark_value>guides; showing (Calc)</bookmark_value> <bookmark_value>displaying; zero values (Calc)</bookmark_value> <bookmark_value>zero values; displaying (Calc)</bookmark_value> <bookmark_value>tables in spreadsheets; value highlighting</bookmark_value> <bookmark_value>cells; formatting without effect (Calc)</bookmark_value> <bookmark_value>cells; coloring (Calc)</bookmark_value> <bookmark_value>anchors; displaying (Calc)</bookmark_value> <bookmark_value>colors;restriction (Calc)</bookmark_value> <bookmark_value>text overflow in spreadsheet cells</bookmark_value> <bookmark_value>references; displaying in color (Calc)</bookmark_value> <bookmark_value>objects; displaying in spreadsheets</bookmark_value> <bookmark_value>pictures; displaying in Calc</bookmark_value> <bookmark_value>charts; displaying (Calc)</bookmark_value> <bookmark_value>draw objects; displaying (Calc)</bookmark_value> <bookmark_value>row headers; displaying (Calc)</bookmark_value> <bookmark_value>column headers; displaying (Calc)</bookmark_value> <bookmark_value>scrollbars; displaying (Calc)</bookmark_value> <bookmark_value>sheet tabs; displaying</bookmark_value> <bookmark_value>tabs; displaying sheet tabs</bookmark_value> <bookmark_value>outlines;outline symbols</bookmark_value>"
msgstr "<bookmark_value>cel·les; visualització de les línies de la graella (Calc)</bookmark_value> <bookmark_value>vores; cel·les a la pantalla (Calc)</bookmark_value> <bookmark_value>graelles; visualització de les línies (Calc)</bookmark_value> <bookmark_value>colors; línies de la graella i cel·les (Calc)</bookmark_value> <bookmark_value>salts de pàgina; visualització (Calc)</bookmark_value> <bookmark_value>guies; visualització (Calc)</bookmark_value> <bookmark_value>visualització; valors zero (Calc)</bookmark_value> <bookmark_value>valors zero; visualització (Calc)</bookmark_value> <bookmark_value>taules als fulls de càlcul; realçament dels valors</bookmark_value> <bookmark_value>cel·les; formatació sense efecte (Calc)</bookmark_value> <bookmark_value>cel·les; acoloriment (Calc)</bookmark_value> <bookmark_value>àncores; visualització (Calc)</bookmark_value> <bookmark_value>colors; restricció (Calc)</bookmark_value> <bookmark_value>Desbordament de text a les cel·les del full de càlcul</bookmark_value> <bookmark_value>referències; visualització en color (Calc)</bookmark_value> <bookmark_value>Objectes; visualització als fulls de càlcul</bookmark_value> <bookmark_value>imatges; visualització al Calc</bookmark_value> <bookmark_value>diagrames; visualització (Calc)</bookmark_value> <bookmark_value>objectes de dibuix; visualització (Calc)</bookmark_value> <bookmark_value>capçaleres de línia; visualització (Calc)</bookmark_value> <bookmark_value>capçaleres de columna; visualització (Calc)</bookmark_value> <bookmark_value>barres de desplaçament; visualització (Calc)</bookmark_value> <bookmark_value>pestanyes de fulls; visualització</bookmark_value> <bookmark_value>pestanyes; visualització de les pestanyes de fulls</bookmark_value> <bookmark_value>contorn; símbols del contorn</bookmark_value>"
-#. 2LsVx
+#. uCp3Q
#: 01060100.xhp
msgctxt ""
"01060100.xhp\n"
"hd_id3150445\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060100.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/shared/optionen/01060100.xhp\" name=\"Visualització\">Visualització</link>"
+msgid "<link href=\"text/shared/optionen/01060100.xhp\">View</link>"
+msgstr "<link href=\"text/shared/optionen/01060100.xhp\">Visualització</link>"
#. Tdqxy
#: 01060100.xhp
@@ -9386,13 +9386,13 @@ msgctxt ""
msgid "Grid lines"
msgstr "Línies de la graella"
-#. SW7kA
+#. ZU82E
#: 01060100.xhp
msgctxt ""
"01060100.xhp\n"
"par_id3153088\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/grid\" visibility=\"visible\">Specifies when grid lines will be displayed. Default is to display grid lines only on cells that do not have a background color. You can choose to also display grid lines on cells with background color, or to hide them.</ahelp> For printing, choose <emph>Format - Page Style - </emph><link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\"><emph>Sheet</emph></link> and mark the <emph>Grid</emph> check box."
+msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/grid\" visibility=\"visible\">Specifies when grid lines will be displayed. Default is to display grid lines only on cells that do not have a background color. You can choose to also display grid lines on cells with background color, or to hide them.</ahelp> For printing, choose <emph>Format - Page Style - </emph><link href=\"text/scalc/01/05070500.xhp\"><emph>Sheet</emph></link> and mark the <emph>Grid</emph> check box."
msgstr ""
#. QkscY
@@ -9530,14 +9530,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:NoteVisible\">To display a comment permanently, select the <emph>Show comment</emph> command from the cell's context menu.</ahelp>"
msgstr "<ahelp hid=\".uno:NoteVisible\">Per mostrar una comentari de manera permanent, seleccioneu l'orde <emph>Mostra el comentari</emph> del menú contextual de la cel·la.</ahelp>"
-#. mmHSm
+#. Dk85Q
#: 01060100.xhp
msgctxt ""
"01060100.xhp\n"
"par_id3149667\n"
"help.text"
-msgid "You can type and edit comments with the <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link> command. Comments that are permanently displayed can be edited by clicking the comment box. Click the Navigator and under the <emph>Comments</emph> entry you can view all comments in the current document. By double clicking a comment in Navigator, the cursor will jump to the corresponding cell containing the comment."
-msgstr "Podeu escriure i editar comentaris mitjançant l'orde <link href=\"text/shared/01/04050000.xhp\" name=\"Insereix ▸ Comentari\"><emph>Insereix ▸ Comentari</emph></link>. Per editar els comentaris que es mostren de manera permanent, feu clic al quadre de comentari. Feu clic al Navegador i a l'entrada <emph>Comentaris</emph> podreu visualitzar tots els comentaris del document actual. Si feu doble clic en un comentari al Navegador, el cursor saltarà a la cel·la que continga el comentari."
+msgid "You can type and edit comments with the <link href=\"text/shared/01/04050000.xhp\"><emph>Insert - Comment</emph></link> command. Comments that are permanently displayed can be edited by clicking the comment box. Click the Navigator and under the <emph>Comments</emph> entry you can view all comments in the current document. By double clicking a comment in Navigator, the cursor will jump to the corresponding cell containing the comment."
+msgstr "Podeu escriure i editar comentaris mitjançant l'orde <link href=\"text/shared/01/04050000.xhp\"><emph>Insereix ▸ Comentari</emph></link>. Per editar els comentaris que es mostren de manera permanent, feu clic al quadre de comentari. Feu clic al Navegador i a l'entrada <emph>Comentaris</emph> podreu visualitzar tots els comentaris del document actual. Si feu doble clic en un comentari al Navegador, el cursor saltarà a la cel·la que continga el comentari."
#. qmC7Q
#: 01060100.xhp
@@ -9800,14 +9800,14 @@ msgctxt ""
msgid "Sheet tabs"
msgstr "Pestanyes del full"
-#. ZrLLB
+#. zEFP5
#: 01060100.xhp
msgctxt ""
"01060100.xhp\n"
"par_id3154658\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/tblreg\">Specifies whether to display the sheet tabs at the bottom of the spreadsheet document.</ahelp> If this box is not checked, you will only be able to switch between the sheets through the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
-msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/tblreg\">Especifica si es mostren les pestanyes dels fulls a la part inferior del document de full de càlcul. </ahelp> Si esta casella no està activada, només vos podreu moure entre els fulls a través del <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navegador\">Navegador</link></caseinline><defaultinline>Navegador</defaultinline></switchinline>. Tingueu en compte que hi ha un botó lliscant entre la barra de desplaçament horitzontal i les pestanyes del full que es pot establir en un extrem."
+msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/tblreg\">Specifies whether to display the sheet tabs at the bottom of the spreadsheet document.</ahelp> If this box is not checked, you will only be able to switch between the sheets through the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
+msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/tblreg\">Especifica si es mostren les pestanyes dels fulls a la part inferior del document de full de càlcul. </ahelp> Si esta casella no està activada, només vos podreu moure entre els fulls a través del <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\">Navegador</link></caseinline><defaultinline>Navegador</defaultinline></switchinline>. Tingueu en compte que hi ha un botó lliscant entre la barra de desplaçament horitzontal i les pestanyes del full que es pot establir en un extrem."
#. ytaBT
#: 01060100.xhp
@@ -9818,14 +9818,14 @@ msgctxt ""
msgid "Outline symbols"
msgstr "Símbols d'esquema"
-#. Xi3JZ
+#. AB5TU
#: 01060100.xhp
msgctxt ""
"01060100.xhp\n"
"par_id3145135\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/outline\">If you have defined an <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link></caseinline><defaultinline>outline</defaultinline></switchinline>, the <emph>Outline symbols</emph> option specifies whether to view the outline symbols at the border of the sheet.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/outline\">Si heu definit un <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/12080000.xhp\" name=\"esquema\">esquema</link></caseinline><defaultinline>esquema</defaultinline></switchinline>, l'opció <emph>Símbols d'esquema</emph> especifica si es veuran els símbols d'esquema al full.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/outline\">If you have defined an <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/12080000.xhp\">outline</link></caseinline><defaultinline>outline</defaultinline></switchinline>, the <emph>Outline symbols</emph> option specifies whether to view the outline symbols at the border of the sheet.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/outline\">Si heu definit un <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/12080000.xhp\">esquema</link></caseinline><defaultinline>esquema</defaultinline></switchinline>, l'opció <emph>Símbols d'esquema</emph> especifica si es veuran els símbols d'esquema al full.</ahelp>"
#. bBVnj
#: 01060300.xhp
@@ -9845,14 +9845,14 @@ msgctxt ""
msgid "<bookmark_value>metrics;in sheets</bookmark_value> <bookmark_value>tab stops; setting in sheets</bookmark_value> <bookmark_value>cells; cursor positions after input (Calc)</bookmark_value> <bookmark_value>edit mode; through Enter key (Calc)</bookmark_value> <bookmark_value>formatting; expanding (Calc)</bookmark_value> <bookmark_value>expanding formatting (Calc)</bookmark_value> <bookmark_value>references; expanding (Calc)</bookmark_value> <bookmark_value>column headers; highlighting (Calc)</bookmark_value> <bookmark_value>row headers; highlighting (Calc)</bookmark_value>"
msgstr ""
-#. ViFyA
+#. VgwEn
#: 01060300.xhp
msgctxt ""
"01060300.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060300.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/optionen/01060300.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/shared/optionen/01060300.xhp\">General</link>"
+msgstr "<link href=\"text/shared/optionen/01060300.xhp\">General</link>"
#. E3z4y
#: 01060300.xhp
@@ -10088,14 +10088,14 @@ msgctxt ""
msgid "Sort Lists"
msgstr "Llistes d'ordenació"
-#. A83ea
+#. bPhc7
#: 01060400.xhp
msgctxt ""
"01060400.xhp\n"
"hd_id3145382\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=\"Llistes d'ordenació\">Llistes d'ordenació</link>"
+msgid "<link href=\"text/shared/optionen/01060400.xhp\">Sort Lists</link>"
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\">Llistes d'ordenació</link>"
#. 2o7qE
#: 01060400.xhp
@@ -10169,14 +10169,14 @@ msgctxt ""
msgid "Copy"
msgstr "Copia"
-#. NXCJ8
+#. rVZRC
#: 01060400.xhp
msgctxt ""
"01060400.xhp\n"
"par_id3158409\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/optsortlists/copy\">Copies the contents of the cells in the <emph>Copy list from</emph> box. If you select a reference to related rows and columns, the <link href=\"text/shared/optionen/01060401.xhp\" name=\"Copy List\"><emph>Copy List</emph></link> dialog appears after clicking the button. You can use this dialog to define if the reference is converted to sort lists by row or by column.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optsortlists/copy\">Copia el contingut de les cel·les al quadre <emph>Copia la llista des de</emph>. Si seleccioneu una referència a files i columnes relacionades, apareixerà el diàleg <link href=\"text/shared/optionen/01060401.xhp\" name=\"Copia la llista\"><emph>Copia la llista</emph></link> després de fer clic al botó. Podeu utilitzar este diàleg per definir si la referència es converteix en llistes d'ordenació per fila o per columna.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/optsortlists/copy\">Copies the contents of the cells in the <emph>Copy list from</emph> box. If you select a reference to related rows and columns, the <link href=\"text/shared/optionen/01060401.xhp\"><emph>Copy List</emph></link> dialog appears after clicking the button. You can use this dialog to define if the reference is converted to sort lists by row or by column.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/optsortlists/copy\">Copia el contingut de les cel·les al quadre <emph>Copia la llista des de</emph>. Si seleccioneu una referència a files i columnes relacionades, apareixerà el diàleg <link href=\"text/shared/optionen/01060401.xhp\"><emph>Copia la llista</emph></link> després de fer clic al botó. Podeu utilitzar este diàleg per definir si la referència es converteix en llistes d'ordenació per fila o per columna.</ahelp>"
#. ai3rf
#: 01060400.xhp
@@ -10322,14 +10322,14 @@ msgctxt ""
msgid "<bookmark_value>references; iterative (Calc)</bookmark_value> <bookmark_value>calculating;iterative references (Calc)</bookmark_value> <bookmark_value>iterative references in spreadsheets</bookmark_value> <bookmark_value>recursions in spreadsheets</bookmark_value> <bookmark_value>dates; default (Calc)</bookmark_value> <bookmark_value>dates; start 1900/01/01 (Calc)</bookmark_value> <bookmark_value>dates; start 1904/01/01 (Calc)</bookmark_value> <bookmark_value>case sensitivity;comparing cell contents (Calc)</bookmark_value> <bookmark_value>decimal places displayed (Calc)</bookmark_value> <bookmark_value>precision as shown (Calc)</bookmark_value> <bookmark_value>values; rounded as shown (Calc)</bookmark_value> <bookmark_value>rounding precision (Calc)</bookmark_value> <bookmark_value>search criteria for database functions in cells</bookmark_value> <bookmark_value>Excel; search criteria</bookmark_value>"
msgstr "<bookmark_value>referències; iteratives (Calc)</bookmark_value><bookmark_value>càlcul;referències iteratives (Calc)</bookmark_value><bookmark_value>referències iteratives en fulls de càlcul</bookmark_value><bookmark_value>recursivitats en fulls de càlcul</bookmark_value><bookmark_value>dates; per defecte (Calc)</bookmark_value><bookmark_value>dates; inici el 01/01/1900 (Calc)</bookmark_value><bookmark_value>dates; inici el 01/01/1904 (Calc)</bookmark_value><bookmark_value>distinció entre majúscules i minúscules;comparació del contingut de cel·les (Calc)</bookmark_value><bookmark_value>llocs decimals mostrats (Calc)</bookmark_value><bookmark_value>precisió com es mostra (Calc)</bookmark_value><bookmark_value>valors; arrodonits com es mostra (Calc)</bookmark_value><bookmark_value>precisió d'arrodoniment (Calc)</bookmark_value><bookmark_value>criteris de busca per a funcions de base de dades en cel·les</bookmark_value><bookmark_value>Excel; criteris de busca</bookmark_value>"
-#. CUWxB
+#. GpDSy
#: 01060500.xhp
msgctxt ""
"01060500.xhp\n"
"hd_id3145071\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
-msgstr "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Càlcul\">Càlcul</link>"
+msgid "<link href=\"text/shared/optionen/01060500.xhp\">Calculate</link>"
+msgstr "<link href=\"text/shared/optionen/01060500.xhp\">Càlcul</link>"
#. RSiK5
#: 01060500.xhp
@@ -10826,13 +10826,13 @@ msgctxt ""
msgid "Enable wildcards in formulas"
msgstr "Activa els comodins a les fórmules"
-#. uZEjP
+#. twWRU
#: 01060500.xhp
msgctxt ""
"01060500.xhp\n"
"par_id3155093\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">Specifies that wildcards are enabled when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
+msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">Specifies that wildcards are enabled when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\">database functions</link>, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
msgstr ""
#. aP5eL
@@ -10880,13 +10880,13 @@ msgctxt ""
msgid "Enable regular expressions in formulas"
msgstr "Habilita les expressions regulars a les fórmules"
-#. CqZ3e
+#. A5LT7
#: 01060500.xhp
msgctxt ""
"01060500.xhp\n"
"par_id3155092\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formularegex\">Specifies that <link href=\"text/shared/01/02100001.xhp\" name=\"list of regular expressions\">regular expressions</link> instead of simple wildcards are enabled when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
+msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formularegex\">Specifies that <link href=\"text/shared/01/02100001.xhp\">regular expressions</link> instead of simple wildcards are enabled when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\">database functions</link>, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
msgstr ""
#. ysDUq
@@ -10907,13 +10907,13 @@ msgctxt ""
msgid "No wildcards or regular expressions in formulas"
msgstr "Sense comodins ni expressions regulars a les fórmules"
-#. iEePn
+#. 7NLKZ
#: 01060500.xhp
msgctxt ""
"01060500.xhp\n"
"par_id3155097\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">Specifies that only literal strings are used when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
+msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">Specifies that only literal strings are used when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\">database functions</link>, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
msgstr ""
#. xpfmF
@@ -10997,14 +10997,14 @@ msgctxt ""
msgid "Changes"
msgstr "Canvis"
-#. N8N4j
+#. zFkoe
#: 01060600.xhp
msgctxt ""
"01060600.xhp\n"
"hd_id3159399\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060600.xhp\" name=\"Changes\">Changes</link>"
-msgstr "<link href=\"text/shared/optionen/01060600.xhp\" name=\"Canvis\">Canvis</link>"
+msgid "<link href=\"text/shared/optionen/01060600.xhp\">Changes</link>"
+msgstr "<link href=\"text/shared/optionen/01060600.xhp\">Canvis</link>"
#. Eiu3d
#: 01060600.xhp
@@ -11015,14 +11015,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/optchangespage/OptChangesPage\">The<emph> Changes </emph>dialog specifies various options for highlighting recorded changes in documents.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/optchangespage/OptChangesPage\">El diàleg <emph>Canvis </emph>especifica diverses opcions per realçar els canvis gravats als documents.</ahelp>"
-#. 3CJuy
+#. eqGU6
#: 01060600.xhp
msgctxt ""
"01060600.xhp\n"
"par_id3156343\n"
"help.text"
-msgid "To record changes to your work, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes - Record\"><emph>Edit - Track Changes - Record</emph></link>."
-msgstr "Per a enregistrar els canvis realitzats, seleccioneu <link href=\"text/shared/01/02230000.xhp\" name=\"Edita ▸ Gestiona els canvis\"><emph>Edita ▸ Gestiona els canvis ▸ Enregistra</emph></link>."
+msgid "To record changes to your work, choose <link href=\"text/shared/01/02230000.xhp\"><emph>Edit - Track Changes - Record</emph></link>."
+msgstr "Per a enregistrar els canvis realitzats, seleccioneu <link href=\"text/shared/01/02230000.xhp\"><emph>Edita ▸ Gestiona els canvis ▸ Enregistra</emph></link>."
#. 5VaNX
#: 01060600.xhp
@@ -11123,14 +11123,14 @@ msgctxt ""
msgid "Print"
msgstr "Imprimeix"
-#. ZTRaB
+#. VNe4k
#: 01060700.xhp
msgctxt ""
"01060700.xhp\n"
"hd_id3153311\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060700.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/optionen/01060700.xhp\" name=\"Imprimeix\">Imprimeix</link>"
+msgid "<link href=\"text/shared/optionen/01060700.xhp\">Print</link>"
+msgstr "<link href=\"text/shared/optionen/01060700.xhp\">Imprimeix</link>"
#. oeGXr
#: 01060700.xhp
@@ -11177,13 +11177,13 @@ msgctxt ""
msgid "Always apply manual breaks"
msgstr ""
-#. 5emsm
+#. dmeJn
#: 01060700.xhp
msgctxt ""
"01060700.xhp\n"
"par_id921642185374234\n"
"help.text"
-msgid "Setting this option gives manual row breaks precedence over automatic page breaks done using the <link href=\"text/scalc/01/05070500.xhp#par_idN1096D\" name=\"Scaling_link\">Reduce/enlarge printout</link> scaling mode."
+msgid "Setting this option gives manual row breaks precedence over automatic page breaks done using the <link href=\"text/scalc/01/05070500.xhp#par_idN1096D\">Reduce/enlarge printout</link> scaling mode."
msgstr ""
#. G5AXA
@@ -11258,14 +11258,14 @@ msgctxt ""
msgid "<bookmark_value>compatibility settings;key bindings (Calc)</bookmark_value>"
msgstr ""
-#. hspEB
+#. WCiuC
#: 01060800.xhp
msgctxt ""
"01060800.xhp\n"
"hd_id3145071\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">Compatibility</link>"
-msgstr "<link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibilitat\">Compatibilitat</link>"
+msgid "<link href=\"text/shared/optionen/01060800.xhp\">Compatibility</link>"
+msgstr "<link href=\"text/shared/optionen/01060800.xhp\">Compatibilitat</link>"
#. 8ArAF
#: 01060800.xhp
@@ -11492,14 +11492,14 @@ msgctxt ""
msgid "<bookmark_value>formula options;formula syntax</bookmark_value><bookmark_value>formula options;separators</bookmark_value><bookmark_value>formula options;reference syntax in string parameters</bookmark_value><bookmark_value>formula options;recalculating spreadsheets</bookmark_value><bookmark_value>formula options;large spreadsheet files</bookmark_value><bookmark_value>formula options;loading spreadsheet files</bookmark_value><bookmark_value>separators;function</bookmark_value><bookmark_value>separators;array column</bookmark_value><bookmark_value>separators;array row</bookmark_value><bookmark_value>recalculate;formula options</bookmark_value><bookmark_value>recalculating;formula options</bookmark_value><bookmark_value>recalculating;large spreadsheet files</bookmark_value><bookmark_value>loading;large spreadsheet files</bookmark_value>"
msgstr ""
-#. QEEMG
+#. BPgci
#: 01060900.xhp
msgctxt ""
"01060900.xhp\n"
"hd_id3145071\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060900.xhp\" name=\"Formula\">Formula</link>"
-msgstr "<link href=\"text/shared/optionen/01060900.xhp\" name=\"Formula\">Fórmula</link>"
+msgid "<link href=\"text/shared/optionen/01060900.xhp\">Formula</link>"
+msgstr "<link href=\"text/shared/optionen/01060900.xhp\">Fórmula</link>"
#. kdkgM
#: 01060900.xhp
@@ -11780,14 +11780,14 @@ msgctxt ""
msgid "<bookmark_value>defaults;number of worksheets in new documents</bookmark_value> <bookmark_value>defaults;prefix name for new worksheet</bookmark_value> <bookmark_value>number of worksheets in new documents</bookmark_value> <bookmark_value>prefix name for new worksheet</bookmark_value>"
msgstr ""
-#. 8UxNB
+#. KFwuQ
#: 01061000.xhp
msgctxt ""
"01061000.xhp\n"
"hd_id3145071\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01061000.xhp\" name=\"Defaults\">Defaults</link>"
-msgstr "<link href=\"text/shared/optionen/01061000.xhp\" name=\"Per defecte\">Per defecte</link>"
+msgid "<link href=\"text/shared/optionen/01061000.xhp\">Defaults</link>"
+msgstr "<link href=\"text/shared/optionen/01061000.xhp\">Per defecte</link>"
#. FwP3k
#: 01061000.xhp
@@ -11861,14 +11861,14 @@ msgctxt ""
msgid "<bookmark_value>rulers; visible in presentations</bookmark_value><bookmark_value>moving; using guide lines in presentations</bookmark_value><bookmark_value>guides; displaying when moving objects (Impress)</bookmark_value><bookmark_value>control point display in presentations</bookmark_value><bookmark_value>Bézier curves; control points in presentations</bookmark_value>"
msgstr "<bookmark_value>regles; visibles en presentacions</bookmark_value><bookmark_value>moure; utilització de línies de guia en presentacions</bookmark_value><bookmark_value>guies; visualització en moure objectes (Impress)</bookmark_value><bookmark_value>visualització del punt de control en presentacions</bookmark_value><bookmark_value>corbes de Bézier; punts de control en presentacions</bookmark_value>"
-#. 9dMun
+#. zy5SC
#: 01070100.xhp
msgctxt ""
"01070100.xhp\n"
"hd_id3147000\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01070100.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/shared/optionen/01070100.xhp\" name=\"Visualització\">Visualització</link>"
+msgid "<link href=\"text/shared/optionen/01070100.xhp\">View</link>"
+msgstr "<link href=\"text/shared/optionen/01070100.xhp\">Visualització</link>"
#. AEAUN
#: 01070100.xhp
@@ -11933,14 +11933,14 @@ msgctxt ""
msgid "<variable id=\"vertext\"><item type=\"productname\">%PRODUCTNAME</item> creates dotted guides that extend beyond the box containing the selected object and which cover the entire work area, helping you position the object.</variable>"
msgstr "<variable id=\"vertext\">El <item type=\"productname\">%PRODUCTNAME</item> crea guies de punts que amplien el quadre que conté l'objecte seleccionat i que cobreixen tota l'àrea de treball, fet que vos ajuda a posicionar l'objecte.</variable>"
-#. Bw7jL
+#. vir83
#: 01070100.xhp
msgctxt ""
"01070100.xhp\n"
"par_id3153365\n"
"help.text"
-msgid "You also can use this function through the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/02/01171400.xhp\" name=\"Icon\">icon</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/02/01171400.xhp\" name=\"Icon\">icon</link></caseinline><defaultinline>icon</defaultinline></switchinline> with the same name in the <emph>Options</emph> bar if a presentation or a drawing document is opened."
-msgstr "També podeu utilitzar esta funció mitjançant la <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/02/01171400.xhp\" name=\"Icona\">icona</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/02/01171400.xhp\" name=\"Icona\">icona</link></caseinline><defaultinline>icona</defaultinline></switchinline> amb el mateix nom de la barra <emph>Opcions</emph> si s'obri una presentació o un document de dibuix."
+msgid "You also can use this function through the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/02/01171400.xhp\">icon</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/02/01171400.xhp\">icon</link></caseinline><defaultinline>icon</defaultinline></switchinline> with the same name in the <emph>Options</emph> bar if a presentation or a drawing document is opened."
+msgstr "També podeu utilitzar esta funció mitjançant la <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/02/01171400.xhp\">icona</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/02/01171400.xhp\">icona</link></caseinline><defaultinline>icona</defaultinline></switchinline> amb el mateix nom de la barra <emph>Opcions</emph> si s'obri una presentació o un document de dibuix."
#. rNBhR
#: 01070100.xhp
@@ -11951,13 +11951,13 @@ msgctxt ""
msgid "All control points in Bézier editor"
msgstr "Tots els punts de control en l'editor Bézier"
-#. d6woc
+#. NW5o8
#: 01070100.xhp
msgctxt ""
"01070100.xhp\n"
"par_id3153877\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/sdviewpage/handlesbezier\">Displays the control points of all Bézier points if you have previously selected a <link href=\"text/shared/00/00000005.xhp#bezierobject\" name=\"Bézier curve\">Bézier curve</link>. If the <emph>All control points in Bézier</emph> editor option is not marked, only the control points of the selected Bézier points will be visible.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/sdviewpage/handlesbezier\">Displays the control points of all Bézier points if you have previously selected a <link href=\"text/shared/00/00000005.xhp#bezierobject\">Bézier curve</link>. If the <emph>All control points in Bézier</emph> editor option is not marked, only the control points of the selected Bézier points will be visible.</ahelp>"
msgstr ""
#. aDatu
@@ -11996,14 +11996,14 @@ msgctxt ""
msgid "<bookmark_value>snapping in presentations and drawings</bookmark_value> <bookmark_value>points;reducing editing points when snapping (Impress/Draw)</bookmark_value>"
msgstr "<bookmark_value>ajustament en presentacions i dibuixos</bookmark_value><bookmark_value>punts;reducció dels punts d'edició en ajustar (Impress/Draw)</bookmark_value>"
-#. ND3MA
+#. cstNU
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"hd_id3147571\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01070300.xhp\" name=\"Grid\">Grid</link>"
-msgstr "<link href=\"text/shared/optionen/01070300.xhp\" name=\"Graella\">Graella</link>"
+msgid "<link href=\"text/shared/optionen/01070300.xhp\">Grid</link>"
+msgstr "<link href=\"text/shared/optionen/01070300.xhp\">Graella</link>"
#. WcDM8
#: 01070300.xhp
@@ -12050,13 +12050,13 @@ msgctxt ""
msgid "<variable id=\"anlinie\"><ahelp hid=\".\">Snaps the edge of a dragged object to the nearest snap guide when you release the mouse.</ahelp></variable>"
msgstr ""
-#. Dwoaz
+#. REGG3
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3154142\n"
"help.text"
-msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
+msgid "You can also define this setting by using the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13140000.xhp\"><emph>Snap to Snap Guides</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13140000.xhp\"><emph>Snap to Snap Guides</emph></link></caseinline><defaultinline><emph>Snap to Snap Guides</emph></defaultinline></switchinline> icon, which is available in the <emph>Options</emph> bar in a presentation or drawing document."
msgstr ""
#. eUCCJ
@@ -12086,14 +12086,14 @@ msgctxt ""
msgid "<variable id=\"seittext\">The cursor or a contour line of the graphics object must be in the snap range.</variable>"
msgstr "<variable id=\"seittext\">El cursor o una línia de vora de l'objecte de gràfics han de ser a l'interval d'ajustament.</variable>"
-#. WQten
+#. cL9yC
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3148947\n"
"help.text"
-msgid "In a presentation or drawing document, this function can also be accessed with the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\"><emph>Snap to Page Margins</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\"><emph>Snap to Page Margins</emph></link></caseinline><defaultinline><emph>Snap to Page Margins</emph></defaultinline></switchinline> icon in the <emph>Options</emph> bar."
-msgstr "En una presentació o un document de dibuix, també podeu accedir a esta funció mitjançant la icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13150000.xhp\" name=\"Ajusta als marges de la pàgina\"><emph>Ajusta als marges de la pàgina</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13150000.xhp\" name=\"Ajusta als marges de la pàgina\"><emph>Ajusta als marges de la pàgina</emph></link></caseinline><defaultinline><emph>Ajusta als marges de la pàgina</emph></defaultinline></switchinline> de la barra <emph>Opcions</emph>."
+msgid "In a presentation or drawing document, this function can also be accessed with the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13150000.xhp\"><emph>Snap to Page Margins</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13150000.xhp\"><emph>Snap to Page Margins</emph></link></caseinline><defaultinline><emph>Snap to Page Margins</emph></defaultinline></switchinline> icon in the <emph>Options</emph> bar."
+msgstr "En una presentació o un document de dibuix, també podeu accedir a esta funció mitjançant la icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13150000.xhp\"><emph>Ajusta als marges de la pàgina</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13150000.xhp\"><emph>Ajusta als marges de la pàgina</emph></link></caseinline><defaultinline><emph>Ajusta als marges de la pàgina</emph></defaultinline></switchinline> de la barra <emph>Opcions</emph>."
#. oAxcn
#: 01070300.xhp
@@ -12122,14 +12122,14 @@ msgctxt ""
msgid "<variable id=\"rahmtext\">The cursor or a contour line of the graphics object must be in the snap range.</variable>"
msgstr "<variable id=\"rahmtext\">El cursor o una línia de vora de l'objecte de gràfics han de ser a l'interval d'ajustament.</variable>"
-#. i6euD
+#. 2Bcbt
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3148922\n"
"help.text"
-msgid "In a presentation or drawing document, this function can also be accessed with the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\"><emph>Snap to Object Border</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\"><emph>Snap to Object Border</emph></link></caseinline><defaultinline><emph>Snap to Object Border</emph></defaultinline></switchinline> icon in the <emph>Options</emph> bar."
-msgstr "En una presentació o un document de dibuix, també podeu accedir a esta funció mitjançant la icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13160000.xhp\" name=\"Ajusta a la vora de l'objecte\"><emph>Ajusta a la vora de l'objecte</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13160000.xhp\" name=\"Ajusta a la vora de l'objecte\"><emph>Ajusta a la vora de l'objecte</emph></link></caseinline><defaultinline><emph>Ajusta a la vora de l'objecte</emph></defaultinline></switchinline> de la barra <emph>Opcions</emph>."
+msgid "In a presentation or drawing document, this function can also be accessed with the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13160000.xhp\"><emph>Snap to Object Border</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13160000.xhp\"><emph>Snap to Object Border</emph></link></caseinline><defaultinline><emph>Snap to Object Border</emph></defaultinline></switchinline> icon in the <emph>Options</emph> bar."
+msgstr "En una presentació o un document de dibuix, també podeu accedir a esta funció mitjançant la icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13160000.xhp\"><emph>Ajusta a la vora de l'objecte</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13160000.xhp\"><emph>Ajusta a la vora de l'objecte</emph></link></caseinline><defaultinline><emph>Ajusta a la vora de l'objecte</emph></defaultinline></switchinline> de la barra <emph>Opcions</emph>."
#. Pjqoq
#: 01070300.xhp
@@ -12158,14 +12158,14 @@ msgctxt ""
msgid "<variable id=\"opunktetext\">This only applies if the cursor or a contour line of the graphics object is in the snap range.</variable>"
msgstr "<variable id=\"opunktetext\">Esta opció només és aplicable si el cursor o una línia de vora de l'objecte de gràfics es troben a l'interval d'ajustament.</variable>"
-#. 85pxh
+#. RNCeA
#: 01070300.xhp
msgctxt ""
"01070300.xhp\n"
"par_id3146146\n"
"help.text"
-msgid "In a presentation or drawing document, this function can also be accessed with the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\"><emph>Snap to Object Points</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\"><emph>Snap to Object Points</emph></link></caseinline><defaultinline><emph>Snap to Object Points</emph></defaultinline></switchinline> icon in the <emph>Options</emph> bar."
-msgstr "En una presentació o un document de dibuix, també podeu accedir a esta funció mitjançant la icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Ajusta als punts de l'objecte\"><emph>Ajusta als punts de l'objecte</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Ajusta als punts de l'objecte\"><emph>Ajusta als punts de l'objecte</emph></link></caseinline><defaultinline><emph>Ajusta als punts de l'objecte</emph></defaultinline></switchinline> de la barra <emph>Opcions</emph>."
+msgid "In a presentation or drawing document, this function can also be accessed with the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13170000.xhp\"><emph>Snap to Object Points</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13170000.xhp\"><emph>Snap to Object Points</emph></link></caseinline><defaultinline><emph>Snap to Object Points</emph></defaultinline></switchinline> icon in the <emph>Options</emph> bar."
+msgstr "En una presentació o un document de dibuix, també podeu accedir a esta funció mitjançant la icona <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13170000.xhp\"><emph>Ajusta als punts de l'objecte</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13170000.xhp\"><emph>Ajusta als punts de l'objecte</emph></link></caseinline><defaultinline><emph>Ajusta als punts de l'objecte</emph></defaultinline></switchinline> de la barra <emph>Opcions</emph>."
#. hkFkf
#: 01070300.xhp
@@ -12284,14 +12284,14 @@ msgctxt ""
msgid "<bookmark_value>printing; drawings defaults</bookmark_value> <bookmark_value>drawings; printing defaults</bookmark_value> <bookmark_value>pages;printing page names in presentations</bookmark_value> <bookmark_value>printing; dates in presentations</bookmark_value> <bookmark_value>dates; printing in presentations</bookmark_value> <bookmark_value>times; inserting when printing presentations</bookmark_value> <bookmark_value>printing; hidden pages of presentations</bookmark_value> <bookmark_value>hidden pages; printing in presentations</bookmark_value> <bookmark_value>printing; without scaling in presentations</bookmark_value> <bookmark_value>scaling; when printing presentations</bookmark_value> <bookmark_value>printing; fitting to pages in presentations</bookmark_value> <bookmark_value>fitting to pages; print settings in presentations</bookmark_value> <bookmark_value>printing; tiling pages in presentations</bookmark_value>"
msgstr ""
-#. iFJBG
+#. FeEfF
#: 01070400.xhp
msgctxt ""
"01070400.xhp\n"
"hd_id3155419\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01070400.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/optionen/01070400.xhp\" name=\"Imprimeix\">Imprimeix</link>"
+msgid "<link href=\"text/shared/optionen/01070400.xhp\">Print</link>"
+msgstr "<link href=\"text/shared/optionen/01070400.xhp\">Imprimeix</link>"
#. SSAQQ
#: 01070400.xhp
@@ -12401,13 +12401,13 @@ msgctxt ""
msgid "Quality"
msgstr "Qualitat"
-#. 8fAoE
+#. 54nBH
#: 01070400.xhp
msgctxt ""
"01070400.xhp\n"
"par_id3147229\n"
"help.text"
-msgid "See also <link href=\"text/shared/guide/print_blackwhite.xhp\" name=\"print_blackwhite_link\">Printing in Black and White</link>."
+msgid "See also <link href=\"text/shared/guide/print_blackwhite.xhp\">Printing in Black and White</link>."
msgstr ""
#. KK8qW
@@ -12626,14 +12626,14 @@ msgctxt ""
msgid "<bookmark_value>presentations; starting with wizard</bookmark_value><bookmark_value>objects; always moveable (Impress/Draw)</bookmark_value><bookmark_value>distorting in drawings</bookmark_value><bookmark_value>spacing; tabs in presentations</bookmark_value><bookmark_value>tab stops; spacing in presentations</bookmark_value><bookmark_value>text objects; in presentations and drawings</bookmark_value>"
msgstr "<bookmark_value>presentacions; començar amb l'Auxiliar</bookmark_value><bookmark_value>objectes; sempre movibles (Impress/Draw)</bookmark_value><bookmark_value>distorsió en dibuixos</bookmark_value><bookmark_value>espaiat; pestanyes en presentacions</bookmark_value><bookmark_value>tabuladors; espaiat en presentacions</bookmark_value><bookmark_value>objectes de text; en presentacions i dibuixos</bookmark_value>"
-#. CLa2U
+#. twAUf
#: 01070500.xhp
msgctxt ""
"01070500.xhp\n"
"hd_id3143270\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01070500.xhp\" name=\"General\">General</link>"
-msgstr "<link href=\"text/shared/optionen/01070500.xhp\" name=\"General\">General</link>"
+msgid "<link href=\"text/shared/optionen/01070500.xhp\">General</link>"
+msgstr "<link href=\"text/shared/optionen/01070500.xhp\">General</link>"
#. bQEsc
#: 01070500.xhp
@@ -12698,14 +12698,14 @@ msgctxt ""
msgid "<variable id=\"schnellbearb\"><ahelp hid=\".\">If on, you can edit text immediately after clicking a text object. If off, you must double-click to edit text.</ahelp></variable>"
msgstr "<variable id=\"schnellbearb\"><ahelp hid=\".\">Si esta opció està activada, podeu editar el text immediatament després de fer clic en un objecte de text. Si està desactivada, heu de fer doble clic per editar-lo.</ahelp></variable>"
-#. 3D24T
+#. QH3Ys
#: 01070500.xhp
msgctxt ""
"01070500.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>En un document de presentació o de dibuix, també podeu activar el mode d'edició de text a través de la <link href=\"text/simpress/02/13180000.xhp\" name=\"icona\">icona</link> <emph>Permet l'edició ràpida</emph> de la barra <emph>Opcions</emph>.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>En un document de presentació o de dibuix, també podeu activar el mode d'edició de text a través de la <link href=\"text/simpress/02/13180000.xhp\">icona</link> <emph>Permet l'edició ràpida</emph> de la barra <emph>Opcions</emph>.</defaultinline></switchinline>"
#. jYdLv
#: 01070500.xhp
@@ -12734,13 +12734,13 @@ msgctxt ""
msgid "<variable id=\"textbereich2\">In the area of the text box that is not filled with text, an object behind the text box can be selected.</variable>"
msgstr ""
-#. 3jDfz
+#. r8Swy
#: 01070500.xhp
msgctxt ""
"01070500.xhp\n"
"par_id3153367\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
msgstr ""
#. TEaLa
@@ -12833,13 +12833,13 @@ msgctxt ""
msgid "Unit of measurement"
msgstr "Unitat de mesura"
-#. artGU
+#. ddUq3
#: 01070500.xhp
msgctxt ""
"01070500.xhp\n"
"par_id3155066\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/units\">Determines the <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Unit of measurement\">Unit of measurement</link> for presentations.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/units\">Determines the <link href=\"text/shared/00/00000003.xhp#measurement_units\">Unit of measurement</link> for presentations.</ahelp>"
msgstr ""
#. 32iod
@@ -13031,14 +13031,14 @@ msgctxt ""
msgid "<variable id=\"druckentext\"><ahelp hid=\".uno:SmEditOptions\">Defines the print format and print options for all new formula documents. These options apply when you print a formula directly from <item type=\"productname\">%PRODUCTNAME</item> Math.</ahelp></variable> You can also call the dialog by clicking the <emph>Options</emph> button in the <emph>Print</emph> dialog. The settings you define in the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline> dialog will be permanent settings, whereas the settings in the Print dialog are only valid for the current document."
msgstr "<variable id=\"druckentext\"><ahelp hid=\".uno:SmEditOptions\">Defineix el format i les opcions d'impressió per a tots els documents de fórmules nous. Estes opcions s'apliquen quan imprimiu una fórmula directament des del <item type=\"productname\">%PRODUCTNAME</item> Math.</ahelp></variable> També podeu cridar el diàleg fent clic al botó <emph>Opcions</emph> del diàleg <emph>Imprimeix</emph>. La configuració que definiu al diàleg <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline></emph> serà permanent, mentre que els paràmetres del diàleg Imprimeix només són vàlids per al document actual."
-#. rA9eB
+#. uGJev
#: 01090000.xhp
msgctxt ""
"01090000.xhp\n"
"hd_id3154143\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01090100.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/shared/optionen/01090100.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/shared/optionen/01090100.xhp\">Options</link>"
+msgstr "<link href=\"text/shared/optionen/01090100.xhp\">Opcions</link>"
#. WwbEv
#: 01090100.xhp
@@ -13292,14 +13292,14 @@ msgctxt ""
msgid "<bookmark_value>charts; colors</bookmark_value><bookmark_value>colors;charts</bookmark_value>"
msgstr "<bookmark_value>diagrames; colors</bookmark_value><bookmark_value>colors;diagrames</bookmark_value>"
-#. bRCM3
+#. mAjE6
#: 01110100.xhp
msgctxt ""
"01110100.xhp\n"
"hd_id3149760\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01110100.xhp\" name=\"Default colors\">Default colors</link>"
-msgstr "<link href=\"text/shared/optionen/01110100.xhp\" name=\"Colors per defecte\">Colors per defecte</link>"
+msgid "<link href=\"text/shared/optionen/01110100.xhp\">Default colors</link>"
+msgstr "<link href=\"text/shared/optionen/01110100.xhp\">Colors per defecte</link>"
#. jHTpV
#: 01110100.xhp
@@ -13382,14 +13382,14 @@ msgctxt ""
msgid "<bookmark_value>Microsoft Office; importing/exporting VBA code</bookmark_value> <bookmark_value>importing; Microsoft Office documents with VBA code</bookmark_value> <bookmark_value>exporting; Microsoft Office documents with VBA code</bookmark_value> <bookmark_value>loading; Microsoft Office documents with VBA code</bookmark_value> <bookmark_value>saving; VBA code in Microsoft Office documents</bookmark_value> <bookmark_value>VBA code; loading/saving documents with VBA code</bookmark_value> <bookmark_value>Visual Basic for Applications; loading/saving documents with VBA code</bookmark_value>"
msgstr ""
-#. s5BZM
+#. MqguF
#: 01130100.xhp
msgctxt ""
"01130100.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01130100.xhp\" name=\"VBA Properties\">VBA Properties</link>"
-msgstr "<link href=\"text/shared/optionen/01130100.xhp\" name=\"Propietats VBA\">Propietats VBA</link>"
+msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
+msgstr "<link href=\"text/shared/optionen/01130100.xhp\">Propietats VBA</link>"
#. y47Cj
#: 01130100.xhp
@@ -13580,14 +13580,14 @@ msgctxt ""
msgid "Save original Basic code"
msgstr "Guarda el codi del Basic original"
-#. TnsTM
+#. 2emh9
#: 01130100.xhp
msgctxt ""
"01130100.xhp\n"
"par_id3153768\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010200.xhp\" name=\"Setting the default file format\">Setting the default file format</link>"
-msgstr "<link href=\"text/shared/optionen/01010200.xhp\" name=\"Establiment del format de fitxer per defecte\">Establiment del format de fitxer per defecte</link>"
+msgid "<link href=\"text/shared/optionen/01010200.xhp\">Setting the default file format</link>"
+msgstr "<link href=\"text/shared/optionen/01010200.xhp\">Establiment del format de fitxer per defecte</link>"
#. i2ir4
#: 01130100.xhp
@@ -13616,14 +13616,14 @@ msgctxt ""
msgid "<bookmark_value>Microsoft lock files</bookmark_value><bookmark_value>lock files;Microsoft Office</bookmark_value><bookmark_value>lock files;%PRODUCTNAME</bookmark_value><bookmark_value>OLE objects;import and export</bookmark_value><bookmark_value>embedded objects;import and export</bookmark_value><bookmark_value>OLE objects;Microsoft Office</bookmark_value><bookmark_value>OLE objects;PDF</bookmark_value><bookmark_value>character highlighting;Microsoft Office export</bookmark_value><bookmark_value>character shading;Microsoft Office export</bookmark_value>"
msgstr ""
-#. HgnAh
+#. foouB
#: 01130200.xhp
msgctxt ""
"01130200.xhp\n"
"hd_id3156410\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01130200.xhp\" name=\"Microsoft Office\">Microsoft Office</link>"
-msgstr "<link href=\"text/shared/optionen/01130200.xhp\" name=\"Microsoft Office\">Microsoft Office</link>"
+msgid "<link href=\"text/shared/optionen/01130200.xhp\">Microsoft Office</link>"
+msgstr "<link href=\"text/shared/optionen/01130200.xhp\">Microsoft Office</link>"
#. K47DP
#: 01130200.xhp
@@ -13805,14 +13805,14 @@ msgctxt ""
msgid "<bookmark_value>languages; locale settings</bookmark_value> <bookmark_value>locale settings</bookmark_value> <bookmark_value>Asian languages; enabling</bookmark_value> <bookmark_value>languages; Asian support</bookmark_value> <bookmark_value>complex text layout; enabling</bookmark_value> <bookmark_value>Arabic;language settings</bookmark_value> <bookmark_value>Hebrew;language settings</bookmark_value> <bookmark_value>Thai;language settings</bookmark_value> <bookmark_value>Hindi;language settings</bookmark_value> <bookmark_value>decimal separator key</bookmark_value> <bookmark_value>date acceptance patterns</bookmark_value>"
msgstr "<bookmark_value>llengües; opcions de configuració</bookmark_value><bookmark_value>configuració local</bookmark_value><bookmark_value>Asiàticallengües; activació</bookmark_value><bookmark_value>llengües; Asiàtiquescompatibilitat</bookmark_value><bookmark_value>format de text complex;activació</bookmark_value><bookmark_value>Àrab;llenguaparàmetres</bookmark_value><bookmark_value>Hebreu;llenguaparàmetres</bookmark_value><bookmark_value>Tai;llenguaparàmetres</bookmark_value><bookmark_value>Hindi;llenguaparàmetres</bookmark_value><bookmark_value>separador decimalclau</bookmark_value><bookmark_value>acceptació de dadespatrons</bookmark_value>"
-#. Xa4Cw
+#. Wi3qD
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"hd_id3151299\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Languages\">Languages</link>"
-msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Llengües\">Llengües</link>"
+msgid "<link href=\"text/shared/optionen/01140000.xhp\">Languages</link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\">Llengües</link>"
#. 8E89e
#: 01140000.xhp
@@ -14084,13 +14084,13 @@ msgctxt ""
msgid "In addition to the explicit patterns defined in the edit box, input matching the <literal>Y-M-D</literal> pattern is implicitly recognized and converted automatically to a date. Input that starts from 1 to 31 is not interpreted with this implicit Y-M-D pattern. Since %PRODUCTNAME 3.5, this input is formatted as <literal>YYYY-MM-DD</literal> (ISO 8601)."
msgstr ""
-#. 3GYBx
+#. 2aJNZ
#: 01140000.xhp
msgctxt ""
"01140000.xhp\n"
"par_id391606902516870\n"
"help.text"
-msgid "For all patterns, two-digit year input is interpreted according to the setting in <link href=\"text/shared/optionen/01010600.xhp#sectionyear2digit\" name=\"twodigityears\">Tools - Options - General - Year (Two Digits)</link>."
+msgid "For all patterns, two-digit year input is interpreted according to the setting in <link href=\"text/shared/optionen/01010600.xhp#sectionyear2digit\">Tools - Options - General - Year (Two Digits)</link>."
msgstr ""
#. 9RYTi
@@ -14318,14 +14318,14 @@ msgctxt ""
msgid "Asian Layout"
msgstr "Disposició asiàtica"
-#. XUABA
+#. cFUdF
#: 01150100.xhp
msgctxt ""
"01150100.xhp\n"
"hd_id3156414\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01150100.xhp\" name=\"Asian Layout\">Asian Layout</link>"
-msgstr "<link href=\"text/shared/optionen/01150100.xhp\" name=\"Disposició asiàtica\">Disposició asiàtica</link>"
+msgid "<link href=\"text/shared/optionen/01150100.xhp\">Asian Layout</link>"
+msgstr "<link href=\"text/shared/optionen/01150100.xhp\">Disposició asiàtica</link>"
#. nKQsF
#: 01150100.xhp
@@ -14480,14 +14480,14 @@ msgctxt ""
msgid "First and last characters"
msgstr "Primer i darrer caràcters"
-#. aVKmd
+#. PheCx
#: 01150100.xhp
msgctxt ""
"01150100.xhp\n"
"par_id3149295\n"
"help.text"
-msgid "Defines the default settings for 'first' and 'last' characters. In the dialog that appears when you choose <emph>Format -</emph><link href=\"text/shared/01/05020700.xhp\" name=\"Asian Typography\"><emph>Asian Typography</emph></link>, you can specify whether the list of forbidden characters applies to those at the beginning or end of a line in a paragraph."
-msgstr "Defineix els paràmetres per defecte per als caràcters \"primer\" i \"últim\". Quan seleccioneu <emph>Format -</emph><link href=\"text/shared/01/05020700.xhp\" name=\"Tipografia asiàtica\"><emph>Tipografia asiàtica</emph></link> apareix un diàleg que vos permet especificar si la llista de caràcters prohibits s'aplica als que es troben al principi o al final d'una línia en un paràgraf."
+msgid "Defines the default settings for 'first' and 'last' characters. In the dialog that appears when you choose <emph>Format -</emph><link href=\"text/shared/01/05020700.xhp\"><emph>Asian Typography</emph></link>, you can specify whether the list of forbidden characters applies to those at the beginning or end of a line in a paragraph."
+msgstr "Defineix els paràmetres per defecte per als caràcters \"primer\" i \"últim\". Quan seleccioneu <emph>Format -</emph><link href=\"text/shared/01/05020700.xhp\"><emph>Tipografia asiàtica</emph></link> apareix un diàleg que vos permet especificar si la llista de caràcters prohibits s'aplica als que es troben al principi o al final d'una línia en un paràgraf."
#. 5MPmq
#: 01150100.xhp
@@ -14570,14 +14570,14 @@ msgctxt ""
msgid "Searching in Japanese"
msgstr "Busca en japonés"
-#. ms6YL
+#. xGXFM
#: 01150200.xhp
msgctxt ""
"01150200.xhp\n"
"hd_id3155338\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=\"Busca en japonés\">Busca en japonés</link>"
+msgid "<link href=\"text/shared/optionen/01150200.xhp\">Searching in Japanese</link>"
+msgstr "<link href=\"text/shared/optionen/01150200.xhp\">Busca en japonés</link>"
#. D5qrK
#: 01150200.xhp
@@ -14642,14 +14642,14 @@ msgctxt ""
msgid "<bookmark_value>CTL; options</bookmark_value>"
msgstr "<bookmark_value>CTL; opcions</bookmark_value>"
-#. gBTa2
+#. GCABr
#: 01150300.xhp
msgctxt ""
"01150300.xhp\n"
"hd_id3148668\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01150300.xhp\" name=\"Complex Text Layout\">Complex Text Layout</link>"
-msgstr "<link href=\"text/shared/optionen/01150300.xhp\" name=\"Disposició complexa de text\">Disposició complexa de text</link>"
+msgid "<link href=\"text/shared/optionen/01150300.xhp\">Complex Text Layout</link>"
+msgstr "<link href=\"text/shared/optionen/01150300.xhp\">Disposició complexa de text</link>"
#. DC7HD
#: 01150300.xhp
@@ -14876,14 +14876,14 @@ msgctxt ""
msgid "<bookmark_value>connections to data sources (Base)</bookmark_value><bookmark_value>data sources; connection settings (Base)</bookmark_value>"
msgstr "<bookmark_value>connexions a fonts de dades (Base)</bookmark_value><bookmark_value>fonts de dades; paràmetres de connexió (Base)</bookmark_value>"
-#. rfzXz
+#. QwbRi
#: 01160100.xhp
msgctxt ""
"01160100.xhp\n"
"hd_id3154136\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01160100.xhp\" name=\"Connections\">Connections</link>"
-msgstr "<link href=\"text/shared/optionen/01160100.xhp\" name=\"Connexions\">Connexions</link>"
+msgid "<link href=\"text/shared/optionen/01160100.xhp\">Connections</link>"
+msgstr "<link href=\"text/shared/optionen/01160100.xhp\">Connexions</link>"
#. pbgGi
#: 01160100.xhp
@@ -15488,13 +15488,13 @@ msgctxt ""
msgid "<bookmark_value>string;conversion to number settings</bookmark_value> <bookmark_value>string conversion to number options</bookmark_value> <bookmark_value>string;conversion to date settings</bookmark_value> <bookmark_value>string conversion to date options</bookmark_value> <bookmark_value>string;conversion to reference settings</bookmark_value> <bookmark_value>string conversion to reference options</bookmark_value> <bookmark_value>string;setting in spreadsheet formulas</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel R1C1</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel A1</bookmark_value> <bookmark_value>cell reference syntax in strings;Calc A1</bookmark_value> <bookmark_value>Excel R1C1;cell reference syntax in strings</bookmark_value> <bookmark_value>Excel A1;cell reference syntax in strings</bookmark_value> <bookmark_value>Calc A1;cell reference syntax in strings</bookmark_value>"
msgstr ""
-#. jZZNb
+#. cqCvA
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"hd_id371535153017185\n"
"help.text"
-msgid "<variable id=\"detailed_heading\"><link href=\"text/shared/optionen/detailedcalculation.xhp\" name=\"detailedcalc\">Detailed Calculation Settings</link></variable>"
+msgid "<variable id=\"detailed_heading\"><link href=\"text/shared/optionen/detailedcalculation.xhp\">Detailed Calculation Settings</link></variable>"
msgstr ""
#. ZrSf6
@@ -15560,13 +15560,13 @@ msgctxt ""
msgid "<emph>Treat as zero:</emph> Any text found where numeric data is expected will be considered as a number of value zero. Example: <item type=\"input\">\"123.45\"</item> will map to zero, while <item type=\"input\">123.45</item> not."
msgstr ""
-#. 8VbMZ
+#. ToDWh
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"par_id3067110\n"
"help.text"
-msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not.<br/>See <link href=\"text/scalc/guide/numbers_text.xhp\" name=\"numbers_text_link\">Converting Text to Numbers</link> for details."
+msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not.<br/>See <link href=\"text/scalc/guide/numbers_text.xhp\">Converting Text to Numbers</link> for details."
msgstr ""
#. Eo47W
@@ -15677,23 +15677,23 @@ msgctxt ""
msgid "Mark this checkbox to apply the settings to the document only."
msgstr ""
-#. YBuej
+#. CsSpB
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"par_id191535211862982\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"dateandtime\">Date and time functions</link>"
-msgstr "<link href=\"text/scalc/01/04060102.xhp\" name=\"Data i hora\">Funcions de data i hora</link>"
+msgid "<link href=\"text/scalc/01/04060102.xhp\">Date and time functions</link>"
+msgstr "<link href=\"text/scalc/01/04060102.xhp\">Funcions de data i hora</link>"
-#. kSBcg
+#. AGYNB
#: detailedcalculation.xhp
msgctxt ""
"detailedcalculation.xhp\n"
"par_id261535211868627\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060109.xhp#Section6\" name=\"indirect\">INDIRECT function</link>"
-msgstr "<link href=\"text/scalc/01/04060109.xhp#Section6\" name=\"indirecte\">Funció INDIRECTE</link>"
+msgid "<link href=\"text/scalc/01/04060109.xhp#Section6\">INDIRECT function</link>"
+msgstr "<link href=\"text/scalc/01/04060109.xhp#Section6\">Funció INDIRECTE</link>"
#. pVKAF
#: experimental.xhp
@@ -16028,13 +16028,13 @@ msgctxt ""
msgid "Java options"
msgstr "Opcions del Java"
-#. BYguG
+#. ZKULv
#: java.xhp
msgctxt ""
"java.xhp\n"
"par_id181614855578590\n"
"help.text"
-msgid "The current list of %PRODUCTNAME modules and resources that depends on Java is available <link href=\"https://wiki.documentfoundation.org/Faq/General/015\" name=\"Java wiki\">in the wiki</link>."
+msgid "The current list of %PRODUCTNAME modules and resources that depends on Java is available <link href=\"https://wiki.documentfoundation.org/Faq/General/015\">in the wiki</link>."
msgstr ""
#. J8Yfv
@@ -16208,13 +16208,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optadvancedpage/macrorecording\">Enable macro recording</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optadvancedpage/macrorecording\">Habilita l'gravació de macros</ahelp>"
-#. SFH5g
+#. Mep4f
#: java.xhp
msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#. 3BrMD
@@ -16946,14 +16946,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter the address to use for email replies.</ahelp>"
msgstr ""
-#. KxDNm
+#. 359ni
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105EE\n"
"help.text"
-msgid "Outgoing server (SMTP) settings"
-msgstr "Paràmetres del servidor d'eixida (SMTP)"
+msgid "Outgoing Email Server (SMTP Only)"
+msgstr ""
#. Q8Wj3
#: mailmerge.xhp
@@ -17360,13 +17360,13 @@ msgctxt ""
msgid "<bookmark_value>search commands</bookmark_value> <bookmark_value>head-up display (hud)</bookmark_value>"
msgstr ""
-#. n8hsF
+#. dg8JC
#: search_commands.xhp
msgctxt ""
"search_commands.xhp\n"
"hd_id951627860296699\n"
"help.text"
-msgid "<variable id=\"SearchCommands_h1\"><link href=\"text/shared/optionen/search_commands.xhp\" name=\"SearchCommands_help\">Search Commands</link></variable>"
+msgid "<variable id=\"SearchCommands_h1\"><link href=\"text/shared/optionen/search_commands.xhp\">Search Commands</link></variable>"
msgstr ""
#. fVXLC
@@ -17477,13 +17477,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Set security related options and warnings about hidden information in documents.</ahelp>"
msgstr ""
-#. nCsXR
+#. 53EE3
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
"par_id5616645\n"
"help.text"
-msgid "Press the <emph>Options</emph> button on the <link href=\"text/shared/optionen/01030300.xhp\" name=\"Security\">Security</link> page."
+msgid "Press the <emph>Options</emph> button on the <link href=\"text/shared/optionen/01030300.xhp\">Security</link> page."
msgstr ""
#. FCh7E
@@ -17630,13 +17630,13 @@ msgctxt ""
msgid "Block any links from documents not among the trusted locations (see Macro Security)"
msgstr ""
-#. CYmT4
+#. fowAV
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
"par_id79043\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">Blocks the use of linked images by documents not in the trusted locations defined on the <link href=\"text/shared/optionen/macrosecurity_ts.xhp\" name=\"Trusted Sources\">Trusted Sources</link> tab of the Macro Security dialog.</ahelp> This can increase security in case you work with documents from untrusted sources (e.g. the internet) and are worried about vulnerabilities in image processing software components. Blocking the use of links means that images are not loaded in untrusted documents, only a placeholder frame is visible."
+msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/blockuntrusted\">Blocks the use of linked images by documents not in the trusted locations defined on the <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">Trusted Sources</link> tab of the Macro Security dialog.</ahelp> This can increase security in case you work with documents from untrusted sources (e.g. the internet) and are worried about vulnerabilities in image processing software components. Blocking the use of links means that images are not loaded in untrusted documents, only a placeholder frame is visible."
msgstr ""
#. eAd6j
diff --git a/source/ca-valencia/helpcontent2/source/text/simpress.po b/source/ca-valencia/helpcontent2/source/text/simpress.po
index d87bad9e9c4..7911632234d 100644
--- a/source/ca-valencia/helpcontent2/source/text/simpress.po
+++ b/source/ca-valencia/helpcontent2/source/text/simpress.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress/ca_VALENCIA/>\n"
@@ -26,13 +26,13 @@ msgctxt ""
msgid "Lists"
msgstr ""
-#. H3LYs
+#. fyBeH
#: format_submenu_lists.xhp
msgctxt ""
"format_submenu_lists.xhp\n"
"hd_id501649419524037\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/simpress/format_submenu_lists.xhp\" name=\"Lists\">Lists</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/simpress/format_submenu_lists.xhp\">Lists</link></variable>"
msgstr ""
#. SNCBB
@@ -89,14 +89,14 @@ msgctxt ""
msgid "Menus"
msgstr "Menús"
-#. pvX94
+#. ZQF48
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
"hd_id3149664\n"
"help.text"
-msgid "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=\"Menus\">Menus</link> </variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=\"Menús\">Menús</link></variable>"
+msgid "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\">Menus</link> </variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\">Menús</link></variable>"
#. ESALm
#: main0100.xhp
@@ -116,14 +116,14 @@ msgctxt ""
msgid "File"
msgstr "Fitxer"
-#. sdX4w
+#. yTfpZ
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
"hd_id3153190\n"
"help.text"
-msgid "<link href=\"text/simpress/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/simpress/main0101.xhp\" name=\"Fitxer\">Fitxer</link>"
+msgid "<link href=\"text/simpress/main0101.xhp\">File</link>"
+msgstr "<link href=\"text/simpress/main0101.xhp\">Fitxer</link>"
#. fEmkG
#: main0101.xhp
@@ -143,14 +143,14 @@ msgctxt ""
msgid "View"
msgstr "Visualitza"
-#. bAzdF
+#. AG4of
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3150297\n"
"help.text"
-msgid "<link href=\"text/simpress/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/simpress/main0103.xhp\" name=\"Visualitza\">Visualitza</link>"
+msgid "<link href=\"text/simpress/main0103.xhp\">View</link>"
+msgstr "<link href=\"text/simpress/main0103.xhp\">Visualitza</link>"
#. H7Loj
#: main0103.xhp
@@ -242,14 +242,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/gallery.xhp\">Clip Art Gallery</link>"
msgstr "<link href=\"text/shared/01/gallery.xhp\">Galeria de clip art</link>"
-#. 8r72e
+#. dCeyT
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3149121\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Escala\">Escala</link>"
+msgid "<link href=\"text/shared/01/03010000.xhp\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\">Escala</link>"
#. Dp7mC
#: main0104.xhp
@@ -260,14 +260,14 @@ msgctxt ""
msgid "Insert"
msgstr "Insereix"
-#. EzN4i
+#. UswAF
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/main0104.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/simpress/main0104.xhp\" name=\"Insereix\">Insereix</link>"
+msgid "<link href=\"text/simpress/main0104.xhp\">Insert</link>"
+msgstr "<link href=\"text/simpress/main0104.xhp\">Insereix</link>"
#. 9MaAn
#: main0104.xhp
@@ -278,14 +278,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains the commands that are used to insert new elements into the document, for example, graphics, objects, special characters and other files.</ahelp>"
msgstr "<ahelp hid=\".\">Este menú conté les ordes que s'utilitzen per inserir elements nous en el document, com ara gràfics, objectes, caràcters especials i altres fitxers.</ahelp>"
-#. ZmgWG
+#. 2stQM
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3146918\n"
"help.text"
-msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagrama\">Diagrama</link>"
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\">Diagrama</link>"
#. QKdUC
#: main0104.xhp
@@ -296,41 +296,41 @@ msgctxt ""
msgid "Inserts a chart."
msgstr "Insereix un diagrama"
-#. Rz4Mz
+#. D4RZD
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3145768\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Taula\">Taula</link>"
+msgid "<link href=\"text/simpress/01/04080100.xhp\">Table</link>"
+msgstr "<link href=\"text/simpress/01/04080100.xhp\">Taula</link>"
-#. beJfB
+#. YqHfD
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3147003\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=\"Floating Frame\">Marc flotant</link>"
+msgid "<link href=\"text/shared/01/04160500.xhp\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\">Marc flotant</link>"
-#. bAHCA
+#. mSQgW
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3156285\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Enllaç\">Enllaç</link>"
+msgid "<link href=\"text/shared/02/09070000.xhp\">Hyperlink</link>"
+msgstr "<link href=\"text/shared/02/09070000.xhp\">Enllaç</link>"
-#. qs9B7
+#. XNGME
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3163726\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=\"Caràcter especial\">Caràcter especial</link>"
+msgid "<link href=\"text/shared/01/04100000.xhp\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\">Caràcter especial</link>"
#. JdPCK
#: main0104.xhp
@@ -359,14 +359,14 @@ msgctxt ""
msgid "Window"
msgstr "Finestra"
-#. YsScE
+#. ALa7K
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
"hd_id3153770\n"
"help.text"
-msgid "<link href=\"text/simpress/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr "<link href=\"text/simpress/main0107.xhp\" name=\"Finestra\">Finestra</link>"
+msgid "<link href=\"text/simpress/main0107.xhp\">Window</link>"
+msgstr "<link href=\"text/simpress/main0107.xhp\">Finestra</link>"
#. kPAHW
#: main0107.xhp
@@ -386,14 +386,14 @@ msgctxt ""
msgid "Modify"
msgstr "Modifica"
-#. ZGRtr
+#. tUF2n
#: main0113.xhp
msgctxt ""
"main0113.xhp\n"
"hd_id3154020\n"
"help.text"
-msgid "<link href=\"text/simpress/main0113.xhp\" name=\"Modify\">Modify</link>"
-msgstr "<link href=\"text/simpress/main0113.xhp\" name=\"Modifica\">Modifica</link>"
+msgid "<link href=\"text/simpress/main0113.xhp\">Modify</link>"
+msgstr "<link href=\"text/simpress/main0113.xhp\">Modifica</link>"
#. 366n5
#: main0113.xhp
@@ -404,14 +404,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains commands for modifying objects in your document.</ahelp>"
msgstr "<ahelp hid=\".\">Conté ordes per modificar objectes del document.</ahelp>"
-#. a6jfa
+#. TdAB4
#: main0113.xhp
msgctxt ""
"main0113.xhp\n"
"hd_id3153188\n"
"help.text"
-msgid "<link href=\"text/shared/02/05090000.xhp\" name=\"Rotate\">Rotate</link>"
-msgstr "<link href=\"text/shared/02/05090000.xhp\" name=\"Gira\">Gira</link>"
+msgid "<link href=\"text/shared/02/05090000.xhp\">Rotate</link>"
+msgstr "<link href=\"text/shared/02/05090000.xhp\">Gira</link>"
#. 2Cp7F
#: main0113.xhp
@@ -422,50 +422,50 @@ msgctxt ""
msgid "Rotates the selected object(s)."
msgstr "Gira els objectes seleccionats."
-#. Vn3aa
+#. EUkSy
#: main0113.xhp
msgctxt ""
"main0113.xhp\n"
"hd_id3153966\n"
"help.text"
-msgid "<link href=\"text/shared/01/05190000.xhp\" name=\"Name Object\">Name Object</link>"
-msgstr "<link href=\"text/shared/01/05190000.xhp\" name=\"Anomena l'objecte\">Anomena l'objecte</link>"
+msgid "<link href=\"text/shared/01/05190000.xhp\">Name Object</link>"
+msgstr "<link href=\"text/shared/01/05190000.xhp\">Anomena l'objecte</link>"
-#. 5weav
+#. b4djD
#: main0113.xhp
msgctxt ""
"main0113.xhp\n"
"hd_id3154656\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Agrupa\">Agrupa</link>"
+msgid "<link href=\"text/shared/01/05290100.xhp\">Group</link>"
+msgstr "<link href=\"text/shared/01/05290100.xhp\">Agrupa</link>"
-#. RpVUX
+#. 2PFAU
#: main0113.xhp
msgctxt ""
"main0113.xhp\n"
"hd_id3153484\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Desagrupa\">Desagrupa</link>"
+msgid "<link href=\"text/shared/01/05290200.xhp\">Ungroup</link>"
+msgstr "<link href=\"text/shared/01/05290200.xhp\">Desagrupa</link>"
-#. hE87W
+#. ixgft
#: main0113.xhp
msgctxt ""
"main0113.xhp\n"
"hd_id3148870\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=\"Inclou-ho al grup\">Inclou-ho al grup</link>"
+msgid "<link href=\"text/shared/01/05290300.xhp\">Enter Group</link>"
+msgstr "<link href=\"text/shared/01/05290300.xhp\">Inclou-ho al grup</link>"
-#. 4RhH7
+#. VTAAf
#: main0113.xhp
msgctxt ""
"main0113.xhp\n"
"hd_id3143233\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=\"Ix del grup\">Ix del grup</link>"
+msgid "<link href=\"text/shared/01/05290400.xhp\">Exit Group</link>"
+msgstr "<link href=\"text/shared/01/05290400.xhp\">Ix del grup</link>"
#. s46iB
#: main0114.xhp
@@ -476,14 +476,14 @@ msgctxt ""
msgid "Slide Show"
msgstr "Presentació de diapositives"
-#. Lsz4F
+#. h6f3x
#: main0114.xhp
msgctxt ""
"main0114.xhp\n"
"hd_id3154011\n"
"help.text"
-msgid "<link href=\"text/simpress/main0114.xhp\" name=\"Slide Show\">Slide Show</link>"
-msgstr "<link href=\"text/simpress/main0114.xhp\" name=\"Presentació de diapositives\">Presentació de diapositives</link>"
+msgid "<link href=\"text/simpress/main0114.xhp\">Slide Show</link>"
+msgstr "<link href=\"text/simpress/main0114.xhp\">Presentació de diapositives</link>"
#. CxAVS
#: main0114.xhp
@@ -494,23 +494,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains commands and options for running a presentation.</ahelp>"
msgstr "<ahelp hid=\".\">Conté ordes i opcions per executar una presentació.</ahelp>"
-#. tEecG
+#. NPAGF
#: main0114.xhp
msgctxt ""
"main0114.xhp\n"
"hd_id3154510\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show Settings\">Slide Show Settings</link>"
-msgstr "<link href=\"text/simpress/01/06080000.xhp\" name=\"Paràmetres de la presentació de diapositives\">Paràmetres de la presentació de diapositives</link>"
+msgid "<link href=\"text/simpress/01/06080000.xhp\">Slide Show Settings</link>"
+msgstr "<link href=\"text/simpress/01/06080000.xhp\">Paràmetres de la presentació de diapositives</link>"
-#. fhFvx
+#. nk7DF
#: main0114.xhp
msgctxt ""
"main0114.xhp\n"
"hd_id3153486\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interaction\">Interaction</link>"
-msgstr "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interacció\">Interacció</link>"
+msgid "<link href=\"text/simpress/01/06070000.xhp\">Interaction</link>"
+msgstr "<link href=\"text/simpress/01/06070000.xhp\">Interacció</link>"
#. Hyr2x
#: main0114.xhp
@@ -521,14 +521,14 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/06060000.xhp\">Custom Animation</link>"
msgstr "<link href=\"text/simpress/01/06060000.xhp\">Animació personalitzada</link>"
-#. dESj8
+#. CdmoE
#: main0114.xhp
msgctxt ""
"main0114.xhp\n"
"hd_id3153711\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06100000.xhp\" name=\"Custom Slide Show\">Custom Slide Show</link>"
-msgstr "<link href=\"text/simpress/01/06100000.xhp\" name=\"Presentació de diapositives personalitzada\">Presentació de diapositives personalitzada</link>"
+msgid "<link href=\"text/simpress/01/06100000.xhp\">Custom Slide Show</link>"
+msgstr "<link href=\"text/simpress/01/06100000.xhp\">Presentació de diapositives personalitzada</link>"
#. 5DRv5
#: main0200.xhp
@@ -539,14 +539,14 @@ msgctxt ""
msgid "Toolbars"
msgstr "Barres d'eines"
-#. 5hReJ
+#. GeHBb
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
"hd_id3147434\n"
"help.text"
-msgid "<variable id=\"main0200\"><link href=\"text/simpress/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/simpress/main0200.xhp\" name=\"Barres d'eines\">Barres d'eines</link></variable>"
+msgid "<variable id=\"main0200\"><link href=\"text/simpress/main0200.xhp\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/simpress/main0200.xhp\">Barres d'eines</link></variable>"
#. 5KEzC
#: main0200.xhp
@@ -566,14 +566,14 @@ msgctxt ""
msgid "Line and Filling Bar"
msgstr "Barra Línia i emplenament"
-#. XruYV
+#. fFFTq
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3149664\n"
"help.text"
-msgid "<link href=\"text/simpress/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
-msgstr "<link href=\"text/simpress/main0202.xhp\" name=\"Barra Línia i emplenament\">Barra Línia i emplenament</link>"
+msgid "<link href=\"text/simpress/main0202.xhp\">Line and Filling Bar</link>"
+msgstr "<link href=\"text/simpress/main0202.xhp\">Barra Línia i emplenament</link>"
#. ircV9
#: main0202.xhp
@@ -584,41 +584,41 @@ msgctxt ""
msgid "<ahelp hid=\".\">The Line and Filling Bar contains commands and options that you can apply in the current view.</ahelp>"
msgstr "<ahelp hid=\".\">La barra Línia i emplenament conté ordes i opcions que podeu aplicar en la visualització actual.</ahelp>"
-#. TFupQ
+#. 7ASCP
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3156382\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=\"Estil de la línia\">Estil de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Estil de la línia</link>"
-#. GiC6f
+#. GDMdV
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3159184\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=\"Amplària de la línia\">Amplària de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Amplària de la línia</link>"
-#. CXAyv
+#. yn72z
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3150250\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=\"Color de la línia\">Color de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Color de la línia</link>"
-#. feVDA
+#. ieN7C
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3148609\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=\"Estil/emplenament de l'àrea\">Estil/emplenament de l'àrea</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Area Style / Filling</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\">Estil/emplenament de l'àrea</link>"
#. qXLpG
#: main0203.xhp
@@ -629,14 +629,14 @@ msgctxt ""
msgid "Text Formatting Bar"
msgstr "Barra Formatació del text"
-#. x6Qvj
+#. k4Bz5
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3150010\n"
"help.text"
-msgid "<link href=\"text/simpress/main0203.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
-msgstr "<link href=\"text/simpress/main0203.xhp\" name=\"Barra Formatació del text\">Barra Formatació del text</link>"
+msgid "<link href=\"text/simpress/main0203.xhp\">Text Formatting Bar</link>"
+msgstr "<link href=\"text/simpress/main0203.xhp\">Barra Formatació del text</link>"
#. 9JJNQ
#: main0203.xhp
@@ -647,41 +647,41 @@ msgctxt ""
msgid "To display the <emph>Text Formatting</emph> Bar, place the cursor inside a text object."
msgstr "Per visualitzar la barra <emph>Formatació del text</emph>, situeu el cursor dins d'un objecte de text."
-#. N6iWy
+#. RDafD
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3151391\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=\"Color del tipus de lletra\">Color del tipus de lletra</link>"
+msgid "<link href=\"text/shared/01/05020200.xhp\">Font Color</link>"
+msgstr "<link href=\"text/shared/01/05020200.xhp\">Color del tipus de lletra</link>"
-#. DJqGs
+#. sJH7p
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3154645\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caràcter\">Caràcter</link>"
+msgid "<link href=\"text/shared/01/05020000.xhp\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\">Caràcter</link>"
-#. rX3cG
+#. mFYRw
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3149984\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paràgraf\">Paràgraf</link>"
+msgid "<link href=\"text/shared/01/05030000.xhp\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\">Paràgraf</link>"
-#. hHhbF
+#. kZYjy
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3153619\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/01/06050000.xhp\" name=\"Numbering Symbols\">Numbering Symbols</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/01/06050000.xhp\" name=\"Símbols de numeració\">Símbols de numeració</link></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/01/06050000.xhp\">Numbering Symbols</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/01/06050000.xhp\">Símbols de numeració</link></caseinline></switchinline>"
#. 6FwAa
#: main0203.xhp
@@ -728,14 +728,14 @@ msgctxt ""
msgid "Slide View Bar"
msgstr "Barra Visualització de diapositives"
-#. CA5dk
+#. CiUcG
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id3150010\n"
"help.text"
-msgid "<link href=\"text/simpress/main0204.xhp\" name=\"Slide View Bar\">Slide View Bar</link>"
-msgstr "<link href=\"text/simpress/main0204.xhp\" name=\"Barra Visualització de diapositives\">Barra Visualització de diapositives</link>"
+msgid "<link href=\"text/simpress/main0204.xhp\">Slide View Bar</link>"
+msgstr "<link href=\"text/simpress/main0204.xhp\">Barra Visualització de diapositives</link>"
#. XatZ7
#: main0204.xhp
@@ -755,14 +755,14 @@ msgctxt ""
msgid "Status Bar"
msgstr "Barra d'estat"
-#. SHKYc
+#. AuiHU
#: main0206.xhp
msgctxt ""
"main0206.xhp\n"
"hd_id3153768\n"
"help.text"
-msgid "<link href=\"text/simpress/main0206.xhp\" name=\"Status Bar\">Status Bar</link>"
-msgstr "<link href=\"text/simpress/main0206.xhp\" name=\"Barra d'estat\">Barra d'estat</link>"
+msgid "<link href=\"text/simpress/main0206.xhp\">Status Bar</link>"
+msgstr "<link href=\"text/simpress/main0206.xhp\">Barra d'estat</link>"
#. xykEF
#: main0206.xhp
@@ -791,14 +791,14 @@ msgctxt ""
msgid "<bookmark_value>rulers; in presentations</bookmark_value><bookmark_value>origin of rulers</bookmark_value>"
msgstr "<bookmark_value>regles; en les presentacions</bookmark_value><bookmark_value>origen dels regles</bookmark_value>"
-#. 2PU5U
+#. L9A6B
#: main0209.xhp
msgctxt ""
"main0209.xhp\n"
"hd_id3153191\n"
"help.text"
-msgid "<link href=\"text/simpress/main0209.xhp\" name=\"Rulers\">Rulers</link>"
-msgstr "<link href=\"text/simpress/main0209.xhp\" name=\"Regles\">Regles</link>"
+msgid "<link href=\"text/simpress/main0209.xhp\">Rulers</link>"
+msgstr "<link href=\"text/simpress/main0209.xhp\">Regles</link>"
#. CidBg
#: main0209.xhp
@@ -827,23 +827,23 @@ msgctxt ""
msgid "When you select a text object on a slide, indents and tabs are displayed on the horizontal ruler. To change the indent or tab settings for the text object, drag an indent or a tab marker to a new location on the ruler."
msgstr "Quan seleccioneu un objecte de text en una diapositiva, els sagnats i les tabulacions es visualitzaran al regle horitzontal. Per canviar la configuració del sagnat o de la tabulació per a l'objecte de text, arrossegueu una marca de sagnat o de tabulació a una nova posició del regle."
-#. 88MNV
+#. mcRAk
#: main0209.xhp
msgctxt ""
"main0209.xhp\n"
"par_id3150253\n"
"help.text"
-msgid "You can also drag a <link href=\"text/simpress/01/04030000.xhp\" name=\"snap line\">snap line</link> from a ruler to help you align objects on your slide. To insert a snap line using a ruler, drag the edge of a ruler into the slide."
-msgstr "També podeu arrossegar una <link href=\"text/simpress/01/04030000.xhp\" name=\"línia de captura\">línia de captura</link> des d'un regle per ajudar-vos a alinear objectes a la diapositiva. Per inserir una línia de captura mitjançant un regle, arrossegueu l'extrem d'un regle cap a la diapositiva."
+msgid "You can also drag a <link href=\"text/simpress/01/04030000.xhp\">snap line</link> from a ruler to help you align objects on your slide. To insert a snap line using a ruler, drag the edge of a ruler into the slide."
+msgstr "També podeu arrossegar una <link href=\"text/simpress/01/04030000.xhp\">línia de captura</link> des d'un regle per ajudar-vos a alinear objectes a la diapositiva. Per inserir una línia de captura mitjançant un regle, arrossegueu l'extrem d'un regle cap a la diapositiva."
-#. TDjBq
+#. TY2DC
#: main0209.xhp
msgctxt ""
"main0209.xhp\n"
"par_id3153820\n"
"help.text"
-msgid "To show or hide the rulers, choose <link href=\"text/simpress/01/03060000.xhp\" name=\"View - Rulers\"><emph>View - Rulers</emph></link>."
-msgstr "Per mostrar o amagar els regles, trieu <link href=\"text/simpress/01/03060000.xhp\" name=\"Visualització - Regle\"><emph>Visualització - Regle</emph></link>."
+msgid "To show or hide the rulers, choose <link href=\"text/simpress/01/03060000.xhp\"><emph>View - Rulers</emph></link>."
+msgstr "Per mostrar o amagar els regles, trieu <link href=\"text/simpress/01/03060000.xhp\"><emph>Visualització - Regle</emph></link>."
#. kYDwa
#: main0209.xhp
@@ -881,14 +881,14 @@ msgctxt ""
msgid "Drawing Bar"
msgstr "Barra Dibuix"
-#. LCVAg
+#. sdzeS
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"hd_id3150342\n"
"help.text"
-msgid "<link href=\"text/simpress/main0210.xhp\" name=\"Drawing Bar\">Drawing Bar</link>"
-msgstr "<link href=\"text/simpress/main0210.xhp\" name=\"Barra Dibuix\">Barra Dibuix</link>"
+msgid "<link href=\"text/simpress/main0210.xhp\">Drawing Bar</link>"
+msgstr "<link href=\"text/simpress/main0210.xhp\">Barra Dibuix</link>"
#. sfxro
#: main0210.xhp
@@ -1016,14 +1016,14 @@ msgctxt ""
msgid "Draws a text box where you click or drag in the current document. Click anywhere in the document, and then type or paste your text."
msgstr "Dibuixa un quadre de text allà on feu clic o arrossegueu al document actual. Feu clic a qualsevol lloc del document, i teclegeu o enganxeu el text."
-#. Ao4VC
+#. YjDX6
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"par_idN107C8\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10120000.xhp\" name=\"Lines and Arrows\">Lines and Arrows</link>"
-msgstr "<link href=\"text/simpress/02/10120000.xhp\" name=\"Línies i fletxes\">Línies i fletxes</link>"
+msgid "<link href=\"text/simpress/02/10120000.xhp\">Lines and Arrows</link>"
+msgstr "<link href=\"text/simpress/02/10120000.xhp\">Línies i fletxes</link>"
#. JqBX6
#: main0210.xhp
@@ -1034,14 +1034,14 @@ msgctxt ""
msgid "Opens the Arrows toolbar to insert lines and arrows."
msgstr "Obri la barra d'eines Fletxes per inserir línies i fletxes."
-#. ntUdL
+#. rKisP
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"par_idN10770\n"
"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punts\">Punts</link>"
+msgid "<link href=\"text/shared/01/05270000.xhp\">Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\">Punts</link>"
#. vBFHB
#: main0210.xhp
@@ -1052,13 +1052,13 @@ msgctxt ""
msgid "Enables you to edit points on your drawing."
msgstr "Permet editar punts del dibuix."
-#. UxhRp
+#. Jmer7
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"par_idN10783\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Gluepoints\">Gluepoints</link>"
+msgid "<link href=\"text/simpress/02/10030200.xhp\">Gluepoints</link>"
msgstr ""
#. BY9EA
@@ -1070,23 +1070,23 @@ msgctxt ""
msgid "Enables you to edit gluepoints on your drawing."
msgstr ""
-#. H6Dh5
+#. wuKXu
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"par_idN10803\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=\"Des d'un fitxer\">Des d'un fitxer</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\">Des d'un fitxer</link>"
-#. runsE
+#. zHJs8
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"hd_id3153078\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10030000.xhp\" name=\"Rotate\">Rotate</link>"
-msgstr "<link href=\"text/simpress/02/10030000.xhp\" name=\"Gira\">Gira</link>"
+msgid "<link href=\"text/simpress/02/10030000.xhp\">Rotate</link>"
+msgstr "<link href=\"text/simpress/02/10030000.xhp\">Gira</link>"
#. Tifz5
#: main0210.xhp
@@ -1124,14 +1124,14 @@ msgctxt ""
msgid "Outline Bar"
msgstr "Barra Esquema"
-#. dWPra
+#. ELj4j
#: main0211.xhp
msgctxt ""
"main0211.xhp\n"
"hd_id3154013\n"
"help.text"
-msgid "<link href=\"text/simpress/main0211.xhp\" name=\"Outline Bar\">Outline Bar</link>"
-msgstr "<link href=\"text/simpress/main0211.xhp\" name=\"Barra Esquema\">Barra Esquema</link>"
+msgid "<link href=\"text/simpress/main0211.xhp\">Outline Bar</link>"
+msgstr "<link href=\"text/simpress/main0211.xhp\">Barra Esquema</link>"
#. FxRYs
#: main0211.xhp
@@ -1151,14 +1151,14 @@ msgctxt ""
msgid "Slide Sorter Bar"
msgstr "Barra Classificador de diapositives"
-#. yG2XD
+#. LmDoY
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
"hd_id3149664\n"
"help.text"
-msgid "<link href=\"text/simpress/main0212.xhp\" name=\"Slide Sorter Bar\">Slide Sorter Bar</link>"
-msgstr "<link href=\"text/simpress/main0212.xhp\" name=\"Barra Classificador de diapositives\">Barra Classificador de diapositives</link>"
+msgid "<link href=\"text/simpress/main0212.xhp\">Slide Sorter Bar</link>"
+msgstr "<link href=\"text/simpress/main0212.xhp\">Barra Classificador de diapositives</link>"
#. MEAEC
#: main0212.xhp
@@ -1169,14 +1169,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">In<emph> Slide Sorter</emph> view, the <emph>Slide Sorter</emph> bar can be used.</ahelp>"
msgstr "<ahelp hid=\".\">En la vista <emph>Classificador de diapositives</emph>, es pot utilitzar la barra <emph>Classificador de diapositives</emph>.</ahelp>"
-#. B4GFE
+#. KDqCS
#: main0212.xhp
msgctxt ""
"main0212.xhp\n"
"hd_id3153711\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Slide Show</link>"
-msgstr "<link href=\"text/simpress/01/03130000.xhp\" name=\"Presentació de diapositives\">Presentació de diapositives</link>"
+msgid "<link href=\"text/simpress/01/03130000.xhp\">Slide Show</link>"
+msgstr "<link href=\"text/simpress/01/03130000.xhp\">Presentació de diapositives</link>"
#. fU9CM
#: main0213.xhp
@@ -1187,14 +1187,14 @@ msgctxt ""
msgid "Options Bar"
msgstr "Barra Opcions"
-#. V842q
+#. QNFDY
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3150012\n"
"help.text"
-msgid "<link href=\"text/simpress/main0213.xhp\" name=\"Options Bar\">Options Bar</link>"
-msgstr "<link href=\"text/simpress/main0213.xhp\" name=\"Barra Opcions\">Barra Opcions</link>"
+msgid "<link href=\"text/simpress/main0213.xhp\">Options Bar</link>"
+msgstr "<link href=\"text/simpress/main0213.xhp\">Barra Opcions</link>"
#. iiNJi
#: main0213.xhp
@@ -1205,86 +1205,86 @@ msgctxt ""
msgid "To display the <emph>Options Bar</emph>, choose <emph>View - Toolbars - Options</emph>."
msgstr "Per mostrar la barra <emph>Opcions</emph>, trieu <emph>Visualitza - Barres d'eines - Opcions</emph>."
-#. abaMY
+#. DZxaw
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3148487\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=\"Mostra la graella\">Mostra la graella</link>"
+msgid "<link href=\"text/shared/02/01171200.xhp\">Display Grid</link>"
+msgstr "<link href=\"text/shared/02/01171200.xhp\">Mostra la graella</link>"
-#. xaxgH
+#. HJ3HV
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3148700\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=\"Guies en moure\">Guies en moure</link>"
+msgid "<link href=\"text/shared/02/01171400.xhp\">Helplines While Moving</link>"
+msgstr "<link href=\"text/shared/02/01171400.xhp\">Guies en moure</link>"
-#. orgvE
+#. wfkRG
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3149603\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=\"Ajusta a la graella\">Ajusta a la graella</link>"
+msgid "<link href=\"text/shared/02/01171300.xhp\">Snap to Grid</link>"
+msgstr "<link href=\"text/shared/02/01171300.xhp\">Ajusta a la graella</link>"
-#. tNnju
+#. eEiur
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3143233\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Ajusta a les guies\">Ajusta a les guies</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\">Snap to Snap Lines</link>"
+msgstr "<link href=\"text/simpress/02/13140000.xhp\">Ajusta a les guies</link>"
-#. JCBBF
+#. CvsB7
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3146966\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
-msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Ajusta als marges de la pàgina\">Ajusta als marges de la pàgina</link>"
+msgid "<link href=\"text/simpress/02/13150000.xhp\">Snap to Page Margins</link>"
+msgstr "<link href=\"text/simpress/02/13150000.xhp\">Ajusta als marges de la pàgina</link>"
-#. Jjqx5
+#. qDEAN
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3149051\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Snap to Object Border</link>"
-msgstr "<link href=\"text/simpress/02/13160000.xhp\" name=\"Ajusta a la vora de l'objecte\">Ajusta a la vora de l'objecte</link>"
+msgid "<link href=\"text/simpress/02/13160000.xhp\">Snap to Object Border</link>"
+msgstr "<link href=\"text/simpress/02/13160000.xhp\">Ajusta a la vora de l'objecte</link>"
-#. HhDc4
+#. r2yAC
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3150392\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Snap to Object Points</link>"
-msgstr "<link href=\"text/simpress/02/13170000.xhp\" name=\"Ajusta als punts de l'objecte\">Ajusta als punts de l'objecte</link>"
+msgid "<link href=\"text/simpress/02/13170000.xhp\">Snap to Object Points</link>"
+msgstr "<link href=\"text/simpress/02/13170000.xhp\">Ajusta als punts de l'objecte</link>"
-#. tGXsd
+#. znjpM
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3156401\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
-msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Permet l'edició ràpida\">Permet l'edició ràpida</link>"
+msgid "<link href=\"text/simpress/02/13180000.xhp\">Allow Quick Editing</link>"
+msgstr "<link href=\"text/simpress/02/13180000.xhp\">Permet l'edició ràpida</link>"
-#. nr5FV
+#. eokVz
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3145823\n"
"help.text"
-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=\"Selecciona només l'àrea del text\">Selecciona només l'àrea del text</link>"
+msgid "<link href=\"text/simpress/02/13190000.xhp\">Select Text Area Only</link>"
+msgstr "<link href=\"text/simpress/02/13190000.xhp\">Selecciona només l'àrea del text</link>"
#. kTaqi
#: main0214.xhp
@@ -1295,14 +1295,14 @@ msgctxt ""
msgid "Image Bar"
msgstr "Barra d'imatges"
-#. GjkTE
+#. rv7oB
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
"hd_id3151245\n"
"help.text"
-msgid "<link href=\"text/simpress/main0214.xhp\" name=\"Image Bar\">Image Bar</link>"
-msgstr "<link href=\"text/simpress/main0214.xhp\" name=\"Image Bar\">Barra d'imatges</link>"
+msgid "<link href=\"text/simpress/main0214.xhp\">Image Bar</link>"
+msgstr "<link href=\"text/simpress/main0214.xhp\">Barra d'imatges</link>"
#. m65F6
#: main0214.xhp
@@ -1322,14 +1322,14 @@ msgctxt ""
msgid "$[officename] Impress Features"
msgstr "Funcions del $[officename] Impress"
-#. zCVvT
+#. 3ciws
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"hd_id3146119\n"
"help.text"
-msgid "<variable id=\"main0503\"><link href=\"text/simpress/main0503.xhp\" name=\"$[officename] Impress Features\">$[officename] Impress Features</link></variable>"
-msgstr "<variable id=\"main0503\"><link href=\"text/simpress/main0503.xhp\" name=\"Funcions del $[officename] Impress\">Funcions del $[officename] Impress</link></variable>"
+msgid "<variable id=\"main0503\"><link href=\"text/simpress/main0503.xhp\">$[officename] Impress Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/simpress/main0503.xhp\">Funcions del $[officename] Impress</link></variable>"
#. ifaB7
#: main0503.xhp
@@ -1466,14 +1466,14 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. Auju9
+#. FUnyq
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edita</link>"
+msgid "<link href=\"text/simpress/main_edit.xhp\">Edit</link>"
+msgstr "<link href=\"text/simpress/main_edit.xhp\">Edita</link>"
#. 4wDGi
#: main_edit.xhp
@@ -1484,14 +1484,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
msgstr "<ahelp hid=\".\">Aquest menú conté ordres per a editar el contingut del document actual.</ahelp>"
-#. ERYiR
+#. Fjb9W
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3154649\n"
"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punts\">Punts</link>"
+msgid "<link href=\"text/shared/01/05270000.xhp\">Points</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\">Punts</link>"
#. 7vrGM
#: main_edit.xhp
@@ -1502,13 +1502,13 @@ msgctxt ""
msgid "Switches the <emph>Edit Points</emph> mode on and off."
msgstr "Activa o desactiva el mode <emph>Edita els punts</emph>."
-#. BRDEE
+#. YfdVn
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3145116\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Gluepoints\">Gluepoints</link>"
+msgid "<link href=\"text/simpress/02/10030200.xhp\">Gluepoints</link>"
msgstr ""
#. BQq7C
@@ -1520,32 +1520,32 @@ msgctxt ""
msgid "Switches the <emph>Edit Gluepoints</emph> mode on and off."
msgstr ""
-#. exzAB
+#. Zibbx
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3150396\n"
"help.text"
-msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Camps\">Camps</link>"
+msgid "<link href=\"text/simpress/01/02160000.xhp\">Fields</link>"
+msgstr "<link href=\"text/simpress/01/02160000.xhp\">Camps</link>"
-#. 24C2j
+#. mvQEh
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id3149355\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Enllaços\">Enllaços</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\">Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\">Enllaços</link>"
-#. WQGVG
+#. Ne3cE
#: main_edit.xhp
msgctxt ""
"main_edit.xhp\n"
"hd_id0914201502131542\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Objecte\">Objecte</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\">Object</link>"
+msgstr "<link href=\"text/shared/01/02200000.xhp\">Objecte</link>"
#. XiyED
#: main_format.xhp
@@ -1556,14 +1556,14 @@ msgctxt ""
msgid "Format"
msgstr "Format"
-#. GSGJp
+#. qXUAS
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3152596\n"
"help.text"
-msgid "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
+msgid "<link href=\"text/simpress/main_format.xhp\">Format</link>"
+msgstr "<link href=\"text/simpress/main_format.xhp\">Format</link>"
#. GySd7
#: main_format.xhp
@@ -1574,13 +1574,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr "<ahelp hid=\".\">Conté ordres per a formatar l'estructura i els continguts del document.</ahelp>"
-#. op3CQ
+#. EzBaC
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id951602975070826\n"
"help.text"
-msgid "<link href=\"text/simpress/format_submenu_lists.xhp\" name=\"Impress Format list submenu\">Lists</link>"
+msgid "<link href=\"text/simpress/format_submenu_lists.xhp\">Lists</link>"
msgstr ""
#. FC8nb
@@ -1610,32 +1610,32 @@ msgctxt ""
msgid "Shows commands to edit, update, create, and manage styles."
msgstr ""
-#. CJJ22
+#. PgcT7
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3147401\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caràcter\">Caràcter</link>"
+msgid "<link href=\"text/shared/01/05020000.xhp\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\">Caràcter</link>"
-#. AW2xS
+#. MpiD6
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3149941\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paràgraf\">Paràgraf</link>"
+msgid "<link href=\"text/shared/01/05030000.xhp\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\">Paràgraf</link>"
-#. eZDbp
+#. SMbFw
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3147299\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=\"Pics i numeració\">Pics i numeració</link>"
+msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\">Pics i numeració</link>"
#. LnFgm
#: main_format.xhp
@@ -2096,14 +2096,14 @@ msgctxt ""
msgid "Tools"
msgstr "Eines"
-#. kVDRo
+#. j8HBG
#: main_tools.xhp
msgctxt ""
"main_tools.xhp\n"
"hd_id3154017\n"
"help.text"
-msgid "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Eines</link>"
+msgid "<link href=\"text/simpress/main_tools.xhp\">Tools</link>"
+msgstr "<link href=\"text/simpress/main_tools.xhp\">Eines</link>"
#. QCEeB
#: main_tools.xhp
@@ -2114,32 +2114,32 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
msgstr "<ahelp hid=\".\">Conté eines per a l'ortografia, una galeria d'objectes d'art que podeu afegir al document, així com eines per configurar els menús i les preferències de configuració del programa.</ahelp>"
-#. dqGMu
+#. NgjZ3
#: main_tools.xhp
msgctxt ""
"main_tools.xhp\n"
"hd_id3145590\n"
"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Mapa d'imatge\">Mapa d'imatge</link>"
+msgid "<link href=\"text/shared/01/02220000.xhp\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\">Mapa d'imatge</link>"
-#. qERAx
+#. Wk79g
#: main_tools.xhp
msgctxt ""
"main_tools.xhp\n"
"hd_id3153248\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Opcions de correcció automàtica</link>"
+msgid "<link href=\"text/shared/01/06040000.xhp\">AutoCorrect Options</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\">Opcions de correcció automàtica</link>"
-#. b8grv
+#. JFTcx
#: main_tools.xhp
msgctxt ""
"main_tools.xhp\n"
"hd_id3149130\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Personalitza\">Personalitza</link>"
+msgid "<link href=\"text/shared/01/06140000.xhp\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\">Personalitza</link>"
#. A8xE3
#: submenu_object_shape.xhp
@@ -2150,13 +2150,13 @@ msgctxt ""
msgid "Textbox and Shape (Impress)"
msgstr ""
-#. HEbyL
+#. uygwP
#: submenu_object_shape.xhp
msgctxt ""
"submenu_object_shape.xhp\n"
"hd_id231615117568430\n"
"help.text"
-msgid "<link href=\"text/simpress/submenu_object_shape.xhp\" name=\"Object and Shape\">Textbox and Shape</link>"
+msgid "<link href=\"text/simpress/submenu_object_shape.xhp\">Textbox and Shape</link>"
msgstr ""
#. aBtgV
diff --git a/source/ca-valencia/helpcontent2/source/text/simpress/01.po b/source/ca-valencia/helpcontent2/source/text/simpress/01.po
index 37315b985a2..b4e82691708 100644
--- a/source/ca-valencia/helpcontent2/source/text/simpress/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/simpress/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>Presentation HTML export</bookmark_value> <bookmark_value>Drawing HTML export</bookmark_value><bookmark_value>exporting;to HTML format</bookmark_value>"
msgstr "<bookmark_value>exportació de presentation HTML</bookmark_value><bookmark_value>exportació de dibuix a HTML</bookmark_value><bookmark_value>exportació;a format HTML</bookmark_value>"
-#. y8AoW
+#. YFAxC
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"hd_id3153728\n"
"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Exporta\">Exporta</link>"
+msgid "<link href=\"text/simpress/01/01170000.xhp\">Export</link>"
+msgstr "<link href=\"text/simpress/01/01170000.xhp\">Exporta</link>"
#. KTVcm
#: 01170000.xhp
@@ -62,41 +62,41 @@ msgctxt ""
msgid "The following file formats present you with additional export options after you click <emph>Save</emph>:"
msgstr "Els formats de fitxer següents vos presenten opcions addicionals d'exportació després de fer clic a <emph>Guarda</emph>:"
-#. XutD9
+#. cSNvk
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3155961\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01110000.xhp\" name=\"HTML Document\">HTML Document</link>, <link href=\"text/shared/00/00000200.xhp\" name=\"Image Options\">JPEG, SVM/WMF/PICT/MET, BMP, GIF, EPS, PNG, PBM, PPM, PGM</link>."
-msgstr "<link href=\"text/shared/autopi/01110000.xhp\" name=\"HTML Document\">Document HTML</link>, <link href=\"text/shared/00/00000200.xhp\" name=\"Image Options\">JPEG, SVM/WMF/PICT/MET, BMP, GIF, EPS, PNG, PBM, PPM, PGM</link>."
+msgid "<link href=\"text/shared/autopi/01110000.xhp\">HTML Document</link>, <link href=\"text/shared/00/00000200.xhp\">JPEG, SVM/WMF/PICT/MET, BMP, GIF, EPS, PNG, PBM, PPM, PGM</link>."
+msgstr "<link href=\"text/shared/autopi/01110000.xhp\">Document HTML</link>, <link href=\"text/shared/00/00000200.xhp\">JPEG, SVM/WMF/PICT/MET, BMP, GIF, EPS, PNG, PBM, PPM, PGM</link>."
-#. oyYNp
+#. LEh2K
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3153817\n"
"help.text"
-msgid "If you choose \"HTML Document\" as your file format, the <emph>HTML Export </emph><link href=\"text/shared/autopi/01110000.xhp\" name=\"AutoPilot\">Wizard</link> appears. This wizard guides you through the export process and includes the option to save the pictures in your presentation in GIF or JPG format."
-msgstr "Si trieu «Document HTML» com a format de fitxer, apareix l'<link href=\"text/shared/autopi/01110000.xhp\" name=\"AutoPilot\">auxiliar</link> <emph>d'exportació HTML</emph>. Este auxiliar vos guia a través del procés d'exportació i inclou l'opció de guardar les imatges de la presentació en format GIF o JPG."
+msgid "If you choose \"HTML Document\" as your file format, the <emph>HTML Export </emph><link href=\"text/shared/autopi/01110000.xhp\">Wizard</link> appears. This wizard guides you through the export process and includes the option to save the pictures in your presentation in GIF or JPG format."
+msgstr "Si trieu «Document HTML» com a format de fitxer, apareix l'<link href=\"text/shared/autopi/01110000.xhp\">auxiliar</link> <emph>d'exportació HTML</emph>. Este auxiliar vos guia a través del procés d'exportació i inclou l'opció de guardar les imatges de la presentació en format GIF o JPG."
-#. g4fDE
+#. 5Ej6X
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3148604\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export dialog\">Export dialog</link>"
-msgstr "<link href=\"text/shared/01/01070001.xhp\" name=\"Diàleg d'exportació\">Diàleg d'exportació</link>"
+msgid "<link href=\"text/shared/01/01070001.xhp\">Export dialog</link>"
+msgstr "<link href=\"text/shared/01/01070001.xhp\">Diàleg d'exportació</link>"
-#. jFC7o
+#. gDWyn
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3159208\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information on Import and Export Filters</link>"
-msgstr "<link href=\"text/shared/00/00000020.xhp\" name=\"Informació sobre els filtres d'importació i exportació\">Informació sobre els filtres d'importació i exportació</link>"
+msgid "<link href=\"text/shared/00/00000020.xhp\">Information on Import and Export Filters</link>"
+msgstr "<link href=\"text/shared/00/00000020.xhp\">Informació sobre els filtres d'importació i exportació</link>"
#. yzNBP
#: 02110000.xhp
@@ -116,14 +116,14 @@ msgctxt ""
msgid "<bookmark_value>Navigator; presentations</bookmark_value><bookmark_value>presentations; navigating</bookmark_value>"
msgstr "<bookmark_value>Navegador; presentacions</bookmark_value><bookmark_value>presentacions; navegació</bookmark_value>"
-#. JLajc
+#. 5GtBf
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3149664\n"
"help.text"
-msgid "<link href=\"text/simpress/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
-msgstr "<link href=\"text/simpress/01/02110000.xhp\" name=\"Navegador\">Navegador</link>"
+msgid "<link href=\"text/simpress/01/02110000.xhp\">Navigator</link>"
+msgstr "<link href=\"text/simpress/01/02110000.xhp\">Navegador</link>"
#. xMH7o
#: 02110000.xhp
@@ -134,13 +134,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/NavigatorPanel\">Opens the Navigator, where you can quickly jump to other slides or move between open files.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/NavigatorPanel\">Obri el Navegador, des d'on podeu saltar ràpidament a altres diapositives o moure-vos entre fitxers oberts.</ahelp>"
-#. ce4X2
+#. i5YeK
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154015\n"
"help.text"
-msgid "You can <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dock\">dock</link> the Navigator to the edge of your workspace."
+msgid "You can <link href=\"text/shared/00/00000005.xhp#docking\">dock</link> the Navigator to the edge of your workspace."
msgstr ""
#. C3o34
@@ -413,14 +413,14 @@ msgctxt ""
msgid "Insert as hyperlink"
msgstr "Insereix com a enllaç"
-#. XNBGC
+#. QbFYK
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150713\n"
"help.text"
-msgid "Inserts slides as a hyperlink (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>) into the active slide."
-msgstr "Insereix diapositives com a enllaços (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>) a la diapositiva activa."
+msgid "Inserts slides as a hyperlink (<link href=\"text/shared/00/00000002.xhp#url\">URL</link>) into the active slide."
+msgstr "Insereix diapositives com a enllaços (<link href=\"text/shared/00/00000002.xhp#url\">URL</link>) a la diapositiva activa."
#. G4sjC
#: 02110000.xhp
@@ -431,13 +431,13 @@ msgctxt ""
msgid "Insert as link"
msgstr "Insereix com a enllaç"
-#. ik84A
+#. 2DtaC
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153747\n"
"help.text"
-msgid "Inserts slides as a <link href=\"text/shared/00/00000005.xhp#link\" name=\"link\">link</link> into the active slide."
+msgid "Inserts slides as a <link href=\"text/shared/00/00000005.xhp#link\">link</link> into the active slide."
msgstr ""
#. 3RHDp
@@ -521,13 +521,13 @@ msgctxt ""
msgid "Duplicate"
msgstr "Duplica"
-#. NBCfa
+#. gFg8C
#: 02120000.xhp
msgctxt ""
"02120000.xhp\n"
"hd_id3148868\n"
"help.text"
-msgid "<variable id=\"Duplicateh1\"><link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link></variable>"
+msgid "<variable id=\"Duplicateh1\"><link href=\"text/simpress/01/02120000.xhp\">Duplicate</link></variable>"
msgstr ""
#. CHEMW
@@ -782,14 +782,14 @@ msgctxt ""
msgid "<bookmark_value>deleting; slides</bookmark_value><bookmark_value>slides;deleting</bookmark_value>"
msgstr "<bookmark_value>supressió; diapositives</bookmark_value><bookmark_value>diapositives;supressió</bookmark_value>"
-#. t6nPJ
+#. RHtSL
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"hd_id3154253\n"
"help.text"
-msgid "<link href=\"text/simpress/01/02130000.xhp\" name=\"Delete Slide\">Delete Slide</link>"
-msgstr "<link href=\"text/simpress/01/02130000.xhp\" name=\"Suprimeix una diapositiva\">Suprimeix una diapositiva</link>"
+msgid "<link href=\"text/simpress/01/02130000.xhp\">Delete Slide</link>"
+msgstr "<link href=\"text/simpress/01/02130000.xhp\">Suprimeix una diapositiva</link>"
#. wB8Uf
#: 02130000.xhp
@@ -890,14 +890,14 @@ msgctxt ""
msgid "<variable id=\"uebertext\"><ahelp hid=\".uno:Morphing\">Creates shapes and distributes them by uniform increments between two drawing objects.</ahelp></variable>"
msgstr "<variable id=\"uebertext\"><ahelp hid=\".uno:Morphing\">Crea formes i les distribueix per increments uniformes entre dos objectes de dibuix.</ahelp></variable>"
-#. af9G5
+#. Z5HCL
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"par_id3146971\n"
"help.text"
-msgid "$[officename] draws a series of intermediate shapes between two selected objects and <link href=\"text/shared/01/05290000.xhp\" name=\"groups\">groups</link> the result."
-msgstr "El $[officename] dibuixa una sèrie de formes intermèdies entre dos objectes seleccionats i <link href=\"text/shared/01/05290000.xhp\" name=\"agrupa\">agrupa</link> el resultat."
+msgid "$[officename] draws a series of intermediate shapes between two selected objects and <link href=\"text/shared/01/05290000.xhp\">groups</link> the result."
+msgstr "El $[officename] dibuixa una sèrie de formes intermèdies entre dos objectes seleccionats i <link href=\"text/shared/01/05290000.xhp\">agrupa</link> el resultat."
#. vLBvr
#: 02150000.xhp
@@ -1106,14 +1106,14 @@ msgctxt ""
msgid "Option Bar"
msgstr "Barra d'opcions"
-#. bTZUK
+#. jghgT
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"hd_id3153415\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03050000.xhp\" name=\"Option Bar\">Option Bar</link>"
-msgstr "<link href=\"text/simpress/01/03050000.xhp\" name=\"Barra d'opcions\">Barra d'opcions</link>"
+msgid "<link href=\"text/simpress/01/03050000.xhp\">Option Bar</link>"
+msgstr "<link href=\"text/simpress/01/03050000.xhp\">Barra d'opcions</link>"
#. 9aNhs
#: 03060000.xhp
@@ -1124,14 +1124,14 @@ msgctxt ""
msgid "Rulers"
msgstr "Regles"
-#. xfLdU
+#. SGTvN
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"hd_id3146974\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03060000.xhp\" name=\"Rulers\">Rulers</link>"
-msgstr "<link href=\"text/simpress/01/03060000.xhp\" name=\"Regles\">Regles</link>"
+msgid "<link href=\"text/simpress/01/03060000.xhp\">Rulers</link>"
+msgstr "<link href=\"text/simpress/01/03060000.xhp\">Regles</link>"
#. D4d9G
#: 03060000.xhp
@@ -1142,14 +1142,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays or hides rulers at the top and left or right edges of the workspace.</ahelp>"
msgstr "<ahelp hid=\".\">Mostra o amaga els regles a les vores superior i esquerra de l'àrea de treball.</ahelp>"
-#. aBp7r
+#. NmDcF
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id3146972\n"
"help.text"
-msgid "You can use <link href=\"text/simpress/main0209.xhp\" name=\"rulers\">rulers</link> to position objects in the workspace, to set paragraph indents or to drag <link href=\"text/simpress/01/04030000.xhp\" name=\"guides\">guides</link> onto the page."
-msgstr "Podeu utilitzar <link href=\"text/simpress/main0209.xhp\" name=\"regles\">regles</link> per col·locar objectes a l'àrea de treball, definir sagnats de paràgrafs o arrossegar <link href=\"text/simpress/01/04030000.xhp\" name=\"guies\">guies</link> a la pàgina."
+msgid "You can use <link href=\"text/simpress/main0209.xhp\">rulers</link> to position objects in the workspace, to set paragraph indents or to drag <link href=\"text/simpress/01/04030000.xhp\">guides</link> onto the page."
+msgstr "Podeu utilitzar <link href=\"text/simpress/main0209.xhp\">regles</link> per col·locar objectes a l'àrea de treball, definir sagnats de paràgrafs o arrossegar <link href=\"text/simpress/01/04030000.xhp\">guies</link> a la pàgina."
#. pPJyz
#: 03070000.xhp
@@ -1160,14 +1160,14 @@ msgctxt ""
msgid "Presentation"
msgstr "Presentació"
-#. MdmuX
+#. uUJcE
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3153144\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03070000.xhp\" name=\"Presentation\">Presentation</link>"
-msgstr "<link href=\"text/simpress/01/03070000.xhp\" name=\"Presentació\">Presentació</link>"
+msgid "<link href=\"text/simpress/01/03070000.xhp\">Presentation</link>"
+msgstr "<link href=\"text/simpress/01/03070000.xhp\">Presentació</link>"
#. 22EaX
#: 03070000.xhp
@@ -1178,32 +1178,32 @@ msgctxt ""
msgid "<ahelp hid=\".uno:CommonTaskBarVisible\">Common commands for slides.</ahelp>"
msgstr "<ahelp hid=\".uno:CommonTaskBarVisible\">Ordes comunes per a diapositives.</ahelp>"
-#. vgMrv
+#. VHMKo
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3154018\n"
"help.text"
-msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr "<link href=\"text/simpress/01/newslide.xhp\" name=\"Slide\">Diapositiva</link>"
+msgid "<link href=\"text/simpress/01/new_slide.xhp\">Slide</link>"
+msgstr "<link href=\"text/simpress/01/newslide.xhp\">Diapositiva</link>"
-#. Ag9V3
+#. jEQBQ
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Slide Layout\">Slide Layout</link>"
-msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Format de la diapositiva\">Format de la diapositiva</link>"
+msgid "<link href=\"text/simpress/01/05130000.xhp\">Slide Layout</link>"
+msgstr "<link href=\"text/simpress/01/05130000.xhp\">Format de la diapositiva</link>"
-#. twX7u
+#. QHJwE
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3155960\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Change Slide Master</link>"
-msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Canvia la diapositiva mestra\">Canvia la diapositiva mestra</link>"
+msgid "<link href=\"text/simpress/01/05120000.xhp\">Change Slide Master</link>"
+msgstr "<link href=\"text/simpress/01/05120000.xhp\">Canvia la diapositiva mestra</link>"
#. UCxrT
#: 03080000.xhp
@@ -1223,14 +1223,14 @@ msgctxt ""
msgid "<bookmark_value>normal view;presentations</bookmark_value>"
msgstr "<bookmark_value>visualització normal;presentacions</bookmark_value>"
-#. dRX7B
+#. H9yft
#: 03080000.xhp
msgctxt ""
"03080000.xhp\n"
"hd_id3148576\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03080000.xhp\" name=\"Normal View\">Normal</link>"
-msgstr "<link href=\"text/simpress/01/03080000.xhp\" name=\"Visualització normal\">Normal</link>"
+msgid "<link href=\"text/simpress/01/03080000.xhp\">Normal</link>"
+msgstr "<link href=\"text/simpress/01/03080000.xhp\">Normal</link>"
#. WRgyh
#: 03080000.xhp
@@ -1295,14 +1295,14 @@ msgctxt ""
msgid "<bookmark_value>outline view</bookmark_value> <bookmark_value>editing;slide titles</bookmark_value>"
msgstr "<bookmark_value>visualització d'esquema</bookmark_value> <bookmark_value>edició;títols de diapositives</bookmark_value>"
-#. bHBNK
+#. ChBEP
#: 03090000.xhp
msgctxt ""
"03090000.xhp\n"
"hd_id3149664\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03090000.xhp\" name=\"Outline View\">Outline</link>"
-msgstr "<link href=\"text/simpress/01/03090000.xhp\" name=\"Visualització d'esquema\">Esquema</link>"
+msgid "<link href=\"text/simpress/01/03090000.xhp\">Outline</link>"
+msgstr "<link href=\"text/simpress/01/03090000.xhp\">Esquema</link>"
#. MF87J
#: 03090000.xhp
@@ -1313,14 +1313,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SD_BTN_OUTLINE\">Switches to outline view, where you can add, edit and reorganize slide titles and headings.</ahelp>"
msgstr "<ahelp hid=\"HID_SD_BTN_OUTLINE\">Canvia a la visualització d'esquema, on podeu afegir, editar i reordenar diapositives, títols i encapçalaments.</ahelp>"
-#. EoWBs
+#. XUm3E
#: 03090000.xhp
msgctxt ""
"03090000.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "The <emph>Text Formatting</emph> bar contains the following icons for slide titles:<link href=\"text/shared/02/06060000.xhp\" name=\"Promote\">Promote</link>, <link href=\"text/shared/02/06050000.xhp\" name=\"Demote\">Demote</link>, <link href=\"text/shared/02/06100000.xhp\" name=\"Move Up\">Move Up</link> and <link href=\"text/shared/02/06110000.xhp\" name=\"Move Down\">Move Down</link>. If you want to reorder slide titles with the keyboard, ensure that the cursor is at the beginning of a title and press Tab to move the title one level lower in the hierarchy. To move the title up one level, press Shift+Tab."
-msgstr "La barra <emph>Formatació del text</emph> conté les icones següents per a títols de diapositives: <link href=\"text/shared/02/06060000.xhp\" name=\"Augmenta un nivell\">Augmenta un nivell</link>, <link href=\"text/shared/02/06050000.xhp\" name=\"Disminueix un nivell\">Disminueix un nivell</link>, <link href=\"text/shared/02/06100000.xhp\" name=\"Mou amunt\">Mou amunt</link> i <link href=\"text/shared/02/06110000.xhp\" name=\"Mou avall\">Mou avall</link>. Si voleu reordenar els títols de les diapositives amb el teclat, assegureu-vos que el cursor és al principi d'un títol i premeu Tab per a moure el títol un nivell cap avall en la jerarquia. Per a moure el títol un nivell cap amunt, premeu Maj+Tab."
+msgid "The <emph>Text Formatting</emph> bar contains the following icons for slide titles:<link href=\"text/shared/02/06060000.xhp\">Promote</link>, <link href=\"text/shared/02/06050000.xhp\">Demote</link>, <link href=\"text/shared/02/06100000.xhp\">Move Up</link> and <link href=\"text/shared/02/06110000.xhp\">Move Down</link>. If you want to reorder slide titles with the keyboard, ensure that the cursor is at the beginning of a title and press Tab to move the title one level lower in the hierarchy. To move the title up one level, press Shift+Tab."
+msgstr "La barra <emph>Formatació del text</emph> conté les icones següents per a títols de diapositives: <link href=\"text/shared/02/06060000.xhp\">Augmenta un nivell</link>, <link href=\"text/shared/02/06050000.xhp\">Disminueix un nivell</link>, <link href=\"text/shared/02/06100000.xhp\">Mou amunt</link> i <link href=\"text/shared/02/06110000.xhp\">Mou avall</link>. Si voleu reordenar els títols de les diapositives amb el teclat, assegureu-vos que el cursor és al principi d'un títol i premeu Tab per a moure el títol un nivell cap avall en la jerarquia. Per a moure el títol un nivell cap amunt, premeu Maj+Tab."
#. ADcC3
#: 03090000.xhp
@@ -1340,14 +1340,14 @@ msgctxt ""
msgid "Slide Sorter"
msgstr "Classificador de diapositives"
-#. 5RA75
+#. bYF3i
#: 03100000.xhp
msgctxt ""
"03100000.xhp\n"
"hd_id3146974\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03100000.xhp\" name=\"Slide Sorter\">Slide Sorter</link>"
-msgstr "<link href=\"text/simpress/01/03100000.xhp\" name=\"Classificador de diapositives\">Classificador de diapositives</link>"
+msgid "<link href=\"text/simpress/01/03100000.xhp\">Slide Sorter</link>"
+msgstr "<link href=\"text/simpress/01/03100000.xhp\">Classificador de diapositives</link>"
#. KwK3S
#: 03100000.xhp
@@ -1376,14 +1376,14 @@ msgctxt ""
msgid "<bookmark_value>notes; adding to slides</bookmark_value> <bookmark_value>slides;inserting speaker notes</bookmark_value> <bookmark_value>speaker notes;inserting</bookmark_value>"
msgstr "<bookmark_value>notes; addició a les diapositives</bookmark_value> <bookmark_value>diapositives;inserció de notes del presentador</bookmark_value> <bookmark_value>notes del presentador;inserció</bookmark_value>"
-#. 6YvfE
+#. GKmum
#: 03110000.xhp
msgctxt ""
"03110000.xhp\n"
"hd_id3153190\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03110000.xhp\" name=\"Notes View\">Notes</link>"
-msgstr "<link href=\"text/simpress/01/03110000.xhp\" name=\"Visualització de les notes\">Notes</link>"
+msgid "<link href=\"text/simpress/01/03110000.xhp\">Notes</link>"
+msgstr "<link href=\"text/simpress/01/03110000.xhp\">Notes</link>"
#. F7s4S
#: 03110000.xhp
@@ -1403,14 +1403,14 @@ msgctxt ""
msgid "Handout Page"
msgstr "Pàgina de prospecte"
-#. nFAGo
+#. 8tNtv
#: 03120000.xhp
msgctxt ""
"03120000.xhp\n"
"hd_id3149456\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03120000.xhp\" name=\"Handout Page\">Handout Page</link>"
-msgstr "<link href=\"text/simpress/01/03120000.xhp\" name=\"Pàgina de prospecte\">Pàgina de prospecte</link>"
+msgid "<link href=\"text/simpress/01/03120000.xhp\">Handout Page</link>"
+msgstr "<link href=\"text/simpress/01/03120000.xhp\">Pàgina de prospecte</link>"
#. YaWbQ
#: 03120000.xhp
@@ -1439,14 +1439,14 @@ msgctxt ""
msgid "Slide Show"
msgstr "Presentació de diapositives"
-#. aZSkE
+#. YuR5N
#: 03130000.xhp
msgctxt ""
"03130000.xhp\n"
"hd_id3159153\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Slide Show</link>"
-msgstr "<link href=\"text/simpress/01/03130000.xhp\" name=\"Presentació de diapositives\">Presentació de diapositives</link>"
+msgid "<link href=\"text/simpress/01/03130000.xhp\">Slide Show</link>"
+msgstr "<link href=\"text/simpress/01/03130000.xhp\">Presentació de diapositives</link>"
#. GCriw
#: 03130000.xhp
@@ -1457,14 +1457,14 @@ msgctxt ""
msgid "<variable id=\"bldpra\"><ahelp hid=\".\">Starts your slide show.</ahelp></variable>"
msgstr "<variable id=\"bldpra\"><ahelp hid=\".\">Inicia la presentació de diapositives.</ahelp></variable>"
-#. D7jc6
+#. 7pj8D
#: 03130000.xhp
msgctxt ""
"03130000.xhp\n"
"par_id3155066\n"
"help.text"
-msgid "You can specify settings for running a slide show in <link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show - Slide Show Settings\"><emph>Slide Show - Slide Show Settings</emph></link>."
-msgstr "Podeu especificar les opcions per a fer una presentació de diapositives a <link href=\"text/simpress/01/06080000.xhp\" name=\"Presentació de diapositives - Paràmetres de la presentació de diapositives\"><emph>Presentació de diapositives - Paràmetres de la presentació de diapositives</emph></link>."
+msgid "You can specify settings for running a slide show in <link href=\"text/simpress/01/06080000.xhp\"><emph>Slide Show - Slide Show Settings</emph></link>."
+msgstr "Podeu especificar les opcions per a fer una presentació de diapositives a <link href=\"text/simpress/01/06080000.xhp\"><emph>Presentació de diapositives - Paràmetres de la presentació de diapositives</emph></link>."
#. UrkuE
#: 03130000.xhp
@@ -1538,14 +1538,14 @@ msgctxt ""
msgid "<bookmark_value>master views</bookmark_value>"
msgstr "<bookmark_value>visualitzacions mestres</bookmark_value>"
-#. cFABL
+#. k5NFD
#: 03150000.xhp
msgctxt ""
"03150000.xhp\n"
"hd_id3153142\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03150000.xhp\" name=\"Master\">Master</link>"
-msgstr "<link href=\"text/simpress/01/03150000.xhp\" name=\"Mestre\">Mestre</link>"
+msgid "<link href=\"text/simpress/01/03150000.xhp\">Master</link>"
+msgstr "<link href=\"text/simpress/01/03150000.xhp\">Mestre</link>"
#. WeTWx
#: 03150000.xhp
@@ -1574,14 +1574,14 @@ msgctxt ""
msgid "<bookmark_value>normal view; backgrounds</bookmark_value> <bookmark_value>backgrounds; normal view</bookmark_value> <bookmark_value>views;master slide view</bookmark_value> <bookmark_value>master slide view</bookmark_value>"
msgstr "<bookmark_value>visualització normal; fons</bookmark_value><bookmark_value>fons; visualització normal</bookmark_value><bookmark_value>visualitzacions;visualització de diapositiva mestra</bookmark_value><bookmark_value>visualització de diapositiva mestra</bookmark_value>"
-#. D8RE5
+#. DM3WL
#: 03150100.xhp
msgctxt ""
"03150100.xhp\n"
"hd_id3154013\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03150100.xhp\" name=\"Master Slide\">Master Slide</link>"
-msgstr "<link href=\"text/simpress/01/03150100.xhp\" name=\"Diapositiva mestra\">Diapositiva mestra</link>"
+msgid "<link href=\"text/simpress/01/03150100.xhp\">Master Slide</link>"
+msgstr "<link href=\"text/simpress/01/03150100.xhp\">Diapositiva mestra</link>"
#. yuN3X
#: 03150100.xhp
@@ -1646,14 +1646,14 @@ msgctxt ""
msgid "<bookmark_value>notes;default formatting</bookmark_value> <bookmark_value>backgrounds;notes</bookmark_value> <bookmark_value>speaker notes;defaults</bookmark_value>"
msgstr "<bookmark_value>notes;format per defecte</bookmark_value> <bookmark_value>fons;notes</bookmark_value> <bookmark_value>notes del presentador;per defecte</bookmark_value>"
-#. hj59d
+#. wGoUW
#: 03150300.xhp
msgctxt ""
"03150300.xhp\n"
"hd_id3153144\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03150300.xhp\" name=\"Master Notes\">Master Notes</link>"
-msgstr "<link href=\"text/simpress/01/03150300.xhp\" name=\"Notes mestres\"> Notes mestres</link>"
+msgid "<link href=\"text/simpress/01/03150300.xhp\">Master Notes</link>"
+msgstr "<link href=\"text/simpress/01/03150300.xhp\"> Notes mestres</link>"
#. QUxqM
#: 03150300.xhp
@@ -1682,14 +1682,14 @@ msgctxt ""
msgid "<bookmark_value>headers and footers;master slides layouts</bookmark_value> <bookmark_value>master slides layouts with headers and footers</bookmark_value>"
msgstr "<bookmark_value>capçaleres i peus;disposició de les diapositives mestres</bookmark_value><bookmark_value>disposició de les diapositives mestres amb capçaleres i peus</bookmark_value>"
-#. W4r4L
+#. d5tey
#: 03151000.xhp
msgctxt ""
"03151000.xhp\n"
"par_idN1056D\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03151000.xhp\" name=\"Master Elements\">Master Elements</link>"
-msgstr "<link href=\"text/simpress/01/03150000.xhp\" name=\"Elements mestres\">Elements mestres</link>"
+msgid "<link href=\"text/simpress/01/03151000.xhp\">Master Elements</link>"
+msgstr "<link href=\"text/simpress/01/03150000.xhp\">Elements mestres</link>"
#. sk9Tn
#: 03151000.xhp
@@ -2150,14 +2150,14 @@ msgctxt ""
msgid "<bookmark_value>display qualities of presentations</bookmark_value><bookmark_value>colors; displaying presentations</bookmark_value><bookmark_value>black and white display</bookmark_value><bookmark_value>grayscale display</bookmark_value>"
msgstr "<bookmark_value>qualitats de visualització de les presentacions</bookmark_value><bookmark_value>colors; visualització de presentacions</bookmark_value><bookmark_value>pantalla en blanc i negre</bookmark_value><bookmark_value>pantalla en escala de grisos</bookmark_value>"
-#. okWe2
+#. mEQaZ
#: 03180000.xhp
msgctxt ""
"03180000.xhp\n"
"hd_id3153142\n"
"help.text"
-msgid "<link href=\"text/simpress/01/03180000.xhp\" name=\"Display Quality\">Color/Grayscale</link>"
-msgstr "<link href=\"text/simpress/01/03180000.xhp\" name=\"Qualitat de visualització\">Color/escala de grisos</link>"
+msgid "<link href=\"text/simpress/01/03180000.xhp\">Color/Grayscale</link>"
+msgstr "<link href=\"text/simpress/01/03180000.xhp\">Color/escala de grisos</link>"
#. 4vVPz
#: 03180000.xhp
@@ -2240,13 +2240,13 @@ msgctxt ""
msgid "<bookmark_value>snap lines, see also guides</bookmark_value><bookmark_value>snap points;inserting</bookmark_value><bookmark_value>guides; inserting</bookmark_value><bookmark_value>magnetic lines in presentations</bookmark_value>"
msgstr "<bookmark_value>línies de captura, vegeu també guies</bookmark_value><bookmark_value>punts de captura;inserció</bookmark_value><bookmark_value>guies; inserció</bookmark_value><bookmark_value>línies magnètiques en presentacions</bookmark_value>"
-#. Hsx9X
+#. Rgycp
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"hd_id3145800\n"
"help.text"
-msgid "<variable id=\"insersnappointh1\"><link href=\"text/simpress/01/04030000.xhp\" name=\"Snap Point/Line\">Snap Point/Line</link></variable>"
+msgid "<variable id=\"insersnappointh1\"><link href=\"text/simpress/01/04030000.xhp\">Snap Point/Line</link></variable>"
msgstr ""
#. YTzoX
@@ -2276,14 +2276,14 @@ msgctxt ""
msgid "Draw or move an object near a snap point or snap line to snap it in place."
msgstr "Dibuixeu o arrossegueu un objecte a prop d'un punt o d'una línia de captura per a ajustar-lo al seu lloc."
-#. F4mMm
+#. A6SUa
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"par_id3157978\n"
"help.text"
-msgid "To set the snap range, choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070300.xhp\" name=\"Drawing - Grid\"><emph>%PRODUCTNAME Draw - Grid</emph></link></caseinline><defaultinline><link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentation - Grid\"><emph>%PRODUCTNAME Impress - Grid</emph></link></defaultinline></switchinline> in the Options dialog box."
-msgstr "Per a definir l'interval de captura, trieu <switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070300.xhp\" name=\"Dibuix - Graella\"><emph>%PRODUCTNAME Draw - Graella</emph></link></caseinline><defaultinline><link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentació - Graella\"><emph>%PRODUCTNAME Impress - Graella</emph></link></defaultinline></switchinline> del quadre de diàleg Opcions."
+msgid "To set the snap range, choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070300.xhp\"><emph>%PRODUCTNAME Draw - Grid</emph></link></caseinline><defaultinline><link href=\"text/shared/optionen/01070300.xhp\"><emph>%PRODUCTNAME Impress - Grid</emph></link></defaultinline></switchinline> in the Options dialog box."
+msgstr "Per a definir l'interval de captura, trieu <switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070300.xhp\"><emph>%PRODUCTNAME Draw - Graella</emph></link></caseinline><defaultinline><link href=\"text/shared/optionen/01070300.xhp\"><emph>%PRODUCTNAME Impress - Graella</emph></link></defaultinline></switchinline> del quadre de diàleg Opcions."
#. RVAJU
#: 04030000.xhp
@@ -2438,14 +2438,14 @@ msgctxt ""
msgid "<bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
msgstr "<bookmark_value>files; inserció</bookmark_value><bookmark_value>inserció; files</bookmark_value>"
-#. 34iMC
+#. wADr5
#: 04030000m.xhp
msgctxt ""
"04030000m.xhp\n"
"hd_id3150541\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04030000m.xhp\" name=\"Rows\">Rows</link>"
-msgstr "<link href=\"text/simpress/01/04030000m.xhp\" name=\"Files\">Files</link>"
+msgid "<link href=\"text/simpress/01/04030000m.xhp\">Rows</link>"
+msgstr "<link href=\"text/simpress/01/04030000m.xhp\">Files</link>"
#. NhkWT
#: 04030000m.xhp
@@ -2483,13 +2483,13 @@ msgctxt ""
msgid "<bookmark_value>guides; editing</bookmark_value><bookmark_value>snap guides and point;editing</bookmark_value><bookmark_value>editing; guides and snap points</bookmark_value>"
msgstr ""
-#. WVxZ4
+#. mr3uG
#: 04030100.xhp
msgctxt ""
"04030100.xhp\n"
"hd_id3149020\n"
"help.text"
-msgid "<variable id=\"EditSnapLinePointh1\"><link href=\"text/simpress/01/04030100.xhp\" name=\"Edit Snap Line / Point\">Edit Snap Line / Point</link></variable>"
+msgid "<variable id=\"EditSnapLinePointh1\"><link href=\"text/simpress/01/04030100.xhp\">Edit Snap Line / Point</link></variable>"
msgstr ""
#. MiDpq
@@ -2537,14 +2537,14 @@ msgctxt ""
msgid "<bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
msgstr "<bookmark_value>inserció; columnes</bookmark_value><bookmark_value>columnes; inserció</bookmark_value>"
-#. umGDB
+#. rX43P
#: 04040000m.xhp
msgctxt ""
"04040000m.xhp\n"
"hd_id3155628\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04040000m.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/simpress/01/04040000m.xhp\" name=\"Columnes\">Columnes</link>"
+msgid "<link href=\"text/simpress/01/04040000m.xhp\">Columns</link>"
+msgstr "<link href=\"text/simpress/01/04040000m.xhp\">Columnes</link>"
#. cEigK
#: 04040000m.xhp
@@ -2609,14 +2609,14 @@ msgctxt ""
msgid "<bookmark_value>inserting; objects from files</bookmark_value><bookmark_value>objects; inserting from files</bookmark_value><bookmark_value>slides; inserting as links</bookmark_value><bookmark_value>inserting; slides as links</bookmark_value><bookmark_value>backgrounds; deleting unused</bookmark_value>"
msgstr "<bookmark_value>inserció;objectes a partir de fitxers</bookmark_value><bookmark_value>objectes;inserció a partir de fitxers</bookmark_value><bookmark_value>diapositives;inserció en forma d'enllaços</bookmark_value><bookmark_value>inserció en forma d'enllaços;diapositives</bookmark_value><bookmark_value>fons;supressió de pàgines no utilitzades</bookmark_value>"
-#. rMG6A
+#. GzgdA
#: 04110100.xhp
msgctxt ""
"04110100.xhp\n"
"hd_id3146976\n"
"help.text"
-msgid "<variable id=\"insertobjectfromfile\"><link href=\"text/simpress/01/04110100.xhp\" name=\"Insert page\">Insert <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Slide</caseinline><defaultinline>Page</defaultinline></switchinline>/Objects from File</link></variable>"
-msgstr "<variable id=\"insertobjectfromfile\"><link href=\"text/simpress/01/04110100.xhp\" name=\"Insereix una pàgina\">Insereix <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">una diapositiva</caseinline><defaultinline>una pàgina</defaultinline></switchinline> o objectes del fitxer</link></variable>"
+msgid "<variable id=\"insertobjectfromfile\"><link href=\"text/simpress/01/04110100.xhp\">Insert <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Slide</caseinline><defaultinline>Page</defaultinline></switchinline>/Objects from File</link></variable>"
+msgstr "<variable id=\"insertobjectfromfile\"><link href=\"text/simpress/01/04110100.xhp\">Insereix <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">una diapositiva</caseinline><defaultinline>una pàgina</defaultinline></switchinline> o objectes del fitxer</link></variable>"
#. zCX2g
#: 04110100.xhp
@@ -2789,14 +2789,14 @@ msgctxt ""
msgid "Duplicate Slide"
msgstr "Duplica la diapositiva"
-#. fgKyZ
+#. izABU
#: 04120000.xhp
msgctxt ""
"04120000.xhp\n"
"hd_id3148576\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04120000.xhp\" name=\"Duplicate Slide\">Duplicate Slide</link>"
-msgstr "<link href=\"text/simpress/01/04120000.xhp\" name=\"Duplica la diapositiva\">Duplica la diapositiva</link>"
+msgid "<link href=\"text/simpress/01/04120000.xhp\">Duplicate Slide</link>"
+msgstr "<link href=\"text/simpress/01/04120000.xhp\">Duplica la diapositiva</link>"
#. bBYdu
#: 04120000.xhp
@@ -2825,14 +2825,14 @@ msgctxt ""
msgid "<bookmark_value>expanding;slides</bookmark_value><bookmark_value>slides;expanding</bookmark_value>"
msgstr "<bookmark_value>ampliació;diapositives</bookmark_value><bookmark_value>diapositives;ampliació</bookmark_value>"
-#. CjQtb
+#. uNv5T
#: 04130000.xhp
msgctxt ""
"04130000.xhp\n"
"hd_id3146119\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04130000.xhp\" name=\"Expand Slide\">Expand Slide</link>"
-msgstr "<link href=\"text/simpress/01/04130000.xhp\" name=\"Amplia la diapositiva\">Amplia la diapositiva</link>"
+msgid "<link href=\"text/simpress/01/04130000.xhp\">Expand Slide</link>"
+msgstr "<link href=\"text/simpress/01/04130000.xhp\">Amplia la diapositiva</link>"
#. 3hw2c
#: 04130000.xhp
@@ -2879,14 +2879,14 @@ msgctxt ""
msgid "<bookmark_value>summary slide</bookmark_value>"
msgstr "<bookmark_value>diapositiva de resum</bookmark_value>"
-#. FDx24
+#. UZAUy
#: 04140000.xhp
msgctxt ""
"04140000.xhp\n"
"hd_id3154013\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04140000.xhp\" name=\"Summary Slide\">Summary Slide</link>"
-msgstr "<link href=\"text/simpress/01/04140000.xhp\" name=\"Diapositiva de resum\">Diapositiva de resum</link>"
+msgid "<link href=\"text/simpress/01/04140000.xhp\">Summary Slide</link>"
+msgstr "<link href=\"text/simpress/01/04140000.xhp\">Diapositiva de resum</link>"
#. sYR47
#: 04140000.xhp
@@ -2915,14 +2915,14 @@ msgctxt ""
msgid "<bookmark_value>fields;in slides</bookmark_value>"
msgstr "<bookmark_value>camps;a les diapositives</bookmark_value>"
-#. G983V
+#. BmL4S
#: 04990000.xhp
msgctxt ""
"04990000.xhp\n"
"hd_id3154011\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04990000.xhp\" name=\"Fields\">Fields</link>"
-msgstr "<link href=\"text/simpress/01/04990000.xhp\" name=\"Camps\">Camps</link>"
+msgid "<link href=\"text/simpress/01/04990000.xhp\">Fields</link>"
+msgstr "<link href=\"text/simpress/01/04990000.xhp\">Camps</link>"
#. g9dUK
#: 04990000.xhp
@@ -2960,14 +2960,14 @@ msgctxt ""
msgid "<bookmark_value>dates; fixed</bookmark_value><bookmark_value>fields; dates (fixed)</bookmark_value>"
msgstr "<bookmark_value>dates;fixes</bookmark_value><bookmark_value>camps;dates (fixes)</bookmark_value>"
-#. WMpB9
+#. m9CgH
#: 04990100.xhp
msgctxt ""
"04990100.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04990100.xhp\" name=\"Date (fixed)\">Date (fixed)</link>"
-msgstr "<link href=\"text/simpress/01/04990100.xhp\" name=\"Data (fixa)\">Data (fixa)</link>"
+msgid "<link href=\"text/simpress/01/04990100.xhp\">Date (fixed)</link>"
+msgstr "<link href=\"text/simpress/01/04990100.xhp\">Data (fixa)</link>"
#. bzb5H
#: 04990100.xhp
@@ -2978,14 +2978,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertDateFieldFix\">Inserts the current date into your slide as a fixed field. The date is not automatically updated.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertDateFieldFix\">Insereix la data actual a la diapositiva com a camp fix. La data no s'actualitza automàticament.</ahelp>"
-#. foPs9
+#. 8Zf2n
#: 04990100.xhp
msgctxt ""
"04990100.xhp\n"
"par_id3146969\n"
"help.text"
-msgid "<variable id=\"bearbeiten\">To edit an inserted field in your slide, double-click the field, place the cursor in front of the first character in the field and choose <link href=\"text/simpress/01/02160000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>.</variable>"
-msgstr "<variable id=\"bearbeiten\">Per a editar un camp inserit a la diapositiva, feu-hi doble clic, poseu el cursor davant del primer caràcter del camp i trieu <link href=\"text/simpress/01/02160000.xhp\" name=\"Edita - Camps\"><emph>Edita ▸ Camps</emph></link>.</variable>"
+msgid "<variable id=\"bearbeiten\">To edit an inserted field in your slide, double-click the field, place the cursor in front of the first character in the field and choose <link href=\"text/simpress/01/02160000.xhp\"><emph>Edit - Fields</emph></link>.</variable>"
+msgstr "<variable id=\"bearbeiten\">Per a editar un camp inserit a la diapositiva, feu-hi doble clic, poseu el cursor davant del primer caràcter del camp i trieu <link href=\"text/simpress/01/02160000.xhp\"><emph>Edita ▸ Camps</emph></link>.</variable>"
#. mBkAw
#: 04990200.xhp
@@ -3005,14 +3005,14 @@ msgctxt ""
msgid "<bookmark_value>dates; variable</bookmark_value><bookmark_value>fields; dates (variable)</bookmark_value>"
msgstr "<bookmark_value>dates; variables</bookmark_value><bookmark_value>camps; dates (variables)</bookmark_value>"
-#. CGEui
+#. 3y8oD
#: 04990200.xhp
msgctxt ""
"04990200.xhp\n"
"hd_id3154320\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04990200.xhp\" name=\"Date (variable)\">Date (variable)</link>"
-msgstr "<link href=\"text/simpress/01/04990200.xhp\" name=\"Data (variable)\">Data (variable)</link>"
+msgid "<link href=\"text/simpress/01/04990200.xhp\">Date (variable)</link>"
+msgstr "<link href=\"text/simpress/01/04990200.xhp\">Data (variable)</link>"
#. vYg8F
#: 04990200.xhp
@@ -3041,14 +3041,14 @@ msgctxt ""
msgid "<bookmark_value>times; fixed</bookmark_value><bookmark_value>fields; times (fixed)</bookmark_value>"
msgstr "<bookmark_value>hores; fixes</bookmark_value><bookmark_value>camps; hores (fixes)</bookmark_value>"
-#. L9mWZ
+#. UaXFd
#: 04990300.xhp
msgctxt ""
"04990300.xhp\n"
"hd_id3146121\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04990300.xhp\" name=\"Time (fixed)\">Time (fixed)</link>"
-msgstr "<link href=\"text/simpress/01/04990300.xhp\" name=\"Hora (fixa)\">Hora (fixa)</link>"
+msgid "<link href=\"text/simpress/01/04990300.xhp\">Time (fixed)</link>"
+msgstr "<link href=\"text/simpress/01/04990300.xhp\">Hora (fixa)</link>"
#. 2qzbP
#: 04990300.xhp
@@ -3077,14 +3077,14 @@ msgctxt ""
msgid "<bookmark_value>times;variable</bookmark_value><bookmark_value>fields;times (variable)</bookmark_value>"
msgstr "<bookmark_value>hores;variables</bookmark_value><bookmark_value>camps;hores (variables)</bookmark_value>"
-#. m5txJ
+#. DAPcE
#: 04990400.xhp
msgctxt ""
"04990400.xhp\n"
"hd_id3146119\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04990400.xhp\" name=\"Time (variable)\">Time (variable)</link>"
-msgstr "<link href=\"text/simpress/01/04990400.xhp\" name=\"Hora (variable)\">Hora (variable)</link>"
+msgid "<link href=\"text/simpress/01/04990400.xhp\">Time (variable)</link>"
+msgstr "<link href=\"text/simpress/01/04990400.xhp\">Hora (variable)</link>"
#. vpBAK
#: 04990400.xhp
@@ -3113,14 +3113,14 @@ msgctxt ""
msgid "<bookmark_value>fields; page numbers</bookmark_value><bookmark_value>page number field</bookmark_value><bookmark_value>slide numbers</bookmark_value><bookmark_value>presentations; numbering slides in</bookmark_value>"
msgstr "<bookmark_value>camps; números de pàgina</bookmark_value><bookmark_value>camp del número de pàgina</bookmark_value><bookmark_value>números de diapositiva</bookmark_value><bookmark_value>presentacions;numeració de les diapositives en</bookmark_value>"
-#. a464Q
+#. XrUxP
#: 04990500.xhp
msgctxt ""
"04990500.xhp\n"
"hd_id3154319\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04990500.xhp\" name=\"Page Numbers\">Page Number</link>"
-msgstr "<link href=\"text/simpress/01/04990500.xhp\" name=\"Números de pàgina\">Número de pàgina</link>"
+msgid "<link href=\"text/simpress/01/04990500.xhp\">Page Number</link>"
+msgstr "<link href=\"text/simpress/01/04990500.xhp\">Número de pàgina</link>"
#. GqgCG
#: 04990500.xhp
@@ -3149,14 +3149,14 @@ msgctxt ""
msgid "<bookmark_value>authors</bookmark_value><bookmark_value>fields; authors</bookmark_value>"
msgstr "<bookmark_value>autors</bookmark_value><bookmark_value>camps; autors</bookmark_value>"
-#. MNmcN
+#. mF5M4
#: 04990600.xhp
msgctxt ""
"04990600.xhp\n"
"hd_id3146974\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04990600.xhp\" name=\"Author\">Author</link>"
-msgstr "<link href=\"text/simpress/01/04990600.xhp\" name=\"Autor\">Autor</link>"
+msgid "<link href=\"text/simpress/01/04990600.xhp\">Author</link>"
+msgstr "<link href=\"text/simpress/01/04990600.xhp\">Autor</link>"
#. HnAC8
#: 04990600.xhp
@@ -3167,14 +3167,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertAuthorField\">Inserts the first and last names listed in the $[officename] user data into the active slide.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertAuthorField\">Insereix a la diapositiva actual els noms i cognoms que apareixen a les dades de l'usuari del $[officename].</ahelp>"
-#. 4hcD7
+#. jeiii
#: 04990600.xhp
msgctxt ""
"04990600.xhp\n"
"par_id3154512\n"
"help.text"
-msgid "To edit the name, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\"><emph>$[officename] - User Data</emph></link>."
-msgstr "Per editar el nom, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - Dades de l'usuari\"><emph>$[officename] - Dades de l'usuari</emph></link>."
+msgid "To edit the name, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\"><emph>$[officename] - User Data</emph></link>."
+msgstr "Per editar el nom, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\"><emph>$[officename] - Dades de l'usuari</emph></link>."
#. LG2MC
#: 04990700.xhp
@@ -3194,14 +3194,14 @@ msgctxt ""
msgid "<bookmark_value>fields; file names</bookmark_value>"
msgstr "<bookmark_value>camps; noms de fitxer</bookmark_value>"
-#. vFKCV
+#. fkDoU
#: 04990700.xhp
msgctxt ""
"04990700.xhp\n"
"hd_id3148575\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04990700.xhp\" name=\"File name\">File name</link>"
-msgstr "<link href=\"text/simpress/01/04990700.xhp\" name=\"Nom de fitxer\">Nom de fitxer</link>"
+msgid "<link href=\"text/simpress/01/04990700.xhp\">File name</link>"
+msgstr "<link href=\"text/simpress/01/04990700.xhp\">Nom de fitxer</link>"
#. cBr95
#: 04990700.xhp
@@ -3266,14 +3266,14 @@ msgctxt ""
msgid "<bookmark_value>Styles window; graphics documents</bookmark_value> <bookmark_value>fill format mode; styles</bookmark_value>"
msgstr "<bookmark_value>Finestra d'estils; documents amb imatges</bookmark_value> <bookmark_value>mode d'emplenament de format; estils</bookmark_value>"
-#. vEkLA
+#. x9Y8d
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles\">Styles</link>"
-msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Estils\">Estils</link>"
+msgid "<link href=\"text/simpress/01/05100000.xhp\">Styles</link>"
+msgstr "<link href=\"text/simpress/01/05100000.xhp\">Estils</link>"
#. ULKew
#: 05100000.xhp
@@ -3293,14 +3293,14 @@ msgctxt ""
msgid "The Styles window in <item type=\"productname\">%PRODUCTNAME</item> Impress behaves differently than in other <item type=\"productname\">%PRODUCTNAME</item> programs. For example, you can create, edit and apply <emph>Graphic Styles</emph>, but you can only edit <emph>Presentation Styles</emph>."
msgstr "La finestra Estils del <item type=\"productname\">%PRODUCTNAME</item> Impress es comporta de manera diferent que en altres programes del <item type=\"productname\">%PRODUCTNAME</item>. Per exemple podeu crear editar i aplicar <emph>Estils gràfics</emph>, però només podeu editar <emph>Estils de presentació</emph>."
-#. BeLXe
+#. p8HYw
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3146121\n"
"help.text"
-msgid "When you edit a style, the changes are automatically applied to all of the elements formatted with this style in your document. If you want to ensure that the styles on a specific slide are not updated, create a new <link href=\"text/simpress/guide/masterpage.xhp\" name=\"master slide\">master slide</link> for the slide."
-msgstr "Quan editeu un estil, els canvis s'aplicaran automàticament a tots els elements formatats amb aquest estil en el document. Si voleu assegurar-vos que no s'actualitzin els estils d'una diapositiva específica, creeu una nova <link href=\"text/simpress/guide/masterpage.xhp\" name=\"diapositiva mestra\">diapositiva mestra</link> per a la diapositiva."
+msgid "When you edit a style, the changes are automatically applied to all of the elements formatted with this style in your document. If you want to ensure that the styles on a specific slide are not updated, create a new <link href=\"text/simpress/guide/masterpage.xhp\">master slide</link> for the slide."
+msgstr "Quan editeu un estil, els canvis s'aplicaran automàticament a tots els elements formatats amb aquest estil en el document. Si voleu assegurar-vos que no s'actualitzin els estils d'una diapositiva específica, creeu una nova <link href=\"text/simpress/guide/masterpage.xhp\">diapositiva mestra</link> per a la diapositiva."
#. JDFdX
#: 05100000.xhp
@@ -3419,14 +3419,14 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "Estil nou a partir de la selecció"
-#. AwApV
+#. BHZo4
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3153009\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\"><link href=\"text/shared/01/05140100.xhp\" name=\"Creates a new style\">Creates a new style</link> using the format attributes of a selected object.</ahelp>"
-msgstr "<ahelp hid=\"SFX2_HID_TEMPPLDL_NEWBYEXAMPLE\"><link href=\"text/shared/01/05140100.xhp\" name=\"Crea un estil nou\">Crea un estil nou</link> utilitzant els atributs de format d'un objecte seleccionat.</ahelp>"
+msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_NEWBYEXAMPLE\"><link href=\"text/shared/01/05140100.xhp\">Creates a new style</link> using the format attributes of a selected object.</ahelp>"
+msgstr "<ahelp hid=\"SFX2_HID_TEMPPLDL_NEWBYEXAMPLE\"><link href=\"text/shared/01/05140100.xhp\">Crea un estil nou</link> utilitzant els atributs de format d'un objecte seleccionat.</ahelp>"
#. Pgf2Q
#: 05100000.xhp
@@ -3509,14 +3509,14 @@ msgctxt ""
msgid "Delete"
msgstr "Suprimeix"
-#. sAFZV
+#. LN5hv
#: 05110500m.xhp
msgctxt ""
"05110500m.xhp\n"
"hd_id3149502\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05110500m.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/simpress/01/05110500m.xhp\" name=\"Suprimeix\">Suprimeix</link>"
+msgid "<link href=\"text/simpress/01/05110500m.xhp\">Delete</link>"
+msgstr "<link href=\"text/simpress/01/05110500m.xhp\">Suprimeix</link>"
#. tvQjR
#: 05110500m.xhp
@@ -3563,13 +3563,13 @@ msgctxt ""
msgid "Change Slide Master"
msgstr "Canvia la diapositiva mestra"
-#. bBY5z
+#. pKf6P
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"hd_id3164253\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Master Page</link>"
+msgid "<link href=\"text/simpress/01/05120000.xhp\">Master Page</link>"
msgstr ""
#. Pz8J7
@@ -3581,14 +3581,14 @@ msgctxt ""
msgid "<variable id=\"masterpagetext\"><ahelp hid=\".uno:PresentationLayout\">Displays the <emph>Available Master Slides</emph> dialog, where you can select a layout scheme for the current page. Any objects in the page design are inserted behind objects in the current page.</ahelp></variable>"
msgstr ""
-#. Jg7LJ
+#. CDUtx
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"hd_id3154253\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Change Slide Master</link>"
-msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Canvia la diapositiva mestra\">Canvia la diapositiva mestra</link>"
+msgid "<link href=\"text/simpress/01/05120000.xhp\">Change Slide Master</link>"
+msgstr "<link href=\"text/simpress/01/05120000.xhp\">Canvia la diapositiva mestra</link>"
#. Bi55Y
#: 05120000.xhp
@@ -3662,22 +3662,22 @@ msgctxt ""
msgid "Load"
msgstr "Carrega"
-#. wvNGM
+#. EmUM5
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"par_id3956020\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Page</emph></link> dialog, where you can select additional page designs.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\"><emph>Load Master Page</emph></link> dialog, where you can select additional page designs.</ahelp>"
msgstr ""
-#. LZr7A
+#. XA4GE
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"par_id3156020\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
msgstr ""
#. BLSEy
@@ -3689,14 +3689,14 @@ msgctxt ""
msgid "Delete"
msgstr "Suprimeix"
-#. 4qWev
+#. MXJGe
#: 05120500m.xhp
msgctxt ""
"05120500m.xhp\n"
"hd_id3145801\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05120500m.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/simpress/01/05120500m.xhp\" name=\"Suprimeix\">Suprimeix</link>"
+msgid "<link href=\"text/simpress/01/05120500m.xhp\">Delete</link>"
+msgstr "<link href=\"text/simpress/01/05120500m.xhp\">Suprimeix</link>"
#. VjyAE
#: 05120500m.xhp
@@ -3761,13 +3761,13 @@ msgctxt ""
msgid "<bookmark_value>changing; slide layouts</bookmark_value> <bookmark_value>slide layouts</bookmark_value>"
msgstr ""
-#. 4dvDP
+#. ZnHup
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Layout\">Layout</link>"
+msgid "<link href=\"text/simpress/01/05130000.xhp\">Layout</link>"
msgstr ""
#. dZ3GJ
@@ -3806,41 +3806,41 @@ msgctxt ""
msgid "<bookmark_value>dimension lines; properties of</bookmark_value>"
msgstr "<bookmark_value>línies de dimensió; propietats</bookmark_value>"
-#. KtFcN
+#. dJe9e
#: 05150000.xhp
msgctxt ""
"05150000.xhp\n"
"hd_id3150439\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05150000.xhp\" name=\"Dimensioning\">Dimensioning</link>"
-msgstr "<link href=\"text/simpress/01/05150000.xhp\" name=\"Dimensionament\">Dimensionament</link>"
+msgid "<link href=\"text/simpress/01/05150000.xhp\">Dimensioning</link>"
+msgstr "<link href=\"text/simpress/01/05150000.xhp\">Dimensionament</link>"
-#. WCeRJ
+#. BuWAb
#: 05150000.xhp
msgctxt ""
"05150000.xhp\n"
"par_id3159154\n"
"help.text"
-msgid "<variable id=\"bemaszungtext\"><ahelp hid=\".uno:MeasureAttributes\">Changes the length, measurement and guide properties of the selected <link href=\"text/simpress/02/10120000.xhp\" name=\"dimension line\">dimension line</link>.</ahelp></variable>"
-msgstr "<variable id=\"bemaszungtext\"><ahelp hid=\".uno:MeasureAttributes\">Modifica les propietats de longitud, de mesura i de guies de la <link href=\"text/simpress/02/10120000.xhp\" name=\"línia de dimensió\">línia de dimensió</link> seleccionada.</ahelp></variable>"
+msgid "<variable id=\"bemaszungtext\"><ahelp hid=\".uno:MeasureAttributes\">Changes the length, measurement and guide properties of the selected <link href=\"text/simpress/02/10120000.xhp\">dimension line</link>.</ahelp></variable>"
+msgstr "<variable id=\"bemaszungtext\"><ahelp hid=\".uno:MeasureAttributes\">Modifica les propietats de longitud, de mesura i de guies de la <link href=\"text/simpress/02/10120000.xhp\">línia de dimensió</link> seleccionada.</ahelp></variable>"
-#. LFNHu
+#. SgW9T
#: 05150000.xhp
msgctxt ""
"05150000.xhp\n"
"par_id3156382\n"
"help.text"
-msgid "If you want to modify the line style or the arrow style of a dimension line, choose <link href=\"text/shared/01/05200000.xhp\" name=\"Format - Line\"><emph>Format - Line</emph></link>."
-msgstr "Si voleu modificar l'estil de línia o de fletxa d'una línia de dimensió, trieu <link href=\"text/shared/01/05200000.xhp\" name=\"Format - Línia\"><emph>Format - Línia</emph></link>."
+msgid "If you want to modify the line style or the arrow style of a dimension line, choose <link href=\"text/shared/01/05200000.xhp\"><emph>Format - Line</emph></link>."
+msgstr "Si voleu modificar l'estil de línia o de fletxa d'una línia de dimensió, trieu <link href=\"text/shared/01/05200000.xhp\"><emph>Format - Línia</emph></link>."
-#. SUL4c
+#. XN58d
#: 05150000.xhp
msgctxt ""
"05150000.xhp\n"
"par_id3154658\n"
"help.text"
-msgid "A Dimension Line is always inserted on the <link href=\"text/sdraw/guide/layer_tipps.xhp\" name=\"layer\">layer</link> called <emph>Dimension Lines</emph>. If you set that layer to invisible, you will not see any Dimension Line in your drawing."
-msgstr "Una línia de dimensió sempre s'insereix en l'enllaç <link href=\"text/sdraw/guide/layer_tipps.xhp\" name=\"layer\">layer</link> anomenat <emph>Dimension lines </emph>. Si establiu aquesta capa a invisible no veureu cap línia de dimensió en el vostre dibuix."
+msgid "A Dimension Line is always inserted on the <link href=\"text/sdraw/guide/layer_tipps.xhp\">layer</link> called <emph>Dimension Lines</emph>. If you set that layer to invisible, you will not see any Dimension Line in your drawing."
+msgstr "Una línia de dimensió sempre s'insereix en l'enllaç <link href=\"text/sdraw/guide/layer_tipps.xhp\">layer</link> anomenat <emph>Dimension lines </emph>. Si establiu aquesta capa a invisible no veureu cap línia de dimensió en el vostre dibuix."
#. hZjxh
#: 05150000.xhp
@@ -4121,14 +4121,14 @@ msgctxt ""
msgid "<bookmark_value>connectors; properties of</bookmark_value>"
msgstr "<bookmark_value>connectors; propietats dels</bookmark_value>"
-#. rKAY3
+#. ZtgDX
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"hd_id3150297\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05170000.xhp\" name=\"Connectors\">Connectors</link>"
-msgstr "<link href=\"text/simpress/01/05170000.xhp\" name=\"Connectors\">Connectors</link>"
+msgid "<link href=\"text/simpress/01/05170000.xhp\">Connectors</link>"
+msgstr "<link href=\"text/simpress/01/05170000.xhp\">Connectors</link>"
#. Lzq8Z
#: 05170000.xhp
@@ -4328,13 +4328,13 @@ msgctxt ""
msgid "Reset line skew"
msgstr "Reinicialitza el desplaçament de línies"
-#. Y3yHa
+#. gWXiW
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"par_id3159205\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp> (This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>)."
+msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp> (This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\">context menu</link>)."
msgstr ""
#. JLBKm
@@ -4346,14 +4346,14 @@ msgctxt ""
msgid "Arrange"
msgstr "Organitza"
-#. twk4k
+#. FqfCX
#: 05250000.xhp
msgctxt ""
"05250000.xhp\n"
"hd_id3155444\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05250000.xhp\" name=\"Arrange\">Arrange</link>"
-msgstr "<link href=\"text/simpress/01/05250000.xhp\" name=\"Organitza\">Organitza</link>"
+msgid "<link href=\"text/simpress/01/05250000.xhp\">Arrange</link>"
+msgstr "<link href=\"text/simpress/01/05250000.xhp\">Organitza</link>"
#. 9PKiZ
#: 05250000.xhp
@@ -4382,14 +4382,14 @@ msgctxt ""
msgid "<bookmark_value>objects; in front of object command</bookmark_value><bookmark_value>in front of object command</bookmark_value>"
msgstr "<bookmark_value>objectes; orde davant de l'objecte</bookmark_value><bookmark_value>orde davant de l'objecte</bookmark_value>"
-#. cahKx
+#. n4ibB
#: 05250500.xhp
msgctxt ""
"05250500.xhp\n"
"hd_id3152576\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05250500.xhp\" name=\"In Front of Object\">In Front of Object</link>"
-msgstr "<link href=\"text/simpress/01/05250500.xhp\" name=\"Davant de l'objecte\">Davant de l'objecte</link>"
+msgid "<link href=\"text/simpress/01/05250500.xhp\">In Front of Object</link>"
+msgstr "<link href=\"text/simpress/01/05250500.xhp\">Davant de l'objecte</link>"
#. Bqx9s
#: 05250500.xhp
@@ -4427,14 +4427,14 @@ msgctxt ""
msgid "<bookmark_value>objects; behind object command</bookmark_value><bookmark_value>behind object command</bookmark_value>"
msgstr "<bookmark_value>objectes; orde darrere de l'objecte</bookmark_value><bookmark_value>orde darrere de l'objecte</bookmark_value>"
-#. GAB8A
+#. EDbFA
#: 05250600.xhp
msgctxt ""
"05250600.xhp\n"
"hd_id3149664\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05250600.xhp\" name=\"Behind Object\">Behind Object</link>"
-msgstr "<link href=\"text/simpress/01/05250600.xhp\" name=\"Darrere de l'objecte\">Darrere de l'objecte</link>"
+msgid "<link href=\"text/simpress/01/05250600.xhp\">Behind Object</link>"
+msgstr "<link href=\"text/simpress/01/05250600.xhp\">Darrere de l'objecte</link>"
#. bRzJH
#: 05250600.xhp
@@ -4481,14 +4481,14 @@ msgctxt ""
msgid "<bookmark_value>reversing objects</bookmark_value><bookmark_value>objects; reversing</bookmark_value>"
msgstr "<bookmark_value>canvi de nom de les capes</bookmark_value><bookmark_value>capes; canvi de nom</bookmark_value>"
-#. k7RCn
+#. HiW2A
#: 05250700.xhp
msgctxt ""
"05250700.xhp\n"
"hd_id3154011\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05250700.xhp\" name=\"Reverse\">Reverse</link>"
-msgstr "<link href=\"text/simpress/01/05250700.xhp\" name=\"Inverteix\">Inverteix</link>"
+msgid "<link href=\"text/simpress/01/05250700.xhp\">Reverse</link>"
+msgstr "<link href=\"text/simpress/01/05250700.xhp\">Inverteix</link>"
#. opkVj
#: 05250700.xhp
@@ -4517,14 +4517,14 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Partició de mots"
-#. aAUhF
+#. n6Ywh
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
"hd_id3154011\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06030000.xhp\" name=\"Hyphenation\">Hyphenation</link>"
-msgstr "<link href=\"text/simpress/01/06030000.xhp\" name=\"Partició de mots\">Partició de mots</link>"
+msgid "<link href=\"text/simpress/01/06030000.xhp\">Hyphenation</link>"
+msgstr "<link href=\"text/simpress/01/06030000.xhp\">Partició de mots</link>"
#. zdARD
#: 06030000.xhp
@@ -4553,14 +4553,14 @@ msgctxt ""
msgid "<bookmark_value>slide transitions; manual</bookmark_value><bookmark_value>slide transitions; sounds</bookmark_value><bookmark_value>sounds; on slide transitions</bookmark_value>"
msgstr "<bookmark_value>transicions entre diapositives; manuals</bookmark_value><bookmark_value>transicions entre diapositives; sons</bookmark_value><bookmark_value>sons; a les transicions entre diapositives</bookmark_value>"
-#. 82puK
+#. kW7FX
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"hd_id3153142\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06040000.xhp\" name=\"Slide Transition\">Slide Transition</link>"
-msgstr "<link href=\"text/simpress/01/06040000.xhp\" name=\"Transició entre diapositives\">Transició entre diapositives</link>"
+msgid "<link href=\"text/simpress/01/06040000.xhp\">Slide Transition</link>"
+msgstr "<link href=\"text/simpress/01/06040000.xhp\">Transició entre diapositives</link>"
#. Kw6EX
#: 06040000.xhp
@@ -4571,14 +4571,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Defines the special effect that plays when you display a slide during a slide show.</ahelp>"
msgstr "<ahelp hid=\".\">Defineix l'efecte especial que es reprodueix quan es mostra una diapositiva durant la visualització d'una presentació de diapositives.</ahelp>"
-#. X9Xj8
+#. f7Ra4
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3154704\n"
"help.text"
-msgid "To apply the same transition effect to more than one slide, switch to the <link href=\"text/simpress/01/03100000.xhp\" name=\"Slide View\">Slide Sorter</link>, select the slides, and then choose <emph>Slide - Slide Transition</emph>."
-msgstr "Per aplicar el mateix efecte de transició a diverses diapositives, canvieu al mode <link href=\"text/simpress/01/03100000.xhp\" name=\"Classificador de diapositives\">Classificador de diapositives</link>, seleccioneu les diapositives i trieu <emph>Diapositiva ▸ Transició entre diapositives</emph>."
+msgid "To apply the same transition effect to more than one slide, switch to the <link href=\"text/simpress/01/03100000.xhp\">Slide Sorter</link>, select the slides, and then choose <emph>Slide - Slide Transition</emph>."
+msgstr "Per aplicar el mateix efecte de transició a diverses diapositives, canvieu al mode <link href=\"text/simpress/01/03100000.xhp\">Classificador de diapositives</link>, seleccioneu les diapositives i trieu <emph>Diapositiva ▸ Transició entre diapositives</emph>."
#. JBML3
#: 06040000.xhp
@@ -4787,14 +4787,14 @@ msgctxt ""
msgid "Animation"
msgstr "Animació"
-#. cEPoJ
+#. xUu2B
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06050000.xhp\" name=\"Animation\">Animation</link>"
-msgstr "<link href=\"text/simpress/01/06050000.xhp\" name=\"Animació\">Animació</link>"
+msgid "<link href=\"text/simpress/01/06050000.xhp\">Animation</link>"
+msgstr "<link href=\"text/simpress/01/06050000.xhp\">Animació</link>"
#. TGiW5
#: 06050000.xhp
@@ -5318,13 +5318,13 @@ msgctxt ""
msgid "<bookmark_value>sounds; for effects</bookmark_value><bookmark_value>effects; sounds</bookmark_value><bookmark_value>sounds; formats</bookmark_value><bookmark_value>presentations; ordering of effects</bookmark_value><bookmark_value>lists;animations</bookmark_value><bookmark_value>animations;list of</bookmark_value>"
msgstr "<bookmark_value>sons; per a efectes</bookmark_value><bookmark_value>efectes; sons</bookmark_value><bookmark_value>sons; formats</bookmark_value><bookmark_value>presentacions; ordenació dels efectes</bookmark_value><bookmark_value>llistes;animacions</bookmark_value><bookmark_value>animacions;llista d'</bookmark_value>"
-#. 9tBmJ
+#. w2GTF
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3148837\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06060000.xhp\" name=\"Effects\">Animation Pane</link>"
+msgid "<link href=\"text/simpress/01/06060000.xhp\">Animation Pane</link>"
msgstr ""
#. K9GqD
@@ -5678,13 +5678,13 @@ msgctxt ""
msgid "<bookmark_value>interactions; objects in interactive presentations</bookmark_value><bookmark_value>programs run by mouse click in presentations</bookmark_value><bookmark_value>running macros/programs in presentations</bookmark_value><bookmark_value>macros; running in presentations</bookmark_value><bookmark_value>presentations;exiting by interaction</bookmark_value><bookmark_value>exiting;by clicking objects</bookmark_value>"
msgstr "<bookmark_value>interaccions;objectes a les presentacions interactives</bookmark_value><bookmark_value>programes executats amb un clic a les presentacions</bookmark_value><bookmark_value>execució de macros/programes a les presentacions</bookmark_value><bookmark_value>macros;execució a les presentacions</bookmark_value><bookmark_value>presentacions;eixida per interacció</bookmark_value><bookmark_value>eixida; amb un clic als objectes</bookmark_value>"
-#. tTBcr
+#. SpA3J
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
"hd_id3153246\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interaction\">Interaction</link>"
+msgid "<link href=\"text/simpress/01/06070000.xhp\">Interaction</link>"
msgstr ""
#. fFHEt
@@ -6326,14 +6326,14 @@ msgctxt ""
msgid "Custom Slide Show"
msgstr "Presentació personalitzada"
-#. YCfky
+#. gv7pQ
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"par_id3150538\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/customslideshow_cb\">Runs a custom slide show in the order that you defined in <link href=\"text/simpress/01/06100000.xhp\" name=\"Slide Show - Custom Slide Show\"><emph>Slide Show - Custom Slide Show</emph></link>.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/customslideshow_cb\">Inicia una presentació de diapositives personalitzada amb l'ordre que definiu a <link href=\"text/simpress/01/06100000.xhp\" name=\"Presentació de diapositives ▸ Presentació personalitzada\"><emph>Presentació de diapositives ▸ Presentació personalitzada</emph></link>.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/presentationdialog/customslideshow_cb\">Runs a custom slide show in the order that you defined in <link href=\"text/simpress/01/06100000.xhp\"><emph>Slide Show - Custom Slide Show</emph></link>.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/presentationdialog/customslideshow_cb\">Inicia una presentació de diapositives personalitzada amb l'ordre que definiu a <link href=\"text/simpress/01/06100000.xhp\"><emph>Presentació de diapositives ▸ Presentació personalitzada</emph></link>.</ahelp>"
#. VJBqo
#: 06080000.xhp
@@ -6632,13 +6632,13 @@ msgctxt ""
msgid "Custom Slide Shows"
msgstr "Presentacions de diapositives personalitzades"
-#. 9BTtN
+#. BB4Cs
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"hd_id3154659\n"
"help.text"
-msgid "<variable id=\"CustomShow_h1\"><link href=\"text/simpress/01/06100000.xhp\" name=\"CustomShow_link\">Custom Slide Shows</link></variable>"
+msgid "<variable id=\"CustomShow_h1\"><link href=\"text/simpress/01/06100000.xhp\">Custom Slide Shows</link></variable>"
msgstr ""
#. EB558
@@ -6713,14 +6713,14 @@ msgctxt ""
msgid "Click <emph>Start</emph>."
msgstr "Feu clic a <emph>Inicia</emph>."
-#. pBeBj
+#. jLADH
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"hd_id3153808\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06100100.xhp\" name=\"New\">New</link>"
-msgstr "<link href=\"text/simpress/01/06100100.xhp\" name=\"Nou\">Nou</link>"
+msgid "<link href=\"text/simpress/01/06100100.xhp\">New</link>"
+msgstr "<link href=\"text/simpress/01/06100100.xhp\">Nou</link>"
#. kyB6T
#: 06100000.xhp
@@ -6731,14 +6731,14 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. Y2Rep
+#. gEwnF
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"par_id3150431\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/edit\"><link href=\"text/simpress/01/06100100.xhp\" name=\"Add, remove or reorder\">Add, remove or reorder</link> slides as well as change the name of the selected custom slide show.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/edit\"><link href=\"text/simpress/01/06100100.xhp\" name=\"Afegiu, suprimiu o reordeneu\">Afegiu, suprimiu o reordeneu</link> diapositives, i canvieu també el nom de la presentació de diapositives personalitzada.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/edit\"><link href=\"text/simpress/01/06100100.xhp\">Add, remove or reorder</link> slides as well as change the name of the selected custom slide show.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/edit\"><link href=\"text/simpress/01/06100100.xhp\">Afegiu, suprimiu o reordeneu</link> diapositives, i canvieu també el nom de la presentació de diapositives personalitzada.</ahelp>"
#. ZbCU7
#: 06100000.xhp
@@ -6893,14 +6893,14 @@ msgctxt ""
msgid "Convert"
msgstr "Converteix"
-#. LNGRh
+#. h6Rok
#: 13050000.xhp
msgctxt ""
"13050000.xhp\n"
"hd_id3152596\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13050000.xhp\" name=\"Convert\">Convert</link>"
-msgstr "<link href=\"text/simpress/01/13050000.xhp\" name=\"Converteix\">Converteix</link>"
+msgid "<link href=\"text/simpress/01/13050000.xhp\">Convert</link>"
+msgstr "<link href=\"text/simpress/01/13050000.xhp\">Converteix</link>"
#. osJbe
#: 13050000.xhp
@@ -6920,14 +6920,14 @@ msgctxt ""
msgid "To Curve"
msgstr "En corba"
-#. RCkaf
+#. SPxyK
#: 13050100.xhp
msgctxt ""
"13050100.xhp\n"
"hd_id3125864\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13050100.xhp\" name=\"To Curve\">To Curve</link>"
-msgstr "<link href=\"text/simpress/01/13050100.xhp\" name=\"En corba\">En corba</link>"
+msgid "<link href=\"text/simpress/01/13050100.xhp\">To Curve</link>"
+msgstr "<link href=\"text/simpress/01/13050100.xhp\">En corba</link>"
#. i9Df4
#: 13050100.xhp
@@ -6947,23 +6947,23 @@ msgctxt ""
msgid "To Polygon"
msgstr "En polígon"
-#. jfNpA
+#. 3U2LL
#: 13050200.xhp
msgctxt ""
"13050200.xhp\n"
"hd_id3152578\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13050200.xhp\" name=\"To Polygon\">To Polygon</link>"
-msgstr "<link href=\"text/simpress/01/13050200.xhp\" name=\"En polígon\">En polígon</link>"
+msgid "<link href=\"text/simpress/01/13050200.xhp\">To Polygon</link>"
+msgstr "<link href=\"text/simpress/01/13050200.xhp\">En polígon</link>"
-#. oVsAs
+#. 4e8ts
#: 13050200.xhp
msgctxt ""
"13050200.xhp\n"
"par_id3145252\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangePolygon\">Converts the selected object to a polygon (a closed object bounded by straight lines).</ahelp> The appearance of the object does not change. If you want, you can right-click and choose <link href=\"text/shared/main0227.xhp\" name=\"Edit Points\"><emph>Edit Points</emph></link> to view the changes."
-msgstr "<ahelp hid=\".uno:ChangePolygon\">Converteix l'objecte seleccionat en un polígon (un objecte tancat limitat per línies rectes).</ahelp> L'aparença de l'objecte no canvia. Si voleu, podeu fer clic amb el botó dret del ratolí i triar <link href=\"text/shared/main0227.xhp\" name=\"Edita els punts\"><emph>Edita els punts</emph></link> per visualitzar els canvis."
+msgid "<ahelp hid=\".uno:ChangePolygon\">Converts the selected object to a polygon (a closed object bounded by straight lines).</ahelp> The appearance of the object does not change. If you want, you can right-click and choose <link href=\"text/shared/main0227.xhp\"><emph>Edit Points</emph></link> to view the changes."
+msgstr "<ahelp hid=\".uno:ChangePolygon\">Converteix l'objecte seleccionat en un polígon (un objecte tancat limitat per línies rectes).</ahelp> L'aparença de l'objecte no canvia. Si voleu, podeu fer clic amb el botó dret del ratolí i triar <link href=\"text/shared/main0227.xhp\"><emph>Edita els punts</emph></link> per visualitzar els canvis."
#. JpSgf
#: 13050200.xhp
@@ -7154,14 +7154,14 @@ msgctxt ""
msgid "Convert to 3D"
msgstr "Converteix en 3D"
-#. cAVvh
+#. AfbJN
#: 13050300.xhp
msgctxt ""
"13050300.xhp\n"
"hd_id3154017\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13050300.xhp\" name=\"Convert to 3D\">Convert to 3D</link>"
-msgstr "<link href=\"text/simpress/01/13050300.xhp\" name=\"Converteix en 3D\">Converteix en 3D</link>"
+msgid "<link href=\"text/simpress/01/13050300.xhp\">Convert to 3D</link>"
+msgstr "<link href=\"text/simpress/01/13050300.xhp\">Converteix en 3D</link>"
#. fE6mo
#: 13050300.xhp
@@ -7226,14 +7226,14 @@ msgctxt ""
msgid "Even drawing objects that contain text can be converted."
msgstr "Fins i tot els objectes de dibuix que contenen text es poden convertir."
-#. DZkoM
+#. sCemD
#: 13050300.xhp
msgctxt ""
"13050300.xhp\n"
"par_id3153960\n"
"help.text"
-msgid "If you want, you can also apply a <link href=\"text/shared/01/05350000.xhp\" name=\"3D Effect\">3D Effect</link> to the converted object."
-msgstr "Si voleu, podeu aplicar <link href=\"text/shared/01/05350000.xhp\" name=\"efectes 3D\">efectes 3D</link> a l'objecte convertit."
+msgid "If you want, you can also apply a <link href=\"text/shared/01/05350000.xhp\">3D Effect</link> to the converted object."
+msgstr "Si voleu, podeu aplicar <link href=\"text/shared/01/05350000.xhp\">efectes 3D</link> a l'objecte convertit."
#. k8Bxk
#: 13050400.xhp
@@ -7244,14 +7244,14 @@ msgctxt ""
msgid "Convert to 3D Rotation Object"
msgstr "Converteix en un objecte de gir 3D"
-#. wr5SB
+#. ei7Cd
#: 13050400.xhp
msgctxt ""
"13050400.xhp\n"
"hd_id3146974\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13050400.xhp\" name=\"Convert to 3D Rotation Object\">Convert to 3D Rotation Object</link>"
-msgstr "<link href=\"text/simpress/01/13050400.xhp\" name=\"Converteix en un objecte de gir 3D\">Converteix en un objecte de gir 3D</link>"
+msgid "<link href=\"text/simpress/01/13050400.xhp\">Convert to 3D Rotation Object</link>"
+msgstr "<link href=\"text/simpress/01/13050400.xhp\">Converteix en un objecte de gir 3D</link>"
#. EDRF2
#: 13050400.xhp
@@ -7280,14 +7280,14 @@ msgctxt ""
msgid "<bookmark_value>converting; to bitmaps</bookmark_value><bookmark_value>bitmaps; converting to</bookmark_value>"
msgstr "<bookmark_value>inserció; columnes</bookmark_value><bookmark_value>columnes; inserció</bookmark_value>"
-#. yGyxF
+#. eXBYH
#: 13050500.xhp
msgctxt ""
"13050500.xhp\n"
"hd_id3153142\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13050500.xhp\" name=\"To Bitmap\">To Bitmap</link>"
-msgstr "<link href=\"text/simpress/01/13050500.xhp\" name=\"En mapa de bits\">En mapa de bits</link>"
+msgid "<link href=\"text/simpress/01/13050500.xhp\">To Bitmap</link>"
+msgstr "<link href=\"text/simpress/01/13050500.xhp\">En mapa de bits</link>"
#. c6dej
#: 13050500.xhp
@@ -7298,14 +7298,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ConvertIntoBitmap\">Converts the selected object to a bitmap (a grid of pixels that represents an image).</ahelp>"
msgstr "<ahelp hid=\".uno:ConvertIntoBitmap\">Converteix l'objecte seleccionat en un mapa de bits (una graella de píxels que representa una imatge).</ahelp>"
-#. 7MBq4
+#. C5bW5
#: 13050500.xhp
msgctxt ""
"13050500.xhp\n"
"par_id3149377\n"
"help.text"
-msgid "For more information, see the <link href=\"text/shared/00/00000005.xhp\" name=\"Glossary\">Glossary</link>."
-msgstr "Si en voleu obtindre més informació, consulteu el <link href=\"text/shared/00/00000005.xhp\" name=\"glossari\">glossari</link>."
+msgid "For more information, see the <link href=\"text/shared/00/00000005.xhp\">Glossary</link>."
+msgstr "Si en voleu obtindre més informació, consulteu el <link href=\"text/shared/00/00000005.xhp\">glossari</link>."
#. AmCFw
#: 13050500.xhp
@@ -7334,14 +7334,14 @@ msgctxt ""
msgid "<bookmark_value>converting; to metafile format (WMF)</bookmark_value><bookmark_value>metafiles; converting to</bookmark_value>"
msgstr "<bookmark_value>inserció; columnes</bookmark_value><bookmark_value>columnes; inserció</bookmark_value>"
-#. GD3Ly
+#. 6Z3BN
#: 13050600.xhp
msgctxt ""
"13050600.xhp\n"
"hd_id3147434\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13050600.xhp\" name=\"To metafile\">To metafile</link>"
-msgstr "<link href=\"text/simpress/01/13050600.xhp\" name=\"En metafitxer\">En metafitxer</link>"
+msgid "<link href=\"text/simpress/01/13050600.xhp\">To metafile</link>"
+msgstr "<link href=\"text/simpress/01/13050600.xhp\">En metafitxer</link>"
#. y3w7E
#: 13050600.xhp
@@ -7352,14 +7352,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ConvertIntoMetaFile\">Converts the selected object to Windows Metafile Format (WMF), containing both bitmap and vector graphic data.</ahelp>"
msgstr "<ahelp hid=\".uno:ConvertIntoMetaFile\">Converteix l'objecte seleccionat en format WMF (Windows Metafile Format), que conté dades gràfiques de mapes de bits i vectorials.</ahelp>"
-#. xpwHp
+#. KA7dg
#: 13050600.xhp
msgctxt ""
"13050600.xhp\n"
"par_id3151075\n"
"help.text"
-msgid "For more information on WMF, see the <link href=\"text/shared/00/00000005.xhp\" name=\"Glossary\">Glossary</link>."
-msgstr "Si voleu obtindre més informació sobre el format WMF, consulteu el <link href=\"text/shared/00/00000005.xhp\" name=\"glossari\">glossari</link>."
+msgid "For more information on WMF, see the <link href=\"text/shared/00/00000005.xhp\">Glossary</link>."
+msgstr "Si voleu obtindre més informació sobre el format WMF, consulteu el <link href=\"text/shared/00/00000005.xhp\">glossari</link>."
#. ZF3LC
#: 13050600.xhp
@@ -7388,14 +7388,14 @@ msgctxt ""
msgid "<bookmark_value>converting; to contours</bookmark_value><bookmark_value>contours; converting to</bookmark_value>"
msgstr "<bookmark_value>inserció; columnes</bookmark_value><bookmark_value>columnes; inserció</bookmark_value>"
-#. ce9SA
+#. gAGkK
#: 13050700.xhp
msgctxt ""
"13050700.xhp\n"
"hd_id3146119\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13050700.xhp\" name=\"To Contour\">To Contour</link>"
-msgstr "<link href=\"text/simpress/01/13050700.xhp\" name=\"En vora\">En vora</link>"
+msgid "<link href=\"text/simpress/01/13050700.xhp\">To Contour</link>"
+msgstr "<link href=\"text/simpress/01/13050700.xhp\">En vora</link>"
#. TJiqQ
#: 13050700.xhp
@@ -7424,23 +7424,23 @@ msgctxt ""
msgid "Combine"
msgstr "Combina"
-#. jWCjy
+#. 692XG
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3150012\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13140000.xhp\" name=\"Combine\">Combine</link>"
-msgstr "<link href=\"text/simpress/01/13140000.xhp\" name=\"Combina\">Combina</link>"
+msgid "<link href=\"text/simpress/01/13140000.xhp\">Combine</link>"
+msgstr "<link href=\"text/simpress/01/13140000.xhp\">Combina</link>"
-#. 8PqPr
+#. HHHQi
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"par_id3146974\n"
"help.text"
-msgid "<ahelp hid=\".uno:Combine\">Combines two or more selected objects into a single shape.</ahelp> Unlike <link href=\"text/shared/01/05290000.xhp\" name=\"grouping\">grouping</link>, a combined object takes on the properties of the lowermost object in the stacking order. You can <link href=\"text/simpress/01/13150000.xhp\" name=\"split\">split</link> apart combined objects, but the original object properties are lost."
-msgstr "<ahelp hid=\".uno:Combine\" visibility=\"visible\">Combina diversos objectes seleccionats en una sola forma. </ahelp>Contràriament a l'<link href=\"text/shared/01/05290000.xhp\" name=\"agrupament\">agrupament</link>, un objecte combinat pren les propietats de l'objecte situat a sota de tot de la pila. Podeu <link href=\"text/simpress/01/13150000.xhp\" name=\"dividir\">dividir</link> els objectes combinats, però es perdran les propietats de l'objecte original."
+msgid "<ahelp hid=\".uno:Combine\">Combines two or more selected objects into a single shape.</ahelp> Unlike <link href=\"text/shared/01/05290000.xhp\">grouping</link>, a combined object takes on the properties of the lowermost object in the stacking order. You can <link href=\"text/simpress/01/13150000.xhp\">split</link> apart combined objects, but the original object properties are lost."
+msgstr "<ahelp hid=\".uno:Combine\" visibility=\"visible\">Combina diversos objectes seleccionats en una sola forma. </ahelp>Contràriament a l'<link href=\"text/shared/01/05290000.xhp\">agrupament</link>, un objecte combinat pren les propietats de l'objecte situat a sota de tot de la pila. Podeu <link href=\"text/simpress/01/13150000.xhp\">dividir</link> els objectes combinats, però es perdran les propietats de l'objecte original."
#. BmsmL
#: 13140000.xhp
@@ -7469,23 +7469,23 @@ msgctxt ""
msgid "<bookmark_value>combining; undoing</bookmark_value><bookmark_value>splitting; combinations</bookmark_value>"
msgstr "<bookmark_value>combinació; desfer</bookmark_value><bookmark_value>divisió; combinacions</bookmark_value>"
-#. 2LdGA
+#. FjcAF
#: 13150000.xhp
msgctxt ""
"13150000.xhp\n"
"hd_id3150439\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13150000.xhp\" name=\"Split\">Split</link>"
-msgstr "<link href=\"text/simpress/01/13150000.xhp\" name=\"Divideix\">Divideix</link>"
+msgid "<link href=\"text/simpress/01/13150000.xhp\">Split</link>"
+msgstr "<link href=\"text/simpress/01/13150000.xhp\">Divideix</link>"
-#. NBLqw
+#. bgJGV
#: 13150000.xhp
msgctxt ""
"13150000.xhp\n"
"par_id3147435\n"
"help.text"
-msgid "<ahelp hid=\".uno:Dismantle\">Splits a <link href=\"text/simpress/01/13140000.xhp\" name=\"combined\">combined</link> object into individual objects.</ahelp> The resulting objects have the same line and fill properties as the combined object."
-msgstr "<ahelp hid=\".uno:Dismantle\">Divideix un objecte <link href=\"text/simpress/01/13140000.xhp\" name=\"combinat\"> combinat</link> en diversos objectes individuals.</ahelp> Els objectes que s'obtenen tenen les mateixes propietats de línia i d'emplenament que l'objecte combinat."
+msgid "<ahelp hid=\".uno:Dismantle\">Splits a <link href=\"text/simpress/01/13140000.xhp\">combined</link> object into individual objects.</ahelp> The resulting objects have the same line and fill properties as the combined object."
+msgstr "<ahelp hid=\".uno:Dismantle\">Divideix un objecte <link href=\"text/simpress/01/13140000.xhp\"> combinat</link> en diversos objectes individuals.</ahelp> Els objectes que s'obtenen tenen les mateixes propietats de línia i d'emplenament que l'objecte combinat."
#. CiAPY
#: 13160000.xhp
@@ -7496,14 +7496,14 @@ msgctxt ""
msgid "Connect"
msgstr "Connecta"
-#. DSfJD
+#. KPHAx
#: 13160000.xhp
msgctxt ""
"13160000.xhp\n"
"hd_id3153768\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13160000.xhp\" name=\"Connect\">Connect</link>"
-msgstr "<link href=\"text/simpress/01/13160000.xhp\" name=\"Connecta\">Connecta</link>"
+msgid "<link href=\"text/simpress/01/13160000.xhp\">Connect</link>"
+msgstr "<link href=\"text/simpress/01/13160000.xhp\">Connecta</link>"
#. nCBkq
#: 13160000.xhp
@@ -7532,14 +7532,14 @@ msgctxt ""
msgid "<bookmark_value>objects; breaking connections</bookmark_value><bookmark_value>breaking object connections</bookmark_value>"
msgstr "<bookmark_value>objectes; orde darrere de l'objecte</bookmark_value><bookmark_value>orde darrere de l'objecte</bookmark_value>"
-#. zhTWC
+#. 2ZdeF
#: 13170000.xhp
msgctxt ""
"13170000.xhp\n"
"hd_id3150870\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13170000.xhp\" name=\"Break\">Break</link>"
-msgstr "<link href=\"text/simpress/01/13170000.xhp\" name=\"Trenca\">Trenca</link>"
+msgid "<link href=\"text/simpress/01/13170000.xhp\">Break</link>"
+msgstr "<link href=\"text/simpress/01/13170000.xhp\">Trenca</link>"
#. BBjb3
#: 13170000.xhp
@@ -7568,14 +7568,14 @@ msgctxt ""
msgid "Shapes"
msgstr "Formes"
-#. GFyFF
+#. CNxUV
#: 13180000.xhp
msgctxt ""
"13180000.xhp\n"
"hd_id3154319\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13180000.xhp\" name=\"Shapes\">Shapes</link>"
-msgstr "<link href=\"text/simpress/01/13180000.xhp\" name=\"Formes\">Formes</link>"
+msgid "<link href=\"text/simpress/01/13180000.xhp\">Shapes</link>"
+msgstr "<link href=\"text/simpress/01/13180000.xhp\">Formes</link>"
#. VfDM8
#: 13180000.xhp
@@ -7604,14 +7604,14 @@ msgctxt ""
msgid "Merge"
msgstr "Fusiona"
-#. d9vBw
+#. TzWg3
#: 13180100.xhp
msgctxt ""
"13180100.xhp\n"
"hd_id3150870\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13180100.xhp\" name=\"Merge\">Merge</link>"
-msgstr "<link href=\"text/simpress/01/13180100.xhp\" name=\"Fusiona\">Fusiona</link>"
+msgid "<link href=\"text/simpress/01/13180100.xhp\">Merge</link>"
+msgstr "<link href=\"text/simpress/01/13180100.xhp\">Fusiona</link>"
#. y9YTM
#: 13180100.xhp
@@ -7640,13 +7640,13 @@ msgctxt ""
msgid "Subtract"
msgstr ""
-#. r6Cpu
+#. NWgnt
#: 13180200.xhp
msgctxt ""
"13180200.xhp\n"
"hd_id3150439\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13180200.xhp\" name=\"Subtract\">Subtract</link>"
+msgid "<link href=\"text/simpress/01/13180200.xhp\">Subtract</link>"
msgstr ""
#. VFGCM
@@ -7676,13 +7676,13 @@ msgctxt ""
msgid "Intersect"
msgstr ""
-#. xTSQv
+#. LGfDD
#: 13180300.xhp
msgctxt ""
"13180300.xhp\n"
"hd_id3153768\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13180300.xhp\" name=\"Intersect\">Intersect</link>"
+msgid "<link href=\"text/simpress/01/13180300.xhp\">Intersect</link>"
msgstr ""
#. sHqmC
@@ -7712,13 +7712,13 @@ msgctxt ""
msgid "<bookmark_value>bullets;Impress</bookmark_value><bookmark_value>ordered list;Impress</bookmark_value><bookmark_value>unordered list;Impress</bookmark_value><bookmark_value>bullets;Draw</bookmark_value><bookmark_value>ordered list;Draw</bookmark_value><bookmark_value>unordered list;Draw</bookmark_value>"
msgstr ""
-#. ABkfU
+#. xAFoQ
#: bulletandposition.xhp
msgctxt ""
"bulletandposition.xhp\n"
"hd_id591623253567629\n"
"help.text"
-msgid "<link href=\"text/simpress/01/bulletandposition.xhp\" name=\"command_name\">Bullet and Position</link>"
+msgid "<link href=\"text/simpress/01/bulletandposition.xhp\">Bullet and Position</link>"
msgstr ""
#. phgxq
@@ -8837,14 +8837,14 @@ msgctxt ""
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
msgstr ""
-#. oC2ny
+#. R7HGY
#: new_slide.xhp
msgctxt ""
"new_slide.xhp\n"
"hd_id3159155\n"
"help.text"
-msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr "<link href=\"text/simpress/01/newslide.xhp\" name=\"Diapositiva nova\">Diapositiva nova</link>"
+msgid "<link href=\"text/simpress/01/new_slide.xhp\">New Slide</link>"
+msgstr "<link href=\"text/simpress/01/newslide.xhp\">Diapositiva nova</link>"
#. qSLDT
#: new_slide.xhp
@@ -8873,23 +8873,23 @@ msgctxt ""
msgid "<bookmark_value>Impress Remote;remote connection dialog</bookmark_value><bookmark_value>presentation;remote control connections</bookmark_value>"
msgstr "<bookmark_value>Impressió remota;diàleg de connexió remot</bookmark_value><bookmark_value>presentation;connexions de control remot</bookmark_value>"
-#. xAEGK
+#. HzEfL
#: remoteconnections.xhp
msgctxt ""
"remoteconnections.xhp\n"
"hd_id671535054437336\n"
"help.text"
-msgid "<link href=\"text/simpress/01/remoteconnections.xhp\" name=\"remotedialog\">Remote Connections</link>"
-msgstr "<link href=\"text/simpress/01/remoteconnections.xhp\" name=\"remotedialog\">Connexions remotes</link>"
+msgid "<link href=\"text/simpress/01/remoteconnections.xhp\">Remote Connections</link>"
+msgstr "<link href=\"text/simpress/01/remoteconnections.xhp\">Connexions remotes</link>"
-#. xGGek
+#. qszqz
#: remoteconnections.xhp
msgctxt ""
"remoteconnections.xhp\n"
"par_id371535054437338\n"
"help.text"
-msgid "<variable id=\"remotedialog1\"><ahelp hid=\".\">List all <link href=\"text/simpress/guide/impress_remote.xhp\" name=\"impressremote\"><emph>Impress Remote</emph></link> available connections.</ahelp></variable>"
-msgstr "<variable id=\"remotedialog1\"><ahelp hid=\".\">Enumera totes les connexions disponibles del <link href=\"text/simpress/guide/impress_remote.xhp\" name=\"impressremote\"><emph>Control remot de l'Impress</emph></link>.</ahelp></variable>"
+msgid "<variable id=\"remotedialog1\"><ahelp hid=\".\">List all <link href=\"text/simpress/guide/impress_remote.xhp\"><emph>Impress Remote</emph></link> available connections.</ahelp></variable>"
+msgstr "<variable id=\"remotedialog1\"><ahelp hid=\".\">Enumera totes les connexions disponibles del <link href=\"text/simpress/guide/impress_remote.xhp\"><emph>Control remot de l'Impress</emph></link>.</ahelp></variable>"
#. xLNXR
#: remoteconnections.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/simpress/02.po b/source/ca-valencia/helpcontent2/source/text/simpress/02.po
index 7d27eab9407..98ce9655d48 100644
--- a/source/ca-valencia/helpcontent2/source/text/simpress/02.po
+++ b/source/ca-valencia/helpcontent2/source/text/simpress/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-05-12 11:50+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/ca_VALENCIA/>\n"
@@ -26,14 +26,14 @@ msgctxt ""
msgid "Show/Hide Slide"
msgstr "Mostra/amaga la diapositiva"
-#. a8PZi
+#. JQm8Z
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3147368\n"
"help.text"
-msgid "<link href=\"text/simpress/02/04010000.xhp\" name=\"Show/Hide Slide\">Show/Hide Slide</link>"
-msgstr "<link href=\"text/simpress/02/04010000.xhp\" name=\"Mostra/amaga la diapositiva\">Mostra/amaga la diapositiva</link>"
+msgid "<link href=\"text/simpress/02/04010000.xhp\">Show/Hide Slide</link>"
+msgstr "<link href=\"text/simpress/02/04010000.xhp\">Mostra/amaga la diapositiva</link>"
#. EVzWT
#: 04010000.xhp
@@ -80,14 +80,14 @@ msgctxt ""
msgid "Slides Per Row"
msgstr "Diapositives per fila"
-#. AFyNH
+#. YQ9XC
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
"hd_id3154319\n"
"help.text"
-msgid "<link href=\"text/simpress/02/04020000.xhp\" name=\"Slides Per Row\">Slides Per Row</link>"
-msgstr "<link href=\"text/simpress/02/04020000.xhp\" name=\"Diapositives per fila\">Diapositives per fila</link>"
+msgid "<link href=\"text/simpress/02/04020000.xhp\">Slides Per Row</link>"
+msgstr "<link href=\"text/simpress/02/04020000.xhp\">Diapositives per fila</link>"
#. ot6hT
#: 04020000.xhp
@@ -107,14 +107,14 @@ msgctxt ""
msgid "Slide Effects"
msgstr "Efectes de la diapositiva"
-#. ADpgs
+#. TrJBP
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"hd_id3152598\n"
"help.text"
-msgid "<link href=\"text/simpress/02/04030000.xhp\" name=\"Slide Effects\">Slide Effects</link>"
-msgstr "<link href=\"text/simpress/02/04030000.xhp\" name=\"Efectes de la diapositiva\">Efectes de la diapositiva</link>"
+msgid "<link href=\"text/simpress/02/04030000.xhp\">Slide Effects</link>"
+msgstr "<link href=\"text/simpress/02/04030000.xhp\">Efectes de la diapositiva</link>"
#. sDJeq
#: 04030000.xhp
@@ -134,14 +134,14 @@ msgctxt ""
msgid "Time"
msgstr "Temps"
-#. eVuep
+#. bKTQd
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3153188\n"
"help.text"
-msgid "<link href=\"text/simpress/02/04060000.xhp\" name=\"Time\">Time</link>"
-msgstr "<link href=\"text/simpress/02/04060000.xhp\" name=\"Temps\">Temps</link>"
+msgid "<link href=\"text/simpress/02/04060000.xhp\">Time</link>"
+msgstr "<link href=\"text/simpress/02/04060000.xhp\">Temps</link>"
#. 9B2G8
#: 04060000.xhp
@@ -161,14 +161,14 @@ msgctxt ""
msgid "Rehearse Timings"
msgstr "Assaja els cronometratges"
-#. Buby5
+#. i8ZFP
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
"hd_id3150010\n"
"help.text"
-msgid "<link href=\"text/simpress/02/04070000.xhp\" name=\"Rehearse Timings\">Rehearse Timings</link>"
-msgstr "<link href=\"text/simpress/02/04070000.xhp\" name=\"Assaja els cronometratges\">Assaja els cronometratges</link>"
+msgid "<link href=\"text/simpress/02/04070000.xhp\">Rehearse Timings</link>"
+msgstr "<link href=\"text/simpress/02/04070000.xhp\">Assaja els cronometratges</link>"
#. sBSvg
#: 04070000.xhp
@@ -197,14 +197,14 @@ msgctxt ""
msgid "Rehearse Timings"
msgstr "Assaja els cronometratges"
-#. sFFxz
+#. YGAAB
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
"par_id3152994\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show Settings\">Slide Show Settings</link>"
-msgstr "<link href=\"text/simpress/01/06080000.xhp\" name=\"Paràmetres de presentació de diapositives\">Paràmetres de presentació de diapositives</link>"
+msgid "<link href=\"text/simpress/01/06080000.xhp\">Slide Show Settings</link>"
+msgstr "<link href=\"text/simpress/01/06080000.xhp\">Paràmetres de presentació de diapositives</link>"
#. s3Nu4
#: 08020000.xhp
@@ -215,14 +215,14 @@ msgctxt ""
msgid "Current Size"
msgstr "Mida actual"
-#. wiNzz
+#. 4QBcv
#: 08020000.xhp
msgctxt ""
"08020000.xhp\n"
"hd_id3154011\n"
"help.text"
-msgid "<link href=\"text/simpress/02/08020000.xhp\" name=\"Current Size\">Current Size</link>"
-msgstr "<link href=\"text/simpress/02/08020000.xhp\" name=\"Mida actual\">Mida actual</link>"
+msgid "<link href=\"text/simpress/02/08020000.xhp\">Current Size</link>"
+msgstr "<link href=\"text/simpress/02/08020000.xhp\">Mida actual</link>"
#. 5xBqE
#: 08020000.xhp
@@ -233,14 +233,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Position\">Displays the X and Y position of the cursor and the size of the selected object.</ahelp>"
msgstr "<ahelp hid=\".uno:Position\">Mostra la posició X i Y del cursor i la mida de l'objecte seleccionat.</ahelp>"
-#. XvfuR
+#. dZ82L
#: 08020000.xhp
msgctxt ""
"08020000.xhp\n"
"par_id3154510\n"
"help.text"
-msgid "This Status bar field uses the same measurement units as the rulers. You can define the units by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\"><emph>%PRODUCTNAME Impress - General</emph></link>."
-msgstr "Este camp de la barra d'estat utilitza les mateixes unitats de mesura que els regles. Podeu definir les unitats si trieu <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentació - General\"><emph>%PRODUCTNAME Impress - General</emph></link>."
+msgid "This Status bar field uses the same measurement units as the rulers. You can define the units by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01070500.xhp\"><emph>%PRODUCTNAME Impress - General</emph></link>."
+msgstr "Este camp de la barra d'estat utilitza les mateixes unitats de mesura que els regles. Podeu definir les unitats si trieu <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01070500.xhp\"><emph>%PRODUCTNAME Impress - General</emph></link>."
#. 6tHYP
#: 08060000.xhp
@@ -251,14 +251,14 @@ msgctxt ""
msgid "Current Slide/Level"
msgstr "Diapositiva/nivell actual"
-#. iuanG
+#. CFJFQ
#: 08060000.xhp
msgctxt ""
"08060000.xhp\n"
"hd_id3159153\n"
"help.text"
-msgid "<link href=\"text/simpress/02/08060000.xhp\" name=\"Current Slide/Level\">Current Slide/Level</link>"
-msgstr "<link href=\"text/simpress/02/08060000.xhp\" name=\"Diapositiva/nivell actual\">Diapositiva/nivell actual</link>"
+msgid "<link href=\"text/simpress/02/08060000.xhp\">Current Slide/Level</link>"
+msgstr "<link href=\"text/simpress/02/08060000.xhp\">Diapositiva/nivell actual</link>"
#. fgC2j
#: 08060000.xhp
@@ -296,14 +296,14 @@ msgctxt ""
msgid "<bookmark_value>increasing sizes of views</bookmark_value><bookmark_value>views; display sizes</bookmark_value><bookmark_value>decreasing sizes of views</bookmark_value><bookmark_value>zooming; in presentations</bookmark_value><bookmark_value>views; shift function</bookmark_value><bookmark_value>hand icon for moving slides</bookmark_value>"
msgstr "<bookmark_value>augment de les mides de visualització</bookmark_value><bookmark_value>visualitzacions; mides de visualització</bookmark_value><bookmark_value>reducció de les mides de visualització</bookmark_value><bookmark_value>ampliació; en presentacions</bookmark_value><bookmark_value>visualitzacions; funció de desplaçament</bookmark_value><bookmark_value>icona de mà per moure les diapositives</bookmark_value>"
-#. KE9n4
+#. EAGJR
#: 10020000.xhp
msgctxt ""
"10020000.xhp\n"
"hd_id3159153\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10020000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/simpress/02/10020000.xhp\" name=\"Escala\">Escala</link>"
+msgid "<link href=\"text/simpress/02/10020000.xhp\">Zoom</link>"
+msgstr "<link href=\"text/simpress/02/10020000.xhp\">Escala</link>"
#. tomZx
#: 10020000.xhp
@@ -737,13 +737,13 @@ msgctxt ""
msgid "<bookmark_value>flipping around a flip line</bookmark_value><bookmark_value>mirroring objects</bookmark_value><bookmark_value>3D rotation objects; converting to</bookmark_value><bookmark_value>slanting objects</bookmark_value><bookmark_value>objects; effects</bookmark_value><bookmark_value>distorting objects</bookmark_value><bookmark_value>shearing objects</bookmark_value><bookmark_value>transparency; of objects</bookmark_value><bookmark_value>gradients; transparent</bookmark_value><bookmark_value>colors; defining gradients interactively</bookmark_value><bookmark_value>gradients; defining colors</bookmark_value><bookmark_value>circles; of objects</bookmark_value>"
msgstr "<bookmark_value>inversió al voltant d'una línia d'inversió</bookmark_value><bookmark_value>reflexió d'objectes</bookmark_value><bookmark_value>objectes de gir en 3D; conversió en</bookmark_value><bookmark_value>inclinació d'objectes</bookmark_value><bookmark_value>objectes; efectes</bookmark_value><bookmark_value>distorsió d'objectes</bookmark_value><bookmark_value>retallada d'objectes</bookmark_value><bookmark_value>transparència; d'objectes</bookmark_value><bookmark_value>degradats; transparents</bookmark_value><bookmark_value>colors; definició interactiva de degradats</bookmark_value><bookmark_value>degradats; definició de colors</bookmark_value><bookmark_value>cercles; d'objectes</bookmark_value>"
-#. CJuj9
+#. Tm7xa
#: 10030000.xhp
msgctxt ""
"10030000.xhp\n"
"hd_id3147264\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10030000.xhp\" name=\"Transformations\">Transformations</link>"
+msgid "<link href=\"text/simpress/02/10030000.xhp\">Transformations</link>"
msgstr ""
#. EpoHs
@@ -1160,14 +1160,14 @@ msgctxt ""
msgid "<variable id=\"gluepointsbar\"><link href=\"text/simpress/02/10030200.xhp\">Gluepoints Bar</link></variable>"
msgstr ""
-#. CjR3U
+#. FDBjC
#: 10030200.xhp
msgctxt ""
"10030200.xhp\n"
"par_id3159206\n"
"help.text"
-msgid "<ahelp hid=\".\">Insert or modify the properties of a gluepoint. A gluepoint is a point where you can attach a <link href=\"text/simpress/02/10100000.xhp\" name=\"connector\">connector</link> line. </ahelp> By default, <item type=\"productname\">%PRODUCTNAME</item> automatically places a gluepoint at the center of each side of the bounding rectangle for every object you create."
-msgstr "<ahelp hid=\".\">Insereix o modifica les propietats d'un punt d'adhesió. Un punt d'adhesió és un punt on podeu enganxar un <link href=\"text/simpress/02/10100000.xhp\" name=\"connector\">connector</link>. </ahelp> Per defecte, el <item type=\"productname\">%PRODUCTNAME</item> col·loca automàticament un punt d'adhesió al centre de cada costat del rectangle que envolta cada objecte que creeu."
+msgid "<ahelp hid=\".\">Insert or modify the properties of a gluepoint. A gluepoint is a point where you can attach a <link href=\"text/simpress/02/10100000.xhp\">connector</link> line. </ahelp> By default, <item type=\"productname\">%PRODUCTNAME</item> automatically places a gluepoint at the center of each side of the bounding rectangle for every object you create."
+msgstr "<ahelp hid=\".\">Insereix o modifica les propietats d'un punt d'adhesió. Un punt d'adhesió és un punt on podeu enganxar un <link href=\"text/simpress/02/10100000.xhp\">connector</link>. </ahelp> Per defecte, el <item type=\"productname\">%PRODUCTNAME</item> col·loca automàticament un punt d'adhesió al centre de cada costat del rectangle que envolta cada objecte que creeu."
#. a76g9
#: 10030200.xhp
@@ -1619,14 +1619,14 @@ msgctxt ""
msgid "<bookmark_value>text; toolbar</bookmark_value><bookmark_value>floating text</bookmark_value><bookmark_value>callouts; inserting in presentations</bookmark_value><bookmark_value>inserting; callouts in presentations</bookmark_value>"
msgstr "<bookmark_value>text; barra d'eines</bookmark_value><bookmark_value>text flotant</bookmark_value><bookmark_value>llegendes; inserció en presentacions</bookmark_value><bookmark_value>inserció; llegendes en presentacions</bookmark_value>"
-#. TgbJW
+#. D6ULE
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
"hd_id3152994\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10050000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/simpress/02/10050000.xhp\" name=\"Text\">Text</link>"
+msgid "<link href=\"text/simpress/02/10050000.xhp\">Text</link>"
+msgstr "<link href=\"text/simpress/02/10050000.xhp\">Text</link>"
#. TZdqA
#: 10050000.xhp
@@ -1799,14 +1799,14 @@ msgctxt ""
msgid "<bookmark_value>rectangles</bookmark_value><bookmark_value>forms; inserting</bookmark_value><bookmark_value>geometric forms</bookmark_value><bookmark_value>inserting;rectangles</bookmark_value>"
msgstr "<bookmark_value>rectangles</bookmark_value><bookmark_value>formes; inserció</bookmark_value><bookmark_value>formes geomètriques</bookmark_value><bookmark_value>inserció;rectangles</bookmark_value>"
-#. MkAzE
+#. JRwL4
#: 10060000.xhp
msgctxt ""
"10060000.xhp\n"
"hd_id3159204\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10060000.xhp\" name=\"Rectangles\">Rectangles</link>"
-msgstr "<link href=\"text/simpress/02/10060000.xhp\" name=\"Rectangles\">Rectangles</link>"
+msgid "<link href=\"text/simpress/02/10060000.xhp\">Rectangles</link>"
+msgstr "<link href=\"text/simpress/02/10060000.xhp\">Rectangles</link>"
#. 9GDww
#: 10060000.xhp
@@ -2132,14 +2132,14 @@ msgctxt ""
msgid "<bookmark_value>inserting; ellipses</bookmark_value>"
msgstr "<bookmark_value>inserció; el·lipses</bookmark_value>"
-#. xqapU
+#. qMnz7
#: 10070000.xhp
msgctxt ""
"10070000.xhp\n"
"hd_id3148841\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10070000.xhp\" name=\"Ellipse\">Ellipse</link>"
-msgstr "<link href=\"text/simpress/02/10070000.xhp\" name=\"El·lipse\">El·lipse</link>"
+msgid "<link href=\"text/simpress/02/10070000.xhp\">Ellipse</link>"
+msgstr "<link href=\"text/simpress/02/10070000.xhp\">El·lipse</link>"
#. mLRKP
#: 10070000.xhp
@@ -2672,14 +2672,14 @@ msgctxt ""
msgid "<bookmark_value>toolbars;curves</bookmark_value><bookmark_value>curves; toolbar</bookmark_value><bookmark_value>polygons; inserting</bookmark_value><bookmark_value>inserting; polygons</bookmark_value><bookmark_value>freeform lines; drawing</bookmark_value><bookmark_value>drawing; freeform lines</bookmark_value>"
msgstr "<bookmark_value>barres d'eines;corbes</bookmark_value><bookmark_value>corbes; barra d'eines</bookmark_value><bookmark_value>polígons; inserció</bookmark_value><bookmark_value>inserció; polígons</bookmark_value><bookmark_value>línies de forma lliure; dibuix</bookmark_value><bookmark_value>dibuix; línies de forma lliure</bookmark_value>"
-#. DdNnh
+#. 9pSkZ
#: 10080000.xhp
msgctxt ""
"10080000.xhp\n"
"hd_id3149875\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10080000.xhp\" name=\"Curve\">Curve</link>"
-msgstr "<link href=\"text/simpress/02/10080000.xhp\" name=\"Corba\">Corba</link>"
+msgid "<link href=\"text/simpress/02/10080000.xhp\">Curve</link>"
+msgstr "<link href=\"text/simpress/02/10080000.xhp\">Corba</link>"
#. yCw58
#: 10080000.xhp
@@ -2987,14 +2987,14 @@ msgctxt ""
msgid "<bookmark_value>toolbars;3D objects</bookmark_value><bookmark_value>3D objects; inserting</bookmark_value><bookmark_value>inserting;3D objects</bookmark_value><bookmark_value>cubes</bookmark_value><bookmark_value>spheres</bookmark_value><bookmark_value>cylinders</bookmark_value><bookmark_value>cones</bookmark_value><bookmark_value>pyramids</bookmark_value><bookmark_value>torus</bookmark_value><bookmark_value>shells</bookmark_value><bookmark_value>half-spheres</bookmark_value><bookmark_value>drawing;3D objects</bookmark_value>"
msgstr "<bookmark_value>barres d'eines;objectes 3D</bookmark_value><bookmark_value>objectes 3D; inserció</bookmark_value><bookmark_value>inserció;objectes 3D</bookmark_value><bookmark_value>cubs</bookmark_value><bookmark_value>esferes</bookmark_value><bookmark_value>cilindres</bookmark_value><bookmark_value>cons</bookmark_value><bookmark_value>piràmides</bookmark_value><bookmark_value>tors</bookmark_value><bookmark_value>closques</bookmark_value><bookmark_value>semiesferes</bookmark_value><bookmark_value>dibuix;objectes 3D</bookmark_value>"
-#. mGAqs
+#. DSGHk
#: 10090000.xhp
msgctxt ""
"10090000.xhp\n"
"hd_id3159238\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"3D Objects\">3D Objects</link>"
-msgstr "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objectes 3D\">Objectes 3D</link>"
+msgid "<link href=\"text/simpress/02/10090000.xhp\">3D Objects</link>"
+msgstr "<link href=\"text/simpress/02/10090000.xhp\">Objectes 3D</link>"
#. njkq6
#: 10090000.xhp
@@ -3185,14 +3185,14 @@ msgctxt ""
msgid "Pyramid"
msgstr "Piràmide"
-#. 9FqJn
+#. 4otxG
#: 10090000.xhp
msgctxt ""
"10090000.xhp\n"
"par_id3147511\n"
"help.text"
-msgid "<ahelp hid=\".uno:Cyramid\">Draws a pyramid with a square base where you drag in the slide. To draw a pyramid with a rectangular base, hold down Shift while you drag. To define a different polygon for the base of the pyramid, open the <emph>3D Effects </emph>dialog and click the <link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\"><emph>Geometry</emph></link> tab. In the <emph>Segments</emph> area, enter the number of sides for the polygon in the box labeled <emph>Horizontal</emph>, and then click the green checkmark.</ahelp>"
-msgstr "<ahelp hid=\".uno:Cyramid\">Dibuixa una piràmide amb una base quadrada a la posició on l'arrossegueu a la diapositiva. Per dibuixar una piràmide amb una base rectangular, manteniu premuda la tecla Maj mentre arrossegueu. Per definir un polígon diferent per a la base de la piràmide, obriu el diàleg <emph>Efectes 3D</emph> i feu clic a la pestanya <link href=\"text/shared/01/05350200.xhp\" name=\"Geometria\"><emph>Geometria</emph></link>. A l'àrea <emph>Segments</emph>, introduïu el nombre de costats per al polígon a la casella <emph>Horitzontal</emph> i, a continuació, feu clic a la marca de selecció verda.</ahelp>"
+msgid "<ahelp hid=\".uno:Cyramid\">Draws a pyramid with a square base where you drag in the slide. To draw a pyramid with a rectangular base, hold down Shift while you drag. To define a different polygon for the base of the pyramid, open the <emph>3D Effects </emph>dialog and click the <link href=\"text/shared/01/05350200.xhp\"><emph>Geometry</emph></link> tab. In the <emph>Segments</emph> area, enter the number of sides for the polygon in the box labeled <emph>Horizontal</emph>, and then click the green checkmark.</ahelp>"
+msgstr "<ahelp hid=\".uno:Cyramid\">Dibuixa una piràmide amb una base quadrada a la posició on l'arrossegueu a la diapositiva. Per dibuixar una piràmide amb una base rectangular, manteniu premuda la tecla Maj mentre arrossegueu. Per definir un polígon diferent per a la base de la piràmide, obriu el diàleg <emph>Efectes 3D</emph> i feu clic a la pestanya <link href=\"text/shared/01/05350200.xhp\"><emph>Geometria</emph></link>. A l'àrea <emph>Segments</emph>, introduïu el nombre de costats per al polígon a la casella <emph>Horitzontal</emph> i, a continuació, feu clic a la marca de selecció verda.</ahelp>"
#. foMAw
#: 10090000.xhp
@@ -3329,14 +3329,14 @@ msgctxt ""
msgid "Connectors"
msgstr "Connectors"
-#. R7933
+#. 3REC3
#: 10100000.xhp
msgctxt ""
"10100000.xhp\n"
"hd_id3149664\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10100000.xhp\" name=\"Connectors\">Connectors</link>"
-msgstr "<link href=\"text/simpress/02/10100000.xhp\" name=\"Connectors\">Connectors</link>"
+msgid "<link href=\"text/simpress/02/10100000.xhp\">Connectors</link>"
+msgstr "<link href=\"text/simpress/02/10100000.xhp\">Connectors</link>"
#. vuC7Q
#: 10100000.xhp
@@ -3410,13 +3410,13 @@ msgctxt ""
msgid "Curved"
msgstr "Corb"
-#. tTG6P
+#. KgM64
#: 10100000.xhp
msgctxt ""
"10100000.xhp\n"
"par_id3148604\n"
"help.text"
-msgid "When you click a connector and move your mouse pointer over a filled object, or the edge of an unfilled object, gluepoints appear. A gluepoint is a fixed point where you can attach a connector line. You can add custom <link href=\"text/simpress/02/10030200.xhp\" name=\"gluepoint\">gluepoints</link> to an object."
+msgid "When you click a connector and move your mouse pointer over a filled object, or the edge of an unfilled object, gluepoints appear. A gluepoint is a fixed point where you can attach a connector line. You can add custom <link href=\"text/simpress/02/10030200.xhp\">gluepoints</link> to an object."
msgstr ""
#. qX29Y
@@ -4445,14 +4445,14 @@ msgctxt ""
msgid "Insert"
msgstr "Insereix"
-#. vmfxb
+#. cBx8F
#: 10110000.xhp
msgctxt ""
"10110000.xhp\n"
"hd_id3149945\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10110000.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/simpress/02/10110000.xhp\" name=\"Insereix\">Insereix</link>"
+msgid "<link href=\"text/simpress/02/10110000.xhp\">Insert</link>"
+msgstr "<link href=\"text/simpress/02/10110000.xhp\">Insereix</link>"
#. bQbqm
#: 10110000.xhp
@@ -4481,50 +4481,50 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertToolbox\">Open the <emph>Insert</emph> toolbar, where you can add objects, including charts, spreadsheets, and images, to your document.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertToolbox\">Obriu la barra d'eines <emph>Insereix</emph>, des d'on podreu afegir objectes, com ara diagrames, fulls de càlcul i imatges, al document.</ahelp>"
-#. wN5uw
+#. uzbg7
#: 10110000.xhp
msgctxt ""
"10110000.xhp\n"
"hd_id3149028\n"
"help.text"
-msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Diapositiva\">Diapositiva</link>"
+msgid "<link href=\"text/simpress/01/new_slide.xhp\">Slide</link>"
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\">Diapositiva</link>"
-#. Y9HZ8
+#. ygC8H
#: 10110000.xhp
msgctxt ""
"10110000.xhp\n"
"hd_id3154558\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=\"Marc flotant\">Marc flotant</link>"
+msgid "<link href=\"text/shared/01/04160500.xhp\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\">Marc flotant</link>"
-#. b9q3B
+#. CHBSW
#: 10110000.xhp
msgctxt ""
"10110000.xhp\n"
"hd_id3150567\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
-msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Full de càlcul\">Full de càlcul</link>"
+msgid "<link href=\"text/simpress/01/04080100.xhp\">Spreadsheet</link>"
+msgstr "<link href=\"text/simpress/01/04080100.xhp\">Full de càlcul</link>"
-#. CaFhc
+#. BpmfQ
#: 10110000.xhp
msgctxt ""
"10110000.xhp\n"
"hd_id3155986\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=\"Des d'un fitxer\">Des d'un fitxer</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\">Des d'un fitxer</link>"
-#. cEtos
+#. pBP2a
#: 10110000.xhp
msgctxt ""
"10110000.xhp\n"
"hd_id3145826\n"
"help.text"
-msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
-msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Fórmula\">Fórmula</link>"
+msgid "<link href=\"text/shared/01/04160300.xhp\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04160300.xhp\">Fórmula</link>"
#. A9AUD
#: 10110000.xhp
@@ -4535,14 +4535,14 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/chart_insert.xhp\">Chart</link>"
msgstr "<link href=\"text/shared/guide/chart_insert.xhp\">Diagrama</link>"
-#. sqB8w
+#. Gv3jm
#: 10110000.xhp
msgctxt ""
"10110000.xhp\n"
"hd_id3153004\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=\"Objecte OLE\">Objecte OLE</link>"
+msgid "<link href=\"text/shared/01/04150100.xhp\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\">Objecte OLE</link>"
#. Sy8hn
#: 10120000.xhp
@@ -4562,14 +4562,14 @@ msgctxt ""
msgid "<bookmark_value>lines;inserting</bookmark_value><bookmark_value>arrows; inserting</bookmark_value><bookmark_value>inserting; lines</bookmark_value><bookmark_value>inserting; arrows</bookmark_value><bookmark_value>dimension lines; drawing</bookmark_value>"
msgstr "<bookmark_value>línies;inserció</bookmark_value><bookmark_value>fletxes; inserció</bookmark_value><bookmark_value>inserció; línies</bookmark_value><bookmark_value>inserció; fletxes</bookmark_value><bookmark_value>línies de dimensió; dibuix</bookmark_value>"
-#. GRGAL
+#. JFM62
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"hd_id3145799\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10120000.xhp\" name=\"Arrows\">Arrows</link>"
-msgstr "<link href=\"text/simpress/02/10120000.xhp\" name=\"Fletxes\">Fletxes</link>"
+msgid "<link href=\"text/simpress/02/10120000.xhp\">Arrows</link>"
+msgstr "<link href=\"text/simpress/02/10120000.xhp\">Fletxes</link>"
#. dVNDG
#: 10120000.xhp
@@ -4904,14 +4904,14 @@ msgctxt ""
msgid "If you want the dimension line to be the same length as the side of a nearby object, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging. To constrain the dimension line to 45 degrees, hold down the Shift key while dragging."
msgstr "Si voleu que la línia de dimensió tinga la mateixa longitud que el costat d'un objecte proper, manteniu premuda la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline> mentre arrossegueu. Per restringir la línia de dimensió a 45 graus, manteniu premuda la tecla Maj mentre arrossegueu."
-#. w55GE
+#. GfFUQ
#: 10120000.xhp
msgctxt ""
"10120000.xhp\n"
"par_id3148986\n"
"help.text"
-msgid "In %PRODUCTNAME Draw, a dimension line is always inserted on the <link href=\"text/sdraw/guide/layer_tipps.xhp\" name=\"layer\">layer</link> called <emph>Dimension Lines</emph>. If you set that layer to invisible, you will not see any dimension line in your drawing."
-msgstr "En el %PRODUCTNAME Draw, una línia de dimensió sempre s'insereix en la <link href=\"text/sdraw/guide/layer_tipps.xhp\" name=\"layer\">capa</link> anomenada <emph>Línies de dimensió</emph>. Si establiu aquesta capa com a invisible, no veureu cap línia de dimensió al dibuix."
+msgid "In %PRODUCTNAME Draw, a dimension line is always inserted on the <link href=\"text/sdraw/guide/layer_tipps.xhp\">layer</link> called <emph>Dimension Lines</emph>. If you set that layer to invisible, you will not see any dimension line in your drawing."
+msgstr "En el %PRODUCTNAME Draw, una línia de dimensió sempre s'insereix en la <link href=\"text/sdraw/guide/layer_tipps.xhp\">capa</link> anomenada <emph>Línies de dimensió</emph>. Si establiu aquesta capa com a invisible, no veureu cap línia de dimensió al dibuix."
#. oamCu
#: 10120000.xhp
@@ -4985,22 +4985,22 @@ msgctxt ""
msgid "<bookmark_value>levels; hiding</bookmark_value><bookmark_value>hiding; levels</bookmark_value>"
msgstr "<bookmark_value>nivells; amagar</bookmark_value><bookmark_value>amagar; nivells</bookmark_value>"
-#. Kynp7
+#. 8gAGP
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
"hd_id3153142\n"
"help.text"
-msgid "<link href=\"text/simpress/02/11060000.xhp\" name=\"First Level\">Show Only First Level</link>"
+msgid "<link href=\"text/simpress/02/11060000.xhp\">Show Only First Level</link>"
msgstr ""
-#. DUn9i
+#. bRPGY
#: 11060000.xhp
msgctxt ""
"11060000.xhp\n"
"par_id3151076\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapseAll\">Hides all of the headings of the slides in the current slide show except for the titles of the slides. Hidden headings are indicated by a black line in front of a slide title. To show the headings, click the <link href=\"text/simpress/02/11070000.xhp\" name=\"All Levels\"><menuitem>Show All Levels</menuitem></link> icon.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapseAll\">Hides all of the headings of the slides in the current slide show except for the titles of the slides. Hidden headings are indicated by a black line in front of a slide title. To show the headings, click the <link href=\"text/simpress/02/11070000.xhp\"><menuitem>Show All Levels</menuitem></link> icon.</ahelp>"
msgstr ""
#. F7upw
@@ -5039,22 +5039,22 @@ msgctxt ""
msgid "<bookmark_value>levels; showing</bookmark_value><bookmark_value>showing; levels</bookmark_value>"
msgstr "<bookmark_value>nivells; mostrar</bookmark_value><bookmark_value>mostrar; nivells</bookmark_value>"
-#. nps2T
+#. v7PtR
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
"hd_id3153728\n"
"help.text"
-msgid "<link href=\"text/simpress/02/11070000.xhp\" name=\"All Levels\">Show All Levels</link>"
+msgid "<link href=\"text/simpress/02/11070000.xhp\">Show All Levels</link>"
msgstr ""
-#. cANRc
+#. teHgS
#: 11070000.xhp
msgctxt ""
"11070000.xhp\n"
"par_id3154492\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineExpandAll\">Displays the hidden headings of the slides in the current slide show. To hide all of the headings in the current slide show, except for the slide titles, click the <link href=\"text/simpress/02/11060000.xhp\" name=\"First Level\"><menuitem>Show Only First Level</menuitem></link> icon.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineExpandAll\">Displays the hidden headings of the slides in the current slide show. To hide all of the headings in the current slide show, except for the slide titles, click the <link href=\"text/simpress/02/11060000.xhp\"><menuitem>Show Only First Level</menuitem></link> icon.</ahelp>"
msgstr ""
#. qb29i
@@ -5093,23 +5093,23 @@ msgctxt ""
msgid "<bookmark_value>subpoints; hiding</bookmark_value><bookmark_value>hiding; subpoints</bookmark_value>"
msgstr "<bookmark_value>subpunts; amagar</bookmark_value><bookmark_value>amagar; subpunts</bookmark_value>"
-#. mQSE7
+#. ad9jp
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
"hd_id3146119\n"
"help.text"
-msgid "<link href=\"text/simpress/02/11080000.xhp\" name=\"Hide Subpoints\">Hide Subpoints</link>"
-msgstr "<link href=\"text/simpress/02/11080000.xhp\" name=\"Amaga els subpunts\">Amaga els subpunts</link>"
+msgid "<link href=\"text/simpress/02/11080000.xhp\">Hide Subpoints</link>"
+msgstr "<link href=\"text/simpress/02/11080000.xhp\">Amaga els subpunts</link>"
-#. VozPE
+#. CZjcu
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
"par_id3154490\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapse\">Hides the subheadings of a selected heading. Hidden subheadings are indicated by a black line in front of a heading. To show the lower level headings, click the <link href=\"text/simpress/02/11090000.xhp\" name=\"Show Subpoints\"><emph>Show Subpoints</emph></link> icon.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapse\">Amaga els subencapçalaments d'un encapçalament seleccionat. Els subencapçalaments amagats s'indiquen amb una línia negra al davant de l'encapçalament. Per mostrar els encapçalaments de nivell inferior, feu clic a la icona <link href=\"text/simpress/02/11090000.xhp\" name=\"Mostra els subpunts\"><emph>Mostra els subpunts</emph></link>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapse\">Hides the subheadings of a selected heading. Hidden subheadings are indicated by a black line in front of a heading. To show the lower level headings, click the <link href=\"text/simpress/02/11090000.xhp\"><emph>Show Subpoints</emph></link> icon.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineCollapse\">Amaga els subencapçalaments d'un encapçalament seleccionat. Els subencapçalaments amagats s'indiquen amb una línia negra al davant de l'encapçalament. Per mostrar els encapçalaments de nivell inferior, feu clic a la icona <link href=\"text/simpress/02/11090000.xhp\"><emph>Mostra els subpunts</emph></link>.</ahelp>"
#. 49fKD
#: 11080000.xhp
@@ -5147,23 +5147,23 @@ msgctxt ""
msgid "<bookmark_value>subpoints; showing</bookmark_value><bookmark_value>showing; subpoints</bookmark_value>"
msgstr "<bookmark_value>subpunts; mostrar</bookmark_value><bookmark_value>mostrar; subpunts</bookmark_value>"
-#. bYKYY
+#. YoAFA
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
"hd_id3153144\n"
"help.text"
-msgid "<link href=\"text/simpress/02/11090000.xhp\" name=\"Show Subpoints\">Show Subpoints</link>"
-msgstr "<link href=\"text/simpress/02/11090000.xhp\" name=\"Mostra els subpunts\">Mostra els subpunts</link>"
+msgid "<link href=\"text/simpress/02/11090000.xhp\">Show Subpoints</link>"
+msgstr "<link href=\"text/simpress/02/11090000.xhp\">Mostra els subpunts</link>"
-#. raCNx
+#. q7QjD
#: 11090000.xhp
msgctxt ""
"11090000.xhp\n"
"par_id3154510\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineExpand\">Displays the hidden subheadings of a selected heading. To hide the subheadings of a selected heading, click <link href=\"text/simpress/02/11080000.xhp\" name=\"Hide Subpoints\"><emph>Hide Subpoints</emph></link> icon.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineExpand\">Mostra els subencapçalaments amagats d'un encapçalament seleccionat. Per amagar els subencapçalaments d'un encapçalament seleccionat, feu clic a la icona <link href=\"text/simpress/02/11080000.xhp\" name=\"Amaga els subpunts\"><emph>Amaga els subpunts</emph></link>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:OutlineExpand\">Displays the hidden subheadings of a selected heading. To hide the subheadings of a selected heading, click <link href=\"text/simpress/02/11080000.xhp\"><emph>Hide Subpoints</emph></link> icon.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:OutlineExpand\">Mostra els subencapçalaments amagats d'un encapçalament seleccionat. Per amagar els subencapçalaments d'un encapçalament seleccionat, feu clic a la icona <link href=\"text/simpress/02/11080000.xhp\"><emph>Amaga els subpunts</emph></link>.</ahelp>"
#. a3dwN
#: 11090000.xhp
@@ -5201,13 +5201,13 @@ msgctxt ""
msgid "<bookmark_value>formatting;slides headings</bookmark_value>"
msgstr "<bookmark_value>formatació; encapçalaments de diapositives</bookmark_value>"
-#. 7GVtQ
+#. HEjQS
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
"hd_id3150012\n"
"help.text"
-msgid "<link href=\"text/simpress/02/11100000.xhp\" name=\"Formatting On/Off\">Show Formatting</link>"
+msgid "<link href=\"text/simpress/02/11100000.xhp\">Show Formatting</link>"
msgstr ""
#. x3uAQ
@@ -5255,14 +5255,14 @@ msgctxt ""
msgid "<bookmark_value>views; black and white</bookmark_value><bookmark_value>black and white view</bookmark_value>"
msgstr "<bookmark_value>visualitzacions; blanc i negre</bookmark_value><bookmark_value>visualització en blanc i negre</bookmark_value>"
-#. jMCGY
+#. KFfGE
#: 11110000.xhp
msgctxt ""
"11110000.xhp\n"
"hd_id3154011\n"
"help.text"
-msgid "<link href=\"text/simpress/02/11110000.xhp\" name=\"Black and White\">Black and White</link>"
-msgstr "<link href=\"text/simpress/02/11110000.xhp\" name=\"Blanc i negre\">Blanc i negre</link>"
+msgid "<link href=\"text/simpress/02/11110000.xhp\">Black and White</link>"
+msgstr "<link href=\"text/simpress/02/11110000.xhp\">Blanc i negre</link>"
#. E6Ny6
#: 11110000.xhp
@@ -5300,22 +5300,22 @@ msgctxt ""
msgid "Gluepoints"
msgstr ""
-#. 6MNBW
+#. taW46
#: 13010000.xhp
msgctxt ""
"13010000.xhp\n"
"hd_id3153144\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13010000.xhp\" name=\"Gluepoints\">Gluepoints</link>"
+msgid "<link href=\"text/simpress/02/13010000.xhp\">Gluepoints</link>"
msgstr ""
-#. 9qUBf
+#. YwigX
#: 13010000.xhp
msgctxt ""
"13010000.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:GlueEditMode\">Insert or modify the properties of a gluepoint. A gluepoint is a custom connection point where you can attach a <link href=\"text/simpress/02/10100000.xhp\" name=\"connector\">connector</link> line.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:GlueEditMode\">Insert or modify the properties of a gluepoint. A gluepoint is a custom connection point where you can attach a <link href=\"text/simpress/02/10100000.xhp\">connector</link> line.</ahelp>"
msgstr ""
#. cSpbQ
@@ -5354,14 +5354,14 @@ msgctxt ""
msgid "<bookmark_value>rotation mode</bookmark_value>"
msgstr "<bookmark_value>mode de gir</bookmark_value>"
-#. awStN
+#. gJGuv
#: 13020000.xhp
msgctxt ""
"13020000.xhp\n"
"hd_id3149664\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13020000.xhp\" name=\"Rotation Mode after Clicking Object\">Rotation Mode after Clicking Object</link>"
-msgstr "<link href=\"text/simpress/02/13020000.xhp\" name=\"Mode de gir després de fer clic a l'objecte\">Mode de gir després de fer clic a l'objecte</link>"
+msgid "<link href=\"text/simpress/02/13020000.xhp\">Rotation Mode after Clicking Object</link>"
+msgstr "<link href=\"text/simpress/02/13020000.xhp\">Mode de gir després de fer clic a l'objecte</link>"
#. 5ZKTc
#: 13020000.xhp
@@ -5408,14 +5408,14 @@ msgctxt ""
msgid "<bookmark_value>allowing; effects</bookmark_value><bookmark_value>effects; preview</bookmark_value>"
msgstr "<bookmark_value>permetre; efectes</bookmark_value><bookmark_value>efectes; previsualització</bookmark_value>"
-#. voBzV
+#. uEGhk
#: 13030000.xhp
msgctxt ""
"13030000.xhp\n"
"hd_id3149666\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13030000.xhp\" name=\"Allow Effects\">Allow Effects</link>"
-msgstr "<link href=\"text/simpress/02/13030000.xhp\" name=\"Permet els efectes\">Permet els efectes</link>"
+msgid "<link href=\"text/simpress/02/13030000.xhp\">Allow Effects</link>"
+msgstr "<link href=\"text/simpress/02/13030000.xhp\">Permet els efectes</link>"
#. vLdAW
#: 13030000.xhp
@@ -5462,14 +5462,14 @@ msgctxt ""
msgid "<bookmark_value>interactions; preview</bookmark_value><bookmark_value>allowing; interaction</bookmark_value>"
msgstr "<bookmark_value>interaccions; previsualització</bookmark_value><bookmark_value>permetre; interacció</bookmark_value>"
-#. ACcu9
+#. 3XuNB
#: 13040000.xhp
msgctxt ""
"13040000.xhp\n"
"hd_id3148386\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13040000.xhp\" name=\"Allow Interaction\">Allow Interaction</link>"
-msgstr "<link href=\"text/simpress/02/13040000.xhp\" name=\"Permet la interacció\">Permet la interacció</link>"
+msgid "<link href=\"text/simpress/02/13040000.xhp\">Allow Interaction</link>"
+msgstr "<link href=\"text/simpress/02/13040000.xhp\">Permet la interacció</link>"
#. 8p4Uz
#: 13040000.xhp
@@ -5516,14 +5516,14 @@ msgctxt ""
msgid "<bookmark_value>guides; show snap lines icon</bookmark_value><bookmark_value>showing; guides</bookmark_value>"
msgstr "<bookmark_value>guies; icona Mostra les línies de captura</bookmark_value><bookmark_value>mostrar; guies</bookmark_value>"
-#. ERkK4
+#. aGCe5
#: 13050000.xhp
msgctxt ""
"13050000.xhp\n"
"hd_id3152596\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13050000.xhp\" name=\"Show Snap Lines\">Show Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13050000.xhp\" name=\"Mostra les línies de captura\">Mostra les línies de captura</link>"
+msgid "<link href=\"text/simpress/02/13050000.xhp\">Show Snap Lines</link>"
+msgstr "<link href=\"text/simpress/02/13050000.xhp\">Mostra les línies de captura</link>"
#. cGkGF
#: 13050000.xhp
@@ -5570,14 +5570,14 @@ msgctxt ""
msgid "<bookmark_value>text; double-clicking to edit</bookmark_value>"
msgstr "<bookmark_value>text; doble clic per editar</bookmark_value>"
-#. B4Uii
+#. MugRC
#: 13060000.xhp
msgctxt ""
"13060000.xhp\n"
"hd_id3150010\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13060000.xhp\" name=\"Double-Click to add Text\">Double-Click to add Text</link>"
-msgstr "<link href=\"text/simpress/02/13060000.xhp\" name=\"Feu doble clic per afegir text\">Feu doble clic per afegir text</link>"
+msgid "<link href=\"text/simpress/02/13060000.xhp\">Double-Click to add Text</link>"
+msgstr "<link href=\"text/simpress/02/13060000.xhp\">Feu doble clic per afegir text</link>"
#. E4yVo
#: 13060000.xhp
@@ -5624,14 +5624,14 @@ msgctxt ""
msgid "<bookmark_value>attributes; objects with</bookmark_value> <bookmark_value>objects; with attributes</bookmark_value>"
msgstr "<bookmark_value>atributs; objectes amb</bookmark_value> <bookmark_value>objectes; amb atributs</bookmark_value>"
-#. 3eiC7
+#. UmAXH
#: 13090000.xhp
msgctxt ""
"13090000.xhp\n"
"hd_id3152596\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13090000.xhp\" name=\"Create Object with Attributes\">Modify Object with Attributes</link>"
-msgstr "<link href=\"text/simpress/02/13090000.xhp\" name=\"Crea un objecte amb atributs\">Modifica un objecte amb atributs</link>"
+msgid "<link href=\"text/simpress/02/13090000.xhp\">Modify Object with Attributes</link>"
+msgstr "<link href=\"text/simpress/02/13090000.xhp\">Modifica un objecte amb atributs</link>"
#. F9duh
#: 13090000.xhp
@@ -5669,14 +5669,14 @@ msgctxt ""
msgid "Exit all Groups"
msgstr "Ix de tots els grups"
-#. sEbQN
+#. CiTdy
#: 13100000.xhp
msgctxt ""
"13100000.xhp\n"
"hd_id3153188\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13100000.xhp\" name=\"Exit all Groups\">Exit all Groups</link>"
-msgstr "<link href=\"text/simpress/02/13100000.xhp\" name=\"Ix de tots els grups\">Ix de tots els grups</link>"
+msgid "<link href=\"text/simpress/02/13100000.xhp\">Exit all Groups</link>"
+msgstr "<link href=\"text/simpress/02/13100000.xhp\">Ix de tots els grups</link>"
#. WY3qV
#: 13100000.xhp
@@ -5714,13 +5714,13 @@ msgctxt ""
msgid "Snap to Snap Guides"
msgstr ""
-#. DQ4DB
+#. JGgsz
#: 13140000.xhp
msgctxt ""
"13140000.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Guides</link>"
+msgid "<link href=\"text/simpress/02/13140000.xhp\">Snap to Snap Guides</link>"
msgstr ""
#. GXfRk
@@ -5750,14 +5750,14 @@ msgctxt ""
msgid "Snap to Page Margins"
msgstr "Ajusta als marges de la pàgina"
-#. odYAy
+#. kZqME
#: 13150000.xhp
msgctxt ""
"13150000.xhp\n"
"hd_id3150441\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13150000.xhp\" name=\"Snap to Page Margins\">Snap to Page Margins</link>"
-msgstr "<link href=\"text/simpress/02/13150000.xhp\" name=\"Ajusta als marges de la pàgina\">Ajusta als marges de la pàgina</link>"
+msgid "<link href=\"text/simpress/02/13150000.xhp\">Snap to Page Margins</link>"
+msgstr "<link href=\"text/simpress/02/13150000.xhp\">Ajusta als marges de la pàgina</link>"
#. Mv3cD
#: 13150000.xhp
@@ -5786,14 +5786,14 @@ msgctxt ""
msgid "Snap to Object Border"
msgstr "Ajusta a la vora de l'objecte"
-#. k3Fq4
+#. Y4DBP
#: 13160000.xhp
msgctxt ""
"13160000.xhp\n"
"hd_id3125865\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13160000.xhp\" name=\"Snap to Object Border\">Snap to Object Border</link>"
-msgstr "<link href=\"text/simpress/02/13160000.xhp\" name=\"Ajusta a la vora de l'objecte\">Ajusta a la vora de l'objecte</link>"
+msgid "<link href=\"text/simpress/02/13160000.xhp\">Snap to Object Border</link>"
+msgstr "<link href=\"text/simpress/02/13160000.xhp\">Ajusta a la vora de l'objecte</link>"
#. 72nDp
#: 13160000.xhp
@@ -5822,14 +5822,14 @@ msgctxt ""
msgid "Snap to Object Points"
msgstr "Ajusta als punts de l'objecte"
-#. HWevZ
+#. pmKfX
#: 13170000.xhp
msgctxt ""
"13170000.xhp\n"
"hd_id3150870\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\">Snap to Object Points</link>"
-msgstr "<link href=\"text/simpress/02/13170000.xhp\" name=\"Ajusta als punts de l'objecte\">Ajusta als punts de l'objecte</link>"
+msgid "<link href=\"text/simpress/02/13170000.xhp\">Snap to Object Points</link>"
+msgstr "<link href=\"text/simpress/02/13170000.xhp\">Ajusta als punts de l'objecte</link>"
#. nDEAG
#: 13170000.xhp
@@ -5858,14 +5858,14 @@ msgctxt ""
msgid "Allow Quick Editing"
msgstr "Permet l'edició ràpida"
-#. jcTEP
+#. CwZ4j
#: 13180000.xhp
msgctxt ""
"13180000.xhp\n"
"hd_id3154758\n"
"help.text"
-msgid "<link href=\"text/simpress/02/13180000.xhp\" name=\"Allow Quick Editing\">Allow Quick Editing</link>"
-msgstr "<link href=\"text/simpress/02/13180000.xhp\" name=\"Permet l'edició ràpida\">Permet l'edició ràpida</link>"
+msgid "<link href=\"text/simpress/02/13180000.xhp\">Allow Quick Editing</link>"
+msgstr "<link href=\"text/simpress/02/13180000.xhp\">Permet l'edició ràpida</link>"
#. 86BGL
#: 13180000.xhp
@@ -5894,14 +5894,14 @@ msgctxt ""
msgid "Select Text Area Only"
msgstr "Selecciona només l'àrea de text"
-#. YNBFH
+#. ZutkA
#: 13190000.xhp
msgctxt ""
"13190000.xhp\n"
"hd_id3150439\n"
"help.text"
-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=\"Selecciona només l'àrea de text\">Selecciona només l'àrea de text</link>"
+msgid "<link href=\"text/simpress/02/13190000.xhp\">Select Text Area Only</link>"
+msgstr "<link href=\"text/simpress/02/13190000.xhp\">Selecciona només l'àrea de text</link>"
#. 2KA8K
#: 13190000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/simpress/04.po b/source/ca-valencia/helpcontent2/source/text/simpress/04.po
index 704626bd33f..036e3ddff57 100644
--- a/source/ca-valencia/helpcontent2/source/text/simpress/04.po
+++ b/source/ca-valencia/helpcontent2/source/text/simpress/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-10-10 13:36+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress04/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>shortcut keys; in presentations</bookmark_value><bookmark_value>presentations; shortcut keys</bookmark_value>"
msgstr "<bookmark_value>tecles de drecera; a les presentacions</bookmark_value><bookmark_value>presentacions; tecles de drecera</bookmark_value>"
-#. DRFWj
+#. b9LNb
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3150342\n"
"help.text"
-msgid "<variable id=\"impress_keys\"><link href=\"text/simpress/04/01020000.xhp\" name=\"Shortcut Keys for $[officename] Impress\">Shortcut Keys for $[officename] Impress</link></variable>"
-msgstr "<variable id=\"impress_keys\"><link href=\"text/simpress/04/01020000.xhp\" name=\"Tecles de drecera per al $[officename] Impress\">Tecles de drecera per al $[officename] Impress</link></variable>"
+msgid "<variable id=\"impress_keys\"><link href=\"text/simpress/04/01020000.xhp\">Shortcut Keys for $[officename] Impress</link></variable>"
+msgstr "<variable id=\"impress_keys\"><link href=\"text/simpress/04/01020000.xhp\">Tecles de drecera per al $[officename] Impress</link></variable>"
#. zEQBA
#: 01020000.xhp
@@ -53,14 +53,14 @@ msgctxt ""
msgid "The following is a list of shortcut keys for $[officename] Impress."
msgstr "A continuació es llisten les tecles de drecera per al $[officename] Impress."
-#. Bp3rN
+#. Zzxcg
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3154658\n"
"help.text"
-msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys\">general shortcut keys</link> in $[officename]."
-msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\" name=\"tecles de drecera generals\">tecles de drecera generals</link> del $[officename]."
+msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\">general shortcut keys</link> in $[officename]."
+msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\">tecles de drecera generals</link> del $[officename]."
#. iVdKg
#: 01020000.xhp
@@ -1484,14 +1484,14 @@ msgctxt ""
msgid "Constrains the movement of the selected object horizontally or vertically."
msgstr "Restringeix el moviment de l'objecte seleccionat de manera horitzontal o vertical."
-#. mybXe
+#. qvf62
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3154117\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ drag (with <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copy when moving\">Copy when moving</link> option active)"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ arrossegar (with <link href=\"text/shared/optionen/01070500.xhp\" name=\"Copia en moure\">Copia en moure</link> opció activa)"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ drag (with <link href=\"text/shared/optionen/01070500.xhp\">Copy when moving</link> option active)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ arrossegar (with <link href=\"text/shared/optionen/01070500.xhp\">Copia en moure</link> opció activa)"
#. Bwos6
#: 01020000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/simpress/guide.po b/source/ca-valencia/helpcontent2/source/text/simpress/guide.po
index 99671125f45..d0c097a17ce 100644
--- a/source/ca-valencia/helpcontent2/source/text/simpress/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/simpress/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>3D rotation objects; generating</bookmark_value><bookmark_value>3D objects; generating</bookmark_value><bookmark_value>3D scenes; creating</bookmark_value><bookmark_value>converting; to curves, polygons, 3D</bookmark_value><bookmark_value>extrusion objects</bookmark_value>"
msgstr "<bookmark_value>objectes de gir 3D; generació</bookmark_value><bookmark_value>objectes 3D; generació</bookmark_value><bookmark_value>escenes 3D scenes; creació</bookmark_value><bookmark_value>conversió; en corbes, polígons, 3D</bookmark_value><bookmark_value>objectes d'extrusió</bookmark_value>"
-#. mTJkR
+#. JfCYm
#: 3d_create.xhp
msgctxt ""
"3d_create.xhp\n"
"hd_id3150207\n"
"help.text"
-msgid "<variable id=\"3d_create\"><link href=\"text/simpress/guide/3d_create.xhp\" name=\"Converting 2D Objects to Curves, Polygons, and 3D Objects\">Converting 2D Objects to Curves, Polygons, and 3D Objects</link></variable>"
-msgstr "<variable id=\"3d_create\"><link href=\"text/simpress/guide/3d_create.xhp\" name=\"Conversió d'objectes 2D en corbes, polígons i objectes 3D\">Conversió d'objectes 2D en corbes, polígons i objectes 3D</link></variable>"
+msgid "<variable id=\"3d_create\"><link href=\"text/simpress/guide/3d_create.xhp\">Converting 2D Objects to Curves, Polygons, and 3D Objects</link></variable>"
+msgstr "<variable id=\"3d_create\"><link href=\"text/simpress/guide/3d_create.xhp\">Conversió d'objectes 2D en corbes, polígons i objectes 3D</link></variable>"
#. eDyDq
#: 3d_create.xhp
@@ -305,14 +305,14 @@ msgctxt ""
msgid "<bookmark_value>cross-fading; creating cross-fades</bookmark_value><bookmark_value>GIF images; animating</bookmark_value><bookmark_value>animated GIFs</bookmark_value>"
msgstr "<bookmark_value>esvaïment encreuat; creació d'esvaïments encreuats</bookmark_value><bookmark_value>imatges GIF; animació</bookmark_value><bookmark_value>GIF animats</bookmark_value>"
-#. 7iukv
+#. YpAZR
#: animated_gif_create.xhp
msgctxt ""
"animated_gif_create.xhp\n"
"hd_id3153188\n"
"help.text"
-msgid "<variable id=\"animated_gif_create\"><link href=\"text/simpress/guide/animated_gif_create.xhp\" name=\"Creating Animated GIF Images\">Creating Animated GIF Images</link></variable>"
-msgstr "<variable id=\"animated_gif_create\"><link href=\"text/simpress/guide/animated_gif_create.xhp\" name=\"Creació d'imatges GIF animades\">Creació d'imatges GIF animades</link></variable>"
+msgid "<variable id=\"animated_gif_create\"><link href=\"text/simpress/guide/animated_gif_create.xhp\">Creating Animated GIF Images</link></variable>"
+msgstr "<variable id=\"animated_gif_create\"><link href=\"text/simpress/guide/animated_gif_create.xhp\">Creació d'imatges GIF animades</link></variable>"
#. BSa6o
#: animated_gif_create.xhp
@@ -476,14 +476,14 @@ msgctxt ""
msgid "<bookmark_value>animations; saving as GIFs</bookmark_value><bookmark_value>exporting; animations to GIF format</bookmark_value>"
msgstr "<bookmark_value>animacions; desament com a GIF</bookmark_value><bookmark_value>exportació; animacions a format GIF</bookmark_value>"
-#. g3SC4
+#. QDMDk
#: animated_gif_save.xhp
msgctxt ""
"animated_gif_save.xhp\n"
"hd_id3149666\n"
"help.text"
-msgid "<variable id=\"animated_gif_save\"><link href=\"text/simpress/guide/animated_gif_save.xhp\" name=\"Exporting Animations in GIF Format\">Exporting Animations in GIF Format</link></variable>"
-msgstr "<variable id=\"animated_gif_save\"><link href=\"text/simpress/guide/animated_gif_save.xhp\" name=\"Exportació d'animacions a format GIF\">Exportació d'animacions a format GIF</link></variable>"
+msgid "<variable id=\"animated_gif_save\"><link href=\"text/simpress/guide/animated_gif_save.xhp\">Exporting Animations in GIF Format</link></variable>"
+msgstr "<variable id=\"animated_gif_save\"><link href=\"text/simpress/guide/animated_gif_save.xhp\">Exportació d'animacions a format GIF</link></variable>"
#. jsUow
#: animated_gif_save.xhp
@@ -548,14 +548,14 @@ msgctxt ""
msgid "<bookmark_value>objects; moving along paths</bookmark_value><bookmark_value>connecting; paths and objects</bookmark_value><bookmark_value>paths; moving objects along</bookmark_value><bookmark_value>motion paths</bookmark_value><bookmark_value>deleting;animation effects</bookmark_value><bookmark_value>effects;applying to/removing from objects</bookmark_value><bookmark_value>animation effects</bookmark_value><bookmark_value>animations;editing</bookmark_value><bookmark_value>custom animation</bookmark_value>"
msgstr "<bookmark_value>objectes; moviment al llarg de camins</bookmark_value><bookmark_value>connexió; camins i objectes</bookmark_value><bookmark_value>camins; moviment d'objectes al llarg de</bookmark_value><bookmark_value>camins de moviment</bookmark_value><bookmark_value>supressió;efectes d'animació</bookmark_value><bookmark_value>efectes;aplicació/eliminació des d'objectes</bookmark_value><bookmark_value>efectes d'animació</bookmark_value><bookmark_value>animacions;edició</bookmark_value><bookmark_value>animació personalitzada</bookmark_value>"
-#. sEVr9
+#. D6FwL
#: animated_objects.xhp
msgctxt ""
"animated_objects.xhp\n"
"hd_id3150251\n"
"help.text"
-msgid "<variable id=\"animated_objects\"><link href=\"text/simpress/guide/animated_objects.xhp\" name=\"Animating Objects in Slides\">Animating Objects in Presentation Slides</link></variable>"
-msgstr "<variable id=\"animated_objects\"><link href=\"text/simpress/guide/animated_objects.xhp\" name=\"Animació d'objectes a les diapositives\">Animació d'objectes a les diapositives d'una presentació</link></variable>"
+msgid "<variable id=\"animated_objects\"><link href=\"text/simpress/guide/animated_objects.xhp\">Animating Objects in Presentation Slides</link></variable>"
+msgstr "<variable id=\"animated_objects\"><link href=\"text/simpress/guide/animated_objects.xhp\">Animació d'objectes a les diapositives d'una presentació</link></variable>"
#. BcnXs
#: animated_objects.xhp
@@ -728,14 +728,14 @@ msgctxt ""
msgid "<bookmark_value>cross-fading; slides</bookmark_value><bookmark_value>slide transitions; applying effects</bookmark_value><bookmark_value>animated slide transitions</bookmark_value><bookmark_value>transition effects</bookmark_value><bookmark_value>deleting; slide transition effects</bookmark_value><bookmark_value>effects;animated slide transitions</bookmark_value>"
msgstr "<bookmark_value>esvaïment encreuat; diapositives</bookmark_value><bookmark_value>transicions entre diapositives; aplicació d'efectes</bookmark_value><bookmark_value>transicions entre diapositives animades</bookmark_value><bookmark_value>efectes de transició</bookmark_value><bookmark_value>supressió; efectes de transició a les diapositives</bookmark_value><bookmark_value>efectes;transicions animades entre diapositives</bookmark_value>"
-#. qDMqN
+#. D6wvH
#: animated_slidechange.xhp
msgctxt ""
"animated_slidechange.xhp\n"
"hd_id3153820\n"
"help.text"
-msgid "<variable id=\"animated_slidechange\"><link href=\"text/simpress/guide/animated_slidechange.xhp\" name=\"Animating Slide Transitions\">Animating Slide Transitions</link></variable>"
-msgstr "<variable id=\"animated_slidechange\"><link href=\"text/simpress/guide/animated_slidechange.xhp\" name=\"Animació de transicions entre diapositives\">Animació de transicions entre diapositives</link></variable>"
+msgid "<variable id=\"animated_slidechange\"><link href=\"text/simpress/guide/animated_slidechange.xhp\">Animating Slide Transitions</link></variable>"
+msgstr "<variable id=\"animated_slidechange\"><link href=\"text/simpress/guide/animated_slidechange.xhp\">Animació de transicions entre diapositives</link></variable>"
#. EGBhe
#: animated_slidechange.xhp
@@ -881,14 +881,14 @@ msgctxt ""
msgid "Choose <emph>No Transition </emph>in the listbox on the <emph>Tasks</emph> pane."
msgstr "Trieu <emph>Sense transició</emph> en el quadre de llista de la subfinestra <emph>Tasques</emph>."
-#. PAcZs
+#. AhBrM
#: animated_slidechange.xhp
msgctxt ""
"animated_slidechange.xhp\n"
"par_id3149300\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06040000.xhp\" name=\"Slide Transition\">Slide Transition</link>"
-msgstr "<link href=\"text/simpress/01/06040000.xhp\" name=\"Transició entre diapositives\">Transició entre diapositives</link>"
+msgid "<link href=\"text/simpress/01/06040000.xhp\">Slide Transition</link>"
+msgstr "<link href=\"text/simpress/01/06040000.xhp\">Transició entre diapositives</link>"
#. FSjf8
#: arrange_slides.xhp
@@ -908,14 +908,14 @@ msgctxt ""
msgid "<bookmark_value>slides; arranging</bookmark_value><bookmark_value>presentations; arranging slides</bookmark_value><bookmark_value>changing;order of slides</bookmark_value><bookmark_value>arranging;slides</bookmark_value><bookmark_value>ordering;slides</bookmark_value>"
msgstr "<bookmark_value>diapositives; organització</bookmark_value><bookmark_value>presentacions; organització de diapositives</bookmark_value><bookmark_value>canvi; orde de les diapositives</bookmark_value><bookmark_value>organització; diapositives</bookmark_value><bookmark_value>ordenació; diapositives</bookmark_value>"
-#. vUiGm
+#. 3DuhP
#: arrange_slides.xhp
msgctxt ""
"arrange_slides.xhp\n"
"hd_id3149499\n"
"help.text"
-msgid "<variable id=\"arrange_slides\"><link href=\"text/simpress/guide/arrange_slides.xhp\" name=\"Changing the Slide Order\">Changing the Slide Order</link></variable>"
-msgstr "<variable id=\"arrange_slides\"><link href=\"text/simpress/guide/arrange_slides.xhp\" name=\"Canvi de l'orde de les diapositives\">Canvi de l'orde de les diapositives</link></variable>"
+msgid "<variable id=\"arrange_slides\"><link href=\"text/simpress/guide/arrange_slides.xhp\">Changing the Slide Order</link></variable>"
+msgstr "<variable id=\"arrange_slides\"><link href=\"text/simpress/guide/arrange_slides.xhp\">Canvi de l'orde de les diapositives</link></variable>"
#. Ccxt3
#: arrange_slides.xhp
@@ -944,13 +944,13 @@ msgctxt ""
msgid "Choose <emph>View - Outline</emph>, select a slide, and then drag the slide to another location."
msgstr "Trieu <emph>Visualitza - Esquema</emph>, seleccioneu una diapositiva i després arrossegueu-la a una altra ubicació."
-#. 9vPAG
+#. NCZ8u
#: arrange_slides.xhp
msgctxt ""
"arrange_slides.xhp\n"
"par_id3150391\n"
"help.text"
-msgid "Choose <emph>View - Normal</emph> or <emph>Notes</emph>, select the slide preview on the <link href=\"text/simpress/01/slidesorter.xhp\" name=\"slidesorter\"><emph>Slides Pane</emph></link>, and then drag the slide preview to another location."
+msgid "Choose <emph>View - Normal</emph> or <emph>Notes</emph>, select the slide preview on the <link href=\"text/simpress/01/slidesorter.xhp\"><emph>Slides Pane</emph></link>, and then drag the slide preview to another location."
msgstr ""
#. YoFVp
@@ -980,14 +980,14 @@ msgctxt ""
msgid "<bookmark_value>backgrounds; changing</bookmark_value><bookmark_value>master slides; changing backgrounds</bookmark_value><bookmark_value>master pages; changing backgrounds</bookmark_value><bookmark_value>slides;changing backgrounds</bookmark_value><bookmark_value>pages;changing backgrounds</bookmark_value>"
msgstr "<bookmark_value>fons; canvi</bookmark_value><bookmark_value>diapositives mestres; canvi del fons</bookmark_value><bookmark_value>pàgines mestres; canvi dels fons</bookmark_value><bookmark_value>diapositives;canvi dels fons</bookmark_value><bookmark_value>pàgines;canvi dels fons</bookmark_value>"
-#. GuKhy
+#. miixG
#: background.xhp
msgctxt ""
"background.xhp\n"
"hd_id3150199\n"
"help.text"
-msgid "<variable id=\"background\"> <link href=\"text/simpress/guide/background.xhp\" name=\"Changing the Slide Background Fill\">Changing the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Slide</caseinline><defaultinline>Page</defaultinline></switchinline> Background Fill</link> </variable>"
-msgstr "<variable id=\"background\"><link href=\"text/simpress/guide/background.xhp\" name=\"Canvi de l'emplenament de fons de la diapositiva\">Canvi de l'emplenament de fons de la <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">diapositiva</caseinline><defaultinline>pàgina</defaultinline></switchinline></link></variable>"
+msgid "<variable id=\"background\"> <link href=\"text/simpress/guide/background.xhp\">Changing the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Slide</caseinline><defaultinline>Page</defaultinline></switchinline> Background Fill</link> </variable>"
+msgstr "<variable id=\"background\"><link href=\"text/simpress/guide/background.xhp\">Canvi de l'emplenament de fons de la <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">diapositiva</caseinline><defaultinline>pàgina</defaultinline></switchinline></link></variable>"
#. DL4oF
#: background.xhp
@@ -1277,14 +1277,14 @@ msgctxt ""
msgid "<bookmark_value>zooming;keyboard</bookmark_value><bookmark_value>keyboard; zooming</bookmark_value>"
msgstr "<bookmark_value>canvi d'escala; teclat</bookmark_value><bookmark_value>teclat; canvi d'escala</bookmark_value>"
-#. fA6FH
+#. oEGgh
#: change_scale.xhp
msgctxt ""
"change_scale.xhp\n"
"hd_id3149018\n"
"help.text"
-msgid "<variable id=\"change_scale\"><link href=\"text/simpress/guide/change_scale.xhp\" name=\"Zooming With the Keypad\">Zooming With the Keypad</link></variable>"
-msgstr "<variable id=\"change_scale\"><link href=\"text/simpress/guide/change_scale.xhp\" name=\"Canvi d'escala amb el teclat numèric\">Canvi d'escala amb el teclat numèric</link></variable>"
+msgid "<variable id=\"change_scale\"><link href=\"text/simpress/guide/change_scale.xhp\">Zooming With the Keypad</link></variable>"
+msgstr "<variable id=\"change_scale\"><link href=\"text/simpress/guide/change_scale.xhp\">Canvi d'escala amb el teclat numèric</link></variable>"
#. Cox4d
#: change_scale.xhp
@@ -1322,14 +1322,14 @@ msgctxt ""
msgid "If you are using a mouse with a scroll wheel, you can hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> and turn the wheel to change the zoom factor in all main modules of %PRODUCTNAME."
msgstr ""
-#. 3DGwA
+#. zs9ZG
#: change_scale.xhp
msgctxt ""
"change_scale.xhp\n"
"par_id3145116\n"
"help.text"
-msgid "<link href=\"text/simpress/04/01020000.xhp\" name=\"Shortcut keys for presentations\">Shortcut keys for presentations</link>"
-msgstr "<link href=\"text/simpress/04/01020000.xhp\" name=\"Tecles de drecera per a les presentacions\">Tecles de drecera per a les presentacions</link>"
+msgid "<link href=\"text/simpress/04/01020000.xhp\">Shortcut keys for presentations</link>"
+msgstr "<link href=\"text/simpress/04/01020000.xhp\">Tecles de drecera per a les presentacions</link>"
#. CtZhN
#: footer.xhp
@@ -1349,13 +1349,13 @@ msgctxt ""
msgid "<bookmark_value>footers;master slides</bookmark_value><bookmark_value>master slides; headers and footers</bookmark_value><bookmark_value>headers and footers; master slides</bookmark_value><bookmark_value>inserting;headers/footers in all slides</bookmark_value><bookmark_value>slide numbers on all slides</bookmark_value><bookmark_value>page numbers on all slides</bookmark_value><bookmark_value>date on all slides</bookmark_value><bookmark_value>time and date on all slides</bookmark_value>"
msgstr ""
-#. CP4C8
+#. QgdP6
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"hd_id3153191\n"
"help.text"
-msgid "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Adding a Header or a Footer to All Slides</link></variable>"
+msgid "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\">Adding a Header or a Footer to All Slides</link></variable>"
msgstr ""
#. fRX2a
@@ -1601,14 +1601,14 @@ msgctxt ""
msgid "You can also add fields, such as the date or page number, to a header or footer by choosing <emph>Insert - Field</emph>."
msgstr "També podeu afegir camps com ara la data o el número de pàgina a una capçalera o a un peu de pàgina si trieu <emph>Insereix - Camps</emph>."
-#. YeMBp
+#. HGjys
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id3155848\n"
"help.text"
-msgid "<link href=\"text/simpress/01/04990000.xhp\" name=\"Insert Fields\">Insert Fields</link>"
-msgstr "<link href=\"text/simpress/01/04990000.xhp\" name=\"Insereix camps\">Insereix camps</link>"
+msgid "<link href=\"text/simpress/01/04990000.xhp\">Insert Fields</link>"
+msgstr "<link href=\"text/simpress/01/04990000.xhp\">Insereix camps</link>"
#. 3GEWb
#: gluepoints.xhp
@@ -1763,14 +1763,14 @@ msgctxt ""
msgid "<bookmark_value>exporting;presentations to HTML</bookmark_value><bookmark_value>saving;as HTML</bookmark_value><bookmark_value>presentations; exporting to HTML</bookmark_value><bookmark_value>HTML; exporting from presentations</bookmark_value>"
msgstr "<bookmark_value>exportació; presentacions a HTML</bookmark_value><bookmark_value>desament; com a HTML</bookmark_value><bookmark_value>presentacions; exportació a HTML</bookmark_value><bookmark_value>HTML; exportació des de presentacions</bookmark_value>"
-#. Zc7TE
+#. N9XsJ
#: html_export.xhp
msgctxt ""
"html_export.xhp\n"
"hd_id3155067\n"
"help.text"
-msgid "<variable id=\"html_export\"><link href=\"text/simpress/guide/html_export.xhp\" name=\"Saving a Presentation in HTML Format\">Saving a Presentation in HTML Format</link></variable>"
-msgstr "<variable id=\"html_export\"><link href=\"text/simpress/guide/html_export.xhp\" name=\"Desament d'una presentació en format HTML\">Desament d'una presentació en format HTML</link></variable>"
+msgid "<variable id=\"html_export\"><link href=\"text/simpress/guide/html_export.xhp\">Saving a Presentation in HTML Format</link></variable>"
+msgstr "<variable id=\"html_export\"><link href=\"text/simpress/guide/html_export.xhp\">Desament d'una presentació en format HTML</link></variable>"
#. ME4q8
#: html_export.xhp
@@ -1817,23 +1817,23 @@ msgctxt ""
msgid "Follow the instructions in the <emph>HTML Export</emph> Wizard."
msgstr "Seguiu les instruccions de l'Auxiliar d'<emph>exportació HTML</emph>."
-#. Ax2eF
+#. b8PhR
#: html_export.xhp
msgctxt ""
"html_export.xhp\n"
"par_id3151391\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01110000.xhp\" name=\"HTML Export AutoPilot\">HTML Export Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01110000.xhp\" name=\"Auxiliar d'exportació a HTML\">Auxiliar d'exportació a HTML</link>"
+msgid "<link href=\"text/shared/autopi/01110000.xhp\">HTML Export Wizard</link>"
+msgstr "<link href=\"text/shared/autopi/01110000.xhp\">Auxiliar d'exportació a HTML</link>"
-#. GFiGn
+#. 9QEAV
#: html_export.xhp
msgctxt ""
"html_export.xhp\n"
"par_id3150394\n"
"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"File - Export\">File - Export</link>"
-msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Fitxer ▸ Exporta\">Fitxer ▸ Exporta</link>"
+msgid "<link href=\"text/simpress/01/01170000.xhp\">File - Export</link>"
+msgstr "<link href=\"text/simpress/01/01170000.xhp\">Fitxer ▸ Exporta</link>"
#. nLHAE
#: html_import.xhp
@@ -1853,14 +1853,14 @@ msgctxt ""
msgid "<bookmark_value>importing; presentations with HTML</bookmark_value><bookmark_value>presentations; importing HTML</bookmark_value><bookmark_value>HTML; importing into presentations</bookmark_value><bookmark_value>text documents;inserting in slides</bookmark_value><bookmark_value>inserting; text in presentations</bookmark_value>"
msgstr "<bookmark_value>importació; presentacions amb HTML</bookmark_value><bookmark_value>presentacions; importació d'HTML</bookmark_value><bookmark_value>HTML; importació a presentacions</bookmark_value><bookmark_value>documents de text; inserció en diapositives</bookmark_value><bookmark_value>inserció; text en presentacions</bookmark_value>"
-#. E9gEY
+#. YdEfu
#: html_import.xhp
msgctxt ""
"html_import.xhp\n"
"hd_id3146121\n"
"help.text"
-msgid "<variable id=\"html_import\"><link href=\"text/simpress/guide/html_import.xhp\" name=\"Importing HTML Pages Into Presentations \">Importing HTML Pages Into Presentations </link></variable>"
-msgstr "<variable id=\"html_import\"><link href=\"text/simpress/guide/html_import.xhp\" name=\"Importació de pàgines HTML a presentacions \">Importació de pàgines HTML a presentacions</link></variable>"
+msgid "<variable id=\"html_import\"><link href=\"text/simpress/guide/html_import.xhp\">Importing HTML Pages Into Presentations </link></variable>"
+msgstr "<variable id=\"html_import\"><link href=\"text/simpress/guide/html_import.xhp\">Importació de pàgines HTML a presentacions</link></variable>"
#. LDkby
#: html_import.xhp
@@ -2438,31 +2438,31 @@ msgctxt ""
msgid "<image src=\"media/helpimg/impress_remote02.png\" id=\"img_id551666340509100\"><alt id=\"alt_id921666340509101\">Alternate mode: all slide thumbnails for direct selection or jumping. The current slide has a red selection cursor</alt></image>"
msgstr ""
-#. jAx2G
+#. EvAst
#: impress_remote.xhp
msgctxt ""
"impress_remote.xhp\n"
"par_id180820171844231820\n"
"help.text"
-msgid "<link href=\"https://play.google.com/store/apps/details?id=org.libreoffice.impressremote\" name=\"Impress Remote in Android Play Store\">Impress Remote in Google Play Store</link>"
+msgid "<link href=\"https://play.google.com/store/apps/details?id=org.libreoffice.impressremote\">Impress Remote in Google Play Store</link>"
msgstr ""
-#. JVxbD
+#. XhGzC
#: impress_remote.xhp
msgctxt ""
"impress_remote.xhp\n"
"par_id180820171844231040\n"
"help.text"
-msgid "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">Impress Remote in Apple iTunes Store</link>"
+msgid "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\">Impress Remote in Apple iTunes Store</link>"
msgstr ""
-#. hbGRR
+#. DFBh5
#: impress_remote.xhp
msgctxt ""
"impress_remote.xhp\n"
"par_id631512838846263\n"
"help.text"
-msgid "<link href=\"text/simpress/guide/presenter_console.xhp\" name=\"The Presenter Console\">The Presenter Console</link>"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\">The Presenter Console</link>"
msgstr ""
#. ztdND
@@ -2483,14 +2483,14 @@ msgctxt ""
msgid "<bookmark_value>slide shows; custom</bookmark_value><bookmark_value>custom slide shows</bookmark_value><bookmark_value>starting; always with the current slide</bookmark_value><bookmark_value>starting;custom slide shows</bookmark_value><bookmark_value>hiding;slides</bookmark_value><bookmark_value>showing;hidden slides</bookmark_value><bookmark_value>hidden pages;showing</bookmark_value>"
msgstr "<bookmark_value>presentacions de diapositives; personalització</bookmark_value><bookmark_value>presentacions personalitzades de diapositives</bookmark_value><bookmark_value>inici; sempre amb la diapositiva actual</bookmark_value><bookmark_value>inici; presentacions personalitzades de diapositives</bookmark_value><bookmark_value>amagar; diapositives</bookmark_value><bookmark_value>mostra; diapositives amagades</bookmark_value><bookmark_value>pàgines amagades; mostra</bookmark_value>"
-#. Gr6pG
+#. bsShz
#: individual.xhp
msgctxt ""
"individual.xhp\n"
"hd_id3146119\n"
"help.text"
-msgid "<variable id=\"individual\"><link href=\"text/simpress/guide/individual.xhp\" name=\"Creating a Custom Slide Show\">Creating a Custom Slide Show</link></variable>"
-msgstr "<variable id=\"individual\"><link href=\"text/simpress/guide/individual.xhp\" name=\"Creació d'una presentació de diapositives personalitzada\">Creació d'una presentació de diapositives personalitzada</link></variable>"
+msgid "<variable id=\"individual\"><link href=\"text/simpress/guide/individual.xhp\">Creating a Custom Slide Show</link></variable>"
+msgstr "<variable id=\"individual\"><link href=\"text/simpress/guide/individual.xhp\">Creació d'una presentació de diapositives personalitzada</link></variable>"
#. DTdXP
#: individual.xhp
@@ -2726,23 +2726,23 @@ msgctxt ""
msgid "<bookmark_value>accessibility; $[officename] Impress</bookmark_value>"
msgstr "<bookmark_value>accessibilitat; $[officename] Impress</bookmark_value>"
-#. NVRr5
+#. 26AXJ
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"hd_id3154702\n"
"help.text"
-msgid "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\" name=\"Using Shortcut Keys in $[officename] Impress\">Using Shortcut Keys in $[officename] Impress</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\" name=\"Utilització de tecles de drecera al $[officename] Impress\">Utilització de tecles de drecera al $[officename] Impress</link></variable>"
+msgid "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\">Using Shortcut Keys in $[officename] Impress</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\">Utilització de tecles de drecera al $[officename] Impress</link></variable>"
-#. 8sLBi
+#. jGPbi
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3148610\n"
"help.text"
-msgid "You can use the keyboard to access $[officename] Impress commands as well as to navigate through the workspace. $[officename] Impress uses the same shortcut keys as $[officename] Draw to create <link href=\"text/sdraw/guide/keyboard.xhp\" name=\"drawing objects\">drawing objects</link>."
-msgstr "Podeu utilitzar el teclat per accedir a les ordes del $[officename] Impress i navegar per l'espai de treball. El $[officename] Impress utilitza les mateixes tecles de drecera que el $[officename] Draw per crear <link href=\"text/sdraw/guide/keyboard.xhp\" name=\"objectes de dibuix\">objectes de dibuix</link>."
+msgid "You can use the keyboard to access $[officename] Impress commands as well as to navigate through the workspace. $[officename] Impress uses the same shortcut keys as $[officename] Draw to create <link href=\"text/sdraw/guide/keyboard.xhp\">drawing objects</link>."
+msgstr "Podeu utilitzar el teclat per accedir a les ordes del $[officename] Impress i navegar per l'espai de treball. El $[officename] Impress utilitza les mateixes tecles de drecera que el $[officename] Draw per crear <link href=\"text/sdraw/guide/keyboard.xhp\">objectes de dibuix</link>."
#. EEyi5
#: keyboard.xhp
@@ -3014,14 +3014,14 @@ msgctxt ""
msgid "<bookmark_value>line styles;loading</bookmark_value> <bookmark_value>lines;about line ends</bookmark_value> <bookmark_value>arrows;loading arrow styles</bookmark_value> <bookmark_value>styles;arrow and line styles</bookmark_value> <bookmark_value>loading;arrow and line styles</bookmark_value>"
msgstr "<bookmark_value>estils de línia;càrrega</bookmark_value><bookmark_value>línies;finals de línia</bookmark_value><bookmark_value>fletxes;càrrega d'estils de fletxa</bookmark_value><bookmark_value>estils;estils de fletxa i de línia</bookmark_value><bookmark_value>càrrega;estils de fletxa i de línia</bookmark_value>"
-#. sZGKB
+#. GkUZE
#: line_arrow_styles.xhp
msgctxt ""
"line_arrow_styles.xhp\n"
"hd_id3145253\n"
"help.text"
-msgid "<variable id=\"line_arrow_styles\"><link href=\"text/simpress/guide/line_arrow_styles.xhp\" name=\"Loading Line and Arrow Styles\">Loading Line and Arrow Styles</link></variable>"
-msgstr "<variable id=\"line_arrow_styles\"><link href=\"text/simpress/guide/line_arrow_styles.xhp\" name=\"Càrrega d'estils de línia i de fletxa\">Càrrega d'estils de línia i de fletxa</link></variable>"
+msgid "<variable id=\"line_arrow_styles\"><link href=\"text/simpress/guide/line_arrow_styles.xhp\">Loading Line and Arrow Styles</link></variable>"
+msgstr "<variable id=\"line_arrow_styles\"><link href=\"text/simpress/guide/line_arrow_styles.xhp\">Càrrega d'estils de línia i de fletxa</link></variable>"
#. CPjCD
#: line_arrow_styles.xhp
@@ -3122,14 +3122,14 @@ msgctxt ""
msgid "To save an arrow styles file, click the <emph>Save Arrow Styles</emph> button, enter a filename, and then click <emph>OK</emph>."
msgstr "Per guardar un fitxer d'estils de línia, feu clic al botó <emph>Guarda els estils de línia</emph>, introduïu un nom de fitxer i feu clic a <emph>D'acord</emph>."
-#. s8mui
+#. VfndJ
#: line_arrow_styles.xhp
msgctxt ""
"line_arrow_styles.xhp\n"
"par_id3145822\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Format - Line\">Format - Line</link>"
-msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Format - Línia\">Format - Línia</link>"
+msgid "<link href=\"text/shared/01/05200000.xhp\">Format - Line</link>"
+msgstr "<link href=\"text/shared/01/05200000.xhp\">Format - Línia</link>"
#. 9RAZf
#: line_draw.xhp
@@ -3149,14 +3149,14 @@ msgctxt ""
msgid "<bookmark_value>lines; drawing</bookmark_value><bookmark_value>curves; drawing</bookmark_value><bookmark_value>control points definition</bookmark_value><bookmark_value>corner points</bookmark_value><bookmark_value>drawing;lines</bookmark_value>"
msgstr "<bookmark_value>línies; dibuix</bookmark_value><bookmark_value>corbes; dibuix</bookmark_value><bookmark_value>definició de punts de control</bookmark_value><bookmark_value>punts de cantonades</bookmark_value><bookmark_value>dibuix; línies</bookmark_value>"
-#. PGDME
+#. wA9iM
#: line_draw.xhp
msgctxt ""
"line_draw.xhp\n"
"hd_id3149377\n"
"help.text"
-msgid "<variable id=\"line_draw\"><link href=\"text/simpress/guide/line_draw.xhp\" name=\"Drawing Curves\">Drawing Curves</link></variable>"
-msgstr "<variable id=\"line_draw\"><link href=\"text/simpress/guide/line_draw.xhp\" name=\"Dibuix de corbes\">Dibuix de corbes</link></variable>"
+msgid "<variable id=\"line_draw\"><link href=\"text/simpress/guide/line_draw.xhp\">Drawing Curves</link></variable>"
+msgstr "<variable id=\"line_draw\"><link href=\"text/simpress/guide/line_draw.xhp\">Dibuix de corbes</link></variable>"
#. s9kgj
#: line_draw.xhp
@@ -3374,14 +3374,14 @@ msgctxt ""
msgid "<bookmark_value>curves; editing</bookmark_value><bookmark_value>editing; curves</bookmark_value><bookmark_value>splitting;curves</bookmark_value><bookmark_value>closing;shapes</bookmark_value><bookmark_value>deleting;points</bookmark_value><bookmark_value>converting;points</bookmark_value><bookmark_value>points;adding/converting/deleting</bookmark_value>"
msgstr "<bookmark_value>corbes; edició</bookmark_value><bookmark_value>edició; corbes</bookmark_value><bookmark_value>divisió;corbes</bookmark_value><bookmark_value>tancament;formes</bookmark_value><bookmark_value>supressió;punts</bookmark_value><bookmark_value>conversió;punts</bookmark_value><bookmark_value>punts;addició/conversió/supressió</bookmark_value>"
-#. EyZHn
+#. XqBqw
#: line_edit.xhp
msgctxt ""
"line_edit.xhp\n"
"hd_id3150441\n"
"help.text"
-msgid "<variable id=\"line_edit\"><link href=\"text/simpress/guide/line_edit.xhp\" name=\"Editing Curves\">Editing Curves</link></variable>"
-msgstr "<variable id=\"line_edit\"><link href=\"text/simpress/guide/line_edit.xhp\" name=\"Edició de corbes\">Edició de corbes</link></variable>"
+msgid "<variable id=\"line_edit\"><link href=\"text/simpress/guide/line_edit.xhp\">Editing Curves</link></variable>"
+msgstr "<variable id=\"line_edit\"><link href=\"text/simpress/guide/line_edit.xhp\">Edició de corbes</link></variable>"
#. g83WF
#: line_edit.xhp
@@ -3662,14 +3662,14 @@ msgctxt ""
msgid "On the <emph>Edit Points</emph> Bar, click the<emph> Delete Points</emph> icon."
msgstr "A la barra <emph>Edita els punts</emph>, feu clic a la icona <emph>Suprimeix els punts</emph>."
-#. d49P5
+#. tG2eZ
#: line_edit.xhp
msgctxt ""
"line_edit.xhp\n"
"par_id3151174\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=\"Barra Edita els punts\">Barra Edita els punts</link>"
+msgid "<link href=\"text/shared/main0227.xhp\">Edit Points bar</link>"
+msgstr "<link href=\"text/shared/main0227.xhp\">Barra Edita els punts</link>"
#. aRn6x
#: main.xhp
@@ -3689,14 +3689,14 @@ msgctxt ""
msgid "<bookmark_value>$[officename] Impress instructions</bookmark_value><bookmark_value>instructions; $[officename] Impress</bookmark_value>"
msgstr "<bookmark_value>instruccions del $[officename] Impress</bookmark_value><bookmark_value>instruccions; $[officename] Impress</bookmark_value>"
-#. vGyM9
+#. B8zCW
#: main.xhp
msgctxt ""
"main.xhp\n"
"hd_id3156386\n"
"help.text"
-msgid "<variable id=\"main\"><link href=\"text/simpress/guide/main.xhp\" name=\"Instructions for Using $[officename] Impress\">Instructions for Using $[officename] Impress</link></variable>"
-msgstr "<variable id=\"main\"><link href=\"text/simpress/guide/main.xhp\" name=\"Instruccions per utilitzar el $[officename] Impress\">Instruccions per utilitzar el $[officename] Impress</link></variable>"
+msgid "<variable id=\"main\"><link href=\"text/simpress/guide/main.xhp\">Instructions for Using $[officename] Impress</link></variable>"
+msgstr "<variable id=\"main\"><link href=\"text/simpress/guide/main.xhp\">Instruccions per utilitzar el $[officename] Impress</link></variable>"
#. fgMfa
#: main.xhp
@@ -3752,13 +3752,13 @@ msgctxt ""
msgid "<bookmark_value>slide designs</bookmark_value><bookmark_value>page designs</bookmark_value><bookmark_value>master slides; designing</bookmark_value><bookmark_value>master pages; designing</bookmark_value><bookmark_value>backgrounds; slides</bookmark_value><bookmark_value>backgrounds; pages</bookmark_value><bookmark_value>slides; backgrounds</bookmark_value><bookmark_value>pages; backgrounds</bookmark_value><bookmark_value>master pages</bookmark_value><bookmark_value>master slides</bookmark_value>"
msgstr ""
-#. 2uSS4
+#. kSEiZ
#: masterpage.xhp
msgctxt ""
"masterpage.xhp\n"
"hd_id3152596\n"
"help.text"
-msgid "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\" name=\"Changing and Adding a Master Slide\">Changing and Adding a Master <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Slide</caseinline><defaultinline>Page</defaultinline></switchinline></link></variable>"
+msgid "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\">Changing and Adding a Master <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Slide</caseinline><defaultinline>Page</defaultinline></switchinline></link></variable>"
msgstr ""
#. CXi6w
@@ -3932,14 +3932,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to apply a slide design to all selected slides. Right-click for a context menu.</ahelp>"
msgstr ""
-#. ugiSc
+#. AWk7i
#: masterpage.xhp
msgctxt ""
"masterpage.xhp\n"
"par_id3149941\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles\">Styles</link>"
-msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Estils\">Estils</link>"
+msgid "<link href=\"text/simpress/01/05100000.xhp\">Styles</link>"
+msgstr "<link href=\"text/simpress/01/05100000.xhp\">Estils</link>"
#. 6q9Um
#: move_object.xhp
@@ -3959,14 +3959,14 @@ msgctxt ""
msgid "<bookmark_value>objects;moving in slides</bookmark_value><bookmark_value>moving;objects in slides</bookmark_value>"
msgstr "<bookmark_value>objectes; moviment en diapositives</bookmark_value><bookmark_value>moviment; objectes en diapositives</bookmark_value>"
-#. RyqkC
+#. cFCyN
#: move_object.xhp
msgctxt ""
"move_object.xhp\n"
"hd_id3146121\n"
"help.text"
-msgid "<variable id=\"move_object\"><link href=\"text/simpress/guide/move_object.xhp\" name=\"Moving Objects\">Moving Objects</link></variable>"
-msgstr "<variable id=\"move_object\"><link href=\"text/simpress/guide/move_object.xhp\" name=\"Moviment d'objectes\">Moviment d'objectes</link></variable>"
+msgid "<variable id=\"move_object\"><link href=\"text/simpress/guide/move_object.xhp\">Moving Objects</link></variable>"
+msgstr "<variable id=\"move_object\"><link href=\"text/simpress/guide/move_object.xhp\">Moviment d'objectes</link></variable>"
#. cEEjA
#: move_object.xhp
@@ -4004,14 +4004,14 @@ msgctxt ""
msgid "<bookmark_value>connectors; using</bookmark_value><bookmark_value>flowcharts</bookmark_value><bookmark_value>organization charts</bookmark_value><bookmark_value>hot spots in flowcharts</bookmark_value><bookmark_value>interactions; hot spots</bookmark_value>"
msgstr "<bookmark_value>connectors; utilització</bookmark_value><bookmark_value>diagrames de flux</bookmark_value><bookmark_value>organigrames</bookmark_value><bookmark_value>zones sensibles en diagrames de flux</bookmark_value><bookmark_value>interaccions; zones sensibles</bookmark_value>"
-#. DnfSF
+#. FEmxW
#: orgchart.xhp
msgctxt ""
"orgchart.xhp\n"
"hd_id3150439\n"
"help.text"
-msgid "<variable id=\"orgchart\"><link href=\"text/simpress/guide/orgchart.xhp\" name=\"Creating a Flowchart\">Creating a Flowchart</link></variable>"
-msgstr "<variable id=\"orgchart\"><link href=\"text/simpress/guide/orgchart.xhp\" name=\"Creació d'un diagrama de flux\">Creació d'un diagrama de flux</link></variable>"
+msgid "<variable id=\"orgchart\"><link href=\"text/simpress/guide/orgchart.xhp\">Creating a Flowchart</link></variable>"
+msgstr "<variable id=\"orgchart\"><link href=\"text/simpress/guide/orgchart.xhp\">Creació d'un diagrama de flux</link></variable>"
#. VCPRV
#: orgchart.xhp
@@ -4166,14 +4166,14 @@ msgctxt ""
msgid "To add some hot spots that call other slides:"
msgstr "Per afegir zones sensibles que cridin altres diapositives:"
-#. GTPfs
+#. 4xPPs
#: orgchart.xhp
msgctxt ""
"orgchart.xhp\n"
"par_id3145300\n"
"help.text"
-msgid "Assign <link href=\"text/simpress/01/06070000.xhp\" name=\"interactions\">interactions</link> to some objects on your slide."
-msgstr "Assigneu <link href=\"text/simpress/01/06070000.xhp\" name=\"interaccions\">interaccions</link> a alguns objectes de la diapositiva."
+msgid "Assign <link href=\"text/simpress/01/06070000.xhp\">interactions</link> to some objects on your slide."
+msgstr "Assigneu <link href=\"text/simpress/01/06070000.xhp\">interaccions</link> a alguns objectes de la diapositiva."
#. XGWCc
#: orgchart.xhp
@@ -4193,22 +4193,22 @@ msgctxt ""
msgid "Select an interaction in the dialog. For example, select to go to the next slide when the user clicks the object."
msgstr "Seleccioneu una interacció al diàleg. Per exemple, seleccioneu d'anar a la diapositiva següent quan l'usuari faça clic a l'objecte."
-#. MrzVi
+#. CBfgH
#: orgchart.xhp
msgctxt ""
"orgchart.xhp\n"
"par_id3153922\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10100000.xhp\" name=\"Connectors\">Connectors</link>"
-msgstr "<link href=\"text/simpress/02/10100000.xhp\" name=\"Connectors\">Connectors</link>"
+msgid "<link href=\"text/simpress/02/10100000.xhp\">Connectors</link>"
+msgstr "<link href=\"text/simpress/02/10100000.xhp\">Connectors</link>"
-#. TnXRD
+#. cMcA7
#: orgchart.xhp
msgctxt ""
"orgchart.xhp\n"
"par_id3156257\n"
"help.text"
-msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Gluepoints\">Gluepoints</link>"
+msgid "<link href=\"text/simpress/02/10030200.xhp\">Gluepoints</link>"
msgstr ""
#. 3LhEr
@@ -4229,13 +4229,13 @@ msgctxt ""
msgid "<bookmark_value>copying; slides</bookmark_value> <bookmark_value>slides; copying between documents</bookmark_value> <bookmark_value>pages; copying</bookmark_value> <bookmark_value>inserting; slides from files</bookmark_value> <bookmark_value>pasting;slides from other presentations</bookmark_value>"
msgstr ""
-#. BCJDc
+#. UAQCW
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"hd_id3146971\n"
"help.text"
-msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Insert Slide from File</link></variable>"
+msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\">Insert Slide from File</link></variable>"
msgstr ""
#. BNyAE
@@ -4859,13 +4859,13 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Slide sorter mode</alt></image>"
msgstr ""
-#. CWahu
+#. GiAWq
#: presenter_console.xhp
msgctxt ""
"presenter_console.xhp\n"
"par_id311512837936329\n"
"help.text"
-msgid "<link href=\"text/simpress/guide/impress_remote.xhp\" name=\"Impress Remote User Guide\">Impress Remote User Guide</link>"
+msgid "<link href=\"text/simpress/guide/impress_remote.xhp\">Impress Remote User Guide</link>"
msgstr ""
#. DEwuo
@@ -4886,14 +4886,14 @@ msgctxt ""
msgid "<bookmark_value>fitting to pages; individual slides</bookmark_value><bookmark_value>pages; fitting to printed pages</bookmark_value><bookmark_value>printing; fitting to paper</bookmark_value>"
msgstr "<bookmark_value>ajustament a les pàgines; diapositives individuals</bookmark_value><bookmark_value>pàgines; ajustament a pàgines impreses</bookmark_value><bookmark_value>impressió; ajustament al paper</bookmark_value>"
-#. 46R7k
+#. tfu5n
#: print_tofit.xhp
msgctxt ""
"print_tofit.xhp\n"
"hd_id3155067\n"
"help.text"
-msgid "<variable id=\"print_tofit\"><link href=\"text/simpress/guide/print_tofit.xhp\" name=\"Printing a Slide to Fit a Paper Size\">Printing a Slide to Fit a Paper Size</link></variable>"
-msgstr "<variable id=\"print_tofit\"><link href=\"text/simpress/guide/print_tofit.xhp\" name=\"Impressió d'una diapositiva perquè s'ajuste a la mida del paper\">Impressió d'una diapositiva perquè s'ajuste a la mida del paper</link></variable>"
+msgid "<variable id=\"print_tofit\"><link href=\"text/simpress/guide/print_tofit.xhp\">Printing a Slide to Fit a Paper Size</link></variable>"
+msgstr "<variable id=\"print_tofit\"><link href=\"text/simpress/guide/print_tofit.xhp\">Impressió d'una diapositiva perquè s'ajuste a la mida del paper</link></variable>"
#. DXNCe
#: print_tofit.xhp
@@ -4967,14 +4967,14 @@ msgctxt ""
msgid "<bookmark_value>printing; presentations</bookmark_value> <bookmark_value>slides; printing</bookmark_value> <bookmark_value>notes; printing in presentations</bookmark_value> <bookmark_value>outlines; printing</bookmark_value> <bookmark_value>presentations; printing</bookmark_value> <bookmark_value>tiled printing of slides</bookmark_value> <bookmark_value>changing;layout for handouts</bookmark_value> <bookmark_value>handout printing</bookmark_value> <bookmark_value>layout;printing handouts</bookmark_value>"
msgstr "<bookmark_value>impressió; presentacions</bookmark_value><bookmark_value>diapositives; impressió</bookmark_value><bookmark_value>notes; impressió en presentacions</bookmark_value><bookmark_value>esquemes; impressió</bookmark_value><bookmark_value>presentacions; impressió</bookmark_value><bookmark_value>impressió en mosaic de diapositives</bookmark_value><bookmark_value>canvi;format per a prospectes</bookmark_value><bookmark_value>impressió de prospectes</bookmark_value><bookmark_value>format;impressió de prospectes</bookmark_value>"
-#. LjSQ5
+#. p4mej
#: printing.xhp
msgctxt ""
"printing.xhp\n"
"hd_id3153726\n"
"help.text"
-msgid "<variable id=\"printing\"><link href=\"text/simpress/guide/printing.xhp\" name=\"Printing Presentations\">Printing Presentations</link></variable>"
-msgstr "<variable id=\"printing\"><link href=\"text/simpress/guide/printing.xhp\" name=\"Impressió de presentacions\">Impressió de presentacions</link></variable>"
+msgid "<variable id=\"printing\"><link href=\"text/simpress/guide/printing.xhp\">Printing Presentations</link></variable>"
+msgstr "<variable id=\"printing\"><link href=\"text/simpress/guide/printing.xhp\">Impressió de presentacions</link></variable>"
#. 5EY2q
#: printing.xhp
@@ -5255,14 +5255,14 @@ msgctxt ""
msgid "<bookmark_value>presentations;rehearse timings</bookmark_value><bookmark_value>rehearse timings</bookmark_value><bookmark_value>timings; rehearse timings</bookmark_value><bookmark_value>automatic slide changes;rehearse timings</bookmark_value><bookmark_value>recording;display times for slides</bookmark_value>"
msgstr "<bookmark_value>presentacions; assaig de cronometratges</bookmark_value><bookmark_value>assaig de cronometratges</bookmark_value><bookmark_value>cronometratges; assaigs de cronometratges</bookmark_value><bookmark_value>canvis automàtics de diapositives; assaig de cronometratges</bookmark_value><bookmark_value>gravació ; temps de visualització de les diapositives</bookmark_value>"
-#. ogFtt
+#. tsmrK
#: rehearse_timings.xhp
msgctxt ""
"rehearse_timings.xhp\n"
"hd_id3145253\n"
"help.text"
-msgid "<variable id=\"rehearse_timings\"><link href=\"text/simpress/guide/rehearse_timings.xhp\" name=\"Rehearse Timings of Slide Changes\">Rehearse Timings of Slide Changes</link></variable>"
-msgstr "<variable id=\"rehearse_timings\"><link href=\"text/simpress/guide/rehearse_timings.xhp\" name=\"Assaig de cronometratges per als canvis de diapositives\">Assaig de cronometratges per als canvis de diapositives</link></variable>"
+msgid "<variable id=\"rehearse_timings\"><link href=\"text/simpress/guide/rehearse_timings.xhp\">Rehearse Timings of Slide Changes</link></variable>"
+msgstr "<variable id=\"rehearse_timings\"><link href=\"text/simpress/guide/rehearse_timings.xhp\">Assaig de cronometratges per als canvis de diapositives</link></variable>"
#. fqYCx
#: rehearse_timings.xhp
@@ -5336,14 +5336,14 @@ msgctxt ""
msgid "If you want the whole presentation to auto-repeat, open the menu <emph>Slide Show - Slide Show Settings</emph>. Click <emph>Loop and repeat after</emph> and <emph>OK</emph>."
msgstr ""
-#. GTfZv
+#. 2zDD2
#: rehearse_timings.xhp
msgctxt ""
"rehearse_timings.xhp\n"
"par_id3150935\n"
"help.text"
-msgid "<link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show Settings\">Slide Show Settings</link>"
-msgstr "<link href=\"text/simpress/01/06080000.xhp\" name=\"Paràmetres de presentació de diapositives\">Paràmetres de presentació de diapositives</link>"
+msgid "<link href=\"text/simpress/01/06080000.xhp\">Slide Show Settings</link>"
+msgstr "<link href=\"text/simpress/01/06080000.xhp\">Paràmetres de presentació de diapositives</link>"
#. GXNeC
#: select_object.xhp
@@ -5363,14 +5363,14 @@ msgctxt ""
msgid "<bookmark_value>objects; selecting</bookmark_value><bookmark_value>selecting; hidden objects</bookmark_value><bookmark_value>covered objects</bookmark_value><bookmark_value>underlying objects</bookmark_value>"
msgstr "<bookmark_value>objectes; selecció</bookmark_value><bookmark_value>selecció; objectes amagats</bookmark_value><bookmark_value>objectes tapats</bookmark_value><bookmark_value>objectes subjacents</bookmark_value>"
-#. Aajd4
+#. AcpHn
#: select_object.xhp
msgctxt ""
"select_object.xhp\n"
"hd_id3154492\n"
"help.text"
-msgid "<variable id=\"select_object\"><link href=\"text/simpress/guide/select_object.xhp\" name=\"Selecting Underlying Objects\">Selecting Underlying Objects</link></variable>"
-msgstr "<variable id=\"select_object\"><link href=\"text/simpress/guide/select_object.xhp\" name=\"Selecció d'objectes subjacents\">Selecció d'objectes subjacents</link></variable>"
+msgid "<variable id=\"select_object\"><link href=\"text/simpress/guide/select_object.xhp\">Selecting Underlying Objects</link></variable>"
+msgstr "<variable id=\"select_object\"><link href=\"text/simpress/guide/select_object.xhp\">Selecció d'objectes subjacents</link></variable>"
#. xtkgn
#: select_object.xhp
@@ -5408,14 +5408,14 @@ msgctxt ""
msgid "<bookmark_value>running slide shows</bookmark_value> <bookmark_value>showing;slide shows</bookmark_value> <bookmark_value>slide shows; starting</bookmark_value> <bookmark_value>presentations; starting</bookmark_value> <bookmark_value>starting; slide shows</bookmark_value> <bookmark_value>automatic slide shows</bookmark_value> <bookmark_value>slide transitions;automatic</bookmark_value> <bookmark_value>automatic slide transition</bookmark_value>"
msgstr ""
-#. ZwZRH
+#. 9qCE3
#: show.xhp
msgctxt ""
"show.xhp\n"
"hd_id4901272\n"
"help.text"
-msgid "<variable id=\"show\"><link href=\"text/simpress/guide/show.xhp\" name=\"Showing a Slide Show\">Showing a Slide Show</link></variable>"
-msgstr "<variable id=\"show\"><link href=\"text/simpress/guide/show.xhp\" name=\"Mostra d'una presentació de diapositives\">Mostra d'una presentació de diapositives</link></variable>"
+msgid "<variable id=\"show\"><link href=\"text/simpress/guide/show.xhp\">Showing a Slide Show</link></variable>"
+msgstr "<variable id=\"show\"><link href=\"text/simpress/guide/show.xhp\">Mostra d'una presentació de diapositives</link></variable>"
#. FACJD
#: show.xhp
@@ -5606,14 +5606,14 @@ msgctxt ""
msgid "<bookmark_value>spreadsheets;in presentations</bookmark_value><bookmark_value>presentations;inserting spreadsheets</bookmark_value><bookmark_value>including spreadsheets</bookmark_value>"
msgstr "<bookmark_value>fulls de càlcul; en presentacions</bookmark_value><bookmark_value>presentacions; inserció de fulls de càlcul</bookmark_value><bookmark_value>inclusió de fulls de càlcul</bookmark_value>"
-#. eCvdC
+#. eCEJE
#: table_insert.xhp
msgctxt ""
"table_insert.xhp\n"
"hd_id3154022\n"
"help.text"
-msgid "<variable id=\"table_insert\"><link href=\"text/simpress/guide/table_insert.xhp\" name=\"Including Spreadsheets in Slides\">Including Spreadsheets in Slides</link></variable>"
-msgstr "<variable id=\"table_insert\"><link href=\"text/simpress/guide/table_insert.xhp\" name=\"Inclusió de fulls de càlcul a les diapositives\">Inclusió de fulls de càlcul a les diapositives</link></variable>"
+msgid "<variable id=\"table_insert\"><link href=\"text/simpress/guide/table_insert.xhp\">Including Spreadsheets in Slides</link></variable>"
+msgstr "<variable id=\"table_insert\"><link href=\"text/simpress/guide/table_insert.xhp\">Inclusió de fulls de càlcul a les diapositives</link></variable>"
#. esvA2
#: table_insert.xhp
@@ -6011,22 +6011,22 @@ msgctxt ""
msgid "The entire spreadsheet is inserted into your slide. If you want to change the sheet that is displayed, double-click the spreadsheet, and then select a different sheet."
msgstr "S'inserirà tot el full de càlcul a la diapositiva. Si voleu canviar el full que es mostra, feu-hi doble clic i seleccioneu-ne un de diferent."
-#. ZjXBG
+#. HMkVC
#: table_insert.xhp
msgctxt ""
"table_insert.xhp\n"
"par_id3154505\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Format - Slide Layout\">Format - Slide Layout</link>"
-msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Format - Format de la diapositiva\">Format - Format de la diapositiva</link>"
+msgid "<link href=\"text/simpress/01/05130000.xhp\">Format - Slide Layout</link>"
+msgstr "<link href=\"text/simpress/01/05130000.xhp\">Format - Format de la diapositiva</link>"
-#. WbMPU
+#. XQUon
#: table_insert.xhp
msgctxt ""
"table_insert.xhp\n"
"par_id3150335\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"Insert - Object - OLE Object\">Insert - OLE Object - OLE Object</link>"
+msgid "<link href=\"text/shared/01/04150100.xhp\">Insert - OLE Object - OLE Object</link>"
msgstr ""
#. xQ5JW
@@ -6047,14 +6047,14 @@ msgctxt ""
msgid "<bookmark_value>text; converting to curves</bookmark_value><bookmark_value>characters; converting to curves</bookmark_value><bookmark_value>sign conversion to curves</bookmark_value><bookmark_value>converting; text to curves</bookmark_value><bookmark_value>draw objects;converting text to</bookmark_value><bookmark_value>curves;converting text to</bookmark_value>"
msgstr "<bookmark_value>text; conversió en corbes</bookmark_value><bookmark_value>caràcters; conversió en corbes</bookmark_value><bookmark_value>conversió de signes en corbes</bookmark_value><bookmark_value>conversió; text en corbes</bookmark_value><bookmark_value>objectes de dibuix; conversió de text en</bookmark_value><bookmark_value>corbes; conversió de text en</bookmark_value>"
-#. 3DRwU
+#. t6yCB
#: text2curve.xhp
msgctxt ""
"text2curve.xhp\n"
"hd_id3150717\n"
"help.text"
-msgid "<variable id=\"text2curve\"><link href=\"text/simpress/guide/text2curve.xhp\" name=\"Converting Text Characters into Drawing Objects\">Converting Text Characters into Drawing Objects</link></variable>"
-msgstr "<variable id=\"text2curve\"><link href=\"text/simpress/guide/text2curve.xhp\" name=\"Conversió de caràcters de text en objectes de dibuix\">Conversió de caràcters de text en objectes de dibuix</link></variable>"
+msgid "<variable id=\"text2curve\"><link href=\"text/simpress/guide/text2curve.xhp\">Converting Text Characters into Drawing Objects</link></variable>"
+msgstr "<variable id=\"text2curve\"><link href=\"text/simpress/guide/text2curve.xhp\">Conversió de caràcters de text en objectes de dibuix</link></variable>"
#. 32Kee
#: text2curve.xhp
@@ -6137,14 +6137,14 @@ msgctxt ""
msgid "<bookmark_value>vectorizing bitmaps</bookmark_value><bookmark_value>converting; bitmaps to polygons</bookmark_value><bookmark_value>bitmaps; converting to vector graphics</bookmark_value><bookmark_value>vector graphics; converting bitmaps</bookmark_value>"
msgstr ""
-#. wKMGA
+#. 57poB
#: vectorize.xhp
msgctxt ""
"vectorize.xhp\n"
"hd_id3153415\n"
"help.text"
-msgid "<variable id=\"vectorize\"><link href=\"text/simpress/guide/vectorize.xhp\" name=\"Converting Bitmap Images into Vector Graphics\">Converting Bitmap Images into Vector Graphics</link></variable>"
-msgstr "<variable id=\"vectorize\"><link href=\"text/simpress/guide/vectorize.xhp\" name=\"Conversió d'imatges de mapes de bits en gràfics vectorials\">Conversió d'imatges de mapes de bits en gràfics vectorials</link></variable>"
+msgid "<variable id=\"vectorize\"><link href=\"text/simpress/guide/vectorize.xhp\">Converting Bitmap Images into Vector Graphics</link></variable>"
+msgstr "<variable id=\"vectorize\"><link href=\"text/simpress/guide/vectorize.xhp\">Conversió d'imatges de mapes de bits en gràfics vectorials</link></variable>"
#. 27rdc
#: vectorize.xhp
@@ -6191,20 +6191,20 @@ msgctxt ""
msgid "In $[officename] Impress, right-click the object, and then choose <emph>Convert - To Polygon</emph>."
msgstr "Al $[officename] Impress, feu clic amb el botó dret sobre l'objecte i després trieu <emph>Converteix - En polígon</emph>."
-#. LCBD4
+#. GKNEE
#: vectorize.xhp
msgctxt ""
"vectorize.xhp\n"
"par_id3149349\n"
"help.text"
-msgid "Set the conversion options for the image, and then click <emph>OK</emph>. See <link href=\"text/simpress/01/13050200.xhp\" name=\"Convert to Polygon\"><emph>Convert to Polygon</emph></link> for a description of the conversion options."
-msgstr "Establiu les opcions de conversió de la imatge i feu clic a <emph>D'acord</emph>. Vegeu <link href=\"text/simpress/01/13050200.xhp\" name=\"Converteix en polígon\"><emph>Converteix en polígon</emph></link> per obtindre una descripció de les opcions de conversió."
+msgid "Set the conversion options for the image, and then click <emph>OK</emph>. See <link href=\"text/simpress/01/13050200.xhp\"><emph>Convert to Polygon</emph></link> for a description of the conversion options."
+msgstr "Establiu les opcions de conversió de la imatge i feu clic a <emph>D'acord</emph>. Vegeu <link href=\"text/simpress/01/13050200.xhp\"><emph>Converteix en polígon</emph></link> per obtindre una descripció de les opcions de conversió."
-#. AG397
+#. FcCmJ
#: vectorize.xhp
msgctxt ""
"vectorize.xhp\n"
"par_id3147371\n"
"help.text"
-msgid "<link href=\"text/simpress/01/13050200.xhp\" name=\"Convert to Polygon\">Convert to Polygon</link>"
-msgstr "<link href=\"text/simpress/01/13050200.xhp\" name=\"Converteix en polígon\">Converteix en polígon</link>"
+msgid "<link href=\"text/simpress/01/13050200.xhp\">Convert to Polygon</link>"
+msgstr "<link href=\"text/simpress/01/13050200.xhp\">Converteix en polígon</link>"
diff --git a/source/ca-valencia/helpcontent2/source/text/smath.po b/source/ca-valencia/helpcontent2/source/text/smath.po
index 37bdcdb5d56..87f56da86f7 100644
--- a/source/ca-valencia/helpcontent2/source/text/smath.po
+++ b/source/ca-valencia/helpcontent2/source/text/smath.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsmath/ca_VALENCIA/>\n"
@@ -44,14 +44,14 @@ msgctxt ""
msgid "How to Work With $[officename] Math"
msgstr "Com treballar amb el $[officename] Math"
-#. rCfXQ
+#. NqF3B
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"par_id3143229\n"
"help.text"
-msgid "<link href=\"text/smath/01/03091500.xhp\" name=\"Formula Reference Tables\">Formula Reference Tables</link>"
-msgstr "<link href=\"text/smath/01/03091500.xhp\" name=\"Taules de referència de fórmules\">Taules de referència de fórmules</link>"
+msgid "<link href=\"text/smath/01/03091500.xhp\">Formula Reference Tables</link>"
+msgstr "<link href=\"text/smath/01/03091500.xhp\">Taules de referència de fórmules</link>"
#. mEUPE
#: main0000.xhp
@@ -80,14 +80,14 @@ msgctxt ""
msgid "Menus"
msgstr "Menús"
-#. MhYam
+#. QoCY3
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
"hd_id3149021\n"
"help.text"
-msgid "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\" name=\"Menús\">Menús</link></variable>"
+msgid "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/smath/main0100.xhp\">Menús</link></variable>"
#. Bmi2e
#: main0100.xhp
@@ -107,14 +107,14 @@ msgctxt ""
msgid "File"
msgstr "Fitxer"
-#. tmExF
+#. AmMPG
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
"hd_id3149018\n"
"help.text"
-msgid "<link href=\"text/smath/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/smath/main0101.xhp\" name=\"Fitxer\">Fitxer</link>"
+msgid "<link href=\"text/smath/main0101.xhp\">File</link>"
+msgstr "<link href=\"text/smath/main0101.xhp\">Fitxer</link>"
#. yPAfq
#: main0101.xhp
@@ -134,14 +134,14 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. qCoz8
+#. wF988
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id3156385\n"
"help.text"
-msgid "<link href=\"text/smath/main0102.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/smath/main0102.xhp\" name=\"Edita\">Edita</link>"
+msgid "<link href=\"text/smath/main0102.xhp\">Edit</link>"
+msgstr "<link href=\"text/smath/main0102.xhp\">Edita</link>"
#. pTQDn
#: main0102.xhp
@@ -161,32 +161,32 @@ msgctxt ""
msgid "View"
msgstr "Visualitza"
-#. hyy9Y
+#. 2EqUT
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3155064\n"
"help.text"
-msgid "<link href=\"text/smath/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/smath/main0103.xhp\" name=\"Visualitza\">Visualitza</link>"
+msgid "<link href=\"text/smath/main0103.xhp\">View</link>"
+msgstr "<link href=\"text/smath/main0103.xhp\">Visualitza</link>"
-#. cnAYC
+#. WFo3v
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"par_id3147338\n"
"help.text"
-msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements pane with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><menuitem>View - Elements</menuitem></link>."
-msgstr "Estableix l'escala de visualització i defineix quins elements voleu que siguen visibles. La majoria d'ordres que podeu introduir a la finestra <emph>Ordres</emph> també es poden obrir amb un clic si heu obert prèviament Elements mitjançant <link href=\"text/smath/01/03090000.xhp\" name=\"Visualitza ▸ Elements\"><menuitem>Visualitza ▸ Elements</menuitem></link>."
+msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements pane with <link href=\"text/smath/01/03090000.xhp\"><menuitem>View - Elements</menuitem></link>."
+msgstr "Estableix l'escala de visualització i defineix quins elements voleu que siguen visibles. La majoria d'ordres que podeu introduir a la finestra <emph>Ordres</emph> també es poden obrir amb un clic si heu obert prèviament Elements mitjançant <link href=\"text/smath/01/03090000.xhp\"><menuitem>Visualitza ▸ Elements</menuitem></link>."
-#. ZJSDS
+#. 4C4gL
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3150205\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Escala\">Escala</link>"
+msgid "<link href=\"text/shared/01/03010000.xhp\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\">Escala</link>"
#. JP4tR
#: main0105.xhp
@@ -197,14 +197,14 @@ msgctxt ""
msgid "Format"
msgstr "Formata"
-#. FN5Yd
+#. FFWFC
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3149121\n"
"help.text"
-msgid "<link href=\"text/smath/main0105.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/smath/main0105.xhp\" name=\"Format\">Format</link>"
+msgid "<link href=\"text/smath/main0105.xhp\">Format</link>"
+msgstr "<link href=\"text/smath/main0105.xhp\">Format</link>"
#. DXDBJ
#: main0105.xhp
@@ -215,41 +215,41 @@ msgctxt ""
msgid "This menu contains commands needed to format formulas."
msgstr "Este menú conté ordes necessàries per formatar les fórmules."
-#. gxysk
+#. G9yVX
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3156385\n"
"help.text"
-msgid "<link href=\"text/smath/01/05010000.xhp\" name=\"Fonts\">Fonts</link>"
-msgstr "<link href=\"text/smath/01/05010000.xhp\" name=\"Tipus de lletra\">Tipus de lletra</link>"
+msgid "<link href=\"text/smath/01/05010000.xhp\">Fonts</link>"
+msgstr "<link href=\"text/smath/01/05010000.xhp\">Tipus de lletra</link>"
-#. ijKA9
+#. drsmP
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3154656\n"
"help.text"
-msgid "<link href=\"text/smath/01/05020000.xhp\" name=\"Font Size\">Font Size</link>"
-msgstr "<link href=\"text/smath/01/05020000.xhp\" name=\"Mida de la lletra\">Mida de la lletra</link>"
+msgid "<link href=\"text/smath/01/05020000.xhp\">Font Size</link>"
+msgstr "<link href=\"text/smath/01/05020000.xhp\">Mida de la lletra</link>"
-#. zmJ8D
+#. mb375
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3154484\n"
"help.text"
-msgid "<link href=\"text/smath/01/05030000.xhp\" name=\"Spacing\">Spacing</link>"
-msgstr "<link href=\"text/smath/01/05030000.xhp\" name=\"Espaiat\">Espaiat</link>"
+msgid "<link href=\"text/smath/01/05030000.xhp\">Spacing</link>"
+msgstr "<link href=\"text/smath/01/05030000.xhp\">Espaiat</link>"
-#. o8WKS
+#. J6TmW
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3151242\n"
"help.text"
-msgid "<link href=\"text/smath/01/05040000.xhp\" name=\"Alignment\">Alignment</link>"
-msgstr "<link href=\"text/smath/01/05040000.xhp\" name=\"Alineació\">Alineació</link>"
+msgid "<link href=\"text/smath/01/05040000.xhp\">Alignment</link>"
+msgstr "<link href=\"text/smath/01/05040000.xhp\">Alineació</link>"
#. r9nLs
#: main0106.xhp
@@ -260,14 +260,14 @@ msgctxt ""
msgid "Tools"
msgstr "Eines"
-#. kAkBC
+#. aDeFk
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3149019\n"
"help.text"
-msgid "<link href=\"text/smath/main0106.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/smath/main0106.xhp\" name=\"Eines\">Eines</link>"
+msgid "<link href=\"text/smath/main0106.xhp\">Tools</link>"
+msgstr "<link href=\"text/smath/main0106.xhp\">Eines</link>"
#. Y7EE7
#: main0106.xhp
@@ -278,32 +278,32 @@ msgctxt ""
msgid "Use this menu to open and edit the symbol catalog, or import an external formula as a data file or via clipboard. The program interface can be adjusted to meet your requirements. You can also change the program options."
msgstr "Utilitzeu este menú per obrir i editar el catàleg de símbols, o per importar una fórmula externa com a fitxer de dades o via el porta-retalls. La interfície del programa es pot ajustar a les vostres necessitats. També podeu canviar les opcions del programa."
-#. 54EEZ
+#. FTLiB
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3150206\n"
"help.text"
-msgid "<link href=\"text/smath/01/06020000.xhp#importfile\" name=\"Import Formula\">Import Formula</link>"
-msgstr "<link href=\"text/smath/01/06020000.xhp#importfile\" name=\"Import a una fórmula\">Importa una fórmula</link>"
+msgid "<link href=\"text/smath/01/06020000.xhp#importfile\">Import Formula</link>"
+msgstr "<link href=\"text/smath/01/06020000.xhp#importfile\">Importa una fórmula</link>"
-#. ZY7bY
+#. Nya8t
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3150207\n"
"help.text"
-msgid "<link href=\"text/smath/01/06020000.xhp#importclipboard\" name=\"Import MathML\">Import MathML from Clipboard</link>"
-msgstr "<link href=\"text/smath/01/06020000.xhp#importclipboard\" name=\"Importa MathML\">Importa MathML des del porta-retalls</link>"
+msgid "<link href=\"text/smath/01/06020000.xhp#importclipboard\">Import MathML from Clipboard</link>"
+msgstr "<link href=\"text/smath/01/06020000.xhp#importclipboard\">Importa MathML des del porta-retalls</link>"
-#. dayst
+#. 8HWG3
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3145385\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Personalitza\">Personalitza</link>"
+msgid "<link href=\"text/shared/01/06140000.xhp\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\">Personalitza</link>"
#. KRfJh
#: main0107.xhp
@@ -314,14 +314,14 @@ msgctxt ""
msgid "Window"
msgstr "Finestra"
-#. VF9Gg
+#. Eb4Wf
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
"hd_id3155066\n"
"help.text"
-msgid "<link href=\"text/smath/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr "<link href=\"text/smath/main0107.xhp\" name=\"Finestra\">Finestra</link>"
+msgid "<link href=\"text/smath/main0107.xhp\">Window</link>"
+msgstr "<link href=\"text/smath/main0107.xhp\">Finestra</link>"
#. Zoq2R
#: main0107.xhp
@@ -341,14 +341,14 @@ msgctxt ""
msgid "Toolbars"
msgstr "Barres d'eines"
-#. PDqzf
+#. yetfd
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
"hd_id3149121\n"
"help.text"
-msgid "<variable id=\"main0200\"><link href=\"text/smath/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/smath/main0200.xhp\" name=\"Barres d'eines\">Barres d'eines</link></variable>"
+msgid "<variable id=\"main0200\"><link href=\"text/smath/main0200.xhp\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/smath/main0200.xhp\">Barres d'eines</link></variable>"
#. oxgE6
#: main0200.xhp
@@ -368,14 +368,14 @@ msgctxt ""
msgid "Status Bar"
msgstr "Barra d'estat"
-#. mVQzC
+#. FT8DF
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3150749\n"
"help.text"
-msgid "<link href=\"text/smath/main0202.xhp\" name=\"Status Bar\">Status Bar</link>"
-msgstr "<link href=\"text/smath/main0202.xhp\" name=\"Barra d'estat\">Barra d'estat</link>"
+msgid "<link href=\"text/smath/main0202.xhp\">Status Bar</link>"
+msgstr "<link href=\"text/smath/main0202.xhp\">Barra d'estat</link>"
#. XAbu3
#: main0202.xhp
@@ -395,14 +395,14 @@ msgctxt ""
msgid "Tools Bar"
msgstr "Barra d'eines"
-#. pRhpz
+#. GDG9G
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3149123\n"
"help.text"
-msgid "<link href=\"text/smath/main0203.xhp\" name=\"Tools Bar\">Tools Bar</link>"
-msgstr "<link href=\"text/smath/main0203.xhp\" name=\"Barra d'eines\">Barra d'eines</link>"
+msgid "<link href=\"text/smath/main0203.xhp\">Tools Bar</link>"
+msgstr "<link href=\"text/smath/main0203.xhp\">Barra d'eines</link>"
#. b2SG3
#: main0203.xhp
@@ -413,14 +413,14 @@ msgctxt ""
msgid "The Tools bar contains frequently used functions."
msgstr "La barra d'eines conté les funcions més utilitzades."
-#. tdCBf
+#. HfVpE
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3151242\n"
"help.text"
-msgid "<link href=\"text/smath/02/03010000.xhp\" name=\"Formula Cursor\">Formula Cursor</link>"
-msgstr "<link href=\"text/smath/02/03010000.xhp\" name=\"Cursor de fórmula\">Cursor de fórmula</link>"
+msgid "<link href=\"text/smath/02/03010000.xhp\">Formula Cursor</link>"
+msgstr "<link href=\"text/smath/02/03010000.xhp\">Cursor de fórmula</link>"
#. 8sU9J
#: main0503.xhp
@@ -431,14 +431,14 @@ msgctxt ""
msgid "$[officename] Math Features"
msgstr "Funcions del $[officename] Math"
-#. Kjbtz
+#. 8NjEC
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"hd_id3155064\n"
"help.text"
-msgid "<variable id=\"main0503\"><link href=\"text/smath/main0503.xhp\" name=\"$[officename] Math Features\">$[officename] Math Features</link></variable>"
-msgstr "<variable id=\"main0503\"><link href=\"text/smath/main0503.xhp\" name=\"Funcions del $[officename] Math\">Funcions del $[officename] Math</link></variable>"
+msgid "<variable id=\"main0503\"><link href=\"text/smath/main0503.xhp\">$[officename] Math Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/smath/main0503.xhp\">Funcions del $[officename] Math</link></variable>"
#. nAB9q
#: main0503.xhp
@@ -449,14 +449,14 @@ msgctxt ""
msgid "This section contains an overview of some of the important functions and capabilities that $[officename] Math offers."
msgstr "Esta secció conté una visió general d'algunes de les funcions i capacitats importants que ofereix el $[officename] Math."
-#. iieFD
+#. CBatK
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3148486\n"
"help.text"
-msgid "$[officename] Math provides numerous operators, functions and formatting assistants to help you create formulas. These are all listed in a selection window, in which you can click the required element with the mouse to insert the object into your work. There is an exhaustive <link href=\"text/smath/01/03091500.xhp\" name=\"reference\">reference</link> list and numerous <link href=\"text/smath/01/03090900.xhp\" name=\"samples\">samples</link> contained in the Help."
-msgstr "El $[officename] Math proporciona molts operadors, funcions i auxiliars de format per ajudar-vos a crear fórmules. S'enumeren a la finestra de selecció, on podeu fer clic a l'objecte que necessiteu per inserir-lo al document. L'Ajuda conté una llista de <link href=\"text/smath/01/03091500.xhp\" name=\"referència\">referència</link> exhaustiva i moltes <link href=\"text/smath/01/03090900.xhp\" name=\"mostres\">mostres</link>."
+msgid "$[officename] Math provides numerous operators, functions and formatting assistants to help you create formulas. These are all listed in a selection window, in which you can click the required element with the mouse to insert the object into your work. There is an exhaustive <link href=\"text/smath/01/03091500.xhp\">reference</link> list and numerous <link href=\"text/smath/01/03090900.xhp\">samples</link> contained in the Help."
+msgstr "El $[officename] Math proporciona molts operadors, funcions i auxiliars de format per ajudar-vos a crear fórmules. S'enumeren a la finestra de selecció, on podeu fer clic a l'objecte que necessiteu per inserir-lo al document. L'Ajuda conté una llista de <link href=\"text/smath/01/03091500.xhp\">referència</link> exhaustiva i moltes <link href=\"text/smath/01/03090900.xhp\">mostres</link>."
#. dA2Fo
#: main0503.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/smath/01.po b/source/ca-valencia/helpcontent2/source/text/smath/01.po
index 4588195be69..a83dbd85223 100644
--- a/source/ca-valencia/helpcontent2/source/text/smath/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/smath/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-04-11 15:28+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>markers; next</bookmark_value><bookmark_value>placeholders; position of next</bookmark_value><bookmark_value>markers; definition</bookmark_value>"
msgstr "<bookmark_value>marcadors; següent</bookmark_value><bookmark_value>espais reservats; posició del següent</bookmark_value><bookmark_value>marcadors; definició</bookmark_value>"
-#. FPLeD
+#. TAQcQ
#: 02080000.xhp
msgctxt ""
"02080000.xhp\n"
"hd_id3154702\n"
"help.text"
-msgid "<link href=\"text/smath/01/02080000.xhp\" name=\"Next Marker\">Next Marker</link>"
-msgstr "<link href=\"text/smath/01/02080000.xhp\" name=\"Marcador següent\">Marcador següent</link>"
+msgid "<link href=\"text/smath/01/02080000.xhp\">Next Marker</link>"
+msgstr "<link href=\"text/smath/01/02080000.xhp\">Marcador següent</link>"
#. dPJsB
#: 02080000.xhp
@@ -80,14 +80,14 @@ msgctxt ""
msgid "<bookmark_value>markers; previous</bookmark_value><bookmark_value>placeholders; previous marker</bookmark_value>"
msgstr "<bookmark_value>marcadors; anterior</bookmark_value><bookmark_value>espais reservats; marcador anterior</bookmark_value>"
-#. EcNXn
+#. DGcFc
#: 02090000.xhp
msgctxt ""
"02090000.xhp\n"
"hd_id3153770\n"
"help.text"
-msgid "<link href=\"text/smath/01/02090000.xhp\" name=\"Previous Marker\">Previous Marker</link>"
-msgstr "<link href=\"text/smath/01/02090000.xhp\" name=\"Marcador anterior\">Marcador anterior</link>"
+msgid "<link href=\"text/smath/01/02090000.xhp\">Previous Marker</link>"
+msgstr "<link href=\"text/smath/01/02090000.xhp\">Marcador anterior</link>"
#. nWBA5
#: 02090000.xhp
@@ -125,14 +125,14 @@ msgctxt ""
msgid "<bookmark_value>error search; next error</bookmark_value><bookmark_value>finding ;errors in %PRODUCTNAME Math</bookmark_value>"
msgstr "<bookmark_value>busca d'errors; error següent</bookmark_value><bookmark_value>busca;errors al %PRODUCTNAME Math</bookmark_value>"
-#. jWYi3
+#. jCxb6
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
"hd_id3150299\n"
"help.text"
-msgid "<link href=\"text/smath/01/02100000.xhp\" name=\"Next Error\">Next Error</link>"
-msgstr "<link href=\"text/smath/01/02100000.xhp\" name=\"Error següent\">Error següent</link>"
+msgid "<link href=\"text/smath/01/02100000.xhp\">Next Error</link>"
+msgstr "<link href=\"text/smath/01/02100000.xhp\">Error següent</link>"
#. 3mFzx
#: 02100000.xhp
@@ -161,14 +161,14 @@ msgctxt ""
msgid "<bookmark_value>error search; previous error</bookmark_value>"
msgstr "<bookmark_value>busca d'errors; error anterior</bookmark_value>"
-#. smGCW
+#. KvPX6
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3147434\n"
"help.text"
-msgid "<link href=\"text/smath/01/02110000.xhp\" name=\"Previous Error\">Previous Error</link>"
-msgstr "<link href=\"text/smath/01/02110000.xhp\" name=\"Error anterior\">Error anterior</link>"
+msgid "<link href=\"text/smath/01/02110000.xhp\">Previous Error</link>"
+msgstr "<link href=\"text/smath/01/02110000.xhp\">Error anterior</link>"
#. 7tu3P
#: 02110000.xhp
@@ -197,22 +197,22 @@ msgctxt ""
msgid "<bookmark_value>zooming in on formula display</bookmark_value><bookmark_value>formulas; increasing size of display</bookmark_value>"
msgstr "<bookmark_value>ampliació de la visualització de fórmules</bookmark_value><bookmark_value>fórmules; augment de la mida de la visualització</bookmark_value>"
-#. 8STR5
+#. oFbFd
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
"hd_id3153770\n"
"help.text"
-msgid "<link href=\"text/smath/01/03040000.xhp\" name=\"Zoom In\">Zoom In</link>"
-msgstr "<link href=\"text/smath/01/03040000.xhp\" name=\"Amplia el zoom\">Amplia el zoom</link>"
+msgid "<link href=\"text/smath/01/03040000.xhp\">Zoom In</link>"
+msgstr "<link href=\"text/smath/01/03040000.xhp\">Amplia el zoom</link>"
-#. 4GCbo
+#. SiRrA
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
"par_id3154490\n"
"help.text"
-msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link>. The context menu in the work area also contains zoom commands."
msgstr ""
#. EyasV
@@ -233,22 +233,22 @@ msgctxt ""
msgid "<bookmark_value>views; zooming out $[officename] Math</bookmark_value><bookmark_value>formula display sizes</bookmark_value><bookmark_value>formulas; zooming out</bookmark_value><bookmark_value>zooming out on formula display</bookmark_value>"
msgstr "<bookmark_value>visualitzacions; reducció al $[officename] Math</bookmark_value><bookmark_value>mides de la visualització de fórmules</bookmark_value><bookmark_value>fórmules; reducció</bookmark_value><bookmark_value>reducció de la visualització de fórmules</bookmark_value>"
-#. XHgfN
+#. Wq5gr
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"hd_id3147338\n"
"help.text"
-msgid "<link href=\"text/smath/01/03050000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
-msgstr "<link href=\"text/smath/01/03050000.xhp\" name=\"Redueix el zoom\">Redueix el zoom</link>"
+msgid "<link href=\"text/smath/01/03050000.xhp\">Zoom Out</link>"
+msgstr "<link href=\"text/smath/01/03050000.xhp\">Redueix el zoom</link>"
-#. yxSWi
+#. BVbtH
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"par_id3150249\n"
"help.text"
-msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link>. The context menu in the work area also contains zoom commands."
msgstr ""
#. xSbDA
@@ -269,22 +269,22 @@ msgctxt ""
msgid "<bookmark_value>views; maximum size</bookmark_value><bookmark_value>maximum formula size</bookmark_value><bookmark_value>formulas; maximum size</bookmark_value>"
msgstr "<bookmark_value>visualitzacions; mida màxima</bookmark_value><bookmark_value>mida màxima per a les fórmules</bookmark_value><bookmark_value>fórmules; mida màxima</bookmark_value>"
-#. Nq3Ci
+#. qVwGz
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"hd_id3147340\n"
"help.text"
-msgid "<link href=\"text/smath/01/03060000.xhp\" name=\"Show All\">Show All</link>"
-msgstr "<link href=\"text/smath/01/03060000.xhp\" name=\"Mostra-ho tot\">Mostra-ho tot</link>"
+msgid "<link href=\"text/smath/01/03060000.xhp\">Show All</link>"
+msgstr "<link href=\"text/smath/01/03060000.xhp\">Mostra-ho tot</link>"
-#. HGtyh
+#. 76s8W
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id3148571\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
+msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
msgstr ""
#. WGriM
@@ -305,14 +305,14 @@ msgctxt ""
msgid "<bookmark_value>updating formula view</bookmark_value><bookmark_value>formula view; updating</bookmark_value>"
msgstr "<bookmark_value>actualització de la visualització de fórmules</bookmark_value><bookmark_value>visualització de fórmules; actualització</bookmark_value>"
-#. qBGFH
+#. 5Dbbw
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3153768\n"
"help.text"
-msgid "<link href=\"text/smath/01/03070000.xhp\" name=\"Update\">Update</link>"
-msgstr "<link href=\"text/smath/01/03070000.xhp\" name=\"Actualitza\">Actualitza</link>"
+msgid "<link href=\"text/smath/01/03070000.xhp\">Update</link>"
+msgstr "<link href=\"text/smath/01/03070000.xhp\">Actualitza</link>"
#. CAAvs
#: 03070000.xhp
@@ -350,14 +350,14 @@ msgctxt ""
msgid "<bookmark_value>changes; accepting automatically</bookmark_value>"
msgstr "<bookmark_value>canvis; acceptació automàtica</bookmark_value>"
-#. SbqKf
+#. VpoP9
#: 03080000.xhp
msgctxt ""
"03080000.xhp\n"
"hd_id3154702\n"
"help.text"
-msgid "<link href=\"text/smath/01/03080000.xhp\" name=\"AutoUpdate Display\">AutoUpdate Display</link>"
-msgstr "<link href=\"text/smath/01/03080000.xhp\" name=\"Actualitza la visualització automàticament\">Actualitza la visualització automàticament</link>"
+msgid "<link href=\"text/smath/01/03080000.xhp\">AutoUpdate Display</link>"
+msgstr "<link href=\"text/smath/01/03080000.xhp\">Actualitza la visualització automàticament</link>"
#. kD5k9
#: 03080000.xhp
@@ -386,14 +386,14 @@ msgctxt ""
msgid "<bookmark_value>selection options in formulas</bookmark_value><bookmark_value>formulas; selections</bookmark_value><bookmark_value>elements;in Math</bookmark_value>"
msgstr "<bookmark_value>opcions de selecció en fórmules</bookmark_value><bookmark_value>fórmules;seleccions</bookmark_value><bookmark_value>elements;en Math</bookmark_value>"
-#. yUSBK
+#. DL52A
#: 03090000.xhp
msgctxt ""
"03090000.xhp\n"
"hd_id3155963\n"
"help.text"
-msgid "<variable id=\"func_win\"><link href=\"text/smath/01/03090000.xhp\" name=\"Elements\">Elements</link></variable>"
-msgstr "<variable id=\"func_win\"><link href=\"text/smath/01/03090000.xhp\" name=\"Elements\">Elements</link></variable>"
+msgid "<variable id=\"func_win\"><link href=\"text/smath/01/03090000.xhp\">Elements</link></variable>"
+msgstr "<variable id=\"func_win\"><link href=\"text/smath/01/03090000.xhp\">Elements</link></variable>"
#. euAF8
#: 03090000.xhp
@@ -404,14 +404,14 @@ msgctxt ""
msgid "<ahelp hid=\"SID_TOOLBOX\">This is a list of operators, functions, symbols and format options that can be inserted into the formula.</ahelp>"
msgstr "<ahelp hid=\"SID_TOOLBOX\">Llista d'operadors, funcions, símbols i opcions de format que es poden inserir a la fórmula.</ahelp>"
-#. TiCER
+#. GcfPD
#: 03090000.xhp
msgctxt ""
"03090000.xhp\n"
"par_id3148699\n"
"help.text"
-msgid "Some <link href=\"text/smath/01/03090900.xhp\" name=\"examples\">examples</link> show you the range of operations."
-msgstr "Estos <link href=\"text/smath/01/03090900.xhp\" name=\"exemples\">exemples</link> vos mostren les operacions disponibles."
+msgid "Some <link href=\"text/smath/01/03090900.xhp\">examples</link> show you the range of operations."
+msgstr "Estos <link href=\"text/smath/01/03090900.xhp\">exemples</link> vos mostren les operacions disponibles."
#. GGZHo
#: 03090000.xhp
@@ -449,22 +449,22 @@ msgctxt ""
msgid "<bookmark_value>unary operators</bookmark_value><bookmark_value>binary operators</bookmark_value><bookmark_value>operators; unary and binary</bookmark_value><bookmark_value>plus signs</bookmark_value><bookmark_value>plus/minus signs</bookmark_value><bookmark_value>minus/plus signs</bookmark_value><bookmark_value>multiplication signs</bookmark_value><bookmark_value>NOT operator</bookmark_value><bookmark_value>AND operator</bookmark_value><bookmark_value>logical operators</bookmark_value><bookmark_value>Boolean operators</bookmark_value><bookmark_value>OR operator</bookmark_value><bookmark_value>concatenating math symbols</bookmark_value><bookmark_value>addition signs</bookmark_value><bookmark_value>subtraction signs</bookmark_value><bookmark_value>minus signs</bookmark_value><bookmark_value>slash division sign</bookmark_value><bookmark_value>backslash division sign</bookmark_value><bookmark_value>indexes; adding to formulas</bookmark_value><bookmark_value>powers</bookmark_value><bookmark_value>division signs</bookmark_value><bookmark_value>user-defined operators;unary and binary</bookmark_value>"
msgstr "<bookmark_value>operadors unaris</bookmark_value><bookmark_value>operadors binaris</bookmark_value><bookmark_value>operadors; unaris i binaris</bookmark_value><bookmark_value>signes de més</bookmark_value><bookmark_value>signes de més/menys</bookmark_value><bookmark_value>signes de menys/més</bookmark_value><bookmark_value>signes de multiplicació</bookmark_value><bookmark_value>operador NOT</bookmark_value><bookmark_value>operador AND</bookmark_value><bookmark_value>operadors lògics</bookmark_value><bookmark_value>operadors booleans</bookmark_value><bookmark_value>operador OR</bookmark_value><bookmark_value>concatenació de símbols matemàtics</bookmark_value><bookmark_value>signes d'addició</bookmark_value><bookmark_value>signes de resta</bookmark_value><bookmark_value>signes de menys</bookmark_value><bookmark_value>signe de divisió inclinat</bookmark_value><bookmark_value>signe de divisió invers</bookmark_value><bookmark_value>índexs; addició a fórmules</bookmark_value><bookmark_value>potències</bookmark_value><bookmark_value>signes de divisió</bookmark_value><bookmark_value>operadors definits per l'usuari;unaris i binaris</bookmark_value>"
-#. 3dhDh
+#. EQUAS
#: 03090100.xhp
msgctxt ""
"03090100.xhp\n"
"hd_id3150342\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090100.xhp\" name=\"Unary/Binary Operators\">Unary/Binary Operators</link>"
-msgstr "<link href=\"text/smath/01/03090100.xhp\" name=\"Operadors unaris i binaris\">Operadors unaris i binaris</link>"
+msgid "<link href=\"text/smath/01/03090100.xhp\">Unary/Binary Operators</link>"
+msgstr "<link href=\"text/smath/01/03090100.xhp\">Operadors unaris i binaris</link>"
-#. T3SNE
+#. H6iQz
#: 03090100.xhp
msgctxt ""
"03090100.xhp\n"
"par_id3151241\n"
"help.text"
-msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
+msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
msgstr ""
#. 86s5i
@@ -1034,23 +1034,23 @@ msgctxt ""
msgid "<bookmark_value>relations; in $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; relations</bookmark_value><bookmark_value>equal sign</bookmark_value><bookmark_value>inequation</bookmark_value><bookmark_value>unequal sign</bookmark_value><bookmark_value>identical to relation</bookmark_value><bookmark_value>congruent relation</bookmark_value><bookmark_value>right angled relations</bookmark_value><bookmark_value>orthogonal relations</bookmark_value><bookmark_value>divides relation</bookmark_value><bookmark_value>does not divide relation</bookmark_value><bookmark_value>less than relations</bookmark_value><bookmark_value>approximately equal to relation</bookmark_value><bookmark_value>parallel relation</bookmark_value><bookmark_value>less than or equal to signs</bookmark_value><bookmark_value>greater than or equal to signs</bookmark_value><bookmark_value>proportional to relation</bookmark_value><bookmark_value>similar to relations</bookmark_value><bookmark_value>toward relation</bookmark_value><bookmark_value>logic symbols</bookmark_value><bookmark_value>double arrow symbols</bookmark_value><bookmark_value>much greater than relation</bookmark_value><bookmark_value>considerably greater than relation</bookmark_value><bookmark_value>greater than relations</bookmark_value><bookmark_value>much less than relation</bookmark_value><bookmark_value>considerably less than relation</bookmark_value><bookmark_value>defined as relation</bookmark_value><bookmark_value>correspondence; picture by</bookmark_value><bookmark_value>picture by correspondence</bookmark_value><bookmark_value>image of relation</bookmark_value><bookmark_value>correspondence; original by</bookmark_value><bookmark_value>original by correspondence</bookmark_value><bookmark_value>precedes relation</bookmark_value><bookmark_value>not precedes relation</bookmark_value><bookmark_value>succeeds relation</bookmark_value><bookmark_value>not succeeds relation</bookmark_value><bookmark_value>precedes or equal relation</bookmark_value><bookmark_value>succeeds or equal relation</bookmark_value><bookmark_value>precedes or equivalent relation</bookmark_value><bookmark_value>succeeds or equivalent relation</bookmark_value>"
msgstr "<bookmark_value>relacions; en $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; relatcions</bookmark_value><bookmark_value>signe igual</bookmark_value><bookmark_value>inequació</bookmark_value><bookmark_value>signe distint</bookmark_value><bookmark_value>identic a la relació</bookmark_value><bookmark_value>relacions congruents</bookmark_value><bookmark_value>relacions angular correctes</bookmark_value><bookmark_value>relacions ortogonals</bookmark_value><bookmark_value>relacions de divisió</bookmark_value><bookmark_value>relació no divideix</bookmark_value><bookmark_value>relacions menor que</bookmark_value><bookmark_value>relació aproximat o igual a</bookmark_value><bookmark_value>relació paral·lela</bookmark_value><bookmark_value>menor o igual als signes</bookmark_value><bookmark_value>major o igual als signes</bookmark_value><bookmark_value>proporcional a la relació</bookmark_value><bookmark_value>similar a les relacions</bookmark_value><bookmark_value>cap a la relació</bookmark_value><bookmark_value>símbol lògic</bookmark_value><bookmark_value>simbol doble fletxa</bookmark_value><bookmark_value>relació més gran que</bookmark_value><bookmark_value>relació bastant més gran que</bookmark_value><bookmark_value>relacions major que</bookmark_value><bookmark_value>relació molt menor que</bookmark_value><bookmark_value>relació bastant menys que</bookmark_value><bookmark_value>definida com a relació</bookmark_value><bookmark_value>correspondència; imatge per</bookmark_value><bookmark_value>imatge per correspondència</bookmark_value><bookmark_value>imatge de la relació</bookmark_value><bookmark_value>correspondència; original per</bookmark_value><bookmark_value>original per correspondència</bookmark_value><bookmark_value>precedèix a la relació</bookmark_value><bookmark_value>no precedèix a la relació</bookmark_value><bookmark_value>relació èxit</bookmark_value><bookmark_value>relació no èxit</bookmark_value><bookmark_value>precedèix o relació d'igualtat</bookmark_value><bookmark_value>èxit o relació d'igualtat</bookmark_value><bookmark_value>precedèix o relació d'equivalència</bookmark_value><bookmark_value>èxit o relació d'equivalència</bookmark_value>"
-#. j8KMi
+#. fRhen
#: 03090200.xhp
msgctxt ""
"03090200.xhp\n"
"hd_id3156316\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090200.xhp\" name=\"Relations\">Relations</link>"
-msgstr "<link href=\"text/smath/01/03090200.xhp\" name=\"Relacions\">Relacions</link>"
+msgid "<link href=\"text/smath/01/03090200.xhp\">Relations</link>"
+msgstr "<link href=\"text/smath/01/03090200.xhp\">Relacions</link>"
-#. g6xKD
+#. cBtRC
#: 03090200.xhp
msgctxt ""
"03090200.xhp\n"
"par_id3153152\n"
"help.text"
-msgid "You can choose among various relations to structure your <emph>$[officename] Math</emph> formula. The relation functions are displayed in the lower part of the Elements pane. The list is also in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All relations that are not contained in the Elements pane or in the context menu can be typed manually in the Commands window."
-msgstr "Podeu triar entre diverses relacions per estructurar la vostra fórmula al <emph>$[officename] Math</emph>. Les funcions de relació es mostren a la part inferior de la subfinestra Elements. La llista també és al <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"menú contextual\">menú contextual</link> de la finestra d'<emph>ordres</emph>. Totes les relacions que no siguen a la subfinestra Elements ni al menú contextual es poden escriure manualment a la finestra d'ordres."
+msgid "You can choose among various relations to structure your <emph>$[officename] Math</emph> formula. The relation functions are displayed in the lower part of the Elements pane. The list is also in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\">context menu</link> of the <emph>Commands</emph> window. All relations that are not contained in the Elements pane or in the context menu can be typed manually in the Commands window."
+msgstr "Podeu triar entre diverses relacions per estructurar la vostra fórmula al <emph>$[officename] Math</emph>. Les funcions de relació es mostren a la part inferior de la subfinestra Elements. La llista també és al <link href=\"text/shared/00/00000001.xhp#kontextmenue\">menú contextual</link> de la finestra d'<emph>ordres</emph>. Totes les relacions que no siguen a la subfinestra Elements ni al menú contextual es poden escriure manualment a la finestra d'ordres."
#. mXaGe
#: 03090200.xhp
@@ -1925,22 +1925,22 @@ msgctxt ""
msgid "<bookmark_value>operators; general</bookmark_value><bookmark_value>upper limits</bookmark_value><bookmark_value>limits; in %PRODUCTNAME Math</bookmark_value><bookmark_value>product</bookmark_value><bookmark_value>coproduct</bookmark_value><bookmark_value>lower limits</bookmark_value><bookmark_value>curve integrals</bookmark_value><bookmark_value>user-defined operators; general</bookmark_value><bookmark_value>integrals; signs</bookmark_value><bookmark_value>summation</bookmark_value>"
msgstr "<bookmark_value>operadors; general</bookmark_value><bookmark_value>límits superiors</bookmark_value><bookmark_value>límits; al %PRODUCTNAME Math</bookmark_value><bookmark_value>producte</bookmark_value><bookmark_value>coproducte</bookmark_value><bookmark_value>límits inferiors</bookmark_value><bookmark_value>integrals de línia</bookmark_value><bookmark_value>operadors definits per l'usuari; general</bookmark_value><bookmark_value>integrals; signes</bookmark_value><bookmark_value>sumatori</bookmark_value>"
-#. TAZqh
+#. tqCCV
#: 03090300.xhp
msgctxt ""
"03090300.xhp\n"
"hd_id3153150\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090300.xhp\" name=\"Operators\">Operators</link>"
-msgstr "<link href=\"text/smath/01/03090300.xhp\" name=\"Operadors\">Operadors</link>"
+msgid "<link href=\"text/smath/01/03090300.xhp\">Operators</link>"
+msgstr "<link href=\"text/smath/01/03090300.xhp\">Operadors</link>"
-#. fJzeE
+#. po4vG
#: 03090300.xhp
msgctxt ""
"03090300.xhp\n"
"par_id3149755\n"
"help.text"
-msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. hDyQo
@@ -2348,14 +2348,14 @@ msgctxt ""
msgid "By typing <emph>oper</emph> in the Commands window, you can insert <emph>user-defined operators</emph> in $[officename] Math, a feature useful for incorporating special characters into a formula. An example is <emph>oper %theta x</emph>. Using the <emph>oper</emph> command, you can also insert characters not in the default $[officename] character set. <emph>oper</emph> can also be used in connection with limits; for example, <emph>oper %union from {i=1} to n x_{i}</emph>. In this example, the union symbol is indicated by the name <emph>union</emph>. However, this is not one of the predefined symbols. To define it, choose <emph>Tools - Symbols</emph>. select <emph>Special</emph> as the symbol set in the dialog that appears, then click the <emph>Edit</emph> button. In the next dialog, select <emph>Special</emph> as the symbol set again. Enter a meaningful name in the <emph>Symbol</emph> text box, for example, \"union\" and then click the union symbol in the set of symbols. Click <emph>Add</emph> and then <emph>OK</emph>. Click <emph>Close</emph> to close the <emph>Symbols</emph> dialog. You are now finished and can type the union symbol in the Commands window, by entering <emph>oper %union</emph>."
msgstr "Si introduïu <emph>oper</emph> a la finestra d'<emph>ordes</emph>, podreu inserir <emph>operadors definits per l'usuari</emph> al $[officename] Math, una característica útil per incorporar caràcters especials en una fórmula. Un exemple és <emph>oper %theta x</emph>. Utilitzant l'orde <emph>oper</emph>, podeu inserir caràcters que no apareixen per defecte en el joc de caràcters del $[officename]. L'orde <emph>oper</emph> també es pot utilitzar amb límits; per exemple, <emph>oper %union from {i=1} to n x_{i}</emph>. En este exemple, el símbol d'unió s'especifica amb el nom <emph>union</emph>; no obstant això, este símbol no forma part dels símbols predefinits. Per definir-lo, trieu <emph>Eines - Símbols</emph>, seleccioneu <emph>Especial</emph> com a conjunt de símbols en el diàleg que apareix i, a continuació, feu clic al botó <emph>Edita</emph>. En el diàleg següent, seleccioneu una altra vegada <emph>Especial</emph> com a conjunt de símbols. Introduïu un nom explicatiu en el quadre de text <emph>Símbol</emph>, per exemple, \"union\", i a continuació feu clic al símbol d'unió en el conjunt de símbols. Feu clic a <emph>Afig</emph> i a continuació a <emph>D'acord</emph>. Feu clic a <emph>Tanca</emph> per tancar el diàleg <emph>Símbols</emph>. Ara ja podreu escriure el símbol d'unió a la finestra d'ordes introduint-hi <emph>oper %union</emph>."
-#. vdUr8
+#. 7E4dG
#: 03090300.xhp
msgctxt ""
"03090300.xhp\n"
"par_id3154243\n"
"help.text"
-msgid "Limits can be arranged in ways other than centered above/below the operator. Use the options provided by $[officename] Math for working with superscript and subscript indexes. For example, type <emph>sum_a^b c</emph> in the Commands window to arrange the limits to the right of the sum symbol. If your limit entries contain longer expressions, you must put them in group brackets, for example, sum_{i=1}^{2*n} b. When formulas are imported from older versions this is done automatically. To change the spacing (gaps) between the characters choose <emph>Format - Spacing - Category - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Indexes\"><emph>Indexes</emph></link> or <emph>Format - Spacing - Category - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Limits\"><emph>Limits</emph></link>. Additional basic information about indexes is given elsewhere in the <link href=\"text/smath/01/03091200.xhp\" name=\"Help\">Help</link>."
-msgstr "Podeu col·locar els límits en diverses posicions, a banda de centrar-los damunt o sota l'operador. Utilitzeu les opcions del $[officename] Math per treballar amb superíndexs i subíndexs. Per exemple, escriviu <emph>sum_a^b c</emph> a la finestra d'<emph>ordes</emph> per col·locar els límits a la dreta del símbol de suma. Si les entrades de límit contenen expressions més llargues, les haureu d'escriure dins de claudàtors d'agrupament, per exemple, sum_{i=1}^{2*n} b. En cas que importeu fórmules des de versions anteriors, esta disposició s'aplicarà automàticament. Per canviar l'espaiat (les separacions) entre caràcters, trieu <emph>Format - Espaiat - Categoria - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Índexs\"><emph>Índexs</emph></link>, o bé <emph>Format - Espaiat - Categoria - </emph><link href=\"text/smath/01/05030000.xhp\" name=\"Límits\"><emph>Límits</emph></link>. Trobareu més informació bàsica sobre els índexs a l'<link href=\"text/smath/01/03091200.xhp\" name=\"Ajuda\">Ajuda</link>."
+msgid "Limits can be arranged in ways other than centered above/below the operator. Use the options provided by $[officename] Math for working with superscript and subscript indexes. For example, type <emph>sum_a^b c</emph> in the Commands window to arrange the limits to the right of the sum symbol. If your limit entries contain longer expressions, you must put them in group brackets, for example, sum_{i=1}^{2*n} b. When formulas are imported from older versions this is done automatically. To change the spacing (gaps) between the characters choose <emph>Format - Spacing - Category - </emph><link href=\"text/smath/01/05030000.xhp\"><emph>Indexes</emph></link> or <emph>Format - Spacing - Category - </emph><link href=\"text/smath/01/05030000.xhp\"><emph>Limits</emph></link>. Additional basic information about indexes is given elsewhere in the <link href=\"text/smath/01/03091200.xhp\">Help</link>."
+msgstr "Podeu col·locar els límits en diverses posicions, a banda de centrar-los damunt o sota l'operador. Utilitzeu les opcions del $[officename] Math per treballar amb superíndexs i subíndexs. Per exemple, escriviu <emph>sum_a^b c</emph> a la finestra d'<emph>ordes</emph> per col·locar els límits a la dreta del símbol de suma. Si les entrades de límit contenen expressions més llargues, les haureu d'escriure dins de claudàtors d'agrupament, per exemple, sum_{i=1}^{2*n} b. En cas que importeu fórmules des de versions anteriors, esta disposició s'aplicarà automàticament. Per canviar l'espaiat (les separacions) entre caràcters, trieu <emph>Format - Espaiat - Categoria - </emph><link href=\"text/smath/01/05030000.xhp\"><emph>Índexs</emph></link>, o bé <emph>Format - Espaiat - Categoria - </emph><link href=\"text/smath/01/05030000.xhp\"><emph>Límits</emph></link>. Trobareu més informació bàsica sobre els índexs a l'<link href=\"text/smath/01/03091200.xhp\">Ajuda</link>."
#. WGzT4
#: 03090300.xhp
@@ -2384,22 +2384,22 @@ msgctxt ""
msgid "<bookmark_value>functions; in $[officename] Math</bookmark_value><bookmark_value>natural exponential functions</bookmark_value><bookmark_value>natural logarithms</bookmark_value><bookmark_value>exponential functions</bookmark_value><bookmark_value>logarithms</bookmark_value><bookmark_value>variables; with right exponents</bookmark_value><bookmark_value>exponents; variables with right</bookmark_value><bookmark_value>trigonometrical functions</bookmark_value><bookmark_value>sine function</bookmark_value><bookmark_value>cosine function</bookmark_value><bookmark_value>cotangent function</bookmark_value><bookmark_value>hyperbolic sine function</bookmark_value><bookmark_value>square roots</bookmark_value><bookmark_value>hyperbolic cosine function</bookmark_value><bookmark_value>hyperbolic tangent function</bookmark_value><bookmark_value>hyperbolic cotangent function</bookmark_value><bookmark_value>roots</bookmark_value><bookmark_value>arc sine function</bookmark_value><bookmark_value>arc cosine function</bookmark_value><bookmark_value>arc cotangent function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>area hyperbolic cosine function</bookmark_value><bookmark_value>area hyperbolic tangent function</bookmark_value><bookmark_value>area hyperbolic cotangent function</bookmark_value><bookmark_value>factorial</bookmark_value><bookmark_value>values; absolute</bookmark_value><bookmark_value>tangent function</bookmark_value>"
msgstr "<bookmark_value>funcions; al $[officename] Math</bookmark_value><bookmark_value>funcions exponencials naturals</bookmark_value><bookmark_value>logaritmes naturals</bookmark_value><bookmark_value>funcions exponencials</bookmark_value><bookmark_value>logaritmes</bookmark_value><bookmark_value>variables; amb exponents drets</bookmark_value><bookmark_value>exponents drets; variables amb</bookmark_value><bookmark_value>funcions trigonomètriques</bookmark_value><bookmark_value>funció sinus</bookmark_value><bookmark_value>funció cosinus</bookmark_value><bookmark_value>funció cotangent</bookmark_value><bookmark_value>funció sinus hiperbòlic</bookmark_value><bookmark_value>arrels quadrades</bookmark_value><bookmark_value>funció cosinus hiperbòlic</bookmark_value><bookmark_value>funció tangent hiperbòlica</bookmark_value><bookmark_value>funció cotangent hiperbòlica</bookmark_value><bookmark_value>arrels</bookmark_value><bookmark_value>funció arc sinus</bookmark_value><bookmark_value>funció arc cosinus</bookmark_value><bookmark_value>funció arc cotangent</bookmark_value><bookmark_value>valors absoluts</bookmark_value><bookmark_value>funció cosinus hiperbòlic d'àrea</bookmark_value><bookmark_value>funció tangent hiperbòlica de l'àrea</bookmark_value><bookmark_value>funció cotangent hiperbòlica de l'àrea</bookmark_value><bookmark_value>factorial</bookmark_value><bookmark_value>valors; absoluts</bookmark_value><bookmark_value>funció tangent</bookmark_value>"
-#. hgaxw
+#. Zrtxf
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
"hd_id3150932\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090400.xhp\" name=\"Functions\">Functions</link>"
-msgstr "<link href=\"text/smath/01/03090400.xhp\" name=\"Funcions\">Funcions</link>"
+msgid "<link href=\"text/smath/01/03090400.xhp\">Functions</link>"
+msgstr "<link href=\"text/smath/01/03090400.xhp\">Funcions</link>"
-#. Q9Kv7
+#. Ghpit
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
"par_id3155374\n"
"help.text"
-msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
+msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
msgstr ""
#. 35FEB
@@ -3131,22 +3131,22 @@ msgctxt ""
msgid "<bookmark_value>brackets; in $[officename] Math</bookmark_value><bookmark_value>brackets; round (Math)</bookmark_value><bookmark_value>parentheses (Math)</bookmark_value><bookmark_value>brackets; square (Math)</bookmark_value><bookmark_value>brackets; double square (Math)</bookmark_value><bookmark_value>braces in %PRODUCTNAME Math</bookmark_value><bookmark_value>brackets; angle (Math)</bookmark_value><bookmark_value>brackets; operator (Math)</bookmark_value><bookmark_value>brackets; angle with operator</bookmark_value><bookmark_value>brackets; group</bookmark_value><bookmark_value>grouping brackets</bookmark_value><bookmark_value>round brackets</bookmark_value><bookmark_value>square brackets</bookmark_value><bookmark_value>double square brackets; scalable</bookmark_value><bookmark_value>scalable braces</bookmark_value><bookmark_value>scalable round brackets</bookmark_value><bookmark_value>scalable lines with ceiling</bookmark_value><bookmark_value>vertical bars</bookmark_value><bookmark_value>brackets; scalable</bookmark_value><bookmark_value>operator brackets</bookmark_value><bookmark_value>floor brackets</bookmark_value><bookmark_value>lines; with edges</bookmark_value><bookmark_value>ceiling brackets; lines with</bookmark_value><bookmark_value>lines; scalable</bookmark_value><bookmark_value>ceiling brackets;scalable lines with</bookmark_value><bookmark_value>brackets; single, without group function</bookmark_value><bookmark_value>single brackets without group function</bookmark_value><bookmark_value>brackets;widowed</bookmark_value><bookmark_value>widowed brackets</bookmark_value><bookmark_value>orphaned brackets</bookmark_value>"
msgstr "<bookmark_value>claudàtors; al $[officename] Math</bookmark_value><bookmark_value>claudàtors; parèntesis (Math)</bookmark_value><bookmark_value>parèntesis (Math)</bookmark_value><bookmark_value>claudàtors; claudàtors (Math)</bookmark_value><bookmark_value>claudàtors; claudàtors dobles (Math)</bookmark_value><bookmark_value>claus al %PRODUCTNAME Math</bookmark_value><bookmark_value>claudàtors; parèntesis angulars (Math)</bookmark_value><bookmark_value>claudàtors; claudàtors d'operador (Math)</bookmark_value><bookmark_value>claudàtors; parèntesis angulars amb operador</bookmark_value><bookmark_value>claudàtors; claudàtors d'agrupament</bookmark_value><bookmark_value>claudàtors d'agrupament</bookmark_value><bookmark_value>parèntesis</bookmark_value><bookmark_value>claudàtors</bookmark_value><bookmark_value>claudàtors dobles; dimensionables</bookmark_value><bookmark_value>claus dimensionables</bookmark_value><bookmark_value>parèntesis dimensionables</bookmark_value><bookmark_value>línies dimensionables amb arrodoniment a l'alça</bookmark_value><bookmark_value>pleques</bookmark_value><bookmark_value>claudàtors; dimensionables</bookmark_value><bookmark_value>claudàtors d'operador</bookmark_value><bookmark_value>claudàtors d'arrodoniment a la baixa</bookmark_value><bookmark_value>línies; amb límits</bookmark_value><bookmark_value>claudàtors d'arrodoniment a l'alça; línies amb</bookmark_value><bookmark_value>línies; dimensionables</bookmark_value><bookmark_value>claudàtors d'arrodoniment a l'alça;línies dimensionables amb</bookmark_value><bookmark_value>claudàtors; únics, sense funció d'agrupament</bookmark_value><bookmark_value>claudàtors únics sense funció d'agrupament</bookmark_value><bookmark_value>claudàtors;vidus</bookmark_value><bookmark_value>claudàtors vidus</bookmark_value><bookmark_value>claudàtors orfes</bookmark_value>"
-#. 7oGGG
+#. Vx3c9
#: 03090500.xhp
msgctxt ""
"03090500.xhp\n"
"hd_id3153153\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090500.xhp\" name=\"Brackets\">Brackets</link>"
-msgstr "<link href=\"text/smath/01/03090500.xhp\" name=\"Claudàtors\">Claudàtors</link>"
+msgid "<link href=\"text/smath/01/03090500.xhp\">Brackets</link>"
+msgstr "<link href=\"text/smath/01/03090500.xhp\">Claudàtors</link>"
-#. EhUo8
+#. g6x9T
#: 03090500.xhp
msgctxt ""
"03090500.xhp\n"
"par_id3147258\n"
"help.text"
-msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. zusZw
@@ -3815,14 +3815,14 @@ msgctxt ""
msgid "Be sure to put spaces (gaps) between elements when entering them directly in the Commands window. This ensures that the correct structure is recognized."
msgstr "Assegureu-vos de deixar espais (separacions) entre els elements quan els introduïu directament a la finestra d'ordes per tal que el programa reconegui l'estructura correcta."
-#. bPHyr
+#. EBgFL
#: 03090500.xhp
msgctxt ""
"03090500.xhp\n"
"par_id3153198\n"
"help.text"
-msgid "Useful information about <link href=\"text/smath/01/03091200.xhp\" name=\"indexes and exponents\">indexes and exponents</link> as well as <link href=\"text/smath/01/03091400.xhp\" name=\"scaling\">scaling</link> helps you structure formulas effectively. For more information about brackets, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Groups\">Brackets and Grouping</link>."
-msgstr "Informació útil sobre <link href=\"text/smath/01/03091200.xhp\" name=\"índexs i exponents\">índexs i exponents</link> i <link href=\"text/smath/01/03091400.xhp\" name=\"dimensionament\">dimensionament</link> que vos ajuda a estructurar les fórmules de manera efectiva. Vegeu <link href=\"text/smath/01/03091100.xhp\" name=\"Claudàtors i agrupament\">Claudàtors i agrupament</link> per obtindre més informació sobre els claudàtors."
+msgid "Useful information about <link href=\"text/smath/01/03091200.xhp\">indexes and exponents</link> as well as <link href=\"text/smath/01/03091400.xhp\">scaling</link> helps you structure formulas effectively. For more information about brackets, see <link href=\"text/smath/01/03091100.xhp\">Brackets and Grouping</link>."
+msgstr "Informació útil sobre <link href=\"text/smath/01/03091200.xhp\">índexs i exponents</link> i <link href=\"text/smath/01/03091400.xhp\">dimensionament</link> que vos ajuda a estructurar les fórmules de manera efectiva. Vegeu <link href=\"text/smath/01/03091100.xhp\">Claudàtors i agrupament</link> per obtindre més informació sobre els claudàtors."
#. YiWxc
#: 03090600.xhp
@@ -3842,22 +3842,22 @@ msgctxt ""
msgid "<bookmark_value>attributes; in %PRODUCTNAME Math</bookmark_value><bookmark_value>formulas; attributes in</bookmark_value><bookmark_value>accents; in %PRODUCTNAME Math</bookmark_value><bookmark_value>attributes; accents</bookmark_value><bookmark_value>vector arrows as attributes</bookmark_value><bookmark_value>harpoon arrow attribute</bookmark_value><bookmark_value>tilde as attribute</bookmark_value><bookmark_value>circumflex attribute</bookmark_value><bookmark_value>bold attribute</bookmark_value><bookmark_value>italic attribute in %PRODUCTNAME Math</bookmark_value><bookmark_value>resizing;fonts</bookmark_value><bookmark_value>scaling;fonts</bookmark_value><bookmark_value>attributes; changing fonts</bookmark_value><bookmark_value>changing; fonts</bookmark_value><bookmark_value>attributes; colored characters</bookmark_value><bookmark_value>colored characters</bookmark_value><bookmark_value>attributes; changing defaults</bookmark_value><bookmark_value>circle attribute</bookmark_value><bookmark_value>double dot attribute</bookmark_value><bookmark_value>dot attribute</bookmark_value><bookmark_value>line through attribute</bookmark_value><bookmark_value>line above attribute</bookmark_value><bookmark_value>reversed circumflex attribute</bookmark_value><bookmark_value>overline attribute</bookmark_value><bookmark_value>wide vector arrow attribute</bookmark_value><bookmark_value>wide harpoon arrow attribute</bookmark_value><bookmark_value>wide tilde attribute</bookmark_value><bookmark_value>wide circumflex attribute</bookmark_value><bookmark_value>underline attribute</bookmark_value><bookmark_value>triple dot attribute</bookmark_value><bookmark_value>transparent character as attribute</bookmark_value>"
msgstr ""
-#. igYdt
+#. SPuUg
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"hd_id3154011\n"
"help.text"
-msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03090600.xhp\" name=\"Attributes\">Attributes</link> </variable>"
+msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03090600.xhp\">Attributes</link> </variable>"
msgstr ""
-#. mFqph
+#. YES53
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3145802\n"
"help.text"
-msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. LGFaf
@@ -4553,14 +4553,14 @@ msgctxt ""
msgid "<emph>Change font</emph>"
msgstr "<emph>Canvia el tipus de lletra</emph>"
-#. G2BdW
+#. NYind
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3154371\n"
"help.text"
-msgid "<ahelp hid=\"HID_SMA_FONTXY\">Inserts a command for changing the font type, with two placeholders. Replace the first placeholder with the name of one of the <link href=\"text/smath/01/05010000.xhp\" name=\"custom fonts\">custom fonts</link>, <emph>Serif, Sans</emph> or <emph>Fixed</emph>. Replace the second placeholder with the text.</ahelp> You can also type <emph>font <?> <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_FONTXY\">Insereix una orde per canviar el tipus de lletra amb dos espais reservats. Reemplaceu el primer espai reservat amb el nom d'un dels <link href=\"text/smath/01/05010000.xhp\" name=\"tipus de lletra personalitzats\">tipus de lletra personalitzats</link>: <emph>Serif</emph>, <emph>Sans</emph> o <emph>Amplària fixa</emph>. Reemplaceu el segon espai reservat amb el text.</ahelp> També podeu escriure <emph>font <?> <?></emph> directament a la finestra d'<emph>ordes</emph>."
+msgid "<ahelp hid=\"HID_SMA_FONTXY\">Inserts a command for changing the font type, with two placeholders. Replace the first placeholder with the name of one of the <link href=\"text/smath/01/05010000.xhp\">custom fonts</link>, <emph>Serif, Sans</emph> or <emph>Fixed</emph>. Replace the second placeholder with the text.</ahelp> You can also type <emph>font <?> <?></emph> directly in the <emph>Commands</emph> window."
+msgstr "<ahelp hid=\"HID_SMA_FONTXY\">Insereix una orde per canviar el tipus de lletra amb dos espais reservats. Reemplaceu el primer espai reservat amb el nom d'un dels <link href=\"text/smath/01/05010000.xhp\">tipus de lletra personalitzats</link>: <emph>Serif</emph>, <emph>Sans</emph> o <emph>Amplària fixa</emph>. Reemplaceu el segon espai reservat amb el text.</ahelp> També podeu escriure <emph>font <?> <?></emph> directament a la finestra d'<emph>ordes</emph>."
#. 2E3CX
#: 03090600.xhp
@@ -4580,14 +4580,14 @@ msgctxt ""
msgid "The <emph>nbold</emph> and <emph>nitalic</emph> commands remove the bold or italic default fonts of formula components. For example, remove italics from the x in the formula 5 x + 3=28 by typing <emph>nitalic</emph> before the x as in <emph>5 nitalic x + 3=28</emph>."
msgstr "Les ordes <emph>nbold</emph> i <emph>nitalic</emph> suprimeixen la formatació respectiva en negreta o cursiva dels tipus de lletra per defecte per als components d'una fórmula. Per exemple, per treure la cursiva de la x a la fórmula 5 x + 3=28 escriviu <emph>nitalic</emph> davant de la x: <emph>5 nitalic x + 3=28</emph>."
-#. sRp2Q
+#. VcdGT
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3150612\n"
"help.text"
-msgid "The <link href=\"text/smath/01/03091300.xhp\" name=\"attributes\">attributes</link> \"acute\", \"bar\", \"breve\", \"check\", \"circle\", \"dot\", \"ddot\", \"dddot\", \"grave\", \"hat\", \"tilde\" and \"vec\" have fixed sizes. Their width or length cannot be adjusted when positioned over a long symbol."
-msgstr "Els <link href=\"text/smath/01/03091300.xhp\" name=\"atributs\">atributs</link> \"acute\", \"bar\", \"breve\", \"check\", \"circle\", \"dot\", \"ddot\", \"dddot\", \"grave\", \"hat\", \"tilde\" i \"vec\" són de mida fixa, per la qual cosa no se'n pot ajustar l'amplària ni l'alçària quan acompanyen un símbol llarg."
+msgid "The <link href=\"text/smath/01/03091300.xhp\">attributes</link> \"acute\", \"bar\", \"breve\", \"check\", \"circle\", \"dot\", \"ddot\", \"dddot\", \"grave\", \"hat\", \"tilde\" and \"vec\" have fixed sizes. Their width or length cannot be adjusted when positioned over a long symbol."
+msgstr "Els <link href=\"text/smath/01/03091300.xhp\">atributs</link> \"acute\", \"bar\", \"breve\", \"check\", \"circle\", \"dot\", \"ddot\", \"dddot\", \"grave\", \"hat\", \"tilde\" i \"vec\" són de mida fixa, per la qual cosa no se'n pot ajustar l'amplària ni l'alçària quan acompanyen un símbol llarg."
#. byxQD
#: 03090600.xhp
@@ -4607,23 +4607,23 @@ msgctxt ""
msgid "Note that some entries require spaces for the correct structure. This is especially true when you specify attributes with fixed values instead of placeholders."
msgstr "Tingueu en compte que algunes entrades necessiten espais perquè l'estructura siga correcta, sobretot en cas que especifiqueu atributs amb valors fixos en lloc d'espais reservats."
-#. mPEEx
+#. WGkbF
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "For more information about formatting in %PRODUCTNAME Math, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link>."
-msgstr "Vegeu <link href=\"text/smath/01/03091100.xhp\" name=\"Claudàtors i agrupament\">Claudàtors i agrupament</link> per a obtindre més informació quant a la formatació al %PRODUCTNAME Calc."
+msgid "For more information about formatting in %PRODUCTNAME Math, see <link href=\"text/smath/01/03091100.xhp\">Brackets and Grouping</link>."
+msgstr "Vegeu <link href=\"text/smath/01/03091100.xhp\">Claudàtors i agrupament</link> per a obtindre més informació quant a la formatació al %PRODUCTNAME Calc."
-#. 5WAfz
+#. un8c6
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3154221\n"
"help.text"
-msgid "Information on <link href=\"text/smath/01/03091300.xhp\" name=\"attributes\">attributes</link>, <link href=\"text/smath/01/03091200.xhp\" name=\"indexes and exponents\">indexes and exponents</link>, and <link href=\"text/smath/01/03091400.xhp\" name=\"scaling\">scaling</link> can help you structure your documents more efficiently."
-msgstr "La informació relativa als <link href=\"text/smath/01/03091300.xhp\" name=\"atributs\">atributs</link>, els <link href=\"text/smath/01/03091200.xhp\" name=\"índexs i exponents\">índexs i exponents</link> i el <link href=\"text/smath/01/03091400.xhp\" name=\"redimensionament\">redimensionament</link> vos pot ajudar a estructurar els vostres documents de manera més eficient."
+msgid "Information on <link href=\"text/smath/01/03091300.xhp\">attributes</link>, <link href=\"text/smath/01/03091200.xhp\">indexes and exponents</link>, and <link href=\"text/smath/01/03091400.xhp\">scaling</link> can help you structure your documents more efficiently."
+msgstr "La informació relativa als <link href=\"text/smath/01/03091300.xhp\">atributs</link>, els <link href=\"text/smath/01/03091200.xhp\">índexs i exponents</link> i el <link href=\"text/smath/01/03091400.xhp\">redimensionament</link> vos pot ajudar a estructurar els vostres documents de manera més eficient."
#. iK2Bq
#: 03090700.xhp
@@ -4643,22 +4643,22 @@ msgctxt ""
msgid "<bookmark_value>formatting;in $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formatting</bookmark_value><bookmark_value>superscripts</bookmark_value><bookmark_value>binomials</bookmark_value><bookmark_value>vertical elements</bookmark_value><bookmark_value>lines; inserting in formulas</bookmark_value><bookmark_value>subscripts</bookmark_value><bookmark_value>stacks</bookmark_value><bookmark_value>vertical arrangement of elements</bookmark_value><bookmark_value>small gaps</bookmark_value><bookmark_value>alignment; left (Math)</bookmark_value><bookmark_value>left-justified alignment (Math)</bookmark_value><bookmark_value>alignment; horizontally centered (Math)</bookmark_value><bookmark_value>centered horizontally; alignment (Math)</bookmark_value><bookmark_value>alignment; right (Math)</bookmark_value><bookmark_value>right-justified alignment in %PRODUCTNAME Math</bookmark_value><bookmark_value>matrices; arranging</bookmark_value><bookmark_value>spaces in formulas</bookmark_value><bookmark_value>gaps in formulas</bookmark_value><bookmark_value>inserting; gaps</bookmark_value><bookmark_value>arranging;matrices</bookmark_value><bookmark_value>formulas;aligning</bookmark_value><bookmark_value>aligning formulas</bookmark_value>"
msgstr "<bookmark_value>formatació; al $[officename] Math</bookmark_value><bookmark_value>$[officename] Math; formatació</bookmark_value><bookmark_value>superíndexs</bookmark_value><bookmark_value>binomis</bookmark_value><bookmark_value>elements verticals</bookmark_value><bookmark_value>línies; inserció en fórmules</bookmark_value><bookmark_value>subíndexs</bookmark_value><bookmark_value>piles</bookmark_value><bookmark_value>configuració vertical d'elements</bookmark_value><bookmark_value>separacions petites</bookmark_value><bookmark_value>alineació; esquerra (Math)</bookmark_value><bookmark_value>alineació justificada a l'esquerra (Math)</bookmark_value><bookmark_value>alineació; centrada horitzontalment (Math)</bookmark_value><bookmark_value>centrada horitzontalment; alineació (Math)</bookmark_value><bookmark_value>alineació; dreta (Math)</bookmark_value><bookmark_value>alineació justificada a la dreta al %PRODUCTNAME Math</bookmark_value><bookmark_value>matrius; configuració</bookmark_value><bookmark_value>espais en fórmules</bookmark_value><bookmark_value>separacions en fórmules</bookmark_value><bookmark_value>inserció; separacions</bookmark_value><bookmark_value>configuració;matrius</bookmark_value><bookmark_value>fórmules;alineació</bookmark_value><bookmark_value>alineació de fórmules</bookmark_value>"
-#. bzxC7
+#. xe4YA
#: 03090700.xhp
msgctxt ""
"03090700.xhp\n"
"hd_id3153150\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090700.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/smath/01/03090700.xhp\" name=\"Formats\">Formats</link>"
+msgid "<link href=\"text/smath/01/03090700.xhp\">Format</link>"
+msgstr "<link href=\"text/smath/01/03090700.xhp\">Formats</link>"
-#. ZG9A4
+#. AtbE2
#: 03090700.xhp
msgctxt ""
"03090700.xhp\n"
"par_id3147262\n"
"help.text"
-msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
+msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link> of the <emph>Commands</emph> window."
msgstr ""
#. oGTCQ
@@ -5210,23 +5210,23 @@ msgctxt ""
msgid "When typing information in the Commands window, note that some formats require spaces for the correct structure. This is especially true when entering values (for example, a lsup{3}) instead of placeholders."
msgstr "Quan escriviu informació a la finestra d'ordes, tingueu en compte que alguns formats requereixen espais perquè l'estructura siga correcta, sobretot si introduïu valors (per exemple, a lsup{3}) en lloc d'espais reservats."
-#. S84CR
+#. JoSm8
#: 03090700.xhp
msgctxt ""
"03090700.xhp\n"
"par_id3148708\n"
"help.text"
-msgid "Click <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link> for more information about formatting in <emph>$[officename] Math</emph>."
-msgstr "Feu clic a <link href=\"text/smath/01/03091100.xhp\" name=\"Claudàtors i agrupament\">Claudàtors i agrupament</link> per obtindre més informació sobre la formatació al <emph>$[officename] Math</emph>."
+msgid "Click <link href=\"text/smath/01/03091100.xhp\">Brackets and Grouping</link> for more information about formatting in <emph>$[officename] Math</emph>."
+msgstr "Feu clic a <link href=\"text/smath/01/03091100.xhp\">Claudàtors i agrupament</link> per obtindre més informació sobre la formatació al <emph>$[officename] Math</emph>."
-#. 6MMfE
+#. spENU
#: 03090700.xhp
msgctxt ""
"03090700.xhp\n"
"par_id3155340\n"
"help.text"
-msgid "Useful information about <link href=\"text/smath/01/03091200.xhp\" name=\"Indexes and Exponents\">Indexes and Exponents</link> and <link href=\"text/smath/01/03091400.xhp\" name=\"Scaling\">Scaling</link>, helps you organize your document in the best possible way."
-msgstr "Informació útil sobre els <link href=\"text/smath/01/03091200.xhp\" name=\"Índexs i exponents\">índexs i exponents</link> i el <link href=\"text/smath/01/03091400.xhp\" name=\"Redimensionament\">redimensionament</link> que vos ajudarà a organitzar el vostre document de manera òptima."
+msgid "Useful information about <link href=\"text/smath/01/03091200.xhp\">Indexes and Exponents</link> and <link href=\"text/smath/01/03091400.xhp\">Scaling</link>, helps you organize your document in the best possible way."
+msgstr "Informació útil sobre els <link href=\"text/smath/01/03091200.xhp\">índexs i exponents</link> i el <link href=\"text/smath/01/03091400.xhp\">redimensionament</link> que vos ajudarà a organitzar el vostre document de manera òptima."
#. PGyUF
#: 03090800.xhp
@@ -5246,22 +5246,22 @@ msgctxt ""
msgid "<bookmark_value>set operations in $[officename]Math</bookmark_value><bookmark_value>sets of numbers</bookmark_value><bookmark_value>included in set operator</bookmark_value><bookmark_value>not included in set operator</bookmark_value><bookmark_value>owns command</bookmark_value><bookmark_value>includes set operator</bookmark_value><bookmark_value>empty set</bookmark_value><bookmark_value>intersection of sets</bookmark_value><bookmark_value>union of sets</bookmark_value><bookmark_value>difference set operator</bookmark_value><bookmark_value>quotient set</bookmark_value><bookmark_value>cardinal numbers</bookmark_value><bookmark_value>subset set operators</bookmark_value><bookmark_value>superset set operators</bookmark_value><bookmark_value>not subset set operators</bookmark_value><bookmark_value>not superset set operators</bookmark_value><bookmark_value>natural numbers</bookmark_value><bookmark_value>whole numbers</bookmark_value><bookmark_value>real numbers</bookmark_value><bookmark_value>complex numbers; set</bookmark_value><bookmark_value>rational numbers</bookmark_value>"
msgstr "<bookmark_value>operacions amb conjunts al $[officename]Math</bookmark_value><bookmark_value>conjunts de nombres</bookmark_value><bookmark_value>operador de conjunts inclòs a</bookmark_value><bookmark_value>operador de conjunts no inclòs</bookmark_value><bookmark_value>orde owns</bookmark_value><bookmark_value>operador de conjunts inclou</bookmark_value><bookmark_value>conjunt buit</bookmark_value><bookmark_value>intersecció de conjunts</bookmark_value><bookmark_value>unió de conjunts</bookmark_value><bookmark_value>operador de conjunts diferència</bookmark_value><bookmark_value>conjunt quocient</bookmark_value><bookmark_value>nombres cardinals</bookmark_value><bookmark_value>operadors de conjunts subconjunt</bookmark_value><bookmark_value>operadors de conjunts superconjunt</bookmark_value><bookmark_value>operadors de conjunts no subconjunt</bookmark_value><bookmark_value>operadors de conjunts no superconjunt</bookmark_value><bookmark_value>nombres naturals</bookmark_value><bookmark_value>nombres enters</bookmark_value><bookmark_value>nombres reals</bookmark_value><bookmark_value>nombres complexos; conjunt</bookmark_value><bookmark_value>nombres racionals</bookmark_value>"
-#. cGv3k
+#. NNmw2
#: 03090800.xhp
msgctxt ""
"03090800.xhp\n"
"hd_id3156318\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090800.xhp\" name=\"Set Operations\">Set Operations</link>"
-msgstr "<link href=\"text/smath/01/03090800.xhp\" name=\"Operacions amb conjunts\">Operacions amb conjunts</link>"
+msgid "<link href=\"text/smath/01/03090800.xhp\">Set Operations</link>"
+msgstr "<link href=\"text/smath/01/03090800.xhp\">Operacions amb conjunts</link>"
-#. X4op9
+#. QygS6
#: 03090800.xhp
msgctxt ""
"03090800.xhp\n"
"par_id3154641\n"
"help.text"
-msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
+msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#contextmenu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
msgstr ""
#. CJVPF
@@ -5903,14 +5903,14 @@ msgctxt ""
msgid "<bookmark_value>examples;$[officename] Math formulas</bookmark_value><bookmark_value>$[officename] Math;examples</bookmark_value><bookmark_value>formulas;examples</bookmark_value>"
msgstr "<bookmark_value>exemples;fórmules del $[officename] Math</bookmark_value><bookmark_value>$[officename] Math;exemples</bookmark_value><bookmark_value>fórmules;exemples</bookmark_value>"
-#. ugDLc
+#. LQkk5
#: 03090900.xhp
msgctxt ""
"03090900.xhp\n"
"hd_id3151265\n"
"help.text"
-msgid "<variable id=\"examples\"><link href=\"text/smath/01/03090900.xhp\" name=\"$[officename] Math Examples\">$[officename] Math Examples</link></variable>"
-msgstr "<variable id=\"examples\"><link href=\"text/smath/01/03090900.xhp\" name=\"Exemples del $[officename] Math\">Exemples del $[officename] Math</link></variable>"
+msgid "<variable id=\"examples\"><link href=\"text/smath/01/03090900.xhp\">$[officename] Math Examples</link></variable>"
+msgstr "<variable id=\"examples\"><link href=\"text/smath/01/03090900.xhp\">Exemples del $[officename] Math</link></variable>"
#. vVC2F
#: 03090900.xhp
@@ -5930,14 +5930,14 @@ msgctxt ""
msgid "Symbols with Indices"
msgstr "Símbols amb índexs"
-#. sFPur
+#. eJg2n
#: 03090901.xhp
msgctxt ""
"03090901.xhp\n"
"hd_id3156382\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090901.xhp\" name=\"Symbols with Indices\">Symbols with Indices</link>"
-msgstr "<link href=\"text/smath/01/03090901.xhp\" name=\"Símbols amb índexs\">Símbols amb índexs</link>"
+msgid "<link href=\"text/smath/01/03090901.xhp\">Symbols with Indices</link>"
+msgstr "<link href=\"text/smath/01/03090901.xhp\">Símbols amb índexs</link>"
#. QKn9S
#: 03090901.xhp
@@ -5966,14 +5966,14 @@ msgctxt ""
msgid "Symbols with Indices"
msgstr "Símbols amb índexs"
-#. cubNC
+#. BVGE9
#: 03090902.xhp
msgctxt ""
"03090902.xhp\n"
"hd_id3155959\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090902.xhp\" name=\"Symbols with Indices\">Symbols with Indices</link>"
-msgstr "<link href=\"text/smath/01/03090902.xhp\" name=\"Símbols amb índexs\">Símbols amb índexs</link>"
+msgid "<link href=\"text/smath/01/03090902.xhp\">Symbols with Indices</link>"
+msgstr "<link href=\"text/smath/01/03090902.xhp\">Símbols amb índexs</link>"
#. eBNEC
#: 03090902.xhp
@@ -6002,14 +6002,14 @@ msgctxt ""
msgid "Symbols with Indices"
msgstr "Símbols amb índexs"
-#. C2jv6
+#. X8QXM
#: 03090903.xhp
msgctxt ""
"03090903.xhp\n"
"hd_id3155959\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090903.xhp\" name=\"Symbols with Indices\">Symbols with Indices</link>"
-msgstr "<link href=\"text/smath/01/03090903.xhp\" name=\"Símbols amb índexs\">Símbols amb índexs</link>"
+msgid "<link href=\"text/smath/01/03090903.xhp\">Symbols with Indices</link>"
+msgstr "<link href=\"text/smath/01/03090903.xhp\">Símbols amb índexs</link>"
#. Fdmr4
#: 03090903.xhp
@@ -6038,14 +6038,14 @@ msgctxt ""
msgid "Matrix with Varying Font Sizes"
msgstr "Matriu amb mides de lletra diferents"
-#. KCLG6
+#. q4sqE
#: 03090904.xhp
msgctxt ""
"03090904.xhp\n"
"hd_id3155960\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090904.xhp\" name=\"Matrix with Varying Font Sizes\">Matrix with Varying Font Sizes</link>"
-msgstr "<link href=\"text/smath/01/03090904.xhp\" name=\"Matriu amb mides de lletra diferents\">Matriu amb mides de lletra diferents</link>"
+msgid "<link href=\"text/smath/01/03090904.xhp\">Matrix with Varying Font Sizes</link>"
+msgstr "<link href=\"text/smath/01/03090904.xhp\">Matriu amb mides de lletra diferents</link>"
#. GGeZu
#: 03090904.xhp
@@ -6074,14 +6074,14 @@ msgctxt ""
msgid "Matrix"
msgstr "Matriu"
-#. CCV2a
+#. 88v7J
#: 03090905.xhp
msgctxt ""
"03090905.xhp\n"
"hd_id3154702\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090905.xhp\" name=\"Matrix\">Matrix</link>"
-msgstr "<link href=\"text/smath/01/03090905.xhp\" name=\"Matriu\">Matriu</link>"
+msgid "<link href=\"text/smath/01/03090905.xhp\">Matrix</link>"
+msgstr "<link href=\"text/smath/01/03090905.xhp\">Matriu</link>"
#. FpNBw
#: 03090905.xhp
@@ -6110,14 +6110,14 @@ msgctxt ""
msgid "Matrix in Bold Font"
msgstr "Matriu en negreta"
-#. Xkt5A
+#. xfiDM
#: 03090906.xhp
msgctxt ""
"03090906.xhp\n"
"hd_id3154704\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090906.xhp\" name=\"Matrix in Bold Font\">Matrix in Bold Font</link>"
-msgstr "<link href=\"text/smath/01/03090906.xhp\" name=\"Matriu en negreta\">Matriu en negreta</link>"
+msgid "<link href=\"text/smath/01/03090906.xhp\">Matrix in Bold Font</link>"
+msgstr "<link href=\"text/smath/01/03090906.xhp\">Matriu en negreta</link>"
#. xkkHE
#: 03090906.xhp
@@ -6146,14 +6146,14 @@ msgctxt ""
msgid "Functions"
msgstr "Funcions"
-#. 5SHwK
+#. T6w6q
#: 03090907.xhp
msgctxt ""
"03090907.xhp\n"
"hd_id3155961\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090907.xhp\" name=\"Functions\">Functions</link>"
-msgstr "<link href=\"text/smath/01/03090907.xhp\" name=\"Funcions\">Funcions</link>"
+msgid "<link href=\"text/smath/01/03090907.xhp\">Functions</link>"
+msgstr "<link href=\"text/smath/01/03090907.xhp\">Funcions</link>"
#. Ac6Zt
#: 03090907.xhp
@@ -6182,14 +6182,14 @@ msgctxt ""
msgid "Square Root"
msgstr "Arrel quadrada"
-#. Kcxnp
+#. VWj3Q
#: 03090908.xhp
msgctxt ""
"03090908.xhp\n"
"hd_id3154704\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090908.xhp\" name=\"Square Root\">Square Root</link>"
-msgstr "<link href=\"text/smath/01/03090908.xhp\" name=\"Arrel quadrada\">Arrel quadrada</link>"
+msgid "<link href=\"text/smath/01/03090908.xhp\">Square Root</link>"
+msgstr "<link href=\"text/smath/01/03090908.xhp\">Arrel quadrada</link>"
#. ypN5N
#: 03090908.xhp
@@ -6227,14 +6227,14 @@ msgctxt ""
msgid "<bookmark_value>font sizes;example</bookmark_value><bookmark_value>sum range example</bookmark_value><bookmark_value>examples ;integral</bookmark_value><bookmark_value>range of integral example</bookmark_value><bookmark_value>integrals;example</bookmark_value>"
msgstr "<bookmark_value>mides dels tipus de lletra;exemple</bookmark_value><bookmark_value>exemple d'interval de suma</bookmark_value><bookmark_value>exemples;integral</bookmark_value><bookmark_value>exemple d'interval d'integral</bookmark_value><bookmark_value>integrals;exemple</bookmark_value>"
-#. rhESa
+#. koMjT
#: 03090909.xhp
msgctxt ""
"03090909.xhp\n"
"hd_id3155959\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090909.xhp\" name=\"Fonts and Font Sizes\">Integral and Sum Ranges, Font Size</link>"
-msgstr "<link href=\"text/smath/01/03090909.xhp\" name=\"Tipus de lletra i mides dels tipus de lletra\">Intervals d'integrals i sumes, mida del tipus de lletra</link>"
+msgid "<link href=\"text/smath/01/03090909.xhp\">Integral and Sum Ranges, Font Size</link>"
+msgstr "<link href=\"text/smath/01/03090909.xhp\">Intervals d'integrals i sumes, mida del tipus de lletra</link>"
#. 5JvGd
#: 03090909.xhp
@@ -6263,14 +6263,14 @@ msgctxt ""
msgid "Attributes"
msgstr "Atributs"
-#. RNLb3
+#. i7bMQ
#: 03090910.xhp
msgctxt ""
"03090910.xhp\n"
"hd_id3154702\n"
"help.text"
-msgid "<link href=\"text/smath/01/03090910.xhp\" name=\"Attributes\">Attributes</link>"
-msgstr "<link href=\"text/smath/01/03090910.xhp\" name=\"Atributs\">Atributs</link>"
+msgid "<link href=\"text/smath/01/03090910.xhp\">Attributes</link>"
+msgstr "<link href=\"text/smath/01/03090910.xhp\">Atributs</link>"
#. ZXcKG
#: 03090910.xhp
@@ -6308,14 +6308,14 @@ msgctxt ""
msgid "<bookmark_value>brackets and grouping in Math</bookmark_value> <bookmark_value>grouping and brackets in Math</bookmark_value>"
msgstr "<bookmark_value>claudàtors i agrupament al Math</bookmark_value><bookmark_value>agrupament i claudàtors al Math</bookmark_value>"
-#. HSQZM
+#. W96Cm
#: 03091100.xhp
msgctxt ""
"03091100.xhp\n"
"hd_id3147341\n"
"help.text"
-msgid "<link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link>"
-msgstr "<link href=\"text/smath/01/03091100.xhp\" name=\"Claudàtors i agrupament\">Claudàtors i agrupament</link>"
+msgid "<link href=\"text/smath/01/03091100.xhp\">Brackets and Grouping</link>"
+msgstr "<link href=\"text/smath/01/03091100.xhp\">Claudàtors i agrupament</link>"
#. QACAR
#: 03091100.xhp
@@ -6641,14 +6641,14 @@ msgctxt ""
msgid "<bookmark_value>indexes and exponents in $[officename] Math</bookmark_value><bookmark_value>exponents and indexes in $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>índexs i exponents al $[officename] Math</bookmark_value><bookmark_value>exponents i índexs al $[officename] Math</bookmark_value>"
-#. QgSYn
+#. TMm9X
#: 03091200.xhp
msgctxt ""
"03091200.xhp\n"
"hd_id3150746\n"
"help.text"
-msgid "<link href=\"text/smath/01/03091200.xhp\" name=\"Indexes and Exponents\">Indexes and Exponents</link>"
-msgstr "<link href=\"text/smath/01/03091200.xhp\" name=\"Índexs i exponents\">Índexs i exponents</link>"
+msgid "<link href=\"text/smath/01/03091200.xhp\">Indexes and Exponents</link>"
+msgstr "<link href=\"text/smath/01/03091200.xhp\">Índexs i exponents</link>"
#. zMeDt
#: 03091200.xhp
@@ -6776,14 +6776,14 @@ msgctxt ""
msgid "<bookmark_value>attributes; additional information</bookmark_value>"
msgstr "<bookmark_value>atributs; informació addicional</bookmark_value>"
-#. cDCDS
+#. dd7S9
#: 03091300.xhp
msgctxt ""
"03091300.xhp\n"
"hd_id3148839\n"
"help.text"
-msgid "<link href=\"text/smath/01/03091300.xhp\" name=\"Attributes\">Attributes</link>"
-msgstr "<link href=\"text/smath/01/03091300.xhp\" name=\"Atributs\">Atributs</link>"
+msgid "<link href=\"text/smath/01/03091300.xhp\">Attributes</link>"
+msgstr "<link href=\"text/smath/01/03091300.xhp\">Atributs</link>"
#. B9j6D
#: 03091300.xhp
@@ -6839,14 +6839,14 @@ msgctxt ""
msgid "<bookmark_value>scaling; in %PRODUCTNAME Math</bookmark_value>"
msgstr "<bookmark_value>redimensionament; al %PRODUCTNAME Math</bookmark_value>"
-#. R6fkG
+#. YFrTP
#: 03091400.xhp
msgctxt ""
"03091400.xhp\n"
"hd_id3153923\n"
"help.text"
-msgid "<link href=\"text/smath/01/03091400.xhp\" name=\"Scaling\">Scaling</link>"
-msgstr "<link href=\"text/smath/01/03091400.xhp\" name=\"Redimensionament\">Redimensionament</link>"
+msgid "<link href=\"text/smath/01/03091400.xhp\">Scaling</link>"
+msgstr "<link href=\"text/smath/01/03091400.xhp\">Redimensionament</link>"
#. n356e
#: 03091400.xhp
@@ -6884,14 +6884,14 @@ msgctxt ""
msgid "Brackets preceded by \"left\" or \"right\", however, are always adjusted to the argument. See \"left(left(left(a right)right)right)\", \"left(stack{a#b#c}right)\", \"left(a over b right)\"."
msgstr "Tanmateix, els claudàtors precedits per \"left\" o \"right\" sempre s'ajusten a l'argument. Vegeu \"left(left(left(a right)right)right)\", \"left(stack{a#b#c}right)\" i \"left(a over b right)\"."
-#. ZFdLF
+#. FSUZi
#: 03091400.xhp
msgctxt ""
"03091400.xhp\n"
"par_id3145206\n"
"help.text"
-msgid "Some <link href=\"text/smath/01/03091300.xhp\" name=\"Attributes\">Attributes</link> have fixed sizes; do not change these if they are placed above a long symbol."
-msgstr "Alguns <link href=\"text/smath/01/03091300.xhp\" name=\"Atributs\">atributs</link> tenen mides fixes; no els modifiqueu si es troben damunt d'un símbol llarg."
+msgid "Some <link href=\"text/smath/01/03091300.xhp\">Attributes</link> have fixed sizes; do not change these if they are placed above a long symbol."
+msgstr "Alguns <link href=\"text/smath/01/03091300.xhp\">atributs</link> tenen mides fixes; no els modifiqueu si es troben damunt d'un símbol llarg."
#. UeRh7
#: 03091400.xhp
@@ -6920,14 +6920,14 @@ msgctxt ""
msgid "<bookmark_value>$[officename] Math;reference list</bookmark_value><bookmark_value>formulas;reference tables</bookmark_value><bookmark_value>reference tables; formulas</bookmark_value><bookmark_value>operators;in Math</bookmark_value>"
msgstr "<bookmark_value>$[officename] Math;llista de referència</bookmark_value><bookmark_value>fórmules;taules de referència</bookmark_value><bookmark_value>taules de referència; fórmules</bookmark_value><bookmark_value>operadors;al Math</bookmark_value>"
-#. FF5Ex
+#. Cegcb
#: 03091500.xhp
msgctxt ""
"03091500.xhp\n"
"hd_id3155961\n"
"help.text"
-msgid "<variable id=\"reference\"><link href=\"text/smath/01/03091500.xhp\" name=\"Formula Reference Tables\">Formula Reference Tables</link></variable>"
-msgstr "<variable id=\"reference\"><link href=\"text/smath/01/03091500.xhp\" name=\"Taules de referència per a les fórmules\">Taules de referència per a les fórmules</link></variable>"
+msgid "<variable id=\"reference\"><link href=\"text/smath/01/03091500.xhp\">Formula Reference Tables</link></variable>"
+msgstr "<variable id=\"reference\"><link href=\"text/smath/01/03091500.xhp\">Taules de referència per a les fórmules</link></variable>"
#. jugiR
#: 03091500.xhp
@@ -6956,14 +6956,14 @@ msgctxt ""
msgid "<bookmark_value>unary operators; list of</bookmark_value><bookmark_value>binary operators; list of</bookmark_value>"
msgstr "<bookmark_value>operadors unaris; llista d'</bookmark_value><bookmark_value>operadors binaris; llista d'</bookmark_value>"
-#. HNCFP
+#. 6SZMh
#: 03091501.xhp
msgctxt ""
"03091501.xhp\n"
"hd_id2897122\n"
"help.text"
-msgid "<variable id=\"unary\"><link href=\"text/smath/01/03091501.xhp\" name=\"Unary and Binary Operators\">Unary and Binary Operators</link></variable>"
-msgstr "<variable id=\"unary\"><link href=\"text/smath/01/03091501.xhp\" name=\"Operadors unaris i binaris\">Operadors unaris i binaris</link></variable>"
+msgid "<variable id=\"unary\"><link href=\"text/smath/01/03091501.xhp\">Unary and Binary Operators</link></variable>"
+msgstr "<variable id=\"unary\"><link href=\"text/smath/01/03091501.xhp\">Operadors unaris i binaris</link></variable>"
#. BZEfQ
#: 03091501.xhp
@@ -7496,14 +7496,14 @@ msgctxt ""
msgid "<bookmark_value>relations operators;list of</bookmark_value>"
msgstr "<bookmark_value>operadors de relacions;llista d'</bookmark_value>"
-#. 5RSXj
+#. BGUbi
#: 03091502.xhp
msgctxt ""
"03091502.xhp\n"
"hd_id2083193\n"
"help.text"
-msgid "<variable id=\"relations\"><link href=\"text/smath/01/03091502.xhp\" name=\"Relations\">Relations</link></variable>"
-msgstr "<variable id=\"relations\"><link href=\"text/smath/01/03091502.xhp\" name=\"Relacions\">Relacions</link></variable>"
+msgid "<variable id=\"relations\"><link href=\"text/smath/01/03091502.xhp\">Relations</link></variable>"
+msgstr "<variable id=\"relations\"><link href=\"text/smath/01/03091502.xhp\">Relacions</link></variable>"
#. U9X43
#: 03091502.xhp
@@ -8180,14 +8180,14 @@ msgctxt ""
msgid "<bookmark_value>set operators;list of</bookmark_value>"
msgstr "<bookmark_value>operadors de conjunts;llista d'</bookmark_value>"
-#. qNtUd
+#. AQhng
#: 03091503.xhp
msgctxt ""
"03091503.xhp\n"
"hd_id4201178\n"
"help.text"
-msgid "<variable id=\"set\"><link href=\"text/smath/01/03091503.xhp\" name=\"set\">Set Operators</link></variable>"
-msgstr "<variable id=\"set\"><link href=\"text/smath/01/03091503.xhp\" name=\"conjunt\">Operadors de conjunts</link></variable>"
+msgid "<variable id=\"set\"><link href=\"text/smath/01/03091503.xhp\">Set Operators</link></variable>"
+msgstr "<variable id=\"set\"><link href=\"text/smath/01/03091503.xhp\">Operadors de conjunts</link></variable>"
#. CwJMi
#: 03091503.xhp
@@ -8648,14 +8648,14 @@ msgctxt ""
msgid "<bookmark_value>functions operators;list of</bookmark_value>"
msgstr "<bookmark_value>operadors de funcions;llista d'</bookmark_value>"
-#. S45FG
+#. kmZEk
#: 03091504.xhp
msgctxt ""
"03091504.xhp\n"
"hd_id645466\n"
"help.text"
-msgid "<variable id=\"functions\"><link href=\"text/smath/01/03091504.xhp\" name=\"Functions\">Functions</link></variable>"
-msgstr "<variable id=\"functions\"><link href=\"text/smath/01/03091504.xhp\" name=\"Funcions\">Funcions</link></variable>"
+msgid "<variable id=\"functions\"><link href=\"text/smath/01/03091504.xhp\">Functions</link></variable>"
+msgstr "<variable id=\"functions\"><link href=\"text/smath/01/03091504.xhp\">Funcions</link></variable>"
#. LQEQi
#: 03091504.xhp
@@ -9170,14 +9170,14 @@ msgctxt ""
msgid "<bookmark_value>operators;list of</bookmark_value>"
msgstr "<bookmark_value>operadors;llista d'</bookmark_value>"
-#. 6FWHr
+#. EUopc
#: 03091505.xhp
msgctxt ""
"03091505.xhp\n"
"hd_id1328165\n"
"help.text"
-msgid "<variable id=\"operators\"><link href=\"text/smath/01/03091505.xhp\" name=\"Operators\">Operators</link></variable>"
-msgstr "<variable id=\"operators\"><link href=\"text/smath/01/03091505.xhp\" name=\"Operadors\">Operadors</link></variable>"
+msgid "<variable id=\"operators\"><link href=\"text/smath/01/03091505.xhp\">Operators</link></variable>"
+msgstr "<variable id=\"operators\"><link href=\"text/smath/01/03091505.xhp\">Operadors</link></variable>"
#. NqJuJ
#: 03091505.xhp
@@ -9485,14 +9485,14 @@ msgctxt ""
msgid "<bookmark_value>attributes; list of</bookmark_value>"
msgstr "<bookmark_value>atributs; llista d'</bookmark_value>"
-#. A7Qst
+#. zQi9B
#: 03091506.xhp
msgctxt ""
"03091506.xhp\n"
"hd_id2846156\n"
"help.text"
-msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03091506.xhp\" name=\"Attributes\">Attributes</link></variable>"
-msgstr "<variable id=\"attributes\"><link href=\"text/smath/01/03091506.xhp\" name=\"Atributs\">Atributs</link></variable>"
+msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03091506.xhp\">Attributes</link></variable>"
+msgstr "<variable id=\"attributes\"><link href=\"text/smath/01/03091506.xhp\">Atributs</link></variable>"
#. DbZDP
#: 03091506.xhp
@@ -9953,14 +9953,14 @@ msgctxt ""
msgid "<bookmark_value>other operators;list of</bookmark_value>"
msgstr "<bookmark_value>altres operadors;llista d'</bookmark_value>"
-#. qCAfC
+#. HozoK
#: 03091507.xhp
msgctxt ""
"03091507.xhp\n"
"hd_id6469313\n"
"help.text"
-msgid "<variable id=\"others\"><link href=\"text/smath/01/03091507.xhp\" name=\"Others\">Others</link></variable>"
-msgstr "<variable id=\"others\"><link href=\"text/smath/01/03091507.xhp\" name=\"Altres\">Altres</link></variable>"
+msgid "<variable id=\"others\"><link href=\"text/smath/01/03091507.xhp\">Others</link></variable>"
+msgstr "<variable id=\"others\"><link href=\"text/smath/01/03091507.xhp\">Altres</link></variable>"
#. uqEMF
#: 03091507.xhp
@@ -10394,14 +10394,14 @@ msgctxt ""
msgid "<bookmark_value>brackets; reference list</bookmark_value>"
msgstr "<bookmark_value>claudàtors; llista de referència</bookmark_value>"
-#. SqsBF
+#. Aocs7
#: 03091508.xhp
msgctxt ""
"03091508.xhp\n"
"hd_id4631488\n"
"help.text"
-msgid "<variable id=\"brackets\"><link href=\"text/smath/01/03091508.xhp\" name=\"Brackets\">Brackets</link></variable>"
-msgstr "<variable id=\"brackets\"><link href=\"text/smath/01/03091508.xhp\" name=\"Claudàtors\">Claudàtors</link></variable>"
+msgid "<variable id=\"brackets\"><link href=\"text/smath/01/03091508.xhp\">Brackets</link></variable>"
+msgstr "<variable id=\"brackets\"><link href=\"text/smath/01/03091508.xhp\">Claudàtors</link></variable>"
#. fPNyP
#: 03091508.xhp
@@ -10907,14 +10907,14 @@ msgctxt ""
msgid "<bookmark_value>formatting; reference list (Math)</bookmark_value>"
msgstr "<bookmark_value>formatació; llista de referència (Math)</bookmark_value>"
-#. HxDK5
+#. 5uYSD
#: 03091509.xhp
msgctxt ""
"03091509.xhp\n"
"hd_id1155735\n"
"help.text"
-msgid "<variable id=\"formatting\"><link href=\"text/smath/01/03091509.xhp\" name=\"Formatting\">Formatting</link></variable>"
-msgstr "<variable id=\"formatting\"><link href=\"text/smath/01/03091509.xhp\" name=\"Formatació\">Formatació</link></variable>"
+msgid "<variable id=\"formatting\"><link href=\"text/smath/01/03091509.xhp\">Formatting</link></variable>"
+msgstr "<variable id=\"formatting\"><link href=\"text/smath/01/03091509.xhp\">Formatació</link></variable>"
#. J6wjz
#: 03091509.xhp
@@ -11258,14 +11258,14 @@ msgctxt ""
msgid "<bookmark_value>mathematical symbols; other</bookmark_value><bookmark_value>real part of complex numbers</bookmark_value><bookmark_value>symbols;for complex numbers</bookmark_value><bookmark_value>partial differentiation symbol</bookmark_value><bookmark_value>infinity symbol</bookmark_value><bookmark_value>Nabla operator</bookmark_value><bookmark_value>there exists symbol</bookmark_value><bookmark_value>there does not exist symbol</bookmark_value><bookmark_value>existence quantor symbol</bookmark_value><bookmark_value>for all symbol</bookmark_value><bookmark_value>universal quantifier symbol</bookmark_value><bookmark_value>h-bar symbol</bookmark_value><bookmark_value>lambda-bar symbol</bookmark_value><bookmark_value>imaginary part of a complex number</bookmark_value><bookmark_value>complex numbers; symbols</bookmark_value><bookmark_value>weierstrass p symbol</bookmark_value><bookmark_value>left arrow symbol</bookmark_value><bookmark_value>right arrow symbol</bookmark_value><bookmark_value>up arrow symbol</bookmark_value><bookmark_value>down arrow symbol</bookmark_value><bookmark_value>arrows;symbols in %PRODUCTNAME Math</bookmark_value><bookmark_value>center dots symbol</bookmark_value><bookmark_value>axis-ellipsis</bookmark_value><bookmark_value>vertical dots symbol</bookmark_value><bookmark_value>diagonal upward dots;symbol</bookmark_value><bookmark_value>diagonal downward dots;symbol</bookmark_value><bookmark_value>epsilon; back</bookmark_value><bookmark_value>back epsilon symbol</bookmark_value><bookmark_value>placeholders; inserting in formulas</bookmark_value><bookmark_value>ellipsis symbols</bookmark_value>"
msgstr "<bookmark_value>símbols matemàtics; altres</bookmark_value><bookmark_value>part real dels nombres complexos</bookmark_value><bookmark_value>símbols;per als nombres complexos</bookmark_value><bookmark_value>símbol de diferenciació parcial</bookmark_value><bookmark_value>símbol d'infinit</bookmark_value><bookmark_value>operador nabla</bookmark_value><bookmark_value>símbol existeix</bookmark_value><bookmark_value>símbol de quantificador existencial</bookmark_value><bookmark_value>símbol per a tots</bookmark_value><bookmark_value>símbol de quantificador universal</bookmark_value><bookmark_value>símbol h barrada</bookmark_value><bookmark_value>símbol lambda barrada</bookmark_value><bookmark_value>part imaginària d'un nombre complex</bookmark_value><bookmark_value>nombres complexos; símbols</bookmark_value><bookmark_value>símbol p de Weierstrass</bookmark_value><bookmark_value>símbol de fletxa esquerra</bookmark_value><bookmark_value>símbol de fletxa dreta</bookmark_value><bookmark_value>símbol de fletxa amunt</bookmark_value><bookmark_value>símbol de fletxa avall</bookmark_value><bookmark_value>fletxes;símbols al %PRODUCTNAME Math</bookmark_value><bookmark_value>símbol de punts al mig</bookmark_value><bookmark_value>el·lipsi d'eix</bookmark_value><bookmark_value>símbol de punts en vertical</bookmark_value><bookmark_value>punts en diagonal cap amunt;símbol</bookmark_value><bookmark_value>punts en diagonal cap avall;símbol</bookmark_value><bookmark_value>èpsilon; inversa</bookmark_value><bookmark_value>símbol d'èpsilon inversa</bookmark_value><bookmark_value>espais reservats; inserció en fórmules</bookmark_value><bookmark_value>símbols d'el·lipsi</bookmark_value>"
-#. GxuFD
+#. cngJr
#: 03091600.xhp
msgctxt ""
"03091600.xhp\n"
"hd_id3149261\n"
"help.text"
-msgid "<link href=\"text/smath/01/03091600.xhp\" name=\"Other Symbols\">Other Symbols</link>"
-msgstr "<link href=\"text/smath/01/03091600.xhp\" name=\"Altres símbols\">Altres símbols</link>"
+msgid "<link href=\"text/smath/01/03091600.xhp\">Other Symbols</link>"
+msgstr "<link href=\"text/smath/01/03091600.xhp\">Altres símbols</link>"
#. ec7zS
#: 03091600.xhp
@@ -11906,14 +11906,14 @@ msgctxt ""
msgid "The list boxes in the <emph>Fonts</emph> dialog display a default font for all elements. To change to a different font, click <emph>Modify</emph>, then select the element type. A new dialog box appears. Select the desired font and check any desired attributes, then click <emph>OK</emph>. To set the changes as the default fonts, click the <emph>Default</emph> button."
msgstr "Els quadres de llista del diàleg <emph>Tipus de lletra</emph> mostren un tipus de lletra per defecte per a tots els elements. Per canviar el tipus de lletra, feu clic a <emph>Modifica</emph> i seleccioneu un tipus d'element. Apareixerà un nou quadre de diàleg, on haureu de seleccionar el tipus de lletra, activar-ne els atributs que vulgueu i, finalment, fer clic a <emph>D'acord</emph>. Per establir estos canvis com a nou tipus de lletra per defecte, feu clic al botó <emph>Per defecte</emph>."
-#. 4jsFb
+#. 7ZtCj
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"par_id3148831\n"
"help.text"
-msgid "If you want to mark individual text segments with a font other than that used for the whole text, then enter the <link href=\"text/smath/01/05010000.xhp\" name=\"FONT\">Font</link> command in the <emph>Commands</emph> window."
-msgstr "Si voleu assignar a segments de text individuals un tipus de lletra diferent del que s'utilitza a la resta del text, introduïu l'orde <link href=\"text/smath/01/05010000.xhp\" name=\"FONT\">Font</link> a la finestra d'<emph>ordes</emph>."
+msgid "If you want to mark individual text segments with a font other than that used for the whole text, then enter the <link href=\"text/smath/01/05010000.xhp\">Font</link> command in the <emph>Commands</emph> window."
+msgstr "Si voleu assignar a segments de text individuals un tipus de lletra diferent del que s'utilitza a la resta del text, introduïu l'orde <link href=\"text/smath/01/05010000.xhp\">Font</link> a la finestra d'<emph>ordes</emph>."
#. KCJ2h
#: 05010000.xhp
@@ -12077,14 +12077,14 @@ msgctxt ""
msgid "Modify"
msgstr "Modifica"
-#. 9LWKg
+#. yb7LS
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"par_id3146932\n"
"help.text"
-msgid "<ahelp hid=\"modules/smath/ui/fonttypedialog/modify\">Click one of the choices from this pop-up menu to access the <link href=\"text/smath/01/05010100.xhp\" name=\"Fonts\">Fonts</link> dialog, where you can define the font and attributes for the respective formula and for custom fonts.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/fonttypedialog/modify\">Feu clic a una de les opcions d'este menú emergent per accedir al diàleg <link href=\"text/smath/01/05010100.xhp\" name=\"Tipus de lletra\">Tipus de lletra</link>, on podreu definir el tipus de lletra de la fórmula i els atributs per als tipus de lletra personalitzats.</ahelp>"
+msgid "<ahelp hid=\"modules/smath/ui/fonttypedialog/modify\">Click one of the choices from this pop-up menu to access the <link href=\"text/smath/01/05010100.xhp\">Fonts</link> dialog, where you can define the font and attributes for the respective formula and for custom fonts.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fonttypedialog/modify\">Feu clic a una de les opcions d'este menú emergent per accedir al diàleg <link href=\"text/smath/01/05010100.xhp\">Tipus de lletra</link>, on podreu definir el tipus de lletra de la fórmula i els atributs per als tipus de lletra personalitzats.</ahelp>"
#. LRsUy
#: 05010000.xhp
@@ -12266,13 +12266,13 @@ msgctxt ""
msgid "Base size"
msgstr "Mida base"
-#. 9Z2Wa
+#. UGSxe
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"par_id3145115\n"
"help.text"
-msgid "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_baseSize\">All elements of a formula are proportionally scaled to the base size. To change the base size, select or type in the desired point (pt) size. You can also use other units of measure or other <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"metrics\">metrics</link>, which are then automatically converted to points.</ahelp>"
+msgid "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_baseSize\">All elements of a formula are proportionally scaled to the base size. To change the base size, select or type in the desired point (pt) size. You can also use other units of measure or other <link href=\"text/shared/00/00000003.xhp#measurement_units\">metrics</link>, which are then automatically converted to points.</ahelp>"
msgstr ""
#. qX3wh
@@ -13274,14 +13274,14 @@ msgctxt ""
msgid "<bookmark_value>text mode in $[officename] Math</bookmark_value><bookmark_value>formulas; fit to text</bookmark_value>"
msgstr "<bookmark_value>mode de text al $[officename] Math</bookmark_value><bookmark_value>fórmules; ajustament al text</bookmark_value>"
-#. 2gYbh
+#. Eqpxb
#: 05050000.xhp
msgctxt ""
"05050000.xhp\n"
"hd_id3147339\n"
"help.text"
-msgid "<link href=\"text/smath/01/05050000.xhp\" name=\"Text Mode\">Text Mode</link>"
-msgstr "<link href=\"text/smath/01/05050000.xhp\" name=\"Mode de text\">Mode de text</link>"
+msgid "<link href=\"text/smath/01/05050000.xhp\">Text Mode</link>"
+msgstr "<link href=\"text/smath/01/05050000.xhp\">Mode de text</link>"
#. Xx962
#: 05050000.xhp
@@ -13310,14 +13310,14 @@ msgctxt ""
msgid "<bookmark_value>symbols; entering in %PRODUCTNAME Math</bookmark_value> <bookmark_value>%PRODUCTNAME Math; entering symbols in</bookmark_value> <bookmark_value>catalog for mathematical symbols</bookmark_value> <bookmark_value>mathematical symbols;catalog</bookmark_value> <bookmark_value>Greek symbols in formulas</bookmark_value> <bookmark_value>formulas; entering symbols in</bookmark_value>"
msgstr "<bookmark_value>símbols; introducció al %PRODUCTNAME Math</bookmark_value> <bookmark_value>%PRODUCTNAME Math; introducció de símbols a l'</bookmark_value> <bookmark_value>catàleg de símbols matemàtics</bookmark_value> <bookmark_value>símbols matemàtics;catàleg</bookmark_value> <bookmark_value>símbols grecs en fórmules</bookmark_value> <bookmark_value>fórmules; introducció de símbols en</bookmark_value>"
-#. wUxaF
+#. QYVZ6
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
"hd_id3153715\n"
"help.text"
-msgid "<link href=\"text/smath/01/06010000.xhp\" name=\"Symbols\">Symbols</link>"
-msgstr "<link href=\"text/smath/01/06010000.xhp\" name=\"Símbols\">Símbols</link>"
+msgid "<link href=\"text/smath/01/06010000.xhp\">Symbols</link>"
+msgstr "<link href=\"text/smath/01/06010000.xhp\">Símbols</link>"
#. zFQGD
#: 06010000.xhp
@@ -13373,14 +13373,14 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. sAB8a
+#. DFEpC
#: 06010000.xhp
msgctxt ""
"06010000.xhp\n"
"par_id3153811\n"
"help.text"
-msgid "<ahelp hid=\"modules/smath/ui/catalogdialog/edit\">Click here to open the <link href=\"text/smath/01/06010100.xhp\" name=\"Edit Symbols\">Edit Symbols</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/catalogdialog/edit\">Feu clic ací per a obrir el diàleg <link href=\"text/smath/01/06010100.xhp\" name=\"Edita els símbols\">Edita els símbols</link>.</ahelp>"
+msgid "<ahelp hid=\"modules/smath/ui/catalogdialog/edit\">Click here to open the <link href=\"text/smath/01/06010100.xhp\">Edit Symbols</link> dialog.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/catalogdialog/edit\">Feu clic ací per a obrir el diàleg <link href=\"text/smath/01/06010100.xhp\">Edita els símbols</link>.</ahelp>"
#. dCQLd
#: 06010100.xhp
@@ -13724,14 +13724,14 @@ msgctxt ""
msgid "<variable id=\"formelimportierentext\"><ahelp hid=\".uno:ImportFormula\" visibility=\"visible\">This command opens a dialog for importing a formula.</ahelp></variable>"
msgstr "<variable id=\"formelimportierentext\"><ahelp hid=\".uno:ImportFormula\" visibility=\"visible\">Esta orde obri un diàleg que permet importar una fórmula.</ahelp></variable>"
-#. tECdR
+#. szJpE
#: 06020000.xhp
msgctxt ""
"06020000.xhp\n"
"par_id3153916\n"
"help.text"
-msgid "The <emph>Insert</emph> dialog is set up like the <link href=\"text/shared/01/01020000.xhp\" name=\"Open\"><emph>Open</emph></link> dialog under <emph>File</emph>. Use the <emph>Insert</emph> dialog to load, edit and display a formula saved as a file in the <emph>Commands</emph> window."
-msgstr "El diàleg <emph>Insereix</emph> té el mateix funcionament que el diàleg <link href=\"text/shared/01/01020000.xhp\" name=\"Obri\"><emph>Obri</emph></link> del menú <emph>Fitxer</emph>. Utilitzeu el diàleg <emph>Insereix</emph> per a carregar, editar i mostrar una fórmula guardada com a fitxer a la finestra d'<emph>ordres</emph>."
+msgid "The <emph>Insert</emph> dialog is set up like the <link href=\"text/shared/01/01020000.xhp\"><emph>Open</emph></link> dialog under <emph>File</emph>. Use the <emph>Insert</emph> dialog to load, edit and display a formula saved as a file in the <emph>Commands</emph> window."
+msgstr "El diàleg <emph>Insereix</emph> té el mateix funcionament que el diàleg <link href=\"text/shared/01/01020000.xhp\"><emph>Obri</emph></link> del menú <emph>Fitxer</emph>. Utilitzeu el diàleg <emph>Insereix</emph> per a carregar, editar i mostrar una fórmula guardada com a fitxer a la finestra d'<emph>ordres</emph>."
#. o4UTF
#: 06020000.xhp
@@ -13787,14 +13787,14 @@ msgctxt ""
msgid "If the transformation fails, nothing is inserted."
msgstr "Si la transformació falla, no s'insereix res."
-#. T2kWP
+#. xc4mE
#: 06020000.xhp
msgctxt ""
"06020000.xhp\n"
"par_id3153919\n"
"help.text"
-msgid "This command handles only MathML content. If you have copied a %PRODUCTNAME Math formula to clipboard, insert it using the command <link href=\"text/shared/01/02060000.xhp\" name=\"Paste\"><emph>Paste</emph></link> under <emph>Edit</emph>."
-msgstr "Aquesta ordre gestiona només contingut MathML. Si heu copiat una fórmula del %PRODUCTNAME Math al porta-retalls, inseriu-la fent servir l'ordre <link href=\"text/shared/01/02060000.xhp\" name=\"Enganxa\"><emph>Enganxa</emph></link> del menú <emph>Edita</emph>."
+msgid "This command handles only MathML content. If you have copied a %PRODUCTNAME Math formula to clipboard, insert it using the command <link href=\"text/shared/01/02060000.xhp\"><emph>Paste</emph></link> under <emph>Edit</emph>."
+msgstr "Aquesta ordre gestiona només contingut MathML. Si heu copiat una fórmula del %PRODUCTNAME Math al porta-retalls, inseriu-la fent servir l'ordre <link href=\"text/shared/01/02060000.xhp\"><emph>Enganxa</emph></link> del menú <emph>Edita</emph>."
#. wqDkX
#: chemical.xhp
@@ -13814,14 +13814,14 @@ msgctxt ""
msgid "<bookmark_value>chemical formula</bookmark_value>"
msgstr "<bookmark_value>fórmula química</bookmark_value>"
-#. cmCqg
+#. wyCMa
#: chemical.xhp
msgctxt ""
"chemical.xhp\n"
"hd_id951584200892379\n"
"help.text"
-msgid "<variable id=\"chemicalh1\"><link href=\"text/smath/01/chemical.xhp\" name=\"Chemical Formulas\">Chemical Formulas Examples</link></variable>"
-msgstr "<variable id=\"chemicalh1\"><link href=\"text/smath/01/chemical.xhp\" name=\"Chemical Formulas\">Exemples de fórmules químiques</link></variable>"
+msgid "<variable id=\"chemicalh1\"><link href=\"text/smath/01/chemical.xhp\">Chemical Formulas Examples</link></variable>"
+msgstr "<variable id=\"chemicalh1\"><link href=\"text/smath/01/chemical.xhp\">Exemples de fórmules químiques</link></variable>"
#. Uo7jh
#: chemical.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/smath/04.po b/source/ca-valencia/helpcontent2/source/text/smath/04.po
index 3584c667858..8bea90c7f7e 100644
--- a/source/ca-valencia/helpcontent2/source/text/smath/04.po
+++ b/source/ca-valencia/helpcontent2/source/text/smath/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2018-01-15 13:21+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>shortcut keys; in formulas</bookmark_value>"
msgstr "<bookmark_value>tecles de drecera; a les fórmules</bookmark_value>"
-#. WVdeo
+#. D3aGQ
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3154702\n"
"help.text"
-msgid "<variable id=\"math_keys\"><link href=\"text/smath/04/01020000.xhp\" name=\"Formula Shortcut Keys\">Formula Shortcut Keys</link></variable>"
-msgstr "<variable id=\"math_keys\"><link href=\"text/smath/04/01020000.xhp\" name=\"Tecles de drecera de les fórmules\">Tecles de drecera de les fórmules</link></variable>"
+msgid "<variable id=\"math_keys\"><link href=\"text/smath/04/01020000.xhp\">Formula Shortcut Keys</link></variable>"
+msgstr "<variable id=\"math_keys\"><link href=\"text/smath/04/01020000.xhp\">Tecles de drecera de les fórmules</link></variable>"
#. CraEp
#: 01020000.xhp
@@ -53,14 +53,14 @@ msgctxt ""
msgid "A list of the shortcut keys specific to creating formulas is contained in this section."
msgstr "Esta secció conté una llista de les tecles de drecera específiques per a la creació de fórmules."
-#. BoUhM
+#. SPuZW
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3150203\n"
"help.text"
-msgid "The general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys in $[officename]\">shortcut keys in $[officename]</link> also apply."
-msgstr "També funcionen les <link href=\"text/shared/04/01010000.xhp\" name=\"tecles de drecera al $[officename]\">tecles de drecera del $[officename]</link> generals."
+msgid "The general <link href=\"text/shared/04/01010000.xhp\">shortcut keys in $[officename]</link> also apply."
+msgstr "També funcionen les <link href=\"text/shared/04/01010000.xhp\">tecles de drecera del $[officename]</link> generals."
#. JHsws
#: 01020000.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/smath/guide.po b/source/ca-valencia/helpcontent2/source/text/smath/guide.po
index ff96139edc7..3dcd097b3f6 100644
--- a/source/ca-valencia/helpcontent2/source/text/smath/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-10-10 13:36+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textsmathguide/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>aligning; characters in %PRODUCTNAME Math</bookmark_value><bookmark_value>formula parts; manually aligning</bookmark_value>"
msgstr "<bookmark_value>alineació; caràcters al %PRODUCTNAME Math</bookmark_value><bookmark_value>parts d'una fórmula; alineació manual</bookmark_value>"
-#. 5ENLq
+#. Yt2Lw
#: align.xhp
msgctxt ""
"align.xhp\n"
"hd_id3156384\n"
"help.text"
-msgid "<variable id=\"align\"><link href=\"text/smath/guide/align.xhp\" name=\"Manually Aligning Formula Parts\">Manually Aligning Formula Parts</link></variable>"
-msgstr "<variable id=\"align\"><link href=\"text/smath/guide/align.xhp\" name=\"Alineació manual de les parts d'una fórmula\">Alineació manual de les parts d'una fórmula</link></variable>"
+msgid "<variable id=\"align\"><link href=\"text/smath/guide/align.xhp\">Manually Aligning Formula Parts</link></variable>"
+msgstr "<variable id=\"align\"><link href=\"text/smath/guide/align.xhp\">Alineació manual de les parts d'una fórmula</link></variable>"
#. eUZmq
#: align.xhp
@@ -107,14 +107,14 @@ msgctxt ""
msgid "<bookmark_value>attributes; changing in $[officename] Math</bookmark_value><bookmark_value>font attributes;changing defaults</bookmark_value><bookmark_value>formatting;changing default attributes</bookmark_value><bookmark_value>defaults;changing default formatting</bookmark_value><bookmark_value>changing;default formatting</bookmark_value>"
msgstr "<bookmark_value>atributs; canviar-los al $[officename] Math</bookmark_value><bookmark_value>atributs de tipus de lletra;canviar els valors per defecte</bookmark_value><bookmark_value>formatació;canviar els atributs per defecte</bookmark_value><bookmark_value>valors per defecte;canviar la formatació per defecte</bookmark_value><bookmark_value>canviar;formatació per defecte</bookmark_value>"
-#. WndEQ
+#. tFymM
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
"hd_id3145792\n"
"help.text"
-msgid "<variable id=\"attributes\"><link href=\"text/smath/guide/attributes.xhp\" name=\"Changing Default Attributes\">Changing Default Attributes</link></variable>"
-msgstr "<variable id=\"attributes\"><link href=\"text/smath/guide/attributes.xhp\" name=\"Canviar els atributs per defecte\">Canviar els atributs per defecte</link></variable>"
+msgid "<variable id=\"attributes\"><link href=\"text/smath/guide/attributes.xhp\">Changing Default Attributes</link></variable>"
+msgstr "<variable id=\"attributes\"><link href=\"text/smath/guide/attributes.xhp\">Canviar els atributs per defecte</link></variable>"
#. gAHnh
#: attributes.xhp
@@ -170,14 +170,14 @@ msgctxt ""
msgid "<bookmark_value>brackets; merging formula parts</bookmark_value><bookmark_value>formula parts; merging</bookmark_value><bookmark_value>fractions in formulas</bookmark_value><bookmark_value>merging;formula parts</bookmark_value>"
msgstr "<bookmark_value>claudàtors; fusió de parts de fórmules</bookmark_value><bookmark_value>parts de fórmules; fusió</bookmark_value><bookmark_value>fraccions a les fórmules</bookmark_value><bookmark_value>fusió;parts de fórmules</bookmark_value>"
-#. J7BeM
+#. vAkzZ
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
"hd_id3152596\n"
"help.text"
-msgid "<variable id=\"brackets\"><link href=\"text/smath/guide/brackets.xhp\" name=\"Merging Formula Parts in Brackets\">Merging Formula Parts in Brackets</link></variable>"
-msgstr "<variable id=\"brackets\"><link href=\"text/smath/guide/brackets.xhp\" name=\"Fusió de les parts de la fórmula entre claudàtors\">Fusió de les parts de la fórmula entre claudàtors</link></variable>"
+msgid "<variable id=\"brackets\"><link href=\"text/smath/guide/brackets.xhp\">Merging Formula Parts in Brackets</link></variable>"
+msgstr "<variable id=\"brackets\"><link href=\"text/smath/guide/brackets.xhp\">Fusió de les parts de la fórmula entre claudàtors</link></variable>"
#. z6zop
#: brackets.xhp
@@ -233,13 +233,13 @@ msgctxt ""
msgid "<bookmark_value>Color in formulas</bookmark_value>"
msgstr ""
-#. UXL5W
+#. dBGoG
#: color.xhp
msgctxt ""
"color.xhp\n"
"hd_id601641846107898\n"
"help.text"
-msgid "<variable id=\"color\"><link href=\"text/smath/guide/color.xhp\" name=\"Color_link\">Applying Color to Formula Parts</link></variable>"
+msgid "<variable id=\"color\"><link href=\"text/smath/guide/color.xhp\">Applying Color to Formula Parts</link></variable>"
msgstr ""
#. ckGgG
@@ -278,13 +278,13 @@ msgctxt ""
msgid "Use braces to apply color to more parts of the formula. In the following example, <emph>b</emph> and <emph>c</emph> are shown in red."
msgstr ""
-#. JAK8L
+#. gLttS
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id651641851485699\n"
"help.text"
-msgid "A list with predefined color names is available <link href=\"text/smath/guide/color.xhp#PredefinedColors\" name=\"Colors_list\">here</link>."
+msgid "A list with predefined color names is available <link href=\"text/smath/guide/color.xhp#PredefinedColors\">here</link>."
msgstr ""
#. gQn7y
@@ -719,14 +719,14 @@ msgctxt ""
msgid "<bookmark_value>comments; entering in $[officename] Math</bookmark_value><bookmark_value>inserting;comments in $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>comentaris; introducció al $[officename] Math</bookmark_value><bookmark_value>inserció;comentaris al $[officename] Math</bookmark_value>"
-#. RB5xU
+#. A9Yfc
#: comment.xhp
msgctxt ""
"comment.xhp\n"
"hd_id3155961\n"
"help.text"
-msgid "<variable id=\"comment\"><link href=\"text/smath/guide/comment.xhp\" name=\"Entering Comments\">Entering Comments</link></variable>"
-msgstr "<variable id=\"comment\"><link href=\"text/smath/guide/comment.xhp\" name=\"Introducció de comentaris\">Introducció de comentaris</link></variable>"
+msgid "<variable id=\"comment\"><link href=\"text/smath/guide/comment.xhp\">Entering Comments</link></variable>"
+msgstr "<variable id=\"comment\"><link href=\"text/smath/guide/comment.xhp\">Introducció de comentaris</link></variable>"
#. CA8hE
#: comment.xhp
@@ -782,14 +782,14 @@ msgctxt ""
msgid "<bookmark_value>accessibility; $[officename] Math shortcuts</bookmark_value>"
msgstr "<bookmark_value>accessibilitat; dreceres del $[officename] Math</bookmark_value>"
-#. 4zHFd
+#. pq9cU
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"hd_id3149018\n"
"help.text"
-msgid "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\" name=\"Shortcuts ($[officename] Math Accessibility)\">Shortcuts ($[officename] Math Accessibility)</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\" name=\"Dreceres (accessibilitat del $[officename] Math)\">Dreceres (accessibilitat del $[officename] Math)</link></variable>"
+msgid "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\">Shortcuts ($[officename] Math Accessibility)</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\">Dreceres (accessibilitat del $[officename] Math)</link></variable>"
#. ZkpGA
#: keyboard.xhp
@@ -1088,14 +1088,14 @@ msgctxt ""
msgid "<bookmark_value>$[officename] Math;general instructions</bookmark_value><bookmark_value>instructions; $[officename] Math</bookmark_value><bookmark_value>Equation Editor, see $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>$[officename] Math;instruccions generals</bookmark_value><bookmark_value>instruccions; $[officename] Math</bookmark_value><bookmark_value>Editor d'equacions, vegeu $[officename] Math</bookmark_value>"
-#. DyNdG
+#. 4VuXB
#: main.xhp
msgctxt ""
"main.xhp\n"
"hd_id3147341\n"
"help.text"
-msgid "<variable id=\"main\"><link href=\"text/smath/guide/main.xhp\" name=\"Instructions for Using $[officename] Math\">Instructions for Using $[officename] Math</link></variable>"
-msgstr "<variable id=\"main\"><link href=\"text/smath/guide/main.xhp\" name=\"Instruccions per utilitzar el $[officename] Math\">Instruccions per utilitzar el $[officename] Math</link></variable>"
+msgid "<variable id=\"main\"><link href=\"text/smath/guide/main.xhp\">Instructions for Using $[officename] Math</link></variable>"
+msgstr "<variable id=\"main\"><link href=\"text/smath/guide/main.xhp\">Instruccions per utilitzar el $[officename] Math</link></variable>"
#. ArDuV
#: main.xhp
@@ -1124,14 +1124,14 @@ msgctxt ""
msgid "<bookmark_value>line breaks; in formulas</bookmark_value><bookmark_value>formulas;line breaks</bookmark_value><bookmark_value>wrapping text;in formulas</bookmark_value>"
msgstr "<bookmark_value>salts de línia; a les fórmules</bookmark_value><bookmark_value>fórmules;salts de línia</bookmark_value><bookmark_value>ajustament del text;a les fórmules</bookmark_value>"
-#. Uaq5F
+#. HD6CM
#: newline.xhp
msgctxt ""
"newline.xhp\n"
"hd_id3146970\n"
"help.text"
-msgid "<variable id=\"newline\"><link href=\"text/smath/guide/newline.xhp\" name=\"Entering Line Breaks\">Entering Line Breaks</link></variable>"
-msgstr "<variable id=\"newline\"><link href=\"text/smath/guide/newline.xhp\" name=\"Introducció de salts de línia\">Introducció de salts de línia</link></variable>"
+msgid "<variable id=\"newline\"><link href=\"text/smath/guide/newline.xhp\">Entering Line Breaks</link></variable>"
+msgstr "<variable id=\"newline\"><link href=\"text/smath/guide/newline.xhp\">Introducció de salts de línia</link></variable>"
#. gLLUF
#: newline.xhp
@@ -1169,14 +1169,14 @@ msgctxt ""
msgid "<bookmark_value>brackets; inserting in %PRODUCTNAME Math</bookmark_value><bookmark_value>inserting;brackets</bookmark_value><bookmark_value>distances between brackets</bookmark_value>"
msgstr "<bookmark_value>claudàtors; inserció al %PRODUCTNAME Math</bookmark_value><bookmark_value>inserció;claudàtors</bookmark_value><bookmark_value>distàncies entre claudàtors</bookmark_value>"
-#. XkEUk
+#. AsaCy
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
"hd_id3153415\n"
"help.text"
-msgid "<variable id=\"parentheses\"><link href=\"text/smath/guide/parentheses.xhp\" name=\"Inserting Brackets\">Inserting Brackets</link></variable>"
-msgstr "<variable id=\"parentheses\"><link href=\"text/smath/guide/parentheses.xhp\" name=\"Inserció de claudàtors\">Inserció de claudàtors</link></variable>"
+msgid "<variable id=\"parentheses\"><link href=\"text/smath/guide/parentheses.xhp\">Inserting Brackets</link></variable>"
+msgstr "<variable id=\"parentheses\"><link href=\"text/smath/guide/parentheses.xhp\">Inserció de claudàtors</link></variable>"
#. cAGdF
#: parentheses.xhp
@@ -1214,14 +1214,14 @@ msgctxt ""
msgid "<bookmark_value>text strings; entering in $[officename] Math</bookmark_value><bookmark_value>direct text; entering in $[officename] Math</bookmark_value><bookmark_value>inserting;text in $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>cadenes de text; introducció al $[officename] Math</bookmark_value><bookmark_value>text directe; introducció al $[officename] Math</bookmark_value><bookmark_value>inserció;text al $[officename] Math</bookmark_value>"
-#. XRDUC
+#. 5ZHGm
#: text.xhp
msgctxt ""
"text.xhp\n"
"hd_id5676442\n"
"help.text"
-msgid "<variable id=\"text\"><link href=\"text/smath/guide/text.xhp\" name=\"Entering Text\">Entering Text</link></variable>"
-msgstr "<variable id=\"text\"><link href=\"text/smath/guide/text.xhp\" name=\"Introducció de text\">Introducció de text</link></variable>"
+msgid "<variable id=\"text\"><link href=\"text/smath/guide/text.xhp\">Entering Text</link></variable>"
+msgstr "<variable id=\"text\"><link href=\"text/smath/guide/text.xhp\">Introducció de text</link></variable>"
#. FGjG4
#: text.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter.po b/source/ca-valencia/helpcontent2/source/text/swriter.po
index b92be52f3fb..6a9052c817c 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-22 14:44+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriter/ca_VALENCIA/>\n"
@@ -170,14 +170,14 @@ msgctxt ""
msgid "Menus"
msgstr "Menús"
-#. uiF3J
+#. NZfEG
#: main0100.xhp
msgctxt ""
"main0100.xhp\n"
"hd_id3147274\n"
"help.text"
-msgid "<variable id=\"main0100\"><link href=\"text/swriter/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/swriter/main0100.xhp\" name=\"Menús\">Menús</link></variable>"
+msgid "<variable id=\"main0100\"><link href=\"text/swriter/main0100.xhp\">Menus</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/swriter/main0100.xhp\">Menús</link></variable>"
#. b6Ayw
#: main0100.xhp
@@ -197,14 +197,14 @@ msgctxt ""
msgid "File"
msgstr "Fitxer"
-#. FFwbe
+#. 7tAqJ
#: main0101.xhp
msgctxt ""
"main0101.xhp\n"
"hd_id3147331\n"
"help.text"
-msgid "<link href=\"text/swriter/main0101.xhp\" name=\"File\">File</link>"
-msgstr "<link href=\"text/swriter/main0101.xhp\" name=\"Fitxer\">Fitxer</link>"
+msgid "<link href=\"text/swriter/main0101.xhp\">File</link>"
+msgstr "<link href=\"text/swriter/main0101.xhp\">Fitxer</link>"
#. FEPdm
#: main0101.xhp
@@ -224,14 +224,14 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. tDGgN
+#. eZ87D
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id3149610\n"
"help.text"
-msgid "<link href=\"text/swriter/main0102.xhp\" name=\"Edit\">Edit</link>"
-msgstr "<link href=\"text/swriter/main0102.xhp\" name=\"Edita\">Edita</link>"
+msgid "<link href=\"text/swriter/main0102.xhp\">Edit</link>"
+msgstr "<link href=\"text/swriter/main0102.xhp\">Edita</link>"
#. EXvjU
#: main0102.xhp
@@ -242,14 +242,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
msgstr "<ahelp hid=\".\">Este menú conté ordes per editar el contingut del document actual.</ahelp>"
-#. vTjje
+#. VrMBN
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id3147619\n"
"help.text"
-msgid "<link href=\"text/shared/02/07070000.xhp\" name=\"Select Text\">Select Text</link>"
-msgstr "<link href=\"text/shared/02/07070000.xhp\" name=\"Seleccioneu el text\">Seleccioneu el text</link>"
+msgid "<link href=\"text/shared/02/07070000.xhp\">Select Text</link>"
+msgstr "<link href=\"text/shared/02/07070000.xhp\">Seleccioneu el text</link>"
#. Hug2v
#: main0102.xhp
@@ -287,41 +287,41 @@ msgctxt ""
msgid "Shows submenu that gives options to reply, resolve and delete comments."
msgstr ""
-#. DNBDk
+#. FDHX2
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id0914201501170124\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02140000.xhp\" name=\"Fields\">Fields</link>"
-msgstr "<link href=\"text/swriter/01/02140000.xhp\" name=\"Camps\">Camps</link>"
+msgid "<link href=\"text/swriter/01/02140000.xhp\">Fields</link>"
+msgstr "<link href=\"text/swriter/01/02140000.xhp\">Camps</link>"
-#. 7QAcJ
+#. 5RCMR
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id0914201501170171\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">External Links</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\">External Links</link>"
msgstr ""
-#. WBET4
+#. YAajd
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id0914201502131542\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">OLE Object</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\">OLE Object</link>"
msgstr ""
-#. NnPuy
+#. DhwSa
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id102920150120456626\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18130000.xhp\" name=\"Direct Cursor Mode\">Direct Cursor Mode</link>"
-msgstr "<link href=\"text/swriter/02/18130000.xhp\" name=\"Mode de cursor directe\">Mode de cursor directe</link>"
+msgid "<link href=\"text/swriter/02/18130000.xhp\">Direct Cursor Mode</link>"
+msgstr "<link href=\"text/swriter/02/18130000.xhp\">Mode de cursor directe</link>"
#. 96mxR
#: main0102.xhp
@@ -341,14 +341,14 @@ msgctxt ""
msgid "View"
msgstr "Visualitza"
-#. 2D4pp
+#. prCMC
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3147233\n"
"help.text"
-msgid "<link href=\"text/swriter/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/swriter/main0103.xhp\" name=\"Visualitza\">Visualitza</link>"
+msgid "<link href=\"text/swriter/main0103.xhp\">View</link>"
+msgstr "<link href=\"text/swriter/main0103.xhp\">Visualitza</link>"
#. VjZcs
#: main0103.xhp
@@ -458,23 +458,23 @@ msgctxt ""
msgid "Resolved comments"
msgstr "Comentaris resolts"
-#. DGBcc
+#. 8FzFE
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"par_id331573492076499\n"
"help.text"
-msgid "Show or hide <link href=\"text/shared/01/04050000.xhp#resolvecomments\" name=\"resolve comments\">resolved comments</link>."
-msgstr "Permet mostrar o amagar els <link href=\"text/shared/01/04050000.xhp#resolvecomments\" name=\"resolve comments\">comentaris resolts</link>."
+msgid "Show or hide <link href=\"text/shared/01/04050000.xhp#resolvecomments\">resolved comments</link>."
+msgstr "Permet mostrar o amagar els <link href=\"text/shared/01/04050000.xhp#resolvecomments\">comentaris resolts</link>."
-#. NEqPZ
+#. KqRGM
#: main0103.xhp
msgctxt ""
"main0103.xhp\n"
"hd_id3147265\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Escala\">Escala</link>"
+msgid "<link href=\"text/shared/01/03010000.xhp\">Zoom</link>"
+msgstr "<link href=\"text/shared/01/03010000.xhp\">Escala</link>"
#. Dp7mC
#: main0104.xhp
@@ -485,14 +485,14 @@ msgctxt ""
msgid "Insert"
msgstr "Insereix"
-#. t5ghD
+#. aZsCM
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3155341\n"
"help.text"
-msgid "<link href=\"text/swriter/main0104.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/swriter/main0104.xhp\" name=\"Insereix\">Insereix</link>"
+msgid "<link href=\"text/swriter/main0104.xhp\">Insert</link>"
+msgstr "<link href=\"text/swriter/main0104.xhp\">Insereix</link>"
#. TgA97
#: main0104.xhp
@@ -521,50 +521,50 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertPagebreak\">Inserts a manual page break at the current cursor position and places the cursor at the beginning of the next page.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertPagebreak\">Insereix un salt de pàgina manual en la posició actual del cursor i posa el cursor a l'inici de la pàgina següent.</ahelp>"
-#. 4B4rE
+#. mLs8G
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3158442\n"
"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"Image\">Image</link>"
-msgstr "<link href=\"text/shared/01/04140000.xhp\" name=\"Imatge\">Imatge</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\">Image</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\">Imatge</link>"
-#. xiCSu
+#. Bj8mG
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3147788\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04020000.xhp\" name=\"Section\">Section</link>"
-msgstr "<link href=\"text/swriter/01/04020000.xhp\" name=\"Secció\">Secció</link>"
+msgid "<link href=\"text/swriter/01/04020000.xhp\">Section</link>"
+msgstr "<link href=\"text/swriter/01/04020000.xhp\">Secció</link>"
-#. qjyHA
+#. f3j54
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3149428\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04190000.xhp\" name=\"File\">Text from File</link>"
+msgid "<link href=\"text/swriter/01/04190000.xhp\">Text from File</link>"
msgstr ""
-#. PCTGV
+#. G4BAP
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id030720160706334584\n"
"help.text"
-msgid "<link href=\"text/shared/02/01140000.xhp#textbox_title\" name=\"Textbox\">Textbox</link>"
-msgstr "<link href=\"text/shared/02/01140000.xhp#textbox_title\" name=\"Textbox\">Quadre de text</link>"
+msgid "<link href=\"text/shared/02/01140000.xhp#textbox_title\">Textbox</link>"
+msgstr "<link href=\"text/shared/02/01140000.xhp#textbox_title\">Quadre de text</link>"
-#. zZBZz
+#. GFNXQ
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3147281\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04040000.xhp\" name=\"Bookmark\">Bookmark</link>"
-msgstr "<link href=\"text/swriter/01/04040000.xhp\" name=\"Marca de text\">Adreça d'interés</link>"
+msgid "<link href=\"text/swriter/01/04040000.xhp\">Bookmark</link>"
+msgstr "<link href=\"text/swriter/01/04040000.xhp\">Adreça d'interés</link>"
#. Bed3E
#: main0104.xhp
@@ -584,14 +584,14 @@ msgctxt ""
msgid "Inserts a horizontal line at the current cursor position."
msgstr "Insereix una línia horitzontal en la posició actual del cursor."
-#. Ee8Dk
+#. N6J2x
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
"hd_id3149865\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04070000.xhp\" name=\"Envelope\">Envelope</link>"
-msgstr "<link href=\"text/swriter/01/04070000.xhp\" name=\"Sobre\">Sobre</link>"
+msgid "<link href=\"text/swriter/01/04070000.xhp\">Envelope</link>"
+msgstr "<link href=\"text/swriter/01/04070000.xhp\">Sobre</link>"
#. JP4tR
#: main0105.xhp
@@ -602,14 +602,14 @@ msgctxt ""
msgid "Format"
msgstr "Format"
-#. rNrGw
+#. DTAbu
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3147820\n"
"help.text"
-msgid "<link href=\"text/swriter/main0105.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/swriter/main0105.xhp\" name=\"Format\">Format</link>"
+msgid "<link href=\"text/swriter/main0105.xhp\">Format</link>"
+msgstr "<link href=\"text/swriter/main0105.xhp\">Format</link>"
#. XVBUU
#: main0105.xhp
@@ -638,23 +638,23 @@ msgctxt ""
msgid "Opens a submenu where you can align text and objects."
msgstr ""
-#. 5EJHh
+#. Vsjn5
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3147261\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caràcter\">Caràcter</link>"
+msgid "<link href=\"text/shared/01/05020000.xhp\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\">Caràcter</link>"
-#. y8Ux2
+#. SjBAg
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3147286\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paràgraf\">Paràgraf</link>"
+msgid "<link href=\"text/shared/01/05030000.xhp\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\">Paràgraf</link>"
#. 7iyia
#: main0105.xhp
@@ -674,14 +674,14 @@ msgctxt ""
msgid "Opens a submenu where you can modify the formatting of list paragraphs."
msgstr ""
-#. gYqLC
+#. aJdFV
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3145784\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=\"Numeració i pics\">Numeració i pics</link>"
+msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\">Numeració i pics</link>"
#. E6Eut
#: main0105.xhp
@@ -719,41 +719,41 @@ msgctxt ""
msgid "When comments are present, the character dialog is presented. Changes to font and font formatting are applied to all comments."
msgstr ""
-#. Sib7N
+#. ZZgeT
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3145743\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columnes\">Columnes</link>"
+msgid "<link href=\"text/swriter/01/05040500.xhp\">Columns</link>"
+msgstr "<link href=\"text/swriter/01/05040500.xhp\">Columnes</link>"
-#. HtHdy
+#. xxsJP
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id11602979335965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Watermark</link>"
+msgid "<link href=\"text/swriter/01/watermark.xhp\">Watermark</link>"
msgstr ""
-#. QSMBC
+#. GWQbW
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3145717\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Sections</link>"
-msgstr "<link href=\"text/swriter/01/02170000.xhp\" name=\"Seccions\">Seccions</link>"
+msgid "<link href=\"text/swriter/01/02170000.xhp\">Sections</link>"
+msgstr "<link href=\"text/swriter/01/02170000.xhp\">Seccions</link>"
-#. yGb79
+#. G7ZKH
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3149935\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Image</link>"
-msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Imatge</link>"
+msgid "<link href=\"text/swriter/01/05060000.xhp\">Image</link>"
+msgstr "<link href=\"text/swriter/01/05060000.xhp\">Imatge</link>"
#. FUiBn
#: main0105.xhp
@@ -800,14 +800,14 @@ msgctxt ""
msgid "Tools"
msgstr "Eines"
-#. s3r2f
+#. EQ4r3
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3147241\n"
"help.text"
-msgid "<link href=\"text/swriter/main0106.xhp\" name=\"Tools\">Tools</link>"
-msgstr "<link href=\"text/swriter/main0106.xhp\" name=\"Eines\">Eines</link>"
+msgid "<link href=\"text/swriter/main0106.xhp\">Tools</link>"
+msgstr "<link href=\"text/swriter/main0106.xhp\">Eines</link>"
#. UNAzE
#: main0106.xhp
@@ -818,95 +818,95 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains spelling tools, redact options, mail merge wizard, macros, development tools, extension manager, as well as tools for configuring and customizing menus, and setting program preferences.</ahelp>"
msgstr ""
-#. tKExZ
+#. ipUs6
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id691612907136111\n"
"help.text"
-msgid "<link href=\"text/shared/02/18030000.xhp\" name=\"Automatic Spell Checking\">Automatic Spell Checking</link>"
+msgid "<link href=\"text/shared/02/18030000.xhp\">Automatic Spell Checking</link>"
msgstr ""
-#. qKqMR
+#. RFxpX
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3156150\n"
"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgid "<link href=\"text/shared/01/02220000.xhp\">ImageMap</link>"
msgstr ""
-#. KAnyG
+#. c786T
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id621628789958422\n"
"help.text"
-msgid "<link href=\"text/shared/guide/redaction.xhp\" name=\"Redact\">Redact</link>"
+msgid "<link href=\"text/shared/guide/redaction.xhp\">Redact</link>"
msgstr ""
-#. hoCpd
+#. GvGzQ
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id231628790402002\n"
"help.text"
-msgid "<link href=\"text/shared/guide/auto_redact.xhp\" name=\"AutoRedact\">Auto-Redact</link>"
+msgid "<link href=\"text/shared/guide/auto_redact.xhp\">Auto-Redact</link>"
msgstr ""
-#. 9FPWA
+#. ww9WA
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Numeració de capítols\">Numeració de capítols</link>"
+msgid "<link href=\"text/swriter/01/06060000.xhp\">Chapter Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\">Numeració de capítols</link>"
-#. QQbkx
+#. NcNiN
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3145688\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06180000.xhp\" name=\"Line Numbering\">Line Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Numeració de línies\">Numeració de línies</link>"
+msgid "<link href=\"text/swriter/01/06180000.xhp\">Line Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06180000.xhp\">Numeració de línies</link>"
-#. pqsQB
+#. WctnW
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3145713\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06080000.xhp\" name=\"Footnotes\">Footnotes and Endnotes</link>"
+msgid "<link href=\"text/swriter/01/06080000.xhp\">Footnotes and Endnotes</link>"
msgstr ""
-#. qFpLr
+#. PYr7Y
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id501612910204859\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110101.xhp\" name=\"Address Book Source\">Address Book Source</link>"
+msgid "<link href=\"text/shared/01/01110101.xhp\">Address Book Source</link>"
msgstr ""
-#. ASZh8
+#. CXTEr
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3147346\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06100000.xhp\" name=\"Sort\">Sort</link>"
-msgstr "<link href=\"text/swriter/01/06100000.xhp\" name=\"Ordena\">Ordena</link>"
+msgid "<link href=\"text/swriter/01/06100000.xhp\">Sort</link>"
+msgstr "<link href=\"text/swriter/01/06100000.xhp\">Ordena</link>"
-#. VY3FE
+#. jVFic
#: main0106.xhp
msgctxt ""
"main0106.xhp\n"
"hd_id3147406\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Personalitza\">Personalitza</link>"
+msgid "<link href=\"text/shared/01/06140000.xhp\">Customize</link>"
+msgstr "<link href=\"text/shared/01/06140000.xhp\">Personalitza</link>"
#. KRfJh
#: main0107.xhp
@@ -917,14 +917,14 @@ msgctxt ""
msgid "Window"
msgstr "Finestra"
-#. z6TGf
+#. GwCED
#: main0107.xhp
msgctxt ""
"main0107.xhp\n"
"hd_id3147248\n"
"help.text"
-msgid "<link href=\"text/swriter/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr "<link href=\"text/swriter/main0107.xhp\" name=\"Finestra\">Finestra</link>"
+msgid "<link href=\"text/swriter/main0107.xhp\">Window</link>"
+msgstr "<link href=\"text/swriter/main0107.xhp\">Finestra</link>"
#. uGDRi
#: main0107.xhp
@@ -1034,13 +1034,13 @@ msgctxt ""
msgid "Insert a row below the row where the cursor is currently placed."
msgstr ""
-#. zVM8o
+#. KfmGG
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"par_idN105E5\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120400.xhp\" name=\"insertrows\">Rows</link>"
+msgid "<link href=\"text/swriter/01/05120400.xhp\">Rows</link>"
msgstr ""
#. AN99u
@@ -1088,13 +1088,13 @@ msgctxt ""
msgid "Inserts a column after the column where the cursor is currently placed."
msgstr ""
-#. KepEk
+#. GM6FW
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"par_idN105CD\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120400.xhp\" name=\"insertrows\">Columns</link>"
+msgid "<link href=\"text/swriter/01/05120400.xhp\">Columns</link>"
msgstr ""
#. i3nKB
@@ -1277,13 +1277,13 @@ msgctxt ""
msgid "Opens the Row Height dialog where you can change the height of a row."
msgstr "Obri un quadre de diàleg per canviar l'alçària d'una fila."
-#. XKtYG
+#. zBhmB
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"hd_id451605990864684\n"
"help.text"
-msgid "<link href=\"text/shared/01/minimal_row_height.xhp\" name=\"Minimal Row Height\">Minimal Row Height</link>"
+msgid "<link href=\"text/shared/01/minimal_row_height.xhp\">Minimal Row Height</link>"
msgstr ""
#. EF7XB
@@ -1322,13 +1322,13 @@ msgctxt ""
msgid "Opens the Column Width dialog where you can change the width of a column."
msgstr "Obri un quadre de diàleg per canviar l'amplària d'una columna."
-#. PiF6d
+#. qi4p9
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"hd_id671605991381461\n"
"help.text"
-msgid "<link href=\"text/shared/01/minimal_column_width.xhp\" name=\"Minimal Column Width\">Minimal Column Width</link>"
+msgid "<link href=\"text/shared/01/minimal_column_width.xhp\">Minimal Column Width</link>"
msgstr ""
#. Y4m4U
@@ -1412,13 +1412,13 @@ msgctxt ""
msgid "Opens <link href=\"text/shared/optionen/01040500.xhp\">a dialog</link> where you can specify the format of numbers in the table."
msgstr "Obri un <link href=\"text/shared/optionen/01040500.xhp\">diàleg</link> per indicar el format dels nombres d'una taula."
-#. QWJvo
+#. z2HSC
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"hd_id931605978707761\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/number_date_conv.xhp\" name=\"numberrecognition\">Number Recognition</link>"
+msgid "<link href=\"text/swriter/guide/number_date_conv.xhp\">Number Recognition</link>"
msgstr ""
#. CW8ME
@@ -1565,14 +1565,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/main0115.xhp\">Styles</link>"
msgstr "<link href=\"text/swriter/main0115.xhp\">Estils</link>"
-#. GLxFE
+#. Ew4ac
#: main0115.xhp
msgctxt ""
"main0115.xhp\n"
"par_idN10563\n"
"help.text"
-msgid "<ahelp hid=\".\">Contains commands to apply, create, edit, update, load, and manage <link href=\"text/swriter/01/05130000.xhp\" name=\"styles\">styles</link> in a text document.</ahelp>"
-msgstr "<ahelp hid=\".\">Conté ordres per a aplicar, crear, modificar, actualitzar, carregar i gestionar <link href=\"text/swriter/01/05130000.xhp\" name=\"estils\">estils</link> en un document de text.</ahelp>"
+msgid "<ahelp hid=\".\">Contains commands to apply, create, edit, update, load, and manage <link href=\"text/swriter/01/05130000.xhp\">styles</link> in a text document.</ahelp>"
+msgstr "<ahelp hid=\".\">Conté ordres per a aplicar, crear, modificar, actualitzar, carregar i gestionar <link href=\"text/swriter/01/05130000.xhp\">estils</link> en un document de text.</ahelp>"
#. gsPnE
#: main0115.xhp
@@ -1592,13 +1592,13 @@ msgctxt ""
msgid "The entries includes most common paragraph, character and list styles. Click on the style to apply."
msgstr "Les entrades inclouen els estils de paràgraf, caràcter i llista més comuns. Feu clic a l'estil per a aplicar-lo."
-#. foqCF
+#. RW2Mb
#: main0115.xhp
msgctxt ""
"main0115.xhp\n"
"par_id451529878529005\n"
"help.text"
-msgid "You can customize the list of styles entries using menu <link href=\"text/shared/01/06140100.xhp\" name=\"customize menu\"><emph>Tools - Customize</emph></link>. Because custom styles belongs to the actual document, remember to store the customized menu in the document scope."
+msgid "You can customize the list of styles entries using menu <link href=\"text/shared/01/06140100.xhp\"><emph>Tools - Customize</emph></link>. Because custom styles belongs to the actual document, remember to store the customized menu in the document scope."
msgstr ""
#. 7kWCz
@@ -1628,14 +1628,14 @@ msgctxt ""
msgid "Update Selected Style"
msgstr ""
-#. 5mGuj
+#. ZwMWW
#: main0115.xhp
msgctxt ""
"main0115.xhp\n"
"par_id971529881437377\n"
"help.text"
-msgid "Update the paragraph style with the <link href=\"text/shared/00/00000005.xhp#Section7\" name=\"direct formatting\">direct formatting</link> applied to the current paragraph."
-msgstr "Actualitza l'estil de paràgraf amb la <link href=\"text/shared/00/00000005.xhp#Section7\" name=\"formatació directa\">formatació directa</link> aplicada al paràgraf actual."
+msgid "Update the paragraph style with the <link href=\"text/shared/00/00000005.xhp#Section7\">direct formatting</link> applied to the current paragraph."
+msgstr "Actualitza l'estil de paràgraf amb la <link href=\"text/shared/00/00000005.xhp#Section7\">formatació directa</link> aplicada al paràgraf actual."
#. DdHfV
#: main0115.xhp
@@ -1655,23 +1655,23 @@ msgctxt ""
msgid "Adds a paragraph style with the settings of the current selection. You will be prompted to enter the style name."
msgstr "Afig un estil de paràgraf amb els paràmetres de la selecció actual. Se vos sol·licitarà el nom de l'estil."
-#. CocYG
+#. 8cXPR
#: main0115.xhp
msgctxt ""
"main0115.xhp\n"
"hd_id351529881470044\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Load Styles from Template</link>"
+msgid "<link href=\"text/swriter/01/05170000.xhp\">Load Styles from Template</link>"
msgstr ""
-#. gfThj
+#. EycDZ
#: main0115.xhp
msgctxt ""
"main0115.xhp\n"
"par_id551529883682302\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/load_styles.xhp\" name=\"import style\">Import styles</link> from another document or template into the current document."
-msgstr "<link href=\"text/swriter/guide/load_styles.xhp\" name=\"import style\">Importa els estils</link> d'un altre document o plantilla al document actual."
+msgid "<link href=\"text/swriter/guide/load_styles.xhp\">Import styles</link> from another document or template into the current document."
+msgstr "<link href=\"text/swriter/guide/load_styles.xhp\">Importa els estils</link> d'un altre document o plantilla al document actual."
#. Fec4Z
#: main0115.xhp
@@ -1682,14 +1682,14 @@ msgctxt ""
msgid "Manage Styles"
msgstr "Gestiona els estils"
-#. FoCBE
+#. Er7Gx
#: main0115.xhp
msgctxt ""
"main0115.xhp\n"
"par_id901529883673111\n"
"help.text"
-msgid "Opens the <link href=\"text/swriter/01/05140000.xhp\" name=\"linkname\">Styles deck</link> in the sidebar."
-msgstr "Obri el <link href=\"text/swriter/01/05140000.xhp\" name=\"linkname\">Tauler d'estils</link> de la barra lateral."
+msgid "Opens the <link href=\"text/swriter/01/05140000.xhp\">Styles deck</link> in the sidebar."
+msgstr "Obri el <link href=\"text/swriter/01/05140000.xhp\">Tauler d'estils</link> de la barra lateral."
#. VmXct
#: main0120.xhp
@@ -1700,14 +1700,14 @@ msgctxt ""
msgid "Form Menu"
msgstr "Menú Formulari"
-#. CdBAU
+#. 3vYDT
#: main0120.xhp
msgctxt ""
"main0120.xhp\n"
"hd_id111529755027117\n"
"help.text"
-msgid "<link href=\"text/swriter/main0120.xhp\" name=\"Form menu\">Form</link>"
-msgstr "<link href=\"text/swriter/main0120.xhp\" name=\"Menú Formulari\">Formulari</link>"
+msgid "<link href=\"text/swriter/main0120.xhp\">Form</link>"
+msgstr "<link href=\"text/swriter/main0120.xhp\">Formulari</link>"
#. p36K7
#: main0120.xhp
@@ -1799,14 +1799,14 @@ msgctxt ""
msgid "Toolbars"
msgstr "Barres d'eines"
-#. UzCwB
+#. GAURx
#: main0200.xhp
msgctxt ""
"main0200.xhp\n"
"hd_id3145782\n"
"help.text"
-msgid "<variable id=\"main0200\"><link href=\"text/swriter/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr "<variable id=\"main0200\"><link href=\"text/swriter/main0200.xhp\" name=\"Barres d'eines\">Barres d'eines</link></variable>"
+msgid "<variable id=\"main0200\"><link href=\"text/swriter/main0200.xhp\">Toolbars</link></variable>"
+msgstr "<variable id=\"main0200\"><link href=\"text/swriter/main0200.xhp\">Barres d'eines</link></variable>"
#. FURde
#: main0200.xhp
@@ -1826,14 +1826,14 @@ msgctxt ""
msgid "Formatting Bar"
msgstr "Barra de formatació"
-#. NtQSX
+#. NemzY
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3154270\n"
"help.text"
-msgid "<link href=\"text/swriter/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
-msgstr "<link href=\"text/swriter/main0202.xhp\" name=\"Barra de formatació\">Barra de formatació</link>"
+msgid "<link href=\"text/swriter/main0202.xhp\">Formatting Bar</link>"
+msgstr "<link href=\"text/swriter/main0202.xhp\">Barra de formatació</link>"
#. nFs3x
#: main0202.xhp
@@ -1844,13 +1844,13 @@ msgctxt ""
msgid "The Formatting bar contains several text formatting functions."
msgstr "La barra Format conté diverses funcions de formatació de text."
-#. Yc6Kk
+#. 5SXPT
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3149593\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#FontColor\" name=\"Font Color\">Font Color</link>"
+msgid "<link href=\"text/shared/01/05020200.xhp#FontColor\">Font Color</link>"
msgstr ""
#. 9sJ5w
@@ -1898,14 +1898,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Reduces the font size of the selected text.</ahelp>"
msgstr "<ahelp hid=\".\">Redueix la mida de la lletra del text seleccionat.</ahelp>"
-#. Dyiwt
+#. 63ssr
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"par_id3149900\n"
"help.text"
-msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> support is enabled, two additional icons are visible."
-msgstr "Si la compatibilitat amb <link href=\"text/shared/00/00000005.xhp#ctl\" name=\"CTL\">CTL</link> està habilitada, es mostren dues icones addicionals."
+msgid "If <link href=\"text/shared/00/00000005.xhp#ctl\">CTL</link> support is enabled, two additional icons are visible."
+msgstr "Si la compatibilitat amb <link href=\"text/shared/00/00000005.xhp#ctl\">CTL</link> està habilitada, es mostren dues icones addicionals."
#. gHFFH
#: main0202.xhp
@@ -1970,14 +1970,14 @@ msgctxt ""
msgid "Image Bar"
msgstr "Barra d'imatges"
-#. f3Y2P
+#. JdoFF
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3154263\n"
"help.text"
-msgid "<link href=\"text/swriter/main0203.xhp\" name=\"Image Bar\">Image Bar</link>"
-msgstr "<link href=\"text/swriter/main0203.xhp\" name=\"Image Bar\">Barra d'imatges</link>"
+msgid "<link href=\"text/swriter/main0203.xhp\">Image Bar</link>"
+msgstr "<link href=\"text/swriter/main0203.xhp\">Barra d'imatges</link>"
#. Wsrvu
#: main0203.xhp
@@ -1988,32 +1988,32 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GRAFIK_TOOLBOX\">The <emph>Image</emph> Bar contains functions for formatting and positioning selected bitmap graphics.</ahelp>"
msgstr "<ahelp hid=\"HID_GRAFIK_TOOLBOX\">La barra <emph>Imatges</emph> conté funcions per formatar els gràfics de mapa de bits seleccionats i posicionar-los.</ahelp>"
-#. j89Sr
+#. DDVSp
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3145606\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060300.xhp\" name=\"Flip Vertically\">Flip Vertically</link>"
-msgstr "<link href=\"text/swriter/01/05060300.xhp\" name=\"Inverteix verticalment\">Inverteix verticalment</link>"
+msgid "<link href=\"text/swriter/01/05060300.xhp\">Flip Vertically</link>"
+msgstr "<link href=\"text/swriter/01/05060300.xhp\">Inverteix verticalment</link>"
-#. 9zaEc
+#. FrHx9
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3145639\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060300.xhp\" name=\"Flip Horizontally\">Flip Horizontally</link>"
-msgstr "<link href=\"text/swriter/01/05060300.xhp\" name=\"Inverteix horitzontalment\">Inverteix horitzontalment</link>"
+msgid "<link href=\"text/swriter/01/05060300.xhp\">Flip Horizontally</link>"
+msgstr "<link href=\"text/swriter/01/05060300.xhp\">Inverteix horitzontalment</link>"
-#. wkrcU
+#. WPFE9
#: main0203.xhp
msgctxt ""
"main0203.xhp\n"
"hd_id3145673\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060000.xhp\" name=\"Graphics Properties\">Graphics Properties</link>"
-msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Propietats dels gràfics\">Propietats dels gràfics</link>"
+msgid "<link href=\"text/swriter/01/05060000.xhp\">Graphics Properties</link>"
+msgstr "<link href=\"text/swriter/01/05060000.xhp\">Propietats dels gràfics</link>"
#. Xtuxp
#: main0204.xhp
@@ -2024,14 +2024,14 @@ msgctxt ""
msgid "Table Bar"
msgstr "Barra Taula"
-#. rtMC4
+#. bxaip
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id3145587\n"
"help.text"
-msgid "<link href=\"text/swriter/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
-msgstr "<link href=\"text/swriter/main0204.xhp\" name=\"Barra Taula\">Barra Taula</link>"
+msgid "<link href=\"text/swriter/main0204.xhp\">Table Bar</link>"
+msgstr "<link href=\"text/swriter/main0204.xhp\">Barra Taula</link>"
#. RA9Tm
#: main0204.xhp
@@ -2042,50 +2042,50 @@ msgctxt ""
msgid "<ahelp hid=\"HID_TABLE_TOOLBOX\">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\">La barra <emph>Taula</emph> conté les funcions que necessiteu quan treballeu amb taules. La barra apareix quan moveu el cursor cap a una taula.</ahelp>"
-#. 6Rajq
+#. KVWGF
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id3147820\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=\"Suprimeix la fila\">Suprimeix la fila</link>"
+msgid "<link href=\"text/swriter/01/05110500.xhp\">Delete Row</link>"
+msgstr "<link href=\"text/swriter/01/05110500.xhp\">Suprimeix la fila</link>"
-#. AmFfA
+#. WddDC
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id3147231\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=\"Suprimeix la columna\">Suprimeix la columna</link>"
+msgid "<link href=\"text/swriter/01/05120500.xhp\">Delete Column</link>"
+msgstr "<link href=\"text/swriter/01/05120500.xhp\">Suprimeix la columna</link>"
-#. 7DJKV
+#. GsoVm
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id3147592\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
-msgstr "<link href=\"text/shared/01/05100100.xhp\" name=\"Combina les cel·les\">Combina les cel·les</link>"
+msgid "<link href=\"text/shared/01/05100100.xhp\">Merge Cells</link>"
+msgstr "<link href=\"text/shared/01/05100100.xhp\">Combina les cel·les</link>"
-#. jsTkZ
+#. USPoA
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id943333820\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150101.xhp\" name=\"AutoFormat\">AutoFormat</link>"
-msgstr "<link href=\"text/swriter/01/05150101.xhp\" name=\"Formatació automàtica\">Formatació automàtica</link>"
+msgid "<link href=\"text/swriter/01/05150101.xhp\">AutoFormat</link>"
+msgstr "<link href=\"text/swriter/01/05150101.xhp\">Formatació automàtica</link>"
-#. AdtAc
+#. uGJzG
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id94007820\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06100000.xhp\" name=\"Sort\">Sort</link>"
-msgstr "<link href=\"text/swriter/01/06100000.xhp\" name=\"Ordena\">Ordena</link>"
+msgid "<link href=\"text/swriter/01/06100000.xhp\">Sort</link>"
+msgstr "<link href=\"text/swriter/01/06100000.xhp\">Ordena</link>"
#. BHJGW
#: main0205.xhp
@@ -2096,14 +2096,14 @@ msgctxt ""
msgid "Drawing Object Properties Bar"
msgstr "Barra Propietats de l'objecte de dibuix"
-#. Pggg3
+#. takRR
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3154275\n"
"help.text"
-msgid "<link href=\"text/swriter/main0205.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
-msgstr "<link href=\"text/swriter/main0205.xhp\" name=\"Barra de propietats dels objectes de dibuix\">Barra Propietats de l'objecte de dibuix</link>"
+msgid "<link href=\"text/swriter/main0205.xhp\">Drawing Object Properties Bar</link>"
+msgstr "<link href=\"text/swriter/main0205.xhp\">Barra Propietats de l'objecte de dibuix</link>"
#. k6L2d
#: main0205.xhp
@@ -2114,41 +2114,41 @@ msgctxt ""
msgid "<ahelp hid=\"HID_DRAW_TOOLBOX\">You can see the <emph>Drawing Object Properties</emph> bar in Writer and Calc. Select the menu View - Toolbars - Drawing Object Properties. The controls are enabled when a drawing object is selected. You see some different icons by default, whether the current document is a text document or a spreadsheet.</ahelp>"
msgstr "<ahelp hid=\"HID_DRAW_TOOLBOX\">Podeu veure la barra <emph>Propietats de l'objecte de dibuix</emph> al Writer i al Calc. Seleccioneu el menú Visualitza - Barres d'eines - Propietats de l'objecte de dibuix. Els controls s'habiliten quan se selecciona un objete de dibuix. Per defecte, es mostren icones diferents si el document actual és un document de text o si és un full de càlcul.</ahelp>"
-#. BB7ck
+#. Xzm88
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3147784\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=\"Estil de la línia\">Estil de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Style</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Estil de la línia</link>"
-#. aswGL
+#. sbQFC
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3147818\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=\"Amplària de la línia\">Amplària de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Width</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Amplària de la línia</link>"
-#. rkMsR
+#. MAqKS
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3147229\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=\"Color de la línia\">Color de la línia</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\">Line Color</link>"
+msgstr "<link href=\"text/shared/01/05200100.xhp\">Color de la línia</link>"
-#. TVDRJ
+#. rV8so
#: main0205.xhp
msgctxt ""
"main0205.xhp\n"
"hd_id3147280\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=\"Estil/emplenament de l'àrea\">Estil/emplenament de l'àrea</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Area Style/Filling</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\">Estil/emplenament de l'àrea</link>"
#. KevCA
#: main0206.xhp
@@ -2159,14 +2159,14 @@ msgctxt ""
msgid "Bullets and Numbering Bar"
msgstr "Barra Pics i numeració"
-#. 8eDUT
+#. 6PVYG
#: main0206.xhp
msgctxt ""
"main0206.xhp\n"
"hd_id3154256\n"
"help.text"
-msgid "<link href=\"text/swriter/main0206.xhp\" name=\"Bullets and Numbering Bar\">Bullets and Numbering Bar</link>"
-msgstr "<link href=\"text/swriter/main0206.xhp\" name=\"Barra Pics i numeració\">Barra Pics i numeració</link>"
+msgid "<link href=\"text/swriter/main0206.xhp\">Bullets and Numbering Bar</link>"
+msgstr "<link href=\"text/swriter/main0206.xhp\">Barra Pics i numeració</link>"
#. qVzcD
#: main0206.xhp
@@ -2186,14 +2186,14 @@ msgctxt ""
msgid "Status Bar (Writer)"
msgstr ""
-#. bwSYr
+#. XSLaB
#: main0208.xhp
msgctxt ""
"main0208.xhp\n"
"hd_id3153397\n"
"help.text"
-msgid "<link href=\"text/swriter/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
-msgstr "<link href=\"text/swriter/main0208.xhp\" name=\"Barra d'estat\">Barra d'estat</link>"
+msgid "<link href=\"text/swriter/main0208.xhp\">Status Bar</link>"
+msgstr "<link href=\"text/swriter/main0208.xhp\">Barra d'estat</link>"
#. ir7r2
#: main0208.xhp
@@ -2312,14 +2312,14 @@ msgctxt ""
msgid "Print Preview Bar (Writer)"
msgstr ""
-#. cFC44
+#. fuQ93
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
"hd_id3145783\n"
"help.text"
-msgid "<link href=\"text/swriter/main0210.xhp\" name=\"Print Preview\">Print Preview</link>"
-msgstr "<link href=\"text/swriter/main0210.xhp\" name=\"Previsualització d'impressió\">Previsualització d'impressió</link>"
+msgid "<link href=\"text/swriter/main0210.xhp\">Print Preview</link>"
+msgstr "<link href=\"text/swriter/main0210.xhp\">Previsualització d'impressió</link>"
#. nQ4Bj
#: main0210.xhp
@@ -2411,14 +2411,14 @@ msgctxt ""
msgid "Rulers"
msgstr "Regles"
-#. f5jPw
+#. wayxW
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"hd_id3154201\n"
"help.text"
-msgid "<link href=\"text/swriter/main0213.xhp\" name=\"Rulers\">Rulers</link>"
-msgstr "<link href=\"text/swriter/main0213.xhp\" name=\"Regles\">Regles</link>"
+msgid "<link href=\"text/swriter/main0213.xhp\">Rulers</link>"
+msgstr "<link href=\"text/swriter/main0213.xhp\">Regles</link>"
#. V4yDp
#: main0213.xhp
@@ -2429,13 +2429,13 @@ msgctxt ""
msgid "Rulers display the dimensions of the page, and the position of tabs, indents, borders and columns. You can modify all of these on the rulers using the mouse."
msgstr "Els regles mostren les dimensions de la pàgina i la posició dels tabuladors, els sagnats, els marges i les columnes. Tots ells es poden modificar sobre els regles utilitzant el ratolí."
-#. qEzBZ
+#. BLa7m
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3154239\n"
"help.text"
-msgid "By double-clicking on the ruler, you can open the <emph>Paragraph</emph> dialog and assign <link href=\"text/shared/00/00000005.xhp#formatting\" name=\"direct paragraph formatting\">direct paragraph formatting</link> for the current paragraph or all selected paragraphs."
+msgid "By double-clicking on the ruler, you can open the <emph>Paragraph</emph> dialog and assign <link href=\"text/shared/00/00000005.xhp#formatting\">direct paragraph formatting</link> for the current paragraph or all selected paragraphs."
msgstr ""
#. LqCV4
@@ -2447,14 +2447,14 @@ msgctxt ""
msgid "Formula Bar"
msgstr "Barra de fórmules"
-#. Eqs6c
+#. Fqyww
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
"hd_id3145782\n"
"help.text"
-msgid "<variable id=\"releistename\"><link href=\"text/swriter/main0214.xhp\" name=\"Formula Bar\">Formula Bar</link></variable>"
-msgstr "<variable id=\"releistename\"><link href=\"text/swriter/main0214.xhp\" name=\"Barra de fórmules\">Barra de fórmules</link></variable>"
+msgid "<variable id=\"releistename\"><link href=\"text/swriter/main0214.xhp\">Formula Bar</link></variable>"
+msgstr "<variable id=\"releistename\"><link href=\"text/swriter/main0214.xhp\">Barra de fórmules</link></variable>"
#. aQsd3
#: main0214.xhp
@@ -2474,14 +2474,14 @@ msgctxt ""
msgid "Frame Bar"
msgstr "Barra Marc"
-#. uWTF7
+#. bXUUZ
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"hd_id3154251\n"
"help.text"
-msgid "<link href=\"text/swriter/main0215.xhp\" name=\"Frame Bar\">Frame Bar</link>"
-msgstr "<link href=\"text/swriter/main0215.xhp\" name=\"Barra Marc\">Barra Marc</link>"
+msgid "<link href=\"text/swriter/main0215.xhp\">Frame Bar</link>"
+msgstr "<link href=\"text/swriter/main0215.xhp\">Barra Marc</link>"
#. BfA2A
#: main0215.xhp
@@ -2492,14 +2492,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FRAME_TOOLBOX\">When a frame is selected, the <emph>Frame </emph>Bar provides the most important functions for formatting and positioning the frame.</ahelp>"
msgstr "<ahelp hid=\"HID_FRAME_TOOLBOX\">En seleccionar un marc, la barra <emph>Marc</emph> ofereix les funcions més bàsiques per formatar-lo i posicionar-lo.</ahelp>"
-#. sDQ83
+#. jAEEf
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"hd_id3147403\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Off\">Wrap Off</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Ajustament desactivat\">Ajustament desactivat</link>"
+msgid "<link href=\"text/swriter/01/05060200.xhp\">Wrap Off</link>"
+msgstr "<link href=\"text/swriter/01/05060200.xhp\">Ajustament desactivat</link>"
#. PJcEB
#: main0215.xhp
@@ -2510,14 +2510,14 @@ msgctxt ""
msgid "You can also choose this setting on the <emph>Wrap</emph> tab page."
msgstr ""
-#. n8sCd
+#. VZiGB
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"hd_id3153388\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap On\">Wrap On</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Activa l'ajustament\">Activa l'ajustament</link>"
+msgid "<link href=\"text/swriter/01/05060200.xhp\">Wrap On</link>"
+msgstr "<link href=\"text/swriter/01/05060200.xhp\">Activa l'ajustament</link>"
#. oCsKA
#: main0215.xhp
@@ -2528,14 +2528,14 @@ msgctxt ""
msgid "This icon represents the <emph>Page Wrap</emph> option on the <emph>Wrap</emph> tab page."
msgstr ""
-#. euDxv
+#. sHPGv
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"hd_id3147782\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Through\">Wrap Through</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Ajusta a la línia\">Ajusta a la línia</link>"
+msgid "<link href=\"text/swriter/01/05060200.xhp\">Wrap Through</link>"
+msgstr "<link href=\"text/swriter/01/05060200.xhp\">Ajusta a la línia</link>"
#. 3UyQZ
#: main0215.xhp
@@ -2546,23 +2546,23 @@ msgctxt ""
msgid "You can also define this setting on the <emph>Wrap</emph> tab page."
msgstr ""
-#. UcRFJ
+#. pDxUm
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"hd_id3151285\n"
"help.text"
-msgid "<link href=\"text/shared/02/02170000.xhp\" name=\"Background Color\">Background Color</link>"
-msgstr "<link href=\"text/shared/02/02170000.xhp\" name=\"Color de fons\">Color de fons</link>"
+msgid "<link href=\"text/shared/02/02170000.xhp\">Background Color</link>"
+msgstr "<link href=\"text/shared/02/02170000.xhp\">Color de fons</link>"
-#. qz6bu
+#. AQeQ3
#: main0215.xhp
msgctxt ""
"main0215.xhp\n"
"hd_id3151320\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04130000.xhp\" name=\"Frame Properties\">Frame Properties</link>"
-msgstr "<link href=\"text/swriter/01/04130000.xhp\" name=\"Propietats del marc\">Propietats del marc</link>"
+msgid "<link href=\"text/swriter/01/04130000.xhp\">Frame Properties</link>"
+msgstr "<link href=\"text/swriter/01/04130000.xhp\">Propietats del marc</link>"
#. uXf8a
#: main0216.xhp
@@ -2573,13 +2573,13 @@ msgctxt ""
msgid "OLE Object Bar"
msgstr ""
-#. iiqD4
+#. YCkLT
#: main0216.xhp
msgctxt ""
"main0216.xhp\n"
"hd_id3150726\n"
"help.text"
-msgid "<link href=\"text/swriter/main0216.xhp\" name=\"OLE Object Bar\">OLE Object Bar</link>"
+msgid "<link href=\"text/swriter/main0216.xhp\">OLE Object Bar</link>"
msgstr ""
#. phgBb
@@ -2591,14 +2591,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_OLE_TOOLBOX\">The <emph>OLE Object</emph> bar appears when objects are selected, and contains the most important functions for formatting and positioning objects.</ahelp>"
msgstr ""
-#. FGEsG
+#. 2gbs5
#: main0216.xhp
msgctxt ""
"main0216.xhp\n"
"hd_id3153377\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"No Wrap\">No Wrap</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Sense ajustament\">Sense ajustament</link>"
+msgid "<link href=\"text/swriter/01/05060200.xhp\">No Wrap</link>"
+msgstr "<link href=\"text/swriter/01/05060200.xhp\">Sense ajustament</link>"
#. wKChQ
#: main0216.xhp
@@ -2609,14 +2609,14 @@ msgctxt ""
msgid "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/> You can also choose this setting on the <emph>Wrap</emph> tab page."
msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#keinumlauftext\"/> També podeu triar estos paràmetres a la pestanya <emph>Ajusta</emph>."
-#. CBeq4
+#. f4XEc
#: main0216.xhp
msgctxt ""
"main0216.xhp\n"
"hd_id3147766\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\">Wrap</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Ajusta\">Ajusta</link>"
+msgid "<link href=\"text/swriter/01/05060200.xhp\">Wrap</link>"
+msgstr "<link href=\"text/swriter/01/05060200.xhp\">Ajusta</link>"
#. AAfik
#: main0216.xhp
@@ -2627,14 +2627,14 @@ msgctxt ""
msgid "<embedvar href=\"text/swriter/01/05060200.xhp#seitenumlauftext\"/> This icon corresponds to the <emph>Page Wrap</emph> option on the <emph>Wrap</emph> tab page."
msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#seitenumlauftext\"/> Esta icona correspon a l'opció <emph>Ajustament de la pàgina</emph> de la pestanya <emph>Ajusta</emph>."
-#. G6qDF
+#. xdFRN
#: main0216.xhp
msgctxt ""
"main0216.xhp\n"
"hd_id3147824\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap Through\">Wrap Through</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Ajusta a la línia\">Ajusta a la línia</link>"
+msgid "<link href=\"text/swriter/01/05060200.xhp\">Wrap Through</link>"
+msgstr "<link href=\"text/swriter/01/05060200.xhp\">Ajusta a la línia</link>"
#. BqZSu
#: main0216.xhp
@@ -2645,14 +2645,14 @@ msgctxt ""
msgid "<embedvar href=\"text/swriter/01/05060200.xhp#durchlauftext\"/> You can also achieve the same effect through the <emph>Wrap</emph> tab page."
msgstr "<embedvar href=\"text/swriter/01/05060200.xhp#durchlauftext\"/> Podeu aconseguir el mateix efecte a través de la pestanya <emph>Ajusta</emph>."
-#. nvB2E
+#. DjMnH
#: main0216.xhp
msgctxt ""
"main0216.xhp\n"
"hd_id3151208\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05080000.xhp\" name=\"Object Properties\">Object Properties</link>"
-msgstr "<link href=\"text/swriter/01/05080000.xhp\" name=\"Propietats dels objectes\">Propietats dels objectes</link>"
+msgid "<link href=\"text/swriter/01/05080000.xhp\">Object Properties</link>"
+msgstr "<link href=\"text/swriter/01/05080000.xhp\">Propietats dels objectes</link>"
#. rDkoy
#: main0220.xhp
@@ -2663,14 +2663,14 @@ msgctxt ""
msgid "Text Object Bar"
msgstr "Barra Objecte de text"
-#. GApm7
+#. HFpcv
#: main0220.xhp
msgctxt ""
"main0220.xhp\n"
"hd_id3155366\n"
"help.text"
-msgid "<link href=\"text/swriter/main0220.xhp\" name=\"Text Object Bar\">Text Object Bar</link>"
-msgstr "<link href=\"text/swriter/main0220.xhp\" name=\"Barra Objecte de text\">Barra Objecte de text</link>"
+msgid "<link href=\"text/swriter/main0220.xhp\">Text Object Bar</link>"
+msgstr "<link href=\"text/swriter/main0220.xhp\">Barra Objecte de text</link>"
#. AkAcR
#: main0220.xhp
@@ -2681,50 +2681,50 @@ msgctxt ""
msgid "<ahelp hid=\"HID_DRAW_TEXT_TOOLBOX\">Contains formatting commands for text that is contained in a draw object.</ahelp> The <emph>Text Object</emph> bar appears when you double-click inside a draw object."
msgstr "<ahelp hid=\"HID_DRAW_TEXT_TOOLBOX\">Conté ordes de formatació per a text que està contingut en un objecte de dibuix.</ahelp> La barra <emph>Objecte de text</emph> apareix quan feu doble clic en un objecte de dibuix."
-#. QqwCX
+#. MHQMu
#: main0220.xhp
msgctxt ""
"main0220.xhp\n"
"hd_id3153416\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Superíndex\">Superíndex</link>"
+msgid "<link href=\"text/shared/01/05020500.xhp\">Superscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\">Superíndex</link>"
-#. j6Aa4
+#. 5Mshp
#: main0220.xhp
msgctxt ""
"main0220.xhp\n"
"hd_id3147787\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
-msgstr "<link href=\"text/shared/01/05020500.xhp\" name=\"Subíndex\">Subíndex</link>"
+msgid "<link href=\"text/shared/01/05020500.xhp\">Subscript</link>"
+msgstr "<link href=\"text/shared/01/05020500.xhp\">Subíndex</link>"
-#. rAFmU
+#. roADF
#: main0220.xhp
msgctxt ""
"main0220.xhp\n"
"hd_id3147265\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=\"Selecciona-ho tot\">Selecciona-ho tot</link>"
+msgid "<link href=\"text/shared/01/02090000.xhp\">Select All</link>"
+msgstr "<link href=\"text/shared/01/02090000.xhp\">Selecciona-ho tot</link>"
-#. AzuEQ
+#. ELb3R
#: main0220.xhp
msgctxt ""
"main0220.xhp\n"
"hd_id3145596\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caràcter\">Caràcter</link>"
+msgid "<link href=\"text/shared/01/05020000.xhp\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\">Caràcter</link>"
-#. mw4mp
+#. 26W37
#: main0220.xhp
msgctxt ""
"main0220.xhp\n"
"hd_id3145631\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paràgraf\">Paràgraf</link>"
+msgid "<link href=\"text/shared/01/05030000.xhp\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\">Paràgraf</link>"
#. tvQDK
#: main0220.xhp
@@ -2744,14 +2744,14 @@ msgctxt ""
msgid "$[officename] Writer Features"
msgstr "Funcions del $[officename] Writer"
-#. E5FzX
+#. boS3k
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"hd_id3154243\n"
"help.text"
-msgid "<variable id=\"main0503\"><link href=\"text/swriter/main0503.xhp\" name=\"$[officename] Writer Features\">$[officename] Writer Features</link></variable>"
-msgstr "<variable id=\"main0503\"><link href=\"text/swriter/main0503.xhp\" name=\"Funcions del $[officename] Writer\">Funcions del $[officename] Writer</link></variable>"
+msgid "<variable id=\"main0503\"><link href=\"text/swriter/main0503.xhp\">$[officename] Writer Features</link></variable>"
+msgstr "<variable id=\"main0503\"><link href=\"text/swriter/main0503.xhp\">Funcions del $[officename] Writer</link></variable>"
#. DVNHm
#: main0503.xhp
@@ -2771,23 +2771,23 @@ msgctxt ""
msgid "Writing"
msgstr "Escriptura"
-#. hRCfc
+#. puGo7
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3147768\n"
"help.text"
-msgid "$[officename] Writer lets you create both basic documents, such as memos, <link href=\"text/shared/guide/fax.xhp\" name=\"faxes\">faxes</link>, letters , resumes and <link href=\"text/swriter/01/01150000.xhp\" name=\"merge documents\">merge documents</link>, as well as long and complex or multi-part documents, complete with bibliographies, reference tables and indexes."
-msgstr "El $[officename] Writer vos permet crear documents bàsics, com ara memòries, <link href=\"text/shared/guide/fax.xhp\" name=\"faxos\">faxos</link>, cartes i currículums, així com <link href=\"text/swriter/01/01150000.xhp\" name=\"combinar documents\">combinar documents</link>, o bé documents llargs i complexos o amb múltiples parts, completats amb bibliografies, taules de referència i índexs."
+msgid "$[officename] Writer lets you create both basic documents, such as memos, <link href=\"text/shared/guide/fax.xhp\">faxes</link>, letters , resumes and <link href=\"text/swriter/01/01150000.xhp\">merge documents</link>, as well as long and complex or multi-part documents, complete with bibliographies, reference tables and indexes."
+msgstr "El $[officename] Writer vos permet crear documents bàsics, com ara memòries, <link href=\"text/shared/guide/fax.xhp\">faxos</link>, cartes i currículums, així com <link href=\"text/swriter/01/01150000.xhp\">combinar documents</link>, o bé documents llargs i complexos o amb múltiples parts, completats amb bibliografies, taules de referència i índexs."
-#. WwDut
+#. 7XkBL
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3147797\n"
"help.text"
-msgid "$[officename] Writer also includes such useful features as a <link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">spellchecker</link>, a <link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"thesaurus\">thesaurus</link>, <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link>, and <link href=\"text/swriter/01/06030000.xhp\" name=\"Hyphenation\">hyphenation</link> as well as a variety of templates for almost every purpose. You can also create your own templates using the wizards."
-msgstr "El $[officename] Writer també inclou funcions molt pràctiques com ara un <link href=\"text/shared/01/06010000.xhp\" name=\"verificador ortogràfic\">verificador ortogràfic</link>, un <link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"tesaurus\">tesaurus</link>, <link href=\"text/shared/01/06040000.xhp\" name=\"correcció automàtica\">correcció automàtica</link> i <link href=\"text/swriter/01/06030000.xhp\" name=\"partició de mots\">partició de mots</link>, així com una gran varietat de plantilles per a la majoria de les necessitats. També podeu utilitzar els auxiliars per a crear les vostres pròpies plantilles."
+msgid "$[officename] Writer also includes such useful features as a <link href=\"text/shared/01/06010000.xhp\">spellchecker</link>, a <link href=\"text/swriter/guide/using_thesaurus.xhp\">thesaurus</link>, <link href=\"text/shared/01/06040000.xhp\">AutoCorrect</link>, and <link href=\"text/swriter/01/06030000.xhp\">hyphenation</link> as well as a variety of templates for almost every purpose. You can also create your own templates using the wizards."
+msgstr "El $[officename] Writer també inclou funcions molt pràctiques com ara un <link href=\"text/shared/01/06010000.xhp\">verificador ortogràfic</link>, un <link href=\"text/swriter/guide/using_thesaurus.xhp\">tesaurus</link>, <link href=\"text/shared/01/06040000.xhp\">correcció automàtica</link> i <link href=\"text/swriter/01/06030000.xhp\">partició de mots</link>, així com una gran varietat de plantilles per a la majoria de les necessitats. També podeu utilitzar els auxiliars per a crear les vostres pròpies plantilles."
#. TCYhh
#: main0503.xhp
@@ -2798,23 +2798,23 @@ msgctxt ""
msgid "Designing and Structuring"
msgstr "Disseny i estructura"
-#. dJx6j
+#. ZnMXj
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3147239\n"
"help.text"
-msgid "$[officename] offers a wide variety of options to design documents. Use the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles window</link> to create, assign and modify styles for paragraphs, individual characters, frames and pages. In addition, the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link> helps you to quickly move around inside your documents, lets you look at your document in an outline view, and keeps track of the objects that you have inserted into your document."
-msgstr "El $[officename] ofereix un ventall ampli d'opcions per a dissenyar documents. Utilitzeu la <link href=\"text/swriter/01/05140000.xhp\" name=\"Estils\">finestra d'estils</link> per a crear, assignar i modificar estils de paràgraf, caràcters individuals, marcs i pàgines. A més, el <link href=\"text/swriter/01/02110000.xhp\" name=\"Navegador\">Navegador</link> vos ajuda a moure-vos ràpidament pels documents, vos permet visualitzar el document en una visualització d'esquema i fa un seguiment dels objectes que heu inserit en el document."
+msgid "$[officename] offers a wide variety of options to design documents. Use the <link href=\"text/swriter/01/05140000.xhp\">Styles window</link> to create, assign and modify styles for paragraphs, individual characters, frames and pages. In addition, the <link href=\"text/swriter/01/02110000.xhp\">Navigator</link> helps you to quickly move around inside your documents, lets you look at your document in an outline view, and keeps track of the objects that you have inserted into your document."
+msgstr "El $[officename] ofereix un ventall ampli d'opcions per a dissenyar documents. Utilitzeu la <link href=\"text/swriter/01/05140000.xhp\">finestra d'estils</link> per a crear, assignar i modificar estils de paràgraf, caràcters individuals, marcs i pàgines. A més, el <link href=\"text/swriter/01/02110000.xhp\">Navegador</link> vos ajuda a moure-vos ràpidament pels documents, vos permet visualitzar el document en una visualització d'esquema i fa un seguiment dels objectes que heu inserit en el document."
-#. 8ydGS
+#. Pxysg
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3147272\n"
"help.text"
-msgid "You can also create various <link href=\"text/swriter/01/04120000.xhp\" name=\"indexes and tables\">indexes and tables</link> in text documents. You can define the structure and appearance of the indexes and tables according to your individual needs. Live hyperlinks and bookmarks let you jump directly to the corresponding items in the text."
-msgstr "També podeu crear diversos <link href=\"text/swriter/01/04120000.xhp\" name=\"índexs i taules\">índexs i taules</link> en els documents de text. Podeu definir l'estructura i l'aparença dels índexs i de les taules d'acord amb les vostres necessitats. Els enllaços i les adreces d'interés operatius vos permeten saltar directament a l'element corresponent dins del text."
+msgid "You can also create various <link href=\"text/swriter/01/04120000.xhp\">indexes and tables</link> in text documents. You can define the structure and appearance of the indexes and tables according to your individual needs. Live hyperlinks and bookmarks let you jump directly to the corresponding items in the text."
+msgstr "També podeu crear diversos <link href=\"text/swriter/01/04120000.xhp\">índexs i taules</link> en els documents de text. Podeu definir l'estructura i l'aparença dels índexs i de les taules d'acord amb les vostres necessitats. Els enllaços i les adreces d'interés operatius vos permeten saltar directament a l'element corresponent dins del text."
#. Ewjax
#: main0503.xhp
@@ -2825,13 +2825,13 @@ msgctxt ""
msgid "Desktop Publishing with $[officename] Writer"
msgstr "Autoedició amb el $[officename] Writer"
-#. aTuVb
+#. bGD8q
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3145610\n"
"help.text"
-msgid "$[officename] Writer contains numerous desktop publishing and drawing tools to assist you in creating professionally styled documents, such as brochures, newsletters and invitations. You can format your documents with multi-column layouts, <link href=\"text/swriter/guide/text_frame.xhp\" name=\"frames\">frames</link>, <link href=\"text/swriter/guide/insert_graphic.xhp\" name=\"graphics\">graphics</link>, <link href=\"text/swriter/guide/table_insert.xhp\" name=\"tables\">tables</link>, and other objects."
+msgid "$[officename] Writer contains numerous desktop publishing and drawing tools to assist you in creating professionally styled documents, such as brochures, newsletters and invitations. You can format your documents with multi-column layouts, <link href=\"text/swriter/guide/text_frame.xhp\">frames</link>, <link href=\"text/swriter/guide/insert_graphic.xhp\">graphics</link>, <link href=\"text/swriter/guide/table_insert.xhp\">tables</link>, and other objects."
msgstr ""
#. EpFCE
@@ -2843,14 +2843,14 @@ msgctxt ""
msgid "Calculations"
msgstr "Càlculs"
-#. C5S5Z
+#. pGSXF
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3145663\n"
"help.text"
-msgid "Text documents in $[officename] have an integrated <link href=\"text/swriter/main0214.xhp\" name=\"calculation function\">calculation function</link> that helps you execute sophisticated calculations or logical links. You can easily create a table in a text document in order to perform calculations."
-msgstr "Els documents de text del $[officename] tenen integrada una <link href=\"text/swriter/main0214.xhp\" name=\"funció de càlcul\">funció de càlcul</link> que vos ajuda a realitzar càlculs complexos o enllaços lògics. Vos resultarà molt fàcil crear una taula en un document de text per tal de fer càlculs."
+msgid "Text documents in $[officename] have an integrated <link href=\"text/swriter/main0214.xhp\">calculation function</link> that helps you execute sophisticated calculations or logical links. You can easily create a table in a text document in order to perform calculations."
+msgstr "Els documents de text del $[officename] tenen integrada una <link href=\"text/swriter/main0214.xhp\">funció de càlcul</link> que vos ajuda a realitzar càlculs complexos o enllaços lògics. Vos resultarà molt fàcil crear una taula en un document de text per tal de fer càlculs."
#. jKeQK
#: main0503.xhp
@@ -2861,14 +2861,14 @@ msgctxt ""
msgid "Creating Drawings"
msgstr "Creació de dibuixos"
-#. KiGD7
+#. iHHaA
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "The $[officename] Writer <link href=\"text/shared/02/01140000.xhp\" name=\"drawing tool\">drawing tool</link> lets you create drawings, graphics, legends, and other types of drawings directly in text documents."
-msgstr "L'<link href=\"text/shared/02/01140000.xhp\" name=\"eina de dibuix\">eina de dibuix</link> del $[officename] Writer vos permet crear dibuixos, gràfics, signes i altres tipus de dibuixos directament en els documents de text."
+msgid "The $[officename] Writer <link href=\"text/shared/02/01140000.xhp\">drawing tool</link> lets you create drawings, graphics, legends, and other types of drawings directly in text documents."
+msgstr "L'<link href=\"text/shared/02/01140000.xhp\">eina de dibuix</link> del $[officename] Writer vos permet crear dibuixos, gràfics, signes i altres tipus de dibuixos directament en els documents de text."
#. 3GNE9
#: main0503.xhp
@@ -2879,14 +2879,14 @@ msgctxt ""
msgid "Inserting Graphics"
msgstr "Inserció de gràfics"
-#. FREmJ
+#. q9LTp
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3151243\n"
"help.text"
-msgid "You can insert pictures with <link href=\"text/shared/00/00000020.xhp\" name=\"different formats\">different formats</link> into a text document, including graphics with a JPG or GIF format. In addition, the <link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link> provides a collection of clipart graphics, and the <link href=\"text/shared/guide/fontwork.xhp\">Fontwork Gallery</link> creates stunning font effects."
-msgstr "Podeu inserir imatges amb <link href=\"text/shared/00/00000020.xhp\" name=\"formats diferents\">formats diferents</link> dins d'un document de text, incloent-hi gràfics amb format JPG o GIF. A més, la <link href=\"text/shared/01/gallery.xhp\" name=\"Galeria\">Galeria</link> proporciona una col·lecció de gràfics predissenyats, i la <link href=\"text/shared/guide/fontwork.xhp\">Galeria Fontwork</link> crea efectes impressionants sobre els tipus de lletra."
+msgid "You can insert pictures with <link href=\"text/shared/00/00000020.xhp\">different formats</link> into a text document, including graphics with a JPG or GIF format. In addition, the <link href=\"text/shared/01/gallery.xhp\">Gallery</link> provides a collection of clipart graphics, and the <link href=\"text/shared/guide/fontwork.xhp\">Fontwork Gallery</link> creates stunning font effects."
+msgstr "Podeu inserir imatges amb <link href=\"text/shared/00/00000020.xhp\">formats diferents</link> dins d'un document de text, incloent-hi gràfics amb format JPG o GIF. A més, la <link href=\"text/shared/01/gallery.xhp\">Galeria</link> proporciona una col·lecció de gràfics predissenyats, i la <link href=\"text/shared/guide/fontwork.xhp\">Galeria Fontwork</link> crea efectes impressionants sobre els tipus de lletra."
#. pNEHk
#: main0503.xhp
@@ -2897,14 +2897,14 @@ msgctxt ""
msgid "Flexible Application Interface"
msgstr "Interfície d'aplicació flexible"
-#. i8Y4i
+#. Fc9Cx
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3155098\n"
"help.text"
-msgid "The program interface is designed so that you can configure it according to your preferences, including customizing icons and menus. You can position various program windows, such as the Styles window or the Navigator as floating windows anywhere on the screen. You can also <link href=\"text/shared/guide/autohide.xhp\" name=\"dock\">dock</link> some windows to the edge of the workspace."
-msgstr "La interfície de l'aplicació s'ha dissenyat de manera que la pugueu configurar d'acord amb les vostres preferències; podeu personalitzar les icones i els menús, entre d'altres. Podeu posicionar diverses finestres de l'aplicació, com ara la finestra d'estils o del Navegador, en qualsevol part de la pantalla. També podeu <link href=\"text/shared/guide/autohide.xhp\" name=\"dock\">acoblar</link> finestres al cantó de l'àrea de treball."
+msgid "The program interface is designed so that you can configure it according to your preferences, including customizing icons and menus. You can position various program windows, such as the Styles window or the Navigator as floating windows anywhere on the screen. You can also <link href=\"text/shared/guide/autohide.xhp\">dock</link> some windows to the edge of the workspace."
+msgstr "La interfície de l'aplicació s'ha dissenyat de manera que la pugueu configurar d'acord amb les vostres preferències; podeu personalitzar les icones i els menús, entre d'altres. Podeu posicionar diverses finestres de l'aplicació, com ara la finestra d'estils o del Navegador, en qualsevol part de la pantalla. També podeu <link href=\"text/shared/guide/autohide.xhp\">acoblar</link> finestres al cantó de l'àrea de treball."
#. AApwS
#: main0503.xhp
@@ -2915,14 +2915,14 @@ msgctxt ""
msgid "Drag&Drop"
msgstr "Arrossega i deixa anar"
-#. m3Yu8
+#. D3NCe
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3155137\n"
"help.text"
-msgid "The <link href=\"text/shared/guide/dragdrop.xhp\" name=\"drag-and-drop\">drag-and-drop</link> feature enables you to work quickly and efficiently with text documents in $[officename]. For example, you can drag-and-drop objects, such as graphics from the Gallery, from one location to another in the same document, or between open $[officename] documents."
-msgstr "La funció <link href=\"text/shared/guide/dragdrop.xhp\" name=\"arrossega i deixa anar\">arrossega i deixa anar</link> vos permet treballar amb documents de text al $[officename] de manera ràpida i efectiva. Per exemple, podeu arrossegar i deixar anar objectes (com ara gràfics de la galeria) d'un lloc a un altre dins del mateix document, o entre documents del $[officename] oberts."
+msgid "The <link href=\"text/shared/guide/dragdrop.xhp\">drag-and-drop</link> feature enables you to work quickly and efficiently with text documents in $[officename]. For example, you can drag-and-drop objects, such as graphics from the Gallery, from one location to another in the same document, or between open $[officename] documents."
+msgstr "La funció <link href=\"text/shared/guide/dragdrop.xhp\">arrossega i deixa anar</link> vos permet treballar amb documents de text al $[officename] de manera ràpida i efectiva. Per exemple, podeu arrossegar i deixar anar objectes (com ara gràfics de la galeria) d'un lloc a un altre dins del mateix document, o entre documents del $[officename] oberts."
#. D3wvZ
#: main0503.xhp
@@ -2933,14 +2933,14 @@ msgctxt ""
msgid "Help Functions"
msgstr "Funcions d'ajuda"
-#. ENpQ8
+#. BEBTR
#: main0503.xhp
msgctxt ""
"main0503.xhp\n"
"par_id3145675\n"
"help.text"
-msgid "You can use the <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">Help system</link> as a complete reference for $[officename] applications, including <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">instructions</link> for simple and complex tasks."
-msgstr "Podeu utilitzar el <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">sistema d'ajuda</link> com a referència completa per a les aplicacions del $[officename], que inclou <link href=\"text/swriter/guide/main.xhp\" name=\"instruccions\">instruccions</link> per dur a terme tasques simples i complexes."
+msgid "You can use the <link href=\"text/shared/05/00000110.xhp\">Help system</link> as a complete reference for $[officename] applications, including <link href=\"text/swriter/guide/main.xhp\">instructions</link> for simple and complex tasks."
+msgstr "Podeu utilitzar el <link href=\"text/shared/05/00000110.xhp\">sistema d'ajuda</link> com a referència completa per a les aplicacions del $[officename], que inclou <link href=\"text/swriter/guide/main.xhp\">instruccions</link> per dur a terme tasques simples i complexes."
#. 98N4J
#: navigate_toolbar.xhp
@@ -2960,13 +2960,13 @@ msgctxt ""
msgid "<bookmark_value>navigate forward</bookmark_value> <bookmark_value>navigate backward</bookmark_value>"
msgstr ""
-#. 4yqQc
+#. GfGdk
#: navigate_toolbar.xhp
msgctxt ""
"navigate_toolbar.xhp\n"
"hd_id111655496106993\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/swriter/navigate_toolbar.xhp\" name=\"Navigate Toolbar\">Navigate Toolbar</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/navigate_toolbar.xhp\">Navigate Toolbar</link></variable>"
msgstr ""
#. DRFce
@@ -3068,13 +3068,13 @@ msgctxt ""
msgid "Track Changes Toolbar"
msgstr ""
-#. nCDBm
+#. 6QbmX
#: track_changes_toolbar.xhp
msgctxt ""
"track_changes_toolbar.xhp\n"
"hd_id671647012520594\n"
"help.text"
-msgid "<variable id=\"h1\"><link href=\"text/swriter/track_changes_toolbar.xhp\" name=\"Track Changes Toolbar\">Track Changes Toolbar</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/track_changes_toolbar.xhp\">Track Changes Toolbar</link></variable>"
msgstr ""
#. 4XWe5
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/01.po b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
index 6b07208045f..6eb61ae7769 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ca_VALENCIA/>\n"
@@ -44,13 +44,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview when in preview mode.</ahelp>"
msgstr ""
-#. 5Gmsz
+#. 6qGGk
#: 01120000.xhp
msgctxt ""
"01120000.xhp\n"
"par_id8697470\n"
"help.text"
-msgid "Use the icons on the <link href=\"text/swriter/main0210.xhp\" name=\"Page View Object Bar\"><emph>Print Preview Bar</emph></link> to scroll through the pages of the document or to print the document."
+msgid "Use the icons on the <link href=\"text/swriter/main0210.xhp\"><emph>Print Preview Bar</emph></link> to scroll through the pages of the document or to print the document."
msgstr ""
#. 5AeGZ
@@ -107,14 +107,14 @@ msgctxt ""
msgid "<variable id=\"serienbrieftext\"><ahelp hid=\".\">The <emph>Mail Merge</emph> dialog helps you in printing and saving form letters.</ahelp></variable>"
msgstr "<variable id=\"serienbrieftext\"><ahelp hid=\".\">El diàleg <emph>Combinació de correu</emph> vos ajuda a imprimir i a guardar cartes model.</ahelp></variable>"
-#. zidma
+#. 28cP8
#: 01150000.xhp
msgctxt ""
"01150000.xhp\n"
"par_id3154102\n"
"help.text"
-msgid "During printing, the database information replaces the corresponding database fields (placeholders). For more information about inserting database fields refer to the <link href=\"text/swriter/01/04090006.xhp\" name=\"Database\"><emph>Database</emph></link> tab page under <emph>Insert - Field - More Fields</emph>."
-msgstr "Mentre s'imprimeix, la informació de la base de dades canvia els camps corresponents de la base de dades (espais reservats). Per obtindre més informació sobre la inserció de camps de la base de dades, consulteu la pestanya <link href=\"text/swriter/01/04090006.xhp\" name=\"Base de dades\"><emph>Base de dades</emph></link> a <emph>Insereix - Camps - Més camps</emph>."
+msgid "During printing, the database information replaces the corresponding database fields (placeholders). For more information about inserting database fields refer to the <link href=\"text/swriter/01/04090006.xhp\"><emph>Database</emph></link> tab page under <emph>Insert - Field - More Fields</emph>."
+msgstr "Mentre s'imprimeix, la informació de la base de dades canvia els camps corresponents de la base de dades (espais reservats). Per obtindre més informació sobre la inserció de camps de la base de dades, consulteu la pestanya <link href=\"text/swriter/01/04090006.xhp\"><emph>Base de dades</emph></link> a <emph>Insereix - Camps - Més camps</emph>."
#. TUvZD
#: 01150000.xhp
@@ -404,14 +404,14 @@ msgctxt ""
msgid "Outline to Presentation"
msgstr "Esquema a presentació"
-#. csBz2
+#. nK9xD
#: 01160100.xhp
msgctxt ""
"01160100.xhp\n"
"hd_id3154571\n"
"help.text"
-msgid "<link href=\"text/swriter/01/01160100.xhp\" name=\"Outline to Presentation\">Outline to Presentation</link>"
-msgstr "<link href=\"text/swriter/01/01160100.xhp\" name=\"Esquema a presentació\">Esquema a presentació</link>"
+msgid "<link href=\"text/swriter/01/01160100.xhp\">Outline to Presentation</link>"
+msgstr "<link href=\"text/swriter/01/01160100.xhp\">Esquema a presentació</link>"
#. GXZRx
#: 01160100.xhp
@@ -440,14 +440,14 @@ msgctxt ""
msgid "<bookmark_value>send;outline to clipboard</bookmark_value><bookmark_value>outline;outline to clipboard</bookmark_value><bookmark_value>clipboard;outline to clipboard</bookmark_value>"
msgstr "<bookmark_value>enviament;esquema a porta-retalls</bookmark_value><bookmark_value>esquema;esquema a porta-retalls</bookmark_value><bookmark_value>porta-retalls;esquema a porta-retalls</bookmark_value>"
-#. CoiER
+#. oqc8G
#: 01160200.xhp
msgctxt ""
"01160200.xhp\n"
"hd_id3145241\n"
"help.text"
-msgid "<link href=\"text/swriter/01/01160200.xhp\" name=\"Outline to Clipboard\">Outline to Clipboard</link>"
-msgstr "<link href=\"text/swriter/01/01160200.xhp\" name=\"Esquema a porta-retalls\">Esquema a porta-retalls</link>"
+msgid "<link href=\"text/swriter/01/01160200.xhp\">Outline to Clipboard</link>"
+msgstr "<link href=\"text/swriter/01/01160200.xhp\">Esquema a porta-retalls</link>"
#. UNDJK
#: 01160200.xhp
@@ -467,14 +467,14 @@ msgctxt ""
msgid "Create AutoAbstract"
msgstr "Crea un resum automàtic"
-#. B7NrC
+#. CMFML
#: 01160300.xhp
msgctxt ""
"01160300.xhp\n"
"hd_id3148570\n"
"help.text"
-msgid "<link href=\"text/swriter/01/01160300.xhp\" name=\"Create AutoAbstract\">Create AutoAbstract</link>"
-msgstr "<link href=\"text/swriter/01/01160300.xhp\" name=\"Crea un resum automàtic\">Crea un resum automàtic</link>"
+msgid "<link href=\"text/swriter/01/01160300.xhp\">Create AutoAbstract</link>"
+msgstr "<link href=\"text/swriter/01/01160300.xhp\">Crea un resum automàtic</link>"
#. oq5k2
#: 01160300.xhp
@@ -530,14 +530,14 @@ msgctxt ""
msgid "AutoAbstract to Presentation"
msgstr "Fes un resum automàtic de la presentació"
-#. tafyG
+#. jY3ma
#: 01160400.xhp
msgctxt ""
"01160400.xhp\n"
"hd_id3151183\n"
"help.text"
-msgid "<link href=\"text/swriter/01/01160400.xhp\" name=\"AutoAbstract to Presentation\">AutoAbstract to Presentation</link>"
-msgstr "<link href=\"text/swriter/01/01160400.xhp\" name=\"Fes un resum automàtic de la presentació\">Fes un resum automàtic de la presentació</link>"
+msgid "<link href=\"text/swriter/01/01160400.xhp\">AutoAbstract to Presentation</link>"
+msgstr "<link href=\"text/swriter/01/01160400.xhp\">Fes un resum automàtic de la presentació</link>"
#. hNEPz
#: 01160400.xhp
@@ -674,22 +674,22 @@ msgctxt ""
msgid "Navigator"
msgstr "Navegador"
-#. 5Pc72
+#. K76qr
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link></variable>"
+msgid "<variable id=\"Navigator\"><link href=\"text/swriter/01/02110000.xhp\">Navigator</link></variable>"
msgstr ""
-#. BpzBg
+#. GjdMp
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149802\n"
"help.text"
-msgid "<ahelp hid=\".\">Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organize master documents.</ahelp> To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dock\">dock</link> the Navigator at the edge of your workspace."
+msgid "<ahelp hid=\".\">Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organize master documents.</ahelp> To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can <link href=\"text/shared/00/00000005.xhp#docking\">dock</link> the Navigator at the edge of your workspace."
msgstr ""
#. 3Bt3V
@@ -926,13 +926,13 @@ msgctxt ""
msgid "Headings"
msgstr ""
-#. GMABG
+#. JzEBd
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id431603287134620\n"
"help.text"
-msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\" name=\"clipboard\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent1\">Outline Folding</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck1\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl1\">Outline Level</link>"
+msgid "Collapse/Expand All, <link href=\"text/swriter/01/01160200.xhp\">Send Outline to Clipboard</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\">Outline Folding</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\">Outline Level</link>"
msgstr ""
#. uH7Av
@@ -944,13 +944,13 @@ msgctxt ""
msgid "Heading item"
msgstr ""
-#. fVaAR
+#. nXVLX
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id611603291783875\n"
"help.text"
-msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\" name=\"promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\" name=\"demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\" name=\"promotelvl\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\" name=\"demotelvl\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\" name=\"outlinecontent2\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\" name=\"outlinetrck2\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\" name=\"OutlineLvl2\">Outline Level</link>"
+msgid "Collapse/Expand All, Go to, Select, Delete, <link href=\"text/swriter/01/02110000.xhp#promotechap\">Promote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#demotechap\">Demote Chapter</link>, <link href=\"text/swriter/01/02110000.xhp#promotelevel\">Promote Level</link>, <link href=\"text/swriter/01/02110000.xhp#demotelevel\">Demote Level</link>, <link href=\"text/swriter/01/outlinecontent_visibility.xhp\">Outline Content Visibility</link>, <link href=\"text/swriter/01/02110000.xhp#outlinetracking\">Outline Tracking</link>, <link href=\"text/swriter/01/02110000.xhp#outlinelvl\">Outline Level</link>"
msgstr ""
#. bdbZB
@@ -1295,13 +1295,13 @@ msgctxt ""
msgid "All"
msgstr ""
-#. AChDj
+#. WjFHL
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id711603291482148\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02110000.xhp#dragmode\" name=\"Drag Mode\">Drag Mode</link>, <link href=\"text/swriter/01/02110000.xhp#display\" name=\"display\">Display</link>"
+msgid "<link href=\"text/swriter/01/02110000.xhp#dragmode\">Drag Mode</link>, <link href=\"text/swriter/01/02110000.xhp#display\">Display</link>"
msgstr ""
#. SMFgG
@@ -1322,14 +1322,14 @@ msgctxt ""
msgid "Toggle Master View"
msgstr "Canvia la visualització mestra"
-#. wbAFo
+#. eY3J5
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3155917\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches between master view and normal view if a master document is open.</ahelp> Switches between <link href=\"text/shared/01/02110000.xhp\" name=\"master view\">master view</link> and normal view if a <link href=\"text/shared/01/01010001.xhp\" name=\"master document\">master document</link> is open."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Canvia entre la visualització mestra i la normal si el document mestre és obert.</ahelp> Canvia entre la <link href=\"text/shared/01/02110000.xhp\" name=\"visualització mestra\">visualització mestra</link> i la visualització normal si el <link href=\"text/shared/01/01010001.xhp\" name=\"document mestre\">document mestre</link> és obert."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches between master view and normal view if a master document is open.</ahelp> Switches between <link href=\"text/shared/01/02110000.xhp\">master view</link> and normal view if a <link href=\"text/shared/01/01010001.xhp\">master document</link> is open."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Canvia entre la visualització mestra i la normal si el document mestre és obert.</ahelp> Canvia entre la <link href=\"text/shared/01/02110000.xhp\">visualització mestra</link> i la visualització normal si el <link href=\"text/shared/01/01010001.xhp\">document mestre</link> és obert."
#. Tutfu
#: 02110000.xhp
@@ -1466,14 +1466,14 @@ msgctxt ""
msgid "Set Reminder"
msgstr "Defineix el recordatori"
-#. Ahyyy
+#. eDZZh
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153011\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, in the <emph>Navigation</emph> window click the <emph>Reminder</emph> icon, and then click the <emph>Previous</emph> or <emph>Next</emph> button.</ahelp> Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Feu clic per establir un recordatori a la posició actual del cursor. Podeu definir un màxim de cinc recordatoris. Per saltar a un recordatori, feu clic a la icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navegació\"><emph>Navegació</emph></link>, a la finestra <emph>Navegació</emph> feu clic a la icona <emph>Recordatori</emph>, després feu clic al botó <emph>Anterior</emph> o <emph>Següent</emph>.</ahelp> Feu clic ací per establir un recordatori a la posició actual del cursor. Podeu definir un màxim de cinc recordatoris. Per saltar a un recordatori, feu clic a la icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navegació\">Navegació</link>, a la finestra Navegació feu clic a la icona Recordatori i, a continuació, feu clic al botó Anterior o Següent."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\"><emph>Navigation</emph></link> icon, in the <emph>Navigation</emph> window click the <emph>Reminder</emph> icon, and then click the <emph>Previous</emph> or <emph>Next</emph> button.</ahelp> Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\">Navigation</link> icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Feu clic per establir un recordatori a la posició actual del cursor. Podeu definir un màxim de cinc recordatoris. Per saltar a un recordatori, feu clic a la icona <link href=\"text/swriter/01/02110100.xhp\"><emph>Navegació</emph></link>, a la finestra <emph>Navegació</emph> feu clic a la icona <emph>Recordatori</emph>, després feu clic al botó <emph>Anterior</emph> o <emph>Següent</emph>.</ahelp> Feu clic ací per establir un recordatori a la posició actual del cursor. Podeu definir un màxim de cinc recordatoris. Per saltar a un recordatori, feu clic a la icona <link href=\"text/swriter/01/02110100.xhp\">Navegació</link>, a la finestra Navegació feu clic a la icona Recordatori i, a continuació, feu clic al botó Anterior o Següent."
#. j2jDL
#: 02110000.xhp
@@ -1916,13 +1916,13 @@ msgctxt ""
msgid "Choose <menuitem>Off</menuitem> to disable Outline Tracking."
msgstr ""
-#. zV9BS
+#. HH4Rj
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id1001603575103843\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/arrange_chapters.xhp\" name=\"chapnavigation\">Using Navigator to Arrange Headings</link>"
+msgid "<link href=\"text/swriter/guide/arrange_chapters.xhp\">Using Navigator to Arrange Headings</link>"
msgstr ""
#. QGQEs
@@ -1979,13 +1979,13 @@ msgctxt ""
msgid "By default, as long as you have not selected any other entry, the arrow buttons jump to the previous or the next page in the document. The arrow buttons are black if you are browsing through pages and blue if you jump to other objects."
msgstr "Per defecte, sempre que no hàgeu seleccionat cap altre objecte, els botons de cursor salten a la pàgina anterior o següent del document. Els botons de cursor són de color negre quan navegueu per les pàgines i de color blau si salteu a altres objectes."
-#. ibYbz
+#. Ep9Po
#: 02110100.xhp
msgctxt ""
"02110100.xhp\n"
"par_id3154330\n"
"help.text"
-msgid "The entries largely correspond to those in the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link> selection box. You can also select other jump destinations. An example are the reminders, which you can set with the <emph>Set Reminder</emph> icon in the Navigator. You can select an object from among the following options on the <emph>Navigation</emph> toolbar: table, frame, graphics, OLE object, page, headings, reminder, drawing object, control field, section, bookmark, selection, footnote, note, index entry, table formula, wrong table formula."
+msgid "The entries largely correspond to those in the <link href=\"text/swriter/01/02110000.xhp\">Navigator</link> selection box. You can also select other jump destinations. An example are the reminders, which you can set with the <emph>Set Reminder</emph> icon in the Navigator. You can select an object from among the following options on the <emph>Navigation</emph> toolbar: table, frame, graphics, OLE object, page, headings, reminder, drawing object, control field, section, bookmark, selection, footnote, note, index entry, table formula, wrong table formula."
msgstr ""
#. gVFCS
@@ -2033,14 +2033,14 @@ msgctxt ""
msgid "<ahelp hid=\"HID_NAVI_VS\">Click the icon for the type of objects you want to browse through. Then click one of the \"Previous Object\" or \"Next Object\" arrow buttons. The names of these buttons indicate the type of object you have selected. The text cursor is placed on whichever object you have selected.</ahelp>"
msgstr "<ahelp hid=\"HID_NAVI_VS\">Feu clic a la icona dels tipus d'objectes pels quals voleu navegar. Després feu clic en un dels botons de cursor \"Objecte anterior\" o \"Objecte següent\". Els noms d'estos botons indiquen el tipus d'objecte que heu seleccionat. El cursor de text es troba a qualsevol dels objectes que heu seleccionat.</ahelp>"
-#. j8DZJ
+#. miGt4
#: 02110100.xhp
msgctxt ""
"02110100.xhp\n"
"par_id3149968\n"
"help.text"
-msgid "You can configure $[officename] according to your specific preferences for navigating within a document. To do this, choose <link href=\"text/shared/01/06140000.xhp\" name=\"Tools - Customize\"><emph>Tools - Customize</emph></link>. The various tables for adapting <link href=\"text/shared/01/06140100.xhp\" name=\"menus\">menus</link>, <link href=\"text/shared/01/06140200.xhp\" name=\"keyboard input\">keyboard input</link> or toolbars contain various functions for navigation within the document under the \"Navigate\" area. In this way you can jump to the index tags in the document with the \"To Next/Previous Index Tag\" functions."
-msgstr "Podeu configurar el $[officename] segons les vostres preferències específiques per navegar dins d'un document. Per fer-ho, trieu <link href=\"text/shared/01/06140000.xhp\" name=\"Eines - Personalitza\"><emph>Eines - Personalitza</emph></link>. Les diferents taules per adaptar els <link href=\"text/shared/01/06140100.xhp\" name=\"menús\">menús</link>, les <link href=\"text/shared/01/06140200.xhp\" name=\"entrades del teclat\">entrades del teclat</link> o les barres d'eines contenen diverses funcions per navegar pel document a l'àrea \"Navegació\". D'esta manera podeu saltar a les etiquetes d'índex amb les funcions \"A l'etiqueta d'índex següent/anterior\"."
+msgid "You can configure $[officename] according to your specific preferences for navigating within a document. To do this, choose <link href=\"text/shared/01/06140000.xhp\"><emph>Tools - Customize</emph></link>. The various tables for adapting <link href=\"text/shared/01/06140100.xhp\">menus</link>, <link href=\"text/shared/01/06140200.xhp\">keyboard input</link> or toolbars contain various functions for navigation within the document under the \"Navigate\" area. In this way you can jump to the index tags in the document with the \"To Next/Previous Index Tag\" functions."
+msgstr "Podeu configurar el $[officename] segons les vostres preferències específiques per navegar dins d'un document. Per fer-ho, trieu <link href=\"text/shared/01/06140000.xhp\"><emph>Eines - Personalitza</emph></link>. Les diferents taules per adaptar els <link href=\"text/shared/01/06140100.xhp\">menús</link>, les <link href=\"text/shared/01/06140200.xhp\">entrades del teclat</link> o les barres d'eines contenen diverses funcions per navegar pel document a l'àrea \"Navegació\". D'esta manera podeu saltar a les etiquetes d'índex amb les funcions \"A l'etiqueta d'índex següent/anterior\"."
#. gh75t
#: 02110100.xhp
@@ -2258,14 +2258,14 @@ msgctxt ""
msgid "AutoText"
msgstr "Text automàtic"
-#. qH4A3
+#. Pc4SM
#: 02120000.xhp
msgctxt ""
"02120000.xhp\n"
"hd_id3147512\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02120000.xhp\" name=\"AutoText\">AutoText</link>"
-msgstr "<link href=\"text/swriter/01/02120000.xhp\" name=\"Text automàtic\">Text automàtic</link>"
+msgid "<link href=\"text/swriter/01/02120000.xhp\">AutoText</link>"
+msgstr "<link href=\"text/swriter/01/02120000.xhp\">Text automàtic</link>"
#. YDBoV
#: 02120000.xhp
@@ -2519,14 +2519,14 @@ msgctxt ""
msgid "Rename"
msgstr "Canvia el nom"
-#. ABcPw
+#. e5rwx
#: 02120000.xhp
msgctxt ""
"02120000.xhp\n"
"par_id3150786\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Rename AutoText dialog, where you can change the name of the selected AutoText entry.</ahelp> Opens the <link href=\"text/swriter/01/02120100.xhp\" name=\"Rename Text Block\">Rename AutoText</link> dialog, where you can change the name of the selected AutoText entry."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Obri el diàleg Canvia el nom del text automàtic, on podeu canviar el nom de l'entrada de text automàtic seleccionada.</ahelp> Obri el diàleg <link href=\"text/swriter/01/02120100.xhp\" name=\"Canvia el nom del bloc de text\">Canvia el nom del text automàtic</link>, on podeu canviar el nom de l'entrada de text automàtic seleccionada."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Rename AutoText dialog, where you can change the name of the selected AutoText entry.</ahelp> Opens the <link href=\"text/swriter/01/02120100.xhp\">Rename AutoText</link> dialog, where you can change the name of the selected AutoText entry."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Obri el diàleg Canvia el nom del text automàtic, on podeu canviar el nom de l'entrada de text automàtic seleccionada.</ahelp> Obri el diàleg <link href=\"text/swriter/01/02120100.xhp\">Canvia el nom del text automàtic</link>, on podeu canviar el nom de l'entrada de text automàtic seleccionada."
#. LtoYh
#: 02120000.xhp
@@ -2555,14 +2555,14 @@ msgctxt ""
msgid "Macro"
msgstr "Macro"
-#. PpSwY
+#. BFBo5
#: 02120000.xhp
msgctxt ""
"02120000.xhp\n"
"par_id3145106\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Assign Macro dialog, where you attach a macro to the selected AutoText entry.</ahelp> Opens the <link href=\"text/swriter/01/05060700.xhp\" name=\"Assign Macro\">Assign Macro</link> dialog, where you attach a macro to the selected AutoText entry."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Obri el diàleg Assigna la macro, on podeu adjuntar una macro a l'entrada de text automàtic seleccionada.</ahelp> Obri el diàleg <link href=\"text/swriter/01/05060700.xhp\" name=\"Assigna la macro\">Assigna la macro</link>, on podeu adjuntar una macro a l'entrada de text automàtic seleccionada."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Assign Macro dialog, where you attach a macro to the selected AutoText entry.</ahelp> Opens the <link href=\"text/swriter/01/05060700.xhp\">Assign Macro</link> dialog, where you attach a macro to the selected AutoText entry."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Obri el diàleg Assigna la macro, on podeu adjuntar una macro a l'entrada de text automàtic seleccionada.</ahelp> Obri el diàleg <link href=\"text/swriter/01/05060700.xhp\">Assigna la macro</link>, on podeu adjuntar una macro a l'entrada de text automàtic seleccionada."
#. qxtvA
#: 02120000.xhp
@@ -2726,14 +2726,14 @@ msgctxt ""
msgid "Path"
msgstr "Camí"
-#. FsKz9
+#. Azxm3
#: 02120000.xhp
msgctxt ""
"02120000.xhp\n"
"par_id3154852\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Edit Paths dialog, where you can select the directory to store AutoText.</ahelp> Opens the <link href=\"text/shared/optionen/01010301.xhp\" name=\"Edit Paths\">Edit Paths</link> dialog, where you can select the directory to store AutoText."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Obri el diàleg Edita els camins, on podeu seleccionar el directori on s'emmagatzemarà el text automàtic.</ahelp> Obri el diàleg <link href=\"text/shared/optionen/01010301.xhp\" name=\"Edita els camins\">Edita els camins</link>, on podeu seleccionar el directori on s'emmagatzemarà el text automàtic."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Edit Paths dialog, where you can select the directory to store AutoText.</ahelp> Opens the <link href=\"text/shared/optionen/01010301.xhp\">Edit Paths</link> dialog, where you can select the directory to store AutoText."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Obri el diàleg Edita els camins, on podeu seleccionar el directori on s'emmagatzemarà el text automàtic.</ahelp> Obri el diàleg <link href=\"text/shared/optionen/01010301.xhp\">Edita els camins</link>, on podeu seleccionar el directori on s'emmagatzemarà el text automàtic."
#. 2uAPt
#: 02120000.xhp
@@ -2996,14 +2996,14 @@ msgctxt ""
msgid "New"
msgstr "Nou"
-#. sK6CB
+#. VvYca
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3151389\n"
"help.text"
-msgid "Opens the <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link> dialog, where you can create a new entry."
-msgstr "Obri el diàleg <link href=\"text/swriter/01/04120229.xhp\" name=\"Defineix l'entrada bibliogràfica\">Defineix l'entrada bibliogràfica</link>, on podeu crear una entrada nova."
+msgid "Opens the <link href=\"text/swriter/01/04120229.xhp\">Define Bibliography Entry</link> dialog, where you can create a new entry."
+msgstr "Obri el diàleg <link href=\"text/swriter/01/04120229.xhp\">Defineix l'entrada bibliogràfica</link>, on podeu crear una entrada nova."
#. MDGAn
#: 02130000.xhp
@@ -3014,23 +3014,23 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. CkvE8
+#. U6KLb
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3155620\n"
"help.text"
-msgid "Opens the <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link> dialog, where you can edit the current entry."
-msgstr "Obri el diàleg <link href=\"text/swriter/01/04120229.xhp\" name=\"Defineix l'entrada bibliogràfica\">Defineix l'entrada bibliogràfica</link>, on podeu editar l'entrada actual."
+msgid "Opens the <link href=\"text/swriter/01/04120229.xhp\">Define Bibliography Entry</link> dialog, where you can edit the current entry."
+msgstr "Obri el diàleg <link href=\"text/swriter/01/04120229.xhp\">Defineix l'entrada bibliogràfica</link>, on podeu editar l'entrada actual."
-#. 3kK4c
+#. yiBdr
#: 02130000.xhp
msgctxt ""
"02130000.xhp\n"
"par_id3154560\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Tips for working with bibliography entries\">Tips for working with bibliography entries</link>."
-msgstr "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Consells per treballar amb entrades bibliogràfiques\">Consells per treballar amb entrades bibliogràfiques</link>."
+msgid "<link href=\"text/swriter/guide/indices_literature.xhp\">Tips for working with bibliography entries</link>."
+msgstr "<link href=\"text/swriter/guide/indices_literature.xhp\">Consells per treballar amb entrades bibliogràfiques</link>."
#. kERFw
#: 02140000.xhp
@@ -3077,23 +3077,23 @@ msgctxt ""
msgid "To change the view between field names and field contents in your document, choose <emph>View - Field Names</emph>."
msgstr "Per a canviar la visualització entre els noms i els continguts dels camps del document, trieu <emph>Visualitza ▸ Noms dels camps</emph>."
-#. fabLD
+#. HpWj4
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3149106\n"
"help.text"
-msgid "If you select a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE\">DDE</link> link in your document, and then choose <item type=\"menuitem\">Edit - Fields</item>, the <link href=\"text/shared/01/02180000.xhp\" name=\"Edit Links\"><emph>Edit Links</emph></link> dialog opens."
-msgstr "Si seleccioneu un enllaç <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE\">DDE</link> en el document i, a continuació, trieu <item type=\"menuitem\">Edita ▸ Camps</item>, s'obrirà el diàleg <link href=\"text/shared/01/02180000.xhp\" name=\"Edita els enllaços\"><emph>Edita els enllaços</emph></link>."
+msgid "If you select a <link href=\"text/shared/00/00000005.xhp#dde\">DDE</link> link in your document, and then choose <item type=\"menuitem\">Edit - Fields</item>, the <link href=\"text/shared/01/02180000.xhp\"><emph>Edit Links</emph></link> dialog opens."
+msgstr "Si seleccioneu un enllaç <link href=\"text/shared/00/00000005.xhp#dde\">DDE</link> en el document i, a continuació, trieu <item type=\"menuitem\">Edita ▸ Camps</item>, s'obrirà el diàleg <link href=\"text/shared/01/02180000.xhp\"><emph>Edita els enllaços</emph></link>."
-#. TitAj
+#. pJGco
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3149036\n"
"help.text"
-msgid "If you click in front of a \"sender\" type field, and then choose <item type=\"menuitem\">Edit - Fields</item>, the <link href=\"text/shared/optionen/01010100.xhp\" name=\"User data\"><emph>User data</emph></link> dialog opens."
-msgstr "Si feu clic davant d'un camp del tipus «remitent» i, a continuació, trieu <item type=\"menuitem\">Edita ▸ Camps</item>, s'obrirà el diàleg <link href=\"text/shared/optionen/01010100.xhp\" name=\"Dades de l'usuari\"><emph>Dades de l'usuari</emph></link>."
+msgid "If you click in front of a \"sender\" type field, and then choose <item type=\"menuitem\">Edit - Fields</item>, the <link href=\"text/shared/optionen/01010100.xhp\"><emph>User data</emph></link> dialog opens."
+msgstr "Si feu clic davant d'un camp del tipus «remitent» i, a continuació, trieu <item type=\"menuitem\">Edita ▸ Camps</item>, s'obrirà el diàleg <link href=\"text/shared/optionen/01010100.xhp\"><emph>Dades de l'usuari</emph></link>."
#. Yikj8
#: 02140000.xhp
@@ -3176,14 +3176,14 @@ msgctxt ""
msgid "Displays the offset for the selected field type, for example, for \"Next Page,\" \"Page Numbers\" or \"Previous Page\". You can enter a new offset value which will be added to the displayed page number."
msgstr "Mostra el desplaçament per al tipus de camp seleccionat, per exemple, per a «Pàgina següent», «Números de pàgina» o «Pàgina anterior». Si ho voleu, podeu introduir un valor de desplaçament nou que s'afegirà al número de pàgina que es mostra."
-#. wBfi7
+#. Etric
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id5081637\n"
"help.text"
-msgid "If you want to change the actual page number and not the displayed number, do not use the <emph>Offset</emph> value. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>Page Numbers</emph></link> guide."
-msgstr "Si voleu canviar el número de pàgina actual i no el número que es mostra, no utilitzeu el valor <emph>Desplaçament</emph>. Per canviar els números de pàgina, llegiu la guia <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Número de pàgina\"><emph>Número de pàgina</emph></link>."
+msgid "If you want to change the actual page number and not the displayed number, do not use the <emph>Offset</emph> value. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\"><emph>Page Numbers</emph></link> guide."
+msgstr "Si voleu canviar el número de pàgina actual i no el número que es mostra, no utilitzeu el valor <emph>Desplaçament</emph>. Per canviar els números de pàgina, llegiu la guia <link href=\"text/swriter/guide/pagenumbers.xhp\"><emph>Número de pàgina</emph></link>."
#. RCCBx
#: 02140000.xhp
@@ -3248,14 +3248,14 @@ msgctxt ""
msgid "Condition"
msgstr "Condició"
-#. kkSiD
+#. Aj68C
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3156124\n"
"help.text"
-msgid "Displays the condition that must be met for the field to be activated. If you want, you can enter a new <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">condition</link>."
-msgstr "Mostra la condició que s'ha de complir perquè s'active el camp. Si ho voleu, podeu introduir-hi una <link href=\"text/swriter/01/04090200.xhp\" name=\"condició\">condició</link> nova."
+msgid "Displays the condition that must be met for the field to be activated. If you want, you can enter a new <link href=\"text/swriter/01/04090200.xhp\">condition</link>."
+msgstr "Mostra la condició que s'ha de complir perquè s'active el camp. Si ho voleu, podeu introduir-hi una <link href=\"text/swriter/01/04090200.xhp\">condició</link> nova."
#. Tcj4R
#: 02140000.xhp
@@ -3482,14 +3482,14 @@ msgctxt ""
msgid "Edit Footnote or Endnote"
msgstr "Edit la nota al peu o final"
-#. B7FCm
+#. GUKCd
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"hd_id3143276\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02150000.xhp\" name=\"Edit Footnotes\">Edit Footnote or Endnote</link>"
-msgstr "<link href=\"text/swriter/01/02150000.xhp\" name=\"Edita les notes al peu\">Nota al peu o nota final</link>"
+msgid "<link href=\"text/swriter/01/02150000.xhp\">Edit Footnote or Endnote</link>"
+msgstr "<link href=\"text/swriter/01/02150000.xhp\">Nota al peu o nota final</link>"
#. ewzYY
#: 02150000.xhp
@@ -3698,14 +3698,14 @@ msgctxt ""
msgid "Next footnote"
msgstr "Nota al peu següent"
-#. Gduki
+#. Y7AgF
#: 02150000.xhp
msgctxt ""
"02150000.xhp\n"
"par_id3150772\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insert Footnote\">Insert Footnote/Endnote</link> dialog."
-msgstr "Diàleg <link href=\"text/swriter/01/04030000.xhp\" name=\"Insereix una nota al peu\">Insereix una nota al peu/una nota final</link>."
+msgid "<link href=\"text/swriter/01/04030000.xhp\">Insert Footnote/Endnote</link> dialog."
+msgstr "Diàleg <link href=\"text/swriter/01/04030000.xhp\">Insereix una nota al peu/una nota final</link>."
#. 5bBfh
#: 02160000.xhp
@@ -3734,14 +3734,14 @@ msgctxt ""
msgid "<variable id=\"index_entry_text\"><variable id=\"verzeichniseintragtext\"><ahelp hid=\".uno:IndexEntryDialog\">Edits the selected index entry. Click in front of or in the index entry, and then choose this command.</ahelp> </variable></variable>"
msgstr "<variable id=\"index_entry_text\"><variable id=\"verzeichniseintragtext\"><ahelp hid=\".uno:IndexEntryDialog\">Edita l'entrada d'índex seleccionada. Feu clic davant o en la mateixa entrada d'índex i, a continuació, trieu esta orde.</ahelp></variable></variable>"
-#. MqZgj
+#. CvxyK
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3155896\n"
"help.text"
-msgid "To insert an index entry, select a word in the document, and then choose <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Table of Contents and Index - Index Entry\"><item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item></link>."
-msgstr "Per a inserir una entrada d'índex seleccioneu una paraula en el document i a continuació seleccioneu <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Table of Contents and Index - Index Entry\"><item type=\"menuitem\">Insereix ▸ Taula de continguts i índex ▸ Entrada d'índex</item></link>."
+msgid "To insert an index entry, select a word in the document, and then choose <link href=\"text/swriter/01/04120100.xhp\"><item type=\"menuitem\">Insert - Table of Contents and Index - Index Entry</item></link>."
+msgstr "Per a inserir una entrada d'índex seleccioneu una paraula en el document i a continuació seleccioneu <link href=\"text/swriter/01/04120100.xhp\"><item type=\"menuitem\">Insereix ▸ Taula de continguts i índex ▸ Entrada d'índex</item></link>."
#. qnnFh
#: 02160000.xhp
@@ -4013,14 +4013,14 @@ msgctxt ""
msgid "Right Arrow"
msgstr "Fletxa dreta"
-#. 9vVk3
+#. FmJaz
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3155539\n"
"help.text"
-msgid "You can jump quickly to index entries with the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation Bar\">Navigation Bar</link>."
-msgstr "Podeu saltar ràpidament a les entrades d'índex amb la <link href=\"text/swriter/01/02110100.xhp\" name=\"Barra Navegació\">Barra Navegació</link>."
+msgid "You can jump quickly to index entries with the <link href=\"text/swriter/01/02110100.xhp\">Navigation Bar</link>."
+msgstr "Podeu saltar ràpidament a les entrades d'índex amb la <link href=\"text/swriter/01/02110100.xhp\">Barra Navegació</link>."
#. CC64s
#: 02170000.xhp
@@ -4049,14 +4049,14 @@ msgctxt ""
msgid "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">Changes the properties of sections defined in your document.</ahelp> To insert a section, select text or click in your document, and then choose <emph>Insert - Section</emph>.</variable>"
msgstr "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">Canvia les propietats de les seccions definides al vostre document.</ahelp> Per inserir una secció, seleccioneu el text o feu clic al document i trieu <emph>Insereix - Secció</emph>.</variable>"
-#. pEsGp
+#. QkAqn
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
"par_id3143275\n"
"help.text"
-msgid "The <emph>Edit Sections</emph> dialog is similar to the <link href=\"text/swriter/01/04020100.xhp\" name=\"Insert - Section\"><emph>Insert - Section</emph></link> dialog, and offers the following additional options:"
-msgstr "El diàleg <emph>Edita les seccions</emph> és paregut al diàleg <link href=\"text/swriter/01/04020100.xhp\" name=\"Insereix ▸ Secció\"><emph>Insereix ▸ Secció</emph></link>, i ofereix les opcions addicionals següents:"
+msgid "The <emph>Edit Sections</emph> dialog is similar to the <link href=\"text/swriter/01/04020100.xhp\"><emph>Insert - Section</emph></link> dialog, and offers the following additional options:"
+msgstr "El diàleg <emph>Edita les seccions</emph> és paregut al diàleg <link href=\"text/swriter/01/04020100.xhp\"><emph>Insereix ▸ Secció</emph></link>, i ofereix les opcions addicionals següents:"
#. w27PP
#: 02170000.xhp
@@ -4094,14 +4094,14 @@ msgctxt ""
msgid "Options"
msgstr "Opcions"
-#. DJA5z
+#. eQGUF
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
"par_id3152773\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/editsectiondialog/tree\">Opens the <link href=\"text/swriter/01/05040501.xhp\" name=\"Options\"><emph>Options</emph></link> dialog, where you can edit the column layout, background, footnote and endnote behavior of the selected section.</ahelp> If the section is password protected, you must enter the password first."
-msgstr "<ahelp hid=\"modules/swriter/ui/editsectiondialog/tree\">Obri el diàleg <link href=\"text/swriter/01/05040501.xhp\" name=\"Opcions\"><emph>Opcions</emph></link>, on podeu editar el format de la columna, el fons i el comportament de les notes al peu i de les notes finals de la secció seleccionada.</ahelp> Si la secció està protegida amb contrasenya, primer heu d'introduir-la."
+msgid "<ahelp hid=\"modules/swriter/ui/editsectiondialog/tree\">Opens the <link href=\"text/swriter/01/05040501.xhp\"><emph>Options</emph></link> dialog, where you can edit the column layout, background, footnote and endnote behavior of the selected section.</ahelp> If the section is password protected, you must enter the password first."
+msgstr "<ahelp hid=\"modules/swriter/ui/editsectiondialog/tree\">Obri el diàleg <link href=\"text/swriter/01/05040501.xhp\"><emph>Opcions</emph></link>, on podeu editar el format de la columna, el fons i el comportament de les notes al peu i de les notes finals de la secció seleccionada.</ahelp> Si la secció està protegida amb contrasenya, primer heu d'introduir-la."
#. moNZF
#: 02170000.xhp
@@ -4130,14 +4130,14 @@ msgctxt ""
msgid "Rulers"
msgstr "Regles"
-#. 8hhEX
+#. 87KQD
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"hd_id3149287\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03050000.xhp\" name=\"Rulers\">Rulers</link>"
-msgstr "<link href=\"text/swriter/01/03050000.xhp\" name=\"Regles\">Regles</link>"
+msgid "<link href=\"text/swriter/01/03050000.xhp\">Rulers</link>"
+msgstr "<link href=\"text/swriter/01/03050000.xhp\">Regles</link>"
#. 4CZcY
#: 03050000.xhp
@@ -4193,14 +4193,14 @@ msgctxt ""
msgid "Text Boundaries"
msgstr "Límits del text"
-#. CFSZg
+#. PewCe
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3145418\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03070000.xhp\" name=\"Text Boundaries\">Text Boundaries</link>"
-msgstr "<link href=\"text/swriter/01/03070000.xhp\" name=\"Límits del text\">Límits del text</link>"
+msgid "<link href=\"text/swriter/01/03070000.xhp\">Text Boundaries</link>"
+msgstr "<link href=\"text/swriter/01/03070000.xhp\">Límits del text</link>"
#. MvG2T
#: 03070000.xhp
@@ -4220,14 +4220,14 @@ msgctxt ""
msgid "Field Shadings"
msgstr "Ombreigs dels camps"
-#. Tcut8
+#. SoGwj
#: 03080000.xhp
msgctxt ""
"03080000.xhp\n"
"hd_id3151177\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03080000.xhp\" name=\"Field Shadings\">Field Shadings</link>"
-msgstr "<link href=\"text/swriter/01/03080000.xhp\" name=\"Ombreigs dels camps\">Ombreigs dels camps</link>"
+msgid "<link href=\"text/swriter/01/03080000.xhp\">Field Shadings</link>"
+msgstr "<link href=\"text/swriter/01/03080000.xhp\">Ombreigs dels camps</link>"
#. 42Emb
#: 03080000.xhp
@@ -4238,14 +4238,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows or hides shadings around fields in your document like non-breaking spaces, soft hyphens, indexes, and footnotes.</ahelp>"
msgstr "<ahelp hid=\".\">Mostra o amaga els ombreigs dels camps en el document, inclosos espais no separables, guionets personalitzats, índexs i notes al peu.</ahelp>"
-#. cSEP8
+#. GnaGC
#: 03080000.xhp
msgctxt ""
"03080000.xhp\n"
"par_id3153540\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03100000.xhp\" name=\"Formatting Marks On/Off\">Formatting Marks On/Off</link>"
-msgstr "<link href=\"text/swriter/01/03100000.xhp\" name=\"Formatting Marks On/Off\">Activa/desactiva les marques de format</link>"
+msgid "<link href=\"text/swriter/01/03100000.xhp\">Formatting Marks On/Off</link>"
+msgstr "<link href=\"text/swriter/01/03100000.xhp\">Activa/desactiva les marques de format</link>"
#. 7YNzw
#: 03090000.xhp
@@ -4256,14 +4256,14 @@ msgctxt ""
msgid "Field Names"
msgstr "Noms dels camps"
-#. nMGnN
+#. tu7gA
#: 03090000.xhp
msgctxt ""
"03090000.xhp\n"
"hd_id3154505\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03090000.xhp\" name=\"Field Names\">Field Names</link>"
-msgstr "<link href=\"text/swriter/01/03090000.xhp\" name=\"Noms dels camps\">Noms dels camps</link>"
+msgid "<link href=\"text/swriter/01/03090000.xhp\">Field Names</link>"
+msgstr "<link href=\"text/swriter/01/03090000.xhp\">Noms dels camps</link>"
#. j4HCh
#: 03090000.xhp
@@ -4292,14 +4292,14 @@ msgctxt ""
msgid "When you print a document with <item type=\"menuitem\">View - Field Names</item> enabled, you are prompted to include the field names in the print out."
msgstr "Quan imprimiu un document amb <item type=\"menuitem\">Visualitza - Nom dels camps</item> habilitat, se vos demanarà que inclogueu els noms de camp en la còpia impresa."
-#. EuU2E
+#. q7P2a
#: 03090000.xhp
msgctxt ""
"03090000.xhp\n"
"par_id102720151029387618\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Insert - Field\">Insert - Field</link>."
-msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Insereix ▸ Camp\">Insereix ▸ Camp</link>."
+msgid "<link href=\"text/swriter/01/04090000.xhp\">Insert - Field</link>."
+msgstr "<link href=\"text/swriter/01/04090000.xhp\">Insereix ▸ Camp</link>."
#. kXv5P
#: 03100000.xhp
@@ -4310,14 +4310,14 @@ msgctxt ""
msgid "Formatting Marks"
msgstr "Marques de formatació"
-#. 5FmCm
+#. PrAZB
#: 03100000.xhp
msgctxt ""
"03100000.xhp\n"
"hd_id3154507\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03100000.xhp\" name=\"Formatting Marks\">Formatting Marks</link>"
-msgstr "<link href=\"text/swriter/01/03100000.xhp\" name=\"Marques de formatació\">Marques de formatació</link>"
+msgid "<link href=\"text/swriter/01/03100000.xhp\">Formatting Marks</link>"
+msgstr "<link href=\"text/swriter/01/03100000.xhp\">Marques de formatació</link>"
#. Ui6Am
#: 03100000.xhp
@@ -4337,13 +4337,13 @@ msgctxt ""
msgid "When you delete a paragraph mark, the paragraph that is merged takes on the formatting of the paragraph that the cursor is in."
msgstr "Si suprimiu una marca de paràgraf, el paràgraf fusionat pren la formatació del paràgraf en què es troba el cursor."
-#. Avhph
+#. P8GSH
#: 03100000.xhp
msgctxt ""
"03100000.xhp\n"
"par_id3147511\n"
"help.text"
-msgid "To specify which formatting marks are displayed, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Formatting Aids\"><menuitem>%PRODUCTNAME Writer - Formatting Aids</menuitem></link>, and then select the options that you want in the <emph>Display formatting</emph> area."
+msgid "To specify which formatting marks are displayed, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01040600.xhp\"><menuitem>%PRODUCTNAME Writer - Formatting Aids</menuitem></link>, and then select the options that you want in the <emph>Display formatting</emph> area."
msgstr ""
#. k2VJk
@@ -4355,14 +4355,14 @@ msgctxt ""
msgid "Web Layout"
msgstr "Format web"
-#. BwAcG
+#. W6Z9R
#: 03120000.xhp
msgctxt ""
"03120000.xhp\n"
"hd_id3145243\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\">Web Layout</link>"
-msgstr "<link href=\"text/swriter/01/03120000.xhp\" name=\"Format web\">Format web</link>"
+msgid "<link href=\"text/swriter/01/03120000.xhp\">Web Layout</link>"
+msgstr "<link href=\"text/swriter/01/03120000.xhp\">Format web</link>"
#. LCpF5
#: 03120000.xhp
@@ -4382,14 +4382,14 @@ msgctxt ""
msgid "Normal Layout"
msgstr "Disposició normal"
-#. pMEEL
+#. BhCiL
#: 03130000.xhp
msgctxt ""
"03130000.xhp\n"
"hd_id3150018\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03130000.xhp\" name=\"Normal Layout\">Normal Layout</link>"
-msgstr "<link href=\"text/swriter/01/03130000.xhp\" name=\"Format normal\">Format normal</link>"
+msgid "<link href=\"text/swriter/01/03130000.xhp\">Normal Layout</link>"
+msgstr "<link href=\"text/swriter/01/03130000.xhp\">Format normal</link>"
#. vHE82
#: 03130000.xhp
@@ -4409,13 +4409,13 @@ msgctxt ""
msgid "Field Hidden Paragraphs"
msgstr ""
-#. Nn7pr
+#. eNASg
#: 03140000.xhp
msgctxt ""
"03140000.xhp\n"
"hd_id3155959\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03140000.xhp\" name=\"Hidden Paragraphs\">Field Hidden Paragraphs</link>"
+msgid "<link href=\"text/swriter/01/03140000.xhp\">Field Hidden Paragraphs</link>"
msgstr ""
#. CUGiA
@@ -4427,23 +4427,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows or hides hidden paragraphs.</ahelp> This option only affects the screen display of hidden paragraphs, and not the printing of hidden paragraphs."
msgstr "<ahelp hid=\".\">Mostra o amaga els paràgrafs amagats.</ahelp> Esta opció només afecta la visualització en pantalla dels paràgrafs amagats, i no la seua impressió."
-#. 6bm6N
+#. aFMem
#: 03140000.xhp
msgctxt ""
"03140000.xhp\n"
"par_id3157875\n"
"help.text"
-msgid "To enable this feature, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Formatting Aids\"><emph>%PRODUCTNAME Writer - View</emph></link>, and ensure that the <emph>Hidden paragraphs</emph> check box in the <emph>Display fields</emph> area is selected."
+msgid "To enable this feature, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\"><emph>%PRODUCTNAME Writer - View</emph></link>, and ensure that the <emph>Hidden paragraphs</emph> check box in the <emph>Display fields</emph> area is selected."
msgstr ""
-#. EAERL
+#. X42XM
#: 03140000.xhp
msgctxt ""
"03140000.xhp\n"
"par_id3154501\n"
"help.text"
-msgid "Use the <link href=\"text/swriter/01/04090000.xhp\" name=\"field command\">field command</link> \"Hidden Paragraph\" to assign a <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">condition</link> that must be met to hide a paragraph. If the condition is not met, the paragraph is displayed."
-msgstr "Utilitzeu l'<link href=\"text/swriter/01/04090000.xhp\" name=\"orde de camp\">orde de camp</link> \"Paràgraf amagat\" per assignar una <link href=\"text/swriter/01/04090200.xhp\" name=\"condició\">condició</link> que s'ha de complir per amagar un paràgraf. Si la condició no es compleix, el paràgraf es mostrarà."
+msgid "Use the <link href=\"text/swriter/01/04090000.xhp\">field command</link> \"Hidden Paragraph\" to assign a <link href=\"text/swriter/01/04090200.xhp\">condition</link> that must be met to hide a paragraph. If the condition is not met, the paragraph is displayed."
+msgstr "Utilitzeu l'<link href=\"text/swriter/01/04090000.xhp\">orde de camp</link> \"Paràgraf amagat\" per assignar una <link href=\"text/swriter/01/04090200.xhp\">condició</link> que s'ha de complir per amagar un paràgraf. Si la condició no es compleix, el paràgraf es mostrarà."
#. 4rDgn
#: 03140000.xhp
@@ -4472,13 +4472,13 @@ msgctxt ""
msgid "<bookmark_value>manual break;next full line</bookmark_value><bookmark_value>manual break;right</bookmark_value><bookmark_value>manual break;clear right</bookmark_value><bookmark_value>clear right;manual break</bookmark_value><bookmark_value>manual break;clear left</bookmark_value><bookmark_value>manual break;left</bookmark_value><bookmark_value>clear left;manual break</bookmark_value><bookmark_value>manual break;next line</bookmark_value>"
msgstr ""
-#. FuBqy
+#. crDsc
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3145827\n"
"help.text"
-msgid "<variable id=\"ManualBreak_h1\"><link href=\"text/swriter/01/04010000.xhp\" name=\"04010000_link\">Insert Manual Break</link></variable>"
+msgid "<variable id=\"ManualBreak_h1\"><link href=\"text/swriter/01/04010000.xhp\">Insert Manual Break</link></variable>"
msgstr ""
#. BMEC5
@@ -4760,14 +4760,14 @@ msgctxt ""
msgid "Column Break"
msgstr "Salt de columna"
-#. GFhgq
+#. RoFAB
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"par_id3155182\n"
"help.text"
-msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next <link href=\"text/swriter/01/05040500.xhp\" name=\"column\">column</link>. A manual column break is indicated by a nonprinting border at the top of the new column."
-msgstr "Insereix un salt de columna manual (en un format de múltiples columnes) i mou el text situat a la dreta del cursor al començament de la <link href=\"text/swriter/01/05040500.xhp\" name=\"columna\">columna</link> següent. Un salt de columna manual s'assenyala amb una vora no imprimible a la part superior de la nova columna."
+msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next <link href=\"text/swriter/01/05040500.xhp\">column</link>. A manual column break is indicated by a nonprinting border at the top of the new column."
+msgstr "Insereix un salt de columna manual (en un format de múltiples columnes) i mou el text situat a la dreta del cursor al començament de la <link href=\"text/swriter/01/05040500.xhp\">columna</link> següent. Un salt de columna manual s'assenyala amb una vora no imprimible a la part superior de la nova columna."
#. G9g6z
#: 04010000.xhp
@@ -4868,13 +4868,13 @@ msgctxt ""
msgid "Enter the new page number for the page that follows the manual page break."
msgstr "Introduïu el número de pàgina nou per a la pàgina que segueix el salt de pàgina manual."
-#. SbhQr
+#. xiSAL
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"par_id3150554\n"
"help.text"
-msgid "To display manual breaks, choose <link href=\"text/swriter/01/03100000.xhp\" name=\"View - Nonprinting Characters\"><menuitem>View - Nonprinting Characters</menuitem></link>."
+msgid "To display manual breaks, choose <link href=\"text/swriter/01/03100000.xhp\"><menuitem>View - Nonprinting Characters</menuitem></link>."
msgstr ""
#. YTDkt
@@ -4886,14 +4886,14 @@ msgctxt ""
msgid "Insert Section"
msgstr "Insereix una secció"
-#. 6gw5a
+#. cnHNX
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
"hd_id3154108\n"
"help.text"
-msgid "<variable id=\"bereicheinfuegen\"><link href=\"text/swriter/01/04020000.xhp\" name=\"Insert Section\">Insert Section</link></variable>"
-msgstr "<variable id=\"bereicheinfuegen\"><link href=\"text/swriter/01/04020000.xhp\" name=\"Insereix una secció\">Insereix una secció</link></variable>"
+msgid "<variable id=\"bereicheinfuegen\"><link href=\"text/swriter/01/04020000.xhp\">Insert Section</link></variable>"
+msgstr "<variable id=\"bereicheinfuegen\"><link href=\"text/swriter/01/04020000.xhp\">Insereix una secció</link></variable>"
#. BGrBT
#: 04020000.xhp
@@ -4904,23 +4904,23 @@ msgctxt ""
msgid "<variable id=\"bereich\"><ahelp hid=\".\">Inserts a text section at the cursor position in the document. You can also select a block of text and then choose this command to create a section. You can use sections to insert blocks of text from other documents, to apply custom column layouts, or to protect or to hide blocks of text if a condition is met.</ahelp></variable>"
msgstr "<variable id=\"bereich\"><ahelp hid=\".\">Insereix una secció de text a la posició del cursor en el document. També podeu seleccionar un bloc de text i, a continuació, triar aquesta ordre per a crear una secció. Podeu utilitzar les seccions per a inserir blocs de text d'altres documents, per a aplicar formats de columna personalitzats o per a protegir o amagar blocs de text si es compleix la condició.</ahelp></variable>"
-#. CwDUG
+#. DrsAC
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
"par_id3152955\n"
"help.text"
-msgid "You can insert an entire document in a section, or a named section from another. You can also insert a section as a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE\">DDE</link> link."
-msgstr "Podeu inserir un document sencer en una secció o una secció d'un altre document. També podeu inserir una secció com a enllaç <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE\">DDE</link>."
+msgid "You can insert an entire document in a section, or a named section from another. You can also insert a section as a <link href=\"text/shared/00/00000005.xhp#dde\">DDE</link> link."
+msgstr "Podeu inserir un document sencer en una secció o una secció d'un altre document. També podeu inserir una secció com a enllaç <link href=\"text/shared/00/00000005.xhp#dde\">DDE</link>."
-#. eKnDx
+#. saGBB
#: 04020000.xhp
msgctxt ""
"04020000.xhp\n"
"par_id3149684\n"
"help.text"
-msgid "To edit a section, choose <link href=\"text/swriter/01/02170000.xhp\" name=\"Format - Sections\"><emph>Format - Sections</emph></link>."
-msgstr "Per editar una secció, trieu <link href=\"text/swriter/01/02170000.xhp\" name=\"Format - Seccions\"><emph>Format - Seccions</emph></link>."
+msgid "To edit a section, choose <link href=\"text/swriter/01/02170000.xhp\"><emph>Format - Sections</emph></link>."
+msgstr "Per editar una secció, trieu <link href=\"text/swriter/01/02170000.xhp\"><emph>Format - Seccions</emph></link>."
#. DqPAE
#: 04020000.xhp
@@ -4967,14 +4967,14 @@ msgctxt ""
msgid "<bookmark_value>sections;inserting sections by DDE</bookmark_value><bookmark_value>DDE; command for inserting sections</bookmark_value>"
msgstr "<bookmark_value>seccions;inserció de seccions pel DDE</bookmark_value><bookmark_value>DDE; orde per inserir seccions</bookmark_value>"
-#. HNvWK
+#. EawwV
#: 04020100.xhp
msgctxt ""
"04020100.xhp\n"
"hd_id3157557\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04020100.xhp\" name=\"Section\">Section</link>"
-msgstr "<link href=\"text/swriter/01/04020100.xhp\" name=\"Secció\">Secció</link>"
+msgid "<link href=\"text/swriter/01/04020100.xhp\">Section</link>"
+msgstr "<link href=\"text/swriter/01/04020100.xhp\">Secció</link>"
#. 66Dws
#: 04020100.xhp
@@ -5237,14 +5237,14 @@ msgctxt ""
msgid "With condition"
msgstr "Amb condició"
-#. NbDDC
+#. GkVws
#: 04020100.xhp
msgctxt ""
"04020100.xhp\n"
"par_id3154343\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the condition that must be met to hide the section.</ahelp> A condition is a <link href=\"text/swriter/01/04090200.xhp\" name=\"logical expression\">logical expression</link>, such as \"SALUTATION EQ Mr.\". For example, if you use the <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"mail merge\">mail merge</link> form letter feature to define a database field called \"Salutation\" that contains \"Mr.\", \"Ms.\", or \"Sir or Madam\", you can then specify that a section will only be printed if the salutation is \"Mr.\"."
-msgstr "<ahelp hid=\".\">Introduïu la condició que s'ha de complir per amagar la secció.</ahelp> Una condició és una <link href=\"text/swriter/01/04090200.xhp\" name=\"expressió lògica\">expressió lògica</link>, com ara «SALUTATION EQ Sr.». Per exemple, si utilitzeu la característica <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"Combinació de correu\">Combinació de correu</link> de la carta de formulari per definir un camp de la base de dades anomenat «Salutació» que conté «Sr.», «Sra.», o «Sr. o Sra.», aleshores podeu especificar que una secció només s'imprimirà si la salutació és «Sr.»."
+msgid "<ahelp hid=\".\">Enter the condition that must be met to hide the section.</ahelp> A condition is a <link href=\"text/swriter/01/04090200.xhp\">logical expression</link>, such as \"SALUTATION EQ Mr.\". For example, if you use the <link href=\"text/swriter/guide/form_letters_main.xhp\">mail merge</link> form letter feature to define a database field called \"Salutation\" that contains \"Mr.\", \"Ms.\", or \"Sir or Madam\", you can then specify that a section will only be printed if the salutation is \"Mr.\"."
+msgstr "<ahelp hid=\".\">Introduïu la condició que s'ha de complir per amagar la secció.</ahelp> Una condició és una <link href=\"text/swriter/01/04090200.xhp\">expressió lògica</link>, com ara «SALUTATION EQ Sr.». Per exemple, si utilitzeu la característica <link href=\"text/swriter/guide/form_letters_main.xhp\">Combinació de correu</link> de la carta de formulari per definir un camp de la base de dades anomenat «Salutació» que conté «Sr.», «Sra.», o «Sr. o Sra.», aleshores podeu especificar que una secció només s'imprimirà si la salutació és «Sr.»."
#. NSYCM
#: 04020100.xhp
@@ -5291,23 +5291,23 @@ msgctxt ""
msgid "Select to allow editing of the section's contents even if the document is opened in read-only mode."
msgstr "Seleccioneu esta opció per permetre l'edició dels continguts de la secció fins i tot si el document està obert en mode només de lectura."
-#. zDECD
+#. 4QEoS
#: 04020100.xhp
msgctxt ""
"04020100.xhp\n"
"par_id3150032\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Field commands\">Field commands</link>"
-msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Ordes de camp\">Ordes de camp</link>"
+msgid "<link href=\"text/swriter/01/04090000.xhp\">Field commands</link>"
+msgstr "<link href=\"text/swriter/01/04090000.xhp\">Ordes de camp</link>"
-#. pQEiQ
+#. Ws6Fx
#: 04020100.xhp
msgctxt ""
"04020100.xhp\n"
"par_id3158420\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090200.xhp\" name=\"Syntax for conditions\">Syntax for conditions</link>"
-msgstr "<link href=\"text/swriter/01/04090200.xhp\" name=\"Sintaxi per a les condicions\">Sintaxi per a les condicions</link>"
+msgid "<link href=\"text/swriter/01/04090200.xhp\">Syntax for conditions</link>"
+msgstr "<link href=\"text/swriter/01/04090200.xhp\">Sintaxi per a les condicions</link>"
#. P8Vme
#: 04020200.xhp
@@ -5318,14 +5318,14 @@ msgctxt ""
msgid "Indents (Sections)"
msgstr ""
-#. ZHUTB
+#. uPQDK
#: 04020200.xhp
msgctxt ""
"04020200.xhp\n"
"hd_id3155898\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04020200.xhp\" name=\"Indents\">Indents</link>"
-msgstr "<link href=\"text/swriter/01/04020200.xhp\" name=\"Sagnats\">Sagnats</link>"
+msgid "<link href=\"text/swriter/01/04020200.xhp\">Indents</link>"
+msgstr "<link href=\"text/swriter/01/04020200.xhp\">Sagnats</link>"
#. i46ga
#: 04020200.xhp
@@ -5372,14 +5372,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/indentpage/after\">Specifies the indents after the section, at the right margin.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/indentpage/after\">Especifica els sagnats després de la secció, en el marge dret.</ahelp>"
-#. CRqBB
+#. ZS7tx
#: 04020200.xhp
msgctxt ""
"04020200.xhp\n"
"par_id3149032\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Field commands\">Field commands</link>"
-msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Ordes de camp\">Ordes de camp</link>"
+msgid "<link href=\"text/swriter/01/04090000.xhp\">Field commands</link>"
+msgstr "<link href=\"text/swriter/01/04090000.xhp\">Ordes de camp</link>"
#. YKHpH
#: 04030000.xhp
@@ -5390,14 +5390,14 @@ msgctxt ""
msgid "Footnote/Endnote"
msgstr "Nota al peu/Nota final"
-#. P6c4H
+#. HAGpY
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"hd_id3145241\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insert Footnote\">Footnote/Endnote</link>"
-msgstr "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insereix una nota al peu\">Nota al peu/Nota final</link>"
+msgid "<link href=\"text/swriter/01/04030000.xhp\">Footnote/Endnote</link>"
+msgstr "<link href=\"text/swriter/01/04030000.xhp\">Nota al peu/Nota final</link>"
#. gsdd3
#: 04030000.xhp
@@ -5453,14 +5453,14 @@ msgctxt ""
msgid "Automatic"
msgstr "Automàtic"
-#. qYRWc
+#. SARgK
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"par_id3153670\n"
"help.text"
-msgid "<variable id=\"bearbeitenautomatisch\"><ahelp hid=\"modules/swriter/ui/insertfootnote/automatic\">Automatically assigns consecutive numbers to the footnotes or endnotes that you insert.</ahelp> To change the settings for automatic numbering, choose <link href=\"text/swriter/01/06080000.xhp\" name=\"Tools - Footnotes\"><emph>Tools - Footnotes and Endnotes</emph></link>.</variable>"
-msgstr "<variable id=\"bearbeitenautomatisch\"><ahelp hid=\"modules/swriter/ui/insertfootnote/automatic\">Assigna automàticament números consecutius a les notes al peu o a les notes finals que inseriu.</ahelp> Per canviar els paràmetres de la numeració automàtica, trieu <link href=\"text/swriter/01/06080000.xhp\" name=\"Eines - Notes al peu\"><emph>Eines - Notes al peu/finals</emph></link>. </variable>"
+msgid "<variable id=\"bearbeitenautomatisch\"><ahelp hid=\"modules/swriter/ui/insertfootnote/automatic\">Automatically assigns consecutive numbers to the footnotes or endnotes that you insert.</ahelp> To change the settings for automatic numbering, choose <link href=\"text/swriter/01/06080000.xhp\"><emph>Tools - Footnotes and Endnotes</emph></link>.</variable>"
+msgstr "<variable id=\"bearbeitenautomatisch\"><ahelp hid=\"modules/swriter/ui/insertfootnote/automatic\">Assigna automàticament números consecutius a les notes al peu o a les notes finals que inseriu.</ahelp> Per canviar els paràmetres de la numeració automàtica, trieu <link href=\"text/swriter/01/06080000.xhp\"><emph>Eines - Notes al peu/finals</emph></link>. </variable>"
#. bRDn5
#: 04030000.xhp
@@ -5489,14 +5489,14 @@ msgctxt ""
msgid "Choose"
msgstr "Tria"
-#. ivQmu
+#. tKD9j
#: 04030000.xhp
msgctxt ""
"04030000.xhp\n"
"par_id3153526\n"
"help.text"
-msgid "<variable id=\"bearbeitensonderzeichen\"><ahelp hid=\"modules/swriter/ui/insertfootnote/choosecharacter\">Inserts a <link href=\"text/shared/01/04100000.xhp\" name=\"special character \">special character </link> as a footnote or endnote anchor.</ahelp></variable>"
-msgstr "<variable id=\"bearbeitensonderzeichen\"><ahelp hid=\"modules/swriter/ui/insertfootnote/choosecharacter\">Insereix un <link href=\"text/shared/01/04100000.xhp\" name=\"caràcter especial \">caràcter especial </link>com a àncora de nota al peu o de nota final.</ahelp></variable>"
+msgid "<variable id=\"bearbeitensonderzeichen\"><ahelp hid=\"modules/swriter/ui/insertfootnote/choosecharacter\">Inserts a <link href=\"text/shared/01/04100000.xhp\">special character </link> as a footnote or endnote anchor.</ahelp></variable>"
+msgstr "<variable id=\"bearbeitensonderzeichen\"><ahelp hid=\"modules/swriter/ui/insertfootnote/choosecharacter\">Insereix un <link href=\"text/shared/01/04100000.xhp\">caràcter especial </link>com a àncora de nota al peu o de nota final.</ahelp></variable>"
#. CqdLB
#: 04030000.xhp
@@ -5588,13 +5588,13 @@ msgctxt ""
msgid "<variable id=\"bookmark_text\"><variable id=\"textmarkeein\"><ahelp hid=\".uno:InsertBookmark\">Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time.</ahelp> In an HTML document, bookmarks are converted to anchors that you can jump to from a hyperlink.</variable></variable>"
msgstr ""
-#. DA74C
+#. NHiG3
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
"par_id3153677\n"
"help.text"
-msgid "To jump to a specific bookmark, press <keycode>F5</keycode> to open the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link>, click the plus sign (+) next to the<emph> Bookmarks</emph> entry, and then double-click the bookmark."
+msgid "To jump to a specific bookmark, press <keycode>F5</keycode> to open the <link href=\"text/swriter/01/02110000.xhp\">Navigator</link>, click the plus sign (+) next to the<emph> Bookmarks</emph> entry, and then double-click the bookmark."
msgstr ""
#. ATBbv
@@ -5723,14 +5723,14 @@ msgctxt ""
msgid "Caption"
msgstr "Llegenda"
-#. UcqSc
+#. 4mpMM
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3147173\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04060000.xhp\" name=\"Caption\">Caption</link>"
-msgstr "<link href=\"text/swriter/01/04060000.xhp\" name=\"Llegenda\">Llegenda</link>"
+msgid "<link href=\"text/swriter/01/04060000.xhp\">Caption</link>"
+msgstr "<link href=\"text/swriter/01/04060000.xhp\">Llegenda</link>"
#. ciBED
#: 04060000.xhp
@@ -5849,14 +5849,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/insertcaption/position\">Adds the caption above or below the selected item. This option is only available for some objects.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/insertcaption/position\">Afig la llegenda per sobre o per sota de l'element seleccionat. Esta opció només està disponible per a alguns objectes.</ahelp>"
-#. 4FSF8
+#. Hu5xy
#: 04060000.xhp
msgctxt ""
"04060000.xhp\n"
"hd_id3149043\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04060100.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/swriter/01/04060100.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/swriter/01/04060100.xhp\">Options</link>"
+msgstr "<link href=\"text/swriter/01/04060100.xhp\">Opcions</link>"
#. aGbBK
#: 04060000.xhp
@@ -5894,14 +5894,14 @@ msgctxt ""
msgid "Options"
msgstr "Opcions"
-#. E9Gw2
+#. AG5XK
#: 04060100.xhp
msgctxt ""
"04060100.xhp\n"
"par_id3151177\n"
"help.text"
-msgid "<variable id=\"optionentext\"><ahelp hid=\"modules/swriter/ui/insertcaption/options\">Adds the chapter number to the caption label. To use this feature, you must first assign an <link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"outline level\">outline level</link> to a paragraph style, and then apply the style to the chapter headings in your document.</ahelp></variable>"
-msgstr "<variable id=\"optionentext\"><ahelp hid=\"modules/swriter/ui/insertcaption/options\">Afig el número l'etiqueta de la llegenda. Per fer servir esta funció, primer heu d'assignar un <link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"outline level\">nivell d'esquema</link> a un estil de paràgraf i aplicar l'estil als encapçalaments de capítols del document.</ahelp></variable>"
+msgid "<variable id=\"optionentext\"><ahelp hid=\"modules/swriter/ui/insertcaption/options\">Adds the chapter number to the caption label. To use this feature, you must first assign an <link href=\"text/swriter/guide/chapter_numbering.xhp\">outline level</link> to a paragraph style, and then apply the style to the chapter headings in your document.</ahelp></variable>"
+msgstr "<variable id=\"optionentext\"><ahelp hid=\"modules/swriter/ui/insertcaption/options\">Afig el número l'etiqueta de la llegenda. Per fer servir esta funció, primer heu d'assignar un <link href=\"text/swriter/guide/chapter_numbering.xhp\">nivell d'esquema</link> a un estil de paràgraf i aplicar l'estil als encapçalaments de capítols del document.</ahelp></variable>"
#. M6cbT
#: 04060100.xhp
@@ -6020,14 +6020,14 @@ msgctxt ""
msgid "<bookmark_value>inserting;envelopes</bookmark_value> <bookmark_value>letters;inserting envelopes</bookmark_value> <bookmark_value>envelopes</bookmark_value>"
msgstr "<bookmark_value>inserció;sobres</bookmark_value> <bookmark_value>cartes;inserció de sobres</bookmark_value> <bookmark_value>sobres</bookmark_value>"
-#. yTHYS
+#. uiRTw
#: 04070000.xhp
msgctxt ""
"04070000.xhp\n"
"hd_id3145245\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04070000.xhp\" name=\"Envelope\">Envelope</link>"
-msgstr "<link href=\"text/swriter/01/04070000.xhp\" name=\"Sobre\">Sobre</link>"
+msgid "<link href=\"text/swriter/01/04070000.xhp\">Envelope</link>"
+msgstr "<link href=\"text/swriter/01/04070000.xhp\">Sobre</link>"
#. 76gXj
#: 04070000.xhp
@@ -6146,14 +6146,14 @@ msgctxt ""
msgid "Envelope"
msgstr "Sobre"
-#. 8Z2SA
+#. CkEG3
#: 04070100.xhp
msgctxt ""
"04070100.xhp\n"
"hd_id3145243\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04070100.xhp\" name=\"Envelope\">Envelope</link>"
-msgstr "<link href=\"text/swriter/01/04070100.xhp\" name=\"Sobre\">Sobre</link>"
+msgid "<link href=\"text/swriter/01/04070100.xhp\">Envelope</link>"
+msgstr "<link href=\"text/swriter/01/04070100.xhp\">Sobre</link>"
#. C4ewN
#: 04070100.xhp
@@ -6263,14 +6263,14 @@ msgctxt ""
msgid "Format"
msgstr "Format"
-#. 2yEb8
+#. uBd7F
#: 04070200.xhp
msgctxt ""
"04070200.xhp\n"
"hd_id3151180\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04070200.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/swriter/01/04070200.xhp\" name=\"Format\">Format</link>"
+msgid "<link href=\"text/swriter/01/04070200.xhp\">Format</link>"
+msgstr "<link href=\"text/swriter/01/04070200.xhp\">Format</link>"
#. RXAXE
#: 04070200.xhp
@@ -6866,14 +6866,14 @@ msgctxt ""
msgid "Fields"
msgstr "Camps"
-#. EcH9U
+#. TAGUG
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
"hd_id3151171\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\">Fields</link>"
-msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Camps\">Camps</link>"
+msgid "<link href=\"text/swriter/01/04090000.xhp\">Fields</link>"
+msgstr "<link href=\"text/swriter/01/04090000.xhp\">Camps</link>"
#. mvJwN
#: 04090000.xhp
@@ -6920,14 +6920,14 @@ msgctxt ""
msgid "Document (Fields)"
msgstr ""
-#. V9Vpz
+#. CYgTX
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"hd_id3150017\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090001.xhp\" name=\"Document\">Document</link>"
-msgstr "<link href=\"text/swriter/01/04090001.xhp\" name=\"Document\">Document</link>"
+msgid "<link href=\"text/swriter/01/04090001.xhp\">Document</link>"
+msgstr "<link href=\"text/swriter/01/04090001.xhp\">Document</link>"
#. iqVaM
#: 04090001.xhp
@@ -7019,13 +7019,13 @@ msgctxt ""
msgid "Author"
msgstr "Autor"
-#. KD6vQ
+#. wC9wy
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3148975\n"
"help.text"
-msgid "Name or initials of current user (as entered in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\"><menuitem>$[officename] - User Data)</menuitem></link>."
+msgid "Name or initials of current user (as entered in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01010100.xhp\"><menuitem>$[officename] - User Data)</menuitem></link>."
msgstr ""
#. 6D5LL
@@ -7127,13 +7127,13 @@ msgctxt ""
msgid "Sender"
msgstr "Remitent"
-#. j7jJ4
+#. G2Caf
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3146341\n"
"help.text"
-msgid "Inserts fields containing user data. You can change the user-data that is displayed by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\"><menuitem>$[officename] - User Data</menuitem></link>."
+msgid "Inserts fields containing user data. You can change the user-data that is displayed by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01010100.xhp\"><menuitem>$[officename] - User Data</menuitem></link>."
msgstr ""
#. WxVLH
@@ -7217,22 +7217,22 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/format\">If a field is displaying a date, time or number, then <emph>Format</emph> is used to customize the appearance of the date, time, or number. Common formats are shown in the Format window, or click \"Additional formats\" to define a custom format.</ahelp>"
msgstr ""
-#. ErwZ7
+#. UQ3xW
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3150138\n"
"help.text"
-msgid "<variable id=\"datetimeformat\">When you click \"Additional formats\", the <link href=\"text/shared/01/05020300.xhp\" name=\"Number Format\"><emph>Number Format</emph></link> dialog opens, where you can define a custom format. </variable>"
+msgid "<variable id=\"datetimeformat\">When you click \"Additional formats\", the <link href=\"text/shared/01/05020300.xhp\"><emph>Number Format</emph></link> dialog opens, where you can define a custom format. </variable>"
msgstr ""
-#. ECQSr
+#. Geta7
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3154867\n"
"help.text"
-msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\" name=\"Tools - Chapter numbering\"><menuitem>Tools - Chapter numbering</menuitem></link> are not displayed."
+msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in <link href=\"text/swriter/01/06060000.xhp\"><menuitem>Tools - Chapter numbering</menuitem></link> are not displayed."
msgstr ""
#. EfteG
@@ -7253,13 +7253,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the field as static content, that is, the field cannot be updated.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Insereix el camp com a contingut estàtic, és a dir, que no es pot actualitzar.</ahelp>"
-#. YYGCF
+#. fUZ8r
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3154470\n"
"help.text"
-msgid "For the HTML export and import of date and time fields, <link href=\"text/swriter/01/04090007.xhp#date_and_time\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
+msgid "For the HTML export and import of date and time fields, <link href=\"text/swriter/01/04090007.xhp#date_and_time\">special $[officename] formats</link> are used."
msgstr ""
#. nB93u
@@ -7307,14 +7307,14 @@ msgctxt ""
msgid "With an <emph>Offset</emph> value of 1, the field will display a number that is 1 more than the current page number, but only if a page with that number exists. On the last page of the document, this same field will be empty."
msgstr ""
-#. UE3TE
+#. UWoEn
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "If you want to change the actual page number and not the displayed number, do not use the <emph>Offset</emph> value. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>Page Numbers</emph></link> guide."
-msgstr "Si voleu canviar el número de pàgina actual i no el número que es mostra, no utilitzeu el valor <emph>Desplaçament</emph>. Per canviar els números de pàgina, llegiu la guia <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Número de pàgina\"><emph>Número de pàgina</emph></link>."
+msgid "If you want to change the actual page number and not the displayed number, do not use the <emph>Offset</emph> value. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\"><emph>Page Numbers</emph></link> guide."
+msgstr "Si voleu canviar el número de pàgina actual i no el número que es mostra, no utilitzeu el valor <emph>Desplaçament</emph>. Per canviar els números de pàgina, llegiu la guia <link href=\"text/swriter/guide/pagenumbers.xhp\"><emph>Número de pàgina</emph></link>."
#. FzJ8M
#: 04090001.xhp
@@ -7343,13 +7343,13 @@ msgctxt ""
msgid "Cross-references"
msgstr "Referències creuades"
-#. GUwEg
+#. tDZs7
#: 04090002.xhp
msgctxt ""
"04090002.xhp\n"
"hd_id3153641\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090002.xhp\" name=\"Cross-references\">Cross-reference</link>"
+msgid "<link href=\"text/swriter/01/04090002.xhp\">Cross-reference</link>"
msgstr ""
#. 58E48
@@ -7424,14 +7424,14 @@ msgctxt ""
msgid "Set target for a referenced field. Under <emph>Name</emph>, enter a name for the reference. When inserting the reference, the name will then appear as an identification in the list box <emph>Selection</emph>."
msgstr "Defineix la destinació per a un camp de referència. En el <emph>Nom</emph>, introduïu un nom per a la referència. Quan inseriu la referència, aleshores el nom apareixerà com a identificació en el quadre de la llista <emph>Selecció</emph>."
-#. Z86Gp
+#. fk6xU
#: 04090002.xhp
msgctxt ""
"04090002.xhp\n"
"par_id3149556\n"
"help.text"
-msgid "In an HTML document, reference fields entered this way will be ignored. For the target in HTML documents, you have to <link href=\"text/swriter/01/04040000.xhp\" name=\"insert a bookmark\">insert a bookmark</link>."
-msgstr "En un document HTML, els camps de referència que s'han introduït d'esta manera s'ignoraran. Per a la destinació en documents HTML heu d'<link href=\"text/swriter/01/04040000.xhp\" name=\"inserir un marcador\">inserir un marcador</link>."
+msgid "In an HTML document, reference fields entered this way will be ignored. For the target in HTML documents, you have to <link href=\"text/swriter/01/04040000.xhp\">insert a bookmark</link>."
+msgstr "En un document HTML, els camps de referència que s'han introduït d'esta manera s'ignoraran. Per a la destinació en documents HTML heu d'<link href=\"text/swriter/01/04040000.xhp\">inserir un marcador</link>."
#. LDyBc
#: 04090002.xhp
@@ -7460,14 +7460,14 @@ msgctxt ""
msgid "In master documents, you can also reference from one sub-document to another. Note that the reference name will not appear in the selection field and has to be entered \"by hand\"."
msgstr "En els documents mestres, també podeu fer referències d'un subdocument a un altre. Observeu que el nom de la referència no apareixerà en el camp de selecció i s'ha d'introduir \"manualment\"."
-#. B2YLE
+#. iq5bz
#: 04090002.xhp
msgctxt ""
"04090002.xhp\n"
"par_id3149847\n"
"help.text"
-msgid "In an HTML document, reference fields entered this way will be ignored. For referenced fields in HTML documents, you have to <link href=\"text/shared/01/05020400.xhp\" name=\"insert a hyperlink\">insert a hyperlink</link>."
-msgstr "En un document HTML, els camps de referència introduïts d'esta manera s'ignoraran. Per als camps de referència en documents HTML, heu d'<link href=\"text/shared/01/05020400.xhp\" name=\"inserir un enllaç\">inserir un enllaç</link>."
+msgid "In an HTML document, reference fields entered this way will be ignored. For referenced fields in HTML documents, you have to <link href=\"text/shared/01/05020400.xhp\">insert a hyperlink</link>."
+msgstr "En un document HTML, els camps de referència introduïts d'esta manera s'ignoraran. Per als camps de referència en documents HTML, heu d'<link href=\"text/shared/01/05020400.xhp\">inserir un enllaç</link>."
#. vnX7A
#: 04090002.xhp
@@ -7982,14 +7982,14 @@ msgctxt ""
msgid "Functions"
msgstr "Funcions"
-#. vb7CS
+#. ya2mx
#: 04090003.xhp
msgctxt ""
"04090003.xhp\n"
"hd_id3149123\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090003.xhp\" name=\"Functions\">Functions</link>"
-msgstr "<link href=\"text/swriter/01/04090003.xhp\" name=\"Funcions\">Funcions</link>"
+msgid "<link href=\"text/swriter/01/04090003.xhp\">Functions</link>"
+msgstr "<link href=\"text/swriter/01/04090003.xhp\">Funcions</link>"
#. X6H7i
#: 04090003.xhp
@@ -8045,14 +8045,14 @@ msgctxt ""
msgid "Conditional text"
msgstr "Text condicional"
-#. uJGGF
+#. CfwF9
#: 04090003.xhp
msgctxt ""
"04090003.xhp\n"
"par_id3149881\n"
"help.text"
-msgid "Inserts text if a certain <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">condition</link> is met. For example, enter \"sun eq 1\" in the <emph>Condition</emph> box, and then the text that you want to insert when the variable \"sun\" equals \"1\" in the <emph>Then </emph>box. If you want, you can also enter the text that you want to display when this condition is not met in the <emph>Else</emph> box. To define the variable \"sun\", click the <link href=\"text/swriter/01/04090005.xhp\" name=\"Variables\"><emph>Variables</emph></link> tab, select \"Set variable\", type \"sun\" in the<emph> Name</emph> box, and its value in the<emph> Value</emph> box."
-msgstr "Insereix text si es compleix una <link href=\"text/swriter/01/04090200.xhp\" name=\"condició\">condició</link> concreta. Per exemple, introduïu \"sol ig 1\" al quadre <emph>Condició</emph> i, a continuació, el text que voleu inserir quan la variable \"sol\" siga igual a \"1\" en el quadre <emph>Si no</emph>. Si voleu també podeu introduir el text que voleu visualitzar quan esta condició no es trobe al quadre <emph>Si no</emph>. Per definir la variable \"sol\", feu clic a la pestanya <link href=\"text/swriter/01/04090005.xhp\" name=\"Variables\"><emph>Variables</emph></link>, seleccioneu \"Defineix la variable\", escriviu \"sol\" en el quadre<emph> Nom</emph>, i el seu valor en el quadre<emph> Valor</emph>."
+msgid "Inserts text if a certain <link href=\"text/swriter/01/04090200.xhp\">condition</link> is met. For example, enter \"sun eq 1\" in the <emph>Condition</emph> box, and then the text that you want to insert when the variable \"sun\" equals \"1\" in the <emph>Then </emph>box. If you want, you can also enter the text that you want to display when this condition is not met in the <emph>Else</emph> box. To define the variable \"sun\", click the <link href=\"text/swriter/01/04090005.xhp\"><emph>Variables</emph></link> tab, select \"Set variable\", type \"sun\" in the<emph> Name</emph> box, and its value in the<emph> Value</emph> box."
+msgstr "Insereix text si es compleix una <link href=\"text/swriter/01/04090200.xhp\">condició</link> concreta. Per exemple, introduïu \"sol ig 1\" al quadre <emph>Condició</emph> i, a continuació, el text que voleu inserir quan la variable \"sol\" siga igual a \"1\" en el quadre <emph>Si no</emph>. Si voleu també podeu introduir el text que voleu visualitzar quan esta condició no es trobe al quadre <emph>Si no</emph>. Per definir la variable \"sol\", feu clic a la pestanya <link href=\"text/swriter/01/04090005.xhp\"><emph>Variables</emph></link>, seleccioneu \"Defineix la variable\", escriviu \"sol\" en el quadre<emph> Nom</emph>, i el seu valor en el quadre<emph> Valor</emph>."
#. UzeYZ
#: 04090003.xhp
@@ -8063,13 +8063,13 @@ msgctxt ""
msgid "Input list"
msgstr "Llista d'entrada"
-#. Lhuf5
+#. U6HBq
#: 04090003.xhp
msgctxt ""
"04090003.xhp\n"
"par_id3147564\n"
"help.text"
-msgid "Inserts a text field that displays one item from a list. You can add, edit, and remove items, and change their order in the list. Click an <emph>Input list</emph> field in your document or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F9</keycode> to display the <link href=\"text/swriter/01/04090003.xhp\" name=\"Choose Item\"><emph>Choose Item</emph></link> dialog."
+msgid "Inserts a text field that displays one item from a list. You can add, edit, and remove items, and change their order in the list. Click an <emph>Input list</emph> field in your document or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F9</keycode> to display the <link href=\"text/swriter/01/04090003.xhp\"><emph>Choose Item</emph></link> dialog."
msgstr ""
#. Bsz3R
@@ -8081,14 +8081,14 @@ msgctxt ""
msgid "Input field"
msgstr "Camp d'entrada"
-#. MMG6i
+#. EygCr
#: 04090003.xhp
msgctxt ""
"04090003.xhp\n"
"par_id3149287\n"
"help.text"
-msgid "Inserts a text field that you can open by <link href=\"text/swriter/01/04090100.xhp\" name=\"clicking\">clicking</link> it in the document. You can then change the text that is displayed."
-msgstr "Insereix un camp de text que podeu obrir <link href=\"text/swriter/01/04090100.xhp\" name=\"fent-hi clic\">fent-hi clic</link> en el document. A continuació, podreu canviar el text que es mostra."
+msgid "Inserts a text field that you can open by <link href=\"text/swriter/01/04090100.xhp\">clicking</link> it in the document. You can then change the text that is displayed."
+msgstr "Insereix un camp de text que podeu obrir <link href=\"text/swriter/01/04090100.xhp\">fent-hi clic</link> en el document. A continuació, podreu canviar el text que es mostra."
#. fKEyC
#: 04090003.xhp
@@ -8135,13 +8135,13 @@ msgctxt ""
msgid "Hidden text"
msgstr "Text amagat"
-#. bHrmr
+#. wUxEE
#: 04090003.xhp
msgctxt ""
"04090003.xhp\n"
"par_id3147524\n"
"help.text"
-msgid "Inserts a text field that is hidden when the condition that you specify is met. To use this function, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01040200.xhp\" name=\"Text Document - View\"><menuitem>%PRODUCTNAME Writer - View</menuitem></link> and clear the <emph>Hidden text</emph> check box."
+msgid "Inserts a text field that is hidden when the condition that you specify is met. To use this function, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01040200.xhp\"><menuitem>%PRODUCTNAME Writer - View</menuitem></link> and clear the <emph>Hidden text</emph> check box."
msgstr ""
#. BMoMs
@@ -8153,13 +8153,13 @@ msgctxt ""
msgid "Hidden Paragraph"
msgstr "Paràgraf amagat"
-#. sibUD
+#. xyjWR
#: 04090003.xhp
msgctxt ""
"04090003.xhp\n"
"par_id3153677\n"
"help.text"
-msgid "Hides a paragraph when the condition that you specify is met. To use this function, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040200.xhp\" name=\"Text Document - View\"><menuitem>%PRODUCTNAME Writer - View</menuitem></link> and clear the <emph>Hidden paragraphs</emph> check box."
+msgid "Hides a paragraph when the condition that you specify is met. To use this function, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040200.xhp\"><menuitem>%PRODUCTNAME Writer - View</menuitem></link> and clear the <emph>Hidden paragraphs</emph> check box."
msgstr ""
#. sT58o
@@ -8216,14 +8216,14 @@ msgctxt ""
msgid "Condition"
msgstr "Condició"
-#. GtAT7
+#. BJMdk
#: 04090003.xhp
msgctxt ""
"04090003.xhp\n"
"par_id3143281\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/flddbpage/condition\">For fields linked to a <link href=\"text/swriter/01/04090200.xhp\" name=\"condition\">condition</link>, enter the criteria here.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddbpage/condition\">Per als camps enllaçats a una <link href=\"text/swriter/01/04090200.xhp\" name=\"condició\">condició</link>, introduïu ací els criteris.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/flddbpage/condition\">For fields linked to a <link href=\"text/swriter/01/04090200.xhp\">condition</link>, enter the criteria here.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddbpage/condition\">Per als camps enllaçats a una <link href=\"text/swriter/01/04090200.xhp\">condició</link>, introduïu ací els criteris.</ahelp>"
#. BwPbJ
#: 04090003.xhp
@@ -8621,14 +8621,14 @@ msgctxt ""
msgid "DocInformation"
msgstr "InformacióDoc"
-#. ZfLhY
+#. SykGh
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"hd_id3154479\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090004.xhp\" name=\"DocInformation\">DocInformation</link>"
-msgstr "<link href=\"text/swriter/01/04090004.xhp\" name=\"InformacióDoc\">InformacióDoc</link>"
+msgid "<link href=\"text/swriter/01/04090004.xhp\">DocInformation</link>"
+msgstr "<link href=\"text/swriter/01/04090004.xhp\">InformacióDoc</link>"
#. tpcju
#: 04090004.xhp
@@ -8639,13 +8639,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose <menuitem>File - Properties</menuitem>.</ahelp>"
msgstr ""
-#. UAjpE
+#. 4iQpY
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id3148982\n"
"help.text"
-msgid "When you export and import an HTML document containing DocInformation fields, <link href=\"text/swriter/01/04090007.xhp#DocInformation\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
+msgid "When you export and import an HTML document containing DocInformation fields, <link href=\"text/swriter/01/04090007.xhp#DocInformation\">special $[officename] formats</link> are used."
msgstr ""
#. Y9tFf
@@ -8684,13 +8684,13 @@ msgctxt ""
msgid "Comments"
msgstr "Comentaris"
-#. PQFYC
+#. fyFFC
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id3147490\n"
"help.text"
-msgid "Inserts the comments as entered in the <emph>Description</emph> tab page of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog."
+msgid "Inserts the comments as entered in the <emph>Description</emph> tab page of the <link href=\"text/shared/01/01100300.xhp\"><menuitem>File - Properties</menuitem></link> dialog."
msgstr ""
#. fZJ33
@@ -8720,13 +8720,13 @@ msgctxt ""
msgid "Custom"
msgstr "Personalitzat"
-#. KXS9b
+#. PHmFr
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id3154784\n"
"help.text"
-msgid "Inserts the contents of the properties found on the <emph>Custom Properties</emph> tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog. (Only shown if Custom properties are added.)"
+msgid "Inserts the contents of the properties found on the <emph>Custom Properties</emph> tab of the <link href=\"text/shared/01/01100300.xhp\"><menuitem>File - Properties</menuitem></link> dialog. (Only shown if Custom properties are added.)"
msgstr ""
#. GZvq9
@@ -8738,13 +8738,13 @@ msgctxt ""
msgid "Keywords"
msgstr "Paraules clau"
-#. qNuV3
+#. TMyDP
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id3150912\n"
"help.text"
-msgid "Inserts the keywords as entered in the <emph>Description</emph> tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog."
+msgid "Inserts the keywords as entered in the <emph>Description</emph> tab of the <link href=\"text/shared/01/01100300.xhp\"><menuitem>File - Properties</menuitem></link> dialog."
msgstr ""
#. 2CUCo
@@ -8810,13 +8810,13 @@ msgctxt ""
msgid "Subject"
msgstr "Assumpte"
-#. zda5N
+#. V7mGk
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id3146942\n"
"help.text"
-msgid "Inserts the subject as entered in the <emph>Description</emph> tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog."
+msgid "Inserts the subject as entered in the <emph>Description</emph> tab of the <link href=\"text/shared/01/01100300.xhp\"><menuitem>File - Properties</menuitem></link> dialog."
msgstr ""
#. BeCQj
@@ -8828,13 +8828,13 @@ msgctxt ""
msgid "Title"
msgstr "Títol"
-#. LGiNd
+#. u4zmV
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id3150033\n"
"help.text"
-msgid "Inserts the title as entered in the <emph>Description</emph> tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><menuitem>File - Properties</menuitem></link> dialog."
+msgid "Inserts the title as entered in the <emph>Description</emph> tab of the <link href=\"text/shared/01/01100300.xhp\"><menuitem>File - Properties</menuitem></link> dialog."
msgstr ""
#. nK4Xe
@@ -8927,14 +8927,14 @@ msgctxt ""
msgid "<bookmark_value>user-defined fields, restriction</bookmark_value>"
msgstr "<bookmark_value>camps definits per l'usuari, restricció</bookmark_value>"
-#. tEqMG
+#. KGQCu
#: 04090005.xhp
msgctxt ""
"04090005.xhp\n"
"hd_id3153716\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090005.xhp\" name=\"Variables\">Variables</link>"
-msgstr "<link href=\"text/swriter/01/04090005.xhp\" name=\"Variables\">Variables</link>"
+msgid "<link href=\"text/swriter/01/04090005.xhp\">Variables</link>"
+msgstr "<link href=\"text/swriter/01/04090005.xhp\">Variables</link>"
#. VYoYN
#: 04090005.xhp
@@ -9017,14 +9017,14 @@ msgctxt ""
msgid "DDE field"
msgstr "Camp DDE"
-#. CKHT9
+#. c7Enn
#: 04090005.xhp
msgctxt ""
"04090005.xhp\n"
"par_id3149684\n"
"help.text"
-msgid "Inserts a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE\">DDE</link> link into the document, that you can update as often as you want through the assigned name."
-msgstr "Insereix un enllaç <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE\">DDE</link> en el document, el qual podreu actualitzar sempre que vulgueu a través del nom assignat."
+msgid "Inserts a <link href=\"text/shared/00/00000005.xhp#dde\">DDE</link> link into the document, that you can update as often as you want through the assigned name."
+msgstr "Insereix un enllaç <link href=\"text/shared/00/00000005.xhp#dde\">DDE</link> en el document, el qual podreu actualitzar sempre que vulgueu a través del nom assignat."
#. B7dkh
#: 04090005.xhp
@@ -9071,13 +9071,13 @@ msgctxt ""
msgid "The value of a variable in an Input field is only valid from where the field is inserted and onwards. To change the value of the variable later in the document, insert another Input field of the same name, but with a different value. However, the value of a User Field is changed globally."
msgstr "El valor d'una variable en un camp d'entrada només és vàlid des d'on s'ha inserit el camp cap avant. Per canviar el valor de la variable posteriorment en el document, inseriu un altre camp d'entrada amb el mateix nom, però amb un valor diferent. Al contrari, el valor d'un Camp d'usuari es canvia per complet."
-#. qmZAg
+#. LWrGQ
#: 04090005.xhp
msgctxt ""
"04090005.xhp\n"
"par_id3151255\n"
"help.text"
-msgid "The variables are displayed in the <emph>Select</emph> field. When you click the <emph>Insert</emph> button, the dialog <link href=\"text/swriter/01/04090100.xhp\" name=\"Input Field\"><emph>Review Fields</emph></link> appears, where you can enter the new value or additional text as a remark."
+msgid "The variables are displayed in the <emph>Select</emph> field. When you click the <emph>Insert</emph> button, the dialog <link href=\"text/swriter/01/04090100.xhp\"><emph>Review Fields</emph></link> appears, where you can enter the new value or additional text as a remark."
msgstr ""
#. tbz9T
@@ -9233,14 +9233,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/fldvarpage/format\">In the <emph>Format</emph> list, define if the value is inserted as text or a number.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/fldvarpage/format\">A la llista <emph>Format</emph>, definiu si el valor s'insereix com a text o com a nombre.</ahelp>"
-#. siatD
+#. C2c7a
#: 04090005.xhp
msgctxt ""
"04090005.xhp\n"
"par_id3150696\n"
"help.text"
-msgid "In an HTML document, two additional fields are available for the \"Set variable\" field type: HTML_ON and HTML_OFF. The text that you type in the <emph>Value </emph>box is converted to an opening HTML <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tag\">tag</link> (<Value>) or to a closing HTML (</Value>) tag when the file is saved as an HTML document, depending on the option that you select."
-msgstr "En un document HTML hi ha dos camps addicionals disponibles per al tipus de camp \"Defineix la variable\": HTML_ON i HTML_OFF. El text que introduïu en el quadre <emph>Valor</emph> es converteix en una <link href=\"text/shared/00/00000002.xhp#tags\" name=\"etiqueta\">etiqueta</link> (<Valor>) d'obertura HTML o en un (</Valor>) de tancament HTML."
+msgid "In an HTML document, two additional fields are available for the \"Set variable\" field type: HTML_ON and HTML_OFF. The text that you type in the <emph>Value </emph>box is converted to an opening HTML <link href=\"text/shared/00/00000002.xhp#tags\">tag</link> (<Value>) or to a closing HTML (</Value>) tag when the file is saved as an HTML document, depending on the option that you select."
+msgstr "En un document HTML hi ha dos camps addicionals disponibles per al tipus de camp \"Defineix la variable\": HTML_ON i HTML_OFF. El text que introduïu en el quadre <emph>Valor</emph> es converteix en una <link href=\"text/shared/00/00000002.xhp#tags\">etiqueta</link> (<Valor>) d'obertura HTML o en un (</Valor>) de tancament HTML."
#. BFvdg
#: 04090005.xhp
@@ -9431,14 +9431,14 @@ msgctxt ""
msgid "Database"
msgstr "Base de dades"
-#. 4EPDN
+#. 6ZiYE
#: 04090006.xhp
msgctxt ""
"04090006.xhp\n"
"hd_id3153536\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090006.xhp\" name=\"Database\">Database</link>"
-msgstr "<link href=\"text/swriter/01/04090006.xhp\" name=\"Base de dades\">Base de dades</link>"
+msgid "<link href=\"text/swriter/01/04090006.xhp\">Database</link>"
+msgstr "<link href=\"text/swriter/01/04090006.xhp\">Base de dades</link>"
#. B8JD8
#: 04090006.xhp
@@ -9485,14 +9485,14 @@ msgctxt ""
msgid "Any Record"
msgstr "Qualsevol registre"
-#. wBEKg
+#. B3GQn
#: 04090006.xhp
msgctxt ""
"04090006.xhp\n"
"par_id3151257\n"
"help.text"
-msgid "Inserts the contents of the database field that you specify in the <emph>Record Number</emph> box as a mail merge field if the <link href=\"text/swriter/01/04090200.xhp\" name=\"Condition\"><emph>Condition</emph></link> that you enter is met. Only records selected by a multiple selection in the data source view are considered."
-msgstr "Insereix el contingut del camp de la base de dades que heu especificat en el quadre <emph>Número de registre</emph> com a camp de combinació de correu si es compleix la <link href=\"text/swriter/01/04090200.xhp\" name=\"Condició\"><emph>Condició</emph></link> que heu introduït. Només es consideren els registres seleccionats amb una selecció múltiple en la visualització de la font de dades."
+msgid "Inserts the contents of the database field that you specify in the <emph>Record Number</emph> box as a mail merge field if the <link href=\"text/swriter/01/04090200.xhp\"><emph>Condition</emph></link> that you enter is met. Only records selected by a multiple selection in the data source view are considered."
+msgstr "Insereix el contingut del camp de la base de dades que heu especificat en el quadre <emph>Número de registre</emph> com a camp de combinació de correu si es compleix la <link href=\"text/swriter/01/04090200.xhp\"><emph>Condició</emph></link> que heu introduït. Només es consideren els registres seleccionats amb una selecció múltiple en la visualització de la font de dades."
#. abTaE
#: 04090006.xhp
@@ -9773,14 +9773,14 @@ msgctxt ""
msgid "<bookmark_value>tags; in $[officename] Writer</bookmark_value><bookmark_value>$[officename] Writer; special HTML tags</bookmark_value><bookmark_value>HTML;special tags for fields</bookmark_value><bookmark_value>fields;HTML import and export</bookmark_value><bookmark_value>time fields;HTML</bookmark_value><bookmark_value>date fields;HTML</bookmark_value><bookmark_value>DocInformation fields</bookmark_value>"
msgstr "<bookmark_value>etiquetes ; al $[officename] Writer</bookmark_value><bookmark_value>$[officename] Writer; etiquetes HTML especials</bookmark_value><bookmark_value>HTML;etiquetes especials per a camps</bookmark_value><bookmark_value>camps;importació i exportació d'HTML</bookmark_value><bookmark_value>camps d'hora;HTML</bookmark_value><bookmark_value>camps de data;HTML</bookmark_value><bookmark_value>camps d'InformacióDoc</bookmark_value>"
-#. BiNnB
+#. RmFS5
#: 04090007.xhp
msgctxt ""
"04090007.xhp\n"
"hd_id3154106\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090007.xhp\" name=\"Special Tags\">Special Tags</link>"
-msgstr "<link href=\"text/swriter/01/04090007.xhp\" name=\"Etiquetes especials\">Etiquetes especials</link>"
+msgid "<link href=\"text/swriter/01/04090007.xhp\">Special Tags</link>"
+msgstr "<link href=\"text/swriter/01/04090007.xhp\">Etiquetes especials</link>"
#. uKaRE
#: 04090007.xhp
@@ -11249,14 +11249,14 @@ msgctxt ""
msgid "<bookmark_value>fields;editing</bookmark_value> <bookmark_value>edit;fields</bookmark_value>"
msgstr "<bookmark_value>camps;edició</bookmark_value><bookmark_value>editar;camps</bookmark_value>"
-#. 7dZ8Y
+#. 4kJRS
#: 04090300.xhp
msgctxt ""
"04090300.xhp\n"
"hd_id431519648111292\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090300.xhp\" name=\"Edit Fields\">Edit Fields (variables)</link>"
-msgstr "<link href=\"text/swriter/01/04090300.xhp\" name=\"Edita els camps\">Edita els camps (variables)</link>"
+msgid "<link href=\"text/swriter/01/04090300.xhp\">Edit Fields (variables)</link>"
+msgstr "<link href=\"text/swriter/01/04090300.xhp\">Edita els camps (variables)</link>"
#. AqnsX
#: 04090300.xhp
@@ -11339,14 +11339,14 @@ msgctxt ""
msgid "Table of Contents and Index"
msgstr "Taula de continguts i índex"
-#. YKhAq
+#. RzHRn
#: 04120000.xhp
msgctxt ""
"04120000.xhp\n"
"hd_id3151380\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120000.xhp\" name=\"Table of Contents and Index\">Table of Contents and Index</link>"
-msgstr "<link href=\"text/swriter/01/04120000.xhp\" name=\"Table of Contents and Index\">Taula de continguts i índex</link>"
+msgid "<link href=\"text/swriter/01/04120000.xhp\">Table of Contents and Index</link>"
+msgstr "<link href=\"text/swriter/01/04120000.xhp\">Taula de continguts i índex</link>"
#. tCd22
#: 04120000.xhp
@@ -11357,32 +11357,32 @@ msgctxt ""
msgid "Opens a menu to insert an index or bibliography entry, as well as inserting a table of contents, index, and or bibliography."
msgstr "Obri un menú per a inserir un entrada d'índex o bibliogràfica, i per a inserir una taula de continguts, d'índex o bibliografia."
-#. RY9f3
+#. Fshgc
#: 04120000.xhp
msgctxt ""
"04120000.xhp\n"
"hd_id3147416\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\">Index Entry</link>"
-msgstr "<link href=\"text/swriter/01/04120100.xhp\" name=\"Entrada\">Entrada</link>"
+msgid "<link href=\"text/swriter/01/04120100.xhp\">Index Entry</link>"
+msgstr "<link href=\"text/swriter/01/04120100.xhp\">Entrada</link>"
-#. xAn4r
+#. yzCqd
#: 04120000.xhp
msgctxt ""
"04120000.xhp\n"
"hd_id3155620\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120300.xhp\" name=\"Bibliography Entry\">Bibliography Entry</link>"
-msgstr "<link href=\"text/swriter/01/04120300.xhp\" name=\"Entrada bibliogràfica\">Entrada bibliogràfica</link>"
+msgid "<link href=\"text/swriter/01/04120300.xhp\">Bibliography Entry</link>"
+msgstr "<link href=\"text/swriter/01/04120300.xhp\">Entrada bibliogràfica</link>"
-#. Uze5b
+#. W9TtX
#: 04120000.xhp
msgctxt ""
"04120000.xhp\n"
"hd_id3147501\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120200.xhp\" name=\"Table of Context, Index or Bibliography\">Table of Content, Index or Bibliography</link>"
-msgstr "<link href=\"text/swriter/01/04120200.xhp\" name=\"Taula de continguts, índex o bibliografia\">Taula de continguts, índex o bibliografia</link>"
+msgid "<link href=\"text/swriter/01/04120200.xhp\">Table of Content, Index or Bibliography</link>"
+msgstr "<link href=\"text/swriter/01/04120200.xhp\">Taula de continguts, índex o bibliografia</link>"
#. MJEob
#: 04120100.xhp
@@ -11411,14 +11411,14 @@ msgctxt ""
msgid "<variable id=\"eintrag\"><ahelp hid=\".uno:InsertIndexesEntry\">Marks the selected text as index or table of contents entry.</ahelp></variable>"
msgstr "<variable id=\"eintrag\"><ahelp hid=\".uno:InsertIndexesEntry\">Marca el text seleccionat com a entrada de l'índex o de la taula de continguts.</ahelp></variable>"
-#. WKYDZ
+#. U8gCo
#: 04120100.xhp
msgctxt ""
"04120100.xhp\n"
"par_id3147571\n"
"help.text"
-msgid "To edit an index entry, place the cursor in front of the index field, and then choose <link href=\"text/swriter/01/02160000.xhp\" name=\"Edit - Reference - Index Entry...\"><emph>Edit - Reference - Index Entry...</emph></link>"
-msgstr "Per a editar una entrada d'índex, situeu el cursor davant del camp d'índex i després trieu <link href=\"text/swriter/01/02160000.xhp\" name=\"Edita ▸ Referència ▸ Entrada d'índex\"><emph>Edita ▸ Referència ▸ Entrada d'índex...</emph></link>"
+msgid "To edit an index entry, place the cursor in front of the index field, and then choose <link href=\"text/swriter/01/02160000.xhp\"><emph>Edit - Reference - Index Entry...</emph></link>"
+msgstr "Per a editar una entrada d'índex, situeu el cursor davant del camp d'índex i després trieu <link href=\"text/swriter/01/02160000.xhp\"><emph>Edita ▸ Referència ▸ Entrada d'índex...</emph></link>"
#. 3Nui7
#: 04120100.xhp
@@ -11699,14 +11699,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/newuserindexdialog/NewUserIndexDialog\">Enter a name for the new user-defined index. The new index is added to the list of available indexes and tables.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/newuserindexdialog/NewUserIndexDialog\">Introduïu un nom per a l'índex nou definit per l'usuari. L'índex nou s'afig a la llista d'índexs i de taules disponibles.</ahelp>"
-#. ztECt
+#. C7yjc
#: 04120100.xhp
msgctxt ""
"04120100.xhp\n"
"par_id3156124\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/indices_toc.xhp\" name=\"Using Tables of Content and Indexes\">Using Tables of Content and Indexes</link>"
-msgstr "<link href=\"text/swriter/guide/indices_toc.xhp\" name=\"Utilització de taules de contingut i índexs\">Utilització de taules de contingut i índexs</link>"
+msgid "<link href=\"text/swriter/guide/indices_toc.xhp\">Using Tables of Content and Indexes</link>"
+msgstr "<link href=\"text/swriter/guide/indices_toc.xhp\">Utilització de taules de contingut i índexs</link>"
#. GgnHT
#: 04120200.xhp
@@ -11762,14 +11762,14 @@ msgctxt ""
msgid "Use this tab to specify the column layout for the index or table of contents. By default, the index title is one-column wide and extends out from left page margin."
msgstr "Utilitzeu esta pestanya per especificar el format de la columna per a l'índex o per a la taula de continguts. Per defecte, el títol de l'índex ocupa l'amplària d'una columna i s'estén fora del marge esquerre de la pàgina."
-#. WExMG
+#. G5AfT
#: 04120200.xhp
msgctxt ""
"04120200.xhp\n"
"par_id3149095\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/main.xhp\" name=\"Using Tables of Content and Indexes\">Using Tables of Content and Indexes</link>"
-msgstr "<link href=\"text/swriter/guide/main.xhp\" name=\"Ús de taules de continguts i índexs\">Ús de taules de continguts i índexs</link>"
+msgid "<link href=\"text/swriter/guide/main.xhp\">Using Tables of Content and Indexes</link>"
+msgstr "<link href=\"text/swriter/guide/main.xhp\">Ús de taules de continguts i índexs</link>"
#. ZsBij
#: 04120201.xhp
@@ -11780,14 +11780,14 @@ msgctxt ""
msgid "Styles"
msgstr "Estils"
-#. 64xRB
+#. oYCNK
#: 04120201.xhp
msgctxt ""
"04120201.xhp\n"
"hd_id3145825\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120201.xhp\" name=\"Styles\">Styles</link>"
-msgstr "<link href=\"text/swriter/01/04120201.xhp\" name=\"Estils\">Estils</link>"
+msgid "<link href=\"text/swriter/01/04120201.xhp\">Styles</link>"
+msgstr "<link href=\"text/swriter/01/04120201.xhp\">Estils</link>"
#. AabLF
#: 04120201.xhp
@@ -11906,23 +11906,23 @@ msgctxt ""
msgid "Type"
msgstr "Tipus"
-#. JoJop
+#. RBaqU
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"hd_id3150933\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120210.xhp\" name=\"Type\">Type</link>"
-msgstr "<link href=\"text/swriter/01/04120210.xhp\" name=\"Tipus\">Tipus</link>"
+msgid "<link href=\"text/swriter/01/04120210.xhp\">Type</link>"
+msgstr "<link href=\"text/swriter/01/04120210.xhp\">Tipus</link>"
-#. EYCiW
+#. Qx9qH
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"par_id3148390\n"
"help.text"
-msgid "Use this tab to specify and define the type of <link href=\"text/swriter/01/04120200.xhp\" name=\"index\">index</link> that you want to insert. You can also create custom indexes."
-msgstr "Utilitzeu esta pestanya per especificar i definir el tipus d'<link href=\"text/swriter/01/04120200.xhp\" name=\"índex\">índex</link> que voleu inserir. També podeu crear índexs personalitzats."
+msgid "Use this tab to specify and define the type of <link href=\"text/swriter/01/04120200.xhp\">index</link> that you want to insert. You can also create custom indexes."
+msgstr "Utilitzeu esta pestanya per especificar i definir el tipus d'<link href=\"text/swriter/01/04120200.xhp\">índex</link> que voleu inserir. També podeu crear índexs personalitzats."
#. L3wzv
#: 04120210.xhp
@@ -11933,86 +11933,86 @@ msgctxt ""
msgid "Depending on the type of index that you select, this tab contains the following options."
msgstr "En funció del tipus d'índex que hàgeu seleccionat, esta pestanya contindrà les opcions següents."
-#. N7ZZd
+#. Fs9mG
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"hd_id3147175\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120211.xhp\" name=\"Table of Contents\">Table of Contents</link>"
-msgstr "<link href=\"text/swriter/01/04120211.xhp\" name=\"Taula de continguts\">Taula de continguts</link>"
+msgid "<link href=\"text/swriter/01/04120211.xhp\">Table of Contents</link>"
+msgstr "<link href=\"text/swriter/01/04120211.xhp\">Taula de continguts</link>"
-#. pPiuL
+#. cPChH
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"hd_id3151183\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120212.xhp\" name=\"Alphabetical Index\">Alphabetical Index</link>"
-msgstr "<link href=\"text/swriter/01/04120212.xhp\" name=\"Índex alfabètic\">Índex alfabètic</link>"
+msgid "<link href=\"text/swriter/01/04120212.xhp\">Alphabetical Index</link>"
+msgstr "<link href=\"text/swriter/01/04120212.xhp\">Índex alfabètic</link>"
-#. yYFwk
+#. pfmvy
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"hd_id3154645\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120213.xhp\" name=\"Illustration Index\">Illustration Index</link>"
-msgstr "<link href=\"text/swriter/01/04120213.xhp\" name=\"Índex d'il·lustracions\">Índex d'il·lustracions</link>"
+msgid "<link href=\"text/swriter/01/04120213.xhp\">Illustration Index</link>"
+msgstr "<link href=\"text/swriter/01/04120213.xhp\">Índex d'il·lustracions</link>"
-#. GskzX
+#. V72T4
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"hd_id3151265\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120214.xhp\" name=\"Index of Tables\">Index of Tables</link>"
-msgstr "<link href=\"text/swriter/01/04120214.xhp\" name=\"Índex de taules\">Índex de taules</link>"
+msgid "<link href=\"text/swriter/01/04120214.xhp\">Index of Tables</link>"
+msgstr "<link href=\"text/swriter/01/04120214.xhp\">Índex de taules</link>"
-#. wK9Ev
+#. JTEuD
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"hd_id3153152\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120215.xhp\" name=\"User-Defined\">User-Defined</link>"
-msgstr "<link href=\"text/swriter/01/04120215.xhp\" name=\"Definit per l'usuari\">Definit per l'usuari</link>"
+msgid "<link href=\"text/swriter/01/04120215.xhp\">User-Defined</link>"
+msgstr "<link href=\"text/swriter/01/04120215.xhp\">Definit per l'usuari</link>"
-#. G54dR
+#. B4QA8
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"hd_id3149759\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120216.xhp\" name=\"Table of Objects\">Table of Objects</link>"
-msgstr "<link href=\"text/swriter/01/04120216.xhp\" name=\"Taula d'objectes\">Taula d'objectes</link>"
+msgid "<link href=\"text/swriter/01/04120216.xhp\">Table of Objects</link>"
+msgstr "<link href=\"text/swriter/01/04120216.xhp\">Taula d'objectes</link>"
-#. KAJ2w
+#. KvBWG
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"hd_id3145410\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120217.xhp\" name=\"Bibliography\">Bibliography</link>"
-msgstr "<link href=\"text/swriter/01/04120217.xhp\" name=\"Bibliografia\">Bibliografia</link>"
+msgid "<link href=\"text/swriter/01/04120217.xhp\">Bibliography</link>"
+msgstr "<link href=\"text/swriter/01/04120217.xhp\">Bibliografia</link>"
-#. mZ7Dc
+#. GBLAC
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"par_id3154278\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/main.xhp\" name=\"Using Tables of Content and Indexes\">Using Tables of Content and Indexes</link>"
-msgstr "<link href=\"text/swriter/guide/main.xhp\" name=\"Ús de taules de continguts i índexs\">Ús de taules de continguts i índexs</link>"
+msgid "<link href=\"text/swriter/guide/main.xhp\">Using Tables of Content and Indexes</link>"
+msgstr "<link href=\"text/swriter/guide/main.xhp\">Ús de taules de continguts i índexs</link>"
-#. D5bMc
+#. FLuGm
#: 04120210.xhp
msgctxt ""
"04120210.xhp\n"
"par_id3152942\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120100.xhp\" name=\"Insert - Indexes and Tables - Entry\">Insert - Table of Contents and Index - Index Entry</link>"
-msgstr "<link href=\"text/swriter/01/04120100.xhp\" name=\"Insereix ▸ Índexs i taules ▸ Entrada\">Insereix ▸ Índexs i taules ▸ Entrada</link>"
+msgid "<link href=\"text/swriter/01/04120100.xhp\">Insert - Table of Contents and Index - Index Entry</link>"
+msgstr "<link href=\"text/swriter/01/04120100.xhp\">Insereix ▸ Índexs i taules ▸ Entrada</link>"
#. FB44B
#: 04120211.xhp
@@ -12023,23 +12023,23 @@ msgctxt ""
msgid "Index"
msgstr "Índex"
-#. rkoDR
+#. eibCy
#: 04120211.xhp
msgctxt ""
"04120211.xhp\n"
"hd_id3150018\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120211.xhp\" name=\"Index\">Index</link>"
-msgstr "<link href=\"text/swriter/01/04120211.xhp\" name=\"Índex\">Índex</link>"
+msgid "<link href=\"text/swriter/01/04120211.xhp\">Index</link>"
+msgstr "<link href=\"text/swriter/01/04120211.xhp\">Índex</link>"
-#. 2E2BA
+#. hoYtn
#: 04120211.xhp
msgctxt ""
"04120211.xhp\n"
"par_id3150570\n"
"help.text"
-msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Table of Contents </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Taula de continguts</emph> com a tipus d'<link href=\"text/swriter/01/04120210.xhp\" name=\"índex\">índex</link>.</variable>"
+msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Table of Contents </emph>as the <link href=\"text/swriter/01/04120210.xhp\">index</link> type.</variable>"
+msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Taula de continguts</emph> com a tipus d'<link href=\"text/swriter/01/04120210.xhp\">índex</link>.</variable>"
#. BnK56
#: 04120211.xhp
@@ -12275,23 +12275,23 @@ msgctxt ""
msgid "Index"
msgstr "Índex"
-#. mCGZx
+#. DwoZG
#: 04120212.xhp
msgctxt ""
"04120212.xhp\n"
"hd_id3147338\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120212.xhp\" name=\"Index\">Index</link>"
-msgstr "<link href=\"text/swriter/01/04120212.xhp\" name=\"Índex\">Índex</link>"
+msgid "<link href=\"text/swriter/01/04120212.xhp\">Index</link>"
+msgstr "<link href=\"text/swriter/01/04120212.xhp\">Índex</link>"
-#. GNpsZ
+#. 4gs5m
#: 04120212.xhp
msgctxt ""
"04120212.xhp\n"
"par_id3155962\n"
"help.text"
-msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Alphabetical Index </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type. </variable>"
-msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Índex alfabètic </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\" name=\"índex\">índex</link>. </variable>"
+msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Alphabetical Index </emph>as the <link href=\"text/swriter/01/04120210.xhp\">index</link> type. </variable>"
+msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Índex alfabètic </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\">índex</link>. </variable>"
#. 2BRuD
#: 04120212.xhp
@@ -12419,14 +12419,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/keyasentry\">Inserts index keys as separate index entries.</ahelp> A key is inserted as a top level index entry and the entries that are assigned to the key as indented subentries."
msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/keyasentry\">Insereix les claus d'índex com a entrades d'índex per separat.</ahelp> S'insereix una clau com a entrada d'índex principal i les entrades que s'assignen a la clau ho fan com a subentrades sagnades."
-#. f9rfK
+#. tgFPz
#: 04120212.xhp
msgctxt ""
"04120212.xhp\n"
"par_id3151184\n"
"help.text"
-msgid "To define an index key, choose <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert Index Entry\"><emph>Insert Index Entry</emph></link> dialog."
-msgstr "Per definir una clau d'índex, trieu el diàleg <link href=\"text/swriter/01/04120100.xhp\" name=\"Insereix entrada d'índex\"><emph>Insereix entrada d'índex</emph></link>"
+msgid "To define an index key, choose <link href=\"text/swriter/01/04120100.xhp\"><emph>Insert Index Entry</emph></link> dialog."
+msgstr "Per definir una clau d'índex, trieu el diàleg <link href=\"text/swriter/01/04120100.xhp\"><emph>Insereix entrada d'índex</emph></link>"
#. ob6HC
#: 04120212.xhp
@@ -12527,23 +12527,23 @@ msgctxt ""
msgid "Index"
msgstr "Índex"
-#. W7Suy
+#. 2HtEk
#: 04120213.xhp
msgctxt ""
"04120213.xhp\n"
"hd_id3147570\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120213.xhp\" name=\"Index\">Index</link>"
-msgstr "<link href=\"text/swriter/01/04120213.xhp\" name=\"Índex\">Índex</link>"
+msgid "<link href=\"text/swriter/01/04120213.xhp\">Index</link>"
+msgstr "<link href=\"text/swriter/01/04120213.xhp\">Índex</link>"
-#. GbFAz
+#. eLBEm
#: 04120213.xhp
msgctxt ""
"04120213.xhp\n"
"par_id3145415\n"
"help.text"
-msgid "<variable id=\"verzeichnis\">The following options are available when you select the <emph>Illustration Index </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu l'<emph>Índex d'il·lustracions </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\" name=\"índex\">índex</link>.</variable>"
+msgid "<variable id=\"verzeichnis\">The following options are available when you select the <emph>Illustration Index </emph>as the <link href=\"text/swriter/01/04120210.xhp\">index</link> type.</variable>"
+msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu l'<emph>Índex d'il·lustracions </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\">índex</link>.</variable>"
#. fGwNE
#: 04120213.xhp
@@ -12725,23 +12725,23 @@ msgctxt ""
msgid "Index"
msgstr "Índex"
-#. YfXwB
+#. UCUAK
#: 04120214.xhp
msgctxt ""
"04120214.xhp\n"
"hd_id3151387\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120214.xhp\" name=\"Index\">Index</link>"
-msgstr "<link href=\"text/swriter/01/04120214.xhp\" name=\"Índex\">Índex</link>"
+msgid "<link href=\"text/swriter/01/04120214.xhp\">Index</link>"
+msgstr "<link href=\"text/swriter/01/04120214.xhp\">Índex</link>"
-#. WTeYQ
+#. LxVpU
#: 04120214.xhp
msgctxt ""
"04120214.xhp\n"
"par_id3146320\n"
"help.text"
-msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Index of Tables </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Taules d'índex </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\" name=\"índex\">índex</link>.</variable>"
+msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Index of Tables </emph>as the <link href=\"text/swriter/01/04120210.xhp\">index</link> type.</variable>"
+msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Taules d'índex </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\">índex</link>.</variable>"
#. 2g223
#: 04120215.xhp
@@ -12752,23 +12752,23 @@ msgctxt ""
msgid "Index"
msgstr "Índex"
-#. CMKje
+#. nyF7K
#: 04120215.xhp
msgctxt ""
"04120215.xhp\n"
"hd_id3150568\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120215.xhp\" name=\"Index\">Index</link>"
-msgstr "<link href=\"text/swriter/01/04120215.xhp\" name=\"Índex\">Índex</link>"
+msgid "<link href=\"text/swriter/01/04120215.xhp\">Index</link>"
+msgstr "<link href=\"text/swriter/01/04120215.xhp\">Índex</link>"
-#. GRFyd
+#. aeUF6
#: 04120215.xhp
msgctxt ""
"04120215.xhp\n"
"par_id3151183\n"
"help.text"
-msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>User-Defined </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Definit per l'usuari </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\" name=\"índex\">índex</link>.</variable>"
+msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>User-Defined </emph>as the <link href=\"text/swriter/01/04120210.xhp\">index</link> type.</variable>"
+msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Definit per l'usuari </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\">índex</link>.</variable>"
#. oGDYZ
#: 04120215.xhp
@@ -12887,14 +12887,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/uselevel\">Indents table, graphic, frame, and OLE object index entries according their place in the chapter heading hierarchy.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/uselevel\">Sagna les entrades d'índex corresponents a taules, gràfics, marcs i objectes OLE en funció de llurs llocs en la jerarquia d'encapçalaments de capítols.</ahelp>"
-#. 2F5ha
+#. 4sSrm
#: 04120215.xhp
msgctxt ""
"04120215.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120100.xhp\" name=\"Defining an index entry\">Defining an index entry</link>"
-msgstr "<link href=\"text/swriter/01/04120100.xhp\" name=\"Definició d'una entrada d'índex\">Definició d'una entrada d'índex</link>"
+msgid "<link href=\"text/swriter/01/04120100.xhp\">Defining an index entry</link>"
+msgstr "<link href=\"text/swriter/01/04120100.xhp\">Definició d'una entrada d'índex</link>"
#. 6zWZj
#: 04120216.xhp
@@ -12905,23 +12905,23 @@ msgctxt ""
msgid "Index"
msgstr "Índex"
-#. v5zGA
+#. CAopC
#: 04120216.xhp
msgctxt ""
"04120216.xhp\n"
"hd_id3145247\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120216.xhp\" name=\"Index\">Index</link>"
-msgstr "<link href=\"text/swriter/01/04120216.xhp\" name=\"Índex\">Índex</link>"
+msgid "<link href=\"text/swriter/01/04120216.xhp\">Index</link>"
+msgstr "<link href=\"text/swriter/01/04120216.xhp\">Índex</link>"
-#. ckWBu
+#. jg7Ha
#: 04120216.xhp
msgctxt ""
"04120216.xhp\n"
"par_id3147175\n"
"help.text"
-msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Table of Objects </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Taula d'objectes </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\" name=\"índex\">índex</link>.</variable>"
+msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Table of Objects </emph>as the <link href=\"text/swriter/01/04120210.xhp\">index</link> type.</variable>"
+msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Taula d'objectes </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\">índex</link>.</variable>"
#. TpPAY
#: 04120216.xhp
@@ -12950,23 +12950,23 @@ msgctxt ""
msgid "Index"
msgstr "Índex"
-#. CumXB
+#. FYWzr
#: 04120217.xhp
msgctxt ""
"04120217.xhp\n"
"hd_id3146322\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120217.xhp\" name=\"Index\">Index</link>"
-msgstr "<link href=\"text/swriter/01/04120217.xhp\" name=\"Índex\">Índex</link>"
+msgid "<link href=\"text/swriter/01/04120217.xhp\">Index</link>"
+msgstr "<link href=\"text/swriter/01/04120217.xhp\">Índex</link>"
-#. FxwgF
+#. CSfRi
#: 04120217.xhp
msgctxt ""
"04120217.xhp\n"
"par_id3145825\n"
"help.text"
-msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Bibliography </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Bibliografia </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\" name=\"índex\">índex</link>.</variable>"
+msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Bibliography </emph>as the <link href=\"text/swriter/01/04120210.xhp\">index</link> type.</variable>"
+msgstr "<variable id=\"verzeichnis\">Les opcions següents estan disponibles quan seleccioneu <emph>Bibliografia </emph>com a tipus d'<link href=\"text/swriter/01/04120210.xhp\">índex</link>.</variable>"
#. 6oy4E
#: 04120217.xhp
@@ -12986,14 +12986,14 @@ msgctxt ""
msgid "Number entries"
msgstr "Numera les entrades"
-#. HkdgV
+#. 6uceL
#: 04120217.xhp
msgctxt ""
"04120217.xhp\n"
"par_id3154647\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/numberentries\">Automatically numbers the bibliography entries.</ahelp> To set the sorting options for the numbering, click the <link href=\"text/swriter/01/04120227.xhp\" name=\"Entries\">Entries</link> tab."
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/numberentries\">Numera automàticament les entrades bibliogràfiques.</ahelp> Per configurar les opcions d'ordenació per a la numeració, feu clic a la pestanya <link href=\"text/swriter/01/04120227.xhp\" name=\"Entrades\">Entrades</link>."
+msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/numberentries\">Automatically numbers the bibliography entries.</ahelp> To set the sorting options for the numbering, click the <link href=\"text/swriter/01/04120227.xhp\">Entries</link> tab."
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/numberentries\">Numera automàticament les entrades bibliogràfiques.</ahelp> Per configurar les opcions d'ordenació per a la numeració, feu clic a la pestanya <link href=\"text/swriter/01/04120227.xhp\">Entrades</link>."
#. dDBxv
#: 04120217.xhp
@@ -13022,14 +13022,14 @@ msgctxt ""
msgid "Assign Styles"
msgstr "Assigna els estils"
-#. Vcioy
+#. VPERa
#: 04120219.xhp
msgctxt ""
"04120219.xhp\n"
"hd_id3155621\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120219.xhp\" name=\"Assign Styles\">Assign Styles</link>"
-msgstr "<link href=\"text/swriter/01/04120219.xhp\" name=\"Assigna els estils\">Assigna els estils</link>"
+msgid "<link href=\"text/swriter/01/04120219.xhp\">Assign Styles</link>"
+msgstr "<link href=\"text/swriter/01/04120219.xhp\">Assigna els estils</link>"
#. L8t95
#: 04120219.xhp
@@ -13112,86 +13112,86 @@ msgctxt ""
msgid "Entries (indexes/tables)"
msgstr "Entrades (índexs/taules)"
-#. upy78
+#. ELtCx
#: 04120220.xhp
msgctxt ""
"04120220.xhp\n"
"hd_id3149349\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120220.xhp\" name=\"Entries (indexes/tables)\">Entries (indexes/tables)</link>"
-msgstr "<link href=\"text/swriter/01/04120220.xhp\" name=\"Entrades (índexs/taules)\">Entrades (índexs/taules)</link>"
+msgid "<link href=\"text/swriter/01/04120220.xhp\">Entries (indexes/tables)</link>"
+msgstr "<link href=\"text/swriter/01/04120220.xhp\">Entrades (índexs/taules)</link>"
-#. vJLF3
+#. eHFYS
#: 04120220.xhp
msgctxt ""
"04120220.xhp\n"
"par_id3154504\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Specify the format of the index or table entries. The appearance of this tab changes to reflect the type of index that you selected on the <link href=\"text/swriter/01/04120210.xhp\" name=\"Type\">Type</link> tab.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Specify the format of the index or table entries. The appearance of this tab changes to reflect the type of index that you selected on the <link href=\"text/swriter/01/04120210.xhp\">Type</link> tab.</ahelp>"
msgstr ""
-#. WWchk
+#. kArHb
#: 04120220.xhp
msgctxt ""
"04120220.xhp\n"
"hd_id3148770\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120221.xhp\" name=\"Table of Contents\">Table of Contents</link>"
-msgstr "<link href=\"text/swriter/01/04120221.xhp\" name=\"Taula de continguts\">Taula de continguts</link>"
+msgid "<link href=\"text/swriter/01/04120221.xhp\">Table of Contents</link>"
+msgstr "<link href=\"text/swriter/01/04120221.xhp\">Taula de continguts</link>"
-#. 22TEE
+#. 8sKtD
#: 04120220.xhp
msgctxt ""
"04120220.xhp\n"
"hd_id3147564\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120222.xhp\" name=\"Alphabetical Index\">Alphabetical Index</link>"
-msgstr "<link href=\"text/swriter/01/04120222.xhp\" name=\"Índex alfabètic\">Índex alfabètic</link>"
+msgid "<link href=\"text/swriter/01/04120222.xhp\">Alphabetical Index</link>"
+msgstr "<link href=\"text/swriter/01/04120222.xhp\">Índex alfabètic</link>"
-#. DihfJ
+#. vT6oM
#: 04120220.xhp
msgctxt ""
"04120220.xhp\n"
"hd_id3151188\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120223.xhp\" name=\"Illustration Index\">Illustration Index</link>"
-msgstr "<link href=\"text/swriter/01/04120223.xhp\" name=\"Índex d'il·lustracions\">Índex d'il·lustracions</link>"
+msgid "<link href=\"text/swriter/01/04120223.xhp\">Illustration Index</link>"
+msgstr "<link href=\"text/swriter/01/04120223.xhp\">Índex d'il·lustracions</link>"
-#. nqjEM
+#. aE7kM
#: 04120220.xhp
msgctxt ""
"04120220.xhp\n"
"hd_id3150761\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120224.xhp\" name=\"Index of Tables\">Index of Tables</link>"
-msgstr "<link href=\"text/swriter/01/04120224.xhp\" name=\"Índex de taules\">Índex de taules</link>"
+msgid "<link href=\"text/swriter/01/04120224.xhp\">Index of Tables</link>"
+msgstr "<link href=\"text/swriter/01/04120224.xhp\">Índex de taules</link>"
-#. r7NAP
+#. Bdpoa
#: 04120220.xhp
msgctxt ""
"04120220.xhp\n"
"hd_id3153517\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120225.xhp\" name=\"User-Defined\">User-Defined</link>"
-msgstr "<link href=\"text/swriter/01/04120225.xhp\" name=\"Definit per l'usuari\">Definit per l'usuari</link>"
+msgid "<link href=\"text/swriter/01/04120225.xhp\">User-Defined</link>"
+msgstr "<link href=\"text/swriter/01/04120225.xhp\">Definit per l'usuari</link>"
-#. P3txH
+#. fEGza
#: 04120220.xhp
msgctxt ""
"04120220.xhp\n"
"hd_id3151175\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120226.xhp\" name=\"Table of Objects\">Table of Objects</link>"
-msgstr "<link href=\"text/swriter/01/04120226.xhp\" name=\"Taula d'objectes\">Taula d'objectes</link>"
+msgid "<link href=\"text/swriter/01/04120226.xhp\">Table of Objects</link>"
+msgstr "<link href=\"text/swriter/01/04120226.xhp\">Taula d'objectes</link>"
-#. 96gQW
+#. JEKTK
#: 04120220.xhp
msgctxt ""
"04120220.xhp\n"
"hd_id3147506\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120227.xhp\" name=\"Bibliography\">Bibliography</link>"
-msgstr "<link href=\"text/swriter/01/04120227.xhp\" name=\"Bibliografia\">Bibliografia</link>"
+msgid "<link href=\"text/swriter/01/04120227.xhp\">Bibliography</link>"
+msgstr "<link href=\"text/swriter/01/04120227.xhp\">Bibliografia</link>"
#. Vtqnt
#: 04120221.xhp
@@ -13202,14 +13202,14 @@ msgctxt ""
msgid "Entries (table of contents)"
msgstr "Entrades (taula de continguts)"
-#. EdH8K
+#. Ffeqj
#: 04120221.xhp
msgctxt ""
"04120221.xhp\n"
"hd_id3145827\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120221.xhp\" name=\"Entries (table of contents)\">Entries (table of contents)</link>"
-msgstr "<link href=\"text/swriter/01/04120221.xhp\" name=\"Entrades (taula de continguts)\">Entrades (taula de continguts)</link>"
+msgid "<link href=\"text/swriter/01/04120221.xhp\">Entries (table of contents)</link>"
+msgstr "<link href=\"text/swriter/01/04120221.xhp\">Entrades (taula de continguts)</link>"
#. Kma4q
#: 04120221.xhp
@@ -13535,14 +13535,14 @@ msgctxt ""
msgid "Entries (alphabetical index)"
msgstr "Entrades (índex alfabètic)"
-#. UbzcL
+#. RJSzc
#: 04120222.xhp
msgctxt ""
"04120222.xhp\n"
"hd_id3147506\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120222.xhp\" name=\"Entries (alphabetical index)\">Entries (alphabetical index)</link>"
-msgstr "<link href=\"text/swriter/01/04120222.xhp\" name=\"Entrades (índex alfabètic)\">Entrades (índex alfabètic)</link>"
+msgid "<link href=\"text/swriter/01/04120222.xhp\">Entries (alphabetical index)</link>"
+msgstr "<link href=\"text/swriter/01/04120222.xhp\">Entrades (índex alfabètic)</link>"
#. EY5TA
#: 04120222.xhp
@@ -13625,14 +13625,14 @@ msgctxt ""
msgid "Character Style for main entries"
msgstr "Estil de caràcter per a les entrades principals"
-#. GemcQ
+#. ZFEhV
#: 04120222.xhp
msgctxt ""
"04120222.xhp\n"
"par_id3149109\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose <emph>Edit - </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph>Index Entry</emph></link>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Especifiqueu l'estil de formatació per a les entrades principals de l'índex alfabètic. Per convertir una entrada d'índex en una entrada principal, feu clic davant del camp d'índex en el document i, a continuació, trieu <emph>Edita ▸ </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Entrada d'índex\"><emph>Entrada d'índex</emph></link>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose <emph>Edit - </emph><link href=\"text/swriter/01/04120100.xhp\"><emph>Index Entry</emph></link>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Especifiqueu l'estil de formatació per a les entrades principals de l'índex alfabètic. Per convertir una entrada d'índex en una entrada principal, feu clic davant del camp d'índex en el document i, a continuació, trieu <emph>Edita ▸ </emph><link href=\"text/swriter/01/04120100.xhp\"><emph>Entrada d'índex</emph></link>.</ahelp>"
#. enRHa
#: 04120222.xhp
@@ -13679,14 +13679,14 @@ msgctxt ""
msgid "Entries (illustration index)"
msgstr "Entrades (índex d'il·lustracions)"
-#. HCmoN
+#. dQSv2
#: 04120223.xhp
msgctxt ""
"04120223.xhp\n"
"hd_id3145244\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120223.xhp\" name=\"Entries (illustration index)\">Entries (illustration index)</link>"
-msgstr "<link href=\"text/swriter/01/04120223.xhp\" name=\"Entrades (índex d'il·lustracions)\">Entrades (índex d'il·lustracions)</link>"
+msgid "<link href=\"text/swriter/01/04120223.xhp\">Entries (illustration index)</link>"
+msgstr "<link href=\"text/swriter/01/04120223.xhp\">Entrades (índex d'il·lustracions)</link>"
#. NGKBq
#: 04120223.xhp
@@ -13715,14 +13715,14 @@ msgctxt ""
msgid "Entries (index of tables)"
msgstr "Entrades (índex de taules)"
-#. CWX8C
+#. JsKnb
#: 04120224.xhp
msgctxt ""
"04120224.xhp\n"
"hd_id3147406\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120224.xhp\" name=\"Entries (index of tables)\">Entries (index of tables)</link>"
-msgstr "<link href=\"text/swriter/01/04120224.xhp\" name=\"Entrades (índex de taules)\">Entrades (índex de taules)</link>"
+msgid "<link href=\"text/swriter/01/04120224.xhp\">Entries (index of tables)</link>"
+msgstr "<link href=\"text/swriter/01/04120224.xhp\">Entrades (índex de taules)</link>"
#. oBXcG
#: 04120224.xhp
@@ -13751,14 +13751,14 @@ msgctxt ""
msgid "Entries (user-defined index)"
msgstr "Entrades (índex definit per l'usuari)"
-#. 7eRw5
+#. Xd5Yr
#: 04120225.xhp
msgctxt ""
"04120225.xhp\n"
"hd_id3147406\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120225.xhp\" name=\"Entries (user-defined index)\">Entries (user-defined index)</link>"
-msgstr "<link href=\"text/swriter/01/04120225.xhp\" name=\"Entrades (índex definit per l'usuari)\">Entrades (índex definit per l'usuari)</link>"
+msgid "<link href=\"text/swriter/01/04120225.xhp\">Entries (user-defined index)</link>"
+msgstr "<link href=\"text/swriter/01/04120225.xhp\">Entrades (índex definit per l'usuari)</link>"
#. 5GgqG
#: 04120225.xhp
@@ -13787,14 +13787,14 @@ msgctxt ""
msgid "Entries (table of objects)"
msgstr "Entrades (taula d'objectes)"
-#. 3Sic7
+#. FBdZB
#: 04120226.xhp
msgctxt ""
"04120226.xhp\n"
"hd_id3147401\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120226.xhp\" name=\"Entries (table of objects)\">Entries (table of objects)</link>"
-msgstr "<link href=\"text/swriter/01/04120226.xhp\" name=\"Entrades (taula d'objectes)\">Entrades (taula d'objectes)</link>"
+msgid "<link href=\"text/swriter/01/04120226.xhp\">Entries (table of objects)</link>"
+msgstr "<link href=\"text/swriter/01/04120226.xhp\">Entrades (taula d'objectes)</link>"
#. mBYSG
#: 04120226.xhp
@@ -13823,14 +13823,14 @@ msgctxt ""
msgid "Entries (bibliography)"
msgstr "Entrades (bibliografia)"
-#. EkWQ5
+#. EwdKb
#: 04120227.xhp
msgctxt ""
"04120227.xhp\n"
"hd_id3151388\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120227.xhp\" name=\"Entries (bibliography)\">Entries (bibliography)</link>"
-msgstr "<link href=\"text/swriter/01/04120227.xhp\" name=\"Entrades (bibliografia)\">Entrades (bibliografia)</link>"
+msgid "<link href=\"text/swriter/01/04120227.xhp\">Entries (bibliography)</link>"
+msgstr "<link href=\"text/swriter/01/04120227.xhp\">Entrades (bibliografia)</link>"
#. UwEvB
#: 04120227.xhp
@@ -13868,14 +13868,14 @@ msgctxt ""
msgid "Type"
msgstr "Tipus"
-#. Q6CBF
+#. c5g3H
#: 04120227.xhp
msgctxt ""
"04120227.xhp\n"
"par_id3147175\n"
"help.text"
-msgid "Lists the available bibliography entries. <ahelp hid=\".\">To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click <emph>Insert</emph>.</ahelp> Use the <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link> dialog to add new entries."
-msgstr "Llista les entrades bibliogràfiques disponibles. <ahelp hid=\".\">Per afegir una entrada a la línia Estructura, feu clic a l'entrada, feu clic en un quadre buit a la línia Estructura i, a continuació, feu clic a <emph>Insereix</emph>.</ahelp> Utilitzeu el diàleg <link href=\"text/swriter/01/04120229.xhp\" name=\"Defineix entrades bibliogràfiques\">Defineix entrades bibliogràfiques</link> per afegir entrades noves."
+msgid "Lists the available bibliography entries. <ahelp hid=\".\">To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click <emph>Insert</emph>.</ahelp> Use the <link href=\"text/swriter/01/04120229.xhp\">Define Bibliography Entry</link> dialog to add new entries."
+msgstr "Llista les entrades bibliogràfiques disponibles. <ahelp hid=\".\">Per afegir una entrada a la línia Estructura, feu clic a l'entrada, feu clic en un quadre buit a la línia Estructura i, a continuació, feu clic a <emph>Insereix</emph>.</ahelp> Utilitzeu el diàleg <link href=\"text/swriter/01/04120229.xhp\">Defineix entrades bibliogràfiques</link> per afegir entrades noves."
#. oZZ9e
#: 04120227.xhp
@@ -14039,14 +14039,14 @@ msgctxt ""
msgid "Define Bibliography Entry"
msgstr "Defineix l'entrada bibliogràfica"
-#. jLPsB
+#. 9KEET
#: 04120229.xhp
msgctxt ""
"04120229.xhp\n"
"hd_id3147176\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link>"
-msgstr "<link href=\"text/swriter/01/04120229.xhp\" name=\"Defineix l'entrada bibliogràfica\">Defineix l'entrada bibliogràfica</link>"
+msgid "<link href=\"text/swriter/01/04120229.xhp\">Define Bibliography Entry</link>"
+msgstr "<link href=\"text/swriter/01/04120229.xhp\">Defineix l'entrada bibliogràfica</link>"
#. UnvVw
#: 04120229.xhp
@@ -14120,14 +14120,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the source for the bibliography entry.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccioneu la font de l'entrada bibliogràfica.</ahelp>"
-#. zYDN9
+#. 8FNQv
#: 04120229.xhp
msgctxt ""
"04120229.xhp\n"
"par_id3147091\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120227.xhp\" name=\"Formatting bibliography entries\">Formatting bibliography entries</link>"
-msgstr "<link href=\"text/swriter/01/04120227.xhp\" name=\"Formatació de les entrades bibliogràfiques\">Formatació de les entrades bibliogràfiques</link>"
+msgid "<link href=\"text/swriter/01/04120227.xhp\">Formatting bibliography entries</link>"
+msgstr "<link href=\"text/swriter/01/04120227.xhp\">Formatació de les entrades bibliogràfiques</link>"
#. akh2s
#: 04120250.xhp
@@ -14651,14 +14651,14 @@ msgctxt ""
msgid "New"
msgstr "Nou"
-#. 2GdDf
+#. uAbVs
#: 04120300.xhp
msgctxt ""
"04120300.xhp\n"
"par_id3147579\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/bibliographyentry/new\">Opens the <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link> dialog, where you can create a new bibliography record. This record is only stored in the document. To add a record to the bibliography database, choose <emph>Tools - Bibliography Database</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/bibliographyentry/new\">Obri el diàleg <link href=\"text/swriter/01/04120229.xhp\" name=\"Defineix l'entrada bibliogràfica\">Defineix l'entrada bibliogràfica</link>, on podeu crear un registre bibliogràfic nou. Este registre només s'emmagatzema en el document. Per afegir un registre a la base de dades bibliogràfica, trieu <emph>Eines - Base de dades bibliogràfica</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/bibliographyentry/new\">Opens the <link href=\"text/swriter/01/04120229.xhp\">Define Bibliography Entry</link> dialog, where you can create a new bibliography record. This record is only stored in the document. To add a record to the bibliography database, choose <emph>Tools - Bibliography Database</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/bibliographyentry/new\">Obri el diàleg <link href=\"text/swriter/01/04120229.xhp\">Defineix l'entrada bibliogràfica</link>, on podeu crear un registre bibliogràfic nou. Este registre només s'emmagatzema en el document. Per afegir un registre a la base de dades bibliogràfica, trieu <emph>Eines - Base de dades bibliogràfica</emph>.</ahelp>"
#. uC9hu
#: 04120300.xhp
@@ -14669,23 +14669,23 @@ msgctxt ""
msgid "Edit"
msgstr "Edita"
-#. t2twE
+#. nmpbn
#: 04120300.xhp
msgctxt ""
"04120300.xhp\n"
"par_id3157900\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/bibliographyentry/edit\">Opens the <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link> dialog where you can edit the selected bibliography record.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/bibliographyentry/edit\">Obri el diàleg <link href=\"text/swriter/01/04120229.xhp\" name=\"Defineix l'entrada bibliogràfica\">Defineix l'entrada bibliogràfica</link>, on podeu editar el registre bibliogràfic seleccionat.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/bibliographyentry/edit\">Opens the <link href=\"text/swriter/01/04120229.xhp\">Define Bibliography Entry</link> dialog where you can edit the selected bibliography record.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/bibliographyentry/edit\">Obri el diàleg <link href=\"text/swriter/01/04120229.xhp\">Defineix l'entrada bibliogràfica</link>, on podeu editar el registre bibliogràfic seleccionat.</ahelp>"
-#. VTiSR
+#. KzfjB
#: 04120300.xhp
msgctxt ""
"04120300.xhp\n"
"par_id3149172\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Tips for working with bibliography entries\">Tips for working with bibliography entries</link>"
-msgstr "<link href=\"text/swriter/guide/indices_literature.xhp\" name=\"Consells per treballar amb entrades bibliogràfiques\">Consells per treballar amb entrades bibliogràfiques</link>"
+msgid "<link href=\"text/swriter/guide/indices_literature.xhp\">Tips for working with bibliography entries</link>"
+msgstr "<link href=\"text/swriter/guide/indices_literature.xhp\">Consells per treballar amb entrades bibliogràfiques</link>"
#. GPs88
#: 04130000.xhp
@@ -14714,14 +14714,14 @@ msgctxt ""
msgid "<variable id=\"rahm\"><ahelp hid=\".uno:InsertFrame\">Inserts a frame that you can use to create a layout of one or more columns of text and objects.</ahelp></variable>"
msgstr "<variable id=\"rahm\"><ahelp hid=\".uno:InsertFrame\">Insereix un marc que es pot utilitzar per crear un format d'una o més columnes de text i objectes.</ahelp></variable>"
-#. jHCyA
+#. VcCe8
#: 04130000.xhp
msgctxt ""
"04130000.xhp\n"
"par_id3153678\n"
"help.text"
-msgid "To edit a frame, click the border to select it, and then choose <emph>Format - Frame and Object - Properties</emph>. You can also resize or move a selected frame using special <link href=\"text/swriter/01/04130100.xhp\" name=\"shortcut keys\">shortcut keys</link>."
-msgstr "Per a editar un marc, feu clic a la vora per a seleccionar-lo i, a continuació, trieu <emph>Format ▸ Marc i objecte ▸ Propietats</emph>. També podeu moure un marc o canviar-ne la mida amb les <link href=\"text/swriter/01/04130100.xhp\" name=\"tecles de drecera\">tecles de drecera</link> especials."
+msgid "To edit a frame, click the border to select it, and then choose <emph>Format - Frame and Object - Properties</emph>. You can also resize or move a selected frame using special <link href=\"text/swriter/01/04130100.xhp\">shortcut keys</link>."
+msgstr "Per a editar un marc, feu clic a la vora per a seleccionar-lo i, a continuació, trieu <emph>Format ▸ Marc i objecte ▸ Propietats</emph>. També podeu moure un marc o canviar-ne la mida amb les <link href=\"text/swriter/01/04130100.xhp\">tecles de drecera</link> especials."
#. vEHph
#: 04130000.xhp
@@ -14831,14 +14831,14 @@ msgctxt ""
msgid "To resize a selected frame or object, first press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode>. Now one of the handles blinks to show that it is selected. To select another handle, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> again. Press an arrow key to resize the object by one grid unit. To resize by one pixel, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then press an arrow key."
msgstr ""
-#. 7mm46
+#. xjkNq
#: 04130100.xhp
msgctxt ""
"04130100.xhp\n"
"par_id3149294\n"
"help.text"
-msgid "The increment by which you move an object with the keyboard is determined by the document grid. To change the properties of the document grid, choose <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/01050100.xhp\" name=\"Text document - Grid\"><emph>%PRODUCTNAME Writer - Grid</emph></link>."
-msgstr "L'increment pel qual moveu un objecte amb el teclat es determina a la graella del document. Per a canviar les propietats de la graella del document, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01050100.xhp\" name=\"Document de text ▸ Graella\"><emph>%PRODUCTNAME Writer ▸ Graella</emph></link>."
+msgid "The increment by which you move an object with the keyboard is determined by the document grid. To change the properties of the document grid, choose <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/01050100.xhp\"><emph>%PRODUCTNAME Writer - Grid</emph></link>."
+msgstr "L'increment pel qual moveu un objecte amb el teclat es determina a la graella del document. Per a canviar les propietats de la graella del document, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01050100.xhp\"><emph>%PRODUCTNAME Writer ▸ Graella</emph></link>."
#. ZdisA
#: 04150000.xhp
@@ -15083,23 +15083,23 @@ msgctxt ""
msgid "On the Insert toolbar, click the <emph>Table</emph> icon to open the <emph>Insert Table</emph> dialog, where you can insert a table in the current document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
msgstr "A la barra Insereix, feu clic a la icona <emph>Taula</emph> per obrir el diàleg <emph>Insereix una taula</emph>, que vos permet inserir una taula en el document actual. També podeu fer clic a la fletxa, arrossegar per seleccionar el nombre de files i columnes que voleu incloure en la taula i, a continuació, fer clic a l'última cel·la."
-#. TDqSF
+#. CLka9
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"par_id3155912\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05090300.xhp\" name=\"Table - Properties - Text Flow\">Table - Properties - Text Flow</link>"
-msgstr "<link href=\"text/swriter/01/05090300.xhp\" name=\"Taula ▸ Propietats ▸ Flux del text\">Taula ▸ Propietats ▸ Flux del text</link>"
+msgid "<link href=\"text/swriter/01/05090300.xhp\">Table - Properties - Text Flow</link>"
+msgstr "<link href=\"text/swriter/01/05090300.xhp\">Taula ▸ Propietats ▸ Flux del text</link>"
-#. gceKq
+#. xUCvt
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"par_id3150688\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040500.xhp\" name=\"Writer - Table\">%PRODUCTNAME Writer - Table</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040500.xhp\" name=\"Writer - Taula\">%PRODUCTNAME Writer - Taula</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040500.xhp\">%PRODUCTNAME Writer - Table</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferències</caseinline><defaultinline>Eines - Opcions</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040500.xhp\">%PRODUCTNAME Writer - Taula</link>"
#. zB6Vh
#: 04180400.xhp
@@ -15119,14 +15119,14 @@ msgctxt ""
msgid "<bookmark_value>databases; exchanging</bookmark_value> <bookmark_value>address books; exchanging</bookmark_value> <bookmark_value>exchanging databases</bookmark_value> <bookmark_value>replacing;databases</bookmark_value>"
msgstr "<bookmark_value>bases de dades; intercanvi</bookmark_value> <bookmark_value>llibretes d'adreces; intercanvi</bookmark_value> <bookmark_value>intercanvi de bases de dades</bookmark_value> <bookmark_value>reemplaçament;bases de dades</bookmark_value>"
-#. CodG8
+#. 4Y79x
#: 04180400.xhp
msgctxt ""
"04180400.xhp\n"
"hd_id3145799\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04180400.xhp\" name=\"Exchange Database\">Exchange Database</link>"
-msgstr "<link href=\"text/swriter/01/04180400.xhp\" name=\"Intercanvia la base de dades\">Intercanvia la base de dades</link>"
+msgid "<link href=\"text/swriter/01/04180400.xhp\">Exchange Database</link>"
+msgstr "<link href=\"text/swriter/01/04180400.xhp\">Intercanvia la base de dades</link>"
#. Dn8Gu
#: 04180400.xhp
@@ -15362,14 +15362,14 @@ msgctxt ""
msgid "<variable id=\"scripttext\"><ahelp hid=\".uno:InsertScript\">Inserts a script at the current cursor position in an HTML or text document.</ahelp></variable>"
msgstr "<variable id=\"scripttext\"><ahelp hid=\".uno:InsertScript\">Insereix un script a la posició actual del cursor en un document HTML o de text.</ahelp></variable>"
-#. catan
+#. SAdJG
#: 04200000.xhp
msgctxt ""
"04200000.xhp\n"
"par_id3149880\n"
"help.text"
-msgid "An inserted script is indicated by a small green rectangle. If you do not see the rectangle, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - </emph><link href=\"text/shared/optionen/01040200.xhp\" name=\"View\"><emph>View</emph></link>, and select the <emph>Comments</emph> check box. To edit a script, double-click the green rectangle."
-msgstr "Un script inserit s'identifica amb un rectangle verd petit. Si no veieu el rectangle, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME Writer/Web ▸ </emph><link href=\"text/shared/optionen/01040200.xhp\" name=\"Visualització\"><emph>Visualització</emph></link> i activeu la casella de selecció <emph>Comentaris</emph>. Per a editar un script feu doble clic en el rectangle verd."
+msgid "An inserted script is indicated by a small green rectangle. If you do not see the rectangle, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - </emph><link href=\"text/shared/optionen/01040200.xhp\"><emph>View</emph></link>, and select the <emph>Comments</emph> check box. To edit a script, double-click the green rectangle."
+msgstr "Un script inserit s'identifica amb un rectangle verd petit. Si no veieu el rectangle, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME Writer/Web ▸ </emph><link href=\"text/shared/optionen/01040200.xhp\"><emph>Visualització</emph></link> i activeu la casella de selecció <emph>Comentaris</emph>. Per a editar un script feu doble clic en el rectangle verd."
#. pB6kM
#: 04200000.xhp
@@ -15515,14 +15515,14 @@ msgctxt ""
msgid "Header"
msgstr "Capçalera"
-#. VaZRe
+#. fPvp8
#: 04220000.xhp
msgctxt ""
"04220000.xhp\n"
"hd_id3146320\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04220000.xhp\" name=\"Header\">Header</link>"
-msgstr "<link href=\"text/swriter/01/04220000.xhp\" name=\"Capçalera\">Capçalera</link>"
+msgid "<link href=\"text/swriter/01/04220000.xhp\">Header</link>"
+msgstr "<link href=\"text/swriter/01/04220000.xhp\">Capçalera</link>"
#. ZBFbd
#: 04220000.xhp
@@ -15569,13 +15569,13 @@ msgctxt ""
msgid "To add or remove headers from all of the page styles that are in use in the document, choose <emph>Insert - Header and Footer - Header - All</emph>."
msgstr "Per afegir o eliminar capçaleres de tots els estils de pàgina que estan en ús en el document, trieu <emph>Insereix - Capçalera - Totes</emph>."
-#. QneX9
+#. FeQcs
#: 04220000.xhp
msgctxt ""
"04220000.xhp\n"
"par_id3156410\n"
"help.text"
-msgid "To format a header, choose <link href=\"text/shared/01/05040300.xhp\" name=\"Format - Page Style - Header\"><emph>Format - Page Style - Header</emph></link>."
+msgid "To format a header, choose <link href=\"text/shared/01/05040300.xhp\"><emph>Format - Page Style - Header</emph></link>."
msgstr ""
#. jjex2
@@ -15587,14 +15587,14 @@ msgctxt ""
msgid "Footer"
msgstr "Peu de pàgina"
-#. j8BMm
+#. zmMHW
#: 04230000.xhp
msgctxt ""
"04230000.xhp\n"
"hd_id3147403\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04230000.xhp\" name=\"Footer\">Footer</link>"
-msgstr "<link href=\"text/swriter/01/04230000.xhp\" name=\"Peu de pàgina\">Peu de pàgina</link>"
+msgid "<link href=\"text/swriter/01/04230000.xhp\">Footer</link>"
+msgstr "<link href=\"text/swriter/01/04230000.xhp\">Peu de pàgina</link>"
#. XjP6E
#: 04230000.xhp
@@ -15641,13 +15641,13 @@ msgctxt ""
msgid "To add or remove footers from all of the page styles that are in use in the document, choose <emph>Insert - Header and Footer - Footer - All</emph>."
msgstr "Per afegir o eliminar peus de pàgina de tots els estils de pàgina que s'estan utilitzant en el document, trieu <emph>Insereix - Peu de pàgina - Tots</emph>."
-#. 8aUPu
+#. C4tR7
#: 04230000.xhp
msgctxt ""
"04230000.xhp\n"
"par_id3151187\n"
"help.text"
-msgid "To format a footer, choose <link href=\"text/shared/01/05040300.xhp\" name=\"Format - Page Style - Footer\"><emph>Format - Page Style - Footer</emph></link>."
+msgid "To format a footer, choose <link href=\"text/shared/01/05040300.xhp\"><emph>Format - Page Style - Footer</emph></link>."
msgstr ""
#. FWTLB
@@ -15659,13 +15659,13 @@ msgctxt ""
msgid "Insert Fields (submenu)"
msgstr ""
-#. wo9Su
+#. w3ZFk
#: 04990000.xhp
msgctxt ""
"04990000.xhp\n"
"hd_id3147405\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04990000.xhp\" name=\"Fields\">Field</link>"
+msgid "<link href=\"text/swriter/01/04990000.xhp\">Field</link>"
msgstr ""
#. qVhAD
@@ -15677,14 +15677,14 @@ msgctxt ""
msgid "The submenu lists the most common field types that can be inserted into a document at the current cursor position. To view all of the available fields, choose <emph>More Fields</emph>."
msgstr ""
-#. aVMdE
+#. 2y8Ge
#: 04990000.xhp
msgctxt ""
"04990000.xhp\n"
"hd_id3147571\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Other\">More Fields</link>"
-msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Altres\">Altres</link>"
+msgid "<link href=\"text/swriter/01/04090000.xhp\">More Fields</link>"
+msgstr "<link href=\"text/swriter/01/04090000.xhp\">Altres</link>"
#. gApjk
#: 05030200.xhp
@@ -15704,14 +15704,14 @@ msgctxt ""
msgid "<bookmark_value>text flow;at breaks</bookmark_value><bookmark_value>paragraphs;keeping together at breaks</bookmark_value><bookmark_value>protecting;text flow</bookmark_value><bookmark_value>widows</bookmark_value><bookmark_value>orphans</bookmark_value><bookmark_value>block protect, see also widows or orphans</bookmark_value>"
msgstr "<bookmark_value>flux de text;en els salts</bookmark_value><bookmark_value>paràgrafs;mantindre units en els salts</bookmark_value><bookmark_value>protegir;flux de text</bookmark_value><bookmark_value>vídues</bookmark_value><bookmark_value>òrfenes</bookmark_value><bookmark_value>protegir el bloc, vegeu també vídues i òrfenes</bookmark_value>"
-#. a6Fwg
+#. Cbn7A
#: 05030200.xhp
msgctxt ""
"05030200.xhp\n"
"hd_id3083447\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030200.xhp\" name=\"Text Flow\">Text Flow</link>"
-msgstr "<link href=\"text/swriter/01/05030200.xhp\" name=\"Flux de text\">Flux de text</link>"
+msgid "<link href=\"text/swriter/01/05030200.xhp\">Text Flow</link>"
+msgstr "<link href=\"text/swriter/01/05030200.xhp\">Flux de text</link>"
#. xHT4h
#: 05030200.xhp
@@ -15731,14 +15731,14 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Partició de mots"
-#. 6C5wi
+#. GTZB7
#: 05030200.xhp
msgctxt ""
"05030200.xhp\n"
"par_id3150564\n"
"help.text"
-msgid "Specify the <link href=\"text/swriter/guide/using_hyphen.xhp\" name=\"hyphenation\">hyphenation</link> options for text documents."
-msgstr "Especifiqueu les opcions de <link href=\"text/swriter/guide/using_hyphen.xhp\" name=\"partició de mots\">partició de mots</link> per als documents de text."
+msgid "Specify the <link href=\"text/swriter/guide/using_hyphen.xhp\">hyphenation</link> options for text documents."
+msgstr "Especifiqueu les opcions de <link href=\"text/swriter/guide/using_hyphen.xhp\">partició de mots</link> per als documents de text."
#. s5vqA
#: 05030200.xhp
@@ -15893,14 +15893,14 @@ msgctxt ""
msgid "Breaks"
msgstr "Salts"
-#. jzGBG
+#. iAADz
#: 05030200.xhp
msgctxt ""
"05030200.xhp\n"
"par_id3154470\n"
"help.text"
-msgid "Specify the page or column <link href=\"text/swriter/guide/page_break.xhp\" name=\"break\">break</link> options."
-msgstr "Especifiqueu les opcions de <link href=\"text/swriter/guide/page_break.xhp\" name=\"Salt\">Salt</link> de pàgina o de columna."
+msgid "Specify the page or column <link href=\"text/swriter/guide/page_break.xhp\">break</link> options."
+msgstr "Especifiqueu les opcions de <link href=\"text/swriter/guide/page_break.xhp\">Salt</link> de pàgina o de columna."
#. btgPM
#: 05030200.xhp
@@ -16100,13 +16100,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/textflowpage/spinWidow\">Specifies the minimum number of lines in a paragraph in the first page after the break. Select this check box, and then enter a number in the <emph>Lines </emph>box.</ahelp> If the number of lines at the top of the page is less than the amount specified in the <emph>Lines </emph>box, the position of the break is adjusted."
msgstr "<ahelp hid=\"cui/ui/textflowpage/spinWidow\">Especifica el nombre mínim de línies d'un paràgraf de la primera pàgina posterior al salt. Activeu esta casella de selecció i, a continuació, introduïu un nombre en el quadre <emph>Línies</emph>.</ahelp> Si el nombre de línies del començament de la pàgina és inferior a la quantitat que s'ha especificat en el quadre <emph>Línies</emph>, s'ajustarà la posició del salt."
-#. r5hME
+#. ZBG62
#: 05030200.xhp
msgctxt ""
"05030200.xhp\n"
"par_id3155860\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000005.xhp#widows_and_orphans\" name=\"Orphans\">Orphans</link>."
+msgid "<link href=\"text/shared/00/00000005.xhp#widows_and_orphans\">Orphans</link>."
msgstr ""
#. ZG3Lb
@@ -16127,14 +16127,14 @@ msgctxt ""
msgid "<bookmark_value>first letters as large capital letters</bookmark_value><bookmark_value>capital letters;starting paragraphs</bookmark_value><bookmark_value>drop caps insertion</bookmark_value>"
msgstr "<bookmark_value>primeres lletres com a majúscules grans</bookmark_value><bookmark_value>majúscules;inici dels paràgrafs</bookmark_value><bookmark_value>inserció d'inicials destacades</bookmark_value>"
-#. YwgsK
+#. GCqvF
#: 05030400.xhp
msgctxt ""
"05030400.xhp\n"
"hd_id3150252\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030400.xhp\" name=\"Drop Caps\">Drop Caps</link>"
-msgstr "<link href=\"text/swriter/01/05030400.xhp\" name=\"Inicials destacades\">Inicials destacades</link>"
+msgid "<link href=\"text/swriter/01/05030400.xhp\">Drop Caps</link>"
+msgstr "<link href=\"text/swriter/01/05030400.xhp\">Inicials destacades</link>"
#. FAZx7
#: 05030400.xhp
@@ -16298,13 +16298,13 @@ msgctxt ""
msgid "Outline & List"
msgstr ""
-#. Nprja
+#. 2vCBq
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3151173\n"
"help.text"
-msgid "<variable id=\"outlinelisth1\"><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & List</link></variable>"
+msgid "<variable id=\"outlinelisth1\"><link href=\"text/swriter/01/05030800.xhp\">Outline & List</link></variable>"
msgstr ""
#. x3BNB
@@ -16325,13 +16325,13 @@ msgctxt ""
msgid "To change the numbering options for paragraphs that use the same paragraph style, choose <menuitem>View - Styles</menuitem>, and then click the <emph>Paragraph Styles</emph> icon. Right-click the style in the list, choose <emph>Modify</emph>, and then click the <emph>Outline & Numbering</emph> tab."
msgstr ""
-#. F7xsK
+#. ufFqK
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3154470\n"
"help.text"
-msgid "To change the numbering options for selected paragraphs, choose <menuitem>Format - </menuitem><link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\"><menuitem>Paragraph</menuitem></link>, and then click the <emph>Outline & Numbering</emph> tab."
+msgid "To change the numbering options for selected paragraphs, choose <menuitem>Format - </menuitem><link href=\"text/shared/01/05030000.xhp\"><menuitem>Paragraph</menuitem></link>, and then click the <emph>Outline & Numbering</emph> tab."
msgstr ""
#. Si9tL
@@ -16379,13 +16379,13 @@ msgctxt ""
msgid "List Style"
msgstr ""
-#. T2yMF
+#. kSZ8s
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">List Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) if you click the <emph>List Styles</emph> icon."
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\">List Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\">Styles</link> window (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) if you click the <emph>List Styles</emph> icon."
msgstr ""
#. MycJD
@@ -16496,14 +16496,14 @@ msgctxt ""
msgid "Line numbering"
msgstr "Numeració de línies"
-#. GvBPK
+#. X4DdD
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3152771\n"
"help.text"
-msgid "Specify the <link href=\"text/swriter/01/06180000.xhp\" name=\"Line numbering\">Line numbering</link> options. To add line numbers to your document, choose <emph>Tools - Line Numbering</emph>."
-msgstr "Especifiqueu les opcions de <link href=\"text/swriter/01/06180000.xhp\" name=\"Numeració de línies\">numeració de línies</link>. Per a afegir nombres de línia al document, trieu <emph>Eines ▸ Numeració de línies</emph>."
+msgid "Specify the <link href=\"text/swriter/01/06180000.xhp\">Line numbering</link> options. To add line numbers to your document, choose <emph>Tools - Line Numbering</emph>."
+msgstr "Especifiqueu les opcions de <link href=\"text/swriter/01/06180000.xhp\">numeració de línies</link>. Per a afegir nombres de línia al document, trieu <emph>Eines ▸ Numeració de línies</emph>."
#. DE6sm
#: 05030800.xhp
@@ -16577,14 +16577,14 @@ msgctxt ""
msgid "Page Style"
msgstr "Estil de pàgina"
-#. AfM8s
+#. aNeEs
#: 05040000.xhp
msgctxt ""
"05040000.xhp\n"
"hd_id3150016\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05040000.xhp\" name=\"Page Style\">Page Style</link>"
-msgstr "<link href=\"text/swriter/01/05040000.xhp\" name=\"Estil de pàgina\">Estil de pàgina</link>"
+msgid "<link href=\"text/swriter/01/05040000.xhp\">Page Style</link>"
+msgstr "<link href=\"text/swriter/01/05040000.xhp\">Estil de pàgina</link>"
#. sJBg6
#: 05040000.xhp
@@ -16604,14 +16604,14 @@ msgctxt ""
msgid "Columns"
msgstr "Columnes"
-#. fmzPw
+#. EZApg
#: 05040500.xhp
msgctxt ""
"05040500.xhp\n"
"hd_id3149875\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columnes\">Columnes</link>"
+msgid "<link href=\"text/swriter/01/05040500.xhp\">Columns</link>"
+msgstr "<link href=\"text/swriter/01/05040500.xhp\">Columnes</link>"
#. JMECN
#: 05040500.xhp
@@ -16721,14 +16721,14 @@ msgctxt ""
msgid "Evenly distribute contents to all columns"
msgstr "Distribueix el contingut uniformement a totes les columnes"
-#. Akcqh
+#. tTRCL
#: 05040500.xhp
msgctxt ""
"05040500.xhp\n"
"par_id3149024\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically.</ahelp> Evenly distributes the text in <link href=\"text/swriter/01/04020000.xhp\" name=\"multi-column sections\">multi-column sections</link>."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Distribueix el text en seccions de múltiples columnes. El text es reparteix entre totes les columnes a la mateixa alçària. L'alçària de la secció s'ajusta automàticament.</ahelp> Distribueix uniformement el text en <link href=\"text/swriter/01/04020000.xhp\" name=\"seccions de múltiples columnes\">seccions de múltiples columnes</link>."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically.</ahelp> Evenly distributes the text in <link href=\"text/swriter/01/04020000.xhp\">multi-column sections</link>."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Distribueix el text en seccions de múltiples columnes. El text es reparteix entre totes les columnes a la mateixa alçària. L'alçària de la secció s'ajusta automàticament.</ahelp> Distribueix uniformement el text en <link href=\"text/swriter/01/04020000.xhp\">seccions de múltiples columnes</link>."
#. 3hGFh
#: 05040500.xhp
@@ -17072,14 +17072,14 @@ msgctxt ""
msgid "Footnote"
msgstr "Nota al peu"
-#. veXbE
+#. izqFS
#: 05040600.xhp
msgctxt ""
"05040600.xhp\n"
"hd_id3154767\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05040600.xhp\" name=\"Footnote\">Footnote</link>"
-msgstr "<link href=\"text/swriter/01/05040600.xhp\" name=\"Nota al peu\">Nota al peu</link>"
+msgid "<link href=\"text/swriter/01/05040600.xhp\">Footnote</link>"
+msgstr "<link href=\"text/swriter/01/05040600.xhp\">Nota al peu</link>"
#. gsgW6
#: 05040600.xhp
@@ -17315,14 +17315,14 @@ msgctxt ""
msgid "Footnotes/Endnotes"
msgstr "Notes al peu/finals"
-#. yrx8p
+#. 3WhwZ
#: 05040700.xhp
msgctxt ""
"05040700.xhp\n"
"hd_id3149028\n"
"help.text"
-msgid "<variable id=\"fussendnotenh1\"><link href=\"text/swriter/01/05040700.xhp\" name=\"Footnotes/Endnotes\">Footnotes/Endnotes</link></variable>"
-msgstr "<variable id=\"fussendnotenh1\"><link href=\"text/swriter/01/05040700.xhp\" name=\"Notes al peu o finals\">Notes al peu o finals</link></variable>"
+msgid "<variable id=\"fussendnotenh1\"><link href=\"text/swriter/01/05040700.xhp\">Footnotes/Endnotes</link></variable>"
+msgstr "<variable id=\"fussendnotenh1\"><link href=\"text/swriter/01/05040700.xhp\">Notes al peu o finals</link></variable>"
#. C5KXQ
#: 05040700.xhp
@@ -17621,14 +17621,14 @@ msgctxt ""
msgid "<bookmark_value>text grid for Asian layout</bookmark_value>"
msgstr "<bookmark_value>graella de text per a la disposició asiàtica</bookmark_value>"
-#. i44xp
+#. mJCeU
#: 05040800.xhp
msgctxt ""
"05040800.xhp\n"
"hd_id3150760\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05040800.xhp\" name=\"Text Grid\">Text Grid</link>"
-msgstr "<link href=\"text/swriter/01/05040800.xhp\" name=\"Graella de text\">Graella de text</link>"
+msgid "<link href=\"text/swriter/01/05040800.xhp\">Text Grid</link>"
+msgstr "<link href=\"text/swriter/01/05040800.xhp\">Graella de text</link>"
#. MtvTq
#: 05040800.xhp
@@ -17801,14 +17801,14 @@ msgctxt ""
msgid "<variable id=\"grafiktext\"><ahelp hid=\".uno:GraphicDialog\">Formats the size, position, and other properties of the selected image.</ahelp></variable>"
msgstr "<variable id=\"grafiktext\"><ahelp hid=\".uno:GraphicDialog\">Formata la mida, la posició i altres propietats de la imatge seleccionada.</ahelp></variable>"
-#. E8Deg
+#. bSohU
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
"par_id3147167\n"
"help.text"
-msgid "You can also change some of the properties of the selected image with <link href=\"text/swriter/01/04130100.xhp\" name=\"shortcut keys\">shortcut keys</link>."
-msgstr "També podeu canviar algunes de les propietats de la imatge seleccionada amb les <link href=\"text/swriter/01/04130100.xhp\" name=\"tecles de drecera\">tecles de drecera</link>."
+msgid "You can also change some of the properties of the selected image with <link href=\"text/swriter/01/04130100.xhp\">shortcut keys</link>."
+msgstr "També podeu canviar algunes de les propietats de la imatge seleccionada amb les <link href=\"text/swriter/01/04130100.xhp\">tecles de drecera</link>."
#. Ah743
#: 05060000.xhp
@@ -17819,14 +17819,14 @@ msgctxt ""
msgid "The <emph>Image</emph> dialog contains the following tab pages:"
msgstr "El diàleg <emph>Imatge</emph> conté les pestanyes següents:"
-#. JuTDA
+#. DCfCw
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
"hd_id3145419\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\">Wrap</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Ajusta\">Ajusta</link>"
+msgid "<link href=\"text/swriter/01/05060200.xhp\">Wrap</link>"
+msgstr "<link href=\"text/swriter/01/05060200.xhp\">Ajusta</link>"
#. 4F99V
#: 05060100.xhp
@@ -17846,13 +17846,13 @@ msgctxt ""
msgid "<bookmark_value>resizing;aspect ratio</bookmark_value> <bookmark_value>aspect ratio;resizing objects</bookmark_value>"
msgstr ""
-#. bvUFp
+#. vnASq
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"hd_id3151389\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060100.xhp\" name=\"Type\">Position and Size</link>"
+msgid "<link href=\"text/swriter/01/05060100.xhp\">Position and Size</link>"
msgstr ""
#. Uoofy
@@ -18332,14 +18332,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Reverses the current horizontal alignment settings on even pages.</ahelp>"
msgstr "<ahelp hid=\".\">Inverteix els paràmetres d'alineació horitzontal actual a les pàgines parelles.</ahelp>"
-#. NWjri
+#. wPmQq
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id3148446\n"
"help.text"
-msgid "You can also use the <link href=\"text/swriter/01/05060300.xhp\" name=\"Image\"><emph>Image</emph></link> flip options to adjust the layout of objects on even and odd pages."
-msgstr "També podeu utilitzar les opcions d'inversió dels <link href=\"text/swriter/01/05060300.xhp\" name=\"Imatge\"><emph>Imatge</emph></link> per ajustar el format dels objectes a les pàgines senars i parelles."
+msgid "You can also use the <link href=\"text/swriter/01/05060300.xhp\"><emph>Image</emph></link> flip options to adjust the layout of objects on even and odd pages."
+msgstr "També podeu utilitzar les opcions d'inversió dels <link href=\"text/swriter/01/05060300.xhp\"><emph>Imatge</emph></link> per ajustar el format dels objectes a les pàgines senars i parelles."
#. Ede32
#: 05060100.xhp
@@ -18602,22 +18602,22 @@ msgctxt ""
msgid "The green rectangle represents the selected object and the red rectangle represents the alignment reference point. If you anchor the object as a character, the reference rectangle changes to a red line."
msgstr "El rectangle verd representa l'objecte seleccionat i el rectangle roig el punt de referència de l'alineació. Si ancoreu l'objecte com a caràcter, el rectangle de referència canvia a una línia vermella."
-#. YFEFm
+#. DL626
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id3146949\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Format - Anchor\"><emph>Format - Anchor</emph></link>"
-msgstr "<link href=\"text/shared/01/05260000.xhp\" name=\"Format - Àncora\"><emph>Format - Àncora</emph></link>"
+msgid "<link href=\"text/shared/01/05260000.xhp\"><emph>Format - Anchor</emph></link>"
+msgstr "<link href=\"text/shared/01/05260000.xhp\"><emph>Format - Àncora</emph></link>"
-#. A2FWS
+#. FjMFX
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id3153231\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Format - Align\"><emph>Format - Align Text</emph></link>"
+msgid "<link href=\"text/shared/01/05070000.xhp\"><emph>Format - Align Text</emph></link>"
msgstr ""
#. eVmtB
@@ -18629,14 +18629,14 @@ msgctxt ""
msgid "Wrap"
msgstr "Ajusta"
-#. MEexf
+#. gQ3fn
#: 05060200.xhp
msgctxt ""
"05060200.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\">Wrap</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Ajusta\">Ajusta</link>"
+msgid "<link href=\"text/swriter/01/05060200.xhp\">Wrap</link>"
+msgstr "<link href=\"text/swriter/01/05060200.xhp\">Ajusta</link>"
#. EEaR4
#: 05060200.xhp
@@ -18944,14 +18944,14 @@ msgctxt ""
msgid "Contour"
msgstr "Vora"
-#. PskXp
+#. bkBvC
#: 05060200.xhp
msgctxt ""
"05060200.xhp\n"
"par_id3155793\n"
"help.text"
-msgid "<variable id=\"konturtext\"><ahelp hid=\".\">Wraps text around the shape of the object. This option is not available for the <emph>Through</emph> wrap type, or for frames.</ahelp> To change the contour of an object, select the object, and then choose <emph>Format - Wrap - </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edit Contour\"><emph>Edit Contour</emph></link>.</variable>"
-msgstr "<variable id=\"konturtext\"><ahelp hid=\".\">Ajusta el text al voltant de la forma de l'objecte. Aquesta opció no està disponible per al tipus d'ajustament <emph>A través</emph> ni per als marcs.</ahelp> Per a canviar el contorn d'un objecte, seleccioneu l'objecte i, a continuació, trieu <emph>Format ▸ Ajusta ▸ </emph><link href=\"text/swriter/01/05060201.xhp\" name=\"Edita la vora\"><emph>Edita el contorn</emph></link>.</variable>"
+msgid "<variable id=\"konturtext\"><ahelp hid=\".\">Wraps text around the shape of the object. This option is not available for the <emph>Through</emph> wrap type, or for frames.</ahelp> To change the contour of an object, select the object, and then choose <emph>Format - Wrap - </emph><link href=\"text/swriter/01/05060201.xhp\"><emph>Edit Contour</emph></link>.</variable>"
+msgstr "<variable id=\"konturtext\"><ahelp hid=\".\">Ajusta el text al voltant de la forma de l'objecte. Aquesta opció no està disponible per al tipus d'ajustament <emph>A través</emph> ni per als marcs.</ahelp> Per a canviar el contorn d'un objecte, seleccioneu l'objecte i, a continuació, trieu <emph>Format ▸ Ajusta ▸ </emph><link href=\"text/swriter/01/05060201.xhp\"><emph>Edita el contorn</emph></link>.</variable>"
#. R9XAc
#: 05060200.xhp
@@ -19097,14 +19097,14 @@ msgctxt ""
msgid "Contour Editor"
msgstr "Editor de la vora"
-#. nQ3vX
+#. 6FGUy
#: 05060201.xhp
msgctxt ""
"05060201.xhp\n"
"par_id3153677\n"
"help.text"
-msgid "<variable id=\"konturtext\"><ahelp hid=\".uno:ContourDialog\">Changes the contour of the selected object. $[officename] uses the contour when determining the <link href=\"text/swriter/01/05060200.xhp\" name=\"text wrap\">text wrap</link> options for the object.</ahelp></variable>"
-msgstr "<variable id=\"konturtext\"><ahelp hid=\".uno:ContourDialog\">Canvia la vora de l'objecte seleccionat. El $[officename] utilitza la vora quan determina les opcions d'<link href=\"text/swriter/01/05060200.xhp\" name=\"ajustament del text\">ajustament del text</link> per a l'objecte.</ahelp></variable>"
+msgid "<variable id=\"konturtext\"><ahelp hid=\".uno:ContourDialog\">Changes the contour of the selected object. $[officename] uses the contour when determining the <link href=\"text/swriter/01/05060200.xhp\">text wrap</link> options for the object.</ahelp></variable>"
+msgstr "<variable id=\"konturtext\"><ahelp hid=\".uno:ContourDialog\">Canvia la vora de l'objecte seleccionat. El $[officename] utilitza la vora quan determina les opcions d'<link href=\"text/swriter/01/05060200.xhp\">ajustament del text</link> per a l'objecte.</ahelp></variable>"
#. peEFB
#: 05060201.xhp
@@ -19646,14 +19646,14 @@ msgctxt ""
msgid "Image"
msgstr "Imatge"
-#. 6Ny2G
+#. DYnNu
#: 05060300.xhp
msgctxt ""
"05060300.xhp\n"
"hd_id3154473\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060300.xhp\" name=\"Graphics\">Image</link>"
-msgstr "<link href=\"text/swriter/01/05060300.xhp\" name=\"Imatges\">Imatge</link>"
+msgid "<link href=\"text/swriter/01/05060300.xhp\">Image</link>"
+msgstr "<link href=\"text/swriter/01/05060300.xhp\">Imatge</link>"
#. BGBDJ
#: 05060300.xhp
@@ -19817,23 +19817,23 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/picturepage/browse\">Locate the new graphic file that you want to link to, and then click <emph>Open</emph>.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/picturepage/browse\">Localitzeu el fitxer gràfic nou que voleu enllaçar i, a continuació, feu clic a <emph>Obri</emph>.</ahelp>"
-#. ECJK7
+#. GEKSF
#: 05060300.xhp
msgctxt ""
"05060300.xhp\n"
"par_id3155855\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240000.xhp\" name=\"Format - Flip\">Format - Flip</link>"
-msgstr "<link href=\"text/shared/01/05240000.xhp\" name=\"Format - Inverteix\">Format - Inverteix</link>"
+msgid "<link href=\"text/shared/01/05240000.xhp\">Format - Flip</link>"
+msgstr "<link href=\"text/shared/01/05240000.xhp\">Format - Inverteix</link>"
-#. 8CwEv
+#. anxMB
#: 05060300.xhp
msgctxt ""
"05060300.xhp\n"
"par_id3158743\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Edit - Links\">Edit - Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Edita ▸ Enllaços\">Edita ▸ Enllaços</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\">Edit - Links</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\">Edita ▸ Enllaços</link>"
#. MxFCq
#: 05060700.xhp
@@ -19844,14 +19844,14 @@ msgctxt ""
msgid "Macro"
msgstr "Macro"
-#. 3WnuD
+#. DGgAX
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
"hd_id3145241\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Macro\">Macro</link>"
-msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgid "<link href=\"text/swriter/01/05060700.xhp\">Macro</link>"
+msgstr "<link href=\"text/swriter/01/05060700.xhp\">Macro</link>"
#. eNkyg
#: 05060700.xhp
@@ -20195,14 +20195,14 @@ msgctxt ""
msgid "after AutoText is inserted"
msgstr "després d'inserir el text automàtic"
-#. qKAAi
+#. Qa9kH
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
"par_id3159203\n"
"help.text"
-msgid "For events that are linked to controls in forms, see <link href=\"text/shared/02/01170103.xhp\" name=\"Control properties\">Control properties</link> or <link href=\"text/shared/02/01170202.xhp\" name=\"Form properties\">Form properties</link>."
-msgstr "Per als esdeveniments que estan enllaçats a controls als formularis, vegeu <link href=\"text/shared/02/01170103.xhp\" name=\"Propietats de control\">Propietats de control</link> o <link href=\"text/shared/02/01170202.xhp\" name=\"Propietats del formulari\">Propietats del formulari</link>."
+msgid "For events that are linked to controls in forms, see <link href=\"text/shared/02/01170103.xhp\">Control properties</link> or <link href=\"text/shared/02/01170202.xhp\">Form properties</link>."
+msgstr "Per als esdeveniments que estan enllaçats a controls als formularis, vegeu <link href=\"text/shared/02/01170103.xhp\">Propietats de control</link> o <link href=\"text/shared/02/01170202.xhp\">Propietats del formulari</link>."
#. GPQTM
#: 05060700.xhp
@@ -20321,14 +20321,14 @@ msgctxt ""
msgid "<bookmark_value>objects; defining hyperlinks</bookmark_value> <bookmark_value>frames; defining hyperlinks</bookmark_value> <bookmark_value>pictures; defining hyperlinks</bookmark_value> <bookmark_value>hyperlinks; for objects</bookmark_value>"
msgstr "<bookmark_value>objectes; definició d'enllaços</bookmark_value> <bookmark_value>marcs; definició d'enllaços</bookmark_value> <bookmark_value>imatges; definició d'enllaços</bookmark_value> <bookmark_value>enllaços; per a objectes</bookmark_value>"
-#. xQRVz
+#. BaLBS
#: 05060800.xhp
msgctxt ""
"05060800.xhp\n"
"hd_id3150980\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060800.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr "<link href=\"text/swriter/01/05060800.xhp\" name=\"Enllaç\">Enllaç</link>"
+msgid "<link href=\"text/swriter/01/05060800.xhp\">Hyperlink</link>"
+msgstr "<link href=\"text/swriter/01/05060800.xhp\">Enllaç</link>"
#. FoLWb
#: 05060800.xhp
@@ -20384,14 +20384,14 @@ msgctxt ""
msgid "Browse"
msgstr "Navega"
-#. nu36T
+#. qnHtn
#: 05060800.xhp
msgctxt ""
"05060800.xhp\n"
"par_id3149109\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/frmurlpage/search\">Locate the file that you want the hyperlink to open, and then click <emph>Open</emph>.</ahelp> The target file can be on your machine or on an <link href=\"text/shared/00/00000002.xhp#ftp\" name=\"FTP server\">FTP server</link> in the Internet."
-msgstr "<ahelp hid=\"modules/swriter/ui/frmurlpage/search\">Ubiqueu el fitxer que voleu que òbriga l'enllaç i, a continuació, feu clic a <emph>Obri</emph>.</ahelp> El fitxer de destinació pot ser a la vostra màquina o en un <link href=\"text/shared/00/00000002.xhp#ftp\" name=\"servidor FTP\">servidor FTP</link> a Internet."
+msgid "<ahelp hid=\"modules/swriter/ui/frmurlpage/search\">Locate the file that you want the hyperlink to open, and then click <emph>Open</emph>.</ahelp> The target file can be on your machine or on an <link href=\"text/shared/00/00000002.xhp#ftp\">FTP server</link> in the Internet."
+msgstr "<ahelp hid=\"modules/swriter/ui/frmurlpage/search\">Ubiqueu el fitxer que voleu que òbriga l'enllaç i, a continuació, feu clic a <emph>Obri</emph>.</ahelp> El fitxer de destinació pot ser a la vostra màquina o en un <link href=\"text/shared/00/00000002.xhp#ftp\">servidor FTP</link> a Internet."
#. dD4Y3
#: 05060800.xhp
@@ -20420,13 +20420,13 @@ msgctxt ""
msgid "Frame"
msgstr "Marc"
-#. qv3ZU
+#. mSsAN
#: 05060800.xhp
msgctxt ""
"05060800.xhp\n"
"par_id3149042\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/frmurlpage/frame\">Specify the name of the frame where you want to open the targeted file.</ahelp> The predefined target frame names are described <link href=\"text/shared/01/05020400.xhp#targets\" name=\"here\">here</link>."
+msgid "<ahelp hid=\"modules/swriter/ui/frmurlpage/frame\">Specify the name of the frame where you want to open the targeted file.</ahelp> The predefined target frame names are described <link href=\"text/shared/01/05020400.xhp#targets\">here</link>."
msgstr ""
#. B5EXy
@@ -20438,14 +20438,14 @@ msgctxt ""
msgid "Image Map"
msgstr "Mapa d'imatge"
-#. Nx6La
+#. DTh9D
#: 05060800.xhp
msgctxt ""
"05060800.xhp\n"
"par_id3155138\n"
"help.text"
-msgid "Select the type of <link href=\"text/shared/00/00000002.xhp#imagemap\" name=\"ImageMap\">ImageMap</link> that you want to use. The ImageMap settings override the hyperlink settings that you enter on this page."
-msgstr "Seleccioneu el tipus de <link href=\"text/shared/00/00000002.xhp#imagemap\" name=\"Mapa d'imatge\">Mapa d'imatge</link> que voleu utilitzar. Els paràmetres del mapa d'imatge anul·len els paràmetres de l'enllaç que introduïu en esta pàgina."
+msgid "Select the type of <link href=\"text/shared/00/00000002.xhp#imagemap\">ImageMap</link> that you want to use. The ImageMap settings override the hyperlink settings that you enter on this page."
+msgstr "Seleccioneu el tipus de <link href=\"text/shared/00/00000002.xhp#imagemap\">Mapa d'imatge</link> que voleu utilitzar. Els paràmetres del mapa d'imatge anul·len els paràmetres de l'enllaç que introduïu en esta pàgina."
#. 8jwmc
#: 05060800.xhp
@@ -20474,23 +20474,23 @@ msgctxt ""
msgid "Client-side image map"
msgstr "Mapa d'imatge del costat del client"
-#. tGhmQ
+#. xi94A
#: 05060800.xhp
msgctxt ""
"05060800.xhp\n"
"par_id3151036\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/frmurlpage/client\">Uses the <link href=\"text/shared/01/02220000.xhp\" name=\"image map\">image map</link> that you created for the selected object.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/frmurlpage/client\">Utilitzeu el <link href=\"text/shared/01/02220000.xhp\" name=\"mapa d'imatge\">mapa d'imatge</link> que heu creat per a l'objecte seleccionat.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/frmurlpage/client\">Uses the <link href=\"text/shared/01/02220000.xhp\">image map</link> that you created for the selected object.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/frmurlpage/client\">Utilitzeu el <link href=\"text/shared/01/02220000.xhp\">mapa d'imatge</link> que heu creat per a l'objecte seleccionat.</ahelp>"
-#. 9fzLS
+#. gx4Er
#: 05060800.xhp
msgctxt ""
"05060800.xhp\n"
"par_id3151380\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>"
-msgstr "<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>"
+msgid "<link href=\"text/shared/00/00000002.xhp#url\">URL</link>"
+msgstr "<link href=\"text/shared/00/00000002.xhp#url\">URL</link>"
#. nAuBF
#: 05060900.xhp
@@ -20501,14 +20501,14 @@ msgctxt ""
msgid "Options"
msgstr "Opcions"
-#. eHAPR
+#. 3U9F5
#: 05060900.xhp
msgctxt ""
"05060900.xhp\n"
"hd_id3149879\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060900.xhp\" name=\"Options\">Options</link>"
-msgstr "<link href=\"text/swriter/01/05060900.xhp\" name=\"Opcions\">Opcions</link>"
+msgid "<link href=\"text/swriter/01/05060900.xhp\">Options</link>"
+msgstr "<link href=\"text/swriter/01/05060900.xhp\">Opcions</link>"
#. BsZAB
#: 05060900.xhp
@@ -20789,14 +20789,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/frmaddpage/textflow\">Specifies the preferred text flow direction in a frame. To use the default text flow settings for the page, select <emph>Use superordinate object settings </emph>from the list.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/frmaddpage/textflow\">Especifica la direcció preferida del flux del text en un marc. Per utilitzar els paràmetres de flux de text per defecte, seleccioneu <emph>Utilitza els paràmetres d'objecte superordinat</emph> a la llista.</ahelp>"
-#. 6AjYC
+#. gg4LU
#: 05060900.xhp
msgctxt ""
"05060900.xhp\n"
"par_id3150689\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040200.xhp\" name=\"Text direction\">Text direction</link>."
-msgstr "<link href=\"text/shared/01/05040200.xhp\" name=\"Direcció del text\">Direcció del text</link>."
+msgid "<link href=\"text/shared/01/05040200.xhp\">Text direction</link>."
+msgstr "<link href=\"text/shared/01/05040200.xhp\">Direcció del text</link>."
#. SwXuZ
#: 05080000.xhp
@@ -20825,14 +20825,14 @@ msgctxt ""
msgid "<variable id=\"objekttext\"><ahelp hid=\".uno:FrameDialog\">Opens a dialog where you can modify the properties of the selected object, for example, its size and name.</ahelp></variable>"
msgstr ""
-#. F8EcE
+#. aF4FK
#: 05080000.xhp
msgctxt ""
"05080000.xhp\n"
"hd_id3145249\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\">Wrap</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\" name=\"Ajusta\">Ajusta</link>"
+msgid "<link href=\"text/swriter/01/05060200.xhp\">Wrap</link>"
+msgstr "<link href=\"text/swriter/01/05060200.xhp\">Ajusta</link>"
#. BBXef
#: 05090000.xhp
@@ -20843,13 +20843,13 @@ msgctxt ""
msgid "Table Properties"
msgstr ""
-#. aBGbN
+#. RQQrE
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"hd_id3147172\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05090000.xhp\" name=\"Table Properties\">Table Properties</link>"
+msgid "<link href=\"text/swriter/01/05090000.xhp\">Table Properties</link>"
msgstr ""
#. Ji6Gf
@@ -20861,13 +20861,13 @@ msgctxt ""
msgid "<variable id=\"tabletext\"><ahelp hid=\".uno:TableDialog\">Specifies the properties of the selected table, for example, name, alignment, spacing, column width, borders, and background.</ahelp></variable>"
msgstr ""
-#. NsR7m
+#. SWFg8
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"hd_id891656584151327\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background\">Background</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Background</link>"
msgstr ""
#. Mt4yB
@@ -20897,14 +20897,14 @@ msgctxt ""
msgid "<bookmark_value>tables; positioning</bookmark_value><bookmark_value>tables; inserting text before</bookmark_value>"
msgstr "<bookmark_value>taules; col·locació</bookmark_value><bookmark_value>taules; inserció de text abans</bookmark_value>"
-#. pwvEi
+#. LLfpy
#: 05090100.xhp
msgctxt ""
"05090100.xhp\n"
"hd_id3154762\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05090100.xhp\" name=\"Table\">Table</link>"
-msgstr "<link href=\"text/swriter/01/05090100.xhp\" name=\"Taula\">Taula</link>"
+msgid "<link href=\"text/swriter/01/05090100.xhp\">Table</link>"
+msgstr "<link href=\"text/swriter/01/05090100.xhp\">Taula</link>"
#. 3erdK
#: 05090100.xhp
@@ -21095,14 +21095,14 @@ msgctxt ""
msgid "Manual"
msgstr "Manual"
-#. DDrT5
+#. Rq8Kk
#: 05090100.xhp
msgctxt ""
"05090100.xhp\n"
"par_id3155180\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/formattablepage/free\">Horizontally aligns the table based on the values that you enter in the <emph>Left</emph> and <emph>Right</emph> boxes in the<emph> Spacing</emph> area.</ahelp> $[officename] automatically calculates the table width. Select this option if you want to specify the individual <link href=\"text/swriter/01/05090200.xhp\" name=\"column widths\">column widths</link>."
-msgstr "<ahelp hid=\"modules/swriter/ui/formattablepage/free\">Alinea la taula horitzontalment basant-se en els valors que heu introduït en els quadres <emph>Esquerra</emph> i <emph>Dreta</emph> a l'àrea<emph> Espaiat</emph>.</ahelp> El $[officename] calcula automàticament l'amplària de la taula. Seleccioneu esta opció si voleu especificar les <link href=\"text/swriter/01/05090200.xhp\" name=\"amplades de columna\">amplades de columna</link> individuals."
+msgid "<ahelp hid=\"modules/swriter/ui/formattablepage/free\">Horizontally aligns the table based on the values that you enter in the <emph>Left</emph> and <emph>Right</emph> boxes in the<emph> Spacing</emph> area.</ahelp> $[officename] automatically calculates the table width. Select this option if you want to specify the individual <link href=\"text/swriter/01/05090200.xhp\">column widths</link>."
+msgstr "<ahelp hid=\"modules/swriter/ui/formattablepage/free\">Alinea la taula horitzontalment basant-se en els valors que heu introduït en els quadres <emph>Esquerra</emph> i <emph>Dreta</emph> a l'àrea<emph> Espaiat</emph>.</ahelp> El $[officename] calcula automàticament l'amplària de la taula. Seleccioneu esta opció si voleu especificar les <link href=\"text/swriter/01/05090200.xhp\">amplades de columna</link> individuals."
#. McbsX
#: 05090100.xhp
@@ -21203,14 +21203,14 @@ msgctxt ""
msgid "Columns"
msgstr "Columnes"
-#. jcc3u
+#. 2DBF8
#: 05090200.xhp
msgctxt ""
"05090200.xhp\n"
"hd_id3150756\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05090200.xhp\" name=\"Columns\">Columns</link>"
-msgstr "<link href=\"text/swriter/01/05090200.xhp\" name=\"Columnes\">Columnes</link>"
+msgid "<link href=\"text/swriter/01/05090200.xhp\">Columns</link>"
+msgstr "<link href=\"text/swriter/01/05090200.xhp\">Columnes</link>"
#. zhj6t
#: 05090200.xhp
@@ -21365,14 +21365,14 @@ msgctxt ""
msgid "<bookmark_value>tables; editing with the keyboard</bookmark_value>"
msgstr "<bookmark_value>taules; edició amb el teclat</bookmark_value>"
-#. wBBmK
+#. tjt8c
#: 05090201.xhp
msgctxt ""
"05090201.xhp\n"
"hd_id3154506\n"
"help.text"
-msgid "<variable id=\"tabelle_tastatur\"><link href=\"text/swriter/01/05090201.xhp\" name=\"Editing Tables Using the Keyboard\">Editing Tables Using the Keyboard</link></variable>"
-msgstr "<variable id=\"tabelle_tastatur\"><link href=\"text/swriter/01/05090201.xhp\" name=\"Edició de taules mitjançant el teclat\">Edició de taules mitjançant el teclat</link></variable>"
+msgid "<variable id=\"tabelle_tastatur\"><link href=\"text/swriter/01/05090201.xhp\">Editing Tables Using the Keyboard</link></variable>"
+msgstr "<variable id=\"tabelle_tastatur\"><link href=\"text/swriter/01/05090201.xhp\">Edició de taules mitjançant el teclat</link></variable>"
#. KhF5p
#: 05090201.xhp
@@ -21473,23 +21473,23 @@ msgctxt ""
msgid "To delete a row, place the cursor in the row that you want to delete, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Delete, release, and then press the up or the down arrow."
msgstr "Per suprimir una fila, situeu el cursor a la fila que voleu suprimir, manteniu premuda <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline> i premeu Suprimeix, deixeu anar i, a continuació, premeu la fletxa amunt o avall."
-#. EwTd8
+#. Zuiue
#: 05090201.xhp
msgctxt ""
"05090201.xhp\n"
"par_id3150983\n"
"help.text"
-msgid "To change the behavior of tables in a text document, choose <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/01040500.xhp\" name=\"Text Document - Table\"><emph>%PRODUCTNAME Writer - Table</emph></link>."
-msgstr "Per a modificar el comportament de les taules als documents de text, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01040500.xhp\" name=\"Document de text ▸ Taula\"><emph>%PRODUCTNAME Writer ▸ Taula</emph></link>."
+msgid "To change the behavior of tables in a text document, choose <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/01040500.xhp\"><emph>%PRODUCTNAME Writer - Table</emph></link>."
+msgstr "Per a modificar el comportament de les taules als documents de text, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01040500.xhp\"><emph>%PRODUCTNAME Writer ▸ Taula</emph></link>."
-#. n2qnF
+#. MDoSF
#: 05090201.xhp
msgctxt ""
"05090201.xhp\n"
"par_id3154196\n"
"help.text"
-msgid "<link href=\"text/swriter/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
-msgstr "<link href=\"text/swriter/main0204.xhp\" name=\"Barra Taula\">Barra Taula</link>"
+msgid "<link href=\"text/swriter/main0204.xhp\">Table Bar</link>"
+msgstr "<link href=\"text/swriter/main0204.xhp\">Barra Taula</link>"
#. iDDpF
#: 05090300.xhp
@@ -21509,14 +21509,14 @@ msgctxt ""
msgid "<bookmark_value>tables;text flow around text tables</bookmark_value><bookmark_value>text flow;around text tables</bookmark_value><bookmark_value>columns; breaks in text tables</bookmark_value><bookmark_value>row breaks in text tables</bookmark_value><bookmark_value>tables; allowing page breaks</bookmark_value><bookmark_value>page breaks; tables</bookmark_value><bookmark_value>splitting tables;row breaks</bookmark_value>"
msgstr "<bookmark_value>taules;flux de text al voltant de les taules de text</bookmark_value><bookmark_value>flux de text;al voltant de les taules de text</bookmark_value><bookmark_value>columnes; salts en les taules de text</bookmark_value><bookmark_value>salts de fila en les taules de text</bookmark_value><bookmark_value>taules; permetre salts de pàgina</bookmark_value><bookmark_value>salts de pàgina; taules</bookmark_value><bookmark_value>partició de taules;salts de fila</bookmark_value>"
-#. m7idq
+#. EFXpA
#: 05090300.xhp
msgctxt ""
"05090300.xhp\n"
"hd_id3154558\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05090300.xhp\" name=\"Text Flow\">Text Flow</link>"
-msgstr "<link href=\"text/swriter/01/05090300.xhp\" name=\"Flux de text\">Flux de text</link>"
+msgid "<link href=\"text/swriter/01/05090300.xhp\">Text Flow</link>"
+msgstr "<link href=\"text/swriter/01/05090300.xhp\">Flux de text</link>"
#. AkSy2
#: 05090300.xhp
@@ -21851,14 +21851,14 @@ msgctxt ""
msgid "Cell"
msgstr "Cel·la"
-#. BJqGh
+#. jTBKK
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"hd_id3150765\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05100000.xhp\" name=\"Cell\">Cell</link>"
-msgstr "<link href=\"text/swriter/01/05100000.xhp\" name=\"Cel·la\">Cel·la</link>"
+msgid "<link href=\"text/swriter/01/05100000.xhp\">Cell</link>"
+msgstr "<link href=\"text/swriter/01/05100000.xhp\">Cel·la</link>"
#. w9Xny
#: 05100000.xhp
@@ -21878,14 +21878,14 @@ msgctxt ""
msgid "Protect"
msgstr "Protegeix"
-#. 6miRH
+#. uCgFZ
#: 05100300.xhp
msgctxt ""
"05100300.xhp\n"
"hd_id3146322\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05100300.xhp\" name=\"Protect\">Protect</link>"
-msgstr "<link href=\"text/swriter/01/05100300.xhp\" name=\"Protegeix\">Protegeix</link>"
+msgid "<link href=\"text/swriter/01/05100300.xhp\">Protect</link>"
+msgstr "<link href=\"text/swriter/01/05100300.xhp\">Protegeix</link>"
#. BDEia
#: 05100300.xhp
@@ -21905,14 +21905,14 @@ msgctxt ""
msgid "When the cursor is in a read-only cell, a note appears on the <emph>Status Bar</emph>."
msgstr "Quan el cursor es troba en una cel·la només de lectura, es mostra una nota a la <emph>Barra d'estat</emph>."
-#. qpZfq
+#. Kaktd
#: 05100300.xhp
msgctxt ""
"05100300.xhp\n"
"par_id3149292\n"
"help.text"
-msgid "To remove cell protection, select the cell(s), right-click, and then choose <link href=\"text/swriter/01/05100400.xhp\" name=\"Cell - Unprotect\"><emph>Cell - Unprotect</emph></link>."
-msgstr "Per eliminar la protecció de cel·les, seleccioneu les cel·les, feu clic amb el botó dret i després trieu <link href=\"text/swriter/01/05100400.xhp\" name=\"Cel·la - Desprotegeix\"><emph> Cel·la - Desprotegeix</emph></link>."
+msgid "To remove cell protection, select the cell(s), right-click, and then choose <link href=\"text/swriter/01/05100400.xhp\"><emph>Cell - Unprotect</emph></link>."
+msgstr "Per eliminar la protecció de cel·les, seleccioneu les cel·les, feu clic amb el botó dret i després trieu <link href=\"text/swriter/01/05100400.xhp\"><emph> Cel·la - Desprotegeix</emph></link>."
#. E68EJ
#: 05100400.xhp
@@ -21923,14 +21923,14 @@ msgctxt ""
msgid "Unprotect"
msgstr "Desprotegeix"
-#. HxD2J
+#. jBRsZ
#: 05100400.xhp
msgctxt ""
"05100400.xhp\n"
"hd_id3149052\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05100400.xhp\" name=\"Unprotect\">Unprotect</link>"
-msgstr "<link href=\"text/swriter/01/05100400.xhp\" name=\"Desprotegeix\">Desprotegeix</link>"
+msgid "<link href=\"text/swriter/01/05100400.xhp\">Unprotect</link>"
+msgstr "<link href=\"text/swriter/01/05100400.xhp\">Desprotegeix</link>"
#. dyWFA
#: 05100400.xhp
@@ -21950,14 +21950,14 @@ msgctxt ""
msgid "To remove the protection from several tables at once, select the tables, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+T. To remove the protection from all of the tables in a document, click anywhere in the document, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+T."
msgstr "Per suprimir la protecció de diverses taules alhora, seleccioneu les taules i premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Maj+T. Per suprimir la protecció de totes les taules d'un document, feu clic a qualsevol lloc del document i, a continuació, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Maj+T."
-#. epjGE
+#. NuGEd
#: 05100400.xhp
msgctxt ""
"05100400.xhp\n"
"par_id3150765\n"
"help.text"
-msgid "You can also remove cell protection from a table in the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link>."
-msgstr "També podeu suprimir la protecció de cel·la d'una taula en el <link href=\"text/swriter/01/02110000.xhp\" name=\"Navegador\">Navegador</link>."
+msgid "You can also remove cell protection from a table in the <link href=\"text/swriter/01/02110000.xhp\">Navigator</link>."
+msgstr "També podeu suprimir la protecció de cel·la d'una taula en el <link href=\"text/swriter/01/02110000.xhp\">Navegador</link>."
#. TgyNZ
#: 05110000.xhp
@@ -21968,14 +21968,14 @@ msgctxt ""
msgid "Row"
msgstr "Fila"
-#. e8Dxb
+#. otHFo
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3149502\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05110000.xhp\" name=\"Row\">Row</link>"
-msgstr "<link href=\"text/swriter/01/05110000.xhp\" name=\"Fila\">Fila</link>"
+msgid "<link href=\"text/swriter/01/05110000.xhp\">Row</link>"
+msgstr "<link href=\"text/swriter/01/05110000.xhp\">Fila</link>"
#. zrvZE
#: 05110000.xhp
@@ -21986,32 +21986,32 @@ msgctxt ""
msgid "Set the height of rows, or select, insert, and delete rows."
msgstr "Configureu l'alçària de les files, o seleccioneu, inseriu i suprimiu les files."
-#. f54iw
+#. WSM3G
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3083451\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05110100.xhp\" name=\"Height\">Row Height</link>"
+msgid "<link href=\"text/swriter/01/05110100.xhp\">Row Height</link>"
msgstr ""
-#. yEgLU
+#. qaBGU
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3149349\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05110200.xhp\" name=\"Optimal Height\">Optimal Row Height</link>"
+msgid "<link href=\"text/swriter/01/05110200.xhp\">Optimal Row Height</link>"
msgstr ""
-#. vXmYe
+#. CSYUC
#: 05110000.xhp
msgctxt ""
"05110000.xhp\n"
"hd_id3149883\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120400.xhp\" name=\"Insert...\">Insert...</link>"
-msgstr "<link href=\"text/swriter/01/05120400.xhp\" name=\"Insereix...\">Insereix...</link>"
+msgid "<link href=\"text/swriter/01/05120400.xhp\">Insert...</link>"
+msgstr "<link href=\"text/swriter/01/05120400.xhp\">Insereix...</link>"
#. MtE2e
#: 05110100.xhp
@@ -22076,13 +22076,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/rowheight/fit\">Automatically adjusts the row height to match the contents of the cells.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/rowheight/fit\">Ajusta automàticament l'alçària de la fila perquè coincidisca amb els continguts de les cel·les.</ahelp>"
-#. XKATL
+#. Kj6Po
#: 05110100.xhp
msgctxt ""
"05110100.xhp\n"
"par_id3154646\n"
"help.text"
-msgid "You can also right-click in a cell, and then choose <link href=\"text/shared/01/minimal_row_height.xhp\" name=\"Minimal Row Height\"><menuitem>Size - Minimal Row Height</menuitem></link>."
+msgid "You can also right-click in a cell, and then choose <link href=\"text/shared/01/minimal_row_height.xhp\"><menuitem>Size - Minimal Row Height</menuitem></link>."
msgstr ""
#. 4JwEA
@@ -22094,13 +22094,13 @@ msgctxt ""
msgid "Optimal Row Height"
msgstr ""
-#. EtLnn
+#. hmSQS
#: 05110200.xhp
msgctxt ""
"05110200.xhp\n"
"hd_id3150010\n"
"help.text"
-msgid "<variable id=\"optimal_row_height_h1\"><link href=\"text/swriter/01/05110200.xhp\" name=\"Optimal Row Height\">Optimal Row Height</link></variable>"
+msgid "<variable id=\"optimal_row_height_h1\"><link href=\"text/swriter/01/05110200.xhp\">Optimal Row Height</link></variable>"
msgstr ""
#. LZXDJ
@@ -22121,13 +22121,13 @@ msgctxt ""
msgid "Row height can increase with this option, with the table always growing downward. The total table height is never reduced by this option."
msgstr ""
-#. EJwSC
+#. WY6Wn
#: 05110200.xhp
msgctxt ""
"05110200.xhp\n"
"par_id801656117723975\n"
"help.text"
-msgid "This option is similar to first minimizing row height for selected rows by using <link href=\"text/shared/01/minimal_row_height.xhp\" name=\"Minimal Row\"><menuitem>Minimal Row Height</menuitem></link> and then distributing those rows by using <link href=\"text/shared/01/05110600m.xhp\" name=\"Distribute Rows\"><menuitem>Distribute Rows Evenly</menuitem></link>, except that additional height is added to each row if necessary to prevent the total table height from reducing."
+msgid "This option is similar to first minimizing row height for selected rows by using <link href=\"text/shared/01/minimal_row_height.xhp\"><menuitem>Minimal Row Height</menuitem></link> and then distributing those rows by using <link href=\"text/shared/01/05110600m.xhp\"><menuitem>Distribute Rows Evenly</menuitem></link>, except that additional height is added to each row if necessary to prevent the total table height from reducing."
msgstr ""
#. kFGSx
@@ -22139,14 +22139,14 @@ msgctxt ""
msgid "Select"
msgstr "Selecciona"
-#. FF74D
+#. hCfpH
#: 05110300.xhp
msgctxt ""
"05110300.xhp\n"
"hd_id3154650\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05110300.xhp\" name=\"Select\">Select</link>"
-msgstr "<link href=\"text/swriter/01/05110300.xhp\" name=\"Selecciona\">Selecciona</link>"
+msgid "<link href=\"text/swriter/01/05110300.xhp\">Select</link>"
+msgstr "<link href=\"text/swriter/01/05110300.xhp\">Selecciona</link>"
#. KtjRH
#: 05110300.xhp
@@ -22175,14 +22175,14 @@ msgctxt ""
msgid "Delete"
msgstr "Suprimeix"
-#. Ad3Yt
+#. cCd2W
#: 05110500.xhp
msgctxt ""
"05110500.xhp\n"
"hd_id3149502\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/swriter/01/05110500.xhp\" name=\"Suprimeix\">Suprimeix</link>"
+msgid "<link href=\"text/swriter/01/05110500.xhp\">Delete</link>"
+msgstr "<link href=\"text/swriter/01/05110500.xhp\">Suprimeix</link>"
#. tGdoM
#: 05110500.xhp
@@ -22202,14 +22202,14 @@ msgctxt ""
msgid "Column"
msgstr "Columna"
-#. ASEZz
+#. tyoyE
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"hd_id3154762\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120000.xhp\" name=\"Column\">Column</link>"
-msgstr "<link href=\"text/swriter/01/05120000.xhp\" name=\"Columna\">Columna</link>"
+msgid "<link href=\"text/swriter/01/05120000.xhp\">Column</link>"
+msgstr "<link href=\"text/swriter/01/05120000.xhp\">Columna</link>"
#. yfrR7
#: 05120000.xhp
@@ -22220,23 +22220,23 @@ msgctxt ""
msgid "Set the width of columns, or select, insert, and delete columns."
msgstr "Configureu l'amplària de les columnes, o seleccioneu, inseriu i suprimiu columnes."
-#. Aonp6
+#. BNVrW
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"hd_id3146322\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120100.xhp\" name=\"Width...\">Width...</link>"
-msgstr "<link href=\"text/swriter/01/05120100.xhp\" name=\"Amplària...\">Amplària...</link>"
+msgid "<link href=\"text/swriter/01/05120100.xhp\">Width...</link>"
+msgstr "<link href=\"text/swriter/01/05120100.xhp\">Amplària...</link>"
-#. xLaL2
+#. zqUrC
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"hd_id3150564\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120400.xhp\" name=\"Insert...\">Insert...</link>"
-msgstr "<link href=\"text/swriter/01/05120400.xhp\" name=\"Insereix...\">Insereix...</link>"
+msgid "<link href=\"text/swriter/01/05120400.xhp\">Insert...</link>"
+msgstr "<link href=\"text/swriter/01/05120400.xhp\">Insereix...</link>"
#. AZDCu
#: 05120100.xhp
@@ -22319,13 +22319,13 @@ msgctxt ""
msgid "Optimal Column Width"
msgstr ""
-#. 3GFtH
+#. kU2A6
#: 05120200.xhp
msgctxt ""
"05120200.xhp\n"
"hd_id3149500\n"
"help.text"
-msgid "<variable id=\"optimal_column_width_h1\"><link href=\"text/swriter/01/05120200.xhp\" name=\"Optimal Column Width\">Optimal Column Width</link></variable>"
+msgid "<variable id=\"optimal_column_width_h1\"><link href=\"text/swriter/01/05120200.xhp\">Optimal Column Width</link></variable>"
msgstr ""
#. Rt2Cv
@@ -22445,14 +22445,14 @@ msgctxt ""
msgid "Select"
msgstr "Selecciona"
-#. TU9FC
+#. KkAxE
#: 05120300.xhp
msgctxt ""
"05120300.xhp\n"
"hd_id3154660\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120300.xhp\" name=\"Select\">Select</link>"
-msgstr "<link href=\"text/swriter/01/05120300.xhp\" name=\"Selecciona\">Selecciona</link>"
+msgid "<link href=\"text/swriter/01/05120300.xhp\">Select</link>"
+msgstr "<link href=\"text/swriter/01/05120300.xhp\">Selecciona</link>"
#. Aj5jz
#: 05120300.xhp
@@ -22598,14 +22598,14 @@ msgctxt ""
msgid "Delete"
msgstr "Suprimeix"
-#. S2PKC
+#. CAcdx
#: 05120500.xhp
msgctxt ""
"05120500.xhp\n"
"hd_id3145801\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/swriter/01/05120500.xhp\" name=\"Suprimeix\">Suprimeix</link>"
+msgid "<link href=\"text/swriter/01/05120500.xhp\">Delete</link>"
+msgstr "<link href=\"text/swriter/01/05120500.xhp\">Suprimeix</link>"
#. FwU2N
#: 05120500.xhp
@@ -22661,14 +22661,14 @@ msgctxt ""
msgid "The following information concerns Writer styles that you can apply using the <link href=\"text/swriter/01/05140000.xhp\">Styles</link> deck of the Sidebar."
msgstr ""
-#. g2Dm2
+#. 2rE8i
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"par_id3150015\n"
"help.text"
-msgid "If you want, you can edit the styles of the current document, and then save the document as a template. To save the document as template, choose <emph>File - </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Templates - Save as Template\"><emph>Templates - Save as Template</emph></link>."
-msgstr "Si ho voleu, podeu modificar els estils del document actual i guardar el document com a plantilla. Per a fer això, trieu <emph>Fitxer ▸ </emph><link href=\"text/shared/01/01110300.xhp\" name=\"Plantilles ▸ Guarda com a plantilla\"><emph>Plantilles ▸ Guarda com a plantilla</emph></link>."
+msgid "If you want, you can edit the styles of the current document, and then save the document as a template. To save the document as template, choose <emph>File - </emph><link href=\"text/shared/01/01110300.xhp\"><emph>Templates - Save as Template</emph></link>."
+msgstr "Si ho voleu, podeu modificar els estils del document actual i guardar el document com a plantilla. Per a fer això, trieu <emph>Fitxer ▸ </emph><link href=\"text/shared/01/01110300.xhp\"><emph>Plantilles ▸ Guarda com a plantilla</emph></link>."
#. H7sEC
#: 05130000.xhp
@@ -23057,14 +23057,14 @@ msgctxt ""
msgid "Character Style"
msgstr "Estil de caràcter"
-#. F6FMx
+#. e47Nx
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"hd_id3148489\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>"
-msgstr "<link href=\"text/swriter/01/05130002.xhp\" name=\"Estil de caràcter\">Estil de caràcter</link>"
+msgid "<link href=\"text/swriter/01/05130002.xhp\">Character Style</link>"
+msgstr "<link href=\"text/swriter/01/05130002.xhp\">Estil de caràcter</link>"
#. EQ4xC
#: 05130002.xhp
@@ -23120,40 +23120,40 @@ msgctxt ""
msgid "List Style"
msgstr ""
-#. VW3PN
+#. crkgW
#: 05130004.xhp
msgctxt ""
"05130004.xhp\n"
"hd_id3155961\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">List Style</link>"
+msgid "<link href=\"text/swriter/01/05130004.xhp\">List Style</link>"
msgstr ""
-#. 3zB3P
+#. RbJNY
#: 05130004.xhp
msgctxt ""
"05130004.xhp\n"
"par_id3149501\n"
"help.text"
-msgid "Here you can create a List Style. The List Styles are organized in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window."
+msgid "Here you can create a List Style. The List Styles are organized in the <link href=\"text/swriter/01/05140000.xhp\">Styles</link> window."
msgstr ""
-#. hVmyj
+#. zAYSG
#: 05130004.xhp
msgctxt ""
"05130004.xhp\n"
"par_id317365356036\n"
"help.text"
-msgid "When a List Style is created, a name is assigned to the style. The list style can be applied to paragraphs or assigned to a paragraph style in the Apply List Style section of the <link href=\"text/swriter/01/05030800.xhp\" name=\"ApplyListStyle\">Outline & List</link> tab."
+msgid "When a List Style is created, a name is assigned to the style. The list style can be applied to paragraphs or assigned to a paragraph style in the Apply List Style section of the <link href=\"text/swriter/01/05030800.xhp\">Outline & List</link> tab."
msgstr ""
-#. 9GiGz
+#. mqfjF
#: 05130004.xhp
msgctxt ""
"05130004.xhp\n"
"par_id3151390\n"
"help.text"
-msgid "Ordered lists and unordered lists created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> and <link href=\"text/shared/02/06120000.xhp\" name=\"Toggle Unordered List\">Toggle Unordered List</link> icons of the <link href=\"text/swriter/main0202.xhp\" name=\"object bar\">Formatting</link> bar use <link href=\"text/shared/00/00000005.xhp#formatting\" name=\"direct formatting\">direct formatting</link>. They are not list styles."
+msgid "Ordered lists and unordered lists created in the <link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link> dialog or with the <link href=\"text/swriter/02/02110000.xhp\">Toggle Ordered List</link> and <link href=\"text/shared/02/06120000.xhp\">Toggle Unordered List</link> icons of the <link href=\"text/swriter/main0202.xhp\">Formatting</link> bar use <link href=\"text/shared/00/00000005.xhp#formatting\">direct formatting</link>. They are not list styles."
msgstr ""
#. UgisA
@@ -23174,14 +23174,14 @@ msgctxt ""
msgid "<bookmark_value>styles; conditional</bookmark_value><bookmark_value>conditional styles</bookmark_value>"
msgstr "<bookmark_value>estils; condicionals</bookmark_value><bookmark_value>estils condicionals</bookmark_value>"
-#. DBzDh
+#. w57gP
#: 05130100.xhp
msgctxt ""
"05130100.xhp\n"
"hd_id3154656\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05130100.xhp\" name=\"Condition\">Condition</link>"
-msgstr "<link href=\"text/swriter/01/05130100.xhp\" name=\"Condició\">Condició</link>"
+msgid "<link href=\"text/swriter/01/05130100.xhp\">Condition</link>"
+msgstr "<link href=\"text/swriter/01/05130100.xhp\">Condició</link>"
#. pgrCE
#: 05130100.xhp
@@ -23417,13 +23417,13 @@ msgctxt ""
msgid "<bookmark_value>Styles window;applying styles</bookmark_value> <bookmark_value>styles;previews</bookmark_value> <bookmark_value>previews;styles</bookmark_value>"
msgstr "<bookmark_value>finestra Estils;aplicació d'estils</bookmark_value><bookmark_value>estils;previsualitzacions</bookmark_value><bookmark_value>previsualitzacions;estils</bookmark_value>"
-#. GJbQs
+#. EMPcC
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"hd_id3154505\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles (Sidebar)</link>"
+msgid "<link href=\"text/swriter/01/05140000.xhp\">Styles (Sidebar)</link>"
msgstr ""
#. YEFkv
@@ -23444,13 +23444,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose Edit Paragraph Style in the context menu of a paragraph to edit the style of all paragraphs of the same style.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trieu «Edita l'estil del paràgraf» al menú de context del paràgraf per editar l'estil de tots els paràgrafs del mateix estil.</ahelp>"
-#. PCdBP
+#. aT3RR
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_idN106EF\n"
"help.text"
-msgid "To <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dock\">dock</link> the Styles window, drag its title bar to the left or to the right side of the workspace. To undock the window, double-click a free space on its toolbar."
+msgid "To <link href=\"text/shared/00/00000005.xhp#docking\">dock</link> the Styles window, drag its title bar to the left or to the right side of the workspace. To undock the window, double-click a free space on its toolbar."
msgstr ""
#. rnJBS
@@ -23489,13 +23489,13 @@ msgctxt ""
msgid "Paragraph Styles"
msgstr "Estils de paràgraf"
-#. YsBSM
+#. AGPnb
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_id3149800\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays formatting styles for paragraphs.</ahelp> Use paragraph styles to apply the same <link href=\"text/shared/00/00000005.xhp#formatting\" name=\"formatting\">formatting</link>, such as font, numbering, and layout to the paragraphs in your document."
+msgid "<ahelp hid=\".\">Displays formatting styles for paragraphs.</ahelp> Use paragraph styles to apply the same <link href=\"text/shared/00/00000005.xhp#formatting\">formatting</link>, such as font, numbering, and layout to the paragraphs in your document."
msgstr ""
#. ataNf
@@ -23642,13 +23642,13 @@ msgctxt ""
msgid "<image id=\"img_id3150590\" src=\"cmd/sc_fillstyle.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150590\">Icon Fill Format Mode</alt></image>"
msgstr ""
-#. HTgdU
+#. PwKv4
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_id3145786\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/stylist_fillformat.xhp\" name=\"style_fillformat\">Fill Format Mode</link>"
+msgid "<link href=\"text/swriter/guide/stylist_fillformat.xhp\">Fill Format Mode</link>"
msgstr ""
#. q3tQu
@@ -23687,13 +23687,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens a submenu with more commands.</ahelp>"
msgstr "<ahelp hid=\".\">Obri un submenú amb més ordes.</ahelp>"
-#. BEZ6u
+#. EcD65
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_idN109DA\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/stylist_fromselect.xhp\" name=\"stylist_fromselect\"><menuitem>New Style from Selection</menuitem></link>"
+msgid "<link href=\"text/swriter/guide/stylist_fromselect.xhp\"><menuitem>New Style from Selection</menuitem></link>"
msgstr ""
#. L5UYB
@@ -23705,14 +23705,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Creates a new style based on the formatting of the current paragraph, page, or selection.</ahelp>"
msgstr "<ahelp hid=\".\">Crea un estil nou basat en la formatació del paràgraf, de la pàgina o de la selecció actual.</ahelp>"
-#. m4Caq
+#. srqjA
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_idN10A04\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/stylist_update.xhp\" name=\"updatestyle\"><menuitem>Update Selected Style</menuitem></link>"
-msgstr "<link href=\"text/swriter/guide/stylist_update.xhp\" name=\"updatestyle\"><menuitem>Actualitza l'estil seleccionat</menuitem></link>"
+msgid "<link href=\"text/swriter/guide/stylist_update.xhp\"><menuitem>Update Selected Style</menuitem></link>"
+msgstr "<link href=\"text/swriter/guide/stylist_update.xhp\"><menuitem>Actualitza l'estil seleccionat</menuitem></link>"
#. JZgJw
#: 05140000.xhp
@@ -23723,13 +23723,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">The manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles window.</ahelp>"
msgstr "<ahelp hid=\".\">Els atributs del text a la posició del cursor formatats manualment al document s'afegiran a l'estil que s'ha seleccionat a la finestra Estils.</ahelp>"
-#. f6jWa
+#. HTW8k
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_idN10A31\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05170000.xhp\" name=\"loadstyles\"><menuitem>Load Styles from Template</menuitem></link>"
+msgid "<link href=\"text/swriter/01/05170000.xhp\"><menuitem>Load Styles from Template</menuitem></link>"
msgstr ""
#. 3LjT6
@@ -23813,14 +23813,14 @@ msgctxt ""
msgid "The Formatting (Styles) toolbar contains icons for applying and modifying styles."
msgstr "La barra d'eines Formatació (estils) conté icones per a aplicar i modificar els estils."
-#. fvko5
+#. jBEcL
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_id3148860\n"
"help.text"
-msgid "More information about <link href=\"text/swriter/01/05130000.xhp\" name=\"styles\">styles</link>."
-msgstr "Més informació sobre <link href=\"text/swriter/01/05130000.xhp\" name=\"estils\">estils</link>."
+msgid "More information about <link href=\"text/swriter/01/05130000.xhp\">styles</link>."
+msgstr "Més informació sobre <link href=\"text/swriter/01/05130000.xhp\">estils</link>."
#. KEiDu
#: 05150000.xhp
@@ -23840,14 +23840,14 @@ msgctxt ""
msgid "<bookmark_value>AutoCorrect function;text documents</bookmark_value>"
msgstr "<bookmark_value>funció de correcció automàtica; documents de text</bookmark_value>"
-#. CAuj9
+#. RTSQR
#: 05150000.xhp
msgctxt ""
"05150000.xhp\n"
"hd_id3153925\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150000.xhp\" name=\"AutoFormat\">AutoCorrect</link>"
-msgstr "<link href=\"text/swriter/01/05150000.xhp\" name=\"AutoFormat\">Correcció automàtica</link>"
+msgid "<link href=\"text/swriter/01/05150000.xhp\">AutoCorrect</link>"
+msgstr "<link href=\"text/swriter/01/05150000.xhp\">Correcció automàtica</link>"
#. bLXgC
#: 05150000.xhp
@@ -23856,7 +23856,7 @@ msgctxt ""
"par_id3151182\n"
"help.text"
msgid "Automatically formats the file according to the options that you set under <link href=\"text/shared/01/06040000.xhp\"><emph>Tools - AutoCorrect - AutoCorrect Options</emph></link>."
-msgstr "Formata automàticament el fitxer d'acord amb les opcions que heu establit a <link href=\"text/shared/01/06040000.xhp\" name=\"Eines - Correcció automàtica\"><emph>Eines - Opcions de correcció automàtica</emph></link>."
+msgstr "Formata automàticament el fitxer d'acord amb les opcions que heu establit a <link href=\"text/shared/01/06040000.xhp\"><emph>Eines - Opcions de correcció automàtica</emph></link>."
#. CARSC
#: 05150000.xhp
@@ -23876,14 +23876,14 @@ msgctxt ""
msgid "Opens the AutoCorrect dialog."
msgstr "Obri el diàleg Correcció automàtica."
-#. avdcs
+#. kfEx3
#: 05150000.xhp
msgctxt ""
"05150000.xhp\n"
"par_id3147570\n"
"help.text"
-msgid "To open the <link href=\"text/swriter/01/05150101.xhp\" name=\"AutoFormat for Tables\">AutoFormat for Tables</link> dialog, click in a table cell, and then choose <emph>Table - AutoFormat Styles</emph>."
-msgstr "Per obrir el diàleg <link href=\"text/swriter/01/05150101.xhp\" name=\"Formatació automàtica per a taules\">Formatació automàtica per a taules</link>, feu clic en una cel·la de la taula i, a continuació, trieu <emph>Format - Formatació automàtica</emph>."
+msgid "To open the <link href=\"text/swriter/01/05150101.xhp\">AutoFormat for Tables</link> dialog, click in a table cell, and then choose <emph>Table - AutoFormat Styles</emph>."
+msgstr "Per obrir el diàleg <link href=\"text/swriter/01/05150101.xhp\">Formatació automàtica per a taules</link>, feu clic en una cel·la de la taula i, a continuació, trieu <emph>Format - Formatació automàtica</emph>."
#. ZN4ko
#: 05150100.xhp
@@ -23903,13 +23903,13 @@ msgctxt ""
msgid "<bookmark_value>automatic heading formatting</bookmark_value><bookmark_value>AutoCorrect function;headings</bookmark_value><bookmark_value>headings;automatic</bookmark_value><bookmark_value>separator lines;AutoCorrect function</bookmark_value>"
msgstr ""
-#. KEGMD
+#. RbpAo
#: 05150100.xhp
msgctxt ""
"05150100.xhp\n"
"hd_id3147436\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150100.xhp\" name=\"While Typing\">While Typing</link>"
+msgid "<link href=\"text/swriter/01/05150100.xhp\">While Typing</link>"
msgstr ""
#. FArms
@@ -23921,23 +23921,23 @@ msgctxt ""
msgid "<ahelp hid=\".uno:OnlineAutoFormat\">Automatically formats the document while you type. To set the formatting options, choose <menuitem>Tools - AutoCorrect - Options</menuitem>, and then click the <emph>Options</emph> tab.</ahelp>"
msgstr ""
-#. Ddr5r
+#. BybV2
#: 05150100.xhp
msgctxt ""
"05150100.xhp\n"
"par_id3148488\n"
"help.text"
-msgid "You can use AutoCorrect to format text documents and plain ASCII text files, but not characters that you have manually formatted. Automatic <link href=\"text/shared/01/06040100.xhp\" name=\"word completion\">word completion</link> only occurs after you type a word for the second time in a document."
-msgstr "Podeu utilitzar la correcció automàtica per formatar documents de text i fitxers de text ASCII, però no caràcters que heu formatat automàticament. La <link href=\"text/shared/01/06040100.xhp\" name=\"compleció de paraules\">compleció de paraules</link> automàtica només es produeix un cop hàgeu escrit la paraula en el document per segona vegada."
+msgid "You can use AutoCorrect to format text documents and plain ASCII text files, but not characters that you have manually formatted. Automatic <link href=\"text/shared/01/06040100.xhp\">word completion</link> only occurs after you type a word for the second time in a document."
+msgstr "Podeu utilitzar la correcció automàtica per formatar documents de text i fitxers de text ASCII, però no caràcters que heu formatat automàticament. La <link href=\"text/shared/01/06040100.xhp\">compleció de paraules</link> automàtica només es produeix un cop hàgeu escrit la paraula en el document per segona vegada."
-#. aZA7m
+#. tHKD7
#: 05150100.xhp
msgctxt ""
"05150100.xhp\n"
"par_id3147407\n"
"help.text"
-msgid "To reverse the last AutoCorrect action, choose <emph>Edit - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Undo\"><emph>Undo</emph></link>."
-msgstr "Per invertir l'última acció de correcció automàtica, trieu <emph>Edita ▸ </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Desfés\"><emph>Desfés</emph></link>."
+msgid "To reverse the last AutoCorrect action, choose <emph>Edit - </emph><link href=\"text/shared/01/02010000.xhp\"><emph>Undo</emph></link>."
+msgstr "Per invertir l'última acció de correcció automàtica, trieu <emph>Edita ▸ </emph><link href=\"text/shared/01/02010000.xhp\"><emph>Desfés</emph></link>."
#. c9yUj
#: 05150100.xhp
@@ -24002,13 +24002,13 @@ msgctxt ""
msgid "AutoCorrect for Separator Lines"
msgstr ""
-#. wk6vb
+#. Hecih
#: 05150100.xhp
msgctxt ""
"05150100.xhp\n"
"par_id3154105\n"
"help.text"
-msgid "If you type three or more hyphens (---) or certain other characters in a row and then press Enter, the paragraph is replaced by a horizontal line as wide as the page. The line is actually the <link href=\"text/shared/01/05030500.xhp\" name=\"lower border\">lower border</link> of the preceding paragraph. The bottom padding of such a paragraph will be set to 0.75 mm. The following rules apply:"
+msgid "If you type three or more hyphens (---) or certain other characters in a row and then press Enter, the paragraph is replaced by a horizontal line as wide as the page. The line is actually the <link href=\"text/shared/01/05030500.xhp\">lower border</link> of the preceding paragraph. The bottom padding of such a paragraph will be set to 0.75 mm. The following rules apply:"
msgstr ""
#. vEuXo
@@ -24065,14 +24065,14 @@ msgctxt ""
msgid "Three hash signs (#) yield a medium double line (1.5 pt thick)."
msgstr ""
-#. ofrX8
+#. f2NtF
#: 05150100.xhp
msgctxt ""
"05150100.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"Other AutoFormat rules\">Other AutoCorrect rules</link>"
-msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Altres regles de formatació automàtica\">Altres regles de correcció automàtica</link>"
+msgid "<link href=\"text/swriter/01/05150200.xhp\">Other AutoCorrect rules</link>"
+msgstr "<link href=\"text/swriter/01/05150200.xhp\">Altres regles de correcció automàtica</link>"
#. CjDuT
#: 05150101.xhp
@@ -24425,22 +24425,22 @@ msgctxt ""
msgid "<bookmark_value>autocorrect;apply manually</bookmark_value>"
msgstr ""
-#. bjjAk
+#. SsTMe
#: 05150200.xhp
msgctxt ""
"05150200.xhp\n"
"hd_id3155962\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"Apply\">Apply</link>"
-msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Aplica\">Aplica</link>"
+msgid "<link href=\"text/swriter/01/05150200.xhp\">Apply</link>"
+msgstr "<link href=\"text/swriter/01/05150200.xhp\">Aplica</link>"
-#. pDbX2
+#. YCBxv
#: 05150200.xhp
msgctxt ""
"05150200.xhp\n"
"par_id3149871\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoFormatApply\">Automatically formats a document or a selection according to the options set in the AutoCorrect <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\"><emph>Options</emph></link> tab.</ahelp>"
+msgid "<ahelp hid=\".uno:AutoFormatApply\">Automatically formats a document or a selection according to the options set in the AutoCorrect <link href=\"text/shared/01/06040100.xhp\"><emph>Options</emph></link> tab.</ahelp>"
msgstr ""
#. obCky
@@ -24497,14 +24497,14 @@ msgctxt ""
msgid "Apply and Edit Changes"
msgstr "Aplica i edita els canvis"
-#. LkpxD
+#. ddB3X
#: 05150300.xhp
msgctxt ""
"05150300.xhp\n"
"hd_id3149353\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150300.xhp\" name=\"Apply and Edit Changes\">Apply and Edit Changes</link>"
-msgstr "<link href=\"text/swriter/01/05150300.xhp\" name=\"Aplica i edita els canvis\">Aplica i edita els canvis</link>"
+msgid "<link href=\"text/swriter/01/05150300.xhp\">Apply and Edit Changes</link>"
+msgstr "<link href=\"text/swriter/01/05150300.xhp\">Aplica i edita els canvis</link>"
#. oMC8P
#: 05150300.xhp
@@ -24569,14 +24569,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/edit\">Opens a dialog where you can accept or reject AutoCorrect changes. You can also view the changes made by a specific author or on a specific date.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/edit\">Obri un diàleg on podeu acceptar o rebutjar els canvis de la correcció automàtica. També podeu veure els canvis que ha fet un autor en concret o els que s'han aplicat en una data concreta.</ahelp>"
-#. Esy9H
+#. faz6k
#: 05150300.xhp
msgctxt ""
"05150300.xhp\n"
"par_id3151184\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230402.xhp\" name=\"Manage AutoFormat Changes, Filter tab\">Manage Changes, Filter tab</link>"
-msgstr "<link href=\"text/shared/01/02230402.xhp\" name=\"Accepta o rebutja els canvis de formatació automàtica, pestanya Filtre\">Accepta o rebutja els canvis, pestanya Filtre</link>"
+msgid "<link href=\"text/shared/01/02230402.xhp\">Manage Changes, Filter tab</link>"
+msgstr "<link href=\"text/shared/01/02230402.xhp\">Accepta o rebutja els canvis, pestanya Filtre</link>"
#. isAgi
#: 05170000.xhp
@@ -24587,13 +24587,13 @@ msgctxt ""
msgid "Load Styles"
msgstr "Carrega els estils"
-#. NvMrU
+#. ojR9E
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"hd_id3151242\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">Load Master Slide</caseinline> <caseinline select=\"DRAW\">Load Master Page</caseinline> <defaultinline><variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Load Styles</link></variable></defaultinline> </switchinline>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">Load Master Slide</caseinline> <caseinline select=\"DRAW\">Load Master Page</caseinline> <defaultinline><variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\">Load Styles</link></variable></defaultinline> </switchinline>"
msgstr ""
#. 27Nd8
@@ -24929,14 +24929,14 @@ msgctxt ""
msgid "<bookmark_value>tables; splitting</bookmark_value><bookmark_value>splitting tables; at cursor position</bookmark_value><bookmark_value>dividing tables</bookmark_value>"
msgstr "<bookmark_value>taules; divisió</bookmark_value><bookmark_value>divisió de taules; en la posició del cursor</bookmark_value><bookmark_value>divisió de taules</bookmark_value>"
-#. stfXA
+#. p3i4E
#: 05190000.xhp
msgctxt ""
"05190000.xhp\n"
"hd_id3153246\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05190000.xhp\" name=\"Split Table\">Split Table</link>"
-msgstr "<link href=\"text/swriter/01/05190000.xhp\" name=\"Divideix la taula\">Divideix la taula</link>"
+msgid "<link href=\"text/swriter/01/05190000.xhp\">Split Table</link>"
+msgstr "<link href=\"text/swriter/01/05190000.xhp\">Divideix la taula</link>"
#. RiuSm
#: 05190000.xhp
@@ -25055,14 +25055,14 @@ msgctxt ""
msgid "<bookmark_value>tables; merging</bookmark_value><bookmark_value>merging; tables</bookmark_value>"
msgstr "<bookmark_value>taules; fusió</bookmark_value><bookmark_value>fusió; taules</bookmark_value>"
-#. SHdXh
+#. DJwCN
#: 05200000.xhp
msgctxt ""
"05200000.xhp\n"
"hd_id3154652\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05200000.xhp\" name=\"Merge Table\">Merge Table</link>"
-msgstr "<link href=\"text/swriter/01/05200000.xhp\" name=\"Fusiona la taula\">Fusiona la taula</link>"
+msgid "<link href=\"text/swriter/01/05200000.xhp\">Merge Table</link>"
+msgstr "<link href=\"text/swriter/01/05200000.xhp\">Fusiona la taula</link>"
#. 7qBjV
#: 05200000.xhp
@@ -25091,13 +25091,13 @@ msgctxt ""
msgid "Hyphenation"
msgstr "Partició de mots"
-#. VBCtx
+#. v7yJY
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
"hd_id3154657\n"
"help.text"
-msgid "<variable id=\"Hyphenationh1\"><link href=\"text/swriter/01/06030000.xhp\" name=\"Hyphenation\">Hyphenation</link></variable>"
+msgid "<variable id=\"Hyphenationh1\"><link href=\"text/swriter/01/06030000.xhp\">Hyphenation</link></variable>"
msgstr ""
#. 7teeb
@@ -25118,14 +25118,14 @@ msgctxt ""
msgid "%PRODUCTNAME searches the document and suggests hyphenation that you can accept or reject. If text is selected, the Hyphenation dialog works on the selected text only. If no text is selected, the Hyphenation dialog works on the whole document."
msgstr ""
-#. AWz4F
+#. SBBBo
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
"par_id3153811\n"
"help.text"
-msgid "To automatically hyphenate the current or selected paragraphs, choose <emph>Format - Paragraph</emph>, and then click the <link href=\"text/swriter/01/05030200.xhp\" name=\"Text Flow\">Text Flow</link> tab. You can also apply automatic hyphenation to a paragraph style. In text where automatic hyphenation is enabled, the Hyphenation dialog will not find any word to hyphenate."
-msgstr "Per partir manualment els paràgrafs actuals o els seleccionats, trieu <emph>Format - Paràgraf</emph> i, a continuació, feu clic a la pestanya <link href=\"text/swriter/01/05030200.xhp\" name=\"Flux de text\">Flux de text</link>. També podeu aplicar la partició automàtica a un estil de paràgraf. Al text en què s'ha habilitat la partició de mots automàtica, el diàleg Partició de mots no trobarà cap paraula per partir."
+msgid "To automatically hyphenate the current or selected paragraphs, choose <emph>Format - Paragraph</emph>, and then click the <link href=\"text/swriter/01/05030200.xhp\">Text Flow</link> tab. You can also apply automatic hyphenation to a paragraph style. In text where automatic hyphenation is enabled, the Hyphenation dialog will not find any word to hyphenate."
+msgstr "Per partir manualment els paràgrafs actuals o els seleccionats, trieu <emph>Format - Paràgraf</emph> i, a continuació, feu clic a la pestanya <link href=\"text/swriter/01/05030200.xhp\">Flux de text</link>. També podeu aplicar la partició automàtica a un estil de paràgraf. Al text en què s'ha habilitat la partició de mots automàtica, el diàleg Partició de mots no trobarà cap paraula per partir."
#. ctZkB
#: 06030000.xhp
@@ -25190,14 +25190,14 @@ msgctxt ""
msgid "To exclude paragraphs from the automatic hyphenation, select the paragraphs, choose <emph>Format - Paragraph</emph>, click the Text Flow tab, and then clear the <emph>Automatically</emph> check box in the Hyphenation area."
msgstr "Per excloure paràgrafs de la partició automàtica de mots, seleccioneu els paràgrafs, trieu <emph>Format - Paràgraf</emph>, feu clic a la pestanya Flux del text i, a continuació, desactiveu la casella de selecció <emph>Automàtica</emph> a l'àrea Partició de mots."
-#. k84at
+#. JePq2
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
"par_id3154276\n"
"help.text"
-msgid "To disable the Hyphenation dialog and always hyphenate automatically, choose <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/01010400.xhp\" name=\"Language Settings - Writing Aids\"><emph>Language Settings - Writing Aids</emph></link>, and select the <emph>Hyphenate without inquiry</emph> check box."
-msgstr "Per a desactivar el diàleg Partició de mots i aplicar sempre la partició de mots automàtica, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010400.xhp\" name=\"Configuració de la llengua ▸ Ajudes a l'escriptura\"><emph>Configuració de la llengua ▸ Ajudes a l'escriptura</emph></link> i activeu la casella de selecció <emph>Parteix els mots sense consultar</emph>."
+msgid "To disable the Hyphenation dialog and always hyphenate automatically, choose <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/01010400.xhp\"><emph>Language Settings - Writing Aids</emph></link>, and select the <emph>Hyphenate without inquiry</emph> check box."
+msgstr "Per a desactivar el diàleg Partició de mots i aplicar sempre la partició de mots automàtica, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010400.xhp\"><emph>Configuració de la llengua ▸ Ajudes a l'escriptura</emph></link> i activeu la casella de selecció <emph>Parteix els mots sense consultar</emph>."
#. nxwSz
#: 06030000.xhp
@@ -25217,13 +25217,13 @@ msgctxt ""
msgid "To insert a non-breaking (protected) hyphen directly in the document, click in the word that you want to hyphenate, and then press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Minus sign(-)."
msgstr ""
-#. 5mUrK
+#. atFAm
#: 06030000.xhp
msgctxt ""
"06030000.xhp\n"
"par_id3154573\n"
"help.text"
-msgid "To hide soft hyphens, choose <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/01040600.xhp\" name=\"Text Document - Formatting Aids\"><emph>%PRODUCTNAME Writer - Formatting Aids</emph></link>, and then clear the <emph>Custom hyphens</emph> check box."
+msgid "To hide soft hyphens, choose <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/01040600.xhp\"><emph>%PRODUCTNAME Writer - Formatting Aids</emph></link>, and then clear the <emph>Custom hyphens</emph> check box."
msgstr ""
#. HxEU3
@@ -25352,14 +25352,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/wordcount/WordCountDialog\">Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection.</ahelp>"
msgstr ""
-#. bCxkx
+#. e9tdK
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_idN1062D\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100400.xhp\" name=\"File - Properties - Statistics\"><menuitem>File - Properties - Statistics</menuitem> </link>"
-msgstr "<link href=\"text/shared/01/01100400.xhp\" name=\"Fitxer ▸ Propietats ▸ Estadístiques\"><menuitem>Fitxer ▸ Propietats ▸ Estadístiques</menuitem></link>"
+msgid "<link href=\"text/shared/01/01100400.xhp\"><menuitem>File - Properties - Statistics</menuitem> </link>"
+msgstr "<link href=\"text/shared/01/01100400.xhp\"><menuitem>Fitxer ▸ Propietats ▸ Estadístiques</menuitem></link>"
#. qinJr
#: 06060000.xhp
@@ -25397,13 +25397,13 @@ msgctxt ""
msgid "Chapter numbering is achieved by assigning paragraph styles to outline levels, and a numbering scheme for each outline level. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline levels (1-10). You can use the dialog to assign a different paragraph style to an outline level."
msgstr ""
-#. DpAKZ
+#. BFnF2
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "<variable id=\"chapter_numbering_tip\">If you want numbered headings, choose <menuitem>Tools - </menuitem><link name=\"chapternumbering\" href=\"text/swriter/01/06060000.xhp#ChapNumh1\"><menuitem>Chapter Numbering</menuitem></link>. This command opens a dialog where numbering schemes can be assigned to paragraph styles used for headings. Do not use the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> icon on the <link href=\"text/swriter/main0202.xhp\" name=\"FormattingBar\">Formatting Bar</link> or the <menuitem>Format - </menuitem><link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><menuitem>Bullets and Numbering</menuitem></link> dialog.</variable>"
+msgid "<variable id=\"chapter_numbering_tip\">If you want numbered headings, choose <menuitem>Tools - </menuitem><link href=\"text/swriter/01/06060000.xhp#ChapNumh1\"><menuitem>Chapter Numbering</menuitem></link>. This command opens a dialog where numbering schemes can be assigned to paragraph styles used for headings. Do not use the <link href=\"text/swriter/02/02110000.xhp\">Toggle Ordered List</link> icon on the <link href=\"text/swriter/main0202.xhp\">Formatting Bar</link> or the <menuitem>Format - </menuitem><link href=\"text/shared/01/06050000.xhp\"><menuitem>Bullets and Numbering</menuitem></link> dialog.</variable>"
msgstr ""
#. DFbiG
@@ -25478,14 +25478,14 @@ msgctxt ""
msgid "Numbering"
msgstr "Numeració"
-#. xBDFz
+#. TZsid
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"hd_id3151387\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"Numbering\">Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060100.xhp\" name=\"Numeració\">Numeració</link>"
+msgid "<link href=\"text/swriter/01/06060100.xhp\">Numbering</link>"
+msgstr "<link href=\"text/swriter/01/06060100.xhp\">Numeració</link>"
#. Va5rw
#: 06060100.xhp
@@ -25766,14 +25766,14 @@ msgctxt ""
msgid "Footnotes/Endnotes Settings"
msgstr "Configuració de les notes al peu i finals"
-#. PTck2
+#. qqYDt
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"hd_id3153004\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06080000.xhp\" name=\"Footnote options\">Footnotes/Endnotes Settings</link>"
-msgstr "<link href=\"text/swriter/01/06080000.xhp\" name=\"Opcions de notes al peu\">Configuració de les notes al peu i finals</link>"
+msgid "<link href=\"text/swriter/01/06080000.xhp\">Footnotes/Endnotes Settings</link>"
+msgstr "<link href=\"text/swriter/01/06080000.xhp\">Configuració de les notes al peu i finals</link>"
#. Qrcaz
#: 06080000.xhp
@@ -25793,13 +25793,13 @@ msgctxt ""
msgid "Footnote Settings"
msgstr ""
-#. yXZUg
+#. NyGVF
#: 06080100.xhp
msgctxt ""
"06080100.xhp\n"
"hd_id3154705\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06080100.xhp\" name=\"Footnotes\">Footnote Settings</link>"
+msgid "<link href=\"text/swriter/01/06080100.xhp\">Footnote Settings</link>"
msgstr ""
#. hBHjS
@@ -25811,13 +25811,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/footnotepage/FootnotePage\">Specifies the formatting for footnotes.</ahelp>"
msgstr ""
-#. JkEHS
+#. BaTT8
#: 06080100.xhp
msgctxt ""
"06080100.xhp\n"
"par_id3154560\n"
"help.text"
-msgid "To set additional option for footnotes, choose <menuitem>Format - Page Style</menuitem>, and then click the <link href=\"text/swriter/01/05040600.xhp\" name=\"Footnote\"><emph>Footnote</emph></link> tab."
+msgid "To set additional option for footnotes, choose <menuitem>Format - Page Style</menuitem>, and then click the <link href=\"text/swriter/01/05040600.xhp\"><emph>Footnote</emph></link> tab."
msgstr ""
#. mGXqS
@@ -26342,13 +26342,13 @@ msgctxt ""
msgid "Endnote Settings"
msgstr ""
-#. i4S6A
+#. uz9Mh
#: 06080200.xhp
msgctxt ""
"06080200.xhp\n"
"hd_id3156321\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06080200.xhp\" name=\"Endnotes\">Endnote Settings</link>"
+msgid "<link href=\"text/swriter/01/06080200.xhp\">Endnote Settings</link>"
msgstr ""
#. sVpC6
@@ -26531,14 +26531,14 @@ msgctxt ""
msgid "<bookmark_value>converting; text, into tables</bookmark_value><bookmark_value>text; converting to tables</bookmark_value><bookmark_value>tables; converting to text</bookmark_value>"
msgstr "<bookmark_value>conversió; text, a taules</bookmark_value><bookmark_value>text; conversió en taules</bookmark_value><bookmark_value>taules; conversió en text</bookmark_value>"
-#. szSE5
+#. Z5tk2
#: 06090000.xhp
msgctxt ""
"06090000.xhp\n"
"hd_id3147402\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06090000.xhp\" name=\"Convert Text to Table\">Convert Text to Table</link>"
-msgstr "<link href=\"text/swriter/01/06090000.xhp\" name=\"Converteix el text en una taula\">Converteix el text en una taula</link>"
+msgid "<link href=\"text/swriter/01/06090000.xhp\">Convert Text to Table</link>"
+msgstr "<link href=\"text/swriter/01/06090000.xhp\">Converteix el text en una taula</link>"
#. sMxFh
#: 06090000.xhp
@@ -27116,14 +27116,14 @@ msgctxt ""
msgid "Calculate"
msgstr "Calcula"
-#. 3PMFF
+#. 2Fc6W
#: 06110000.xhp
msgctxt ""
"06110000.xhp\n"
"hd_id3154505\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06110000.xhp\" name=\"Calculate\">Calculate</link>"
-msgstr "<link href=\"text/swriter/01/06110000.xhp\" name=\"Calcula\">Calcula</link>"
+msgid "<link href=\"text/swriter/01/06110000.xhp\">Calculate</link>"
+msgstr "<link href=\"text/swriter/01/06110000.xhp\">Calcula</link>"
#. yzg8C
#: 06110000.xhp
@@ -27143,14 +27143,14 @@ msgctxt ""
msgid "Page Formatting"
msgstr "Formatació de la pàgina"
-#. J8yWK
+#. Vku4B
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"hd_id3155961\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06120000.xhp\" name=\"Page Formatting\">Page Formatting</link>"
-msgstr "<link href=\"text/swriter/01/06120000.xhp\" name=\"Formatació de la pàgina\">Formatació de la pàgina</link>"
+msgid "<link href=\"text/swriter/01/06120000.xhp\">Page Formatting</link>"
+msgstr "<link href=\"text/swriter/01/06120000.xhp\">Formatació de la pàgina</link>"
#. zQpK8
#: 06120000.xhp
@@ -27179,14 +27179,14 @@ msgctxt ""
msgid "Current Index"
msgstr "Índex actual"
-#. zVwF6
+#. 2FaEC
#: 06160000.xhp
msgctxt ""
"06160000.xhp\n"
"hd_id3154704\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06160000.xhp\" name=\"Current Index\">Current Index</link>"
-msgstr "<link href=\"text/swriter/01/06160000.xhp\" name=\"Índex actual\">Índex actual</link>"
+msgid "<link href=\"text/swriter/01/06160000.xhp\">Current Index</link>"
+msgstr "<link href=\"text/swriter/01/06160000.xhp\">Índex actual</link>"
#. iMkmd
#: 06160000.xhp
@@ -27251,14 +27251,14 @@ msgctxt ""
msgid "All Indexes and Tables"
msgstr "Tots els índexs i les taules"
-#. CkCEA
+#. EaDB5
#: 06170000.xhp
msgctxt ""
"06170000.xhp\n"
"hd_id3149875\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06170000.xhp\" name=\"All Indexes and Tables\">All Indexes and Tables</link>"
-msgstr "<link href=\"text/swriter/01/06170000.xhp\" name=\"Tots els índexs i les taules\">Tots els índexs i les taules</link>"
+msgid "<link href=\"text/swriter/01/06170000.xhp\">All Indexes and Tables</link>"
+msgstr "<link href=\"text/swriter/01/06170000.xhp\">Tots els índexs i les taules</link>"
#. FjJnf
#: 06170000.xhp
@@ -27539,13 +27539,13 @@ msgctxt ""
msgid "Lines in frames"
msgstr ""
-#. 52nQd
+#. bkq2m
#: 06180000.xhp
msgctxt ""
"06180000.xhp\n"
"par_id3150995\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/linenumbering/linesintextframes\">Adds line numbers to text in frames. The numbering restarts in each frame, and is excluded from the line count in the main text area of the document.</ahelp> In <link href=\"text/swriter/02/03210000.xhp\" name=\"linked frames\">linked frames</link>, the numbering is not restarted."
+msgid "<ahelp hid=\"modules/swriter/ui/linenumbering/linesintextframes\">Adds line numbers to text in frames. The numbering restarts in each frame, and is excluded from the line count in the main text area of the document.</ahelp> In <link href=\"text/swriter/02/03210000.xhp\">linked frames</link>, the numbering is not restarted."
msgstr ""
#. C8CwD
@@ -27575,14 +27575,14 @@ msgctxt ""
msgid "Update All"
msgstr "Actualitza-ho tot"
-#. vmZEx
+#. V7W8J
#: 06190000.xhp
msgctxt ""
"06190000.xhp\n"
"hd_id3145824\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06190000.xhp\" name=\"Update All\">Update All</link>"
-msgstr "<link href=\"text/swriter/01/06190000.xhp\" name=\"Actualitza-ho tot\">Actualitza-ho tot</link>"
+msgid "<link href=\"text/swriter/01/06190000.xhp\">Update All</link>"
+msgstr "<link href=\"text/swriter/01/06190000.xhp\">Actualitza-ho tot</link>"
#. BET9U
#: 06190000.xhp
@@ -27602,14 +27602,14 @@ msgctxt ""
msgid "Fields"
msgstr "Camps"
-#. DFJpc
+#. Rej5r
#: 06200000.xhp
msgctxt ""
"06200000.xhp\n"
"hd_id3083281\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06200000.xhp\" name=\"Fields\">Fields</link>"
-msgstr "<link href=\"text/swriter/01/06200000.xhp\" name=\"Camps\">Camps</link>"
+msgid "<link href=\"text/swriter/01/06200000.xhp\">Fields</link>"
+msgstr "<link href=\"text/swriter/01/06200000.xhp\">Camps</link>"
#. cquYo
#: 06200000.xhp
@@ -27629,14 +27629,14 @@ msgctxt ""
msgid "Links"
msgstr "Enllaços"
-#. meuDw
+#. oDTjv
#: 06210000.xhp
msgctxt ""
"06210000.xhp\n"
"hd_id3155962\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06210000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/swriter/01/06210000.xhp\" name=\"Enllaços\">Enllaços</link>"
+msgid "<link href=\"text/swriter/01/06210000.xhp\">Links</link>"
+msgstr "<link href=\"text/swriter/01/06210000.xhp\">Enllaços</link>"
#. 2G3yj
#: 06210000.xhp
@@ -27656,14 +27656,14 @@ msgctxt ""
msgid "All Charts"
msgstr "Tots els diagrames"
-#. vWwBC
+#. GR8wE
#: 06220000.xhp
msgctxt ""
"06220000.xhp\n"
"hd_id3155959\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06220000.xhp\" name=\"All Charts\">All Charts</link>"
-msgstr "<link href=\"text/swriter/01/06220000.xhp\" name=\"Tots els diagrames\">Tots els diagrames</link>"
+msgid "<link href=\"text/swriter/01/06220000.xhp\">All Charts</link>"
+msgstr "<link href=\"text/swriter/01/06220000.xhp\">Tots els diagrames</link>"
#. BNhKJ
#: 06220000.xhp
@@ -27692,14 +27692,14 @@ msgctxt ""
msgid "<bookmark_value>updating; text documents</bookmark_value>"
msgstr "<bookmark_value>actualització; documents de text</bookmark_value>"
-#. RAN6o
+#. 4z58V
#: 06990000.xhp
msgctxt ""
"06990000.xhp\n"
"hd_id3154704\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06990000.xhp\" name=\"Update\">Update</link>"
-msgstr "<link href=\"text/swriter/01/06990000.xhp\" name=\"Actualitza\">Actualitza</link>"
+msgid "<link href=\"text/swriter/01/06990000.xhp\">Update</link>"
+msgstr "<link href=\"text/swriter/01/06990000.xhp\">Actualitza</link>"
#. ChDDB
#: 06990000.xhp
@@ -27728,13 +27728,13 @@ msgctxt ""
msgid "<bookmark_value>accessibility;check in text document</bookmark_value> <bookmark_value>PDF/UA;check</bookmark_value>"
msgstr ""
-#. M96s3
+#. 9MTFg
#: accessibility_check.xhp
msgctxt ""
"accessibility_check.xhp\n"
"hd_id771630940172827\n"
"help.text"
-msgid "<variable id=\"accessibilitycheckh1\"><link href=\"text/swriter/01/accessibility_check.xhp\" name=\"Accessibility Check\">Accessibility Check</link></variable>"
+msgid "<variable id=\"accessibilitycheckh1\"><link href=\"text/swriter/01/accessibility_check.xhp\">Accessibility Check</link></variable>"
msgstr ""
#. yT4uv
@@ -28106,13 +28106,13 @@ msgctxt ""
msgid "Reference (Edit)"
msgstr ""
-#. ZYTrb
+#. 7DnD9
#: edit_reference_submenu.xhp
msgctxt ""
"edit_reference_submenu.xhp\n"
"hd_id1001603128268578\n"
"help.text"
-msgid "<link href=\"text/swriter/01/edit_reference_submenu.xhp\" name=\"editreference\">Reference</link>"
+msgid "<link href=\"text/swriter/01/edit_reference_submenu.xhp\">Reference</link>"
msgstr ""
#. 6LFFX
@@ -28124,31 +28124,31 @@ msgctxt ""
msgid "A submenu that offers possibilities to edit footnotes, endnotes, index entries, and bibliography entries."
msgstr ""
-#. vfaCD
+#. 4WjGu
#: edit_reference_submenu.xhp
msgctxt ""
"edit_reference_submenu.xhp\n"
"hd_id3147302\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02150000.xhp\" name=\"Footnotes\">Footnote or Endnote</link>"
+msgid "<link href=\"text/swriter/01/02150000.xhp\">Footnote or Endnote</link>"
msgstr ""
-#. RKfyJ
+#. 9b7ep
#: edit_reference_submenu.xhp
msgctxt ""
"edit_reference_submenu.xhp\n"
"hd_id3147327\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02160000.xhp\" name=\"Index Entry\">Index Entry</link>"
+msgid "<link href=\"text/swriter/01/02160000.xhp\">Index Entry</link>"
msgstr ""
-#. cH3QF
+#. p7mQW
#: edit_reference_submenu.xhp
msgctxt ""
"edit_reference_submenu.xhp\n"
"hd_id3147352\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Bibliography Entry</link>"
+msgid "<link href=\"text/swriter/01/02130000.xhp\">Bibliography Entry</link>"
msgstr ""
#. YwkE4
@@ -28214,22 +28214,22 @@ msgctxt ""
msgid "<bookmark_value>numbering;OpenOffice.org</bookmark_value><bookmark_value>OpenOffice.org legacy numbering</bookmark_value>"
msgstr ""
-#. 6EfGu
+#. 9c8uT
#: legacynumbering.xhp
msgctxt ""
"legacynumbering.xhp\n"
"hd_id761579742307751\n"
"help.text"
-msgid "<variable id=\"legacynumberingh1\"><link href=\"text/swriter/01/legacynumbering.xhp\" name=\"legacy numbering\">Position (List Styles - Legacy)</link></variable>"
+msgid "<variable id=\"legacynumberingh1\"><link href=\"text/swriter/01/legacynumbering.xhp\">Position (List Styles - Legacy)</link></variable>"
msgstr ""
-#. VFBKw
+#. 2hRMx
#: legacynumbering.xhp
msgctxt ""
"legacynumbering.xhp\n"
"par_id5004119\n"
"help.text"
-msgid "%PRODUCTNAME Writer uses the position controls shown here when opening documents that use a different method for positioning and spacing. For default controls see <link href=\"text/shared/01/06050600.xhp\" name=\"LO-numbering-alignment\">Position (List Styles)</link>."
+msgid "%PRODUCTNAME Writer uses the position controls shown here when opening documents that use a different method for positioning and spacing. For default controls see <link href=\"text/shared/01/06050600.xhp\">Position (List Styles)</link>."
msgstr ""
#. VAeg9
@@ -28313,32 +28313,32 @@ msgctxt ""
msgid "Aligns the numbering symbol left, center, or right in the numbering area. The position might be adjusted to maintain the minimum space."
msgstr ""
-#. VPLZn
+#. e8UNd
#: legacynumbering.xhp
msgctxt ""
"legacynumbering.xhp\n"
"par_id3116235\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"LO numbering alignment\">Position (List Styles)</link>"
+msgid "<link href=\"text/shared/01/06050600.xhp\">Position (List Styles)</link>"
msgstr ""
-#. bETAX
+#. wf4DY
#: legacynumbering.xhp
msgctxt ""
"legacynumbering.xhp\n"
"par_id3199228\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=\"Alineació de paràgrafs\">Alineació de paràgrafs</link>"
+msgid "<link href=\"text/shared/01/05030700.xhp\">Paragraph alignment</link>"
+msgstr "<link href=\"text/shared/01/05030700.xhp\">Alineació de paràgrafs</link>"
-#. zgLgx
+#. wPWGv
#: legacynumbering.xhp
msgctxt ""
"legacynumbering.xhp\n"
"par_id3194378\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/indenting.xhp\" name=\"Paragraph indenting\">Indenting Paragraphs</link>"
-msgstr "<link href=\"text/swriter/guide/indenting.xhp\" name=\"Sagnat de paràgrafs\">Sagnat de paràgrafs</link>"
+msgid "<link href=\"text/swriter/guide/indenting.xhp\">Indenting Paragraphs</link>"
+msgstr "<link href=\"text/swriter/guide/indenting.xhp\">Sagnat de paràgrafs</link>"
#. mtBWM
#: mailmerge00.xhp
@@ -28376,13 +28376,13 @@ msgctxt ""
msgid "Before starting the Mail Merge Wizard you might want to review the whole process of creating a mail merge:"
msgstr "Abans d'iniciar l'auxiliar de combinació de correu, potser voldreu revisar tot el procediment de creació d'una combinació de correu:"
-#. ERVrb
+#. XKDqq
#: mailmerge00.xhp
msgctxt ""
"mailmerge00.xhp\n"
"par_idN105CC\n"
"help.text"
-msgid "First step: <link href=\"text/swriter/01/mailmerge01.xhp\" name=\"Mail Merge Wizard - Select starting document\">Mail Merge Wizard - Select starting document</link>."
+msgid "First step: <link href=\"text/swriter/01/mailmerge01.xhp\">Mail Merge Wizard - Select starting document</link>."
msgstr ""
#. tXUcc
@@ -28556,13 +28556,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the document.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccioneu el document.</ahelp>"
-#. hk7rK
+#. KdLRF
#: mailmerge01.xhp
msgctxt ""
"mailmerge01.xhp\n"
"par_idN1058B\n"
"help.text"
-msgid "Next step: <link href=\"text/swriter/01/mailmerge02.xhp\" name=\"Mail Merge Wizard - Document type\">Mail Merge Wizard - Select document type</link>"
+msgid "Next step: <link href=\"text/swriter/01/mailmerge02.xhp\">Mail Merge Wizard - Select document type</link>"
msgstr ""
#. FHnDY
@@ -28637,13 +28637,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Creates mail merge documents that you can send as an email message or an email attachment.</ahelp>"
msgstr ""
-#. 8sABv
+#. Bp8da
#: mailmerge02.xhp
msgctxt ""
"mailmerge02.xhp\n"
"par_idN10572\n"
"help.text"
-msgid "Next step: <link href=\"text/swriter/01/mailmerge03.xhp\" name=\"Mail Merge Wizard - Addresses\">Mail Merge Wizard - Addresses</link>"
+msgid "Next step: <link href=\"text/swriter/01/mailmerge03.xhp\">Mail Merge Wizard - Addresses</link>"
msgstr ""
#. 44eW3
@@ -28853,14 +28853,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Use the browse buttons to preview the information from the previous or next data record.</ahelp>"
msgstr "<ahelp hid=\".\">Utilitzeu els botons de navegació per previsualitzar la informació dels registres de dades anteriors o següents.</ahelp>"
-#. YXk87
+#. AyUJB
#: mailmerge03.xhp
msgctxt ""
"mailmerge03.xhp\n"
"par_idN105B8\n"
"help.text"
-msgid "Next step: <link href=\"text/swriter/01/mailmerge04.xhp\" name=\"Mail Merge Wizard - Create salutation\">Mail Merge Wizard - Create salutation</link>"
-msgstr "Pas següent: <link href=\"text/swriter/01/mailmerge04.xhp\" name=\"Auxiliar de combinació de correu ▸ Crea una salutació\">Auxiliar de combinació de correu ▸ Crea una salutació</link>"
+msgid "Next step: <link href=\"text/swriter/01/mailmerge04.xhp\">Mail Merge Wizard - Create salutation</link>"
+msgstr "Pas següent: <link href=\"text/swriter/01/mailmerge04.xhp\">Auxiliar de combinació de correu ▸ Crea una salutació</link>"
#. eE6mN
#: mailmerge03.xhp
@@ -29123,14 +29123,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Use the browse buttons to preview the information from the previous or next data record.</ahelp>"
msgstr "<ahelp hid=\".\">Utilitzeu els botons de navegació per previsualitzar la informació dels registres de dades anteriors o següents.</ahelp>"
-#. jbNCg
+#. pWg98
#: mailmerge04.xhp
msgctxt ""
"mailmerge04.xhp\n"
"par_idN105D4\n"
"help.text"
-msgid "Next step: <link href=\"text/swriter/01/mailmerge05.xhp\" name=\"Mail Merge Wizard - Adjust layout\">Mail Merge Wizard - Adjust layout</link>"
-msgstr "Pas següent <link href=\"text/swriter/01/mailmerge05.xhp\" name=\"Auxiliar de combinació de correu ▸ Ajusta la disposició\">Auxiliar de combinació de correu ▸ Ajusta la disposició</link>"
+msgid "Next step: <link href=\"text/swriter/01/mailmerge05.xhp\">Mail Merge Wizard - Adjust layout</link>"
+msgstr "Pas següent <link href=\"text/swriter/01/mailmerge05.xhp\">Auxiliar de combinació de correu ▸ Ajusta la disposició</link>"
#. A52ij
#: mailmerge04.xhp
@@ -31499,49 +31499,49 @@ msgctxt ""
msgid "Folded outline contents will <emph>not</emph> be printed or exported to PDF."
msgstr ""
-#. RQvTc
+#. G6D2k
#: outlinecontent_visibility.xhp
msgctxt ""
"outlinecontent_visibility.xhp\n"
"par_id981604412273516\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"outlinelevel\">Set Paragraph Outline Level</link>"
+msgid "<link href=\"text/swriter/01/05030800.xhp\">Set Paragraph Outline Level</link>"
msgstr ""
-#. By4tx
+#. UizRr
#: outlinecontent_visibility.xhp
msgctxt ""
"outlinecontent_visibility.xhp\n"
"par_id31604412603892\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06060100.xhp\" name=\"chapnumbering\">Modify Outline Levels for Headings</link>"
+msgid "<link href=\"text/swriter/01/06060100.xhp\">Modify Outline Levels for Headings</link>"
msgstr ""
-#. GFNAq
+#. oBhJc
#: outlinecontent_visibility.xhp
msgctxt ""
"outlinecontent_visibility.xhp\n"
"par_id401603926410184\n"
"help.text"
-msgid "<link href=\"text/shared/guide/edit_symbolbar\" name=\"addbutton\">Adding a Button to a Toolbar</link>"
+msgid "<link href=\"text/shared/guide/edit_symbolbar\">Adding a Button to a Toolbar</link>"
msgstr ""
-#. UEKDH
+#. F4BEy
#: outlinecontent_visibility.xhp
msgctxt ""
"outlinecontent_visibility.xhp\n"
"par_id271604411886782\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"modifymenu\">Customizing a Context Menu</link>"
+msgid "<link href=\"text/shared/01/06140300.xhp\">Customizing a Context Menu</link>"
msgstr ""
-#. ucbYZ
+#. eCBKE
#: outlinecontent_visibility.xhp
msgctxt ""
"outlinecontent_visibility.xhp\n"
"par_id251603931664784\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgid "<link href=\"text/shared/01/06140200.xhp\">Making a Shortcut Key</link>"
msgstr ""
#. o5ZPq
@@ -31562,13 +31562,13 @@ msgctxt ""
msgid "<bookmark_value>protection;fields in text documents</bookmark_value><bookmark_value>protection;bookmarks in text documents</bookmark_value>"
msgstr ""
-#. iNpsr
+#. DmxnB
#: protectdocument.xhp
msgctxt ""
"protectdocument.xhp\n"
"hd_id631630954633446\n"
"help.text"
-msgid "<link href=\"text/swriter/01/protectdocument.xhp\" name=\"Protect Document\">Protect Document</link>"
+msgid "<link href=\"text/swriter/01/protectdocument.xhp\">Protect Document</link>"
msgstr ""
#. NTd9C
@@ -31688,13 +31688,13 @@ msgctxt ""
msgid "Show Whitespace"
msgstr ""
-#. Bb74x
+#. Djwxy
#: show_whitespace.xhp
msgctxt ""
"show_whitespace.xhp\n"
"hd_id11629893531856\n"
"help.text"
-msgid "<link href=\"text/swriter/01/show_whitespace.xhp\" name=\"show_whitespace\">Show Whitespace</link>"
+msgid "<link href=\"text/swriter/01/show_whitespace.xhp\">Show Whitespace</link>"
msgstr ""
#. 9GHq6
@@ -31724,13 +31724,13 @@ msgctxt ""
msgid "<bookmark_value>styles;inspector</bookmark_value><bookmark_value>style inspector</bookmark_value>"
msgstr ""
-#. rZsCG
+#. XPep2
#: style_inspector.xhp
msgctxt ""
"style_inspector.xhp\n"
"hd_id741641334466741\n"
"help.text"
-msgid "<link href=\"text/swriter/01/style_inspector.xhp\" name=\"Style Inspector\">Style Inspector</link>"
+msgid "<link href=\"text/swriter/01/style_inspector.xhp\">Style Inspector</link>"
msgstr ""
#. NixhW
@@ -31949,31 +31949,31 @@ msgctxt ""
msgid "Custom color metadata field shadings can be set for an annotated text range or a metadata field, for visualization of metadata categories in the document editor. Use <menuitem>View - Field Shadings</menuitem> or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode> to disable or enable these field shadings."
msgstr ""
-#. PXGpD
+#. GfDYC
#: style_inspector.xhp
msgctxt ""
"style_inspector.xhp\n"
"par_id261641340112608\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.1#Style_inspector\" name=\"rel71\">Release notes for Style Inspector</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.1#Style_inspector\">Release notes for Style Inspector</link>"
msgstr ""
-#. DfEhN
+#. DWCGS
#: style_inspector.xhp
msgctxt ""
"style_inspector.xhp\n"
"par_id601641340196019\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.2#RDF_metadata_in_Style_Inspector\" name=\"rdfmetadata\">RDF Metadata in Style Inspector</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.2#RDF_metadata_in_Style_Inspector\">RDF Metadata in Style Inspector</link>"
msgstr ""
-#. FttEa
+#. AqRAE
#: style_inspector.xhp
msgctxt ""
"style_inspector.xhp\n"
"par_id731641340265093\n"
"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.2#Custom_color_metadata_field_shadings\" name=\"customcolormetadata\">Custom color metadata</link>"
+msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.2#Custom_color_metadata_field_shadings\">Custom color metadata</link>"
msgstr ""
#. wDniB
@@ -32318,14 +32318,14 @@ msgctxt ""
msgid "Page Watermark"
msgstr "Marca d'aigua per a les pàgines"
-#. yfeys
+#. DCrVm
#: watermark.xhp
msgctxt ""
"watermark.xhp\n"
"hd_id781516897374563\n"
"help.text"
-msgid "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Page Watermark</link>"
-msgstr "<link href=\"text/swriter/01/watermark.xhp\" name=\"Marca d'aigua\">Marca d'aigua per a les pàgines</link>"
+msgid "<link href=\"text/swriter/01/watermark.xhp\">Page Watermark</link>"
+msgstr "<link href=\"text/swriter/01/watermark.xhp\">Marca d'aigua per a les pàgines</link>"
#. xcKBy
#: watermark.xhp
@@ -32498,29 +32498,29 @@ msgctxt ""
msgid "To change a watermark contents or setting."
msgstr ""
-#. cJGne
+#. YAnUx
#: watermark.xhp
msgctxt ""
"watermark.xhp\n"
"par_id831516906589936\n"
"help.text"
-msgid "If the watermark in use is a text inserted by the <item type=\"menuitem\">Format - Watermark</item> menu command or by the <link href=\"text/shared/01/classificationbar.xhp\" name=\"classification bar\">document classification settings</link>, you can edit the contents and settings on opening the watermark dialog."
+msgid "If the watermark in use is a text inserted by the <item type=\"menuitem\">Format - Watermark</item> menu command or by the <link href=\"text/shared/01/classificationbar.xhp\">document classification settings</link>, you can edit the contents and settings on opening the watermark dialog."
msgstr ""
-#. L3tEf
+#. FuP8D
#: watermark.xhp
msgctxt ""
"watermark.xhp\n"
"par_id611516900724619\n"
"help.text"
-msgid "<link href=\"text/shared/01/classificationbar.xhp#bm_id030820161856432825\" name=\"classification watermark\">Document classification watermarks</link>"
+msgid "<link href=\"text/shared/01/classificationbar.xhp#bm_id030820161856432825\">Document classification watermarks</link>"
msgstr ""
-#. j3eBF
+#. auCoB
#: watermark.xhp
msgctxt ""
"watermark.xhp\n"
"par_id891516901777257\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/pagebackground.xhp#bm_id8431653\" name=\"page background\">Page background</link>"
-msgstr "<link href=\"text/swriter/guide/pagebackground.xhp#bm_id8431653\" name=\"Fons de la pàgina\">Fons de la pàgina</link>"
+msgid "<link href=\"text/swriter/guide/pagebackground.xhp#bm_id8431653\">Page background</link>"
+msgstr "<link href=\"text/swriter/guide/pagebackground.xhp#bm_id8431653\">Fons de la pàgina</link>"
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/02.po b/source/ca-valencia/helpcontent2/source/text/swriter/02.po
index 1e2528e81ea..c19d4e814a1 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/02.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/ca_VALENCIA/>\n"
@@ -26,13 +26,13 @@ msgctxt ""
msgid "Toggle Ordered List"
msgstr ""
-#. z8hCm
+#. QF2ZL
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3150220\n"
"help.text"
-msgid "<variable id=\"numberingh1\"><link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Toggle Ordered List</link></variable>"
+msgid "<variable id=\"numberingh1\"><link href=\"text/swriter/02/02110000.xhp\">Toggle Ordered List</link></variable>"
msgstr ""
#. ABQAW
@@ -53,14 +53,14 @@ msgctxt ""
msgid "To define the numbering format, choose <emph>Format - Bullets and Numbering</emph>. To display the <emph>Bullets and Numbering</emph> Bar, choose <emph>View - Toolbars - Bullets and Numbering</emph>."
msgstr ""
-#. 8MND6
+#. mLmDR
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150952\n"
"help.text"
-msgid "Some of the bullets and numbering options are not available when working in the <link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\">Web Layout</link>."
-msgstr "Algunes opcions de pics i numeració no estan disponibles quan es treballa amb <link href=\"text/swriter/01/03120000.xhp\" name=\"Format web\">Format web</link>."
+msgid "Some of the bullets and numbering options are not available when working in the <link href=\"text/swriter/01/03120000.xhp\">Web Layout</link>."
+msgstr "Algunes opcions de pics i numeració no estan disponibles quan es treballa amb <link href=\"text/swriter/01/03120000.xhp\">Format web</link>."
#. dwn77
#: 02110000.xhp
@@ -80,14 +80,14 @@ msgctxt ""
msgid "Toggle Ordered List"
msgstr ""
-#. fVWig
+#. AMB3E
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3147549\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Bullets and Numbering\">Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Pics i numeració\">Pics i numeració</link>"
+msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\">Pics i numeració</link>"
#. vCvMN
#: 03210000.xhp
@@ -98,13 +98,13 @@ msgctxt ""
msgid "Link Frames"
msgstr ""
-#. YvD8B
+#. yDnvB
#: 03210000.xhp
msgctxt ""
"03210000.xhp\n"
"hd_id3148869\n"
"help.text"
-msgid "<link href=\"text/swriter/02/03210000.xhp\" name=\"Link\">Link Frames</link>"
+msgid "<link href=\"text/swriter/02/03210000.xhp\">Link Frames</link>"
msgstr ""
#. HhxBu
@@ -170,14 +170,14 @@ msgctxt ""
msgid "<bookmark_value>frames;unlinking</bookmark_value><bookmark_value>unlinking frames</bookmark_value>"
msgstr "<bookmark_value>marcs; desenllaç</bookmark_value><bookmark_value>desenllaç de marcs</bookmark_value>"
-#. bzyeh
+#. mDTZs
#: 03220000.xhp
msgctxt ""
"03220000.xhp\n"
"hd_id3151188\n"
"help.text"
-msgid "<link href=\"text/swriter/02/03220000.xhp\" name=\"Unlink Frames\">Unlink Frames</link>"
-msgstr "<link href=\"text/swriter/02/03220000.xhp\" name=\"Desenllaça els marcs\">Desenllaça els marcs</link>"
+msgid "<link href=\"text/swriter/02/03220000.xhp\">Unlink Frames</link>"
+msgstr "<link href=\"text/swriter/02/03220000.xhp\">Desenllaça els marcs</link>"
#. DMdUB
#: 03220000.xhp
@@ -224,14 +224,14 @@ msgctxt ""
msgid "<bookmark_value>tables; inserting rows</bookmark_value><bookmark_value>rows; inserting in tables, using icon</bookmark_value>"
msgstr "<bookmark_value>taules; inserció de files</bookmark_value><bookmark_value>files; inserció en taules, utilitzant la icona</bookmark_value>"
-#. m6B7t
+#. W9zgL
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
"hd_id3154838\n"
"help.text"
-msgid "<link href=\"text/swriter/02/04090000.xhp\" name=\"Insert Rows\">Insert Rows</link>"
-msgstr "<link href=\"text/swriter/02/04090000.xhp\" name=\"Insereix files\">Insereix files</link>"
+msgid "<link href=\"text/swriter/02/04090000.xhp\">Insert Rows</link>"
+msgstr "<link href=\"text/swriter/02/04090000.xhp\">Insereix files</link>"
#. 46DLZ
#: 04090000.xhp
@@ -278,14 +278,14 @@ msgctxt ""
msgid "<bookmark_value>tables; inserting columns in</bookmark_value><bookmark_value>columns; inserting in tables</bookmark_value>"
msgstr "<bookmark_value>taules; inserció de columnes</bookmark_value><bookmark_value>columnes; inserció a les taules</bookmark_value>"
-#. iyrEC
+#. TJe6s
#: 04100000.xhp
msgctxt ""
"04100000.xhp\n"
"hd_id3152899\n"
"help.text"
-msgid "<link href=\"text/swriter/02/04100000.xhp\" name=\"Insert Column\">Insert Column</link>"
-msgstr "<link href=\"text/swriter/02/04100000.xhp\" name=\"Insereix una columna\">Insereix una columna</link>"
+msgid "<link href=\"text/swriter/02/04100000.xhp\">Insert Column</link>"
+msgstr "<link href=\"text/swriter/02/04100000.xhp\">Insereix una columna</link>"
#. K7GFa
#: 04100000.xhp
@@ -323,14 +323,14 @@ msgctxt ""
msgid "Table: Fixed"
msgstr "Taula: fixa"
-#. vdSmC
+#. pdkkr
#: 04220000.xhp
msgctxt ""
"04220000.xhp\n"
"hd_id3151187\n"
"help.text"
-msgid "<link href=\"text/swriter/02/04220000.xhp\" name=\"Table: Fixed\">Table: Fixed</link>"
-msgstr "<link href=\"text/swriter/02/04220000.xhp\" name=\"Taula: fixada\">Taula: fixa</link>"
+msgid "<link href=\"text/swriter/02/04220000.xhp\">Table: Fixed</link>"
+msgstr "<link href=\"text/swriter/02/04220000.xhp\">Taula: fixa</link>"
#. ACJtt
#: 04220000.xhp
@@ -368,14 +368,14 @@ msgctxt ""
msgid "Table: Fixed, Proportional"
msgstr "Taula: fixa, proporcional"
-#. 8aBeG
+#. ovm4D
#: 04230000.xhp
msgctxt ""
"04230000.xhp\n"
"hd_id3147169\n"
"help.text"
-msgid "<link href=\"text/swriter/02/04230000.xhp\" name=\"Table: Fixed, Proportional\">Table: Fixed, Proportional</link>"
-msgstr "<link href=\"text/swriter/02/04230000.xhp\" name=\"Taula: fixada, proporcional\">Taula: fixa, proporcional</link>"
+msgid "<link href=\"text/swriter/02/04230000.xhp\">Table: Fixed, Proportional</link>"
+msgstr "<link href=\"text/swriter/02/04230000.xhp\">Taula: fixa, proporcional</link>"
#. TXCTY
#: 04230000.xhp
@@ -413,14 +413,14 @@ msgctxt ""
msgid "Table: Variable"
msgstr "Taula: variable"
-#. NFEkc
+#. wdjWM
#: 04240000.xhp
msgctxt ""
"04240000.xhp\n"
"hd_id3154501\n"
"help.text"
-msgid "<link href=\"text/swriter/02/04240000.xhp\" name=\"Table: Variable\">Table: Variable</link>"
-msgstr "<link href=\"text/swriter/02/04240000.xhp\" name=\"Taula: variable\">Taula: variable</link>"
+msgid "<link href=\"text/swriter/02/04240000.xhp\">Table: Variable</link>"
+msgstr "<link href=\"text/swriter/02/04240000.xhp\">Taula: variable</link>"
#. GKKgd
#: 04240000.xhp
@@ -458,14 +458,14 @@ msgctxt ""
msgid "Sum"
msgstr "Suma"
-#. qLF6H
+#. WB2ER
#: 04250000.xhp
msgctxt ""
"04250000.xhp\n"
"hd_id3143232\n"
"help.text"
-msgid "<link href=\"text/swriter/02/04250000.xhp\" name=\"Sum\">Sum</link>"
-msgstr "<link href=\"text/swriter/02/04250000.xhp\" name=\"Suma\">Suma</link>"
+msgid "<link href=\"text/swriter/02/04250000.xhp\">Sum</link>"
+msgstr "<link href=\"text/swriter/02/04250000.xhp\">Suma</link>"
#. BycTx
#: 04250000.xhp
@@ -521,13 +521,13 @@ msgctxt ""
msgid "No List"
msgstr ""
-#. wCBAJ
+#. QGkTU
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"hd_id3145822\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">No List</link>"
+msgid "<link href=\"text/swriter/02/06040000.xhp\">No List</link>"
msgstr ""
#. MPBzT
@@ -575,13 +575,13 @@ msgctxt ""
msgid "Demote Outline Level with Subpoints"
msgstr ""
-#. MDWt6
+#. JVsVH
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
"hd_id3145826\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06070000.xhp\" name=\"Demote One Level With Subpoints\">Demote Outline Level with Subpoints</link>"
+msgid "<link href=\"text/swriter/02/06070000.xhp\">Demote Outline Level with Subpoints</link>"
msgstr ""
#. eFSaF
@@ -620,13 +620,13 @@ msgctxt ""
msgid "Promote Outline Level With Subpoints"
msgstr ""
-#. fWXrs
+#. Gkdat
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"hd_id3154507\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06080000.xhp\" name=\"Promote One Level With Subpoints\">Promote Outline Level With Subpoints</link>"
+msgid "<link href=\"text/swriter/02/06080000.xhp\">Promote Outline Level With Subpoints</link>"
msgstr ""
#. KkHwc
@@ -665,14 +665,14 @@ msgctxt ""
msgid "Insert Unnumbered Entry"
msgstr "Insereix una entrada no numerada"
-#. dFea2
+#. SBEu5
#: 06090000.xhp
msgctxt ""
"06090000.xhp\n"
"hd_id3154505\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06090000.xhp\" name=\"Insert Unnumbered Entry\">Insert Unnumbered Entry</link>"
-msgstr "<link href=\"text/swriter/02/06090000.xhp\" name=\"Insereix una entrada no numerada\">Insereix una entrada no numerada</link>"
+msgid "<link href=\"text/swriter/02/06090000.xhp\">Insert Unnumbered Entry</link>"
+msgstr "<link href=\"text/swriter/02/06090000.xhp\">Insereix una entrada no numerada</link>"
#. WX5QJ
#: 06090000.xhp
@@ -710,13 +710,13 @@ msgctxt ""
msgid "Move Item Up with Subpoints"
msgstr ""
-#. 5eUkr
+#. AF9FJ
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"hd_id3147174\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06120000.xhp\" name=\"Move Up with Subpoints\">Move Item Up with Subpoints</link>"
+msgid "<link href=\"text/swriter/02/06120000.xhp\">Move Item Up with Subpoints</link>"
msgstr ""
#. tHDTp
@@ -755,13 +755,13 @@ msgctxt ""
msgid "Move Item Down with Subpoints"
msgstr ""
-#. hdGbN
+#. ByHPH
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
"hd_id3154501\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06130000.xhp\" name=\"Move Down with Subpoints\">Move Item Down with Subpoints</link>"
+msgid "<link href=\"text/swriter/02/06130000.xhp\">Move Item Down with Subpoints</link>"
msgstr ""
#. nLCpV
@@ -800,14 +800,14 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "Reinicia la numeració"
-#. 6KxFj
+#. HqgkP
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"hd_id3147171\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06140000.xhp\" name=\"Restart Numbering\">Restart Numbering</link>"
-msgstr "<link href=\"text/swriter/02/06140000.xhp\" name=\"Reinicia la numeració\">Reinicia la numeració</link>"
+msgid "<link href=\"text/swriter/02/06140000.xhp\">Restart Numbering</link>"
+msgstr "<link href=\"text/swriter/02/06140000.xhp\">Reinicia la numeració</link>"
#. iwJHH
#: 06140000.xhp
@@ -836,13 +836,13 @@ msgctxt ""
msgid "Place cursor in a list paragraph, right-click and choose <menuitem>List - Restart Numbering</menuitem>."
msgstr ""
-#. RgibL
+#. bahpE
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id351616370727010\n"
"help.text"
-msgid "On <link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><emph>Bullets and Numbering</emph></link> bar, click"
+msgid "On <link href=\"text/shared/01/06050000.xhp\"><emph>Bullets and Numbering</emph></link> bar, click"
msgstr ""
#. SLjuC
@@ -872,13 +872,13 @@ msgctxt ""
msgid "To remove the numbering restart, apply the command again in the paragraph where the numbering was restarted."
msgstr ""
-#. 4Y7KE
+#. yoUyg
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id261616371203225\n"
"help.text"
-msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - Paragraph - </menuitem><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering_link\">Outline & List</link> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
+msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - Paragraph - </menuitem><link href=\"text/swriter/01/05030800.xhp\">Outline & List</link> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
msgstr ""
#. qCdhk
@@ -917,14 +917,14 @@ msgctxt ""
msgid "The displayed page (x) and the total number of pages (y) are shown in the form <emph>Page x/y</emph> When you scroll through a document with the mouse, the page number is displayed when you release the mouse button. When you scroll using the right scrollbar, the page numbers are displayed as a Help tip. The page numbering format of the status bar and scrollbar is identical."
msgstr "La pàgina visualitzada (x) i el nombre total de pàgines (y) es mostren com a <emph>Pàgina x/y</emph>. Quan vos desplaceu per un document amb el ratolí, el número de pàgina es veu quan deixeu anar el botó del ratolí. Quan vos desplaceu utilitzant la barra dreta de desplaçament, els números de pàgina es mostren com un consell d'ajuda. El format de numeració de pàgines de la barra d'estat i de la barra de desplaçament és idèntic."
-#. B89AK
+#. Ywsr3
#: 08010000.xhp
msgctxt ""
"08010000.xhp\n"
"par_id3145417\n"
"help.text"
-msgid "You can turn the <link href=\"text/swriter/01/02110000.xhp\" name=\"Navigator\">Navigator</link> display on or off by double-clicking the<emph> Page Number </emph>field."
-msgstr "Podeu activar o desactivar el <link href=\"text/swriter/01/02110000.xhp\" name=\"Navegador\">Navegador</link> fent doble clic al camp<emph> Número de pàgina</emph>."
+msgid "You can turn the <link href=\"text/swriter/01/02110000.xhp\">Navigator</link> display on or off by double-clicking the<emph> Page Number </emph>field."
+msgstr "Podeu activar o desactivar el <link href=\"text/swriter/01/02110000.xhp\">Navegador</link> fent doble clic al camp<emph> Número de pàgina</emph>."
#. 7CeFv
#: 08010000.xhp
@@ -953,14 +953,14 @@ msgctxt ""
msgid "Combined Display"
msgstr "Visualització combinada"
-#. gh6CG
+#. xwbpK
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
"hd_id3151186\n"
"help.text"
-msgid "<link href=\"text/swriter/02/08080000.xhp\" name=\"Combined Display\">Combined Display</link>"
-msgstr "<link href=\"text/swriter/02/08080000.xhp\" name=\"Visualització combinada\">Visualització combinada</link>"
+msgid "<link href=\"text/swriter/02/08080000.xhp\">Combined Display</link>"
+msgstr "<link href=\"text/swriter/02/08080000.xhp\">Visualització combinada</link>"
#. RRcoi
#: 08080000.xhp
@@ -980,14 +980,14 @@ msgctxt ""
msgid "When the cursor is in a named section, the section name appears. When the cursor is in a table, the name of the table cell appears. The size of the object is shown when you edit frames or drawing objects."
msgstr "Quan el cursor es troba en una secció amb nom, apareix el nom de la secció. Quan es troba en una taula, apareix el nom de la cel·la de la taula. Quan editeu marcs o objectes de dibuix es mostra la mida de l'objecte."
-#. Ef5m2
+#. Yw2PH
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
"par_id3145416\n"
"help.text"
-msgid "When the cursor is positioned within text, you can double-click this field to open the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. In this dialog, you can define a field to be inserted in your document at the current cursor position. When the cursor is positioned in a table, a double-click in this field will call the <emph>Table Format</emph> dialog. Depending on the object selected, you can call up a dialog to edit a section, a graphic object, a floating frame, an OLE object, direct numbering or the position and size of a drawing object."
-msgstr "Quan el cursor és dins del text, podeu fer doble clic a este camp per obrir el diàleg <link href=\"text/swriter/01/04090000.xhp\" name=\"Camps\"><emph>Camps</emph></link>. En este diàleg podeu definir un camp perquès'inserisca a la posició actual del cursor en el document. Quan el cursor es troba en una taula, si feu doble clic en este camp cridareu el diàleg <emph>Format de la taula</emph>. En funció de l'objecte seleccionat, podeu cridar un diàleg per editar una secció, un objecte gràfic, un marc flotant, un objecte OLE, la numeració directa o la posició i la mida d'un objecte de dibuix."
+msgid "When the cursor is positioned within text, you can double-click this field to open the <link href=\"text/swriter/01/04090000.xhp\"><emph>Fields</emph></link> dialog. In this dialog, you can define a field to be inserted in your document at the current cursor position. When the cursor is positioned in a table, a double-click in this field will call the <emph>Table Format</emph> dialog. Depending on the object selected, you can call up a dialog to edit a section, a graphic object, a floating frame, an OLE object, direct numbering or the position and size of a drawing object."
+msgstr "Quan el cursor és dins del text, podeu fer doble clic a este camp per obrir el diàleg <link href=\"text/swriter/01/04090000.xhp\"><emph>Camps</emph></link>. En este diàleg podeu definir un camp perquès'inserisca a la posició actual del cursor en el document. Quan el cursor es troba en una taula, si feu doble clic en este camp cridareu el diàleg <emph>Format de la taula</emph>. En funció de l'objecte seleccionat, podeu cridar un diàleg per editar una secció, un objecte gràfic, un marc flotant, un objecte OLE, la numeració directa o la posició i la mida d'un objecte de dibuix."
#. kdhmw
#: 10010000.xhp
@@ -998,14 +998,14 @@ msgctxt ""
msgid "Zoom In"
msgstr "Amplia el zoom"
-#. B6knG
+#. 3nMKp
#: 10010000.xhp
msgctxt ""
"10010000.xhp\n"
"hd_id3151173\n"
"help.text"
-msgid "<link href=\"text/swriter/02/10010000.xhp\" name=\"Zoom In\">Zoom In</link>"
-msgstr "<link href=\"text/swriter/02/10010000.xhp\" name=\"Amplia el zoom\">Amplia el zoom</link>"
+msgid "<link href=\"text/swriter/02/10010000.xhp\">Zoom In</link>"
+msgstr "<link href=\"text/swriter/02/10010000.xhp\">Amplia el zoom</link>"
#. B6oDo
#: 10010000.xhp
@@ -1043,14 +1043,14 @@ msgctxt ""
msgid "Zoom Out"
msgstr "Allunya"
-#. 3mGCU
+#. CYW6C
#: 10020000.xhp
msgctxt ""
"10020000.xhp\n"
"hd_id3149870\n"
"help.text"
-msgid "<link href=\"text/swriter/02/10020000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
-msgstr "<link href=\"text/swriter/02/10020000.xhp\" name=\"Allunya\">Allunya</link>"
+msgid "<link href=\"text/swriter/02/10020000.xhp\">Zoom Out</link>"
+msgstr "<link href=\"text/swriter/02/10020000.xhp\">Allunya</link>"
#. FPsvN
#: 10020000.xhp
@@ -1088,14 +1088,14 @@ msgctxt ""
msgid "Preview Zoom"
msgstr "Escala de la previsualització"
-#. LNQGR
+#. GJSJx
#: 10030000.xhp
msgctxt ""
"10030000.xhp\n"
"hd_id3147175\n"
"help.text"
-msgid "<link href=\"text/swriter/02/10030000.xhp\" name=\"Preview Zoom\">Preview Zoom</link>"
-msgstr "<link href=\"text/swriter/02/10030000.xhp\" name=\"Escala de la previsualització\">Escala de la previsualització</link>"
+msgid "<link href=\"text/swriter/02/10030000.xhp\">Preview Zoom</link>"
+msgstr "<link href=\"text/swriter/02/10030000.xhp\">Escala de la previsualització</link>"
#. zWNEA
#: 10030000.xhp
@@ -1115,13 +1115,13 @@ msgctxt ""
msgid "Single Page Preview"
msgstr ""
-#. LqErf
+#. XUTbH
#: 10040000.xhp
msgctxt ""
"10040000.xhp\n"
"hd_id691649976425993\n"
"help.text"
-msgid "<link href=\"text/swriter/02/10040000.xhp\" name=\"Single Page Preview\">Single Page Preview</link>"
+msgid "<link href=\"text/swriter/02/10040000.xhp\">Single Page Preview</link>"
msgstr ""
#. 8ttBs
@@ -1160,14 +1160,14 @@ msgctxt ""
msgid "Two Pages Preview"
msgstr "Previsualització de dues pàgines"
-#. 2Fm6C
+#. 5xzdG
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
"hd_id3145822\n"
"help.text"
-msgid "<link href=\"text/swriter/02/10050000.xhp\" name=\"Two Pages Preview\">Two Pages Preview</link>"
-msgstr "<link href=\"text/swriter/02/10050000.xhp\" name=\"Previsualització de dues pàgines\">Previsualització de dues pàgines</link>"
+msgid "<link href=\"text/swriter/02/10050000.xhp\">Two Pages Preview</link>"
+msgstr "<link href=\"text/swriter/02/10050000.xhp\">Previsualització de dues pàgines</link>"
#. JbPBQ
#: 10050000.xhp
@@ -1205,13 +1205,13 @@ msgctxt ""
msgid "Multiple Pages Preview"
msgstr "Previsualització de diverses pàgines"
-#. Fusb6
+#. GSkNm
#: 10070000.xhp
msgctxt ""
"10070000.xhp\n"
"hd_id3147171\n"
"help.text"
-msgid "<link href=\"text/swriter/02/10070000.xhp\" name=\"Page Preview: Multiple Pages\">Multiple Pages Preview</link>"
+msgid "<link href=\"text/swriter/02/10070000.xhp\">Multiple Pages Preview</link>"
msgstr ""
#. NhuBC
@@ -1367,14 +1367,14 @@ msgctxt ""
msgid "Print page view"
msgstr "Imprimeix la previsualització de la pàgina"
-#. syMoC
+#. CYSES
#: 10090000.xhp
msgctxt ""
"10090000.xhp\n"
"hd_id3152895\n"
"help.text"
-msgid "<link href=\"text/swriter/02/10090000.xhp\" name=\"Print page view\">Print page view</link>"
-msgstr "<link href=\"text/swriter/02/10090000.xhp\" name=\"Imprimeix la previsualització de la pàgina\">Imprimeix la previsualització de la pàgina</link>"
+msgid "<link href=\"text/swriter/02/10090000.xhp\">Print page view</link>"
+msgstr "<link href=\"text/swriter/02/10090000.xhp\">Imprimeix la previsualització de la pàgina</link>"
#. zBqRk
#: 10090000.xhp
@@ -1403,14 +1403,14 @@ msgctxt ""
msgid "Cell Reference"
msgstr "Referència de la cel·la"
-#. XPfpr
+#. oisnp
#: 14010000.xhp
msgctxt ""
"14010000.xhp\n"
"hd_id3143228\n"
"help.text"
-msgid "<link href=\"text/swriter/02/14010000.xhp\" name=\"Cell Reference\">Cell Reference</link>"
-msgstr "<link href=\"text/swriter/02/14010000.xhp\" name=\"Referència de la cel·la\">Referència de la cel·la</link>"
+msgid "<link href=\"text/swriter/02/14010000.xhp\">Cell Reference</link>"
+msgstr "<link href=\"text/swriter/02/14010000.xhp\">Referència de la cel·la</link>"
#. 44pDz
#: 14010000.xhp
@@ -1439,14 +1439,14 @@ msgctxt ""
msgid "<bookmark_value>formulas; in text documents</bookmark_value><bookmark_value>table formulas; in text documents</bookmark_value><bookmark_value>operators; in table formulas</bookmark_value><bookmark_value>statistical functions in tables</bookmark_value><bookmark_value>mathematical functions in tables</bookmark_value><bookmark_value>trigonometric functions in tables</bookmark_value><bookmark_value>pages;number of pages in table formulas</bookmark_value><bookmark_value>variables;document properties in table formulas</bookmark_value><bookmark_value>arithmetical operators in formulas</bookmark_value>"
msgstr ""
-#. piUZw
+#. m828y
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
"hd_id3149687\n"
"help.text"
-msgid "<link href=\"text/swriter/02/14020000.xhp\" name=\"Formula\">Formula</link>"
-msgstr "<link href=\"text/swriter/02/14020000.xhp\" name=\"Fórmula\">Fórmula</link>"
+msgid "<link href=\"text/swriter/02/14020000.xhp\">Formula</link>"
+msgstr "<link href=\"text/swriter/02/14020000.xhp\">Fórmula</link>"
#. fMazZ
#: 14020000.xhp
@@ -1457,14 +1457,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens a submenu, from which you can insert a formula into the cell of a table.</ahelp> Place the cursor in a cell in the table or at the position in the document where you want the result to appear. Click the<emph> Formula </emph>icon and choose the desired formula from the submenu."
msgstr "<ahelp hid=\".\">Obri un submenú des del qual podeu inserir una fórmula a la cel·la d'una taula.</ahelp> Situeu el cursor en una cel·la de la taula o a la posició del document on voleu que aparega el resultat. Feu clic a la icona <emph>Fórmula</emph> i trieu la fórmula que voleu del submenú."
-#. 5x7iX
+#. iCkcq
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
"par_id3149096\n"
"help.text"
-msgid "The formula appears in the input line. To specify a range of cells in a table, select the desired cells with the mouse. The corresponding cell references also appear in the input line. Enter additional parameters, as necessary, and click <emph>Apply</emph> to confirm your entry. You can also enter the formula directly if you know the appropriate syntax. This is necessary, for example, in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Insert Fields\"><emph>Insert Fields</emph></link> and <emph>Edit Fields</emph> dialogs."
-msgstr "La fórmula apareix a la línia d'entrada. Per indicar una àrea de cel·les en una taula, seleccioneu amb el ratolí les cel·les que voleu. Les referències corresponents de la cel·la també apareixen a la línia d'entrada. Introduïu paràmetres addicionals, si són necessaris, i feu clic a <emph>Aplica</emph> per confirmar la vostra entrada. També podeu introduir directament la fórmula si coneixeu la sintaxi apropiada. Això és necessari, per exemple, en els diàlegs <link href=\"text/swriter/01/04090000.xhp\" name=\"Insereix els camps\"><emph>Insereix els camps</emph></link> i <emph>Edita els camps</emph>."
+msgid "The formula appears in the input line. To specify a range of cells in a table, select the desired cells with the mouse. The corresponding cell references also appear in the input line. Enter additional parameters, as necessary, and click <emph>Apply</emph> to confirm your entry. You can also enter the formula directly if you know the appropriate syntax. This is necessary, for example, in the <link href=\"text/swriter/01/04090000.xhp\"><emph>Insert Fields</emph></link> and <emph>Edit Fields</emph> dialogs."
+msgstr "La fórmula apareix a la línia d'entrada. Per indicar una àrea de cel·les en una taula, seleccioneu amb el ratolí les cel·les que voleu. Les referències corresponents de la cel·la també apareixen a la línia d'entrada. Introduïu paràmetres addicionals, si són necessaris, i feu clic a <emph>Aplica</emph> per confirmar la vostra entrada. També podeu introduir directament la fórmula si coneixeu la sintaxi apropiada. Això és necessari, per exemple, en els diàlegs <link href=\"text/swriter/01/04090000.xhp\"><emph>Insereix els camps</emph></link> i <emph>Edita els camps</emph>."
#. Nf9zE
#: 14020000.xhp
@@ -2861,14 +2861,14 @@ msgctxt ""
msgid "Cancel"
msgstr "Cancel·la"
-#. DQPaG
+#. G2cUn
#: 14030000.xhp
msgctxt ""
"14030000.xhp\n"
"hd_id3149957\n"
"help.text"
-msgid "<link href=\"text/swriter/02/14030000.xhp\" name=\"Cancel\">Cancel</link>"
-msgstr "<link href=\"text/swriter/02/14030000.xhp\" name=\"Cancel·la\">Cancel·la</link>"
+msgid "<link href=\"text/swriter/02/14030000.xhp\">Cancel</link>"
+msgstr "<link href=\"text/swriter/02/14030000.xhp\">Cancel·la</link>"
#. 4Yz3J
#: 14030000.xhp
@@ -2906,14 +2906,14 @@ msgctxt ""
msgid "Apply"
msgstr "Aplica"
-#. G5xBZ
+#. FEwXA
#: 14040000.xhp
msgctxt ""
"14040000.xhp\n"
"hd_id3154834\n"
"help.text"
-msgid "<link href=\"text/swriter/02/14040000.xhp\" name=\"Apply\">Apply</link>"
-msgstr "<link href=\"text/swriter/02/14040000.xhp\" name=\"Aplica\">Aplica</link>"
+msgid "<link href=\"text/swriter/02/14040000.xhp\">Apply</link>"
+msgstr "<link href=\"text/swriter/02/14040000.xhp\">Aplica</link>"
#. GcphZ
#: 14040000.xhp
@@ -2951,14 +2951,14 @@ msgctxt ""
msgid "Formula Area"
msgstr "Àrea de la fórmula"
-#. X2q6J
+#. 3s4xT
#: 14050000.xhp
msgctxt ""
"14050000.xhp\n"
"hd_id3155624\n"
"help.text"
-msgid "<link href=\"text/swriter/02/14050000.xhp\" name=\"Formula Area\">Formula Area</link>"
-msgstr "<link href=\"text/swriter/02/14050000.xhp\" name=\"Àrea de la fórmula\">Àrea de la fórmula</link>"
+msgid "<link href=\"text/swriter/02/14050000.xhp\">Formula Area</link>"
+msgstr "<link href=\"text/swriter/02/14050000.xhp\">Àrea de la fórmula</link>"
#. VRahE
#: 14050000.xhp
@@ -2996,14 +2996,14 @@ msgctxt ""
msgid "Insert"
msgstr "Insereix"
-#. JrBjF
+#. 8PjuB
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3145824\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18010000.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/swriter/02/18010000.xhp\" name=\"Insereix\">Insereix</link>"
+msgid "<link href=\"text/swriter/02/18010000.xhp\">Insert</link>"
+msgstr "<link href=\"text/swriter/02/18010000.xhp\">Insereix</link>"
#. Ha2Rw
#: 18010000.xhp
@@ -3023,59 +3023,59 @@ msgctxt ""
msgid "You can select the following functions:"
msgstr "Podeu seleccionar les funcions següents:"
-#. jyoA2
+#. CFc4J
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3143272\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04150000.xhp\" name=\"Insert Table\">Table</link>"
-msgstr "<link href=\"text/swriter/01/04150000.xhp\" name=\"Insereix una taula\">Taula</link>"
+msgid "<link href=\"text/swriter/01/04150000.xhp\">Table</link>"
+msgstr "<link href=\"text/swriter/01/04150000.xhp\">Taula</link>"
-#. qGtAL
+#. Ru34K
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3150115\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04020000.xhp\" name=\"Insert Section\">Section</link>"
-msgstr "<link href=\"text/swriter/01/04020000.xhp\" name=\"Insereix una secció\">Secció</link>"
+msgid "<link href=\"text/swriter/01/04020000.xhp\">Section</link>"
+msgstr "<link href=\"text/swriter/01/04020000.xhp\">Secció</link>"
-#. BvcDT
+#. wBBzU
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3154572\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04130000.xhp\" name=\"Insert Frame Manually\">Insert Frame Manually</link>"
-msgstr "<link href=\"text/swriter/01/04130000.xhp\" name=\"Insereix un marc manualment\">Insereix un marc manualment</link>"
+msgid "<link href=\"text/swriter/01/04130000.xhp\">Insert Frame Manually</link>"
+msgstr "<link href=\"text/swriter/01/04130000.xhp\">Insereix un marc manualment</link>"
-#. 6mCFC
+#. FisVt
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3151341\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=\"Marc flotant\">Marc flotant</link>"
+msgid "<link href=\"text/shared/01/04160500.xhp\">Floating Frame</link>"
+msgstr "<link href=\"text/shared/01/04160500.xhp\">Marc flotant</link>"
-#. ZvwVw
+#. o6hwV
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3148974\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insert Footnote Directly\">Insert Footnote Directly</link>"
-msgstr "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insereix directament una nota al peu\">Insereix directament una nota al peu</link>"
+msgid "<link href=\"text/swriter/01/04030000.xhp\">Insert Footnote Directly</link>"
+msgstr "<link href=\"text/swriter/01/04030000.xhp\">Insereix directament una nota al peu</link>"
-#. UXNEx
+#. Tz7Fe
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3152773\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insert Endnote Directly\">Insert Endnote Directly</link>"
-msgstr "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insereix directament una nota final\">Insereix directament una nota final</link>"
+msgid "<link href=\"text/swriter/01/04030000.xhp\">Insert Endnote Directly</link>"
+msgstr "<link href=\"text/swriter/01/04030000.xhp\">Insereix directament una nota final</link>"
#. EosFy
#: 18010000.xhp
@@ -3095,41 +3095,41 @@ msgctxt ""
msgid "Inserts a note at the current cursor position."
msgstr "Insereix una nota a la posició actual del cursor."
-#. kdADV
+#. nEVAw
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3145262\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04040000.xhp\" name=\"Bookmark\">Bookmark</link>"
-msgstr "<link href=\"text/swriter/01/04040000.xhp\" name=\"Adreça d'interés\">Adreça d'interés</link>"
+msgid "<link href=\"text/swriter/01/04040000.xhp\">Bookmark</link>"
+msgstr "<link href=\"text/swriter/01/04040000.xhp\">Adreça d'interés</link>"
-#. rb7oP
+#. Pkov7
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3149098\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04190000.xhp\" name=\"Insert Document\">File</link>"
-msgstr "<link href=\"text/swriter/01/04190000.xhp\" name=\"Insereix un document\">Fitxer</link>"
+msgid "<link href=\"text/swriter/01/04190000.xhp\">File</link>"
+msgstr "<link href=\"text/swriter/01/04190000.xhp\">Fitxer</link>"
-#. CBNvB
+#. SmDBe
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"par_idN10772\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02120000.xhp\" name=\"AutoText\">AutoText</link>"
-msgstr "<link href=\"text/swriter/01/02120000.xhp\" name=\"Text automàtic\">Text automàtic</link>"
+msgid "<link href=\"text/swriter/01/02120000.xhp\">AutoText</link>"
+msgstr "<link href=\"text/swriter/01/02120000.xhp\">Text automàtic</link>"
-#. eUNdr
+#. AeZ5A
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3145780\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=\"Caràcter especial\">Caràcter especial</link>"
+msgid "<link href=\"text/shared/01/04100000.xhp\">Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\">Caràcter especial</link>"
#. DKTSB
#: 18010000.xhp
@@ -3167,41 +3167,41 @@ msgctxt ""
msgid "The Controls icon opens a toolbar with the tools that you need to create an interactive form."
msgstr "La icona Controls obri una barra d'eines amb les eines que necessiteu per crear un formulari interactiu."
-#. mYyU9
+#. EA2Mi
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3155174\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=\"Des d'un fitxer\">Des d'un fitxer</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\">Des d'un fitxer</link>"
-#. iv4CF
+#. BBUUT
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"par_idN106F4\n"
"help.text"
-msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Insert Formula\">Formula</link>"
-msgstr "<link href=\"text/shared/01/04160300.xhp\" name=\"Insereix una fórmula\">Fórmula</link>"
+msgid "<link href=\"text/shared/01/04160300.xhp\">Formula</link>"
+msgstr "<link href=\"text/shared/01/04160300.xhp\">Fórmula</link>"
-#. MABzX
+#. sCB8B
#: 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=\"Insereix un diagrama\">Diagrama</link>"
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\">Chart</link>"
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\">Diagrama</link>"
-#. AAVfU
+#. MnQuB
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id1586962\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=\"Objecte OLE\">Objecte OLE</link>"
+msgid "<link href=\"text/shared/01/04150100.xhp\">OLE Object</link>"
+msgstr "<link href=\"text/shared/01/04150100.xhp\">Objecte OLE</link>"
#. uDrd9
#: 18010000.xhp
@@ -3221,14 +3221,14 @@ msgctxt ""
msgid "Inserts an index or a table of contents at the current cursor position."
msgstr "Insereix un índex o taula de continguts a la posició actual del cursor."
-#. eU6wi
+#. SyhWA
#: 18010000.xhp
msgctxt ""
"18010000.xhp\n"
"hd_id3155861\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04120100.xhp\" name=\"Insert Index Marker\">Entry</link>"
-msgstr "<link href=\"text/swriter/01/04120100.xhp\" name=\"Insereix un marcador de l'índex\">Entrada</link>"
+msgid "<link href=\"text/swriter/01/04120100.xhp\">Entry</link>"
+msgstr "<link href=\"text/swriter/01/04120100.xhp\">Entrada</link>"
#. nzTGs
#: 18030000.xhp
@@ -3239,14 +3239,14 @@ msgctxt ""
msgid "Insert Fields"
msgstr "Insereix els camps"
-#. cGt46
+#. RGbK3
#: 18030000.xhp
msgctxt ""
"18030000.xhp\n"
"hd_id3153916\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18030000.xhp\" name=\"Insert Fields\">Insert Fields</link>"
-msgstr "<link href=\"text/swriter/02/18030000.xhp\" name=\"Insereix camps\">Insereix camps</link>"
+msgid "<link href=\"text/swriter/02/18030000.xhp\">Insert Fields</link>"
+msgstr "<link href=\"text/swriter/02/18030000.xhp\">Insereix camps</link>"
#. VSSUW
#: 18030000.xhp
@@ -3266,14 +3266,14 @@ msgctxt ""
msgid "You can choose from the following functions:"
msgstr "Podeu triar entre les funcions següents:"
-#. BtkyF
+#. zyChg
#: 18030000.xhp
msgctxt ""
"18030000.xhp\n"
"hd_id3148566\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Other\">Other</link>"
-msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Altres\">Altres</link>"
+msgid "<link href=\"text/swriter/01/04090000.xhp\">Other</link>"
+msgstr "<link href=\"text/swriter/01/04090000.xhp\">Altres</link>"
#. UWFxy
#: 18030100.xhp
@@ -3284,14 +3284,14 @@ msgctxt ""
msgid "Date"
msgstr "Data"
-#. QADBv
+#. 8mad6
#: 18030100.xhp
msgctxt ""
"18030100.xhp\n"
"hd_id3151175\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18030100.xhp\" name=\"Date\">Date</link>"
-msgstr "<link href=\"text/swriter/02/18030100.xhp\" name=\"Data\">Data</link>"
+msgid "<link href=\"text/swriter/02/18030100.xhp\">Date</link>"
+msgstr "<link href=\"text/swriter/02/18030100.xhp\">Data</link>"
#. FfGqq
#: 18030100.xhp
@@ -3302,14 +3302,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertDateField\">Inserts the current date as a field.</ahelp> The default date format is used, and the date is not automatically updated."
msgstr "<ahelp hid=\".uno:InsertDateField\">Insereix la data actual com a camp.</ahelp> S'utilitza el format de data per defecte, i la data no s'actualitza automàticament."
-#. Nb7FF
+#. 6pFWk
#: 18030100.xhp
msgctxt ""
"18030100.xhp\n"
"par_id3151312\n"
"help.text"
-msgid "If you would like to define a different date format, or have the date updated automatically, select <emph>Insert - Field - More Fields</emph> to insert a field command and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The format of an existing date field can be modified at any time by choosing <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>."
-msgstr "Si voleu definir un format de data diferent o que la data s'actualitzi automàticament, seleccioneu <emph>Insereix ▸ Camp ▸ Més camps</emph> per a inserir una orde de camps i definir els paràmetres que desitgeu al diàleg <link href=\"text/swriter/01/04090000.xhp\" name=\"Camps\"><emph>Camps</emph></link>. El format d'un camp de data existent es pot modificar en qualsevol moment si trieu<link href=\"text/swriter/01/02140000.xhp\" name=\"Edita ▸ Camps\"><emph>Edita ▸ Camps</emph></link>."
+msgid "If you would like to define a different date format, or have the date updated automatically, select <emph>Insert - Field - More Fields</emph> to insert a field command and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\"><emph>Fields</emph></link> dialog. The format of an existing date field can be modified at any time by choosing <link href=\"text/swriter/01/02140000.xhp\"><emph>Edit - Fields</emph></link>."
+msgstr "Si voleu definir un format de data diferent o que la data s'actualitzi automàticament, seleccioneu <emph>Insereix ▸ Camp ▸ Més camps</emph> per a inserir una orde de camps i definir els paràmetres que desitgeu al diàleg <link href=\"text/swriter/01/04090000.xhp\"><emph>Camps</emph></link>. El format d'un camp de data existent es pot modificar en qualsevol moment si trieu<link href=\"text/swriter/01/02140000.xhp\"><emph>Edita ▸ Camps</emph></link>."
#. RfAPA
#: 18030200.xhp
@@ -3329,14 +3329,14 @@ msgctxt ""
msgid "<bookmark_value>time fields;inserting</bookmark_value><bookmark_value>fields;inserting time</bookmark_value>"
msgstr "<bookmark_value>camps d'hora;inserció</bookmark_value><bookmark_value>camps;inserció de l'hora</bookmark_value>"
-#. LXRxX
+#. MekNF
#: 18030200.xhp
msgctxt ""
"18030200.xhp\n"
"hd_id3147174\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18030200.xhp\" name=\"Time\">Time</link>"
-msgstr "<link href=\"text/swriter/02/18030200.xhp\" name=\"Hora\">Hora</link>"
+msgid "<link href=\"text/swriter/02/18030200.xhp\">Time</link>"
+msgstr "<link href=\"text/swriter/02/18030200.xhp\">Hora</link>"
#. Uwk2Y
#: 18030200.xhp
@@ -3347,14 +3347,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertTimeField\" visibility=\"visible\">Inserts the current time as a field.</ahelp> The time is taken directly from the system settings of your operating system. A fixed time format is applied, which cannot be updated by using the F9 function key."
msgstr "<ahelp hid=\".uno:InsertTimeField\" visibility=\"visible\">Insereix l'hora actual com a camp.</ahelp> L'hora s'agafa directament de la configuració del sistema del vostre sistema operatiu. S'aplica un format d'hora fix, que no es pot actualitzar utilitzant la tecla de funció F9."
-#. G6Z68
+#. GjkbK
#: 18030200.xhp
msgctxt ""
"18030200.xhp\n"
"par_id3151177\n"
"help.text"
-msgid "To assign a different time format, or adapt the actual time data, select <emph>Insert - Field - More Fields</emph> and make the desired changes in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. Additionally, you can modify the format of an inserted time field at any time by choosing <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>."
-msgstr "Per a assignar un format d'hora diferent o adaptar les dades de l'hora actual, seleccioneu <emph>Insereix ▸ Camp ▸ Més camps</emph> i feu els canvis que desitgeu en el diàleg <link href=\"text/swriter/01/04090000.xhp\" name=\"Camps\"><emph>Camps</emph></link>. A més a més, en qualsevol moment podeu modificar el format d'un camp d'hora inserit si trieu <link href=\"text/swriter/01/02140000.xhp\" name=\"Edita ▸ Camps\"><emph>Edita ▸ Camps</emph></link>."
+msgid "To assign a different time format, or adapt the actual time data, select <emph>Insert - Field - More Fields</emph> and make the desired changes in the <link href=\"text/swriter/01/04090000.xhp\"><emph>Fields</emph></link> dialog. Additionally, you can modify the format of an inserted time field at any time by choosing <link href=\"text/swriter/01/02140000.xhp\"><emph>Edit - Fields</emph></link>."
+msgstr "Per a assignar un format d'hora diferent o adaptar les dades de l'hora actual, seleccioneu <emph>Insereix ▸ Camp ▸ Més camps</emph> i feu els canvis que desitgeu en el diàleg <link href=\"text/swriter/01/04090000.xhp\"><emph>Camps</emph></link>. A més a més, en qualsevol moment podeu modificar el format d'un camp d'hora inserit si trieu <link href=\"text/swriter/01/02140000.xhp\"><emph>Edita ▸ Camps</emph></link>."
#. F5PB7
#: 18030300.xhp
@@ -3365,14 +3365,14 @@ msgctxt ""
msgid "Page Number"
msgstr "Número de pàgina"
-#. uKCiH
+#. FRFVQ
#: 18030300.xhp
msgctxt ""
"18030300.xhp\n"
"hd_id3147173\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18030300.xhp\" name=\"Page Number\">Page Number</link>"
-msgstr "<link href=\"text/swriter/02/18030300.xhp\" name=\"Número de pàgina\">Número de pàgina</link>"
+msgid "<link href=\"text/swriter/02/18030300.xhp\">Page Number</link>"
+msgstr "<link href=\"text/swriter/02/18030300.xhp\">Número de pàgina</link>"
#. Eyxsj
#: 18030300.xhp
@@ -3383,14 +3383,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Inserts the current page number as a field at the cursor position.</ahelp> The default setting is for it to use the <emph>Page Number</emph> character style."
msgstr "<ahelp hid=\".\">Insereix el número de pàgina actual com a camp a la posició del cursor.</ahelp> Per defecte, s'hi utilitza l'estil de caràcter <emph>Número de pàgina</emph>."
-#. mDJBW
+#. M86DV
#: 18030300.xhp
msgctxt ""
"18030300.xhp\n"
"par_id3151175\n"
"help.text"
-msgid "If you would like to define a different format or modify the page number, insert a field with <emph>Insert - Field - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. It is also possible to edit a field inserted with the <emph>Page Number</emph> command with <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Page Numbers\"><emph>Page Numbers</emph></link> guide."
-msgstr "Si voleu definir un format diferent o modificar el número de pàgina, inseriu un camp des del menú <emph>Insereix ▸ Camp ▸ Més camps</emph> i configureu els paràmetres que voleu amb el diàleg <link href=\"text/swriter/01/04090000.xhp\" name=\"Camps\"><emph>Camps</emph></link>. També podeu editar un camp inserit amb l'orde <emph>Números de pàgina</emph> amb l'opció <link href=\"text/swriter/01/02140000.xhp\" name=\"Edita ▸ Camps\"><emph>Edita - Camps</emph></link>. Per canviar els números de pàgina, llegiu la guia <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Números de pàgina\"><emph>Números de pàgina</emph></link>."
+msgid "If you would like to define a different format or modify the page number, insert a field with <emph>Insert - Field - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\"><emph>Fields</emph></link> dialog. It is also possible to edit a field inserted with the <emph>Page Number</emph> command with <link href=\"text/swriter/01/02140000.xhp\"><emph>Edit - Fields</emph></link>. To change page numbers, read the <link href=\"text/swriter/guide/pagenumbers.xhp\"><emph>Page Numbers</emph></link> guide."
+msgstr "Si voleu definir un format diferent o modificar el número de pàgina, inseriu un camp des del menú <emph>Insereix ▸ Camp ▸ Més camps</emph> i configureu els paràmetres que voleu amb el diàleg <link href=\"text/swriter/01/04090000.xhp\"><emph>Camps</emph></link>. També podeu editar un camp inserit amb l'orde <emph>Números de pàgina</emph> amb l'opció <link href=\"text/swriter/01/02140000.xhp\"><emph>Edita - Camps</emph></link>. Per canviar els números de pàgina, llegiu la guia <link href=\"text/swriter/guide/pagenumbers.xhp\"><emph>Números de pàgina</emph></link>."
#. 6HY9G
#: 18030400.xhp
@@ -3401,14 +3401,14 @@ msgctxt ""
msgid "Page Count"
msgstr "Recompte de pàgines"
-#. hJsbL
+#. 5RK2v
#: 18030400.xhp
msgctxt ""
"18030400.xhp\n"
"hd_id3145828\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18030400.xhp\" name=\"Page Count\">Page Count</link>"
-msgstr "<link href=\"text/swriter/02/18030400.xhp\" name=\"Recompte de pàgines\">Recompte de pàgines</link>"
+msgid "<link href=\"text/swriter/02/18030400.xhp\">Page Count</link>"
+msgstr "<link href=\"text/swriter/02/18030400.xhp\">Recompte de pàgines</link>"
#. Zq6RD
#: 18030400.xhp
@@ -3419,22 +3419,22 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertPageCountField\">Inserts as a field the total number of pages in the document.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertPageCountField\">Insereix com a camp el nombre total de pàgines del document.</ahelp>"
-#. pkgeA
+#. cjLgc
#: 18030400.xhp
msgctxt ""
"18030400.xhp\n"
"par_id3149294\n"
"help.text"
-msgid "The format of the field inserted using the <emph>Page Count</emph> command can be modified using the <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Field\"><menuitem>Edit - Fields</menuitem></link> command."
+msgid "The format of the field inserted using the <emph>Page Count</emph> command can be modified using the <link href=\"text/swriter/01/02140000.xhp\"><menuitem>Edit - Fields</menuitem></link> command."
msgstr ""
-#. iqoa4
+#. gHhp8
#: 18030400.xhp
msgctxt ""
"18030400.xhp\n"
"par_id291613751393995\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090001.xhp\" name=\"Document\">Document Statistics Fields</link>"
+msgid "<link href=\"text/swriter/01/04090001.xhp\">Document Statistics Fields</link>"
msgstr ""
#. GRfFZ
@@ -3455,14 +3455,14 @@ msgctxt ""
msgid "<bookmark_value>subject fields</bookmark_value><bookmark_value>fields; subject</bookmark_value>"
msgstr "<bookmark_value>camps d'assumpte</bookmark_value><bookmark_value>camps; assumpte</bookmark_value>"
-#. x6vpG
+#. oFgCv
#: 18030500.xhp
msgctxt ""
"18030500.xhp\n"
"hd_id3147169\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18030500.xhp\" name=\"Subject\">Subject</link>"
-msgstr "<link href=\"text/swriter/02/18030500.xhp\" name=\"Assumpte\">Assumpte</link>"
+msgid "<link href=\"text/swriter/02/18030500.xhp\">Subject</link>"
+msgstr "<link href=\"text/swriter/02/18030500.xhp\">Assumpte</link>"
#. Sq7ra
#: 18030500.xhp
@@ -3473,14 +3473,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertTopicField\">Inserts the subject specified in the document properties as a field .</ahelp> This field displays the data entered in the <emph>Subject</emph> field under <emph>File - Properties - Description</emph>."
msgstr "<ahelp hid=\".uno:InsertTopicField\">Insereix l'assumpte indicat a les propietats del document com a camp.</ahelp> Este camp mostra les dades que s'han introduït en el camp <emph>Assumpte</emph>, a <emph>Fitxer ▸ Propietats ▸ Descripció</emph>."
-#. wsHdq
+#. C5Dwh
#: 18030500.xhp
msgctxt ""
"18030500.xhp\n"
"par_id3156380\n"
"help.text"
-msgid "If you would like to insert a different document property as a field, select <emph>Insert - Field - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The <emph>DocInformation</emph> category contains all of the fields shown in the document properties."
-msgstr "Si voleu inserir una altra propietat del document com a camp, seleccioneu <emph>Insereix - Camps - Més camps</emph> i establiu els paràmetres que desitgeu en el diàleg <link href=\"text/swriter/01/04090000.xhp\" name=\"Camps\"><emph>Camps</emph></link>. La categoria <emph>Informació del document</emph> conté tots els camps que es mostren a les propietats del document."
+msgid "If you would like to insert a different document property as a field, select <emph>Insert - Field - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\"><emph>Fields</emph></link> dialog. The <emph>DocInformation</emph> category contains all of the fields shown in the document properties."
+msgstr "Si voleu inserir una altra propietat del document com a camp, seleccioneu <emph>Insereix - Camps - Més camps</emph> i establiu els paràmetres que desitgeu en el diàleg <link href=\"text/swriter/01/04090000.xhp\"><emph>Camps</emph></link>. La categoria <emph>Informació del document</emph> conté tots els camps que es mostren a les propietats del document."
#. aFDKk
#: 18030600.xhp
@@ -3491,14 +3491,14 @@ msgctxt ""
msgid "Title"
msgstr "Títol"
-#. cBXB2
+#. 3Anmr
#: 18030600.xhp
msgctxt ""
"18030600.xhp\n"
"hd_id3154484\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18030600.xhp\" name=\"Title\">Title</link>"
-msgstr "<link href=\"text/swriter/02/18030600.xhp\" name=\"Títol\">Títol</link>"
+msgid "<link href=\"text/swriter/02/18030600.xhp\">Title</link>"
+msgstr "<link href=\"text/swriter/02/18030600.xhp\">Títol</link>"
#. 4fVi2
#: 18030600.xhp
@@ -3509,14 +3509,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertTitleField\">Inserts the title specified in the document properties as a field.</ahelp> This field displays the data entered in the <emph>Title</emph> field under <emph>File - Properties - Description</emph>."
msgstr "<ahelp hid=\".uno:InsertTitleField\">Insereix com a camp el títol indicat a les propietats del document.</ahelp> Este camp mostra les dades introduïdes al camp <emph>Títol</emph>, a <emph>Fitxer ▸ Propietats ▸ Descripció</emph>."
-#. RSHaD
+#. ejboP
#: 18030600.xhp
msgctxt ""
"18030600.xhp\n"
"par_id3148768\n"
"help.text"
-msgid "If you would like to insert a different document property as a field, select <emph>Insert - Field - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\"><emph>Fields</emph></link> dialog. The <emph>DocInformation</emph> category contains all of the fields shown in the document properties."
-msgstr "Si voleu inserir una altra propietat del document com a camp, seleccioneu <emph>Insereix - Camps - Més camps</emph> i establiu els paràmetres que desitgeu en el diàleg <link href=\"text/swriter/01/04090000.xhp\" name=\"Camps\"><emph>Camps</emph></link>. La categoria <emph>Informació del document</emph> conté tots els camps que es mostren a les propietats del document."
+msgid "If you would like to insert a different document property as a field, select <emph>Insert - Field - More Fields</emph> and make the desired settings in the <link href=\"text/swriter/01/04090000.xhp\"><emph>Fields</emph></link> dialog. The <emph>DocInformation</emph> category contains all of the fields shown in the document properties."
+msgstr "Si voleu inserir una altra propietat del document com a camp, seleccioneu <emph>Insereix - Camps - Més camps</emph> i establiu els paràmetres que desitgeu en el diàleg <link href=\"text/swriter/01/04090000.xhp\"><emph>Camps</emph></link>. La categoria <emph>Informació del document</emph> conté tots els camps que es mostren a les propietats del document."
#. XDZuz
#: 18030700.xhp
@@ -3527,23 +3527,23 @@ msgctxt ""
msgid "First Author (field)"
msgstr "Primer autor (camp)"
-#. 7ACzA
+#. 6QDbK
#: 18030700.xhp
msgctxt ""
"18030700.xhp\n"
"hd_id3154505\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18030700.xhp\" name=\"Author\">First Author (field)</link>"
-msgstr "<link href=\"text/swriter/02/18030700.xhp\" name=\"Autor\">Primer autor (camp)</link>"
+msgid "<link href=\"text/swriter/02/18030700.xhp\">First Author (field)</link>"
+msgstr "<link href=\"text/swriter/02/18030700.xhp\">Primer autor (camp)</link>"
-#. wAFbk
+#. ape4m
#: 18030700.xhp
msgctxt ""
"18030700.xhp\n"
"par_id3152896\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertAuthorField\">Inserts the name of the person who created the document here as a field.</ahelp> The field applies the entry made under <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/01010100.xhp\" name=\"$[officename] - User data\"><emph>$[officename] - User data</emph></link>."
-msgstr "<ahelp hid=\".uno:InsertAuthorField\">Insereix com a camp el nom de la persona que va crear el document.</ahelp> El camp correspon a l'entrada feta a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] ▸ Dades de l'usuari\"><emph>$[officename] ▸ Dades de l'usuari</emph></link>."
+msgid "<ahelp hid=\".uno:InsertAuthorField\">Inserts the name of the person who created the document here as a field.</ahelp> The field applies the entry made under <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/01010100.xhp\"><emph>$[officename] - User data</emph></link>."
+msgstr "<ahelp hid=\".uno:InsertAuthorField\">Insereix com a camp el nom de la persona que va crear el document.</ahelp> El camp correspon a l'entrada feta a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010100.xhp\"><emph>$[officename] ▸ Dades de l'usuari</emph></link>."
#. xEPBR
#: 18120000.xhp
@@ -3563,14 +3563,14 @@ msgctxt ""
msgid "<bookmark_value>graphics;do not show</bookmark_value> <bookmark_value>images;do not show</bookmark_value> <bookmark_value>pictures;do not show</bookmark_value>"
msgstr "<bookmark_value>gràfics;no mostrar</bookmark_value> <bookmark_value>imatges;no mostrar</bookmark_value>"
-#. WcvKF
+#. kASwh
#: 18120000.xhp
msgctxt ""
"18120000.xhp\n"
"hd_id3148568\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18120000.xhp\" name=\"Images and Charts\">Images and Charts</link>"
-msgstr "<link href=\"text/swriter/02/18120000.xhp\" name=\"Imatges i diagrames\">Imatges i diagrames</link>"
+msgid "<link href=\"text/swriter/02/18120000.xhp\">Images and Charts</link>"
+msgstr "<link href=\"text/swriter/02/18120000.xhp\">Imatges i diagrames</link>"
#. gHWtd
#: 18120000.xhp
@@ -3617,14 +3617,14 @@ msgctxt ""
msgid "<bookmark_value>direct cursor; restriction</bookmark_value>"
msgstr "<bookmark_value>cursor directe; restricció</bookmark_value>"
-#. 8QqiC
+#. d9iZy
#: 18130000.xhp
msgctxt ""
"18130000.xhp\n"
"hd_id3147167\n"
"help.text"
-msgid "<link href=\"text/swriter/02/18130000.xhp\" name=\"Direct Cursor Mode\">Direct Cursor Mode</link>"
-msgstr "<link href=\"text/swriter/02/18130000.xhp\" name=\"Cursor directe activat/desactivat\">Cursor directe activat/desactivat</link>"
+msgid "<link href=\"text/swriter/02/18130000.xhp\">Direct Cursor Mode</link>"
+msgstr "<link href=\"text/swriter/02/18130000.xhp\">Cursor directe activat/desactivat</link>"
#. Gxt3W
#: 18130000.xhp
@@ -3635,13 +3635,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ShadowCursor\">Activates or deactivates the direct cursor.</ahelp>"
msgstr ""
-#. 2pTmG
+#. qPByH
#: 18130000.xhp
msgctxt ""
"18130000.xhp\n"
"par_id651655490756305\n"
"help.text"
-msgid "You can specify the behavior of the direct cursor by choosing <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/01040600.xhp\" name=\"Text Document - Formatting Aids\"><emph>%PRODUCTNAME Writer - Formatting Aids</emph></link>."
+msgid "You can specify the behavior of the direct cursor by choosing <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/01040600.xhp\"><emph>%PRODUCTNAME Writer - Formatting Aids</emph></link>."
msgstr ""
#. 5c3tj
@@ -3716,22 +3716,22 @@ msgctxt ""
msgid "Insert Header"
msgstr "Insereix una capçalera"
-#. x8KnU
+#. pPEeo
#: 19010000.xhp
msgctxt ""
"19010000.xhp\n"
"hd_id3148769\n"
"help.text"
-msgid "<link href=\"text/swriter/02/19010000.xhp\" name=\"Insert Header\">Insert Header</link>"
-msgstr "<link href=\"text/swriter/02/19010000.xhp\" name=\"Insereix una capçalera\">Insereix una capçalera</link>"
+msgid "<link href=\"text/swriter/02/19010000.xhp\">Insert Header</link>"
+msgstr "<link href=\"text/swriter/02/19010000.xhp\">Insereix una capçalera</link>"
-#. ZVBiF
+#. 6B3Vb
#: 19010000.xhp
msgctxt ""
"19010000.xhp\n"
"par_id3151180\n"
"help.text"
-msgid "<ahelp hid=\"FN_INSERT_HEADER\">Displays the header of an HTML document if headers are enabled on the <link href=\"text/shared/01/05040300.xhp\" name=\"Format - Page Style - Header\"><emph>Format - Page Style - Header</emph></link> tab page.</ahelp>"
+msgid "<ahelp hid=\"FN_INSERT_HEADER\">Displays the header of an HTML document if headers are enabled on the <link href=\"text/shared/01/05040300.xhp\"><emph>Format - Page Style - Header</emph></link> tab page.</ahelp>"
msgstr ""
#. LveMa
@@ -3743,22 +3743,22 @@ msgctxt ""
msgid "Insert Footer"
msgstr "Insereix un peu de pàgina"
-#. EfFWA
+#. 2Wrpr
#: 19020000.xhp
msgctxt ""
"19020000.xhp\n"
"hd_id3145829\n"
"help.text"
-msgid "<link href=\"text/swriter/02/19020000.xhp\" name=\"Insert Footer\">Insert Footer</link>"
-msgstr "<link href=\"text/swriter/02/19020000.xhp\" name=\"Insereix un peu de pàgina\">Insereix un peu de pàgina</link>"
+msgid "<link href=\"text/swriter/02/19020000.xhp\">Insert Footer</link>"
+msgstr "<link href=\"text/swriter/02/19020000.xhp\">Insereix un peu de pàgina</link>"
-#. rrLC3
+#. icuLz
#: 19020000.xhp
msgctxt ""
"19020000.xhp\n"
"par_id3148768\n"
"help.text"
-msgid "<ahelp hid=\"FN_INSERT_FOOTER\">Displays the footer of an HTML document if footers are enabled on the <link href=\"text/shared/01/05040400.xhp\" name=\"Format - Page Style - Footer\"><emph>Format - Page Style - Footer</emph></link> tab page.</ahelp>"
+msgid "<ahelp hid=\"FN_INSERT_FOOTER\">Displays the footer of an HTML document if footers are enabled on the <link href=\"text/shared/01/05040400.xhp\"><emph>Format - Page Style - Footer</emph></link> tab page.</ahelp>"
msgstr ""
#. phEfn
@@ -3770,14 +3770,14 @@ msgctxt ""
msgid "Insert"
msgstr "Insereix"
-#. dhKPN
+#. kskEB
#: 19030000.xhp
msgctxt ""
"19030000.xhp\n"
"hd_id3147167\n"
"help.text"
-msgid "<link href=\"text/swriter/02/19030000.xhp\" name=\"Insert\">Insert</link>"
-msgstr "<link href=\"text/swriter/02/19030000.xhp\" name=\"Insereix\">Insereix</link>"
+msgid "<link href=\"text/swriter/02/19030000.xhp\">Insert</link>"
+msgstr "<link href=\"text/swriter/02/19030000.xhp\">Insereix</link>"
#. AAt9h
#: 19030000.xhp
@@ -3815,68 +3815,68 @@ msgctxt ""
msgid "You can select the following functions:"
msgstr "Podeu seleccionar les funcions següents:"
-#. BYxCC
+#. dTEks
#: 19030000.xhp
msgctxt ""
"19030000.xhp\n"
"hd_id3149689\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04130000.xhp\" name=\"Insert single-column frame manually\">Insert single-column frame manually</link>"
-msgstr "<link href=\"text/swriter/01/04130000.xhp\" name=\"Insereix el marc d'una sola columna manualment\">Insereix el marc d'una sola columna manualment</link>"
+msgid "<link href=\"text/swriter/01/04130000.xhp\">Insert single-column frame manually</link>"
+msgstr "<link href=\"text/swriter/01/04130000.xhp\">Insereix el marc d'una sola columna manualment</link>"
-#. jeDHu
+#. LBwvB
#: 19030000.xhp
msgctxt ""
"19030000.xhp\n"
"hd_id3143278\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=\"Des d'un fitxer\">Des d'un fitxer</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\">From File</link>"
+msgstr "<link href=\"text/shared/01/04140000.xhp\">Des d'un fitxer</link>"
-#. nufkW
+#. B5fHZ
#: 19030000.xhp
msgctxt ""
"19030000.xhp\n"
"hd_id3149104\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04150000.xhp\" name=\"Insert Table\">Insert Table</link>"
-msgstr "<link href=\"text/swriter/01/04150000.xhp\" name=\"Insereix una taula\">Insereix una taula</link>"
+msgid "<link href=\"text/swriter/01/04150000.xhp\">Insert Table</link>"
+msgstr "<link href=\"text/swriter/01/04150000.xhp\">Insereix una taula</link>"
-#. gXw6D
+#. oAuiE
#: 19030000.xhp
msgctxt ""
"19030000.xhp\n"
"hd_id3151259\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04190000.xhp\" name=\"Insert Document\">Insert Document</link>"
-msgstr "<link href=\"text/swriter/01/04190000.xhp\" name=\"Insereix un document\">Insereix un document</link>"
+msgid "<link href=\"text/swriter/01/04190000.xhp\">Insert Document</link>"
+msgstr "<link href=\"text/swriter/01/04190000.xhp\">Insereix un document</link>"
-#. SC8tK
+#. MSCDc
#: 19030000.xhp
msgctxt ""
"19030000.xhp\n"
"hd_id3153643\n"
"help.text"
-msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Insert Special Character\">Insert Special Character</link>"
-msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Insereix un caràcter especial\">Insereix un caràcter especial</link>"
+msgid "<link href=\"text/shared/01/04100000.xhp\">Insert Special Character</link>"
+msgstr "<link href=\"text/shared/01/04100000.xhp\">Insereix un caràcter especial</link>"
-#. Chov9
+#. uFcFn
#: 19030000.xhp
msgctxt ""
"19030000.xhp\n"
"hd_id3152766\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04020000.xhp\" name=\"Insert Section\">Insert Section</link>"
-msgstr "<link href=\"text/swriter/01/04020000.xhp\" name=\"Insereix una secció\">Insereix una secció</link>"
+msgid "<link href=\"text/swriter/01/04020000.xhp\">Insert Section</link>"
+msgstr "<link href=\"text/swriter/01/04020000.xhp\">Insereix una secció</link>"
-#. CC9wT
+#. vBp8q
#: 19030000.xhp
msgctxt ""
"19030000.xhp\n"
"hd_id3145774\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04040000.xhp\" name=\"Insert Bookmark\">Insert Bookmark</link>"
-msgstr "<link href=\"text/swriter/01/04040000.xhp\" name=\"Insereix una adreça d'interés\">Insereix una adreça d'interés</link>"
+msgid "<link href=\"text/swriter/01/04040000.xhp\">Insert Bookmark</link>"
+msgstr "<link href=\"text/swriter/01/04040000.xhp\">Insereix una adreça d'interés</link>"
#. J6RpX
#: 19040000.xhp
@@ -3887,23 +3887,23 @@ msgctxt ""
msgid "Insert Fields"
msgstr "Insereix els camps"
-#. JzPhD
+#. 95S32
#: 19040000.xhp
msgctxt ""
"19040000.xhp\n"
"hd_id3149286\n"
"help.text"
-msgid "<link href=\"text/swriter/02/19040000.xhp\" name=\"Insert Fields\">Insert Fields</link>"
-msgstr "<link href=\"text/swriter/02/19040000.xhp\" name=\"Insereix els camps\">Insereix els camps</link>"
+msgid "<link href=\"text/swriter/02/19040000.xhp\">Insert Fields</link>"
+msgstr "<link href=\"text/swriter/02/19040000.xhp\">Insereix els camps</link>"
-#. Fzfpw
+#. 8sGAW
#: 19040000.xhp
msgctxt ""
"19040000.xhp\n"
"par_id3151173\n"
"help.text"
-msgid "Click to open the <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\">Fields</link> dialog. Click the arrow next to the icon and select the required field from the submenu."
-msgstr "Feu clic per obrir el diàleg <link href=\"text/swriter/01/04090000.xhp\" name=\"Camps\">Camps</link>. Feu clic a la fletxa que apareix al costat de la icona i seleccioneu el camp necessari del submenú."
+msgid "Click to open the <link href=\"text/swriter/01/04090000.xhp\">Fields</link> dialog. Click the arrow next to the icon and select the required field from the submenu."
+msgstr "Feu clic per obrir el diàleg <link href=\"text/swriter/01/04090000.xhp\">Camps</link>. Feu clic a la fletxa que apareix al costat de la icona i seleccioneu el camp necessari del submenú."
#. 48CyU
#: 19040000.xhp
@@ -3914,14 +3914,14 @@ msgctxt ""
msgid "You can select the following functions:"
msgstr "Podeu seleccionar les funcions següents:"
-#. 38kfT
+#. RcJ5e
#: 19040000.xhp
msgctxt ""
"19040000.xhp\n"
"hd_id3145248\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Other\">Other</link>"
-msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Altres\">Altres</link>"
+msgid "<link href=\"text/swriter/01/04090000.xhp\">Other</link>"
+msgstr "<link href=\"text/swriter/01/04090000.xhp\">Altres</link>"
#. FM5sf
#: 19050000.xhp
@@ -3932,14 +3932,14 @@ msgctxt ""
msgid "Text Animation"
msgstr "Animació del text"
-#. YYLE8
+#. iKFuD
#: 19050000.xhp
msgctxt ""
"19050000.xhp\n"
"hd_id3155626\n"
"help.text"
-msgid "<link href=\"text/swriter/02/19050000.xhp\" name=\"Text Animation\">Text Animation</link>"
-msgstr "<link href=\"text/swriter/02/19050000.xhp\" name=\"Animació del text\">Animació del text</link>"
+msgid "<link href=\"text/swriter/02/19050000.xhp\">Text Animation</link>"
+msgstr "<link href=\"text/swriter/02/19050000.xhp\">Animació del text</link>"
#. aDAnh
#: 19050000.xhp
@@ -3977,13 +3977,13 @@ msgctxt ""
msgid "<bookmark_value>Add to List</bookmark_value><bookmark_value>Lists;merging</bookmark_value>"
msgstr ""
-#. X8yaz
+#. GmGBb
#: add_to_list.xhp
msgctxt ""
"add_to_list.xhp\n"
"hd_id711614068729277\n"
"help.text"
-msgid "<variable id=\"addtolisth1\"><link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to List\">Add to List</link></variable>"
+msgid "<variable id=\"addtolisth1\"><link href=\"text/swriter/02/add_to_list.xhp\">Add to List</link></variable>"
msgstr ""
#. kM6AJ
@@ -4175,20 +4175,20 @@ msgctxt ""
msgid "Word Count Status Bar Field"
msgstr "Camp de recompte de paraules a la barra d'estat"
-#. azQ8F
+#. tBbnd
#: word_count_stb.xhp
msgctxt ""
"word_count_stb.xhp\n"
"page_heading\n"
"help.text"
-msgid "<link href=\"text/swriter/02/word_count_stb.xhp\" name=\"Word Count Status Bar Field\">Word Count Status Bar Field</link>"
-msgstr "<link href=\"text/swriter/02/word_count_stb.xhp\" name=\"Camp de recompte de paraules a la barra d'estat\">Camp de recompte de paraules a la barra d'estat</link>"
+msgid "<link href=\"text/swriter/02/word_count_stb.xhp\">Word Count Status Bar Field</link>"
+msgstr "<link href=\"text/swriter/02/word_count_stb.xhp\">Camp de recompte de paraules a la barra d'estat</link>"
-#. ESMYi
+#. mEywX
#: word_count_stb.xhp
msgctxt ""
"word_count_stb.xhp\n"
"hd_id3149687\n"
"help.text"
-msgid "<ahelp hid=\".uno:StateWordCount\">The number of words in the document and selection is displayed in this field of the status bar. A double-click opens the <link href=\"text/swriter/01/06040000.xhp\" name=\"Word Count\">word count dialog</link>, which shows extra document statistics.</ahelp>"
-msgstr "<ahelp hid=\".uno:StateWordCount\">El nombre de paraules al document i la selecció es mostren en este camp de la barra d'estat. Fent-hi doble clic s'obri un <link href=\"text/swriter/01/06040000.xhp\" name=\"Word Count\">diàleg del recompte de paraules</link>, que mostra estadístiques addicionals del document.</ahelp>"
+msgid "<ahelp hid=\".uno:StateWordCount\">The number of words in the document and selection is displayed in this field of the status bar. A double-click opens the <link href=\"text/swriter/01/06040000.xhp\">word count dialog</link>, which shows extra document statistics.</ahelp>"
+msgstr "<ahelp hid=\".uno:StateWordCount\">El nombre de paraules al document i la selecció es mostren en este camp de la barra d'estat. Fent-hi doble clic s'obri un <link href=\"text/swriter/01/06040000.xhp\">diàleg del recompte de paraules</link>, que mostra estadístiques addicionals del document.</ahelp>"
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/04.po b/source/ca-valencia/helpcontent2/source/text/swriter/04.po
index 66d40c36833..02ab256e1e6 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/04.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-07-04 18:05+0200\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter04/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>shortcut keys; in text documents</bookmark_value> <bookmark_value>text documents; shortcut keys in</bookmark_value>"
msgstr "<bookmark_value>tecles de drecera; en documents de text</bookmark_value> <bookmark_value>documents de text; tecles de drecera en</bookmark_value>"
-#. 35yyT
+#. C9cjF
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3145763\n"
"help.text"
-msgid "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\" name=\"Shortcut Keys for %PRODUCTNAME Writer\">Shortcut Keys for <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
-msgstr "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\" name=\"Tecles de drecera per al %PRODUCTNAME Writer\">Tecles de drecera per al <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
+msgid "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\">Shortcut Keys for <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
+msgstr "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\">Tecles de drecera per al <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
#. qbPEo
#: 01020000.xhp
@@ -53,14 +53,14 @@ msgctxt ""
msgid "You can use shortcut keys to quickly perform common tasks in <item type=\"productname\">%PRODUCTNAME</item>. This section lists the default shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Writer."
msgstr "Podeu utilitzar tecles de drecera per realitzar tasques habituals d'una manera ràpida al <item type=\"productname\">%PRODUCTNAME</item>. Esta secció enumera les tecles de drecera per defecte del <item type=\"productname\">%PRODUCTNAME</item> Writer."
-#. NuaiP
+#. WkpSD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3145081\n"
"help.text"
-msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\" name=\"general shortcut keys in %PRODUCTNAME\">general shortcut keys in <item type=\"productname\">%PRODUCTNAME</item></link>."
-msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\" name=\"tecles de drecera generals al %PRODUCTNAME\">tecles de drecera generals al <item type=\"productname\">%PRODUCTNAME</item></link>."
+msgid "You can also use the <link href=\"text/shared/04/01010000.xhp\">general shortcut keys in <item type=\"productname\">%PRODUCTNAME</item></link>."
+msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\">tecles de drecera generals al <item type=\"productname\">%PRODUCTNAME</item></link>."
#. dQtdg
#: 01020000.xhp
@@ -1745,14 +1745,14 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab"
-#. SDvt2
+#. AFUgU
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Next suggestion with <link href=\"text/shared/01/06040600.xhp\" name=\"Automatic Word Completion\">Automatic Word Completion</link>"
-msgstr "Suggeriment següent amb la <link href=\"text/shared/01/06040600.xhp\" name=\"Compleció automàtica de paraules\">Compleció automàtica de paraules</link>"
+msgid "Next suggestion with <link href=\"text/shared/01/06040600.xhp\">Automatic Word Completion</link>"
+msgstr "Suggeriment següent amb la <link href=\"text/shared/01/06040600.xhp\">Compleció automàtica de paraules</link>"
#. qDiED
#: 01020000.xhp
@@ -1763,14 +1763,14 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Maj+Tab"
-#. aounX
+#. bVg3F
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3147386\n"
"help.text"
-msgid "Use previous suggestion with <link href=\"text/shared/01/06040600.xhp\" name=\"Automatic Word Completion\">Automatic Word Completion</link>"
-msgstr "Utilitzeu el suggeriment anterior amb la <link href=\"text/shared/01/06040600.xhp\" name=\"Compleció automàtica de paraules\">Compleció automàtica de paraules</link>."
+msgid "Use previous suggestion with <link href=\"text/shared/01/06040600.xhp\">Automatic Word Completion</link>"
+msgstr "Utilitzeu el suggeriment anterior amb la <link href=\"text/shared/01/06040600.xhp\">Compleció automàtica de paraules</link>."
#. BqeEo
#: 01020000.xhp
@@ -1961,13 +1961,13 @@ msgctxt ""
msgid "With the cursor placed anywhere in a heading or list paragraph: Decreases the alignment for all headings. For list paragraphs, decreases the alignment for all paragraphs in the same list."
msgstr ""
-#. U2tpK
+#. wrjFD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id491655382900210\n"
"help.text"
-msgid "To insert a tab at the beginning of a heading or list paragraph, use the <menuitem>Numbering followed by</menuitem> option in the <link href=\"text/shared/01/06050600.xhp\" name=\"Position\"><menuitem>Position</menuitem></link> tab in the <menuitem>Chapter Numbering</menuitem> or <menuitem>Bullets and Numbering</menuitem> dialog. Alternatively, a tab can be copied and then pasted at the beginning."
+msgid "To insert a tab at the beginning of a heading or list paragraph, use the <menuitem>Numbering followed by</menuitem> option in the <link href=\"text/shared/01/06050600.xhp\"><menuitem>Position</menuitem></link> tab in the <menuitem>Chapter Numbering</menuitem> or <menuitem>Bullets and Numbering</menuitem> dialog. Alternatively, a tab can be copied and then pasted at the beginning."
msgstr ""
#. Vp3wR
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
index 1b7ab0d8711..df9718bdaa0 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-11-14 14:36+0100\n"
+"POT-Creation-Date: 2022-12-07 19:22+0100\n"
"PO-Revision-Date: 2021-01-29 00:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ca_VALENCIA/>\n"
@@ -35,14 +35,14 @@ msgctxt ""
msgid "<bookmark_value>objects;anchoring options</bookmark_value> <bookmark_value>positioning;objects (guide)</bookmark_value> <bookmark_value>anchors;options</bookmark_value> <bookmark_value>frames;anchoring options</bookmark_value> <bookmark_value>pictures;anchoring options</bookmark_value> <bookmark_value>centering;images on HTML pages</bookmark_value>"
msgstr "<bookmark_value>objectes;opcions d'ancoratge</bookmark_value> <bookmark_value>col·locació;objectes (guia)</bookmark_value> <bookmark_value>àncores;opcions</bookmark_value> <bookmark_value>marcs;opcions d'ancoratge</bookmark_value> <bookmark_value>imatges;opcions d'ancoratge</bookmark_value> <bookmark_value>centrar;imatges en pàgines HTML</bookmark_value>"
-#. 94MGB
+#. p4pij
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"hd_id3147828\n"
"help.text"
-msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
-msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Col·locació d'objectes\">Col·locació d'objectes</link></variable>"
+msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\">Positioning Objects</link></variable>"
+msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\">Col·locació d'objectes</link></variable>"
#. WBVDD
#: anchor_object.xhp
@@ -242,13 +242,13 @@ msgctxt ""
msgid "Changing an Anchor"
msgstr ""
-#. iWVDA
+#. gRhz2
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id711653869372168\n"
"help.text"
-msgid "To change the anchoring options of an object, right-click the object, and then choose an option from the <link href=\"text/shared/01/05260000.xhp\" name=\"Anchor submenu link\"><menuitem>Anchor</menuitem></link> submenu."
+msgid "To change the anchoring options of an object, right-click the object, and then choose an option from the <link href=\"text/shared/01/05260000.xhp\"><menuitem>Anchor</menuitem></link> submenu."
msgstr ""
#. EkgCv
@@ -269,14 +269,14 @@ msgctxt ""
msgid "<bookmark_value>headings;rearranging</bookmark_value><bookmark_value>rearranging headings</bookmark_value><bookmark_value>moving;headings</bookmark_value><bookmark_value>demoting heading levels</bookmark_value><bookmark_value>promoting heading levels</bookmark_value><bookmark_value>Navigator;heading levels and chapters</bookmark_value><bookmark_value>arranging;headings</bookmark_value><bookmark_value>outlines;arranging chapters</bookmark_value>"
msgstr ""
-#. PULN7
+#. keVQB
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"hd_id3149973\n"
"help.text"
-msgid "<variable id=\"arrange_chapters\"><link href=\"text/swriter/guide/arrange_chapters.xhp\" name=\"Rearranging a Document by Using the Navigator\">Arranging Chapters in the Navigator</link> </variable>"
-msgstr "<variable id=\"arrange_chapters\"><link href=\"text/swriter/guide/arrange_chapters.xhp\" name=\"Reorganització d'un document mitjançant el Navegador\">Organització de capítols amb el Navegador</link></variable>"
+msgid "<variable id=\"arrange_chapters\"><link href=\"text/swriter/guide/arrange_chapters.xhp\">Arranging Chapters in the Navigator</link> </variable>"
+msgstr "<variable id=\"arrange_chapters\"><link href=\"text/swriter/guide/arrange_chapters.xhp\">Organització de capítols amb el Navegador</link></variable>"
#. n4VmB
#: arrange_chapters.xhp
@@ -440,14 +440,14 @@ msgctxt ""
msgid "<bookmark_value>numbering; lists, while typing</bookmark_value> <bookmark_value>bullet lists;creating while typing</bookmark_value> <bookmark_value>lists;automatic numbering</bookmark_value> <bookmark_value>numbers;lists</bookmark_value> <bookmark_value>automatic bullets/numbers; AutoCorrect function</bookmark_value> <bookmark_value>bullets; using automatically</bookmark_value> <bookmark_value>paragraphs; automatic numbering</bookmark_value>"
msgstr "<bookmark_value>numeració; llistes, en teclejar</bookmark_value> <bookmark_value>llistes amb pics;creació en teclejar</bookmark_value> <bookmark_value>llistes;numeració automàtica</bookmark_value> <bookmark_value>números;llistes</bookmark_value> <bookmark_value>numeració automàtica; funció de correcció automàtica</bookmark_value> <bookmark_value>pics; utilització automàtica</bookmark_value> <bookmark_value>paràgrafs; numeració automàtica</bookmark_value>"
-#. 73YY6
+#. ggNE6
#: auto_numbering.xhp
msgctxt ""
"auto_numbering.xhp\n"
"hd_id3147407\n"
"help.text"
-msgid "<variable id=\"auto_numbering\"><link href=\"text/swriter/guide/auto_numbering.xhp\" name=\"Creating Numbered or Bulleted Lists as You Type\">Creating Numbered or Bulleted Lists as You Type</link></variable>"
-msgstr "<variable id=\"auto_numbering\"><link href=\"text/swriter/guide/auto_numbering.xhp\" name=\"Creació de llistes numerades o amb pics en teclejar\">Creació de llistes numerades o amb pics en teclejar</link></variable>"
+msgid "<variable id=\"auto_numbering\"><link href=\"text/swriter/guide/auto_numbering.xhp\">Creating Numbered or Bulleted Lists as You Type</link></variable>"
+msgstr "<variable id=\"auto_numbering\"><link href=\"text/swriter/guide/auto_numbering.xhp\">Creació de llistes numerades o amb pics en teclejar</link></variable>"
#. MAXst
#: auto_numbering.xhp
@@ -539,14 +539,14 @@ msgctxt ""
msgid "You can start a numbered list with any number."
msgstr "Podeu iniciar una llista numerada amb qualsevol número."
-#. RwpzC
+#. M4gyY
#: auto_numbering.xhp
msgctxt ""
"auto_numbering.xhp\n"
"par_id3154083\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\">Format - Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Format - Pics i numeració\">Format - Pics i numeració</link>"
+msgid "<link href=\"text/shared/01/06050000.xhp\">Format - Bullets and Numbering</link>"
+msgstr "<link href=\"text/shared/01/06050000.xhp\">Format - Pics i numeració</link>"
#. 4XtVZ
#: auto_off.xhp
@@ -566,14 +566,14 @@ msgctxt ""
msgid "<bookmark_value>turning off automatic correction</bookmark_value><bookmark_value>text;turning off automatic correction</bookmark_value><bookmark_value>uppercase;changing to lowercase</bookmark_value><bookmark_value>capital letters;changing to small letters after periods</bookmark_value><bookmark_value>quotation marks;changing automatically</bookmark_value><bookmark_value>words;automatic replacement on/off</bookmark_value><bookmark_value>lines;automatic drawing on/off</bookmark_value><bookmark_value>underlining;quick</bookmark_value><bookmark_value>borders; automatic drawing on/off</bookmark_value><bookmark_value>automatic changes on/off</bookmark_value><bookmark_value>changes;automatic</bookmark_value><bookmark_value>AutoCorrect function;turning off</bookmark_value>"
msgstr ""
-#. qbd3o
+#. t6yEE
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"hd_id3147812\n"
"help.text"
-msgid "<variable id=\"auto_off\"><link href=\"text/swriter/guide/auto_off.xhp\" name=\"Turning Off AutoFormat and AutoCorrect\">Turning Off AutoCorrect</link></variable>"
-msgstr "<variable id=\"auto_off\"><link href=\"text/swriter/guide/auto_off.xhp\" name=\"Desactivació de la formatació automàtica i de la correcció automàtica\">Desactivació de la correcció automàtica</link></variable>"
+msgid "<variable id=\"auto_off\"><link href=\"text/swriter/guide/auto_off.xhp\">Turning Off AutoCorrect</link></variable>"
+msgstr "<variable id=\"auto_off\"><link href=\"text/swriter/guide/auto_off.xhp\">Desactivació de la correcció automàtica</link></variable>"
#. ojUKt
#: auto_off.xhp
@@ -746,13 +746,13 @@ msgctxt ""
msgid "<bookmark_value>spellcheck;Automatic Spell Checking on/off</bookmark_value> <bookmark_value>automatic spellcheck</bookmark_value> <bookmark_value>checking spelling;while typing</bookmark_value> <bookmark_value>words;disabling spellcheck</bookmark_value>"
msgstr "<bookmark_value>verificació ortogràfica;verificació ortogràfica automàtica activada/desactivada</bookmark_value> <bookmark_value>verificació ortogràfica automàtica</bookmark_value> <bookmark_value>verificació ortogràfica;en teclejar</bookmark_value> <bookmark_value>paraules;desactivació de la verificació ortogràfica</bookmark_value>"
-#. D3Z5v
+#. 8DEog
#: auto_spellcheck.xhp
msgctxt ""
"auto_spellcheck.xhp\n"
"hd_id3154265\n"
"help.text"
-msgid "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\" name=\"Automatically Check Spelling\">Automatic Check Spelling</link></variable>"
+msgid "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\">Automatic Check Spelling</link></variable>"
msgstr ""
#. 2zePN
@@ -845,14 +845,14 @@ msgctxt ""
msgid "Choose \"None (Do not check spelling)\"."
msgstr "Trieu «Cap (no verifiquis l'ortografia)»."
-#. QickE
+#. mSN9a
#: auto_spellcheck.xhp
msgctxt ""
"auto_spellcheck.xhp\n"
"par_id3145648\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010401.xhp\" name=\"Creating a new dictionary.\">Creating a new dictionary.</link>"
-msgstr "<link href=\"text/shared/optionen/01010401.xhp\" name=\"Creació d'un diccionari nou.\">Creació d'un diccionari nou.</link>"
+msgid "<link href=\"text/shared/optionen/01010401.xhp\">Creating a new dictionary.</link>"
+msgstr "<link href=\"text/shared/optionen/01010401.xhp\">Creació d'un diccionari nou.</link>"
#. Ds9Nx
#: autocorr_except.xhp
@@ -872,14 +872,14 @@ msgctxt ""
msgid "<bookmark_value>AutoCorrect function; adding exceptions</bookmark_value> <bookmark_value>exceptions; AutoCorrect function</bookmark_value> <bookmark_value>abbreviations</bookmark_value> <bookmark_value>capital letters;avoiding after specific abbreviations</bookmark_value>"
msgstr "<bookmark_value>funció de correcció automàtica; addició d'excepcions</bookmark_value> <bookmark_value>excepcions; funció de correcció automàtica</bookmark_value> <bookmark_value>abreviacions</bookmark_value> <bookmark_value>lletra majúscula;evitar després de determinades abreviacions</bookmark_value>"
-#. tYzzu
+#. BvVBU
#: autocorr_except.xhp
msgctxt ""
"autocorr_except.xhp\n"
"hd_id3152887\n"
"help.text"
-msgid "<variable id=\"autocorr_except\"><link href=\"text/swriter/guide/autocorr_except.xhp\" name=\"Adding Exceptions to the AutoCorrect List\">Adding Exceptions to the AutoCorrect List</link></variable>"
-msgstr "<variable id=\"autocorr_except\"><link href=\"text/swriter/guide/autocorr_except.xhp\" name=\"Addició d'excepcions a la llista de correcció automàtica\">Addició d'excepcions a la llista de correcció automàtica</link></variable>"
+msgid "<variable id=\"autocorr_except\"><link href=\"text/swriter/guide/autocorr_except.xhp\">Adding Exceptions to the AutoCorrect List</link></variable>"
+msgstr "<variable id=\"autocorr_except\"><link href=\"text/swriter/guide/autocorr_except.xhp\">Addició d'excepcions a la llista de correcció automàtica</link></variable>"
#. C8LFD
#: autocorr_except.xhp
@@ -953,14 +953,14 @@ msgctxt ""
msgid "<bookmark_value>AutoText</bookmark_value> <bookmark_value>networks and AutoText directories</bookmark_value> <bookmark_value>lists;AutoText shortcuts</bookmark_value> <bookmark_value>printing;AutoText shortcuts</bookmark_value> <bookmark_value>inserting;text blocks</bookmark_value> <bookmark_value>text blocks</bookmark_value> <bookmark_value>blocks of text</bookmark_value>"
msgstr "<bookmark_value>text automàtic</bookmark_value> <bookmark_value>xarxes i directoris de text automàtic</bookmark_value> <bookmark_value>llistes;dreceres de text automàtic</bookmark_value> <bookmark_value>impressió;dreceres de text automàtic</bookmark_value> <bookmark_value>inserció;blocs de text</bookmark_value> <bookmark_value>blocs de text</bookmark_value> <bookmark_value>blocs de text</bookmark_value>"
-#. X79um
+#. CGmQ3
#: autotext.xhp
msgctxt ""
"autotext.xhp\n"
"hd_id3155521\n"
"help.text"
-msgid "<variable id=\"autotext\"><link href=\"text/swriter/guide/autotext.xhp\" name=\"Using AutoText\">Using AutoText</link></variable>"
-msgstr "<variable id=\"autotext\"><link href=\"text/swriter/guide/autotext.xhp\" name=\"Utilització del text automàtic\">Utilització del text automàtic</link></variable>"
+msgid "<variable id=\"autotext\"><link href=\"text/swriter/guide/autotext.xhp\">Using AutoText</link></variable>"
+msgstr "<variable id=\"autotext\"><link href=\"text/swriter/guide/autotext.xhp\">Utilització del text automàtic</link></variable>"
#. hRvEK
#: autotext.xhp
@@ -1052,14 +1052,14 @@ msgctxt ""
msgid "Click in your document where you want to insert an AutoText entry."
msgstr "Feu clic a la part del document on vulgueu inserir una entrada de text automàtic."
-#. 28CUp
+#. QDiDf
#: autotext.xhp
msgctxt ""
"autotext.xhp\n"
"par_id3145615\n"
"help.text"
-msgid "Choose <link href=\"text/swriter/01/02120000.xhp\" name=\"Tools - AutoText\"><emph>Tools - AutoText</emph></link>."
-msgstr "Trieu <link href=\"text/swriter/01/02120000.xhp\" name=\"Edita - Text automàtic\"><emph>Edita ▸ Text automàtic</emph></link>."
+msgid "Choose <link href=\"text/swriter/01/02120000.xhp\"><emph>Tools - AutoText</emph></link>."
+msgstr "Trieu <link href=\"text/swriter/01/02120000.xhp\"><emph>Edita ▸ Text automàtic</emph></link>."
#. MmBjD
#: autotext.xhp
@@ -1178,23 +1178,23 @@ msgctxt ""
msgid "Two directories are listed here. The first entry is on the server installation and the second entry is in the user directory. If there are two AutoText entries with the same name in both directories, the entry from the user directory is used."
msgstr "Ací es llisten dos directoris. La primera entrada és a la instal·lació del servidor, i la segona al directori de l'usuari. Si hi ha dues entrades de text automàtic amb el mateix nom en tots dos directoris, s'utilitzarà l'entrada del directori de l'usuari."
-#. dSxUZ
+#. RvgLQ
#: autotext.xhp
msgctxt ""
"autotext.xhp\n"
"par_id3154995\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02120000.xhp\" name=\"Tools - AutoText\">Tools - AutoText</link>"
-msgstr "<link href=\"text/swriter/01/02120000.xhp\" name=\"Edita ▸ Text automàtic\">Edita ▸ Text automàtic</link>"
+msgid "<link href=\"text/swriter/01/02120000.xhp\">Tools - AutoText</link>"
+msgstr "<link href=\"text/swriter/01/02120000.xhp\">Edita ▸ Text automàtic</link>"
-#. EKFcC
+#. iGSFs
#: autotext.xhp
msgctxt ""
"autotext.xhp\n"
"par_id3155012\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=\"Compleció de paraules\">Compleció de paraules</link>"
+msgid "<link href=\"text/shared/01/06040600.xhp\">Word Completion</link>"
+msgstr "<link href=\"text/shared/01/06040600.xhp\">Compleció de paraules</link>"
#. ZSCL9
#: background.xhp
@@ -1214,14 +1214,14 @@ msgctxt ""
msgid "<bookmark_value>backgrounds;text objects</bookmark_value><bookmark_value>words;backgrounds</bookmark_value><bookmark_value>paragraphs; backgrounds</bookmark_value><bookmark_value>text;backgrounds</bookmark_value><bookmark_value>tables; backgrounds</bookmark_value><bookmark_value>cells; backgrounds</bookmark_value><bookmark_value>backgrounds;selecting</bookmark_value>"
msgstr "<bookmark_value>fons;objectes de text</bookmark_value><bookmark_value>paraules;fons</bookmark_value><bookmark_value>paràgrafs; fons</bookmark_value><bookmark_value>text; fons</bookmark_value><bookmark_value>taules; fons</bookmark_value><bookmark_value>cel·les; fons</bookmark_value><bookmark_value>fons;selecció</bookmark_value>"
-#. CYrKG
+#. rP8ZY
#: background.xhp
msgctxt ""
"background.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<variable id=\"background\"><link href=\"text/swriter/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/swriter/guide/background.xhp\" name=\"Definició dels colors de fons o dels gràfics de fons\">Definició dels colors de fons o dels gràfics de fons</link></variable>"
+msgid "<variable id=\"background\"><link href=\"text/swriter/guide/background.xhp\">Defining Background Colors or Background Graphics</link></variable>"
+msgstr "<variable id=\"background\"><link href=\"text/swriter/guide/background.xhp\">Definició dels colors de fons o dels gràfics de fons</link></variable>"
#. wVXEV
#: background.xhp
@@ -1394,14 +1394,14 @@ msgctxt ""
msgid "<link href=\"text/shared/02/02160000.xhp\">Character Highlighting Color icon</link>"
msgstr ""
-#. 7cNgF
+#. etXCD
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3156180\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\">Background tab page</link>"
-msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Pestanya Fons\">Pestanya Fons</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Background tab page</link>"
+msgstr "<link href=\"text/shared/01/05210100.xhp\">Pestanya Fons</link>"
#. uaCXb
#: background.xhp
@@ -1439,14 +1439,14 @@ msgctxt ""
msgid "<bookmark_value>characters;defining borders</bookmark_value> <bookmark_value>borders; for characters</bookmark_value> <bookmark_value>frames; around characters</bookmark_value> <bookmark_value>defining;character borders</bookmark_value>"
msgstr "<bookmark_value>caràcters;definició de vores</bookmark_value><bookmark_value>vores; per als caràcters</bookmark_value><bookmark_value>marcs; al voltant dels caràcters</bookmark_value><bookmark_value>definició;vores de caràcter</bookmark_value>"
-#. KPKeL
+#. oNCUM
#: border_character.xhp
msgctxt ""
"border_character.xhp\n"
"hd_id3116136\n"
"help.text"
-msgid "<variable id=\"border_character\"><link href=\"text/swriter/guide/border_character.xhp\" name=\"Defining Borders for Characters\">Defining Borders for Characters</link> </variable>"
-msgstr "<variable id=\"border_character\"><link href=\"text/swriter/guide/border_character.xhp\" name=\"Definició de vores per a caràcters\">Definició de vores per a caràcters</link> </variable>"
+msgid "<variable id=\"border_character\"><link href=\"text/swriter/guide/border_character.xhp\">Defining Borders for Characters</link> </variable>"
+msgstr "<variable id=\"border_character\"><link href=\"text/swriter/guide/border_character.xhp\">Definició de vores per a caràcters</link> </variable>"
#. SJe5c
#: border_character.xhp
@@ -1610,14 +1610,14 @@ msgctxt ""
msgid "<bookmark_value>objects; defining borders</bookmark_value> <bookmark_value>borders; for objects</bookmark_value> <bookmark_value>frames; around objects</bookmark_value> <bookmark_value>charts;borders</bookmark_value> <bookmark_value>pictures;borders</bookmark_value> <bookmark_value>OLE objects;borders</bookmark_value> <bookmark_value>defining;object borders</bookmark_value>"
msgstr "<bookmark_value>objectes; definició de vores</bookmark_value> <bookmark_value>vores; per als objectes</bookmark_value> <bookmark_value>marcs; al voltant d'objectes</bookmark_value> <bookmark_value>diagrames;vores</bookmark_value> <bookmark_value>imatges;vores</bookmark_value> <bookmark_value>objectes OLE;vores</bookmark_value> <bookmark_value>definició;vores d'objectes</bookmark_value>"
-#. FARGT
+#. 4CQXA
#: border_object.xhp
msgctxt ""
"border_object.xhp\n"
"hd_id3146957\n"
"help.text"
-msgid "<variable id=\"border_object\"><link href=\"text/swriter/guide/border_object.xhp\" name=\"Defining Borders for Objects\">Defining Borders for Objects</link></variable>"
-msgstr "<variable id=\"border_object\"><link href=\"text/swriter/guide/border_object.xhp\" name=\"Definició de vores per a objectes\">Definició de vores per a objectes</link></variable>"
+msgid "<variable id=\"border_object\"><link href=\"text/swriter/guide/border_object.xhp\">Defining Borders for Objects</link></variable>"
+msgstr "<variable id=\"border_object\"><link href=\"text/swriter/guide/border_object.xhp\">Definició de vores per a objectes</link></variable>"
#. aFqY8
#: border_object.xhp
@@ -1754,14 +1754,14 @@ msgctxt ""
msgid "<bookmark_value>pages;defining borders</bookmark_value> <bookmark_value>borders; for pages</bookmark_value> <bookmark_value>frames; around pages</bookmark_value> <bookmark_value>defining;page borders</bookmark_value>"
msgstr "<bookmark_value>pàgines;definició de vores</bookmark_value><bookmark_value>vores; per a les pàgines</bookmark_value><bookmark_value>marcs; al voltant de les pàgines</bookmark_value><bookmark_value>definició;vores de pàgina</bookmark_value>"
-#. 5Wr4G
+#. wCXRa
#: border_page.xhp
msgctxt ""
"border_page.xhp\n"
"hd_id3156136\n"
"help.text"
-msgid "<variable id=\"border_page\"><link href=\"text/swriter/guide/border_page.xhp\" name=\"Defining Borders for Pages\">Defining Borders for Pages</link> </variable>"
-msgstr "<variable id=\"border_page\"><link href=\"text/swriter/guide/border_page.xhp\" name=\"Definició de vores per a pàgines\">Definició de vores per a pàgines</link> </variable>"
+msgid "<variable id=\"border_page\"><link href=\"text/swriter/guide/border_page.xhp\">Defining Borders for Pages</link> </variable>"
+msgstr "<variable id=\"border_page\"><link href=\"text/swriter/guide/border_page.xhp\">Definició de vores per a pàgines</link> </variable>"
#. yzA4z
#: border_page.xhp
@@ -2420,14 +2420,14 @@ msgctxt ""
msgid "<bookmark_value>calculating; in text</bookmark_value> <bookmark_value>formulas; calculating in text</bookmark_value> <bookmark_value>references;in Writer tables</bookmark_value> <bookmark_value>=;in Writer tables</bookmark_value> <bookmark_value>tables;starting cell with =</bookmark_value>"
msgstr ""
-#. ArJvi
+#. cXFdw
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
"hd_id3149909\n"
"help.text"
-msgid "<variable id=\"calculate\"><link href=\"text/swriter/guide/calculate.xhp\" name=\"Calculating in Text Documents\">Calculating in Text Documents</link></variable>"
-msgstr "<variable id=\"calculate\"><link href=\"text/swriter/guide/calculate.xhp\" name=\"Càlculs en documents de text\">Càlculs en documents de text</link></variable>"
+msgid "<variable id=\"calculate\"><link href=\"text/swriter/guide/calculate.xhp\">Calculating in Text Documents</link></variable>"
+msgstr "<variable id=\"calculate\"><link href=\"text/swriter/guide/calculate.xhp\">Càlculs en documents de text</link></variable>"
#. CbGmf
#: calculate.xhp
@@ -2510,14 +2510,14 @@ msgctxt ""
msgid "<bookmark_value>pasting;results of formulas</bookmark_value> <bookmark_value>clipboard;calculating in text</bookmark_value> <bookmark_value>formulas;pasting results in text documents</bookmark_value>"
msgstr "<bookmark_value>enganxar;resultats de fórmules</bookmark_value><bookmark_value>porta-retalls;càlculs en el text</bookmark_value><bookmark_value>fórmules;enganxar resultats en documents de text</bookmark_value>"
-#. 8aheT
+#. BUbGP
#: calculate_clipboard.xhp
msgctxt ""
"calculate_clipboard.xhp\n"
"hd_id3147692\n"
"help.text"
-msgid "<variable id=\"calculate_clipboard\"><link href=\"text/swriter/guide/calculate_clipboard.xhp\" name=\" Calculating and Pasting the Result of a Formula in a Text Document\"> Calculating and Pasting the Result of a Formula in a Text Document</link></variable>"
-msgstr "<variable id=\"calculate_clipboard\"><link href=\"text/swriter/guide/calculate_clipboard.xhp\" name=\"Calcular una fórmula i enganxar-ne el resultat en un document de text\"> Calcular una fórmula i enganxar-ne el resultat en un document de text</link></variable>"
+msgid "<variable id=\"calculate_clipboard\"><link href=\"text/swriter/guide/calculate_clipboard.xhp\"> Calculating and Pasting the Result of a Formula in a Text Document</link></variable>"
+msgstr "<variable id=\"calculate_clipboard\"><link href=\"text/swriter/guide/calculate_clipboard.xhp\"> Calcular una fórmula i enganxar-ne el resultat en un document de text</link></variable>"
#. 72Eus
#: calculate_clipboard.xhp
@@ -2573,14 +2573,14 @@ msgctxt ""
msgid "<bookmark_value>calculating;sums in text tables</bookmark_value> <bookmark_value>totals in text tables</bookmark_value> <bookmark_value>tables;calculating sums</bookmark_value> <bookmark_value>cells;calculating sums</bookmark_value> <bookmark_value>table cells;calculating sums</bookmark_value> <bookmark_value>sums of table cell series</bookmark_value>"
msgstr "<bookmark_value>calcular;sumes en taules de text</bookmark_value> <bookmark_value>totals en taules de text</bookmark_value> <bookmark_value>taules;calcular sumes</bookmark_value> <bookmark_value>cel·les;calcular sumes</bookmark_value> <bookmark_value>cel·les de taules;calcular sumes</bookmark_value> <bookmark_value>sumes de sèries de cel·les en taules</bookmark_value>"
-#. Uf9js
+#. 5DHj8
#: calculate_intable.xhp
msgctxt ""
"calculate_intable.xhp\n"
"hd_id3147400\n"
"help.text"
-msgid "<variable id=\"calculate_intable\"><link href=\"text/swriter/guide/calculate_intable.xhp\" name=\"Calculating Cell Totals in Tables\">Calculating the Sum of a Series of Table Cells</link></variable>"
-msgstr "<variable id=\"calculate_intable\"><link href=\"text/swriter/guide/calculate_intable.xhp\" name=\"Càlcul de totals de cel·les en taules \">Càlcul de totals de cel·les en taules</link></variable>"
+msgid "<variable id=\"calculate_intable\"><link href=\"text/swriter/guide/calculate_intable.xhp\">Calculating the Sum of a Series of Table Cells</link></variable>"
+msgstr "<variable id=\"calculate_intable\"><link href=\"text/swriter/guide/calculate_intable.xhp\">Càlcul de totals de cel·les en taules</link></variable>"
#. u3E33
#: calculate_intable.xhp
@@ -2663,14 +2663,14 @@ msgctxt ""
msgid "<bookmark_value>formulas; complex formulas in text</bookmark_value> <bookmark_value>calculating;formulas/mean values</bookmark_value>"
msgstr "<bookmark_value>fórmules; fórmules complexes al text</bookmark_value> <bookmark_value>càlcul;fórmules/valors mitjans</bookmark_value>"
-#. EJvF7
+#. dpsAE
#: calculate_intext.xhp
msgctxt ""
"calculate_intext.xhp\n"
"hd_id3147406\n"
"help.text"
-msgid "<variable id=\"calculate_intext\"><link href=\"text/swriter/guide/calculate_intext.xhp\" name=\"Calculating Complex Formulas in Text Documents\">Calculating Complex Formulas in Text Documents</link></variable>"
-msgstr "<variable id=\"calculate_intext\"><link href=\"text/swriter/guide/calculate_intext.xhp\" name=\"Càlcul de fórmules complexes en documents de text\">Càlcul de fórmules complexes en documents de text</link></variable>"
+msgid "<variable id=\"calculate_intext\"><link href=\"text/swriter/guide/calculate_intext.xhp\">Calculating Complex Formulas in Text Documents</link></variable>"
+msgstr "<variable id=\"calculate_intext\"><link href=\"text/swriter/guide/calculate_intext.xhp\">Càlcul de fórmules complexes en documents de text</link></variable>"
#. VTPCU
#: calculate_intext.xhp
@@ -2753,14 +2753,14 @@ msgctxt ""
msgid "<bookmark_value>calculating;in text tables</bookmark_value> <bookmark_value>tables; performing calculations in</bookmark_value>"
msgstr "<bookmark_value>càlcul;en taules de text</bookmark_value><bookmark_value>taules; realització de càlculs en</bookmark_value>"
-#. qgTYd
+#. N6Uf7
#: calculate_intext2.xhp
msgctxt ""
"calculate_intext2.xhp\n"
"hd_id3153899\n"
"help.text"
-msgid "<variable id=\"calculate_intext2\"><link href=\"text/swriter/guide/calculate_intext2.xhp\" name=\"Displaying the Result of a Table Calculation in a Different Table\">Displaying the Result of a Table Calculation in a Different Table</link></variable>"
-msgstr "<variable id=\"calculate_intext2\"><link href=\"text/swriter/guide/calculate_intext2.xhp\" name=\"Mostrar el resultat del càlcul d'una taula en una altra taula\">Mostrar el resultat del càlcul d'una taula en una altra taula</link></variable>"
+msgid "<variable id=\"calculate_intext2\"><link href=\"text/swriter/guide/calculate_intext2.xhp\">Displaying the Result of a Table Calculation in a Different Table</link></variable>"
+msgstr "<variable id=\"calculate_intext2\"><link href=\"text/swriter/guide/calculate_intext2.xhp\">Mostrar el resultat del càlcul d'una taula en una altra taula</link></variable>"
#. N88uC
#: calculate_intext2.xhp
@@ -2852,14 +2852,14 @@ msgctxt ""
msgid "<bookmark_value>calculating; across multiple text tables</bookmark_value> <bookmark_value>tables;calculating across</bookmark_value>"
msgstr "<bookmark_value>calcular; entre diverses taules de text</bookmark_value> <bookmark_value>taules;calcular entre</bookmark_value>"
-#. F83nC
+#. Gx7Yv
#: calculate_multitable.xhp
msgctxt ""
"calculate_multitable.xhp\n"
"hd_id3154248\n"
"help.text"
-msgid "<variable id=\"calculate_multitable\"><link href=\"text/swriter/guide/calculate_multitable.xhp\" name=\"Calculating Across Tables\">Calculating Across Tables</link></variable>"
-msgstr "<variable id=\"calculate_multitable\"><link href=\"text/swriter/guide/calculate_multitable.xhp\" name=\"Càlculs entre taules\">Càlculs entre taules</link></variable>"
+msgid "<variable id=\"calculate_multitable\"><link href=\"text/swriter/guide/calculate_multitable.xhp\">Calculating Across Tables</link></variable>"
+msgstr "<variable id=\"calculate_multitable\"><link href=\"text/swriter/guide/calculate_multitable.xhp\">Càlculs entre taules</link></variable>"
#. BhnqD
#: calculate_multitable.xhp
@@ -2942,14 +2942,14 @@ msgctxt ""
msgid "<bookmark_value>inserting; captions</bookmark_value> <bookmark_value>captions; inserting and editing</bookmark_value> <bookmark_value>editing;captions</bookmark_value> <bookmark_value>objects; captioning</bookmark_value> <bookmark_value>tables; labeling</bookmark_value> <bookmark_value>charts; labeling</bookmark_value> <bookmark_value>frames; labeling</bookmark_value> <bookmark_value>draw objects; inserting captions</bookmark_value> <bookmark_value>legends, see also captions</bookmark_value>"
msgstr ""
-#. S9d5u
+#. zeXLi
#: captions.xhp
msgctxt ""
"captions.xhp\n"
"hd_id3150537\n"
"help.text"
-msgid "<variable id=\"captions\"><link href=\"text/swriter/guide/captions.xhp\" name=\"Using Captions\">Using Captions</link></variable>"
-msgstr "<variable id=\"captions\"><link href=\"text/swriter/guide/captions.xhp\" name=\"Utilització de llegendes\">Utilització de llegendes</link> </variable>"
+msgid "<variable id=\"captions\"><link href=\"text/swriter/guide/captions.xhp\">Using Captions</link></variable>"
+msgstr "<variable id=\"captions\"><link href=\"text/swriter/guide/captions.xhp\">Utilització de llegendes</link> </variable>"
#. sGPoW
#: captions.xhp
@@ -3068,13 +3068,13 @@ msgctxt ""
msgid "<bookmark_value>captions; adding chapter numbers</bookmark_value> <bookmark_value>objects; captioning automatically</bookmark_value> <bookmark_value>numbering; captions</bookmark_value> <bookmark_value>automatic numbering;of objects</bookmark_value> <bookmark_value>chapter numbers in captions</bookmark_value> <bookmark_value>inserting;chapter numbers in captions</bookmark_value>"
msgstr "<bookmark_value>llegendes; addició de numeració de capítols</bookmark_value><bookmark_value>objectes; aplicació automàtica de llegendes</bookmark_value><bookmark_value>numeració; llegendes</bookmark_value><bookmark_value>numeració automàtica;d'objectes</bookmark_value><bookmark_value>numeració de capítols en llegendes</bookmark_value><bookmark_value>inserció;numeració de capítols en llegendes</bookmark_value>"
-#. xAnbA
+#. Uh22f
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"hd_id3147684\n"
"help.text"
-msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Adding Chapter Numbers to Captions</link></variable>"
+msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\">Adding Chapter Numbers to Captions</link></variable>"
msgstr ""
#. 5efvj
@@ -3167,23 +3167,23 @@ msgctxt ""
msgid "$[officename] can automatically add a caption when you insert an object, graphic, or table. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - AutoCaption</emph>."
msgstr "El $[officename] pot afegir una llegenda de manera automàtica quan inseriu un objecte, un gràfic o una taula. Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME Writer ▸ Llegenda automàtica</emph>."
-#. H4yBp
+#. 2tQf5
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"par_id3145567\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01041100.xhp\" name=\"Caption dialog\">AutoCaption dialog</link>"
-msgstr "<link href=\"text/shared/optionen/01041100.xhp\" name=\"Diàleg Llegenda\">Diàleg Llegenda automàtica</link>"
+msgid "<link href=\"text/shared/optionen/01041100.xhp\">AutoCaption dialog</link>"
+msgstr "<link href=\"text/shared/optionen/01041100.xhp\">Diàleg Llegenda automàtica</link>"
-#. oTszA
+#. yEhFm
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"par_id3145574\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter numbering\">Chapter numbering</link>"
-msgstr "<link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numeració de capítols\">Numeració de capítols</link>"
+msgid "<link href=\"text/swriter/guide/chapter_numbering.xhp\">Chapter numbering</link>"
+msgstr "<link href=\"text/swriter/guide/chapter_numbering.xhp\">Numeració de capítols</link>"
#. j6Y5Q
#: change_header.xhp
@@ -3203,14 +3203,14 @@ msgctxt ""
msgid "<bookmark_value>headers; inserting</bookmark_value> <bookmark_value>footers; inserting</bookmark_value> <bookmark_value>page styles; changing from selection</bookmark_value> <bookmark_value>new page styles from selection</bookmark_value>"
msgstr "<bookmark_value>capçaleres; inserció</bookmark_value><bookmark_value>peus; inserció</bookmark_value><bookmark_value>estils de pàgina; canviar a partir de la selecció</bookmark_value><bookmark_value>nous estils de pàgina a partir de la selecció</bookmark_value>"
-#. Uqvsu
+#. tdE7A
#: change_header.xhp
msgctxt ""
"change_header.xhp\n"
"hd_id3146875\n"
"help.text"
-msgid "<variable id=\"change_header\"><link href=\"text/swriter/guide/change_header.xhp\" name=\"Creating a Page Style Based on the Current Page\">Creating a Page Style Based on the Current Page</link></variable>"
-msgstr "<variable id=\"change_header\"><link href=\"text/swriter/guide/change_header.xhp\" name=\"Creació d'un estil de pàgina basat en la pàgina actual\">Creació d'un estil de pàgina basat en la pàgina actual</link></variable>"
+msgid "<variable id=\"change_header\"><link href=\"text/swriter/guide/change_header.xhp\">Creating a Page Style Based on the Current Page</link></variable>"
+msgstr "<variable id=\"change_header\"><link href=\"text/swriter/guide/change_header.xhp\">Creació d'un estil de pàgina basat en la pàgina actual</link></variable>"
#. wemVX
#: change_header.xhp
@@ -3329,14 +3329,14 @@ msgctxt ""
msgid "<bookmark_value>outlines;numbering</bookmark_value> <bookmark_value>chapters;numbering</bookmark_value> <bookmark_value>deleting;heading numbers</bookmark_value> <bookmark_value>chapter numbering</bookmark_value> <bookmark_value>headings; numbering/paragraph styles</bookmark_value> <bookmark_value>numbering;headings</bookmark_value>"
msgstr "<bookmark_value>esquemes;numeració</bookmark_value><bookmark_value>capítols;numeració</bookmark_value><bookmark_value>supressió;números d'encapçalament</bookmark_value><bookmark_value>numeració de capítols</bookmark_value><bookmark_value>encapçalaments;numeració/estils de paràgraf</bookmark_value><bookmark_value>numeració;encapçalaments</bookmark_value>"
-#. ENE9G
+#. E5Z7H
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"hd_id3147682\n"
"help.text"
-msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Chapter Numbering\">Chapter Numbering</link></variable>"
-msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\" name=\"Numeració de capítols\">Numeració de capítols</link></variable>"
+msgid "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\">Chapter Numbering</link></variable>"
+msgstr "<variable id=\"chapter_numbering\"><link href=\"text/swriter/guide/chapter_numbering.xhp\">Numeració de capítols</link></variable>"
#. uESLX
#: chapter_numbering.xhp
@@ -3482,14 +3482,14 @@ msgctxt ""
msgid "<bookmark_value>matching conditional text in fields</bookmark_value> <bookmark_value>if-then queries as fields</bookmark_value> <bookmark_value>conditional text; setting up</bookmark_value> <bookmark_value>text; conditional text</bookmark_value> <bookmark_value>defining;conditions</bookmark_value>"
msgstr "<bookmark_value>concordança de text condicional en camps</bookmark_value><bookmark_value>consultes sí-aleshores com a camps</bookmark_value><bookmark_value>text condicional; configuració</bookmark_value><bookmark_value>text; text condicional</bookmark_value><bookmark_value>definició;condicions</bookmark_value>"
-#. ESwLE
+#. JvVwY
#: conditional_text.xhp
msgctxt ""
"conditional_text.xhp\n"
"hd_id3155619\n"
"help.text"
-msgid "<variable id=\"conditional_text\"><link href=\"text/swriter/guide/conditional_text.xhp\" name=\"Conditional Text\">Conditional Text</link></variable>"
-msgstr "<variable id=\"conditional_text\"><link href=\"text/swriter/guide/conditional_text.xhp\" name=\"Text condicional\">Text condicional</link></variable>"
+msgid "<variable id=\"conditional_text\"><link href=\"text/swriter/guide/conditional_text.xhp\">Conditional Text</link></variable>"
+msgstr "<variable id=\"conditional_text\"><link href=\"text/swriter/guide/conditional_text.xhp\">Text condicional</link></variable>"
#. LgPuf
#: conditional_text.xhp
@@ -3698,14 +3698,14 @@ msgctxt ""
msgid "If the field does not automatically update, press F9."
msgstr "Si el camp no s'actualitza de manera automàtica, premeu F9."
-#. NrTax
+#. ZSwLN
#: conditional_text.xhp
msgctxt ""
"conditional_text.xhp\n"
"par_id3145714\n"
"help.text"
-msgid "<link href=\"text/swriter/02/14020000.xhp\" name=\"List of conditional operators\">List of conditional operators</link>"
-msgstr "<link href=\"text/swriter/02/14020000.xhp\" name=\"Llista d'operadors condicionals\">Llista d'operadors condicionals</link>"
+msgid "<link href=\"text/swriter/02/14020000.xhp\">List of conditional operators</link>"
+msgstr "<link href=\"text/swriter/02/14020000.xhp\">Llista d'operadors condicionals</link>"
#. fkkSe
#: conditional_text2.xhp
@@ -3725,14 +3725,14 @@ msgctxt ""
msgid "<bookmark_value>page counts</bookmark_value> <bookmark_value>conditional text;page counts</bookmark_value>"
msgstr "<bookmark_value>recompte de pàgines</bookmark_value><bookmark_value>text condicional;recompte de pàgines</bookmark_value>"
-#. acDGe
+#. JCFDf
#: conditional_text2.xhp
msgctxt ""
"conditional_text2.xhp\n"
"hd_id3153108\n"
"help.text"
-msgid "<variable id=\"conditional_text2\"><link href=\"text/swriter/guide/conditional_text2.xhp\" name=\"Conditional Text for Page Counts\">Conditional Text for Page Counts</link></variable>"
-msgstr "<variable id=\"conditional_text2\"><link href=\"text/swriter/guide/conditional_text2.xhp\" name=\"Text condicional per al recompte de pàgines\">Text condicional per al recompte de pàgines</link></variable>"
+msgid "<variable id=\"conditional_text2\"><link href=\"text/swriter/guide/conditional_text2.xhp\">Conditional Text for Page Counts</link></variable>"
+msgstr "<variable id=\"conditional_text2\"><link href=\"text/swriter/guide/conditional_text2.xhp\">Text condicional per al recompte de pàgines</link></variable>"
#. g5mCB
#: conditional_text2.xhp
@@ -3833,14 +3833,14 @@ msgctxt ""
msgid "<bookmark_value>user-defined dictionaries; removing words from</bookmark_value> <bookmark_value>custom dictionaries; removing words from</bookmark_value> <bookmark_value>deleting;words in user-defined dictionaries</bookmark_value>"
msgstr "<bookmark_value>diccionaris definits per l'usuari; supressió de paraules de</bookmark_value> <bookmark_value>diccionaris personalitzats; supressió de paraules de</bookmark_value> <bookmark_value>supressió;paraules en diccionaris definits per l'usuari</bookmark_value>"
-#. xKEYb
+#. iVkcN
#: delete_from_dict.xhp
msgctxt ""
"delete_from_dict.xhp\n"
"hd_id3147688\n"
"help.text"
-msgid "<variable id=\"delete_from_dict\"><link href=\"text/swriter/guide/delete_from_dict.xhp\" name=\"Removing Words From a User-Defined Dictionary\">Removing Words From a User-Defined Dictionary</link></variable>"
-msgstr "<variable id=\"delete_from_dict\"><link href=\"text/swriter/guide/delete_from_dict.xhp\" name=\"Supressió de paraules d'un diccionari definit per l'usuari\">Supressió de paraules d'un diccionari definit per l'usuari</link></variable>"
+msgid "<variable id=\"delete_from_dict\"><link href=\"text/swriter/guide/delete_from_dict.xhp\">Removing Words From a User-Defined Dictionary</link></variable>"
+msgstr "<variable id=\"delete_from_dict\"><link href=\"text/swriter/guide/delete_from_dict.xhp\">Supressió de paraules d'un diccionari definit per l'usuari</link></variable>"
#. 9CQEx
#: delete_from_dict.xhp
@@ -3887,14 +3887,14 @@ msgctxt ""
msgid "<bookmark_value>sections;moving and copying</bookmark_value> <bookmark_value>moving; text sections</bookmark_value> <bookmark_value>copying; text sections</bookmark_value> <bookmark_value>pasting;cut/copied text sections</bookmark_value> <bookmark_value>mouse;moving and copying text</bookmark_value>"
msgstr "<bookmark_value>seccions;moure i copiar</bookmark_value> <bookmark_value>moure; seccions de text</bookmark_value> <bookmark_value>copiar; seccions de text</bookmark_value> <bookmark_value>enganxar;seccions de text retallades/enganxades</bookmark_value> <bookmark_value>ratolí;moure i copiar text</bookmark_value>"
-#. SDiJv
+#. WReUb
#: dragdroptext.xhp
msgctxt ""
"dragdroptext.xhp\n"
"hd_id3155919\n"
"help.text"
-msgid "<variable id=\"dragdroptext\"><link href=\"text/swriter/guide/dragdroptext.xhp\" name=\"Moving and Copying Text in Documents\">Moving and Copying Text in Documents</link></variable>"
-msgstr "<variable id=\"dragdroptext\"><link href=\"text/swriter/guide/dragdroptext.xhp\" name=\"Moure i copiar text en documents\">Moure i copiar text en documents</link></variable>"
+msgid "<variable id=\"dragdroptext\"><link href=\"text/swriter/guide/dragdroptext.xhp\">Moving and Copying Text in Documents</link></variable>"
+msgstr "<variable id=\"dragdroptext\"><link href=\"text/swriter/guide/dragdroptext.xhp\">Moure i copiar text en documents</link></variable>"
#. wea7F
#: dragdroptext.xhp
@@ -3950,14 +3950,14 @@ msgctxt ""
msgid "<bookmark_value>page styles; left and right pages</bookmark_value> <bookmark_value>blank pages with alternating page styles</bookmark_value> <bookmark_value>empty page with alternating page styles</bookmark_value> <bookmark_value>pages; left and right pages</bookmark_value> <bookmark_value>formatting; even/odd pages</bookmark_value> <bookmark_value>title pages; page styles</bookmark_value> <bookmark_value>First Page page style</bookmark_value> <bookmark_value>Left Page page style</bookmark_value> <bookmark_value>right pages</bookmark_value> <bookmark_value>even/odd pages;formatting</bookmark_value>"
msgstr "<bookmark_value>estils de pàgina; pàgines a esquerra i dreta</bookmark_value><bookmark_value>pàgines en blanc amb estils de pàgina alternats</bookmark_value><bookmark_value>pàgina buida amb estils de pàgina alternats</bookmark_value><bookmark_value>pàgines; pàgines a esquerra i dreta</bookmark_value><bookmark_value>formatació; pàgines parelles/senars</bookmark_value><bookmark_value>pàgines de títol; estils de pàgina</bookmark_value><bookmark_value>estil de pàgina de la primera pàgina</bookmark_value><bookmark_value>estil de pàgina de la pàgina esquerra</bookmark_value><bookmark_value>pàgines de la dreta</bookmark_value><bookmark_value>pàgines parelles/senars;formatació</bookmark_value>"
-#. nZbJD
+#. BfbaP
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"hd_id3153407\n"
"help.text"
-msgid "<variable id=\"even_odd_sdw\"><link href=\"text/swriter/guide/even_odd_sdw.xhp\" name=\"Alternating Page Styles on Odd and Even Pages\">Alternating Page Styles on Odd and Even Pages</link></variable>"
-msgstr "<variable id=\"even_odd_sdw\"><link href=\"text/swriter/guide/even_odd_sdw.xhp\" name=\"Alternar estils de pàgina en pàgines senars i parelles\">Alternar estils de pàgina en pàgines senars i parelles</link></variable>"
+msgid "<variable id=\"even_odd_sdw\"><link href=\"text/swriter/guide/even_odd_sdw.xhp\">Alternating Page Styles on Odd and Even Pages</link></variable>"
+msgstr "<variable id=\"even_odd_sdw\"><link href=\"text/swriter/guide/even_odd_sdw.xhp\">Alternar estils de pàgina en pàgines senars i parelles</link></variable>"
#. vcYLk
#: even_odd_sdw.xhp
@@ -4112,14 +4112,14 @@ msgctxt ""
msgid "Remove the check mark from <emph>Print automatically inserted blank pages</emph>."
msgstr "Suprimiu la marca de selecció de la casella <emph>Imprimeix les pàgines en blanc que s'han inserit automàticament</emph>."
-#. 9aMBF
+#. aiqGk
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3145596\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04010000.xhp\" name=\"Insert Break dialog\">Insert Break dialog</link>"
-msgstr "<link href=\"text/swriter/01/04010000.xhp\" name=\"Diàleg Insereix un salt\">Diàleg Insereix un salt</link>"
+msgid "<link href=\"text/swriter/01/04010000.xhp\">Insert Break dialog</link>"
+msgstr "<link href=\"text/swriter/01/04010000.xhp\">Diàleg Insereix un salt</link>"
#. 8Dr9Z
#: field_convert.xhp
@@ -4139,14 +4139,14 @@ msgctxt ""
msgid "<bookmark_value>fields; converting into text</bookmark_value> <bookmark_value>converting;fields, into text</bookmark_value> <bookmark_value>replacing;fields, by text</bookmark_value> <bookmark_value>changing;fields, into text</bookmark_value>"
msgstr "<bookmark_value>camps; convertir en text</bookmark_value><bookmark_value>convertir;camps, en text</bookmark_value><bookmark_value>reemplaçar;camps, per text</bookmark_value><bookmark_value>canviar;camps, a text</bookmark_value>"
-#. moEV8
+#. hSFPW
#: field_convert.xhp
msgctxt ""
"field_convert.xhp\n"
"hd_id3154079\n"
"help.text"
-msgid "<variable id=\"field_convert\"><link href=\"text/swriter/guide/field_convert.xhp\" name=\"Converting a Field into Text\">Converting a Field into Text</link></variable>"
-msgstr "<variable id=\"field_convert\"><link href=\"text/swriter/guide/field_convert.xhp\" name=\"Convertir un camp en text\">Convertir un camp en text</link></variable>"
+msgid "<variable id=\"field_convert\"><link href=\"text/swriter/guide/field_convert.xhp\">Converting a Field into Text</link></variable>"
+msgstr "<variable id=\"field_convert\"><link href=\"text/swriter/guide/field_convert.xhp\">Convertir un camp en text</link></variable>"
#. YHFzM
#: field_convert.xhp
@@ -4184,14 +4184,14 @@ msgctxt ""
msgid "Click \"Unformatted text\" in the <item type=\"menuitem\">Selection</item> list, and then click <item type=\"menuitem\">OK</item>."
msgstr "Feu clic a \"Text sense format\" a la llista <item type=\"menuitem\">Selecció</item> i, tot seguit, feu clic a <item type=\"menuitem\">D'acord</item>."
-#. jHRPx
+#. SpybR
#: field_convert.xhp
msgctxt ""
"field_convert.xhp\n"
"par_id3157551\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=\"Enganxament especial\">Enganxament especial</link>"
+msgid "<link href=\"text/shared/01/02070000.xhp\">Paste Special</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\">Enganxament especial</link>"
#. AL54d
#: fields.xhp
@@ -4211,14 +4211,14 @@ msgctxt ""
msgid "<bookmark_value>fields;updating/viewing</bookmark_value> <bookmark_value>updating;fields</bookmark_value> <bookmark_value>Help tips;fields</bookmark_value> <bookmark_value>properties;fields</bookmark_value> <bookmark_value>disabling;field highlighting</bookmark_value> <bookmark_value>changing;field shadings</bookmark_value> <bookmark_value>viewing;fields</bookmark_value>"
msgstr "<bookmark_value>camps;actualització/visualització</bookmark_value><bookmark_value>actualització;camps</bookmark_value><bookmark_value>indicadors d'ajuda;camps</bookmark_value><bookmark_value>propietats;camps</bookmark_value><bookmark_value>desactivació;realçament dels camps</bookmark_value><bookmark_value>canvi;ombreig dels camps</bookmark_value><bookmark_value>visualització;camps</bookmark_value>"
-#. bFGFN
+#. q8GkJ
#: fields.xhp
msgctxt ""
"fields.xhp\n"
"hd_id3145576\n"
"help.text"
-msgid "<variable id=\"fields\"><link href=\"text/swriter/guide/fields.xhp\" name=\"About Fields\">About Fields</link></variable>"
-msgstr "<variable id=\"fields\"><link href=\"text/swriter/guide/fields.xhp\" name=\"Quant als camps\">Quant als camps</link></variable>"
+msgid "<variable id=\"fields\"><link href=\"text/swriter/guide/fields.xhp\">About Fields</link></variable>"
+msgstr "<variable id=\"fields\"><link href=\"text/swriter/guide/fields.xhp\">Quant als camps</link></variable>"
#. c3hMB
#: fields.xhp
@@ -4238,14 +4238,14 @@ msgctxt ""
msgid "Viewing Fields"
msgstr "Visualització dels camps"
-#. MVoDN
+#. dUGnM
#: fields.xhp
msgctxt ""
"fields.xhp\n"
"par_id3150509\n"
"help.text"
-msgid "Fields consist of a field name and the field content. To switch the field display between the field name or the field content, choose <link href=\"text/swriter/01/03090000.xhp\" name=\"View - Field Names\"><emph>View - Field Names</emph></link>."
-msgstr "Els camps consisteixen en un nom de camp i el contingut del camp. Per a commutar la visualització entre el nom i el contingut del camp, trieu <link href=\"text/swriter/01/03090000.xhp\" name=\"Visualitza ▸ Noms dels camps\"><emph>Visualitza ▸ Noms dels camps</emph></link>."
+msgid "Fields consist of a field name and the field content. To switch the field display between the field name or the field content, choose <link href=\"text/swriter/01/03090000.xhp\"><emph>View - Field Names</emph></link>."
+msgstr "Els camps consisteixen en un nom de camp i el contingut del camp. Per a commutar la visualització entre el nom i el contingut del camp, trieu <link href=\"text/swriter/01/03090000.xhp\"><emph>Visualitza ▸ Noms dels camps</emph></link>."
#. QgDik
#: fields.xhp
@@ -4256,14 +4256,14 @@ msgctxt ""
msgid "To display or hide field highlighting in a document, choose <emph>View - Field Shadings</emph>. To permanently disable this feature, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Application Colors</emph>, and clear the check box in front of <emph>Field shadings</emph>."
msgstr "Per a mostrar o amagar el realçament dels camps en un document, trieu <emph>Visualitza ▸ Ombreigs dels camps</emph>. Per a desactivar aquesta característica de manera permanent, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ $[officename] ▸ Colors de l'aplicació</emph> i desactiveu la casella de selecció que hi ha davant d'<emph>Ombreigs dels camps</emph>."
-#. oP6DB
+#. j9rYQ
#: fields.xhp
msgctxt ""
"fields.xhp\n"
"par_id3152885\n"
"help.text"
-msgid "To change the color of field shadings, choose <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/01012000.xhp\" name=\"$[officename] - Application Colors\"><item type=\"menuitem\">$[officename] - Application Colors</item></link>, locate the <item type=\"menuitem\">Field shadings</item> option, and then select a different color in the <item type=\"menuitem\">Color setting</item> box."
-msgstr "Per a canviar el color dels ombreigs dels camps, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] ▸ Colors de l'aplicació\"><item type=\"menuitem\">$[officename] ▸ Colors de l'aplicació</item></link>, cerqueu l'opció <item type=\"menuitem\">Ombreigs dels camps</item> i seleccioneu un altre color a <item type=\"menuitem\">Configuració de color</item>."
+msgid "To change the color of field shadings, choose <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/01012000.xhp\"><item type=\"menuitem\">$[officename] - Application Colors</item></link>, locate the <item type=\"menuitem\">Field shadings</item> option, and then select a different color in the <item type=\"menuitem\">Color setting</item> box."
+msgstr "Per a canviar el color dels ombreigs dels camps, trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01012000.xhp\"><item type=\"menuitem\">$[officename] ▸ Colors de l'aplicació</item></link>, cerqueu l'opció <item type=\"menuitem\">Ombreigs dels camps</item> i seleccioneu un altre color a <item type=\"menuitem\">Configuració de color</item>."
#. DABCa
#: fields.xhp
@@ -4436,14 +4436,14 @@ msgctxt ""
msgid "<bookmark_value>inserting;date fields</bookmark_value> <bookmark_value>dates;inserting</bookmark_value> <bookmark_value>date fields;fixed/variable</bookmark_value> <bookmark_value>fixed dates</bookmark_value> <bookmark_value>variable dates</bookmark_value>"
msgstr "<bookmark_value>inserció;camps de data</bookmark_value> <bookmark_value>dates;inserció</bookmark_value> <bookmark_value>camps de data;fixos/variables</bookmark_value> <bookmark_value>dates fixes</bookmark_value> <bookmark_value>dates variables</bookmark_value>"
-#. EGyax
+#. N9AFk
#: fields_date.xhp
msgctxt ""
"fields_date.xhp\n"
"hd_id3155165\n"
"help.text"
-msgid "<variable id=\"fields_date\"><link href=\"text/swriter/guide/fields_date.xhp\" name=\"Inserting a Fixed or Variable Date Field\">Inserting a Fixed or Variable Date Field</link></variable>"
-msgstr "<variable id=\"fields_date\"><link href=\"text/swriter/guide/fields_date.xhp\" name=\"Inserció d'un camp de data fixa o variable\">Inserció d'un camp de data fixa o variable</link></variable>"
+msgid "<variable id=\"fields_date\"><link href=\"text/swriter/guide/fields_date.xhp\">Inserting a Fixed or Variable Date Field</link></variable>"
+msgstr "<variable id=\"fields_date\"><link href=\"text/swriter/guide/fields_date.xhp\">Inserció d'un camp de data fixa o variable</link></variable>"
#. bAf7A
#: fields_date.xhp
@@ -4508,14 +4508,14 @@ msgctxt ""
msgid "<bookmark_value>text; input fields</bookmark_value> <bookmark_value>fields; input fields in text</bookmark_value> <bookmark_value>input fields in text</bookmark_value> <bookmark_value>inserting;input fields</bookmark_value>"
msgstr "<bookmark_value>text; camps d'entrada</bookmark_value> <bookmark_value>camps; camps d'entrada en el text</bookmark_value> <bookmark_value>camps d'entrada en el text</bookmark_value> <bookmark_value>inserció;camps d'entrada</bookmark_value>"
-#. GhPic
+#. uGcDn
#: fields_enter.xhp
msgctxt ""
"fields_enter.xhp\n"
"hd_id3155916\n"
"help.text"
-msgid "<variable id=\"fields_enter\"><link href=\"text/swriter/guide/fields_enter.xhp\" name=\"Adding Input Fields\">Adding Input Fields</link></variable>"
-msgstr "<variable id=\"fields_enter\"><link href=\"text/swriter/guide/fields_enter.xhp\" name=\"Addició de camps d'entrada\">Addició de camps d'entrada</link> </variable>"
+msgid "<variable id=\"fields_enter\"><link href=\"text/swriter/guide/fields_enter.xhp\">Adding Input Fields</link></variable>"
+msgstr "<variable id=\"fields_enter\"><link href=\"text/swriter/guide/fields_enter.xhp\">Addició de camps d'entrada</link> </variable>"
#. DwE3L
#: fields_enter.xhp
@@ -4589,14 +4589,14 @@ msgctxt ""
msgid "<bookmark_value>fields; user data</bookmark_value> <bookmark_value>user data; querying</bookmark_value> <bookmark_value>conditions; user data fields</bookmark_value> <bookmark_value>hiding;text, from specific users</bookmark_value> <bookmark_value>text; hiding from specific users, with conditions</bookmark_value> <bookmark_value>user variables in conditions/fields</bookmark_value>"
msgstr "<bookmark_value>camps; dades de l'usuari</bookmark_value> <bookmark_value>dades de l'usuari; consultar</bookmark_value> <bookmark_value>condicions; camps de dades de l'usuari</bookmark_value> <bookmark_value>amagar;text, a determinats usuaris</bookmark_value> <bookmark_value>text; amagar a determinats usuaris, amb condicions</bookmark_value> <bookmark_value>variables d'usuari en condicions/camps</bookmark_value>"
-#. YLY8N
+#. vdaTQ
#: fields_userdata.xhp
msgctxt ""
"fields_userdata.xhp\n"
"hd_id3153398\n"
"help.text"
-msgid "<variable id=\"fields_userdata\"><link href=\"text/swriter/guide/fields_userdata.xhp\" name=\"Querying User Data in Fields or Conditions\">Querying User Data in Fields or Conditions</link></variable>"
-msgstr "<variable id=\"fields_userdata\"><link href=\"text/swriter/guide/fields_userdata.xhp\" name=\"Consultar dades de l'usuari en camps o condicions\">Consultar dades de l'usuari en camps o condicions</link></variable>"
+msgid "<variable id=\"fields_userdata\"><link href=\"text/swriter/guide/fields_userdata.xhp\">Querying User Data in Fields or Conditions</link></variable>"
+msgstr "<variable id=\"fields_userdata\"><link href=\"text/swriter/guide/fields_userdata.xhp\">Consultar dades de l'usuari en camps o condicions</link></variable>"
#. 7NpNv
#: fields_userdata.xhp
@@ -5021,14 +5021,14 @@ msgctxt ""
msgid "State"
msgstr "Estat"
-#. NyMWf
+#. aJrPt
#: fields_userdata.xhp
msgctxt ""
"fields_userdata.xhp\n"
"par_id3147392\n"
"help.text"
-msgid "<link href=\"text/swriter/02/14020000.xhp\" name=\"List of operators\">List of operators</link>"
-msgstr "<link href=\"text/swriter/02/14020000.xhp\" name=\"Llista d'operadors\">Llista d'operadors</link>"
+msgid "<link href=\"text/swriter/02/14020000.xhp\">List of operators</link>"
+msgstr "<link href=\"text/swriter/02/14020000.xhp\">Llista d'operadors</link>"
#. iXdUY
#: finding.xhp
@@ -5453,14 +5453,14 @@ msgctxt ""
msgid "<bookmark_value>pages; continuation pages</bookmark_value> <bookmark_value>next page number in footers</bookmark_value> <bookmark_value>continuation pages</bookmark_value> <bookmark_value>page numbers; continuation pages</bookmark_value>"
msgstr "<bookmark_value>pàgines; pàgines de continuació</bookmark_value> <bookmark_value>número de pàgina següent en els peus</bookmark_value> <bookmark_value>pàgines de continuació</bookmark_value> <bookmark_value>números de pàgina; pàgines de continuació</bookmark_value>"
-#. ZmQRf
+#. bFW9D
#: footer_nextpage.xhp
msgctxt ""
"footer_nextpage.xhp\n"
"hd_id3145819\n"
"help.text"
-msgid "<variable id=\"footer_nextpage\"><link href=\"text/swriter/guide/footer_nextpage.xhp\" name=\"Inserting Page Numbers of Continuation Pages\">Inserting Page Numbers of Continuation Pages</link></variable>"
-msgstr "<variable id=\"footer_nextpage\"><link href=\"text/swriter/guide/footer_nextpage.xhp\" name=\"Inserció de números de pàgina de pàgines de continuació\">Inserció de números de pàgina de pàgines de continuació</link></variable>"
+msgid "<variable id=\"footer_nextpage\"><link href=\"text/swriter/guide/footer_nextpage.xhp\">Inserting Page Numbers of Continuation Pages</link></variable>"
+msgstr "<variable id=\"footer_nextpage\"><link href=\"text/swriter/guide/footer_nextpage.xhp\">Inserció de números de pàgina de pàgines de continuació</link></variable>"
#. a2EvU
#: footer_nextpage.xhp
@@ -5561,14 +5561,14 @@ msgctxt ""
msgid "<bookmark_value>footers; with page numbers</bookmark_value> <bookmark_value>pages; numbers and count of</bookmark_value> <bookmark_value>page numbers; footers</bookmark_value> <bookmark_value>numbering;pages</bookmark_value>"
msgstr "<bookmark_value>peus; amb números de pàgina</bookmark_value><bookmark_value>pàgines; números i recompte de</bookmark_value><bookmark_value>números de pàgina; peus</bookmark_value><bookmark_value>numeració;pàgines</bookmark_value>"
-#. XmEkW
+#. BUTJm
#: footer_pagenumber.xhp
msgctxt ""
"footer_pagenumber.xhp\n"
"hd_id3155624\n"
"help.text"
-msgid "<variable id=\"footer_pagenumber\"><link href=\"text/swriter/guide/footer_pagenumber.xhp\" name=\"Inserting Page Numbers in Footers\">Inserting Page Numbers in Footers</link></variable>"
-msgstr "<variable id=\"footer_pagenumber\"><link href=\"text/swriter/guide/footer_pagenumber.xhp\" name=\"Inserció de números de pàgina en els peus\">Inserció de números de pàgina en els peus</link></variable>"
+msgid "<variable id=\"footer_pagenumber\"><link href=\"text/swriter/guide/footer_pagenumber.xhp\">Inserting Page Numbers in Footers</link></variable>"
+msgstr "<variable id=\"footer_pagenumber\"><link href=\"text/swriter/guide/footer_pagenumber.xhp\">Inserció de números de pàgina en els peus</link></variable>"
#. pCgxE
#: footer_pagenumber.xhp
@@ -5660,14 +5660,14 @@ msgctxt ""
msgid "<bookmark_value>endnotes;inserting and editing</bookmark_value> <bookmark_value>inserting;footnotes/endnotes</bookmark_value> <bookmark_value>deleting;footnotes</bookmark_value> <bookmark_value>editing;footnotes/endnotes</bookmark_value> <bookmark_value>organizing;footnotes</bookmark_value> <bookmark_value>footnotes; inserting and editing</bookmark_value>"
msgstr "<bookmark_value>notes finals;inserció i edició</bookmark_value><bookmark_value>inserció;notes al peu/notes finals</bookmark_value><bookmark_value>supressió;notes al peu</bookmark_value><bookmark_value>edició;notes al peu/notes finals</bookmark_value><bookmark_value>organització;notes al peu</bookmark_value><bookmark_value>notes al peu; inserció i edició</bookmark_value>"
-#. nG4Vg
+#. BkBF7
#: footnote_usage.xhp
msgctxt ""
"footnote_usage.xhp\n"
"hd_id3145819\n"
"help.text"
-msgid "<variable id=\"footnote_usage\"><link href=\"text/swriter/guide/footnote_usage.xhp\" name=\"Inserting and Editing Footnotes or Endnotes\">Inserting and Editing Footnotes or Endnotes</link></variable>"
-msgstr "<variable id=\"footnote_usage\"><link href=\"text/swriter/guide/footnote_usage.xhp\" name=\"Inserció i edició de notes al peu o de notes finals\">Inserció i edició de notes al peu o de notes finals</link></variable>"
+msgid "<variable id=\"footnote_usage\"><link href=\"text/swriter/guide/footnote_usage.xhp\">Inserting and Editing Footnotes or Endnotes</link></variable>"
+msgstr "<variable id=\"footnote_usage\"><link href=\"text/swriter/guide/footnote_usage.xhp\">Inserció i edició de notes al peu o de notes finals</link></variable>"
#. L43JM
#: footnote_usage.xhp
@@ -5696,14 +5696,14 @@ msgctxt ""
msgid "Click in your document where you want to place the anchor of the note."
msgstr "Feu clic a la part del document on vulgueu col·locar l'àncora de la nota."
-#. 3xiM8
+#. SdBCD
#: footnote_usage.xhp
msgctxt ""
"footnote_usage.xhp\n"
"par_id3147120\n"
"help.text"
-msgid "Choose <link href=\"text/swriter/01/04030000.xhp\" name=\"Insert - Footnote\"><emph>Insert - Footnote and Endnote - Footnote or Endnote</emph></link>."
-msgstr "Trieu <link href=\"text/swriter/01/04030000.xhp\" name=\"Insereix ▸ Nota al peu\"><emph>Insereix ▸ Nota al peu o final</emph></link>."
+msgid "Choose <link href=\"text/swriter/01/04030000.xhp\"><emph>Insert - Footnote and Endnote - Footnote or Endnote</emph></link>."
+msgstr "Trieu <link href=\"text/swriter/01/04030000.xhp\"><emph>Insereix ▸ Nota al peu o final</emph></link>."
#. GzUpe
#: footnote_usage.xhp
@@ -5822,31 +5822,31 @@ msgctxt ""
msgid "To jump from the footnote or endnote text to the note anchor in the text, press PageUp."
msgstr "Per passar de la nota al peu o de la nota final a l'àncora de la nota en el text, premeu Re Pàg."
-#. DeCjB
+#. c3X8K
#: footnote_usage.xhp
msgctxt ""
"footnote_usage.xhp\n"
"par_id3145081\n"
"help.text"
-msgid "To edit the numbering properties of a footnote or endnote anchor, click in front of the anchor, and choose <link href=\"text/swriter/01/02150000.xhp\" name=\"Edit - Footnote\"><emph>Edit - Footnote/Endnote</emph></link>."
-msgstr "Per a editar les propietats de numeració d'una àncora de nota al peu o de nota final, feu clic davant de l'àncora i trieu <link href=\"text/swriter/01/02150000.xhp\" name=\"Edita ▸ Nota al peu\"><emph>Edita ▸ Nota al peu o final</emph></link>."
+msgid "To edit the numbering properties of a footnote or endnote anchor, click in front of the anchor, and choose <link href=\"text/swriter/01/02150000.xhp\"><emph>Edit - Footnote/Endnote</emph></link>."
+msgstr "Per a editar les propietats de numeració d'una àncora de nota al peu o de nota final, feu clic davant de l'àncora i trieu <link href=\"text/swriter/01/02150000.xhp\"><emph>Edita ▸ Nota al peu o final</emph></link>."
-#. 5sDP3
+#. r6YK3
#: footnote_usage.xhp
msgctxt ""
"footnote_usage.xhp\n"
"par_id3147776\n"
"help.text"
-msgid "To change the formatting that $[officename] applies to footnotes and endnotes, choose <link href=\"text/swriter/01/06080000.xhp\" name=\"Tools - Footnotes\"><emph>Tools - Footnotes and Endnotes</emph></link>."
-msgstr "Per canviar la formatació que el $[officename] aplica a les notes al peu i a les notes finals, trieu <link href=\"text/swriter/01/06080000.xhp\" name=\"Eines - Notes al peu\"><emph>Eines - Notes al peu/Notes finals</emph></link>."
+msgid "To change the formatting that $[officename] applies to footnotes and endnotes, choose <link href=\"text/swriter/01/06080000.xhp\"><emph>Tools - Footnotes and Endnotes</emph></link>."
+msgstr "Per canviar la formatació que el $[officename] aplica a les notes al peu i a les notes finals, trieu <link href=\"text/swriter/01/06080000.xhp\"><emph>Eines - Notes al peu/Notes finals</emph></link>."
-#. F4JT3
+#. yAmpU
#: footnote_usage.xhp
msgctxt ""
"footnote_usage.xhp\n"
"par_id3147813\n"
"help.text"
-msgid "To edit the properties of the text area for footnotes or endnotes, choose <emph>Format - Page Style</emph>, and then click the <link href=\"text/swriter/01/05040600.xhp\" name=\"Footnote\"><emph>Footnote</emph></link> tab."
+msgid "To edit the properties of the text area for footnotes or endnotes, choose <emph>Format - Page Style</emph>, and then click the <link href=\"text/swriter/01/05040600.xhp\"><emph>Footnote</emph></link> tab."
msgstr ""
#. iR5ym
@@ -5867,13 +5867,13 @@ msgctxt ""
msgid "Shortcut keys can be made to insert, edit, and navigate to footnotes and endnotes. Choose <menuitem>Tools - Customize - Keyboard</menuitem> tab and enter <input>note</input> in the Functions box to see possibilities."
msgstr ""
-#. nDvQ9
+#. KWZiJ
#: footnote_usage.xhp
msgctxt ""
"footnote_usage.xhp\n"
"par_id251603931682056\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"makeshortcut\">Making a Shortcut Key</link>"
+msgid "<link href=\"text/shared/01/06140200.xhp\">Making a Shortcut Key</link>"
msgstr ""
#. r9FFt
@@ -5894,14 +5894,14 @@ msgctxt ""
msgid "<bookmark_value>spacing; endnotes/footnotes</bookmark_value> <bookmark_value>endnotes; spacing</bookmark_value> <bookmark_value>footnotes; spacing</bookmark_value> <bookmark_value>borders;for footnotes/endnotes</bookmark_value> <bookmark_value>lines;footnotes/endnotes</bookmark_value>"
msgstr "<bookmark_value>espaiat; notes finals/notes al peu</bookmark_value> <bookmark_value>notes finals; espaiat</bookmark_value> <bookmark_value>notes al peu; espaiat</bookmark_value> <bookmark_value>vores;per a les notes al peu/notes finals</bookmark_value> <bookmark_value>línies;notes al peu/notes finals</bookmark_value>"
-#. qqbty
+#. 8Qwj9
#: footnote_with_line.xhp
msgctxt ""
"footnote_with_line.xhp\n"
"hd_id3147683\n"
"help.text"
-msgid "<variable id=\"footnote_with_line\"><link href=\"text/swriter/guide/footnote_with_line.xhp\" name=\"Spacing Between Footnotes\">Spacing Between Footnotes</link></variable>"
-msgstr "<variable id=\"footnote_with_line\"><link href=\"text/swriter/guide/footnote_with_line.xhp\" name=\"Espaiat entre notes al peu\">Espaiat entre notes al peu</link></variable>"
+msgid "<variable id=\"footnote_with_line\"><link href=\"text/swriter/guide/footnote_with_line.xhp\">Spacing Between Footnotes</link></variable>"
+msgstr "<variable id=\"footnote_with_line\"><link href=\"text/swriter/guide/footnote_with_line.xhp\">Espaiat entre notes al peu</link></variable>"
#. TvzoQ
#: footnote_with_line.xhp
@@ -5939,14 +5939,14 @@ msgctxt ""
msgid "Right-click the Paragraph Style that you want to modify, for example, \"Footnote\", and choose <emph>Modify</emph>."
msgstr "Feu clic amb el botó dret a l'estil de paràgraf que vulgueu modificar, com ara \"Nota al peu\", i trieu <emph>Modifica</emph>."
-#. NAXTm
+#. hfBwe
#: footnote_with_line.xhp
msgctxt ""
"footnote_with_line.xhp\n"
"par_id3155884\n"
"help.text"
-msgid "Click the <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"><emph>Borders</emph></link> tab."
-msgstr "Feu clic a la pestanya <link href=\"text/shared/01/05030500.xhp\" name=\"Vores\"><emph>Vores</emph></link>."
+msgid "Click the <link href=\"text/shared/01/05030500.xhp\"><emph>Borders</emph></link> tab."
+msgstr "Feu clic a la pestanya <link href=\"text/shared/01/05030500.xhp\"><emph>Vores</emph></link>."
#. BvTvY
#: footnote_with_line.xhp
@@ -6002,14 +6002,14 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Feu clic a <emph>D'acord</emph>."
-#. anTAg
+#. DZDTk
#: footnote_with_line.xhp
msgctxt ""
"footnote_with_line.xhp\n"
"par_id3148846\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Format - Paragraph - Borders\">Format - Paragraph - Borders</link>"
-msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Format - Paràgraf - Vores\">Format - Paràgraf - Vores</link>"
+msgid "<link href=\"text/shared/01/05030500.xhp\">Format - Paragraph - Borders</link>"
+msgstr "<link href=\"text/shared/01/05030500.xhp\">Format - Paràgraf - Vores</link>"
#. 6DdLX
#: form_letters_main.xhp
@@ -6029,14 +6029,14 @@ msgctxt ""
msgid "<bookmark_value>serial letters</bookmark_value> <bookmark_value>form letters</bookmark_value> <bookmark_value>mail merge</bookmark_value> <bookmark_value>letters; creating form letters</bookmark_value> <bookmark_value>wizards;form letters</bookmark_value>"
msgstr "<bookmark_value>cartes en sèrie</bookmark_value> <bookmark_value>cartes de formulari</bookmark_value> <bookmark_value>combinació de correu</bookmark_value> <bookmark_value>cartes; creació de cartes de formulari</bookmark_value> <bookmark_value>auxiliars;cartes de formulari</bookmark_value>"
-#. JrcYS
+#. AkSE4
#: form_letters_main.xhp
msgctxt ""
"form_letters_main.xhp\n"
"hd_id3159257\n"
"help.text"
-msgid "<variable id=\"form_letters\"><variable id=\"form_letters_main\"><link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"Creating a Form Letter\">Creating a Form Letter</link></variable></variable>"
-msgstr "<variable id=\"form_letters\"><variable id=\"form_letters_main\"><link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"Creació d'una carta de formulari\">Creació d'una carta de formulari</link></variable></variable>"
+msgid "<variable id=\"form_letters\"><variable id=\"form_letters_main\"><link href=\"text/swriter/guide/form_letters_main.xhp\">Creating a Form Letter</link></variable></variable>"
+msgstr "<variable id=\"form_letters\"><variable id=\"form_letters_main\"><link href=\"text/swriter/guide/form_letters_main.xhp\">Creació d'una carta de formulari</link></variable></variable>"
#. ciKe5
#: form_letters_main.xhp
@@ -6308,14 +6308,14 @@ msgctxt ""
msgid "To avoid confusion, use the same document template for the master document and its subdocuments. This happens automatically when you create the master document and its subdocuments from an existing document with headings, using the command <emph>File - Send - Create Master Document</emph>."
msgstr "Per evitar confusions, utilitzeu la mateixa plantilla de document per al document mestre i per als seus subdocuments. Si creeu el document mestre i els seus subdocuments a partir d'un document existent amb encapçalaments mitjançant l'orde <emph>Fitxer ▸ Envia ▸ Crea un document mestre</emph>, s'aplicarà de manera automàtica la mateixa plantilla al document mestre i als seus subdocuments."
-#. KpwJJ
+#. F6BCH
#: globaldoc.xhp
msgctxt ""
"globaldoc.xhp\n"
"par_id3154382\n"
"help.text"
-msgid "<link href=\"text/shared/01/02110000.xhp\" name=\"Navigator in master mode\">Navigator in master mode</link>"
-msgstr "<link href=\"text/shared/01/02110000.xhp\" name=\"El Navegador en mode mestre\">El Navegador en mode mestre</link>"
+msgid "<link href=\"text/shared/01/02110000.xhp\">Navigator in master mode</link>"
+msgstr "<link href=\"text/shared/01/02110000.xhp\">El Navegador en mode mestre</link>"
#. BYbcU
#: globaldoc_howtos.xhp
@@ -6641,14 +6641,14 @@ msgctxt ""
msgid "The subdocuments will be exported as sections. Use <item type=\"menuitem\">Format - Sections</item> to unprotect and remove sections, if you prefer a plain text document without sections."
msgstr "Els subdocuments s'exportaran com a seccions. Utilitzeu <item type=\"menuitem\">Format - Seccions</item> per desprotegir i suprimir les seccions en cas que preferiu tindre un document de text net sense seccions."
-#. mikKE
+#. HE73m
#: globaldoc_howtos.xhp
msgctxt ""
"globaldoc_howtos.xhp\n"
"par_id3154382\n"
"help.text"
-msgid "<link href=\"text/shared/01/02110000.xhp\" name=\"Navigator in master mode\">Navigator in master mode</link>"
-msgstr "<link href=\"text/shared/01/02110000.xhp\" name=\"El Navegador en mode mestre\">El Navegador en mode mestre</link>"
+msgid "<link href=\"text/shared/01/02110000.xhp\">Navigator in master mode</link>"
+msgstr "<link href=\"text/shared/01/02110000.xhp\">El Navegador en mode mestre</link>"
#. CDdMw
#: header_footer.xhp
@@ -6668,23 +6668,23 @@ msgctxt ""
msgid "<bookmark_value>headers;about</bookmark_value> <bookmark_value>footers;about</bookmark_value> <bookmark_value>HTML documents; headers and footers</bookmark_value>"
msgstr "<bookmark_value>capçaleres;quant a</bookmark_value><bookmark_value>peus;quant a</bookmark_value><bookmark_value>documents HTML; capçaleres i peus</bookmark_value>"
-#. mr2j6
+#. 7yCuv
#: header_footer.xhp
msgctxt ""
"header_footer.xhp\n"
"hd_id3155863\n"
"help.text"
-msgid "<variable id=\"header_footer\"><link href=\"text/swriter/guide/header_footer.xhp\" name=\"About Headers and Footers\">About Headers and Footers</link></variable>"
-msgstr "<variable id=\"header_footer\"><link href=\"text/swriter/guide/header_footer.xhp\" name=\"Quant a les capçaleres i els peus\">Quant a les capçaleres i els peus</link></variable>"
+msgid "<variable id=\"header_footer\"><link href=\"text/swriter/guide/header_footer.xhp\">About Headers and Footers</link></variable>"
+msgstr "<variable id=\"header_footer\"><link href=\"text/swriter/guide/header_footer.xhp\">Quant a les capçaleres i els peus</link></variable>"
-#. Smjno
+#. MS5mS
#: header_footer.xhp
msgctxt ""
"header_footer.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Headers and footers are areas in the top and the bottom page margins, where you can add text or graphics. Headers and footers are added to the current page style. Any page that uses the same style automatically receives the header or footer that you add. You can insert <link href=\"text/swriter/01/04090000.xhp\" name=\"Fields\">Fields</link>, such as page numbers and chapter headings, in headers and footers in a text document."
-msgstr "Les capçaleres i els peus són àrees dels marges superior i inferior de la pàgina on podeu afegir text o gràfics. Les capçaleres i els peus s'afigen a l'estil de pàgina actual. Qualsevol pàgina que utilitze el mateix estil rebrà automàticament la capçalera o el peu que afegiu. Podeu inserir <link href=\"text/swriter/01/04090000.xhp\" name=\"camps\">camps</link>, com ara números de pàgina i encapçalaments de capítol, a les capçaleres i els peus d'un document de text."
+msgid "Headers and footers are areas in the top and the bottom page margins, where you can add text or graphics. Headers and footers are added to the current page style. Any page that uses the same style automatically receives the header or footer that you add. You can insert <link href=\"text/swriter/01/04090000.xhp\">Fields</link>, such as page numbers and chapter headings, in headers and footers in a text document."
+msgstr "Les capçaleres i els peus són àrees dels marges superior i inferior de la pàgina on podeu afegir text o gràfics. Les capçaleres i els peus s'afigen a l'estil de pàgina actual. Qualsevol pàgina que utilitze el mateix estil rebrà automàticament la capçalera o el peu que afegiu. Podeu inserir <link href=\"text/swriter/01/04090000.xhp\">camps</link>, com ara números de pàgina i encapçalaments de capítol, a les capçaleres i els peus d'un document de text."
#. BGCUB
#: header_footer.xhp
@@ -6722,14 +6722,14 @@ msgctxt ""
msgid "You can also choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Header</item> or <item type=\"menuitem\">Footer</item> tab, and then select <item type=\"menuitem\">Header on</item> or <item type=\"menuitem\">Footer on</item>. Clear the <item type=\"menuitem\">Same content left/right</item> check box if you want to define different headers and footers for even and odd pages."
msgstr ""
-#. ztuLT
+#. kq9tB
#: header_footer.xhp
msgctxt ""
"header_footer.xhp\n"
"par_id3146876\n"
"help.text"
-msgid "To use different headers or footers in your document, you must add them to different <link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Page Styles\">Page Styles</link>, and then apply the styles to the pages where you want the headers or footer to appear."
-msgstr "Per utilitzar capçaleres o peus diferents en el document, els heu d'afegir a <link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Page Styles\">estils de pàgina</link> diferents i a continuació heu d'aplicar els estils a les pàgines on vulgueu que apareguen les capçaleres o els peus."
+msgid "To use different headers or footers in your document, you must add them to different <link href=\"text/swriter/guide/header_pagestyles.xhp\">Page Styles</link>, and then apply the styles to the pages where you want the headers or footer to appear."
+msgstr "Per utilitzar capçaleres o peus diferents en el document, els heu d'afegir a <link href=\"text/swriter/guide/header_pagestyles.xhp\">estils de pàgina</link> diferents i a continuació heu d'aplicar els estils a les pàgines on vulgueu que apareguen les capçaleres o els peus."
#. C6KPU
#: header_footer.xhp
@@ -6749,14 +6749,14 @@ msgctxt ""
msgid "Some of the header and footer options are also available for HTML documents. Headers and footers are not supported by HTML and instead are exported with special tags, so that they can be viewed in a browser. Headers and footers are only exported in HTML documents if they are enabled in Web Layout mode. When you reopen the document in $[officename], the headers and footers are displayed correctly, including any fields that you inserted."
msgstr "Algunes de les opcions per a les capçaleres i els peus també estan disponibles per als documents HTML. Les capçaleres i els peus no són compatibles amb el llenguatge HTML, per la qual cosa s'exporten amb unes etiquetes especials que permeten visualitzar-les en els navegadors. Les capçaleres i els peus només s'exporten als documents HTML si estan habilitats en el mode de format web. Quan torneu a obrir el document amb el $[officename], les capçaleres i els peus es visualitzaran correctament, inclosos els camps que hàgeu inserit."
-#. BqmDZ
+#. GAq4H
#: header_footer.xhp
msgctxt ""
"header_footer.xhp\n"
"par_id3153174\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Page Styles\">Page Styles</link>"
-msgstr "<link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Estils de pàgina\">Estils de pàgina</link>"
+msgid "<link href=\"text/swriter/guide/header_pagestyles.xhp\">Page Styles</link>"
+msgstr "<link href=\"text/swriter/guide/header_pagestyles.xhp\">Estils de pàgina</link>"
#. GReF4
#: header_pagestyles.xhp
@@ -6776,14 +6776,14 @@ msgctxt ""
msgid "<bookmark_value>headers;defining for left and right pages</bookmark_value> <bookmark_value>footers;defining for left and right pages</bookmark_value> <bookmark_value>page styles; changing</bookmark_value> <bookmark_value>defining; headers/footers</bookmark_value> <bookmark_value>mirrored page layout</bookmark_value>"
msgstr "<bookmark_value>capçaleres;definició per a pàgines esquerres i dretes</bookmark_value><bookmark_value>peus;definició per a pàgines esquerres i dretes</bookmark_value><bookmark_value>estils de pàgina; canvi</bookmark_value><bookmark_value>definició; capçaleres/peus</bookmark_value><bookmark_value>format de pàgina reflectit</bookmark_value>"
-#. wngeC
+#. LBKBY
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"hd_id3155920\n"
"help.text"
-msgid "<variable id=\"header_pagestyles\"><link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Defining Different Headers and Footers\">Defining Different Headers and Footers</link></variable>"
-msgstr "<variable id=\"header_pagestyles\"><link href=\"text/swriter/guide/header_pagestyles.xhp\" name=\"Definició de capçaleres i peus diferents\">Definició de capçaleres i peus diferents</link></variable>"
+msgid "<variable id=\"header_pagestyles\"><link href=\"text/swriter/guide/header_pagestyles.xhp\">Defining Different Headers and Footers</link></variable>"
+msgstr "<variable id=\"header_pagestyles\"><link href=\"text/swriter/guide/header_pagestyles.xhp\">Definició de capçaleres i peus diferents</link></variable>"
#. hQHo9
#: header_pagestyles.xhp
@@ -6956,14 +6956,14 @@ msgctxt ""
msgid "<bookmark_value>running titles in headers</bookmark_value> <bookmark_value>floating titles in headers</bookmark_value> <bookmark_value>headers; chapter information</bookmark_value> <bookmark_value>chapter names in headers</bookmark_value> <bookmark_value>names; chapter names in headers</bookmark_value>"
msgstr "<bookmark_value>llegendes de foli a les capçaleres</bookmark_value><bookmark_value>títols flotants a les capçaleres</bookmark_value><bookmark_value>capçaleres; informació de capítol</bookmark_value><bookmark_value>noms dels capítols a les capçaleres</bookmark_value><bookmark_value>noms; noms dels capítols a les capçaleres</bookmark_value>"
-#. uCRSC
+#. pxoFr
#: header_with_chapter.xhp
msgctxt ""
"header_with_chapter.xhp\n"
"hd_id3155919\n"
"help.text"
-msgid "<variable id=\"header_with_chapter\"><link href=\"text/swriter/guide/header_with_chapter.xhp\" name=\"Inserting a Chapter Name and Number in a Header or a Footer\">Inserting a Chapter Name and Number in a Header or a Footer</link></variable>"
-msgstr "<variable id=\"header_with_chapter\"><link href=\"text/swriter/guide/header_with_chapter.xhp\" name=\"Inserció del nom i del número de capítol en una capçalera o en un peu\">Inserció del nom i del número de capítol en una capçalera o en un peu</link></variable>"
+msgid "<variable id=\"header_with_chapter\"><link href=\"text/swriter/guide/header_with_chapter.xhp\">Inserting a Chapter Name and Number in a Header or a Footer</link></variable>"
+msgstr "<variable id=\"header_with_chapter\"><link href=\"text/swriter/guide/header_with_chapter.xhp\">Inserció del nom i del número de capítol en una capçalera o en un peu</link></variable>"
#. EsFqA
#: header_with_chapter.xhp
@@ -7127,14 +7127,14 @@ msgctxt ""
msgid "<bookmark_value>inserting;lines under headers/above footers</bookmark_value> <bookmark_value>lines; under headers/above footers</bookmark_value> <bookmark_value>headers;formatting</bookmark_value> <bookmark_value>footers;formatting</bookmark_value> <bookmark_value>shadows;headers/footers</bookmark_value> <bookmark_value>borders;for headers/footers</bookmark_value>"
msgstr "<bookmark_value>inserció; línies sota les capçaleres</bookmark_value> <bookmark_value>línies; sota les capçaleres/damunt dels peus</bookmark_value> <bookmark_value>capçaleres;formatació</bookmark_value> <bookmark_value>peus;formatació</bookmark_value> <bookmark_value>ombres;capçaleres/peus</bookmark_value> <bookmark_value>vores;per a les capçaleres/per als peus</bookmark_value>"
-#. Bvi6G
+#. WYyFw
#: header_with_line.xhp
msgctxt ""
"header_with_line.xhp\n"
"hd_id3154866\n"
"help.text"
-msgid "<variable id=\"header_with_line\"><link href=\"text/swriter/guide/header_with_line.xhp\" name=\"Formatting Headers or Footers\">Formatting Headers or Footers</link></variable>"
-msgstr "<variable id=\"header_with_line\"><link href=\"text/swriter/guide/header_with_line.xhp\" name=\"Formatació de capçaleres i peus\">Formatació de capçaleres i peus</link></variable>"
+msgid "<variable id=\"header_with_line\"><link href=\"text/swriter/guide/header_with_line.xhp\">Formatting Headers or Footers</link></variable>"
+msgstr "<variable id=\"header_with_line\"><link href=\"text/swriter/guide/header_with_line.xhp\">Formatació de capçaleres i peus</link></variable>"
#. ibXRT
#: header_with_line.xhp
@@ -7208,13 +7208,13 @@ msgctxt ""
msgid "<bookmark_value>text; hiding</bookmark_value> <bookmark_value>sections;hiding</bookmark_value> <bookmark_value>paragraphs;hiding</bookmark_value> <bookmark_value>hiding;text, with conditions</bookmark_value> <bookmark_value>variables;for hiding text</bookmark_value>"
msgstr "<bookmark_value>text; amagar</bookmark_value><bookmark_value>seccions; amagar</bookmark_value><bookmark_value>paràgrafs;amagar</bookmark_value><bookmark_value>amagar;text, amb condicions</bookmark_value><bookmark_value>variables;per amagar text</bookmark_value>"
-#. Suhpv
+#. Hib5P
#: hidden_text.xhp
msgctxt ""
"hidden_text.xhp\n"
"hd_id3148856\n"
"help.text"
-msgid "<variable id=\"hidden_text\"><link href=\"text/swriter/guide/hidden_text.xhp\" name=\"Hiding Text\">Hiding Text</link></variable>"
+msgid "<variable id=\"hidden_text\"><link href=\"text/swriter/guide/hidden_text.xhp\">Hiding Text</link></variable>"
msgstr ""
#. W7T3G
@@ -7478,50 +7478,50 @@ msgctxt ""
msgid "Click <item type=\"menuitem\">Insert</item>."
msgstr "Feu clic a <item type=\"menuitem\">Insereix</item>."
-#. CGyZU
+#. N47oT
#: hidden_text.xhp
msgctxt ""
"hidden_text.xhp\n"
"par_id3846858\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/hidden_text_display.xhp\" name=\"Displaying Hidden Text\">Displaying Hidden Text</link>"
-msgstr "<link href=\"text/swriter/guide/hidden_text_display.xhp\" name=\"Visualització de text amagat\">Visualització de text amagat</link>"
+msgid "<link href=\"text/swriter/guide/hidden_text_display.xhp\">Displaying Hidden Text</link>"
+msgstr "<link href=\"text/swriter/guide/hidden_text_display.xhp\">Visualització de text amagat</link>"
-#. Aj3Tb
+#. B5Gct
#: hidden_text.xhp
msgctxt ""
"hidden_text.xhp\n"
"par_id8148442\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/nonprintable_text.xhp\" name=\"Creating Non-printing Text\">Creating Non-printing Text</link>"
-msgstr "<link href=\"text/swriter/guide/nonprintable_text.xhp\" name=\"Creació de text no imprimible\">Creació de text no imprimible</link>"
+msgid "<link href=\"text/swriter/guide/nonprintable_text.xhp\">Creating Non-printing Text</link>"
+msgstr "<link href=\"text/swriter/guide/nonprintable_text.xhp\">Creació de text no imprimible</link>"
-#. nrEkc
+#. D9vu2
#: hidden_text.xhp
msgctxt ""
"hidden_text.xhp\n"
"par_id3148603\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090000.xhp\" name=\"Insert - Fields - Other\">Insert - Field - More Fields</link>"
-msgstr "<link href=\"text/swriter/01/04090000.xhp\" name=\"Insereix ▸ Camps ▸ Més camps\">Insereix ▸ Camps ▸ Més camps</link>"
+msgid "<link href=\"text/swriter/01/04090000.xhp\">Insert - Field - More Fields</link>"
+msgstr "<link href=\"text/swriter/01/04090000.xhp\">Insereix ▸ Camps ▸ Més camps</link>"
-#. k2wpW
+#. MSbkE
#: hidden_text.xhp
msgctxt ""
"hidden_text.xhp\n"
"par_id3147011\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04020000.xhp\" name=\"Insert - Section\">Insert - Section</link>"
-msgstr "<link href=\"text/swriter/01/04020000.xhp\" name=\"Insereix ▸ Secció\">Insereix ▸ Secció</link>"
+msgid "<link href=\"text/swriter/01/04020000.xhp\">Insert - Section</link>"
+msgstr "<link href=\"text/swriter/01/04020000.xhp\">Insereix ▸ Secció</link>"
-#. Vhacd
+#. BVCri
#: hidden_text.xhp
msgctxt ""
"hidden_text.xhp\n"
"par_id3147029\n"
"help.text"
-msgid "<link href=\"text/swriter/02/14020000.xhp\" name=\"List of Operators\">List of Operators</link>"
-msgstr "<link href=\"text/swriter/02/14020000.xhp\" name=\"Llista d'operadors\">Llista d'operadors</link>"
+msgid "<link href=\"text/swriter/02/14020000.xhp\">List of Operators</link>"
+msgstr "<link href=\"text/swriter/02/14020000.xhp\">Llista d'operadors</link>"
#. qGcAQ
#: hidden_text_display.xhp
@@ -7541,14 +7541,14 @@ msgctxt ""
msgid "<bookmark_value>hidden text; displaying</bookmark_value> <bookmark_value>displaying;hidden text</bookmark_value>"
msgstr "<bookmark_value>text amagat; visualització</bookmark_value> <bookmark_value>visualització;text amagat</bookmark_value>"
-#. gB9jB
+#. 7BBuC
#: hidden_text_display.xhp
msgctxt ""
"hidden_text_display.xhp\n"
"hd_id3148856\n"
"help.text"
-msgid "<variable id=\"hidden_text_display\"><link href=\"text/swriter/guide/hidden_text_display.xhp\" name=\"Displaying Hidden Text\">Displaying Hidden Text</link></variable>"
-msgstr "<variable id=\"hidden_text_display\"><link href=\"text/swriter/guide/hidden_text_display.xhp\" name=\"Visualització de text amagat\">Visualització de text amagat</link></variable>"
+msgid "<variable id=\"hidden_text_display\"><link href=\"text/swriter/guide/hidden_text_display.xhp\">Displaying Hidden Text</link></variable>"
+msgstr "<variable id=\"hidden_text_display\"><link href=\"text/swriter/guide/hidden_text_display.xhp\">Visualització de text amagat</link></variable>"
#. DGBMA
#: hidden_text_display.xhp
@@ -7586,23 +7586,23 @@ msgctxt ""
msgid "Double-click in front of the hidden text field or the hidden paragraph field, and change the condition statement."
msgstr "Feu doble clic davant del camp de text amagat o de paràgraf amagat i canvieu l'expressió de la condició."
-#. 4sBZf
+#. NdsMn
#: hidden_text_display.xhp
msgctxt ""
"hidden_text_display.xhp\n"
"par_id1865901\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/hidden_text.xhp\" name=\"Hiding Text\">Hiding Text</link>"
-msgstr "<link href=\"text/swriter/guide/hidden_text.xhp\" name=\"Amagar text\">Amagar text</link>"
+msgid "<link href=\"text/swriter/guide/hidden_text.xhp\">Hiding Text</link>"
+msgstr "<link href=\"text/swriter/guide/hidden_text.xhp\">Amagar text</link>"
-#. btcQi
+#. BG2gh
#: hidden_text_display.xhp
msgctxt ""
"hidden_text_display.xhp\n"
"par_id3147029\n"
"help.text"
-msgid "<link href=\"text/swriter/02/14020000.xhp\" name=\"List of Operators\">List of Operators</link>"
-msgstr "<link href=\"text/swriter/02/14020000.xhp\" name=\"Llista d'operadors\">Llista d'operadors</link>"
+msgid "<link href=\"text/swriter/02/14020000.xhp\">List of Operators</link>"
+msgstr "<link href=\"text/swriter/02/14020000.xhp\">Llista d'operadors</link>"
#. eSimR
#: hyperlinks.xhp
@@ -7622,14 +7622,14 @@ msgctxt ""
msgid "<bookmark_value>hyperlinks; inserting from Navigator</bookmark_value> <bookmark_value>inserting; hyperlinks from Navigator</bookmark_value> <bookmark_value>cross-references; inserting with Navigator</bookmark_value> <bookmark_value>Navigator;inserting hyperlinks</bookmark_value>"
msgstr "<bookmark_value>enllaços; inserció des del Navegador</bookmark_value> <bookmark_value>inserció; enllaços des del Navegador</bookmark_value> <bookmark_value>referències creuades; inserció des del Navegador</bookmark_value> <bookmark_value>Navegador;inserció d'enllaços</bookmark_value>"
-#. nZyca
+#. HejgY
#: hyperlinks.xhp
msgctxt ""
"hyperlinks.xhp\n"
"hd_id3155845\n"
"help.text"
-msgid "<variable id=\"hyperlinks\"><link href=\"text/swriter/guide/hyperlinks.xhp\" name=\"Inserting Hyperlinks With the Navigator\">Inserting Hyperlinks With the Navigator</link></variable>"
-msgstr "<variable id=\"hyperlinks\"><link href=\"text/swriter/guide/hyperlinks.xhp\" name=\"Inserció d'enllaços amb el Navegador\">Inserció d'enllaços amb el Navegador</link></variable>"
+msgid "<variable id=\"hyperlinks\"><link href=\"text/swriter/guide/hyperlinks.xhp\">Inserting Hyperlinks With the Navigator</link></variable>"
+msgstr "<variable id=\"hyperlinks\"><link href=\"text/swriter/guide/hyperlinks.xhp\">Inserció d'enllaços amb el Navegador</link></variable>"
#. QSHkW
#: hyperlinks.xhp
@@ -7721,14 +7721,14 @@ msgctxt ""
msgid "<bookmark_value>hyphenation;preventing for specific words</bookmark_value> <bookmark_value>words;wrapping/not wrapping in text</bookmark_value> <bookmark_value>switching off;hyphenation for specific words</bookmark_value>"
msgstr "<bookmark_value>partició de mots;evitar en determinades paraules</bookmark_value><bookmark_value>paraules;ajustar/no ajustar en el text</bookmark_value><bookmark_value>desactivació;partició de mots en determinades paraules</bookmark_value>"
-#. SAPHg
+#. jWESo
#: hyphen_prevent.xhp
msgctxt ""
"hyphen_prevent.xhp\n"
"hd_id3149695\n"
"help.text"
-msgid "<variable id=\"hyphen_prevent\"><link href=\"text/swriter/guide/hyphen_prevent.xhp\" name=\"Preventing Hyphenation of Specific Words\">Preventing Hyphenation of Specific Words</link></variable>"
-msgstr "<variable id=\"hyphen_prevent\"><link href=\"text/swriter/guide/hyphen_prevent.xhp\" name=\"Evita la partició de determinades paraules\">Evita la partició de determinades paraules</link> </variable>"
+msgid "<variable id=\"hyphen_prevent\"><link href=\"text/swriter/guide/hyphen_prevent.xhp\">Preventing Hyphenation of Specific Words</link></variable>"
+msgstr "<variable id=\"hyphen_prevent\"><link href=\"text/swriter/guide/hyphen_prevent.xhp\">Evita la partició de determinades paraules</link> </variable>"
#. BrdxF
#: hyphen_prevent.xhp
@@ -7829,14 +7829,14 @@ msgctxt ""
msgid "The inserted formatting mark will be shown in gray. To remove it, simply place the cursor over the formatting mark and press the <keycode>Del</keycode> key."
msgstr ""
-#. skDHA
+#. BwrsC
#: hyphen_prevent.xhp
msgctxt ""
"hyphen_prevent.xhp\n"
"par_id3154361\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030200.xhp\" name=\"Text Flow\">Text Flow</link>"
-msgstr "<link href=\"text/swriter/01/05030200.xhp\" name=\"Flux del text\">