/* -*- 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 "data.hxx" #include "localizedpropertynode.hxx" #include "localizedvaluenode.hxx" #include "groupnode.hxx" #include "modifications.hxx" #include "node.hxx" #include "nodemap.hxx" #include "parsemanager.hxx" #include "partial.hxx" #include "propertynode.hxx" #include "setnode.hxx" #include "xcuparser.hxx" #include "xmldata.hxx" namespace configmgr { XcuParser::XcuParser( int layer, Data & data, Partial const * partial, Modifications * broadcastModifications, Additions * additions): valueParser_(layer), data_(data), partial_(partial), broadcastModifications_(broadcastModifications), additions_(additions), recordModifications_(layer == Data::NO_LAYER), trackPath_( partial_ != nullptr || broadcastModifications_ != nullptr || additions_ != nullptr || recordModifications_) {} XcuParser::~XcuParser() {} xmlreader::XmlReader::Text XcuParser::getTextMode() { return valueParser_.getTextMode(); } bool XcuParser::startElement( xmlreader::XmlReader & reader, int nsId, xmlreader::Span const & name, std::set< OUString > const * /*existingDependencies*/) { if (valueParser_.startElement(reader, nsId, name)) { return true; } if (state_.empty()) { if (nsId == ParseManager::NAMESPACE_OOR && name == "component-data") { handleComponentData(reader); } else if (nsId == ParseManager::NAMESPACE_OOR && name == "items") { state_.push(State::Modify(rtl::Reference< Node >())); } else { throw css::uno::RuntimeException( "bad root element <" + name.convertFromUtf8() + "> in " + reader.getUrl()); } } else if (state_.top().ignore) { state_.push(State::Ignore(false)); } else if (!state_.top().node.is()) { if (nsId != xmlreader::XmlReader::NAMESPACE_NONE || name != "item") { throw css::uno::RuntimeException( "bad items node member <" + name.convertFromUtf8() + "> in " + reader.getUrl()); } handleItem(reader); } else { switch (state_.top().node->kind()) { case Node::KIND_PROPERTY: if (nsId != xmlreader::XmlReader::NAMESPACE_NONE || name != "value") { throw css::uno::RuntimeException( "bad property node member <" + name.convertFromUtf8() + "> in " + reader.getUrl()); } handlePropValue( reader, static_cast< PropertyNode * >(state_.top().node.get())); break; case Node::KIND_LOCALIZED_PROPERTY: if (nsId != xmlreader::XmlReader::NAMESPACE_NONE || name != "value") { throw css::uno::RuntimeException( "bad localized property node member <" + name.convertFromUtf8() + "> in " + reader.getUrl()); } handleLocpropValue( reader, static_cast< LocalizedPropertyNode * >( state_.top().node.get())); break; case Node::KIND_LOCALIZED_VALUE: throw css::uno::RuntimeException( "bad member <" + name.convertFromUtf8() + "> in " + reader.getUrl()); case Node::KIND_GROUP: if (nsId == xmlreader::XmlReader::NAMESPACE_NONE && name == "prop") { handleGroupProp( reader, static_cast< GroupNode * >(state_.top().node.get())); } else if (nsId == xmlreader::XmlReader::NAMESPACE_NONE && name == "node") { handleGroupNode(reader, state_.top().node); } else { throw css::uno::RuntimeException( "bad group node member <" + name.convertFromUtf8() + "> in " + reader.getUrl()); } break; case Node::KIND_SET: if (nsId == xmlreader::XmlReader::NAMESPACE_NONE && name == "node") { handleSetNode( reader, static_cast< SetNode * >(state_.top().node.get())); } else if (nsId == xmlreader::XmlReader::NAMESPACE_NONE && name == "prop") { SAL_WARN( "configmgr", "bad set node member in \"" << reader.getUrl() << '"'); state_.push(State::Ignore(false)); } else { throw css::uno::RuntimeException( "bad set node member <" + name.convertFromUtf8() + "> in " + reader.getUrl()); } break; case Node::KIND_ROOT: assert(false); // this cannot happen break; } } return true; } void XcuParser::endElement(xmlreader::XmlReader const &) { if (valueParser_.endElement()) { return; } assert(!state_.empty()); bool pop = state_.top().pop; rtl::Reference< Node > insert; OUString name; if (state_.top().insert) { insert = state_.top().node; assert(insert.is()); name = state_.top().name; } state_.pop(); if (insert.is()) { assert(!state_.empty() && state_.top().node.is()); state_.top().node->getMembers()[name] = insert; } if (pop && !path_.empty()) { path_.pop_back(); // will pop less than pushed, but that is harmless, // as the next will reset path_ } } void XcuParser::characters(xmlreader::Span const & text) { valueParser_.characters(text); } XcuParser::Operation XcuParser::parseOperation(xmlreader::Span const & text) { assert(text.is()); if (text == "modify") { return OPERATION_MODIFY; } if (text == "replace") { return OPERATION_REPLACE; } if (text == "fuse") { return OPERATION_FUSE; } if (text == "remove") { return OPERATION_REMOVE; } throw css::uno::RuntimeException( "invalid op " + text.convertFromUtf8()); } void XcuParser::handleComponentData(xmlreader::XmlReader & reader) { OStringBuffer buf(256); buf.append('.'); bool hasPackage = false; bool hasName = false; Operation op = OPERATION_MODIFY; bool finalized = false; for (;;) { int attrNsId; xmlreader::Span attrLn; if (!reader.nextAttribute(&attrNsId, &attrLn)) { break; } if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "package") { if (hasPackage) { throw css::uno::RuntimeException( "multiple component-update package attributes in " + reader.getUrl()); } hasPackage = true; xmlreader::Span s(reader.getAttributeValue(false)); buf.insert(0, s.begin, s.length); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "name") { if (hasName) { throw css::uno::RuntimeException( "multiple component-update name attributes in " + reader.getUrl()); } hasName = true; xmlreader::Span s(reader.getAttributeValue(false)); buf.append(s.begin, s.length); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "op") { op = parseOperation(reader.getAttributeValue(true)); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "finalized") { finalized = xmldata::parseBoolean(reader.getAttributeValue(true)); } } if (!hasPackage) { throw css::uno::RuntimeException( "no component-data package attribute in " + reader.getUrl()); } if (!hasName) { throw css::uno::RuntimeException( "no component-data name attribute in " + reader.getUrl()); } componentName_ = xmlreader::Span(buf.getStr(), buf.getLength()). convertFromUtf8(); if (trackPath_) { assert(path_.empty()); path_.push_back(componentName_); if (partial_ != nullptr && partial_->contains(path_) == Partial::CONTAINS_NOT) { state_.push(State::Ignore(true)); return; } } rtl::Reference< Node > node( data_.getComponents().findNode(valueParser_.getLayer(), componentName_)); if (!node.is()) { SAL_WARN( "configmgr", "unknown component \"" << componentName_ << "\" in \"" << reader.getUrl() << '"'); state_.push(State::Ignore(true)); return; } switch (op) { case OPERATION_MODIFY: case OPERATION_FUSE: break; default: throw css::uno::RuntimeException( "invalid operation on root node in " + reader.getUrl()); } int finalizedLayer = std::min( finalized ? valueParser_.getLayer() : Data::NO_LAYER, node->getFinalized()); node->setFinalized(finalizedLayer); if (finalizedLayer < valueParser_.getLayer()) { state_.push(State::Ignore(true)); return; } state_.push(State::Modify(node)); } void XcuParser::handleItem(xmlreader::XmlReader & reader) { xmlreader::Span attrPath; for (;;) { int attrNsId; xmlreader::Span attrLn; if (!reader.nextAttribute(&attrNsId, &attrLn)) { break; } if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "path") { attrPath = reader.getAttributeValue(false); } } if (!attrPath.is()) { throw css::uno::RuntimeException( "missing path attribute in " + reader.getUrl()); } OUString path(attrPath.convertFromUtf8()); int finalizedLayer; rtl::Reference< Node > node( data_.resolvePathRepresentation( path, nullptr, &path_, &finalizedLayer)); if (!node.is()) { SAL_WARN( "configmgr", "unknown item \"" << path << "\" in \"" << reader.getUrl() << '"'); state_.push(State::Ignore(true)); return; } assert(!path_.empty()); componentName_ = path_.front(); if (trackPath_) { if (partial_ != nullptr && partial_->contains(path_) == Partial::CONTAINS_NOT) { state_.push(State::Ignore(true)); return; } } else { path_.clear(); } switch (node->kind()) { case Node::KIND_PROPERTY: case Node::KIND_LOCALIZED_VALUE: SAL_WARN( "configmgr", "item of bad type \"" << path << "\" in \"" << reader.getUrl() << '"'); state_.push(State::Ignore(true)); return; case Node::KIND_LOCALIZED_PROPERTY: valueParser_.type_ = static_cast< LocalizedPropertyNode * >( node.get())->getStaticType(); break; default: break; } if (finalizedLayer < valueParser_.getLayer()) { state_.push(State::Ignore(true)); return; } state_.push(State::Modify(node)); } void XcuParser::handlePropValue( xmlreader::XmlReader & reader, PropertyNode * prop) { bool nil = false; OString separator; OUString external; for (;;) { int attrNsId; xmlreader::Span attrLn; if (!reader.nextAttribute(&attrNsId, &attrLn)) { break; } if (attrNsId == ParseManager::NAMESPACE_XSI && attrLn == "nil") { nil = xmldata::parseBoolean(reader.getAttributeValue(true)); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "type") { Type type = xmldata::parseType( reader, reader.getAttributeValue(true)); if (valueParser_.type_ != TYPE_ANY && type != valueParser_.type_) { throw css::uno::RuntimeException( "invalid value type in " + reader.getUrl()); } valueParser_.type_ = type; } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "separator") { xmlreader::Span s(reader.getAttributeValue(false)); if (s.length == 0) { throw css::uno::RuntimeException( "bad oor:separator attribute in " + reader.getUrl()); } separator = OString(s.begin, s.length); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "external") { external = reader.getAttributeValue(true).convertFromUtf8(); if (external.isEmpty()) { throw css::uno::RuntimeException( "bad oor:external attribute value in " + reader.getUrl()); } } } if (nil) { if (!prop->isNillable()) { throw css::uno::RuntimeException( "xsi:nil attribute for non-nillable prop in " + reader.getUrl()); } if (!external.isEmpty()) { throw css::uno::RuntimeException( "xsi:nil and oor:external attributes for prop in " + reader.getUrl()); } prop->setValue(valueParser_.getLayer(), css::uno::Any(), valueParser_.getLayer() == Data::NO_LAYER); state_.push(State::Ignore(false)); } else if (external.isEmpty()) { valueParser_.separator_ = separator; valueParser_.start(prop); } else { prop->setExternal(valueParser_.getLayer(), external); state_.push(State::Ignore(false)); } } void XcuParser::handleLocpropValue( xmlreader::XmlReader & reader, LocalizedPropertyNode * locprop) { OUString name; bool nil = false; OString separator; Operation op = OPERATION_FUSE; for (;;) { int attrNsId; xmlreader::Span attrLn; if (!reader.nextAttribute(&attrNsId, &attrLn)) { break; } if (attrNsId == xmlreader::XmlReader::NAMESPACE_XML && attrLn == "lang") { name = reader.getAttributeValue(false).convertFromUtf8(); } else if (attrNsId == ParseManager::NAMESPACE_XSI && attrLn == "nil") { nil = xmldata::parseBoolean(reader.getAttributeValue(true)); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "type") { Type type = xmldata::parseType( reader, reader.getAttributeValue(true)); if (valueParser_.type_ != TYPE_ANY && type != valueParser_.type_) { throw css::uno::RuntimeException( "invalid value type in " + reader.getUrl()); } valueParser_.type_ = type; } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "separator") { xmlreader::Span s(reader.getAttributeValue(false)); if (s.length == 0) { throw css::uno::RuntimeException( "bad oor:separator attribute in " + reader.getUrl()); } separator = OString(s.begin, s.length); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "op") { op = parseOperation(reader.getAttributeValue(true)); } } if (trackPath_) { path_.push_back(name); if (partial_ != nullptr && partial_->contains(path_) != Partial::CONTAINS_NODE) { state_.push(State::Ignore(true)); return; } } NodeMap & members = locprop->getMembers(); NodeMap::iterator i(members.find(name)); if (i != members.end() && i->second->getLayer() > valueParser_.getLayer()) { state_.push(State::Ignore(true)); return; } if (nil && !locprop->isNillable()) { throw css::uno::RuntimeException( "xsi:nil attribute for non-nillable prop in " + reader.getUrl()); } switch (op) { case OPERATION_FUSE: { bool pop = false; if (nil) { if (i == members.end()) { members[name] = new LocalizedValueNode( valueParser_.getLayer(), css::uno::Any()); } else { static_cast< LocalizedValueNode * >( i->second.get())->setValue( valueParser_.getLayer(), css::uno::Any(), valueParser_.getLayer() == Data::NO_LAYER); } state_.push(State::Ignore(true)); } else { valueParser_.separator_ = separator; valueParser_.start(locprop, name); pop = true; } if (trackPath_) { recordModification(false); if (pop) { path_.pop_back(); } } } break; case OPERATION_REMOVE: //TODO: only allow if parent.op == OPERATION_FUSE //TODO: disallow removing when e.g. lang=""? if (i != members.end()) { members.erase(i); } state_.push(State::Ignore(true)); recordModification(false); break; default: throw css::uno::RuntimeException( "bad op attribute for value element in " + reader.getUrl()); } } void XcuParser::handleGroupProp( xmlreader::XmlReader & reader, GroupNode * group) { bool hasName = false; OUString name; Type type = TYPE_ERROR; Operation op = OPERATION_MODIFY; bool finalized = false; for (;;) { int attrNsId; xmlreader::Span attrLn; if (!reader.nextAttribute(&attrNsId, &attrLn)) { break; } if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "name") { hasName = true; name = reader.getAttributeValue(false).convertFromUtf8(); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "type") { type = xmldata::parseType(reader, reader.getAttributeValue(true)); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "op") { op = parseOperation(reader.getAttributeValue(true)); } else if (attrNsId == ParseManager::NAMESPACE_OOR && attrLn == "finalized") { finalized = xmldata::parseBoolean(reader.getAttributeValue(true)); } } if (!hasName) { throw css::uno::RuntimeException( "no prop name attribute in " + reader.getUrl()); } if (trackPath_) { path_.push_back(name); //TODO: This ignores locprop values for which specific include paths // exist (i.e., for which contains(locprop path) = CONTAINS_SUBNODES): if (partial_ != nullptr && partial_->contains(path_) != Partial::CONTAINS_NODE) { state_.push(State::Ignore(true)); return; } } NodeMap & members = group->getMembers(); NodeMap::iterator i(members.find(name)); if (i == members.end()) { handleUnknownGroupProp(reader, group, name, type, op, finalized); } else { switch (i->second->kind()) { case Node::KIND_PROPERTY: handlePlainGroupProp(reader, group, i, name, type, op, finalized); break; case Node::KIND_LOCALIZED_PROPERTY: handleLocalizedGroupProp( reader, static_cast< LocalizedPropertyNode * >(i->second.get()), name, type, op, finalized); break; default: throw css::uno::RuntimeException( "inappropriate prop " + name + " in " + reader.getUrl()); } } } void XcuParser::handleUnknownGroupProp( xmlreader::XmlReader const & reader, GroupNode const * group, OUString const & name, Type type, Operation operation, bool finalized) { switch (operation) { case OPERATION_REPLACE: case OPERATION_FUSE: if (group->isExtensible()) { if (type == TYPE_ERROR) { throw css::uno::RuntimeException( "missing type attribute for prop " + name + " in " + reader.getUrl()); } valueParser_.type_ = type; rtl::Reference< Node > prop( new PropertyNode( valueParser_.getLayer(), TYPE_ANY, true, css::uno::Any(), true)); if (finalized) { prop->setFinalized(valueParser_.getLayer()); } state_.push(State::Insert(prop, name)); recordModification(false); break; } [[fallthrough]]; default: SAL_WARN( "configmgr", "unknown property \"" << name << "\" in \"" << reader.getUrl() << '"'); state_.push(State::Ignore(true)); break; } } void XcuParser::handlePlainGroupProp( xmlreader::XmlReader const & reader, GroupNode * group, NodeMap::iterator const & propertyIndex, std::u16string_view name, Type type, Operation operation, bool finalized) { PropertyNode * property = static_cast< PropertyNode * >( propertyIndex->second.get()); if (property->getLayer() > valueParser_.getLayer()) { state_.push(State::Ignore(true)); return; } int finalizedLayer = std::min( finalized ? valueParser_.getLayer() : Data::NO_LAYER, property->getFinalized()); property->setFinalized(finalizedLayer); if (finalizedLayer < valueParser_.getLayer()) { state_.push(State::Ignore(true)); return; } if (type != TYPE_ERROR && property->getStaticType() != TYPE_ANY && type != property->getStaticType()) { throw css::uno::RuntimeException( OUString::Concat("invalid type for prop ") + name + " in " + reader.getUrl()); } valueParser_.type_ = type == TYPE_ERROR ? property->getStaticType() : type; switch (operation) { case OPERATION_MODIFY: case OPERATION_REPLACE: case OPERATION_FUSE: state_.push(State::Modify(property)); recordModification(false); break; case OPERATION_REMOVE: if (!property->isExtension()) { throw css::uno::RuntimeException( OUString::Concat("invalid remove of non-extension prop ") + name + " in " + reader.getUrl()); } group->getMembers().erase(propertyIndex); state_.push(State::Ignore(true)); recordModification(false); break; } } void XcuParser::handleLocalizedGroupProp( xmlreader::XmlReader const & reader, LocalizedPropertyNode * property, OUString const & name, Type type, Operation operation, bool finalized) { if (property->getLayer() > valueParser_.getLayer())-rw-r--r--source/fi/avmedia/messages.po46
-rw-r--r--source/fi/basctl/messages.po388
-rw-r--r--source/fi/basic/messages.po272
-rw-r--r--source/fi/chart2/messages.po2244
-rw-r--r--source/fi/cui/messages.po10001
-rw-r--r--source/fi/dbaccess/messages.po870
-rw-r--r--source/fi/desktop/messages.po182
-rw-r--r--source/fi/editeng/messages.po28
-rw-r--r--source/fi/extensions/messages.po275
-rw-r--r--source/fi/filter/messages.po949
-rw-r--r--source/fi/formula/messages.po72
-rw-r--r--source/fi/fpicker/messages.po36
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/python.po6
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po3429
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared/03.po263
-rw-r--r--source/fi/helpcontent2/source/text/scalc.po26
-rw-r--r--source/fi/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po220
-rw-r--r--source/fi/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/fi/helpcontent2/source/text/schart/01.po56
-rw-r--r--source/fi/helpcontent2/source/text/sdatabase.po3134
-rw-r--r--source/fi/helpcontent2/source/text/sdraw/01.po38
-rw-r--r--source/fi/helpcontent2/source/text/shared.po128
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po1351
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po2197
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po427
-rw-r--r--source/fi/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/05.po58
-rw-r--r--source/fi/helpcontent2/source/text/shared/06.po15
-rw-r--r--source/fi/helpcontent2/source/text/shared/autopi.po14
-rw-r--r--source/fi/helpcontent2/source/text/shared/explorer/database.po3135
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po220
-rw-r--r--source/fi/helpcontent2/source/text/shared/help.po11
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po533
-rw-r--r--source/fi/helpcontent2/source/text/simpress.po24
-rw-r--r--source/fi/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/fi/helpcontent2/source/text/simpress/01.po11
-rw-r--r--source/fi/helpcontent2/source/text/simpress/guide.po23
-rw-r--r--source/fi/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/swriter.po285
-rw-r--r--source/fi/helpcontent2/source/text/swriter/00.po137
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po1198
-rw-r--r--source/fi/helpcontent2/source/text/swriter/02.po620
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po108
-rw-r--r--source/fi/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/fi/helpcontent2/source/text/swriter/menu.po107
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office.po62
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po552
-rw-r--r--source/fi/readlicense_oo/docs.po32
-rw-r--r--source/fi/sc/messages.po6429
-rw-r--r--source/fi/sd/messages.po2160
-rw-r--r--source/fi/sfx2/messages.po1096
-rw-r--r--source/fi/starmath/messages.po982
-rw-r--r--source/fi/svtools/messages.po786
-rw-r--r--source/fi/svx/messages.po5996
-rw-r--r--source/fi/sw/messages.po11982
-rw-r--r--source/fi/uui/messages.po60
-rw-r--r--source/fi/vcl/messages.po328
-rw-r--r--source/fi/wizards/source/resources.po8
-rw-r--r--source/fi/xmlsecurity/messages.po254
61 files changed, 45469 insertions, 18487 deletions
diff --git a/source/fi/avmedia/messages.po b/source/fi/avmedia/messages.po
index 87f1ce31f6d..b5cc303eada 100644
--- a/source/fi/avmedia/messages.po
+++ b/source/fi/avmedia/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:30+0100\n"
"PO-Revision-Date: 2020-03-28 13:16+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/avmediamessages/fi/>\n"
@@ -17,133 +17,133 @@ msgstr ""
"X-POOTLE-MTIME: 1516044506.000000\n"
#. FaxGP
-#: avmedia/inc/strings.hrc:25
+#: avmedia/inc/strings.hrc:24
msgctxt "AVMEDIA_STR_OPEN"
msgid "Open"
msgstr "Avaa"
#. dgNoA
-#: avmedia/inc/strings.hrc:26
+#: avmedia/inc/strings.hrc:25
msgctxt "AVMEDIA_STR_INSERT"
msgid "Apply"
msgstr "Käytä"
#. yViEF
-#: avmedia/inc/strings.hrc:27
+#: avmedia/inc/strings.hrc:26
msgctxt "AVMEDIA_STR_PLAY"
msgid "Play"
msgstr "Toista"
#. h9N6V
-#: avmedia/inc/strings.hrc:28
+#: avmedia/inc/strings.hrc:27
msgctxt "AVMEDIA_STR_PAUSE"
msgid "Pause"
msgstr "Keskeytä"
#. wAyMD
-#: avmedia/inc/strings.hrc:29
+#: avmedia/inc/strings.hrc:28
msgctxt "AVMEDIA_STR_STOP"
msgid "Stop"
msgstr "Pysäytä"
#. 7e23T
-#: avmedia/inc/strings.hrc:30
+#: avmedia/inc/strings.hrc:29
msgctxt "AVMEDIA_STR_LOOP"
msgid "Repeat"
msgstr "Toista"
#. pg6tr
-#: avmedia/inc/strings.hrc:31
+#: avmedia/inc/strings.hrc:30
msgctxt "AVMEDIA_STR_MUTE"
msgid "Mute"
msgstr "Vaimenna"
#. m6G23
-#: avmedia/inc/strings.hrc:32
+#: avmedia/inc/strings.hrc:31
msgctxt "AVMEDIA_STR_ZOOM_50"
msgid "50%"
msgstr "50 %"
#. k2SKV
-#: avmedia/inc/strings.hrc:33
+#: avmedia/inc/strings.hrc:32
msgctxt "AVMEDIA_STR_ZOOM_100"
msgid "100%"
msgstr "100 %"
#. yTBHR
-#: avmedia/inc/strings.hrc:34
+#: avmedia/inc/strings.hrc:33
msgctxt "AVMEDIA_STR_ZOOM_200"
msgid "200%"
msgstr "200 %"
#. dBMvq
-#: avmedia/inc/strings.hrc:35
+#: avmedia/inc/strings.hrc:34
msgctxt "AVMEDIA_STR_ZOOM_FIT"
msgid "Scaled"
msgstr "Skaalattu"
#. eRSnC
-#: avmedia/inc/strings.hrc:36
+#: avmedia/inc/strings.hrc:35
msgctxt "AVMEDIA_STR_VOLUME"
msgid "Volume"
msgstr "Äänenvoimakkuus"
#. o3hBG
-#: avmedia/inc/strings.hrc:37
+#: avmedia/inc/strings.hrc:36
msgctxt "AVMEDIA_STR_POSITION"
msgid "Position"
msgstr "Sijainti"
#. 9aa7b
-#: avmedia/inc/strings.hrc:38
+#: avmedia/inc/strings.hrc:37
msgctxt "AVMEDIA_STR_MEDIAPLAYER"
msgid "Media Player"
msgstr "Mediasoitin"
#. BM7GB
-#: avmedia/inc/strings.hrc:39
+#: avmedia/inc/strings.hrc:38
msgctxt "AVMEDIA_MEDIA_PATH"
msgid "Media Path"
msgstr "Median polku"
#. JggdA
-#: avmedia/inc/strings.hrc:40
+#: avmedia/inc/strings.hrc:39
msgctxt "AVMEDIA_MEDIA_PATH_DEFAULT"
msgid "No Media Selected"
msgstr "Mediaa ei ole valittu"
#. BFybF
-#: avmedia/inc/strings.hrc:41
+#: avmedia/inc/strings.hrc:40
msgctxt "AVMEDIA_STR_INSERTMEDIA_DLG"
msgid "Insert Audio or Video"
msgstr "Lisää ääni tai video"
#. AvVZ8
-#: avmedia/inc/strings.hrc:42
+#: avmedia/inc/strings.hrc:41
msgctxt "AVMEDIA_STR_OPENMEDIA_DLG"
msgid "Open Audio or Video"
msgstr "Avaa ääni tai video"
#. FaT3C
-#: avmedia/inc/strings.hrc:43
+#: avmedia/inc/strings.hrc:42
msgctxt "AVMEDIA_STR_ALL_MEDIAFILES"
msgid "All audio and video files"
msgstr "Kaikki ääni- ja videotiedostot"
#. oJnCV
-#: avmedia/inc/strings.hrc:44
+#: avmedia/inc/strings.hrc:43
msgctxt "AVMEDIA_STR_ALL_FILES"
msgid "All files"
msgstr "Kaikki tiedostot"
#. QYcS3
-#: avmedia/inc/strings.hrc:45
+#: avmedia/inc/strings.hrc:44
msgctxt "AVMEDIA_STR_ERR_URL"
msgid "The format of the selected file is not supported."
msgstr "Valitun tiedoston muotoa ei ole tueta."
#. am3R5
-#: avmedia/inc/strings.hrc:46
+#: avmedia/inc/strings.hrc:45
msgctxt "AVMEDIA_STR_ZOOM_TOOLTIP"
msgid "View"
msgstr "Näkymä"
diff --git a/source/fi/basctl/messages.po b/source/fi/basctl/messages.po
index 0227f36b986..3f5afe82924 100644
--- a/source/fi/basctl/messages.po
+++ b/source/fi/basctl/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:30+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/basctlmessages/fi/>\n"
@@ -582,95 +582,185 @@ msgid "Basic Macros"
msgstr "Basic-makrot"
#. tFg7s
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:46
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:43
msgctxt "basicmacrodialog|run"
msgid "Run"
msgstr "Suorita"
+#. gokwe
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:52
+msgctxt "basicmacrodialog|extended_tip|ok"
+msgid "Runs or saves the current macro."
+msgstr ""
+
+#. 6SWBt
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:160
+msgctxt "basicmacrodialog|extended_tip|macros"
+msgid "Lists the macros that are contained in the module selected in the Macro from list."
+msgstr "Luettelossa näkyvät ne makrot, jotka sisältyvät Makro moduulista -luettelosta valittuun moduuliin."
+
#. 5TRqv
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:166
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:173
msgctxt "basicmacrodialog|existingmacrosft"
msgid "Existing Macros In:"
msgstr "Makrot moduulissa:"
+#. 8Bfcg
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:242
+msgctxt "basicmacrodialog|extended_tip|libraries"
+msgid "Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog."
+msgstr "Kentässä näkyy luettelo kirjastoista ja moduuleista, joista makrot voi avata tai joihin makrot voi tallentaa. Kun makro tallennetaan tietyn asiakirjan mukana, avataan ensin asiakirja ja sitten tämä ikkuna."
+
#. Mfysc
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:248
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:260
msgctxt "basicmacrodialog|macrofromft"
msgid "Macro From"
msgstr "Makro moduulista"
#. Qth4v
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:264
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:276
msgctxt "basicmacrodialog|macrotoft"
msgid "Save Macro In"
msgstr "Tallenna makro moduuliin"
+#. AjFTi
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:317
+msgctxt "basicmacrodialog|extended_tip|macronameedit"
+msgid "Displays the name of the selected macro. To create or to change the name of a macro, enter a name here."
+msgstr "Kentässä näkyy valitun makron nimi. Luotaessa tai muutettaessa makron nimeä, se kirjoitetaan tähän kenttään."
+
#. BpDb6
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:311
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:328
msgctxt "basicmacrodialog|libraryft1"
msgid "Macro Name"
msgstr "Makron nimi"
#. izDZr
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:334
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:351
msgctxt "basicmacrodialog|assign"
msgid "Assign..."
msgstr "Sido..."
+#. qEaMG
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:358
+msgctxt "basicmacrodialog|extended_tip|assign"
+msgid "Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event."
+msgstr "Avataan Mukauta-valintaikkuna, jossa valittu makro voidaan liittää valikkokomentoon, työkalupalkkiin tai tapahtumaan."
+
#. dxu7W
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:348
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:370
msgctxt "basicmacrodialog|edit"
msgid "Edit"
msgstr "Muokkaa"
+#. dE5A9
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:377
+msgctxt "basicmacrodialog|extended_tip|edit"
+msgid "Starts the %PRODUCTNAME Basic editor and opens the selected macro or dialog for editing."
+msgstr "Käynnistetään %PRODUCTNAME Basic-muokkain ja avataan valittu makro tai valintaikkuna muokattavaksi."
+
#. 9Uhec
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:362
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:389
msgctxt "basicmacrodialog|delete"
msgid "_Delete"
msgstr "_Poista"
+#. Mxvv8
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:396
+msgctxt "basicmacrodialog|extended_tip|delete"
+msgid "Creates a new macro, creates a new module or deletes the selected macro or selected module."
+msgstr ""
+
#. XkqFC
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:376
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:408
msgctxt "basicmacrodialog|new"
msgid "_New"
msgstr "_Uusi"
+#. GN5Ft
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:415
+msgctxt "basicmacrodialog|extended_tip|new"
+msgid "Creates a new library."
+msgstr "Luodaan uusi kirjasto."
+
#. Gh52t
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:390
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:427
msgctxt "basicmacrodialog|organize"
msgid "Organizer..."
msgstr "Järjestele..."
+#. 3L2hk
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:434
+msgctxt "basicmacrodialog|extended_tip|organize"
+msgid "Opens the Macro Organizer dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries."
+msgstr "Avataan Makrojen järjestelytyökalu -valintaikkuna, jossa voidaan lisätä, muokata tai poistaa makromoduuleja, valintaikkunoita ja kirjastoja."
+
#. wAJj2
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:404
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:446
msgctxt "basicmacrodialog|newlibrary"
msgid "New Library"
msgstr "Uusi kirjasto"
+#. E5rdD
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:453
+msgctxt "basicmacrodialog|extended_tip|newlibrary"
+msgid "Saves the recorded macro in a new library."
+msgstr "Tallennetaan nauhoitettu makro uuteen kirjastoon."
+
#. 2xdsE
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:418
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:465
msgctxt "basicmacrodialog|newmodule"
msgid "New Module"
msgstr "Uusi moduuli"
+#. BrAwG
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:472
+msgctxt "basicmacrodialog|extended_tip|newmodule"
+msgid "Saves the recorded macro in a new module."
+msgstr "Tallennetaan nauhoitettu makro uuteen moduuliin."
+
+#. gMDg9
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:520
+msgctxt "basicmacrodialog|extended_tip|BasicMacroDialog"
+msgid "Opens a dialog to organize macros."
+msgstr "Avataan valintaikkuna makrojen hallintaan."
+
#. MDBgX
#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:12
msgctxt "breakpointmenus|manage"
msgid "Manage Breakpoints..."
msgstr "Keskeytyskohtien hallinta..."
+#. 2ZNKn
+#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:15
+msgctxt "breakpointmenus|extended_tip|manage"
+msgid "Specifies the options for breakpoints."
+msgstr "Määritetään keskeytyspisteiden asetukset."
+
#. faXzj
-#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:23
+#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:28
msgctxt "breakpointmenus|active"
msgid "_Active"
msgstr "Käytössä"
+#. GD2Yz
+#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:32
+msgctxt "breakpointmenus|extended_tip|active"
+msgid "Activates or deactivates the current breakpoint."
+msgstr "Käsiteltävä keskeytyspiste aktivoidaan merkitsemällä ruutu."
+
#. FhiYE
-#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:37
+#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:47
msgctxt "breakpointmenus|properties"
msgid "_Properties..."
msgstr "Ominaisuudet..."
+#. GEknG
+#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:51
+msgctxt "breakpointmenus|extended_tip|properties"
+msgid "Specifies the options for breakpoints."
+msgstr "Määritetään keskeytyspisteiden asetukset."
+
#. G55tN
#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:30
msgctxt "defaultlanguage|DefaultLanguageDialog"
@@ -731,36 +821,78 @@ msgctxt "dialogpage|label1"
msgid "Dialog:"
msgstr "Valintaikkuna:"
+#. ECCc3
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:92
+msgctxt "dialogpage|extended_tip|library"
+msgid "Deletes the selected element or elements after confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä vahvistuskyselyn jälkeen."
+
+#. jAkNt
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:126
+msgctxt "dialogpage|extended_tip|edit"
+msgid "Opens the %PRODUCTNAME Basic editor so that you can modify the selected library."
+msgstr "Avataan %PRODUCTNAME Basic -muokkain, niin että valittua kirjastoa voidaan muokata."
+
#. n9VLU
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:129
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:138
msgctxt "dialogpage|newmodule"
msgid "_New..."
msgstr "Uusi..."
+#. hfkr2
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:145
+msgctxt "dialogpage|extended_tip|newmodule"
+msgid "Opens the editor and creates a new module."
+msgstr ""
+
#. kBzSW
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:144
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:158
msgctxt "dialogpage|newdialog"
msgid "_New..."
msgstr "Uusi..."
+#. JR2oJ
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:181
+msgctxt "dialogpage|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
#. k64f4
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:175
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:194
msgctxt "dialogpage|password"
msgid "_Password..."
msgstr "Salasana..."
+#. FeCu5
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:201
+msgctxt "dialogpage|extended_tip|password"
+msgid "Assigns or edits the password for the selected library."
+msgstr ""
+
#. sHS7f
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:189
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:213
msgctxt "dialogpage|import"
msgid "_Import..."
msgstr "Tuo..."
+#. 8VCZB
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:220
+msgctxt "dialogpage|extended_tip|import"
+msgid "Locate that %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
+msgstr ""
+
#. ubE5G
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:203
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:232
msgctxt "dialogpage|export"
msgid "_Export..."
msgstr "Vie..."
+#. weDhB
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:258
+msgctxt "dialogpage|extended_tip|DialogPage"
+msgid "Lists the existing modules or dialogs."
+msgstr ""
+
#. EGyCn
#: basctl/uiconfig/basicide/ui/dockingwatch.ui:110
msgctxt "dockingwatch|RID_STR_WATCHVARIABLE"
@@ -816,83 +948,185 @@ msgid "Import Libraries"
msgstr "Tuo kirjastot"
#. C8ny7
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:119
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:116
msgctxt "importlibdialog|ref"
msgid "Insert as reference (read-only)"
msgstr "Lisää viittauksena (kirjoitussuojattu)"
+#. gxCjk
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:125
+msgctxt "importlibdialog|extended_tip|ref"
+msgid "Adds the selected library as a read-only file. The library is reloaded each time you start %PRODUCTNAME."
+msgstr "Valittu kirjasto lisätään kirjoitussuojattuna. Kirjasto ladataan joka kerta, kun %PRODUCTNAME käynnistetään."
+
#. B9N7w
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:134
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:136
msgctxt "importlibdialog|replace"
msgid "Replace existing libraries"
msgstr "Korvaa nykyiset kirjastot"
+#. AyUpF
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:145
+msgctxt "importlibdialog|extended_tip|replace"
+msgid "Replaces a library that has the same name with the current library."
+msgstr "Korvataan kirjasto, jolla on sama nimi kuin käsiteltävällä kirjastolla."
+
#. GGb7Q
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:155
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:162
msgctxt "importlibdialog|label1"
msgid "Options"
msgstr "Asetukset"
+#. 7ZFMZ
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:277
+msgctxt "importlibdialog|extended_tip|ImportLibDialog"
+msgid "Enter a name or the path to the library that you want to append. You can also select a library from the list."
+msgstr "Kirjoitetaan sen kirjaston nimi tai polku, joka aiotaan lisätä. Kirjasto voidaan valita myös luettelosta."
+
#. XdZ7e
-#: basctl/uiconfig/basicide/ui/libpage.ui:42
+#: basctl/uiconfig/basicide/ui/libpage.ui:41
msgctxt "libpage|label1"
msgid "L_ocation:"
msgstr "Sijainti:"
+#. JAxWt
+#: basctl/uiconfig/basicide/ui/libpage.ui:58
+msgctxt "libpage|extended_tip|location"
+msgid "Select the application or the document containing the macro libraries that you want to organize."
+msgstr ""
+
#. C4mjh
-#: basctl/uiconfig/basicide/ui/libpage.ui:81
+#: basctl/uiconfig/basicide/ui/libpage.ui:85
msgctxt "libpage|lingudictsft"
msgid "_Library:"
msgstr "Kirjasto:"
+#. T2NUa
+#: basctl/uiconfig/basicide/ui/libpage.ui:149
+msgctxt "libpage|extended_tip|library"
+msgid "Deletes the selected element or elements after confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä vahvistuskyselyn jälkeen."
+
+#. ARGtS
+#: basctl/uiconfig/basicide/ui/libpage.ui:183
+msgctxt "libpage|extended_tip|edit"
+msgid "Opens the %PRODUCTNAME Basic editor so that you can modify the selected library."
+msgstr "Avataan %PRODUCTNAME Basic -muokkain, niin että valittua kirjastoa voidaan muokata."
+
#. AjENj
-#: basctl/uiconfig/basicide/ui/libpage.ui:181
+#: basctl/uiconfig/basicide/ui/libpage.ui:195
msgctxt "libpage|password"
msgid "_Password..."
msgstr "Salasana..."
+#. m79WV
+#: basctl/uiconfig/basicide/ui/libpage.ui:202
+msgctxt "libpage|extended_tip|password"
+msgid "Assigns or edits the password for the selected library."
+msgstr ""
+
#. bzX6x
-#: basctl/uiconfig/basicide/ui/libpage.ui:195
+#: basctl/uiconfig/basicide/ui/libpage.ui:214
msgctxt "libpage|new"
msgid "_New..."
msgstr "Uusi..."
+#. Af6Jv
+#: basctl/uiconfig/basicide/ui/libpage.ui:221
+msgctxt "libpage|extended_tip|new"
+msgid "Creates a new library."
+msgstr "Luodaan uusi kirjasto."
+
#. EBVPe
-#: basctl/uiconfig/basicide/ui/libpage.ui:210
+#: basctl/uiconfig/basicide/ui/libpage.ui:234
msgctxt "libpage|import"
msgid "_Import..."
msgstr "Tuo..."
+#. W7BzD
+#: basctl/uiconfig/basicide/ui/libpage.ui:241
+msgctxt "libpage|extended_tip|import"
+msgid "Locate that %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
+msgstr ""
+
#. GhHRH
-#: basctl/uiconfig/basicide/ui/libpage.ui:225
+#: basctl/uiconfig/basicide/ui/libpage.ui:254
msgctxt "libpage|export"
msgid "_Export..."
msgstr "Vie..."
+#. hMRJK
+#: basctl/uiconfig/basicide/ui/libpage.ui:277
+msgctxt "libpage|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
+#. dfZKj
+#: basctl/uiconfig/basicide/ui/libpage.ui:303
+msgctxt "libpage|extended_tip|LibPage"
+msgid "Select the application or the document containing the macro libraries that you want to organize."
+msgstr ""
+
#. zrJTt
#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:16
msgctxt "managebreakpoints|ManageBreakpointsDialog"
msgid "Manage Breakpoints"
msgstr "Keskeytyskohtien hallinta"
+#. TvBmF
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:40
+msgctxt "managebreakpoints|extended_tip|new"
+msgid "Creates a breakpoint on the line number specified."
+msgstr "Luodaan rivinumeron mukainen keskeytyspiste."
+
+#. CCDEi
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:60
+msgctxt "managebreakpoints|extended_tip|delete"
+msgid "Deletes the selected breakpoint."
+msgstr "Poistetaan valittu keskeytyspiste."
+
#. PcuyN
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:139
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:146
msgctxt "managebreakpoints|active"
msgid "Active"
msgstr "Aktiivinen"
+#. fqCCT
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:155
+msgctxt "managebreakpoints|extended_tip|active"
+msgid "Activates or deactivates the current breakpoint."
+msgstr "Käsiteltävä keskeytyspiste aktivoidaan merkitsemällä ruutu."
+
+#. MUMSv
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:218
+msgctxt "managebreakpoints|extended_tip|entries"
+msgid "Enter the line number for a new breakpoint, then click New."
+msgstr "Syötetään uuden keskeytyspisteen rivinumero ja napsautetaan Uusi."
+
+#. RVBS5
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:245
+msgctxt "managebreakpoints|extended_tip|pass"
+msgid "Specify the number of loops to perform before the breakpoint takes effect."
+msgstr ""
+
#. VDCwR
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:237
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:258
msgctxt "managebreakpoints|label2"
msgid "Pass count:"
msgstr "Kertojen lkm.:"
#. 5dExG
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:260
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:281
msgctxt "managebreakpoints|label1"
msgid "Breakpoints"
msgstr "Keskeytyskohdat"
+#. FGsQQ
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:308
+msgctxt "managebreakpoints|extended_tip|ManageBreakpointsDialog"
+msgid "Specifies the options for breakpoints."
+msgstr "Määritetään keskeytyspisteiden asetukset."
+
#. M2Sx2
#: basctl/uiconfig/basicide/ui/managelanguages.ui:16
msgctxt "managelanguages|ManageLanguagesDialog"
@@ -929,42 +1163,102 @@ msgctxt "modulepage|label1"
msgid "M_odule:"
msgstr "Moduuli:"
+#. fpUvr
+#: basctl/uiconfig/basicide/ui/modulepage.ui:92
+msgctxt "modulepage|extended_tip|library"
+msgid "Lists the existing macro libraries for the current application and any open documents."
+msgstr ""
+
+#. hBRpM
+#: basctl/uiconfig/basicide/ui/modulepage.ui:126
+msgctxt "modulepage|extended_tip|edit"
+msgid "Opens the %PRODUCTNAME Basic editor so that you can modify the selected library."
+msgstr "Avataan %PRODUCTNAME Basic -muokkain, niin että valittua kirjastoa voidaan muokata."
+
#. KjBGM
-#: basctl/uiconfig/basicide/ui/modulepage.ui:129
+#: basctl/uiconfig/basicide/ui/modulepage.ui:138
msgctxt "modulepage|newmodule"
msgid "_New..."
msgstr "Uusi..."
+#. SGQMi
+#: basctl/uiconfig/basicide/ui/modulepage.ui:145
+msgctxt "modulepage|extended_tip|newmodule"
+msgid "Opens the editor and creates a new module."
+msgstr ""
+
#. RakoP
-#: basctl/uiconfig/basicide/ui/modulepage.ui:144
+#: basctl/uiconfig/basicide/ui/modulepage.ui:158
msgctxt "modulepage|newdialog"
msgid "_New..."
msgstr "Uusi..."
+#. AvaAy
+#: basctl/uiconfig/basicide/ui/modulepage.ui:165
+msgctxt "modulepage|extended_tip|newdialog"
+msgid "Lets you manage the macro libraries."
+msgstr "Hallinnoidaan makrokirjastoja."
+
+#. LeigB
+#: basctl/uiconfig/basicide/ui/modulepage.ui:186
+msgctxt "modulepage|extended_tip|delete"
+msgid "Creates a new macro, or deletes the selected macro."
+msgstr "Luodaan uusi makro tai poistetaan valittu makro."
+
#. 5FC8g
-#: basctl/uiconfig/basicide/ui/modulepage.ui:175
+#: basctl/uiconfig/basicide/ui/modulepage.ui:199
msgctxt "modulepage|password"
msgid "_Password..."
msgstr "Salasana..."
+#. apZrB
+#: basctl/uiconfig/basicide/ui/modulepage.ui:206
+msgctxt "modulepage|extended_tip|password"
+msgid "Assigns or edits the password for the selected library."
+msgstr ""
+
#. EgCDE
-#: basctl/uiconfig/basicide/ui/modulepage.ui:189
+#: basctl/uiconfig/basicide/ui/modulepage.ui:218
msgctxt "modulepage|import"
msgid "_Import..."
msgstr "Tuo..."
+#. qCXgD
+#: basctl/uiconfig/basicide/ui/modulepage.ui:225
+msgctxt "modulepage|extended_tip|import"
+msgid "Locate that %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
+msgstr ""
+
#. GAYBh
-#: basctl/uiconfig/basicide/ui/modulepage.ui:203
+#: basctl/uiconfig/basicide/ui/modulepage.ui:237
msgctxt "modulepage|export"
msgid "_Export..."
msgstr "Vie..."
+#. 9Z2WP
+#: basctl/uiconfig/basicide/ui/modulepage.ui:263
+msgctxt "modulepage|extended_tip|ModulePage"
+msgid "Lists the existing modules or dialogs."
+msgstr ""
+
+#. rCNTN
+#: basctl/uiconfig/basicide/ui/newlibdialog.ui:32
+msgctxt "newlibdialog|extended_tip|ok"
+msgid "Runs or saves the current macro."
+msgstr ""
+
#. Skwd5
-#: basctl/uiconfig/basicide/ui/newlibdialog.ui:86
+#: basctl/uiconfig/basicide/ui/newlibdialog.ui:91
msgctxt "newlibdialog|area"
msgid "_Name:"
msgstr "Nimi:"
+#. FWXXE
+#: basctl/uiconfig/basicide/ui/newlibdialog.ui:131
+msgctxt "newlibdialog|extended_tip|NewLibDialog"
+msgid "Enter a name for the new library or module."
+msgstr ""
+
#. uVgXz
#: basctl/uiconfig/basicide/ui/organizedialog.ui:8
msgctxt "organizedialog|OrganizeDialog"
@@ -988,3 +1282,21 @@ msgstr "Valintaikkunat"
msgctxt "organizedialog|libraries"
msgid "Libraries"
msgstr "Kirjastot"
+
+#. gsjtC
+#: basctl/uiconfig/basicide/ui/sortmenu.ui:12
+msgctxt "sortmenu|macrosort"
+msgid "_Sorting"
+msgstr "Lajittelu"
+
+#. GCbAJ
+#: basctl/uiconfig/basicide/ui/sortmenu.ui:22
+msgctxt "sortmenu|alphabetically"
+msgid "_Alphabetically"
+msgstr ""
+
+#. PBmML
+#: basctl/uiconfig/basicide/ui/sortmenu.ui:32
+msgctxt "sortmenu|properorder"
+msgid "_Proper order"
+msgstr ""
diff --git a/source/fi/basic/messages.po b/source/fi/basic/messages.po
index adebee8c056..cda9633d6a5 100644
--- a/source/fi/basic/messages.po
+++ b/source/fi/basic/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:30+0100\n"
"PO-Revision-Date: 2020-01-24 17:01+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/basicmessages/fi/>\n"
@@ -17,816 +17,816 @@ msgstr ""
"X-POOTLE-MTIME: 1507240251.000000\n"
#. CacXi
-#: basic/inc/basic.hrc:27
+#: basic/inc/basic.hrc:26
msgctxt "RID_BASIC_START"
msgid "Syntax error."
msgstr "Syntaksivirhe."
#. phEtF
-#: basic/inc/basic.hrc:28
+#: basic/inc/basic.hrc:27
msgctxt "RID_BASIC_START"
msgid "Return without Gosub."
msgstr "Return ilman Gosubia."
#. xGnDD
-#: basic/inc/basic.hrc:29
+#: basic/inc/basic.hrc:28
msgctxt "RID_BASIC_START"
msgid "Incorrect entry; please retry."
msgstr "Virheellinen syöte: yritä uudelleen."
#. SDAtt
-#: basic/inc/basic.hrc:30
+#: basic/inc/basic.hrc:29
msgctxt "RID_BASIC_START"
msgid "Invalid procedure call."
msgstr "Virheellinen proseduurikutsu."
#. ERmVC
-#: basic/inc/basic.hrc:31
+#: basic/inc/basic.hrc:30
msgctxt "RID_BASIC_START"
msgid "Overflow."
msgstr "Ylivuoto."
#. 2Cqdp
-#: basic/inc/basic.hrc:32
+#: basic/inc/basic.hrc:31
msgctxt "RID_BASIC_START"
msgid "Not enough memory."
msgstr "Muisti ei riitä."
#. vQn2L
-#: basic/inc/basic.hrc:33
+#: basic/inc/basic.hrc:32
msgctxt "RID_BASIC_START"
msgid "Array already dimensioned."
msgstr "Taulukon ulottuvuudet on jo määritetty."
#. iXC8S
-#: basic/inc/basic.hrc:34
+#: basic/inc/basic.hrc:33
msgctxt "RID_BASIC_START"
msgid "Index out of defined range."
msgstr "Järjestysnumero määritetyn alueen ulkopuolella."
#. puyiQ
-#: basic/inc/basic.hrc:35
+#: basic/inc/basic.hrc:34
msgctxt "RID_BASIC_START"
msgid "Duplicate definition."
msgstr "Kaksinkertainen määrittely."
#. eqwCs
-#: basic/inc/basic.hrc:36
+#: basic/inc/basic.hrc:35
msgctxt "RID_BASIC_START"
msgid "Division by zero."
msgstr "Jako nollalla."
#. owjv6
-#: basic/inc/basic.hrc:37
+#: basic/inc/basic.hrc:36
msgctxt "RID_BASIC_START"
msgid "Variable not defined."
msgstr "Muuttujaa ei ole määritetty."
#. oEA47
-#: basic/inc/basic.hrc:38
+#: basic/inc/basic.hrc:37
msgctxt "RID_BASIC_START"
msgid "Data type mismatch."
msgstr "Tietotyypit eivät täsmää."
#. bFP4H
-#: basic/inc/basic.hrc:39
+#: basic/inc/basic.hrc:38
msgctxt "RID_BASIC_START"
msgid "Invalid parameter."
msgstr "Virheellinen parametri."
#. qZCrY
-#: basic/inc/basic.hrc:40
+#: basic/inc/basic.hrc:39
msgctxt "RID_BASIC_START"
msgid "Process interrupted by user."
msgstr "Käyttäjä keskeytti toiminnon."
#. nnqTQ
-#: basic/inc/basic.hrc:41
+#: basic/inc/basic.hrc:40
msgctxt "RID_BASIC_START"
msgid "Resume without error."
msgstr "Jatka ilman virheitä."
#. QGuZq
-#: basic/inc/basic.hrc:42
+#: basic/inc/basic.hrc:41
msgctxt "RID_BASIC_START"
msgid "Not enough stack memory."
msgstr "Ei tarpeeksi pinomuistia."
#. X8Anp
-#: basic/inc/basic.hrc:43
+#: basic/inc/basic.hrc:42
msgctxt "RID_BASIC_START"
msgid "Sub-procedure or function procedure not defined."
msgstr "Aliproseduuria tai funktiota ei ole määritetty."
#. oF6VV
-#: basic/inc/basic.hrc:44
+#: basic/inc/basic.hrc:43
msgctxt "RID_BASIC_START"
msgid "Error loading DLL file."
msgstr "Virhe ladattaessa DLL-tiedostoa."
#. 9MUQ8
-#: basic/inc/basic.hrc:45
+#: basic/inc/basic.hrc:44
msgctxt "RID_BASIC_START"
msgid "Wrong DLL call convention."
msgstr "Väärä DLL-kutsumuoto."
#. AoHjH
-#: basic/inc/basic.hrc:46
+#: basic/inc/basic.hrc:45
msgctxt "RID_BASIC_START"
msgid "Internal error $(ARG1)."
msgstr "Sisäinen virhe $(ARG1)."
#. wgNZg
-#: basic/inc/basic.hrc:47
+#: basic/inc/basic.hrc:46
msgctxt "RID_BASIC_START"
msgid "Invalid file name or file number."
msgstr "Virheellinen tiedoston nimi tai numero."
#. cdGJ5
-#: basic/inc/basic.hrc:48
+#: basic/inc/basic.hrc:47
msgctxt "RID_BASIC_START"
msgid "File not found."
msgstr "Tiedostoa ei löydy."
#. RQB3i
-#: basic/inc/basic.hrc:49
+#: basic/inc/basic.hrc:48
msgctxt "RID_BASIC_START"
msgid "Incorrect file mode."
msgstr "Virheellinen tiedostotila."
#. 2UUYj
-#: basic/inc/basic.hrc:50
+#: basic/inc/basic.hrc:49
msgctxt "RID_BASIC_START"
msgid "File already open."
msgstr "Tiedosto on jo avoinna."
#. BRx4X
-#: basic/inc/basic.hrc:51
+#: basic/inc/basic.hrc:50
msgctxt "RID_BASIC_START"
msgid "Device I/O error."
msgstr "Laitteen I/O-virhe."
#. 3wGUY
-#: basic/inc/basic.hrc:52
+#: basic/inc/basic.hrc:51
msgctxt "RID_BASIC_START"
msgid "File already exists."
msgstr "Tiedosto on jo olemassa."
#. rAFCG
-#: basic/inc/basic.hrc:53
+#: basic/inc/basic.hrc:52
msgctxt "RID_BASIC_START"
msgid "Incorrect record length."
msgstr "Virheellinen tietuepituus."
#. EnLKw
-#: basic/inc/basic.hrc:54
+#: basic/inc/basic.hrc:53
msgctxt "RID_BASIC_START"
msgid "Disk or hard drive full."
msgstr "Levyke tai kiintolevy täynnä."
#. BFTP8
-#: basic/inc/basic.hrc:55
+#: basic/inc/basic.hrc:54
msgctxt "RID_BASIC_START"
msgid "Reading exceeds EOF."
msgstr "Lukumääritys ylittää tiedoston lopun EOF-merkinnän."
#. nuyE7
-#: basic/inc/basic.hrc:56
+#: basic/inc/basic.hrc:55
msgctxt "RID_BASIC_START"
msgid "Incorrect record number."
msgstr "Virheellinen tietuenumero."
#. sgdJF
-#: basic/inc/basic.hrc:57
+#: basic/inc/basic.hrc:56
msgctxt "RID_BASIC_START"
msgid "Too many files."
msgstr "Liian monta tiedostoa."
#. 3iiGy
-#: basic/inc/basic.hrc:58
+#: basic/inc/basic.hrc:57
msgctxt "RID_BASIC_START"
msgid "Device not available."
msgstr "Laite ei ole käytettävissä."
#. k7uzP
-#: basic/inc/basic.hrc:59
+#: basic/inc/basic.hrc:58
msgctxt "RID_BASIC_START"
msgid "Access denied."
msgstr "Käyttö kielletty."
#. WcKob
-#: basic/inc/basic.hrc:60
+#: basic/inc/basic.hrc:59
msgctxt "RID_BASIC_START"
msgid "Disk not ready."
msgstr "Levy ei ole valmiina."
#. JgiDa
-#: basic/inc/basic.hrc:61
+#: basic/inc/basic.hrc:60
msgctxt "RID_BASIC_START"
msgid "Not implemented."
msgstr "Ei käytössä."
#. mAxmt
-#: basic/inc/basic.hrc:62
+#: basic/inc/basic.hrc:61
msgctxt "RID_BASIC_START"
msgid "Renaming on different drives impossible."
msgstr "Uudelleennimeäminen eri levyasemilla ei onnistu."
#. 8gEYf
-#: basic/inc/basic.hrc:63
+#: basic/inc/basic.hrc:62
msgctxt "RID_BASIC_START"
msgid "Path/File access error."
msgstr "Polun/tiedoston käsittelyvirhe."
#. JefUT
-#: basic/inc/basic.hrc:64
+#: basic/inc/basic.hrc:63
msgctxt "RID_BASIC_START"
msgid "Path not found."
msgstr "Polkua ei löydy."
#. QXDRW
-#: basic/inc/basic.hrc:65
+#: basic/inc/basic.hrc:64
msgctxt "RID_BASIC_START"
msgid "Object variable not set."
msgstr "Objektimuuttujaa ei ole määritetty."
#. Y9yi3
-#: basic/inc/basic.hrc:66
+#: basic/inc/basic.hrc:65
msgctxt "RID_BASIC_START"
msgid "Invalid string pattern."
msgstr "Virheellinen merkkijonolauseke."
#. K7DhF
-#: basic/inc/basic.hrc:67
+#: basic/inc/basic.hrc:66
msgctxt "RID_BASIC_START"
msgid "Use of zero not permitted."
msgstr "Nollan käyttö ei ole sallittua."
#. cJT8h
-#: basic/inc/basic.hrc:68
+#: basic/inc/basic.hrc:67
msgctxt "RID_BASIC_START"
msgid "DDE Error."
msgstr "DDE-virhe."
#. 6GqpS
-#: basic/inc/basic.hrc:69
+#: basic/inc/basic.hrc:68
msgctxt "RID_BASIC_START"
msgid "Awaiting response to DDE connection."
msgstr "Odotetaan vastausta DDE-yhteyteen."
#. eoE3n
-#: basic/inc/basic.hrc:70
+#: basic/inc/basic.hrc:69
msgctxt "RID_BASIC_START"
msgid "No DDE channels available."
msgstr "DDE-kanavia ei ole käytettävissä."
#. uX7nT
-#: basic/inc/basic.hrc:71
+#: basic/inc/basic.hrc:70
msgctxt "RID_BASIC_START"
msgid "No application responded to DDE connect initiation."
msgstr "Mikään sovellus ei vastannut DDE-yhteyden muodostuskutsuun."
#. TNaxB
-#: basic/inc/basic.hrc:72
+#: basic/inc/basic.hrc:71
msgctxt "RID_BASIC_START"
msgid "Too many applications responded to DDE connect initiation."
msgstr "Liian moni sovellus vastasi DDE-yhteyden muodostuskutsuun."
#. VroGT
-#: basic/inc/basic.hrc:73
+#: basic/inc/basic.hrc:72
msgctxt "RID_BASIC_START"
msgid "DDE channel locked."
msgstr "DDE-kanava lukittu."
#. Vg79x
-#: basic/inc/basic.hrc:74
+#: basic/inc/basic.hrc:73
msgctxt "RID_BASIC_START"
msgid "External application cannot execute DDE operation."
msgstr "Ulkoinen sovellus ei voi suorittaa DDE-toimintoa."
#. DnKBx
-#: basic/inc/basic.hrc:75
+#: basic/inc/basic.hrc:74
msgctxt "RID_BASIC_START"
msgid "Timeout while waiting for DDE response."
msgstr "Aikakatkaisu odotettaessa DDE-vastausta."
#. 4q3yy
-#: basic/inc/basic.hrc:76
+#: basic/inc/basic.hrc:75
msgctxt "RID_BASIC_START"
msgid "User pressed ESCAPE during DDE operation."
msgstr "Käyttäjä painoi ESC-näppäintä DDE-toiminnon aikana."
#. 7WymF
-#: basic/inc/basic.hrc:77
+#: basic/inc/basic.hrc:76
msgctxt "RID_BASIC_START"
msgid "External application busy."
msgstr "Ulkoinen sovellus on varattu."
#. GGDRf
-#: basic/inc/basic.hrc:78
+#: basic/inc/basic.hrc:77
msgctxt "RID_BASIC_START"
msgid "DDE operation without data."
msgstr "DDE-toiminto ilman tietoja."
#. p7sHC
-#: basic/inc/basic.hrc:79
+#: basic/inc/basic.hrc:78
msgctxt "RID_BASIC_START"
msgid "Data are in wrong format."
msgstr "Tiedot ovat väärässä muodossa."
#. JDnmB
-#: basic/inc/basic.hrc:80
+#: basic/inc/basic.hrc:79
msgctxt "RID_BASIC_START"
msgid "External application has been terminated."
msgstr "Ulkoinen sovellus on lopetettu."
#. VT4R2
-#: basic/inc/basic.hrc:81
+#: basic/inc/basic.hrc:80
msgctxt "RID_BASIC_START"
msgid "DDE connection interrupted or modified."
msgstr "DDE-yhteys on keskeytetty tai yhteyttä on muokattu."
#. DgSMR
-#: basic/inc/basic.hrc:82
+#: basic/inc/basic.hrc:81
msgctxt "RID_BASIC_START"
msgid "DDE method invoked with no channel open."
msgstr "DDE-metodia kutsuttu ilman avoimia kanavia."
#. RHck4
-#: basic/inc/basic.hrc:83
+#: basic/inc/basic.hrc:82
msgctxt "RID_BASIC_START"
msgid "Invalid DDE link format."
msgstr "Virheellinen DDE-linkin muoto."
#. DUsPA
-#: basic/inc/basic.hrc:84
+#: basic/inc/basic.hrc:83
msgctxt "RID_BASIC_START"
msgid "DDE message has been lost."
msgstr "DDE-sanoma on kadonnut."
#. FhoZY
-#: basic/inc/basic.hrc:85
+#: basic/inc/basic.hrc:84
msgctxt "RID_BASIC_START"
msgid "Paste link already performed."
msgstr "Liitetty linkki jo suoritettu."
#. SQyEF
-#: basic/inc/basic.hrc:86
+#: basic/inc/basic.hrc:85
msgctxt "RID_BASIC_START"
msgid "Link mode cannot be set due to invalid link topic."
msgstr "Linkkitilaa ei voi asettaa virheellisen linkkiaiheen vuoksi."
#. J2Rf3
-#: basic/inc/basic.hrc:87
+#: basic/inc/basic.hrc:86
msgctxt "RID_BASIC_START"
msgid "DDE requires the DDEML.DLL file."
msgstr "DDE vaatii tiedoston DDEML.DLL."
#. yfBfX
-#: basic/inc/basic.hrc:88
+#: basic/inc/basic.hrc:87
msgctxt "RID_BASIC_START"
msgid "Module cannot be loaded; invalid format."
msgstr "Moduulia ei voi ladata: virheellinen muoto."
#. eCEEV
-#: basic/inc/basic.hrc:89
+#: basic/inc/basic.hrc:88
msgctxt "RID_BASIC_START"
msgid "Invalid object index."
msgstr "Virheellinen objektin järjestysnumero."
#. GLCzx
-#: basic/inc/basic.hrc:90
+#: basic/inc/basic.hrc:89
msgctxt "RID_BASIC_START"
msgid "Object is not available."
msgstr "Objekti ei ole käytettävissä."
#. nfXrp
-#: basic/inc/basic.hrc:91
+#: basic/inc/basic.hrc:90
msgctxt "RID_BASIC_START"
msgid "Incorrect property value."
msgstr "Virheellinen ominaisuuden arvo."
#. 8qjhR
-#: basic/inc/basic.hrc:92
+#: basic/inc/basic.hrc:91
msgctxt "RID_BASIC_START"
msgid "This property is read-only."
msgstr "Tämä ominaisuus on vain lukemista varten."
#. ScKEy
-#: basic/inc/basic.hrc:93
+#: basic/inc/basic.hrc:92
msgctxt "RID_BASIC_START"
msgid "This property is write only."
msgstr "Tämä ominaisuus on vain kirjoittamista varten."
#. kTCMC
-#: basic/inc/basic.hrc:94
+#: basic/inc/basic.hrc:93
msgctxt "RID_BASIC_START"
msgid "Invalid object reference."
msgstr "Virheellinen objektiviite."
#. fz98J
-#: basic/inc/basic.hrc:95
+#: basic/inc/basic.hrc:94
msgctxt "RID_BASIC_START"
msgid "Property or method not found: $(ARG1)."
msgstr "Ominaisuutta tai metodia ei löytynyt: $(ARG1)."
#. rWwbT
-#: basic/inc/basic.hrc:96
+#: basic/inc/basic.hrc:95
msgctxt "RID_BASIC_START"
msgid "Object required."
msgstr "Objekti vaaditaan."
#. b3XBE
-#: basic/inc/basic.hrc:97
+#: basic/inc/basic.hrc:96
msgctxt "RID_BASIC_START"
msgid "Invalid use of an object."
msgstr "Virheellinen objektin käyttö."
#. pM7Vq
-#: basic/inc/basic.hrc:98
+#: basic/inc/basic.hrc:97
msgctxt "RID_BASIC_START"
msgid "OLE Automation is not supported by this object."
msgstr "Tämä objekti ei tue OLE-automaatiota."
#. HMAey
-#: basic/inc/basic.hrc:99
+#: basic/inc/basic.hrc:98
msgctxt "RID_BASIC_START"
msgid "This property or method is not supported by the object."
msgstr "Objekti ei tue tätä ominaisuutta tai metodia."
#. DMts6
-#: basic/inc/basic.hrc:100
+#: basic/inc/basic.hrc:99
msgctxt "RID_BASIC_START"
msgid "OLE Automation Error."
msgstr "OLE-automaatiovirhe."
#. 3VsB3
-#: basic/inc/basic.hrc:101
+#: basic/inc/basic.hrc:100
msgctxt "RID_BASIC_START"
msgid "This action is not supported by given object."
msgstr "Annettu objekti ei tue tätä toimintoa."
#. vgvzF
-#: basic/inc/basic.hrc:102
+#: basic/inc/basic.hrc:101
msgctxt "RID_BASIC_START"
msgid "Named arguments are not supported by given object."
msgstr "Annettu objekti ei tue nimettyjä argumentteja."
#. 4aZxy
-#: basic/inc/basic.hrc:103
+#: basic/inc/basic.hrc:102
msgctxt "RID_BASIC_START"
msgid "The current locale setting is not supported by the given object."
msgstr "Annettu objekti ei tue nykyistä maa-asetusta."
#. AoqGh
-#: basic/inc/basic.hrc:104
+#: basic/inc/basic.hrc:103
msgctxt "RID_BASIC_START"
msgid "Named argument not found."
msgstr "Nimettyä argumenttia ei löydy."
#. G2sC5
-#: basic/inc/basic.hrc:105
+#: basic/inc/basic.hrc:104
msgctxt "RID_BASIC_START"
msgid "Argument is not optional."
msgstr "Argumentti ei ole valinnainen."
#. v78nF
-#: basic/inc/basic.hrc:106 basic/inc/basic.hrc:114
+#: basic/inc/basic.hrc:105 basic/inc/basic.hrc:113
msgctxt "RID_BASIC_START"
msgid "Invalid number of arguments."
msgstr "Virheellinen määrä argumentteja."
#. DVFF3
-#: basic/inc/basic.hrc:107
+#: basic/inc/basic.hrc:106
msgctxt "RID_BASIC_START"
msgid "Object is not a list."
msgstr "Objekti ei ole luettelo."
#. zDijP
-#: basic/inc/basic.hrc:108
+#: basic/inc/basic.hrc:107
msgctxt "RID_BASIC_START"
msgid "Invalid ordinal number."
msgstr "Virheellinen järjestysluku."
#. uY35B
-#: basic/inc/basic.hrc:109
+#: basic/inc/basic.hrc:108
msgctxt "RID_BASIC_START"
msgid "Specified DLL function not found."
msgstr "Määritettyä DLL-funktiota ei löytynyt."
#. MPTAv
-#: basic/inc/basic.hrc:110
+#: basic/inc/basic.hrc:109
msgctxt "RID_BASIC_START"
msgid "Invalid clipboard format."
msgstr "Virheellinen leikepöydän muoto."
#. UC2FV
-#: basic/inc/basic.hrc:111
+#: basic/inc/basic.hrc:110
msgctxt "RID_BASIC_START"
msgid "Object does not have this property."
msgstr "Objektilla ei ole tätä ominaisuutta."
#. 9JEU2
-#: basic/inc/basic.hrc:112
+#: basic/inc/basic.hrc:111
msgctxt "RID_BASIC_START"
msgid "Object does not have this method."
msgstr "Objektilla ei ole tätä metodia."
#. azsCo
-#: basic/inc/basic.hrc:113
+#: basic/inc/basic.hrc:112
msgctxt "RID_BASIC_START"
msgid "Required argument lacking."
msgstr "Vaadittu argumentti puuttuu."
#. 9WA8D
-#: basic/inc/basic.hrc:115
+#: basic/inc/basic.hrc:114
msgctxt "RID_BASIC_START"
msgid "Error executing a method."
msgstr "Virhe suoritettaessa metodia."
#. N3vcw
-#: basic/inc/basic.hrc:116
+#: basic/inc/basic.hrc:115
msgctxt "RID_BASIC_START"
msgid "Unable to set property."
msgstr "Ominaisuuden asettaminen ei onnistu."
#. k82XW
-#: basic/inc/basic.hrc:117
+#: basic/inc/basic.hrc:116
msgctxt "RID_BASIC_START"
msgid "Unable to determine property."
msgstr "Ominaisuuden määrittäminen ei onnistu."
#. 5cGpa
#. Compiler errors. These are not runtime errors.
-#: basic/inc/basic.hrc:119
+#: basic/inc/basic.hrc:118
msgctxt "RID_BASIC_START"
msgid "Unexpected symbol: $(ARG1)."
msgstr "Odottamaton symboli: $(ARG1)."
#. SBpod
-#: basic/inc/basic.hrc:120
+#: basic/inc/basic.hrc:119
msgctxt "RID_BASIC_START"
msgid "Expected: $(ARG1)."
msgstr "Odotettiin: $(ARG1)."
#. JBaEp
-#: basic/inc/basic.hrc:121
+#: basic/inc/basic.hrc:120
msgctxt "RID_BASIC_START"
msgid "Symbol expected."
msgstr "Odotettiin symbolia."
#. CkAE9
-#: basic/inc/basic.hrc:122
+#: basic/inc/basic.hrc:121
msgctxt "RID_BASIC_START"
msgid "Variable expected."
msgstr "Odotettiin muuttujaa."
#. DS5cS
-#: basic/inc/basic.hrc:123
+#: basic/inc/basic.hrc:122
msgctxt "RID_BASIC_START"
msgid "Label expected."
msgstr "Odotettiin selitettä."
#. k2myJ
-#: basic/inc/basic.hrc:124
+#: basic/inc/basic.hrc:123
msgctxt "RID_BASIC_START"
msgid "Value cannot be applied."
msgstr "Arvoa ei voi käyttää."
#. oPCtL
-#: basic/inc/basic.hrc:125
+#: basic/inc/basic.hrc:124
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) already defined."
msgstr "Muuttuja $(ARG1) on jo määritetty."
#. WmiB6
-#: basic/inc/basic.hrc:126
+#: basic/inc/basic.hrc:125
msgctxt "RID_BASIC_START"
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "Aliproseduuri tai funktioproseduuri $(ARG1) on jo määritetty."
#. byksZ
-#: basic/inc/basic.hrc:127
+#: basic/inc/basic.hrc:126
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) already defined."
msgstr "Selite $(ARG1) on jo määritetty."
#. GHdG4
-#: basic/inc/basic.hrc:128
+#: basic/inc/basic.hrc:127
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) not found."
msgstr "Muuttujaa $(ARG1) ei löytynyt."
#. DksBU
-#: basic/inc/basic.hrc:129
+#: basic/inc/basic.hrc:128
msgctxt "RID_BASIC_START"
msgid "Array or procedure $(ARG1) not found."
msgstr "Taulukkoa tai proseduuria $(ARG1) ei löytynyt."
#. 7CD6B
-#: basic/inc/basic.hrc:130
+#: basic/inc/basic.hrc:129
msgctxt "RID_BASIC_START"
msgid "Procedure $(ARG1) not found."
msgstr "Proseduuria $(ARG1) ei löytynyt."
#. GREm3
-#: basic/inc/basic.hrc:131
+#: basic/inc/basic.hrc:130
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) undefined."
msgstr "Rivitunnusta $(ARG1) ei ole määritetty."
#. 2VFZq
-#: basic/inc/basic.hrc:132
+#: basic/inc/basic.hrc:131
msgctxt "RID_BASIC_START"
msgid "Unknown data type $(ARG1)."
msgstr "Tuntematon tietotyyppi $(ARG1)."
#. hvsH3
-#: basic/inc/basic.hrc:133
+#: basic/inc/basic.hrc:132
msgctxt "RID_BASIC_START"
msgid "Exit $(ARG1) expected."
msgstr "Odotettiin poistumista kohteesta $(ARG1)."
#. 7kZX5
-#: basic/inc/basic.hrc:134
+#: basic/inc/basic.hrc:133
msgctxt "RID_BASIC_START"
msgid "Statement block still open: $(ARG1) missing."
msgstr "Lauselohko yhä avoinna: $(ARG1) puuttuu."
#. EysAe
-#: basic/inc/basic.hrc:135
+#: basic/inc/basic.hrc:134
msgctxt "RID_BASIC_START"
msgid "Parentheses do not match."
msgstr "Sulkeet eivät vastaa toisiaan."
#. tGqRY
-#: basic/inc/basic.hrc:136
+#: basic/inc/basic.hrc:135
msgctxt "RID_BASIC_START"
msgid "Symbol $(ARG1) already defined differently."
msgstr "Symboli $(ARG1) on jo määritetty toisella tavalla."
#. Nvysh
-#: basic/inc/basic.hrc:137
+#: basic/inc/basic.hrc:136
msgctxt "RID_BASIC_START"
msgid "Parameters do not correspond to procedure."
msgstr "Parametrit eivät vastaa proseduuria."
#. aLCNz
-#: basic/inc/basic.hrc:138
+#: basic/inc/basic.hrc:137
msgctxt "RID_BASIC_START"
msgid "Invalid character in number."
msgstr "Virheellinen merkki luvussa."
#. ZL3GF
-#: basic/inc/basic.hrc:139
+#: basic/inc/basic.hrc:138
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Array must be dimensioned."
msgstr "Taulukon on oltava dimensioitu."
#. bvzvK
-#: basic/inc/basic.hrc:140
+#: basic/inc/basic.hrc:139
msgctxt "RID_BASIC_START"
msgid "Else/Endif without If."
msgstr "Else tai Endif ilman Ifiä."
#. BPHwC
-#: basic/inc/basic.hrc:141
+#: basic/inc/basic.hrc:140
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed within a procedure."
msgstr "$(ARG1) ei ole sallittu proseduurissa."
#. t4CFy
-#: basic/inc/basic.hrc:142
+#: basic/inc/basic.hrc:141
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed outside a procedure."
msgstr "$(ARG1) ei ole sallittu proseduurin ulkopuolella."
#. BAmBZ
-#: basic/inc/basic.hrc:143
+#: basic/inc/basic.hrc:142
msgctxt "RID_BASIC_START"
msgid "Dimension specifications do not match."
msgstr "Dimensiomääritykset eivät vastaa toisiaan."
#. kKjmy
-#: basic/inc/basic.hrc:144
+#: basic/inc/basic.hrc:143
msgctxt "RID_BASIC_START"
msgid "Unknown option: $(ARG1)."
msgstr "Tuntematon asetus: $(ARG1)."
#. LCo58
-#: basic/inc/basic.hrc:145
+#: basic/inc/basic.hrc:144
msgctxt "RID_BASIC_START"
msgid "Constant $(ARG1) redefined."
msgstr "Vakio $(ARG1) määritetty uudelleen."
#. Dx6YA
-#: basic/inc/basic.hrc:146
+#: basic/inc/basic.hrc:145
msgctxt "RID_BASIC_START"
msgid "Program too large."
msgstr "Ohjelma on liian suuri."
#. aAKCD
-#: basic/inc/basic.hrc:147
+#: basic/inc/basic.hrc:146
msgctxt "RID_BASIC_START"
msgid "Strings or arrays not permitted."
msgstr "Merkkijonot tai taulukot eivät ole sallittuja."
#. gqBGJ
-#: basic/inc/basic.hrc:148
+#: basic/inc/basic.hrc:147
msgctxt "RID_BASIC_START"
msgid "An exception occurred $(ARG1)."
msgstr "Poikkeus havaittu $(ARG1)."
#. YTygS
-#: basic/inc/basic.hrc:149
+#: basic/inc/basic.hrc:148
#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This array is fixed or temporarily locked."
msgstr "Tämä taulukko on kiinteäarvoinen tai hetkellisesti lukittu."
#. AwvaS
-#: basic/inc/basic.hrc:150
+#: basic/inc/basic.hrc:149
msgctxt "RID_BASIC_START"
msgid "Out of string space."
msgstr "Merkkijonoille varattu muistitila ei riitä."
#. VosXA
-#: basic/inc/basic.hrc:151
+#: basic/inc/basic.hrc:150
msgctxt "RID_BASIC_START"
msgid "Expression Too Complex."
msgstr "Lauseke on liian monimutkainen."
#. fYWci
-#: basic/inc/basic.hrc:152
+#: basic/inc/basic.hrc:151
msgctxt "RID_BASIC_START"
msgid "Can't perform requested operation."
msgstr "Pyydettyä toimenpidettä ei voida suorittaa."
#. oGvjJ
-#: basic/inc/basic.hrc:153
+#: basic/inc/basic.hrc:152
msgctxt "RID_BASIC_START"
msgid "Too many DLL application clients."
msgstr "Liian moni sovellus käyttää samaa DLL-kirjastoa."
#. tC47t
-#: basic/inc/basic.hrc:154
+#: basic/inc/basic.hrc:153
msgctxt "RID_BASIC_START"
msgid "For loop not initialized."
msgstr "For-silmukkaa ei ole alustettu."
#. DA4GN
-#: basic/inc/basic.hrc:155
+#: basic/inc/basic.hrc:154
msgctxt "RID_BASIC_START"
msgid "$(ARG1)"
msgstr "$(ARG1)"
#. Vtc9n
-#: basic/inc/strings.hrc:25
+#: basic/inc/strings.hrc:24
msgctxt "STR_BASICKEY_FORMAT_ON"
msgid "On"
msgstr "Käytössä"
#. yUCEp
-#: basic/inc/strings.hrc:26
+#: basic/inc/strings.hrc:25
msgctxt "STR_BASICKEY_FORMAT_OFF"
msgid "Off"
msgstr "Ei käytössä"
#. iGZeR
-#: basic/inc/strings.hrc:27
+#: basic/inc/strings.hrc:26
msgctxt "STR_BASICKEY_FORMAT_TRUE"
msgid "True"
msgstr "Tosi"
#. Vcbum
-#: basic/inc/strings.hrc:28
+#: basic/inc/strings.hrc:27
msgctxt "STR_BASICKEY_FORMAT_FALSE"
msgid "False"
msgstr "Epätosi"
#. wGj5U
-#: basic/inc/strings.hrc:29
+#: basic/inc/strings.hrc:28
msgctxt "STR_BASICKEY_FORMAT_YES"
msgid "Yes"
msgstr "Kyllä"
#. TYgJR
-#: basic/inc/strings.hrc:30
+#: basic/inc/strings.hrc:29
msgctxt "STR_BASICKEY_FORMAT_NO"
msgid "No"
msgstr "Ei"
#. YXUyZ
#. format currency
-#: basic/inc/strings.hrc:32
+#: basic/inc/strings.hrc:31
msgctxt "STR_BASICKEY_FORMAT_CURRENCY"
msgid "@0.00 $;@(0.00 $)"
msgstr "@0.00 $;@(0.00 $)"
#. AP2X4
-#: basic/inc/strings.hrc:34
+#: basic/inc/strings.hrc:33
msgctxt "IDS_SBERR_TERMINATED"
msgid "The macro running has been interrupted"
msgstr "Suoritettava makro on keskeytetty"
diff --git a/source/fi/chart2/messages.po b/source/fi/chart2/messages.po
index c3d39c83272..730a64e1d0d 100644
--- a/source/fi/chart2/messages.po
+++ b/source/fi/chart2/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:30+0100\n"
"PO-Revision-Date: 2020-10-14 19:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/chart2messages/fi/>\n"
@@ -17,25 +17,25 @@ msgstr ""
"X-POOTLE-MTIME: 1563894248.000000\n"
#. NCRDD
-#: chart2/inc/chart.hrc:17
+#: chart2/inc/chart.hrc:16
msgctxt "tp_ChartType|liststore1"
msgid "Bar"
msgstr "Palkki"
#. YpLZF
-#: chart2/inc/chart.hrc:18
+#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
msgid "Cylinder"
msgstr "Lieriö"
#. VLXhh
-#: chart2/inc/chart.hrc:19
+#: chart2/inc/chart.hrc:18
msgctxt "tp_ChartType|liststore1"
msgid "Cone"
msgstr "Kartio"
#. xsWC2
-#: chart2/inc/chart.hrc:20
+#: chart2/inc/chart.hrc:19
msgctxt "tp_ChartType|liststore1"
msgid "Pyramid"
msgstr "Pyramidi"
@@ -1083,59 +1083,119 @@ msgid "Data Table"
msgstr "Arvopisteiden muokkaus"
#. ywdAz
-#: chart2/uiconfig/ui/chartdatadialog.ui:75
+#: chart2/uiconfig/ui/chartdatadialog.ui:72
msgctxt "chartdatadialog|InsertRow"
msgid "Insert Row"
msgstr "Lisää rivi"
+#. 8ijLs
+#: chart2/uiconfig/ui/chartdatadialog.ui:77
+msgctxt "chartdatadialog|extended_tip|InsertRow"
+msgid "Inserts a new row below the current row."
+msgstr "Uusi rivi lisätään kohdistimen alapuolelle."
+
#. DDsFz
-#: chart2/uiconfig/ui/chartdatadialog.ui:88
+#: chart2/uiconfig/ui/chartdatadialog.ui:90
msgctxt "chartdatadialog|InsertColumn"
msgid "Insert Series"
msgstr "Lisää sarja"
+#. EjHBF
+#: chart2/uiconfig/ui/chartdatadialog.ui:95
+msgctxt "chartdatadialog|extended_tip|InsertColumn"
+msgid "Inserts a new data series after the current column."
+msgstr "Uusi arvosarja lisätään käsiteltävän sarakkeen jälkeen."
+
#. KuFy7
-#: chart2/uiconfig/ui/chartdatadialog.ui:101
+#: chart2/uiconfig/ui/chartdatadialog.ui:108
msgctxt "chartdatadialog|InsertTextColumn"
msgid "Insert Text Column"
msgstr "Lisää tekstisarake"
+#. tVACy
+#: chart2/uiconfig/ui/chartdatadialog.ui:113
+msgctxt "chartdatadialog|extended_tip|InsertTextColumn"
+msgid "Inserts a new text column after the current column for hierarchical axes descriptions."
+msgstr "Uusi tekstisarake lisätään käsiteltävän sarakkeen jälkeen hierarkkiselle akseleiden kuvaukselle."
+
#. 4JgTE
-#: chart2/uiconfig/ui/chartdatadialog.ui:114
+#: chart2/uiconfig/ui/chartdatadialog.ui:126
msgctxt "chartdatadialog|RemoveRow"
msgid "Delete Row"
msgstr "Poista rivi"
+#. DVMcX
+#: chart2/uiconfig/ui/chartdatadialog.ui:131
+msgctxt "chartdatadialog|extended_tip|RemoveRow"
+msgid "Deletes the current row. It is not possible to delete the label row."
+msgstr "Poistetaan rivi kohdistimen kohdalta. Otsikkoriviä ei voi poistaa."
+
#. JCBmW
-#: chart2/uiconfig/ui/chartdatadialog.ui:127
+#: chart2/uiconfig/ui/chartdatadialog.ui:144
msgctxt "chartdatadialog|RemoveColumn"
msgid "Delete Series"
msgstr "Poista sarja"
+#. mSCiJ
+#: chart2/uiconfig/ui/chartdatadialog.ui:149
+msgctxt "chartdatadialog|extended_tip|RemoveColumn"
+msgid "Deletes the current series or text column. It is not possible to delete the first text column."
+msgstr "Poistetaan käsiteltävä arvosarja tai tekstisarake. Otsikkosaraketta ei voi poistaa."
+
#. MUkk3
-#: chart2/uiconfig/ui/chartdatadialog.ui:150
+#: chart2/uiconfig/ui/chartdatadialog.ui:172
msgctxt "chartdatadialog|MoveLeftColumn"
msgid "Move Series Left"
msgstr "Siirrä sarjaa vasemmalle"
+#. V7UUB
+#: chart2/uiconfig/ui/chartdatadialog.ui:177
+msgctxt "chartdatadialog|extended_tip|MoveLeftColumn"
+msgid "Switches the current column with its neighbor at the left."
+msgstr ""
+
#. DfxQy
-#: chart2/uiconfig/ui/chartdatadialog.ui:163
+#: chart2/uiconfig/ui/chartdatadialog.ui:190
msgctxt "chartdatadialog|MoveRightColumn"
msgid "Move Series Right"
msgstr "Siirrä sarjaa oikealle"
+#. JxZC8
+#: chart2/uiconfig/ui/chartdatadialog.ui:195
+msgctxt "chartdatadialog|extended_tip|MoveRightColumn"
+msgid "Switches the current column with its neighbor at the right."
+msgstr "Siirretään kohdistimen osoittamaa saraketta yksi askel oikealle."
+
#. EkxKw
-#: chart2/uiconfig/ui/chartdatadialog.ui:176
+#: chart2/uiconfig/ui/chartdatadialog.ui:208
msgctxt "chartdatadialog|MoveUpRow"
msgid "Move Row Up"
msgstr "Siirrä riviä ylöspäin"
+#. DnZTt
+#: chart2/uiconfig/ui/chartdatadialog.ui:213
+msgctxt "chartdatadialog|extended_tip|MoveUpRow"
+msgid "Switches the current row with its neighbor above."
+msgstr ""
+
#. TvbuK
-#: chart2/uiconfig/ui/chartdatadialog.ui:189
+#: chart2/uiconfig/ui/chartdatadialog.ui:226
msgctxt "chartdatadialog|MoveDownRow"
msgid "Move Row Down"
msgstr "Siirrä riviä alaspäin"
+#. u8jmj
+#: chart2/uiconfig/ui/chartdatadialog.ui:231
+msgctxt "chartdatadialog|extended_tip|MoveDownRow"
+msgid "Switches the current row with its neighbor below."
+msgstr "Siirretään kohdistimen osoittamaa riviä askel alaspäin."
+
+#. rRJDK
+#: chart2/uiconfig/ui/chartdatadialog.ui:365
+msgctxt "chartdatadialog|extended_tip|ChartDataDialog"
+msgid "Opens the Data Table dialog where you can edit the chart data."
+msgstr ""
+
#. KbkRw
#: chart2/uiconfig/ui/charttypedialog.ui:8
msgctxt "charttypedialog|ChartTypeDialog"
@@ -1167,204 +1227,300 @@ msgid "Data Labels for all Data Series"
msgstr "Arvopisteiden otsikot kaikille arvosarjoille"
#. ouq6P
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:108
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:105
msgctxt "dlg_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Show value as _number"
msgstr "Näytä arvo lukuna"
+#. sDLeD
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:114
+msgctxt "dlg_DataLabel|extended_tip|CB_VALUE_AS_NUMBER"
+msgid "Displays the absolute values of the data points."
+msgstr "Arvopisteet esitetään absoluuttisina arvoina."
+
#. C2XXx
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:123
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:125
msgctxt "dlg_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Show value as _percentage"
msgstr "Näytä arvo prosenttiosuutena"
+#. 5Hp8E
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:134
+msgctxt "dlg_DataLabel|extended_tip|CB_VALUE_AS_PERCENTAGE"
+msgid "Displays the percentage of the data points in each column."
+msgstr "Esitetään arvopisteille prosenttiosuus kussakin sarakkeessa."
+
#. MYzUe
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:138
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:145
msgctxt "dlg_DataLabel|CB_CATEGORY"
msgid "Show _category"
msgstr "Näytä luokka"
+#. oJGQF
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:154
+msgctxt "dlg_DataLabel|extended_tip|CB_CATEGORY"
+msgid "Shows the data point text labels."
+msgstr "Esitetään arvopisteiden otsikkotekstit."
+
#. 8mMDV
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:153
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:165
msgctxt "dlg_DataLabel|CB_SYMBOL"
msgid "Show _legend key"
msgstr "Näytä seliteruutu"
+#. 7WADc
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:174
+msgctxt "dlg_DataLabel|extended_tip|CB_SYMBOL"
+msgid "Displays the legend icons next to each data point label."
+msgstr "Esitetään selitekuvake kunkin arvopisteotsikon vieressä"
+
#. BA3kD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:168
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:185
msgctxt "dlg_DataLabel|CB_WRAP_TEXT"
msgid "Auto text _wrap"
msgstr "Automaattinen tekstin rivitys"
#. bFd8g
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:183
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:200
msgctxt "dlg_DataLabel|PB_NUMBERFORMAT"
msgid "Number _format..."
msgstr "Luvun muoto..."
+#. yHa5z
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:208
+msgctxt "dlg_DataLabel|extended_tip|PB_NUMBERFORMAT"
+msgid "Opens a dialog to select the number format."
+msgstr "Numeeristen arvojen muotoiluun avataan valintaikkuna."
+
#. cFD6D
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:197
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:219
msgctxt "dlg_DataLabel|PB_PERCENT_NUMBERFORMAT"
msgid "Percentage f_ormat..."
msgstr "Prosenttiosuuden muoto..."
+#. Wj42y
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:227
+msgctxt "dlg_DataLabel|extended_tip|PB_PERCENT_NUMBERFORMAT"
+msgid "Opens a dialog to select the percentage format."
+msgstr "Prosenttiluvun muotoiluun avataan valintaikkuna."
+
#. ETbFx
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:213
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:240
msgctxt "dlg_DataLabel|CT_LABEL_DIAL"
msgid "ABCD"
msgstr "ABCD"
#. NvbuM
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:232
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:259
msgctxt "dlg_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "Erotinmerkki"
#. m8qsr
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:249
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:276
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "Välilyönti"
#. d6M3S
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:250
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:277
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "Pilkku"
#. HUBkD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:251
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:278
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "Puolipiste"
#. 3CaCX
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:252
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:279
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "Rivinvaihto"
#. CAtwB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:253
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:280
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "Piste"
+#. 8Z3DJ
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:284
+msgctxt "dlg_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
+msgid "Selects the separator between multiple text strings for the same object."
+msgstr "Valitaan erotinmerkki, kun yhdessä otsikossa on useampi merkkijono."
+
#. FDBQW
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:278
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:310
msgctxt "dlg_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "Sijoitus"
#. RBvRC
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:295
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:327
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "Paras sovitus"
#. CFGTS
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:296
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:328
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "Keskelle"
#. kxNDG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:297
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:329
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Yläpuolelle"
#. dnhiD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:298
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:330
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Ylös vasemmalle"
#. TGuEk
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:299
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:331
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Vasemmalle"
#. eUxTR
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:300
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:332
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Alas vasemmalle"
#. CGQj7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:301
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:333
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Alapuolelle"
#. UJ7uQ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:302
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:334
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Alas oikealle"
#. nEFuG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:303
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:335
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Oikealle"
#. NQCGE
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:304
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:336
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Ylös oikealle"
#. UagUt
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:305
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:337
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Sisäpuolelle"
#. y25DL
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:306
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:338
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Ulkopuolelle"
#. 3HjyB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:307
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:339
#, fuzzy
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Juureen"
+#. TMEug
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:343
+msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
+msgid "Selects the placement of data labels relative to the objects."
+msgstr "Valitaan arvojen otsikoiden sijoittelu objektiin nähden."
+
#. 69qZL
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:326
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:363
msgctxt "dlg_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
msgid "Number Format for Percentage Value"
msgstr "Luvun muoto prosenttiarvolle"
#. mFeMA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:344
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:381
msgctxt "dlg_DataLabel|label1"
msgid "Text Attributes"
msgstr "Tekstin ominaisuudet"
+#. gE7CA
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:425
+msgctxt "dlg_DataLabel|extended_tip|CT_DIAL"
+msgid "Click in the dial to set the text orientation for the data labels."
+msgstr "Selitetekstien suunta voidaan asettaa kehää napsauttamalla."
+
+#. MjCoG
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:445
+msgctxt "dlg_DataLabel|extended_tip|NF_LABEL_DEGREES"
+msgid "Enter the counterclockwise rotation angle for the data labels."
+msgstr "Annetaan aineistoselitteiden vastapäiväinen kiertokulma."
+
#. Jhjwb
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:412
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:459
msgctxt "dlg_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "astetta"
#. vtVy2
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:437
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:484
msgctxt "dlg_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Tekstin kirjoitussuunta"
+#. tjcHp
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:501
+msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Määritetään tekstin suunta kappaleessa, jossa käytetään laajennettua tekstin asettelua (CTL)."
+
#. xpAEz
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:474
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:526
msgctxt "dlg_DataLabel|label2"
msgid "Rotate Text"
msgstr "Kierrä tekstiä"
+#. NpD8D
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:559
+msgctxt "dlg_DataLabel|CB_CUSTOM_LEADER_LINES"
+msgid "_Connect displaced data labels to data points"
+msgstr ""
+
+#. MJdmK
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:568
+msgctxt "dlg_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
+msgid "Draws a line connecting the data labels to the data points"
+msgstr ""
+
+#. UKVF9
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:586
+msgctxt "dlg_DataLabel|label3"
+msgid "Leader Lines"
+msgstr ""
+
+#. 6bBph
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:602
+msgctxt "dlg_DataLabel|extended_tip|tp_DataLabel"
+msgid "Opens the Data Labels dialog, which enables you to set the data labels."
+msgstr "Avataan Arvopisteiden otsikot -valintaikkuna, jossa voidaan asetella arvojen otsikot."
+
+#. bt7D7
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:624
+msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabels"
+msgid "Opens the Data Labels dialog, which enables you to set the data labels."
+msgstr "Avataan Arvopisteiden otsikot -valintaikkuna, jossa voidaan asetella arvojen otsikot."
+
#. 3GUtp
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:28
msgctxt "dlg_InsertErrorBars|dlg_InsertErrorBars"
@@ -1372,134 +1528,230 @@ msgid "Legend"
msgstr "Selite"
#. 9Wf9T
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:131
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:128
msgctxt "dlg_InsertErrorBars|RB_NONE"
msgid "_None"
msgstr "Ei mitään"
+#. pvfsb
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:137
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_NONE"
+msgid "Does not show any error bars."
+msgstr ""
+
#. sMZoy
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:147
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:149
msgctxt "dlg_InsertErrorBars|RB_CONST"
msgid "_Constant Value"
msgstr "Vakioarvo"
+#. oDzF5
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:159
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_CONST"
+msgid "Displays constant values that you specify in the Parameters area."
+msgstr ""
+
#. UzxQQ
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:164
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:171
msgctxt "dlg_InsertErrorBars|RB_PERCENT"
msgid "_Percentage"
msgstr "Prosenttiosuus"
+#. bGDm2
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:181
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_PERCENT"
+msgid "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area."
+msgstr ""
+
+#. tSBH9
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:207
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_FUNCTION"
+msgid "Select a function to calculate the error bars."
+msgstr "Valitaan funktio, jolla lasketaan esitettävän vaihteluvälin jana."
+
#. fkUNn
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:205
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:222
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Standard Error"
msgstr "Keskivirhe"
#. zpc6d
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:206
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:223
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Standard Deviation"
msgstr "Keskihajonta"
#. wA6LE
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:207
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:224
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Variance"
msgstr "Varianssi"
#. UASm3
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:208
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:225
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Error Margin"
msgstr "Virhemarginaali"
+#. vqTAT
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:229
+msgctxt "dlg_InsertErrorBars|extended_tip|LB_FUNCTION"
+msgid "Select a function to calculate the error bars."
+msgstr "Valitaan funktio, jolla lasketaan esitettävän vaihteluvälin jana."
+
#. Z5yGF
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:226
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:248
msgctxt "dlg_InsertErrorBars|RB_RANGE"
msgid "Cell _Range"
msgstr "Solualue"
+#. Vm5iS
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:258
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_RANGE"
+msgid "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
+msgstr "Napsautetaan ensin Solualue-valintanappia ja sitten määritetään solualueet, mistä vaihteluarvot ylös- ja alaspäin otetaan."
+
#. vdvVR
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:249
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:276
msgctxt "dlg_InsertErrorBars|label1"
msgid "Error Category"
msgstr "Virheluokka"
#. oZaa3
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:282
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:309
msgctxt "dlg_InsertErrorBars|RB_BOTH"
msgid "Positive _and Negative"
msgstr "Positiivinen ja negatiivinen"
+#. aAhky
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:318
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_BOTH"
+msgid "Shows positive and negative error bars."
+msgstr "Esitetään virhejanat sekä ylä-että alarajoille."
+
#. jJw8Y
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:297
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:329
msgctxt "dlg_InsertErrorBars|RB_POSITIVE"
msgid "Pos_itive"
msgstr "Positiivinen"
+#. yXXuP
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:339
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_POSITIVE"
+msgid "Shows only positive error bars."
+msgstr "Esitetään virhejanat vain ylärajoille."
+
#. 6YgbM
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:313
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:350
msgctxt "dlg_InsertErrorBars|RB_NEGATIVE"
msgid "Ne_gative"
msgstr "Negatiivinen"
+#. KsYHq
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:360
+msgctxt "dlg_InsertErrorBars|extended_tip|RB_NEGATIVE"
+msgid "Shows only negative error bars."
+msgstr "Esitetään virhejanat vain alarajoille."
+
#. fkKQH
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:368
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:410
#, fuzzy
msgctxt "dlg_InsertErrorBars|label2"
msgid "Error Indicator"
msgstr "Virheilmaisin"
#. WWuZ8
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:416
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:458
msgctxt "dlg_InsertErrorBars|FT_POSITIVE"
msgid "P_ositive (+)"
msgstr "Positiivinen (+)"
+#. EHq4d
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:476
+msgctxt "dlg_InsertErrorBars|extended_tip|MF_POSITIVE"
+msgid "Enter the value to add to the displayed value as the positive error value."
+msgstr "Kenttään kirjataan luku, joka lisätään esitettyyn arvoon vaihteluvälin ylärajan kuvaamiseksi."
+
+#. SUBEs
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:494
+msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_POSITIVE"
+msgid "Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet."
+msgstr "Annetaan osoitealue, josta saadaan vaihtelupoikkeamille ylärajat. Valitse tietoalue -painike kutistaa ikkunan ja sallii aluevalinnan hiirellä."
+
#. 5FfdH
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:457
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:509
msgctxt "dlg_InsertErrorBars|IB_RANGE_POSITIVE|tooltip_text"
msgid "Select data range"
msgstr "Valitse tietoalue"
+#. JYk3c
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:513
+msgctxt "dlg_InsertErrorBars|extended_tip|IB_RANGE_POSITIVE"
+msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
+msgstr "Painikkeella kutistetaan ensin ikkuna, sitten valitaan hiirellä solualue laskentataulukosta. Painikkeen napsautus jälleen ja valintaikkuna palautuu entiseen kokoonsa (valittu solualue kentässä näkyen)."
+
#. K9wAk
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:482
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:539
msgctxt "dlg_InsertErrorBars|FT_NEGATIVE"
msgid "_Negative (-)"
msgstr "Negatiivinen (-)"
+#. Hzr6X
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:557
+msgctxt "dlg_InsertErrorBars|extended_tip|MF_NEGATIVE"
+msgid "Enter the value to subtract from the displayed value as the negative error value."
+msgstr "Annetaan positiivinen luku, joka vähennetään esitetystä arvosta vaihteluvälin alarajan kuvaamiseksi."
+
+#. DTR5D
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:575
+msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_NEGATIVE"
+msgid "Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet."
+msgstr "Annetaan osoitealue, josta saadaan vaihtelupoikkeamille alarajat. Valitse tietoalue -painike kutistaa ikkunan ja sallii aluevalinnan hiirellä."
+
#. jsckc
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:523
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:590
msgctxt "dlg_InsertErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
msgid "Select data range"
msgstr "Valitse tietoalue"
+#. mEwUr
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:594
+msgctxt "dlg_InsertErrorBars|extended_tip|IB_RANGE_NEGATIVE"
+msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
+msgstr "Painikkeella kutistetaan ensin ikkuna, sitten valitaan hiirellä solualue laskentataulukosta. Painikkeen napsautus jälleen ja valintaikkuna palautuu entiseen kokoonsa (valittu solualue kentässä näkyen)."
+
#. GZS6d
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:541
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:613
msgctxt "dlg_InsertErrorBars|CB_SYN_POS_NEG"
msgid "Same value for both"
msgstr "Sama arvo molemmissa"
+#. wTppD
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:622
+msgctxt "dlg_InsertErrorBars|extended_tip|CB_SYN_POS_NEG"
+msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically."
+msgstr ""
+
#. ogVMg
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:563
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:640
msgctxt "dlg_InsertErrorBars|label3"
msgid "Parameters"
msgstr "Parametrit"
#. MXxxE
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:580
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:657
msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
msgid "Select Range for Positive Error Bars"
msgstr "Valitse alue positiivisille virhepalkeille"
#. ixAQm
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:591
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:668
msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
msgid "Select Range for Negative Error Bars"
msgstr "Valitse alue negatiivisille virhepalkeille"
#. 68LFy
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:602
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:679
msgctxt "dlg_InsertErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
msgstr "Arvopistetaulukosta"
@@ -1553,53 +1805,89 @@ msgid "Axes"
msgstr "Akselit"
#. 4Drc8
-#: chart2/uiconfig/ui/insertaxisdlg.ui:110
+#: chart2/uiconfig/ui/insertaxisdlg.ui:106
msgctxt "insertaxisdlg|primaryX"
msgid "_X axis"
msgstr "X-akseli"
+#. QyAAw
+#: chart2/uiconfig/ui/insertaxisdlg.ui:115
+msgctxt "insertaxisdlg|extended_tip|primaryX"
+msgid "Displays the X axis as a line with subdivisions."
+msgstr "X-akselin esitys jaollisena suorana."
+
#. XeWVu
-#: chart2/uiconfig/ui/insertaxisdlg.ui:126
+#: chart2/uiconfig/ui/insertaxisdlg.ui:127
msgctxt "insertaxisdlg|primaryY"
msgid "_Y axis"
msgstr "Y-akseli"
+#. 8ZzUp
+#: chart2/uiconfig/ui/insertaxisdlg.ui:136
+msgctxt "insertaxisdlg|extended_tip|primaryY"
+msgid "Displays the Y axis as a line with subdivisions."
+msgstr "Y-akselin esitys jaollisena suorana."
+
#. FoAXW
-#: chart2/uiconfig/ui/insertaxisdlg.ui:142
+#: chart2/uiconfig/ui/insertaxisdlg.ui:148
msgctxt "insertaxisdlg|primaryZ"
msgid "_Z axis"
msgstr "Z-akseli"
+#. DgjxB
+#: chart2/uiconfig/ui/insertaxisdlg.ui:157
+msgctxt "insertaxisdlg|extended_tip|primaryZ"
+msgid "Displays the Z axis as a line with subdivisions."
+msgstr "Z-akselin esitys jaollisena suorana."
+
#. YZ7GG
-#: chart2/uiconfig/ui/insertaxisdlg.ui:165
+#: chart2/uiconfig/ui/insertaxisdlg.ui:176
msgctxt "insertaxisdlg|label1"
msgid "Axes"
msgstr "Akselit"
#. WEUFf
-#: chart2/uiconfig/ui/insertaxisdlg.ui:200
+#: chart2/uiconfig/ui/insertaxisdlg.ui:211
msgctxt "insertaxisdlg|secondaryX"
msgid "X _axis"
msgstr "X-akseli"
+#. JGQhE
+#: chart2/uiconfig/ui/insertaxisdlg.ui:220
+msgctxt "insertaxisdlg|extended_tip|secondaryX"
+msgid "Displays a secondary X axis in the chart."
+msgstr "Kaavioon lisätään toissijainen x-akseli."
+
#. 598Gk
-#: chart2/uiconfig/ui/insertaxisdlg.ui:216
+#: chart2/uiconfig/ui/insertaxisdlg.ui:232
msgctxt "insertaxisdlg|secondaryY"
msgid "Y ax_is"
msgstr "Y-akseli"
+#. trDFK
+#: chart2/uiconfig/ui/insertaxisdlg.ui:241
+msgctxt "insertaxisdlg|extended_tip|secondaryY"
+msgid "The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. "
+msgstr "Pääakseli ja lisäakseli voivat olla eri jaotuksella. Esimerkiksi toisen akselin jako voi olla 2 cm ja toisen 1,5 cm. "
+
#. CAFjD
-#: chart2/uiconfig/ui/insertaxisdlg.ui:232
+#: chart2/uiconfig/ui/insertaxisdlg.ui:253
msgctxt "insertaxisdlg|secondaryZ"
msgid "Z axi_s"
msgstr "Z-akseli"
#. 2LQwV
-#: chart2/uiconfig/ui/insertaxisdlg.ui:255
+#: chart2/uiconfig/ui/insertaxisdlg.ui:276
msgctxt "insertaxisdlg|label2"
msgid "Secondary Axes"
msgstr "Toissijaiset akselit"
+#. 7yEDE
+#: chart2/uiconfig/ui/insertaxisdlg.ui:308
+msgctxt "insertaxisdlg|extended_tip|InsertAxisDialog"
+msgid "Specifies the axes to be displayed in the chart."
+msgstr "Määritellään esitettävät kaavion akselit."
+
#. 2eGKS
#: chart2/uiconfig/ui/insertgriddlg.ui:8
msgctxt "insertgriddlg|InsertGridDialog"
@@ -1607,53 +1895,95 @@ msgid "Grids"
msgstr "Ruudukot"
#. adEgJ
-#: chart2/uiconfig/ui/insertgriddlg.ui:110
+#: chart2/uiconfig/ui/insertgriddlg.ui:106
msgctxt "insertgriddlg|primaryX"
msgid "_X axis"
msgstr "X-akseli"
+#. TeVcH
+#: chart2/uiconfig/ui/insertgriddlg.ui:115
+msgctxt "insertgriddlg|extended_tip|primaryX"
+msgid "Adds gridlines to the X axis of the chart."
+msgstr "Kaavion x-akseliin liitetään viivasto."
+
#. FEBZW
-#: chart2/uiconfig/ui/insertgriddlg.ui:126
+#: chart2/uiconfig/ui/insertgriddlg.ui:127
msgctxt "insertgriddlg|primaryY"
msgid "_Y axis"
msgstr "Y-akseli"
+#. 6SmKJ
+#: chart2/uiconfig/ui/insertgriddlg.ui:136
+msgctxt "insertgriddlg|extended_tip|primaryY"
+msgid "Adds gridlines to the Y axis of the chart."
+msgstr "Kaavion y-akseliin liitetään viivasto."
+
#. XEXTu
-#: chart2/uiconfig/ui/insertgriddlg.ui:142
+#: chart2/uiconfig/ui/insertgriddlg.ui:148
msgctxt "insertgriddlg|primaryZ"
msgid "_Z axis"
msgstr "Z-akseli"
+#. bF4Eb
+#: chart2/uiconfig/ui/insertgriddlg.ui:157
+msgctxt "insertgriddlg|extended_tip|primaryZ"
+msgid "Adds gridlines to the Z axis of the chart."
+msgstr "Kaavion z-akseliin liitetään viivasto."
+
#. 9QbAA
-#: chart2/uiconfig/ui/insertgriddlg.ui:165
+#: chart2/uiconfig/ui/insertgriddlg.ui:176
msgctxt "insertgriddlg|label1"
msgid "Major Grids"
msgstr "Pääruudukot"
#. wqXds
-#: chart2/uiconfig/ui/insertgriddlg.ui:200
+#: chart2/uiconfig/ui/insertgriddlg.ui:211
msgctxt "insertgriddlg|secondaryX"
msgid "X _axis"
msgstr "X-akseli"
+#. cfAUn
+#: chart2/uiconfig/ui/insertgriddlg.ui:220
+msgctxt "insertgriddlg|extended_tip|secondaryX"
+msgid "Adds gridlines that subdivide the X axis into smaller sections."
+msgstr "X-akseliin liitetään väliviivasto."
+
#. PkzaY
-#: chart2/uiconfig/ui/insertgriddlg.ui:216
+#: chart2/uiconfig/ui/insertgriddlg.ui:232
msgctxt "insertgriddlg|secondaryY"
msgid "Y ax_is"
msgstr "Y-akseli"
+#. a3asH
+#: chart2/uiconfig/ui/insertgriddlg.ui:241
+msgctxt "insertgriddlg|extended_tip|secondaryY"
+msgid "Adds gridlines that subdivide the Y axis into smaller sections."
+msgstr "Y-akseliin liitetään väliviivasto."
+
#. CcCG8
-#: chart2/uiconfig/ui/insertgriddlg.ui:232
+#: chart2/uiconfig/ui/insertgriddlg.ui:253
msgctxt "insertgriddlg|secondaryZ"
msgid "Z axi_s"
msgstr "Z-akseli"
+#. hcj99
+#: chart2/uiconfig/ui/insertgriddlg.ui:262
+msgctxt "insertgriddlg|extended_tip|secondaryZ"
+msgid "Adds gridlines that subdivide the Z axis into smaller sections."
+msgstr "Z-akseliin liitetään väliviivasto."
+
#. QBQD4
-#: chart2/uiconfig/ui/insertgriddlg.ui:255
+#: chart2/uiconfig/ui/insertgriddlg.ui:281
msgctxt "insertgriddlg|label2"
msgid "Minor Grids"
msgstr "Apuruudukot"
+#. URB9E
+#: chart2/uiconfig/ui/insertgriddlg.ui:313
+msgctxt "insertgriddlg|extended_tip|InsertGridDialog"
+msgid "You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts."
+msgstr "Akselit voidaan jakaa osiin kytkemällä niihin viivasto. Tämä antaa paremman yleiskuvan kaaviosta, varsinkin työstettäessä laajoja kaaviota."
+
#. rqADt
#: chart2/uiconfig/ui/inserttitledlg.ui:8
msgctxt "inserttitledlg|InsertTitleDialog"
@@ -1661,59 +1991,107 @@ msgid "Titles"
msgstr "Otsikot"
#. pAKf8
-#: chart2/uiconfig/ui/inserttitledlg.ui:94
+#: chart2/uiconfig/ui/inserttitledlg.ui:91
msgctxt "inserttitledlg|labelMainTitle"
msgid "_Title"
msgstr "Otsikko"
#. ZBgRn
-#: chart2/uiconfig/ui/inserttitledlg.ui:108
+#: chart2/uiconfig/ui/inserttitledlg.ui:105
msgctxt "inserttitledlg|labelSubTitle"
msgid "_Subtitle"
msgstr "Alaotsikko"
+#. aCRZ7
+#: chart2/uiconfig/ui/inserttitledlg.ui:123
+msgctxt "inserttitledlg|extended_tip|maintitle"
+msgid "Enter the desired title for the chart."
+msgstr ""
+
+#. 5eiq7
+#: chart2/uiconfig/ui/inserttitledlg.ui:140
+msgctxt "inserttitledlg|extended_tip|subtitle"
+msgid "Enter the desired subtitle for the chart."
+msgstr ""
+
#. y8KiH
-#: chart2/uiconfig/ui/inserttitledlg.ui:171
+#: chart2/uiconfig/ui/inserttitledlg.ui:178
msgctxt "inserttitledlg|labelPrimaryXaxis"
msgid "_X axis"
msgstr "X-akseli"
#. RhsUT
-#: chart2/uiconfig/ui/inserttitledlg.ui:185
+#: chart2/uiconfig/ui/inserttitledlg.ui:192
msgctxt "inserttitledlg|labelPrimaryYaxis"
msgid "_Y axis"
msgstr "Y-akseli"
#. ypJFt
-#: chart2/uiconfig/ui/inserttitledlg.ui:199
+#: chart2/uiconfig/ui/inserttitledlg.ui:206
msgctxt "inserttitledlg|labelPrimaryZaxis"
msgid "_Z axis"
msgstr "Z-akseli"
+#. qz8WP
+#: chart2/uiconfig/ui/inserttitledlg.ui:224
+msgctxt "inserttitledlg|extended_tip|primaryXaxis"
+msgid "Enter the desired title for the X axis of the chart."
+msgstr ""
+
+#. 3m5Dk
+#: chart2/uiconfig/ui/inserttitledlg.ui:241
+msgctxt "inserttitledlg|extended_tip|primaryYaxis"
+msgid "Enter the desired title for the Y axis of the chart."
+msgstr ""
+
+#. PY2EU
+#: chart2/uiconfig/ui/inserttitledlg.ui:258
+msgctxt "inserttitledlg|extended_tip|primaryZaxis"
+msgid "Enter the desired title for the Z axis of the chart."
+msgstr ""
+
#. aHvzY
-#: chart2/uiconfig/ui/inserttitledlg.ui:253
+#: chart2/uiconfig/ui/inserttitledlg.ui:275
msgctxt "inserttitledlg|Axe"
msgid "Axes"
msgstr "Akselit"
#. 8XRFP
-#: chart2/uiconfig/ui/inserttitledlg.ui:288
+#: chart2/uiconfig/ui/inserttitledlg.ui:310
msgctxt "inserttitledlg|labelSecondaryXAxis"
msgid "X _axis"
msgstr "X-akseli"
#. Tq7G9
-#: chart2/uiconfig/ui/inserttitledlg.ui:302
+#: chart2/uiconfig/ui/inserttitledlg.ui:324
msgctxt "inserttitledlg|labelSecondaryYAxis"
msgid "Y ax_is"
msgstr "Y-akseli"
+#. EsHDi
+#: chart2/uiconfig/ui/inserttitledlg.ui:342
+msgctxt "inserttitledlg|extended_tip|secondaryXaxis"
+msgid "Enter the desired secondary title for the X axis of the chart."
+msgstr ""
+
+#. bnwti
+#: chart2/uiconfig/ui/inserttitledlg.ui:359
+msgctxt "inserttitledlg|extended_tip|secondaryYaxis"
+msgid "Enter the desired secondary title for the Y axis of the chart."
+msgstr ""
+
#. XvJwD
-#: chart2/uiconfig/ui/inserttitledlg.ui:344
+#: chart2/uiconfig/ui/inserttitledlg.ui:376
msgctxt "inserttitledlg|label2"
msgid "Secondary Axes"
msgstr "Toissijaiset akselit"
+#. Y96AE
+#: chart2/uiconfig/ui/inserttitledlg.ui:408
+msgctxt "inserttitledlg|extended_tip|InsertTitleDialog"
+msgid "Opens a dialog to enter or modify the titles in a chart."
+msgstr ""
+
#. 23FsQ
#: chart2/uiconfig/ui/paradialog.ui:8
msgctxt "paradialog|ParagraphDialog"
@@ -1810,158 +2188,164 @@ msgctxt "sidebarelements|l"
msgid "Titles"
msgstr "Otsikot"
+#. dB6pP
+#: chart2/uiconfig/ui/sidebarelements.ui:104
+msgctxt "sidebarelements|checkbutton_legend"
+msgid "Show legend"
+msgstr "Näytä selite"
+
#. XxG3r
-#: chart2/uiconfig/ui/sidebarelements.ui:111
+#: chart2/uiconfig/ui/sidebarelements.ui:108
msgctxt "sidebarelements|checkbutton_legend|tooltip_text"
msgid "Show Legend"
msgstr "Näytä selite"
#. zszn2
-#: chart2/uiconfig/ui/sidebarelements.ui:132
+#: chart2/uiconfig/ui/sidebarelements.ui:130
msgctxt "sidebarelements|placement_label"
msgid "_Placement:"
msgstr "Sijoittelu:"
#. N9Vw3
-#: chart2/uiconfig/ui/sidebarelements.ui:148
+#: chart2/uiconfig/ui/sidebarelements.ui:146
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Right"
msgstr "Oikealle"
#. XWGfH
-#: chart2/uiconfig/ui/sidebarelements.ui:149
+#: chart2/uiconfig/ui/sidebarelements.ui:147
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Top"
msgstr "Yläreunaan"
#. AYbfc
-#: chart2/uiconfig/ui/sidebarelements.ui:150
+#: chart2/uiconfig/ui/sidebarelements.ui:148
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Bottom"
msgstr "Alareunaan"
#. Hdrnv
-#: chart2/uiconfig/ui/sidebarelements.ui:151
+#: chart2/uiconfig/ui/sidebarelements.ui:149
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Left"
msgstr "Vasemmalle"
#. WxtCZ
-#: chart2/uiconfig/ui/sidebarelements.ui:175
+#: chart2/uiconfig/ui/sidebarelements.ui:167
msgctxt "sidebarelements|checkbutton_no_overlay"
msgid "Show the legend without overlapping the chart"
msgstr "Älä aseta selitettä kaavion päälle"
#. UVbZR
-#: chart2/uiconfig/ui/sidebarelements.ui:197
+#: chart2/uiconfig/ui/sidebarelements.ui:189
msgctxt "sidebarelements|label_legen"
msgid "Legend"
msgstr "Selite"
#. Am6Gz
-#: chart2/uiconfig/ui/sidebarelements.ui:230
+#: chart2/uiconfig/ui/sidebarelements.ui:222
msgctxt "sidebarelements|checkbutton_x_axis"
msgid "X axis"
msgstr "X-akseli"
#. P5gxx
-#: chart2/uiconfig/ui/sidebarelements.ui:245
+#: chart2/uiconfig/ui/sidebarelements.ui:237
msgctxt "sidebarelements|checkbutton_x_axis_title"
msgid "X axis title"
msgstr "X-akselin otsikko"
#. iMXPp
-#: chart2/uiconfig/ui/sidebarelements.ui:260
+#: chart2/uiconfig/ui/sidebarelements.ui:252
msgctxt "sidebarelements|checkbutton_y_axis"
msgid "Y axis"
msgstr "Y-akseli"
#. vF4oS
-#: chart2/uiconfig/ui/sidebarelements.ui:275
+#: chart2/uiconfig/ui/sidebarelements.ui:267
msgctxt "sidebarelements|checkbutton_y_axis_title"
msgid "Y axis title"
msgstr "Y-akselin otsikko"
#. A35cf
-#: chart2/uiconfig/ui/sidebarelements.ui:290
+#: chart2/uiconfig/ui/sidebarelements.ui:282
msgctxt "sidebarelements|checkbutton_z_axis"
msgid "Z axis"
msgstr "Z-akseli"
#. RZFAU
-#: chart2/uiconfig/ui/sidebarelements.ui:305
+#: chart2/uiconfig/ui/sidebarelements.ui:297
msgctxt "sidebarelements|checkbutton_z_axis_title"
msgid "Z axis title"
msgstr "Z-akselin otsikko"
#. GoJDH
-#: chart2/uiconfig/ui/sidebarelements.ui:320
+#: chart2/uiconfig/ui/sidebarelements.ui:312
msgctxt "sidebarelements|checkbutton_2nd_x_axis"
msgid "2nd X axis"
msgstr "2. X-akseli"
#. nsoDZ
-#: chart2/uiconfig/ui/sidebarelements.ui:334
+#: chart2/uiconfig/ui/sidebarelements.ui:326
msgctxt "sidebarelements|checkbutton_2nd_x_axis_title"
msgid "2nd X axis title"
msgstr "2. X-akselin otsikko"
#. bGsCM
-#: chart2/uiconfig/ui/sidebarelements.ui:348
+#: chart2/uiconfig/ui/sidebarelements.ui:340
msgctxt "sidebarelements|checkbutton_2nd_y_axis"
msgid "2nd Y axis"
msgstr "2. Y-akseli"
#. yDNuy
-#: chart2/uiconfig/ui/sidebarelements.ui:362
+#: chart2/uiconfig/ui/sidebarelements.ui:354
msgctxt "sidebarelements|checkbutton_2nd_y_axis_title"
msgid "2nd Y axis title"
msgstr "2. Y-akselin otsikko"
#. ScLEM
-#: chart2/uiconfig/ui/sidebarelements.ui:382
+#: chart2/uiconfig/ui/sidebarelements.ui:374
msgctxt "sidebarelements|label_axes"
msgid "Axes"
msgstr "Akselit"
#. RL8AA
-#: chart2/uiconfig/ui/sidebarelements.ui:415
+#: chart2/uiconfig/ui/sidebarelements.ui:407
msgctxt "sidebarelements|checkbutton_gridline_horizontal_major"
msgid "Horizontal major"
msgstr "Vaakasuora pää"
#. FYBSZ
-#: chart2/uiconfig/ui/sidebarelements.ui:430
+#: chart2/uiconfig/ui/sidebarelements.ui:422
msgctxt "sidebarelements|checkbutton_gridline_vertical_major"
msgid "Vertical major"
msgstr "Pystysuora pää"
#. VCTTS
-#: chart2/uiconfig/ui/sidebarelements.ui:445
+#: chart2/uiconfig/ui/sidebarelements.ui:437
msgctxt "sidebarelements|checkbutton_gridline_horizontal_minor"
msgid "Horizontal minor"
msgstr "Vaakasuora apu"
#. QDFEZ
-#: chart2/uiconfig/ui/sidebarelements.ui:460
+#: chart2/uiconfig/ui/sidebarelements.ui:452
msgctxt "sidebarelements|checkbutton_gridline_vertical_minor"
msgid "Vertical minor"
msgstr "Pystysuora apu"
#. yeE2v
-#: chart2/uiconfig/ui/sidebarelements.ui:481
+#: chart2/uiconfig/ui/sidebarelements.ui:473
msgctxt "sidebarelements|label_gri"
msgid "Gridlines"
msgstr "Ruudukko"
#. uacDo
-#: chart2/uiconfig/ui/sidebarelements.ui:501
+#: chart2/uiconfig/ui/sidebarelements.ui:493
msgctxt "sidebarelements|text_title"
msgid "Title"
msgstr "Otsikko"
#. jXGDE
-#: chart2/uiconfig/ui/sidebarelements.ui:512
+#: chart2/uiconfig/ui/sidebarelements.ui:504
msgctxt "sidebarelements|text_subtitle"
msgid "Subtitle"
msgstr "Alaotsikko"
@@ -2257,91 +2641,163 @@ msgid "Smooth Lines"
msgstr "Pyöristetyt viivat"
#. vmRbz
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:108
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:114
msgctxt "smoothlinesdlg|TypeLabel"
msgid "Line _Type:"
msgstr "Viivan tyyppi:"
#. Nkqhi
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:124
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:131
msgctxt "smoothlinesdlg|SplineTypeComboBox"
msgid "Cubic spline"
msgstr "Kuutiosplini"
#. LTCVw
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:125
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:132
msgctxt "smoothlinesdlg|SplineTypeComboBox"
msgid "B-spline"
msgstr "B-splini"
+#. EJdNq
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:136
+msgctxt "smoothlinesdlg|extended_tip|SplineTypeComboBox"
+msgid "Apply a line curve model."
+msgstr "Käytetään murtoviivakuvaajaa."
+
#. eecxc
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:158
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:170
msgctxt "smoothlinesdlg|ResolutionLabel"
msgid "_Resolution:"
msgstr "Tarkkuus:"
#. AdG5v
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:172
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:184
msgctxt "smoothlinesdlg|PolynomialsLabel"
msgid "_Degree of polynomials:"
msgstr "Polynomien asteluku:"
+#. X35yY
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:201
+msgctxt "smoothlinesdlg|extended_tip|ResolutionSpinbutton"
+msgid "Set the resolution."
+msgstr "Asetetaan tarkkuus."
+
+#. a4btg
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:218
+msgctxt "smoothlinesdlg|extended_tip|PolynomialsSpinButton"
+msgid "Set the degree of the polynomials."
+msgstr "Asetetaan polynomin asteluku."
+
+#. YECJR
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:252
+msgctxt "smoothlinesdlg|extended_tip|SmoothLinesDialog"
+msgid "Apply a line curve model."
+msgstr "Käytetään murtoviivakuvaajaa."
+
#. RyJg5
#: chart2/uiconfig/ui/steppedlinesdlg.ui:131
msgctxt "steppedlinesdlg|step_start_rb"
msgid "_Start with horizontal line"
msgstr "Aloita vaakaviivalla"
+#. Zcr4L
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:141
+msgctxt "steppedlinesdlg|extended_tip|step_start_rb"
+msgid "Start with horizontal line and step up vertically at the end."
+msgstr "Alku vaakaviivalla ja porras pystyviivaksi lopussa."
+
#. iJCAt
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:147
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:152
msgctxt "steppedlinesdlg|step_center_x_rb"
msgid "Step at the _horizontal mean"
msgstr "Pystyporras pisteiden puolivälissä"
+#. D5DGL
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:163
+msgctxt "steppedlinesdlg|extended_tip|step_center_x_rb"
+msgid "Start to step up vertically and end with horizontal line."
+msgstr "Porras alkaa pystyviivalla ja päättyy vaakaviivalla."
+
#. vtGik
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:164
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:174
msgctxt "steppedlinesdlg|step_end_rb"
msgid "_End with horizontal line"
msgstr "Lopeta vaakaviivalla"
+#. nGAhe
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:185
+msgctxt "steppedlinesdlg|extended_tip|step_end_rb"
+msgid "Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line."
+msgstr "Alku vaakaviivalla, porras pystyviivalla x-arvojen puolivälissä ja loppu vaakaviivalla."
+
#. X3536
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:181
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:196
msgctxt "steppedlinesdlg|step_center_y_rb"
msgid "Step to the _vertical mean"
msgstr "Porrasta arvojen puoliväliin"
+#. S528C
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:207
+msgctxt "steppedlinesdlg|extended_tip|step_center_y_rb"
+msgid "Start to step up vertically to the middle of the Y values, draw a horizontal line and finish by stepping vertically to the end."
+msgstr "Porrastus alkaa pystyviivalla y-arvojen puoliväliin, jatko vaakaviivaa ja loppu pystyviivalla."
+
#. oDDMr
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:215
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:235
msgctxt "steppedlinesdlg|label2"
msgid "Type of Stepping"
msgstr "Porrastustapa"
+#. K2DaE
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:44
+msgctxt "titlerotationtabpage|extended_tip|OrientDegree"
+msgid "Allows you to manually enter the orientation angle."
+msgstr "Kenttään voi syöttää suunnan asteluvun."
+
#. ViJ9k
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:53
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:58
msgctxt "titlerotationtabpage|degreeL"
msgid "_Degrees"
msgstr "Astetta"
#. tv9xJ
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:87
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:92
msgctxt "titlerotationtabpage|stackedCB"
msgid "Ve_rtically stacked"
msgstr "Kirjaimet päällekkäin"
+#. VGDph
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:102
+msgctxt "titlerotationtabpage|extended_tip|stackedCB"
+msgid "Assigns vertical text orientation for cell contents."
+msgstr "Teksti juoksee pystysuunnassa pinomaisesti ruutu merkittynä."
+
#. 3BaMa
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:104
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:114
msgctxt "titlerotationtabpage|labelABCD"
msgid "ABCD"
msgstr "ABCD"
#. dAHWb
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:121
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:131
msgctxt "titlerotationtabpage|textdirL"
msgid "Te_xt direction:"
msgstr "Tekstin kirjoitussuunta:"
+#. i5UYm
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:145
+msgctxt "titlerotationtabpage|extended_tip|textdirLB"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Määritetään tekstin suunta kappaleessa, jossa käytetään laajennettua tekstin asettelua (CTL)."
+
+#. 9cDiw
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:164
+msgctxt "titlerotationtabpage|extended_tip|dialCtrl"
+msgid "Clicking anywhere on the wheel defines the variable text orientation."
+msgstr "Kehän napsautus määrittää tekstin suunnan."
+
#. syx89
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:161
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:181
msgctxt "titlerotationtabpage|labelTextOrient"
msgid "Text Orientation"
msgstr "Tekstin asento"
@@ -2370,138 +2826,276 @@ msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
msgid "Custom"
msgstr "Mukautettu"
+#. raML6
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:42
+msgctxt "tp_3D_SceneAppearance|extended_tip|LB_SCHEME"
+msgid "Select a scheme from the list box, or click any of the check boxes below."
+msgstr "Valitaan tyyppi luettelosta tai napsautetaan yhtä alla olevaa valintaruutua."
+
#. EyGsf
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:73
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:78
msgctxt "tp_3D_SceneAppearance|CB_SHADING"
msgid "_Shading"
msgstr "Varjostus"
+#. W68hV
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:87
+msgctxt "tp_3D_SceneAppearance|extended_tip|CB_SHADING"
+msgid "Applies Gouraud shading if marked, or flat shading if unmarked."
+msgstr "Käytetään Gouraud-varjostusta merkittynä, tasapintoja ilman merkkiä."
+
#. SMFrD
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:89
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:99
msgctxt "tp_3D_SceneAppearance|CB_OBJECTLINES"
msgid "_Object borders"
msgstr "Objektin reunat"
+#. CQjGV
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:108
+msgctxt "tp_3D_SceneAppearance|extended_tip|CB_OBJECTLINES"
+msgid "Shows borders around the areas by setting the line style to Solid."
+msgstr "Pintojen ympärille piirretään reunat jatkuvalla viivatyylillä."
+
#. CpWRj
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:105
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:120
msgctxt "tp_3D_SceneAppearance|CB_ROUNDEDEDGE"
msgid "_Rounded edges"
msgstr "Pyöristetyt särmät"
+#. c5pNB
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:129
+msgctxt "tp_3D_SceneAppearance|extended_tip|CB_ROUNDEDEDGE"
+msgid "Edges are rounded by 5%."
+msgstr "Reunoja pyöristetään 5%."
+
#. U5CTF
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:36
msgctxt "tp_3D_SceneGeometry|CBX_RIGHT_ANGLED_AXES"
msgid "_Right-angled axes"
msgstr "Suorakulmaiset akselit"
+#. QxmLn
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:45
+msgctxt "tp_3D_SceneGeometry|extended_tip|CBX_RIGHT_ANGLED_AXES"
+msgid "If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes."
+msgstr "Kun suorakulmaiset akselit on valittu, kierto tapahtuu vain x- tai y-suuntaan, siis kaavion reunojen suuntaisesti. Suorakulmaiset akselit on oletuksena luotaville 3D-kaavioille. Sektoridiagrammit eivät tue tätä ominaisuutta."
+
#. y8Tyg
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:54
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:59
msgctxt "tp_3D_SceneGeometry|FT_X_ROTATION"
msgid "_X rotation"
msgstr "X-akselin kierto"
#. TJ2Xp
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:68
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:73
msgctxt "tp_3D_SceneGeometry|FT_Y_ROTATION"
msgid "_Y rotation"
msgstr "Y-akselin kierto"
#. UTAG5
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:82
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:87
msgctxt "tp_3D_SceneGeometry|FT_Z_ROTATION"
msgid "_Z rotation"
msgstr "Z-akselin kierto"
#. ZC8ZQ
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:94
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:99
msgctxt "tp_3D_SceneGeometry|CBX_PERSPECTIVE"
msgid "_Perspective"
msgstr "Perspektiivi"
+#. xyePC
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:111
+msgctxt "tp_3D_SceneGeometry|extended_tip|CBX_PERSPECTIVE"
+msgid "Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects."
+msgstr "Perspektiivi-valinnalla kaavio nähdään kuin kameran linssin läpi. Prosenttimäärää säädetään askelruudussa. Suurilla arvoilla lähemmät kohteet näyttävät suuremmilta kuin taaemmat."
+
#. mdPAi
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:121
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:131
msgctxt "tp_3D_SceneGeometry|MTR_FLD_PERSPECTIVE-atkobject"
msgid "Perspective"
msgstr "Perspektiivi"
+#. JECHC
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:132
+msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_PERSPECTIVE"
+msgid "Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects."
+msgstr "Perspektiivi-valinnalla kaavio nähdään kuin kameran linssin läpi. Prosenttimäärää säädetään askelruudussa. Suurilla arvoilla lähemmät kohteet näyttävät suuremmilta kuin taaemmat."
+
+#. PP8jT
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150
+msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION"
+msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings."
+msgstr "Asetetaan kaavion kierto z-akselin suhteen. Esikatselu vastaa asetuksiin."
+
+#. AyMWn
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:167
+msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Y_ROTATION"
+msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings."
+msgstr "Asetetaan kaavion kierto y-akselin suhteen. Esikatselu vastaa asetuksiin."
+
+#. EGS4B
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:184
+msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_X_ROTATION"
+msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings."
+msgstr "Asetetaan kaavion kierto x-akselin suhteen. Esikatselu vastaa asetuksiin."
+
#. RGQDC
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:95
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_1|tooltip_text"
msgid "Light source 1"
msgstr "Valonlähde 1"
+#. EQb5g
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:100
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_1"
+msgid "Click to enable or disable the specular light source with highlights."
+msgstr "Napsauttamalla sytytetään ja sammutetaan pinnoissa kiiltävä peiliheijastusvalo."
+
#. bwfDH
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:109
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:114
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_2|tooltip_text"
msgid "Light source 2"
msgstr "Valonlähde 2"
+#. jkJM8
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:119
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_2"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Napsauttamalla sytytetään ja sammutetaan pinnoista mattamaisesti heijastuva valo."
+
#. uMVDV
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:123
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:133
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_3|tooltip_text"
msgid "Light source 3"
msgstr "Valonlähde 3"
+#. ZEUk7
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:138
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_3"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Napsauttamalla sytytetään ja sammutetaan pinnoista mattamaisesti heijastuva valo."
+
#. 6CBDG
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:137
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:152
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_4|tooltip_text"
msgid "Light source 4"
msgstr "Valonlähde 4"
+#. X5ZD3
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:157
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_4"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Napsauttamalla sytytetään ja sammutetaan pinnoista mattamaisesti heijastuva valo."
+
#. Hf5Du
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:151
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:171
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_5|tooltip_text"
msgid "Light source 5"
msgstr "Valonlähde 5"
+#. mUPX4
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:176
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_5"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Napsauttamalla sytytetään ja sammutetaan pinnoista mattamaisesti heijastuva valo."
+
#. T7qDZ
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:165
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:190
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_6|tooltip_text"
msgid "Light source 6"
msgstr "Valonlähde 6"
+#. AAkx2
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:195
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_6"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Napsauttamalla sytytetään ja sammutetaan pinnoista mattamaisesti heijastuva valo."
+
#. mSsDD
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:179
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:209
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_7|tooltip_text"
msgid "Light source 7"
msgstr "Valonlähde 7"
+#. Rh9Hz
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:214
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_7"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Napsauttamalla sytytetään ja sammutetaan pinnoista mattamaisesti heijastuva valo."
+
#. wY5CR
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:193
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:228
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_8|tooltip_text"
msgid "Light source 8"
msgstr "Valonlähde 8"
+#. EbsUA
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:233
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_8"
+msgid "Click to enable or disable the uniform light source."
+msgstr "Napsauttamalla sytytetään ja sammutetaan pinnoista mattamaisesti heijastuva valo."
+
+#. DwEDc
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:267
+msgctxt "tp_3D_SceneIllumination|extended_tip|LB_LIGHTSOURCE"
+msgid "Select a color for the selected light source."
+msgstr "Valitaan valonlähteelle väri luettelosta."
+
#. gfdAB
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:237
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:282
msgctxt "tp_3D_SceneIllumination|BTN_LIGHTSOURCE_COLOR|tooltip_text"
msgid "Select a color using the color dialog"
msgstr "Valitse väri värivalitsimen avulla"
-#. XLXEQ
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:261
+#. JnBhP
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:286
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHTSOURCE_COLOR"
+msgid "Select a color using the color dialog."
+msgstr "Käytetään valintaikkunan värikarttaa."
+
+#. mgXyK
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:311
msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE"
-msgid "_Light source"
+msgid "_Light Source"
msgstr "Valonlähde"
+#. WssJA
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:357
+msgctxt "tp_3D_SceneIllumination|extended_tip|LB_AMBIENTLIGHT"
+msgid "Select a color for the ambient light."
+msgstr "Valitaan taustavalon väri luettelosta."
+
#. NpAu7
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:317
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:372
msgctxt "tp_3D_SceneIllumination|BTN_AMBIENT_COLOR|tooltip_text"
msgid "Select a color using the color dialog"
msgstr "Valitse väri värivalitsimen avulla"
-#. QCb7M
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:334
+#. 943Za
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:376
+msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_AMBIENT_COLOR"
+msgid "Select a color using the color dialog."
+msgstr "Käytetään valintaikkunan värikarttaa."
+
+#. LFMGL
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:394
msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT"
-msgid "_Ambient light"
-msgstr "Taustavalo"
+msgid "_Ambient Light"
+msgstr ""
#. snUGf
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:377
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:437
msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
msgid "Light Preview"
msgstr "Valaistuksen esikatselu"
+#. tQBhd
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:495
+msgctxt "tp_3D_SceneIllumination|extended_tip|tp_3D_SceneIllumination"
+msgid "Set the light sources for the 3D view."
+msgstr ""
+
#. XRVrG
#: chart2/uiconfig/ui/tp_AxisPositions.ui:48
msgctxt "tp_AxisPositions|FT_CROSSES_OTHER_AXIS_AT"
@@ -2532,170 +3126,236 @@ msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
msgid "Category"
msgstr "luokassa"
+#. eKYhk
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:71
+msgctxt "tp_AxisPositions|extended_tip|LB_CROSSES_OTHER_AXIS_AT"
+msgid "Select where to cross the other axis: at start, at end, at a specified value, or at a category."
+msgstr "Valitaan leikkauskohta toiselta akselilta: alussa, lopussa, määrätyn arvon kohdalla tai luokassa."
+
+#. FwCEp
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:89
+msgctxt "tp_AxisPositions|extended_tip|EDT_CROSSES_OTHER_AXIS_AT"
+msgid "Enter the value where the axis line should cross the other axis."
+msgstr "Annetaan arvo, missä tämä akseli leikkaa toisen akselin."
+
+#. AnLbY
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:112
+msgctxt "tp_AxisPositions|extended_tip|EDT_CROSSES_OTHER_AXIS_AT_CATEGORY"
+msgid "Select the category where the axis line should cross the other axis."
+msgstr "Valitaan luokka, missä tämä akseli leikkaa toisen akselin."
+
#. VYVhe
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:116
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:131
msgctxt "tp_AxisPositions|CB_AXIS_BETWEEN_CATEGORIES"
msgid "Axis _between categories"
msgstr "Akseli luokkien välissä"
#. bW7T9
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:137
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:152
msgctxt "tp_AxisPositions|TXT_AXIS_LINE"
msgid "Axis Line"
msgstr "Akseliviiva"
#. 5ezBt
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:170
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:185
msgctxt "tp_AxisPositions|RB_ON"
msgid "_On tick marks"
msgstr "Pykälien kohdalle"
+#. FaKJZ
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:194
+msgctxt "tp_AxisPositions|extended_tip|RB_ON"
+msgid "Specifies that the axis is positioned on the first/last tickmarks. This makes the data points visual representation begin/end at the value axis."
+msgstr ""
+
#. gSFeZ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:185
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:205
msgctxt "tp_AxisPositions|RB_BETWEEN"
msgid "_Between tick marks"
msgstr "Pykälien väliin"
+#. BSx2x
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:215
+msgctxt "tp_AxisPositions|extended_tip|RB_BETWEEN"
+msgid "Specifies that the axis is positioned between the tickmarks. This makes the data points visual representation begin/end at a distance from the value axis."
+msgstr ""
+
#. ExBDm
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:207
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:232
msgctxt "tp_AxisPositions|TXT_POSITION"
msgid "Position Axis"
msgstr "Sijoita akseli"
#. 5AGbD
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:248
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:273
msgctxt "tp_AxisPositions|FT_PLACE_LABELS"
msgid "_Place labels"
msgstr "Sijoita selitteet"
#. GDk2L
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:264
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:289
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Near axis"
msgstr "lähelle akselia"
#. ZWQzB
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:265
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:290
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Near axis (other side)"
msgstr "lähelle akselia (toiselle puolelle)"
#. j3GGm
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:266
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:291
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Outside start"
msgstr "ulkopuolelle alkuun"
#. mGDNr
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:267
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:292
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Outside end"
msgstr "ulkopuolelle loppuun"
+#. ChAqv
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:296
+msgctxt "tp_AxisPositions|extended_tip|LB_PLACE_LABELS"
+msgid "Select where to place the labels: near axis, near axis (other side), outside start, or outside end."
+msgstr "Valitaan selitteiden sijoittelu: lähelle akseleita, lähelle akseleita (toiselle puolelle), alun ulkopuolelle tai lopun ulkopuolelle."
+
#. DUNn4
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:291
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:321
msgctxt "tp_AxisPositions|FT_AXIS_LABEL_DISTANCE"
msgid "_Distance"
msgstr "etäisyydelle"
#. Hkjze
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:329
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:359
msgctxt "tp_AxisPositions|TXT_FL_LABELS"
msgid "Labels"
msgstr "Selitteet"
#. YBk4g
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:371
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:401
msgctxt "tp_AxisPositions|FT_MAJOR"
msgid "Major:"
msgstr "Akselimerkit:"
#. G8MEU
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:387
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:417
msgctxt "tp_AxisPositions|FT_MINOR"
msgid "Minor:"
msgstr "Jakoviivat:"
#. UN6Pr
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:401
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:431
msgctxt "tp_AxisPositions|CB_TICKS_INNER"
msgid "_Inner"
msgstr "Sisempi"
+#. DpVNk
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:443
+msgctxt "tp_AxisPositions|extended_tip|CB_TICKS_INNER"
+msgid "Specifies that marks are placed on the inner side of the axis."
+msgstr "Merkinnällä määrätään, että asteikkomerkit ovat akselista sisäänpäin."
+
#. EhLxm
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:419
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:454
msgctxt "tp_AxisPositions|CB_TICKS_OUTER"
msgid "_Outer"
msgstr "Ulompi"
+#. DGWEb
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:466
+msgctxt "tp_AxisPositions|extended_tip|CB_TICKS_OUTER"
+msgid "Specifies that marks are placed on the outer side of the axis."
+msgstr "Merkinnällä määrätään, että asteikkomerkit ovat akselista ulospäin."
+
#. RJXic
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:437
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:477
msgctxt "tp_AxisPositions|CB_MINOR_INNER"
msgid "I_nner"
msgstr "Sisempi"
+#. jbRx3
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:489
+msgctxt "tp_AxisPositions|extended_tip|CB_MINOR_INNER"
+msgid "Specifies that minor interval marks are placed on the inner side of the axis."
+msgstr "Merkinnällä määrätään, että jakoviivat ovat akselista sisäänpäin."
+
#. nBCFJ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:455
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:500
msgctxt "tp_AxisPositions|CB_MINOR_OUTER"
msgid "O_uter"
msgstr "Ulompi"
+#. JAi2f
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:512
+msgctxt "tp_AxisPositions|extended_tip|CB_MINOR_OUTER"
+msgid "Specifies that minor interval marks are placed on the outer side of the axis."
+msgstr "Merkinnällä määrätään, että jakoviivan merkit ovat akselista ulospäin."
+
#. XWuxR
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:487
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:537
msgctxt "tp_AxisPositions|FT_PLACE_TICKS"
msgid "Place _marks"
msgstr "Sijoita merkit"
#. mvGBB
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:503
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:553
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At labels"
msgstr "selitteisiin"
#. dGAYz
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:504
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:554
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At axis"
msgstr "akselille"
#. TJAJB
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:505
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:555
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At axis and labels"
msgstr "akselille ja selitteisiin"
+#. tED2r
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:559
+msgctxt "tp_AxisPositions|extended_tip|LB_PLACE_TICKS"
+msgid "Select where to place the marks: at labels, at axis, or at axis and labels."
+msgstr "Valitaan merkkien sijoittelu: selitteisiin, akselille tai sekä akselille että selitteisiin."
+
#. jK9rf
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:529
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:584
msgctxt "tp_AxisPositions|TXT_FL_TICKS"
msgid "Interval Marks"
msgstr "Akselimerkit"
#. 4Jp7G
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:562
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:617
msgctxt "tp_AxisPositions|CB_MAJOR_GRID"
msgid "Show major _grid"
msgstr "Näytä _pääruudukko"
#. 7c2Hs
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:578
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:633
msgctxt "tp_AxisPositions|CB_MINOR_GRID"
msgid "_Show minor grid"
msgstr "Näytä apuruudukko"
#. Dp5Ar
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:593
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:648
msgctxt "tp_AxisPositions|PB_MAJOR_GRID"
msgid "Mo_re..."
msgstr "Lisää..."
#. k5VQQ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:606
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:661
msgctxt "tp_AxisPositions|PB_MINOR_GRID"
msgid "Mor_e..."
msgstr "Lisää..."
#. 7eDLK
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:626
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:681
msgctxt "tp_AxisPositions|label2"
msgid "Grids"
msgstr "Ruudukot"
@@ -2706,303 +3366,471 @@ msgctxt "tp_ChartType|FT_CAPTION_FOR_WIZARD"
msgid "Choose a Chart Type"
msgstr "Valitse kaaviotyyppi"
+#. wBFXQ
+#: chart2/uiconfig/ui/tp_ChartType.ui:94
+msgctxt "tp_ChartType|extended_tip|subtype"
+msgid "Select a sub type of the basic chart type."
+msgstr "Valitaan kaaviolajin alatyyppi."
+
#. FSf6b
-#: chart2/uiconfig/ui/tp_ChartType.ui:113
+#: chart2/uiconfig/ui/tp_ChartType.ui:119
msgctxt "tp_ChartType|3dlook"
msgid "_3D Look"
msgstr "Kolmiulotteinen ulkoasu"
+#. EB95g
+#: chart2/uiconfig/ui/tp_ChartType.ui:130
+msgctxt "tp_ChartType|extended_tip|3dlook"
+msgid "Enables a 3D look for the data values."
+msgstr "Rasti tarkoittaa kolmiulotteista kaavion esitystä."
+
#. FprGw
-#: chart2/uiconfig/ui/tp_ChartType.ui:132
+#: chart2/uiconfig/ui/tp_ChartType.ui:144
msgctxt "tp_ChartType|3dscheme"
msgid "Simple"
msgstr "Yksinkertainen"
#. pKhfX
-#: chart2/uiconfig/ui/tp_ChartType.ui:133
+#: chart2/uiconfig/ui/tp_ChartType.ui:145
msgctxt "tp_ChartType|3dscheme"
msgid "Realistic"
msgstr "Realistinen"
+#. zZxWG
+#: chart2/uiconfig/ui/tp_ChartType.ui:152
+msgctxt "tp_ChartType|extended_tip|3dscheme"
+msgid "Select the type of 3D look."
+msgstr "Valitaan 3D-ulkoasun tyyppi."
+
#. FxHfq
-#: chart2/uiconfig/ui/tp_ChartType.ui:154
+#: chart2/uiconfig/ui/tp_ChartType.ui:170
msgctxt "tp_ChartType|shapeft"
msgid "Sh_ape"
msgstr "Muoto"
+#. CCA3V
+#: chart2/uiconfig/ui/tp_ChartType.ui:213
+msgctxt "tp_ChartType|extended_tip|shape"
+msgid "Select a shape from the list."
+msgstr "Valitaan pylvään muoto luettelosta."
+
#. G2u4D
-#: chart2/uiconfig/ui/tp_ChartType.ui:215
+#: chart2/uiconfig/ui/tp_ChartType.ui:237
msgctxt "tp_ChartType|stack"
msgid "_Stack series"
msgstr "Päällekkäiset sarjat"
+#. h8wCq
+#: chart2/uiconfig/ui/tp_ChartType.ui:245
+msgctxt "tp_ChartType|extended_tip|stack"
+msgid "Displays stacked series for Line charts."
+msgstr "Viivakaavion sarjat näkyvät kumulatiivisina."
+
#. KfD2L
-#: chart2/uiconfig/ui/tp_ChartType.ui:239
+#: chart2/uiconfig/ui/tp_ChartType.ui:266
msgctxt "tp_ChartType|ontop"
msgid "On top"
msgstr "Päällekkäin"
+#. DY854
+#: chart2/uiconfig/ui/tp_ChartType.ui:275
+msgctxt "tp_ChartType|extended_tip|ontop"
+msgid "Stack series display values on top of each other."
+msgstr "Päällekkäiset sarjat summataan arvoina päällekkäin."
+
#. C7JxK
-#: chart2/uiconfig/ui/tp_ChartType.ui:254
+#: chart2/uiconfig/ui/tp_ChartType.ui:286
msgctxt "tp_ChartType|percent"
msgid "Percent"
msgstr "Prosenttia"
+#. EVNAR
+#: chart2/uiconfig/ui/tp_ChartType.ui:295
+msgctxt "tp_ChartType|extended_tip|percent"
+msgid "Stack series display values as percent."
+msgstr "Päällekkäiset sarjat summataan prosentteina."
+
#. ijuPy
-#: chart2/uiconfig/ui/tp_ChartType.ui:269
+#: chart2/uiconfig/ui/tp_ChartType.ui:306
msgctxt "tp_ChartType|deep"
msgid "Deep"
msgstr "Syvä"
#. etF2p
-#: chart2/uiconfig/ui/tp_ChartType.ui:298
+#: chart2/uiconfig/ui/tp_ChartType.ui:335
msgctxt "tp_ChartType|linetypeft"
msgid "_Line type"
msgstr "Viivatyyppi"
#. RbyB4
-#: chart2/uiconfig/ui/tp_ChartType.ui:312
+#: chart2/uiconfig/ui/tp_ChartType.ui:349
msgctxt "tp_ChartType|linetype"
msgid "Straight"
msgstr "Suora"
#. dG5tv
-#: chart2/uiconfig/ui/tp_ChartType.ui:313
+#: chart2/uiconfig/ui/tp_ChartType.ui:350
msgctxt "tp_ChartType|linetype"
msgid "Smooth"
msgstr "Pyöristetty"
#. uHHpu
-#: chart2/uiconfig/ui/tp_ChartType.ui:314
+#: chart2/uiconfig/ui/tp_ChartType.ui:351
msgctxt "tp_ChartType|linetype"
msgid "Stepped"
msgstr "Porrastettu"
+#. G3eDR
+#: chart2/uiconfig/ui/tp_ChartType.ui:355
+msgctxt "tp_ChartType|extended_tip|linetype"
+msgid "Choose the type of line to draw."
+msgstr "Valitse piirrettävän viivan tyyppi."
+
#. JqNUv
-#: chart2/uiconfig/ui/tp_ChartType.ui:324
+#: chart2/uiconfig/ui/tp_ChartType.ui:366
msgctxt "tp_ChartType|properties"
msgid "Properties..."
msgstr "Ominaisuudet..."
+#. EnymX
+#: chart2/uiconfig/ui/tp_ChartType.ui:372
+msgctxt "tp_ChartType|extended_tip|properties"
+msgid "Opens a dialog to set the line or curve properties."
+msgstr "Avataan valintaikkuna, jossa asetellaan viivan tai käyrän ominaisuuksia."
+
#. KzGZQ
-#: chart2/uiconfig/ui/tp_ChartType.ui:342
+#: chart2/uiconfig/ui/tp_ChartType.ui:389
msgctxt "tp_ChartType|sort"
msgid "_Sort by X values"
msgstr "Järjestä X-arvojen mukaan"
+#. tbgi3
+#: chart2/uiconfig/ui/tp_ChartType.ui:397
+msgctxt "tp_ChartType|extended_tip|sort"
+msgid "Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram."
+msgstr "XY-kaavion pisteet piirretään x-arvojen mukaan nousevassa järjestyksessä, riippumatta alkuperäisestä järjestyksestä."
+
#. CmGat
-#: chart2/uiconfig/ui/tp_ChartType.ui:363
+#: chart2/uiconfig/ui/tp_ChartType.ui:415
msgctxt "tp_ChartType|nolinesft"
msgid "_Number of lines"
msgstr "Viivojen lukumäärä"
+#. bBgDJ
+#: chart2/uiconfig/ui/tp_ChartType.ui:434
+msgctxt "tp_ChartType|extended_tip|nolines"
+msgid "Set the number of lines for the Column and Line chart type."
+msgstr "Asetetaan piirrettävien viivakuvaajien määrä Pylväs ja viiva -kaaviossa."
+
+#. M2sxB
+#: chart2/uiconfig/ui/tp_ChartType.ui:503
+msgctxt "tp_ChartType|extended_tip|charttype"
+msgid "Select a basic chart type."
+msgstr "Valitaan kaaviolaji tai -tyyppi."
+
#. qRkoY
#: chart2/uiconfig/ui/tp_DataLabel.ui:37
msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Show value as _number"
msgstr "Näytä arvo lukuna"
+#. uGdoi
+#: chart2/uiconfig/ui/tp_DataLabel.ui:46
+msgctxt "tp_DataLabel|extended_tip|CB_VALUE_AS_NUMBER"
+msgid "Displays the absolute values of the data points."
+msgstr "Arvopisteet esitetään absoluuttisina arvoina."
+
#. wRisc
-#: chart2/uiconfig/ui/tp_DataLabel.ui:52
+#: chart2/uiconfig/ui/tp_DataLabel.ui:57
msgctxt "tp_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Show value as _percentage"
msgstr "Näytä arvo prosenttiosuutena"
+#. FcaPo
+#: chart2/uiconfig/ui/tp_DataLabel.ui:66
+msgctxt "tp_DataLabel|extended_tip|CB_VALUE_AS_PERCENTAGE"
+msgid "Displays the percentage of the data points in each column."
+msgstr "Esitetään arvopisteille prosenttiosuus kussakin sarakkeessa."
+
#. gyqnC
-#: chart2/uiconfig/ui/tp_DataLabel.ui:67
+#: chart2/uiconfig/ui/tp_DataLabel.ui:77
msgctxt "tp_DataLabel|CB_CATEGORY"
msgid "Show _category"
msgstr "Näytä luokka"
+#. EZXZX
+#: chart2/uiconfig/ui/tp_DataLabel.ui:86
+msgctxt "tp_DataLabel|extended_tip|CB_CATEGORY"
+msgid "Shows the data point text labels."
+msgstr "Esitetään arvopisteiden otsikkotekstit."
+
#. kce65
-#: chart2/uiconfig/ui/tp_DataLabel.ui:82
+#: chart2/uiconfig/ui/tp_DataLabel.ui:97
msgctxt "tp_DataLabel|CB_SYMBOL"
msgid "Show _legend key"
msgstr "Näytä seliteruutu"
+#. Bm8gp
+#: chart2/uiconfig/ui/tp_DataLabel.ui:106
+msgctxt "tp_DataLabel|extended_tip|CB_SYMBOL"
+msgid "Displays the legend icons next to each data point label."
+msgstr "Esitetään selitekuvake kunkin arvopisteotsikon vieressä"
+
#. K3uFN
-#: chart2/uiconfig/ui/tp_DataLabel.ui:97
+#: chart2/uiconfig/ui/tp_DataLabel.ui:117
msgctxt "tp_DataLabel|CB_WRAP_TEXT"
msgid "Auto text _wrap"
msgstr "Automaattinen tekstin rivitys"
#. tgNDD
-#: chart2/uiconfig/ui/tp_DataLabel.ui:112
+#: chart2/uiconfig/ui/tp_DataLabel.ui:132
msgctxt "tp_DataLabel|PB_NUMBERFORMAT"
msgid "Number _format..."
msgstr "Luvun muoto..."
+#. nzq24
+#: chart2/uiconfig/ui/tp_DataLabel.ui:140
+msgctxt "tp_DataLabel|extended_tip|PB_NUMBERFORMAT"
+msgid "Opens a dialog to select the number format."
+msgstr "Numeeristen arvojen muotoiluun avataan valintaikkuna."
+
#. PYC2b
-#: chart2/uiconfig/ui/tp_DataLabel.ui:126
+#: chart2/uiconfig/ui/tp_DataLabel.ui:151
msgctxt "tp_DataLabel|PB_PERCENT_NUMBERFORMAT"
msgid "Percentage f_ormat..."
msgstr "Prosenttiosuuden muoto..."
+#. 3wD3x
+#: chart2/uiconfig/ui/tp_DataLabel.ui:159
+msgctxt "tp_DataLabel|extended_tip|PB_PERCENT_NUMBERFORMAT"
+msgid "Opens a dialog to select the percentage format."
+msgstr "Prosenttiluvun muotoiluun avataan valintaikkuna."
+
#. gFELD
-#: chart2/uiconfig/ui/tp_DataLabel.ui:142
+#: chart2/uiconfig/ui/tp_DataLabel.ui:172
msgctxt "tp_DataLabel|CT_LABEL_DIAL"
msgid "ABCD"
msgstr "ABCD"
#. GqA8C
-#: chart2/uiconfig/ui/tp_DataLabel.ui:161
+#: chart2/uiconfig/ui/tp_DataLabel.ui:191
msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "Erotinmerkki"
#. oPhGH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:178
+#: chart2/uiconfig/ui/tp_DataLabel.ui:208
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "Välilyönti"
#. fR4fG
-#: chart2/uiconfig/ui/tp_DataLabel.ui:179
+#: chart2/uiconfig/ui/tp_DataLabel.ui:209
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "Pilkku"
#. 5baF4
-#: chart2/uiconfig/ui/tp_DataLabel.ui:180
+#: chart2/uiconfig/ui/tp_DataLabel.ui:210
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "Puolipiste"
#. 8MGkQ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:181
+#: chart2/uiconfig/ui/tp_DataLabel.ui:211
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "Rivinvaihto"
#. bpmiF
-#: chart2/uiconfig/ui/tp_DataLabel.ui:182
+#: chart2/uiconfig/ui/tp_DataLabel.ui:212
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "Piste"
+#. jjR8u
+#: chart2/uiconfig/ui/tp_DataLabel.ui:216
+msgctxt "tp_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
+msgid "Selects the separator between multiple text strings for the same object."
+msgstr "Valitaan erotinmerkki, kun yhdessä otsikossa on useampi merkkijono."
+
#. 2MNGz
-#: chart2/uiconfig/ui/tp_DataLabel.ui:207
+#: chart2/uiconfig/ui/tp_DataLabel.ui:242
msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "Sijoitus"
#. L2MYb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:224
+#: chart2/uiconfig/ui/tp_DataLabel.ui:259
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "Paras sovitus"
#. ba7eW
-#: chart2/uiconfig/ui/tp_DataLabel.ui:225
+#: chart2/uiconfig/ui/tp_DataLabel.ui:260
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "Keskelle"
#. nW5vs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:226
+#: chart2/uiconfig/ui/tp_DataLabel.ui:261
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Yläpuolelle"
#. gW9Aa
-#: chart2/uiconfig/ui/tp_DataLabel.ui:227
+#: chart2/uiconfig/ui/tp_DataLabel.ui:262
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Ylös vasemmalle"
#. UQBcJ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:228
+#: chart2/uiconfig/ui/tp_DataLabel.ui:263
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Vasemmalle"
#. CVw6x
-#: chart2/uiconfig/ui/tp_DataLabel.ui:229
+#: chart2/uiconfig/ui/tp_DataLabel.ui:264
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Alhaalla vasemmalla"
#. EF7Qb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:230
+#: chart2/uiconfig/ui/tp_DataLabel.ui:265
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Alapuolelle"
#. bdAYf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:231
+#: chart2/uiconfig/ui/tp_DataLabel.ui:266
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Alas oikealle"
#. kHGEs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:232
+#: chart2/uiconfig/ui/tp_DataLabel.ui:267
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Oikealle"
#. GFkmP
-#: chart2/uiconfig/ui/tp_DataLabel.ui:233
+#: chart2/uiconfig/ui/tp_DataLabel.ui:268
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Ylös oikealle"
#. KFZhx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:234
+#: chart2/uiconfig/ui/tp_DataLabel.ui:269
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Sisäpuolelle"
#. BJm6w
-#: chart2/uiconfig/ui/tp_DataLabel.ui:235
+#: chart2/uiconfig/ui/tp_DataLabel.ui:270
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Ulkopuolelle"
#. XGkMi
-#: chart2/uiconfig/ui/tp_DataLabel.ui:236
+#: chart2/uiconfig/ui/tp_DataLabel.ui:271
#, fuzzy
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Juureen"
+#. vq2Bf
+#: chart2/uiconfig/ui/tp_DataLabel.ui:275
+msgctxt "tp_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
+msgid "Selects the placement of data labels relative to the objects."
+msgstr "Valitaan arvojen otsikoiden sijoittelu objektiin nähden."
+
#. PNGYD
-#: chart2/uiconfig/ui/tp_DataLabel.ui:255
+#: chart2/uiconfig/ui/tp_DataLabel.ui:295
msgctxt "tp_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
msgid "Number Format for Percentage Value"
msgstr "Luvun muoto prosenttiarvolle"
#. 3BZrx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:273
+#: chart2/uiconfig/ui/tp_DataLabel.ui:313
msgctxt "tp_DataLabel|label1"
msgid "Text Attributes"
msgstr "Tekstin ominaisuudet"
+#. avLCL
+#: chart2/uiconfig/ui/tp_DataLabel.ui:357
+msgctxt "tp_DataLabel|extended_tip|CT_DIAL"
+msgid "Click in the dial to set the text orientation for the data labels."
+msgstr "Selitetekstien suunta voidaan asettaa kehää napsauttamalla."
+
+#. eKwUH
+#: chart2/uiconfig/ui/tp_DataLabel.ui:377
+msgctxt "tp_DataLabel|extended_tip|NF_LABEL_DEGREES"
+msgid "Enter the counterclockwise rotation angle for the data labels."
+msgstr "Annetaan aineistoselitteiden vastapäiväinen kiertokulma."
+
#. VArif
-#: chart2/uiconfig/ui/tp_DataLabel.ui:341
+#: chart2/uiconfig/ui/tp_DataLabel.ui:391
msgctxt "tp_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "Astetta"
#. zdP7E
-#: chart2/uiconfig/ui/tp_DataLabel.ui:366
+#: chart2/uiconfig/ui/tp_DataLabel.ui:416
msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Tekstin kirjoitussuunta"
+#. MYXZo
+#: chart2/uiconfig/ui/tp_DataLabel.ui:433
+msgctxt "tp_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Määritetään tekstin suunta kappaleessa, jossa käytetään laajennettua tekstin asettelua (CTL)."
+
#. PKnKk
-#: chart2/uiconfig/ui/tp_DataLabel.ui:403
+#: chart2/uiconfig/ui/tp_DataLabel.ui:458
msgctxt "tp_DataLabel|label2"
msgid "Rotate Text"
msgstr "Kierrä tekstiä"
+#. wBzcx
+#: chart2/uiconfig/ui/tp_DataLabel.ui:491
+msgctxt "tp_DataLabel|CB_CUSTOM_LEADER_LINES"
+msgid "_Connect displaced data labels to data points"
+msgstr ""
+
+#. BXobT
+#: chart2/uiconfig/ui/tp_DataLabel.ui:500
+msgctxt "tp_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
+msgid "Draws a line connecting the data labels to the data points"
+msgstr ""
+
+#. MBFBB
+#: chart2/uiconfig/ui/tp_DataLabel.ui:518
+msgctxt "tp_DataLabel|label3"
+msgid "Leader Lines"
+msgstr ""
+
+#. iDheE
+#: chart2/uiconfig/ui/tp_DataLabel.ui:534
+msgctxt "tp_DataLabel|extended_tip|tp_DataLabel"
+msgid "Opens the Data Labels dialog, which enables you to set the data labels."
+msgstr "Avataan Arvopisteiden otsikot -valintaikkuna, jossa voidaan asetella arvojen otsikot."
+
#. rXE7B
#: chart2/uiconfig/ui/tp_DataPointOption.ui:41
msgctxt "tp_DataPointOption|CB_LEGEND_ENTRY_HIDDEN"
msgid "Hide legend entry"
msgstr "Piilota selitemerkintä"
+#. k2s9H
+#: chart2/uiconfig/ui/tp_DataPointOption.ui:49
+msgctxt "tp_DataPointOption|extended_tip|CB_LEGEND_ENTRY_HIDDEN"
+msgid "Do not show legend entry for the selected data series or data point."
+msgstr ""
+
#. DUQwA
-#: chart2/uiconfig/ui/tp_DataPointOption.ui:62
+#: chart2/uiconfig/ui/tp_DataPointOption.ui:67
msgctxt "tp_DataPointOption|label1"
msgid "Legend Entry"
msgstr "Selitemerkintä"
@@ -3020,61 +3848,121 @@ msgid "Select data range"
msgstr "Valitse tietoalue"
#. 2iNp6
-#: chart2/uiconfig/ui/tp_DataSource.ui:60
+#: chart2/uiconfig/ui/tp_DataSource.ui:70
msgctxt "tp_DataSource|FT_SERIES"
msgid "Data _series:"
msgstr "Arvosarjat:"
+#. oFoeg
+#: chart2/uiconfig/ui/tp_DataSource.ui:113
+msgctxt "tp_DataSource|extended_tip|LB_SERIES"
+msgid "Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click Add to insert a new series into the list after the selected entry."
+msgstr "Luetteloruutu näyttää kaikki kaavion arvosarjat. Kun rivi valitaan, voidaan sen arvosarjaa tarkastella ja muokata. Lisää-painikkeella lisätään uusi arvosarja valitun rivin alapuolelle."
+
#. rqABh
-#: chart2/uiconfig/ui/tp_DataSource.ui:118
+#: chart2/uiconfig/ui/tp_DataSource.ui:133
msgctxt "tp_DataSource|BTN_ADD"
msgid "_Add"
msgstr "Lisää"
+#. AExBB
+#: chart2/uiconfig/ui/tp_DataSource.ui:141
+msgctxt "tp_DataSource|extended_tip|BTN_ADD"
+msgid "Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type."
+msgstr "Painikkeella lisätään uusi rivi valitun rivin alle Arvosarjat-luettelossa. Valitun rivin tyyppi kopioituu uuteen arvosarjaan."
+
#. dCyXA
-#: chart2/uiconfig/ui/tp_DataSource.ui:139
+#: chart2/uiconfig/ui/tp_DataSource.ui:159
msgctxt "tp_DataSource|BTN_UP-atkobject"
msgid "Up"
msgstr "Ylöspäin"
+#. GTEK3
+#: chart2/uiconfig/ui/tp_DataSource.ui:160
+msgctxt "tp_DataSource|extended_tip|BTN_UP"
+msgid "Moves up the selected entry in the Data Series list."
+msgstr "Painikkeella siirretään valittua riviä ylöspäin Arvosarjat-luettelossa."
+
#. 3v9x2
-#: chart2/uiconfig/ui/tp_DataSource.ui:150
+#: chart2/uiconfig/ui/tp_DataSource.ui:171
msgctxt "tp_DataSource|BTN_REMOVE"
msgid "_Remove"
msgstr "Poista"
+#. BDDwm
+#: chart2/uiconfig/ui/tp_DataSource.ui:179
+msgctxt "tp_DataSource|extended_tip|BTN_REMOVE"
+msgid "Removes the selected entry from the Data Series list."
+msgstr "Painikkeella poistetaan valittu rivi Arvosarjat-luettelosta."
+
#. MkZNf
-#: chart2/uiconfig/ui/tp_DataSource.ui:171
+#: chart2/uiconfig/ui/tp_DataSource.ui:197
msgctxt "tp_DataSource|BTN_DOWN-atkobject"
msgid "Down"
msgstr "Alaspäin"
+#. 558EK
+#: chart2/uiconfig/ui/tp_DataSource.ui:198
+msgctxt "tp_DataSource|extended_tip|BTN_DOWN"
+msgid "Moves down the selected entry in the Data Series list."
+msgstr "Painikkeella siirretään valittua riviä alaspäin Arvosarjat-luettelossa."
+
#. mC5Ge
-#: chart2/uiconfig/ui/tp_DataSource.ui:211
+#: chart2/uiconfig/ui/tp_DataSource.ui:238
msgctxt "tp_DataSource|FT_ROLE"
msgid "_Data ranges:"
msgstr "Tietoalueet:"
+#. ZB6Dv
+#: chart2/uiconfig/ui/tp_DataSource.ui:291
+msgctxt "tp_DataSource|extended_tip|LB_ROLE"
+msgid "Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address."
+msgstr "Tietoalueet-luetteloruudussa nähdään kaikki Arvosarjat-luetteloruudussa valitun rivin osatietoalueet. Kustakin osatietoalueesta näkyy sen osanimi ja lähdealueen viite eli osoite."
+
#. qRMfs
-#: chart2/uiconfig/ui/tp_DataSource.ui:274
+#: chart2/uiconfig/ui/tp_DataSource.ui:306
msgctxt "tp_DataSource|FT_RANGE"
msgid "Ran_ge for %VALUETYPE"
msgstr "Alue arvoille %VALUETYPE"
+#. M2BSw
+#: chart2/uiconfig/ui/tp_DataSource.ui:330
+msgctxt "tp_DataSource|extended_tip|EDT_RANGE"
+msgid "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Kentässä näkyy Tietoalueet-valintaluettelon rivilläkin näkyvä osoite eli viite. Sitä voidaan vaihtaa kirjoittamalla kenttään tai valitsemalla alue vetämällä asiakirjassa. Calcissa napsautetaan Valitse tietoalueet -painiketta, jolloin valintaikkuna kutistuu, ja vedetään sitten tietoalueen valinta."
+
+#. CwKet
+#: chart2/uiconfig/ui/tp_DataSource.ui:347
+msgctxt "tp_DataSource|extended_tip|IMB_RANGE_MAIN"
+msgid "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Kentässä näkyy Tietoalueet-valintaluettelon rivilläkin näkyvä osoite eli viite. Sitä voidaan vaihtaa kirjoittamalla kenttään tai valitsemalla alue vetämällä asiakirjassa. Calcissa napsautetaan Valitse tietoalueet -painiketta, jolloin valintaikkuna kutistuu, ja vedetään sitten tietoalueen valinta."
+
#. FX2CF
-#: chart2/uiconfig/ui/tp_DataSource.ui:329
+#: chart2/uiconfig/ui/tp_DataSource.ui:371
msgctxt "tp_DataSource|FT_CATEGORIES"
msgid "_Categories"
msgstr "Luokat"
#. EiwXn
-#: chart2/uiconfig/ui/tp_DataSource.ui:343
+#: chart2/uiconfig/ui/tp_DataSource.ui:385
msgctxt "tp_DataSource|FT_DATALABELS"
msgid "Data _labels"
msgstr "Arvopisteiden otsikot"
+#. ogTbE
+#: chart2/uiconfig/ui/tp_DataSource.ui:414
+msgctxt "tp_DataSource|extended_tip|EDT_CATEGORIES"
+msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Kentässä näkyy luokkanimien lähdetietoalueen viite (teksti näkyy x-akselilla luokitelluissa kaaviossa). XY-kaaviossa, kentässä viitataan arvopisteiden otsikoihin. Valintaikkuna kutistaminen aluevalinnan ajaksi Calcissa tapahtuu napsauttamalla Valitse tietoalue -painiketta."
+
+#. EYFEo
+#: chart2/uiconfig/ui/tp_DataSource.ui:431
+msgctxt "tp_DataSource|extended_tip|IMB_RANGE_CAT"
+msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Kentässä näkyy luokkanimien lähdetietoalueen viite (teksti näkyy x-akselilla luokitelluissa kaaviossa). XY-kaaviossa, kentässä viitataan arvopisteiden otsikoihin. Valintaikkuna kutistaminen aluevalinnan ajaksi Calcissa tapahtuu napsauttamalla Valitse tietoalue -painiketta."
+
#. YwALA
-#: chart2/uiconfig/ui/tp_DataSource.ui:416
+#: chart2/uiconfig/ui/tp_DataSource.ui:468
msgctxt "tp_DataSource|FT_CAPTION_FOR_WIZARD"
msgid "Customize Data Ranges for Individual Data Series"
msgstr "Mukauta yksittäisten arvosarjojen tietoalueita"
@@ -3085,128 +3973,224 @@ msgctxt "tp_ErrorBars|RB_NONE"
msgid "_None"
msgstr "Ei mitään"
+#. YVhm9
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:68
+msgctxt "tp_ErrorBars|extended_tip|RB_NONE"
+msgid "Does not show any error bars."
+msgstr ""
+
#. Cq44D
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:75
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:80
msgctxt "tp_ErrorBars|RB_CONST"
msgid "_Constant Value"
msgstr "Vakioarvo"
+#. Aetuh
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:91
+msgctxt "tp_ErrorBars|extended_tip|RB_CONST"
+msgid "Displays constant values that you specify in the Parameters area."
+msgstr ""
+
#. Njqok
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:93
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:103
msgctxt "tp_ErrorBars|RB_PERCENT"
msgid "_Percentage"
msgstr "Prosenttiosuus"
+#. kqgrm
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:114
+msgctxt "tp_ErrorBars|extended_tip|RB_PERCENT"
+msgid "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area."
+msgstr ""
+
+#. qCQY8
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:141
+msgctxt "tp_ErrorBars|extended_tip|RB_FUNCTION"
+msgid "Select a function to calculate the error bars."
+msgstr "Valitaan funktio, jolla lasketaan esitettävän vaihteluvälin jana."
+
#. GnXao
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:136
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:156
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Standard Error"
msgstr "Keskivirhe"
#. SQ3rE
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:137
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:157
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Standard Deviation"
msgstr "Keskihajonta"
#. GagXt
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:138
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:158
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Variance"
msgstr "Varianssi"
#. Siyxd
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:139
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:159
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Error Margin"
msgstr "Virhemarginaali"
+#. j6oTg
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:163
+msgctxt "tp_ErrorBars|extended_tip|LB_FUNCTION"
+msgid "Select a function to calculate the error bars."
+msgstr "Valitaan funktio, jolla lasketaan esitettävän vaihteluvälin jana."
+
#. AbhAQ
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:157
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:182
msgctxt "tp_ErrorBars|RB_RANGE"
msgid "Cell _Range"
msgstr "Solualue"
+#. x3uW3
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:193
+msgctxt "tp_ErrorBars|extended_tip|RB_RANGE"
+msgid "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
+msgstr "Napsautetaan ensin Solualue-valintanappia ja sitten määritetään solualueet, mistä vaihteluarvot ylös- ja alaspäin otetaan."
+
#. 9Y8Vo
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:181
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:211
msgctxt "tp_ErrorBars|label1"
msgid "Error Category"
msgstr "Virheluokka"
#. q8qXd
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:215
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:245
msgctxt "tp_ErrorBars|RB_BOTH"
msgid "Positive _and Negative"
msgstr "Positiivinen ja negatiivinen"
+#. LDszs
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:256
+msgctxt "tp_ErrorBars|extended_tip|RB_BOTH"
+msgid "Shows positive and negative error bars."
+msgstr "Esitetään virhejanat sekä ylä-että alarajoille."
+
#. 6F78D
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:232
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:267
msgctxt "tp_ErrorBars|RB_POSITIVE"
msgid "Pos_itive"
msgstr "Positiivinen"
+#. oSnnp
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:278
+msgctxt "tp_ErrorBars|extended_tip|RB_POSITIVE"
+msgid "Shows only positive error bars."
+msgstr "Esitetään virhejanat vain ylärajoille."
+
#. jdFbj
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:249
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:289
msgctxt "tp_ErrorBars|RB_NEGATIVE"
msgid "Ne_gative"
msgstr "Negatiivinen"
+#. DvqJN
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:300
+msgctxt "tp_ErrorBars|extended_tip|RB_NEGATIVE"
+msgid "Shows only negative error bars."
+msgstr "Esitetään virhejanat vain alarajoille."
+
#. D4Aou
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:305
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:350
msgctxt "tp_ErrorBars|label2"
msgid "Error Indicator"
msgstr "Virheilmaisin"
#. haTNd
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:353
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:398
msgctxt "tp_ErrorBars|FT_POSITIVE"
msgid "P_ositive (+)"
msgstr "Positiivinen (+)"
+#. 7bDeP
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:416
+msgctxt "tp_ErrorBars|extended_tip|MF_POSITIVE"
+msgid "Enter the value to add to the displayed value as the positive error value."
+msgstr "Kenttään kirjataan luku, joka lisätään esitettyyn arvoon vaihteluvälin ylärajan kuvaamiseksi."
+
+#. D5XCD
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:434
+msgctxt "tp_ErrorBars|extended_tip|ED_RANGE_POSITIVE"
+msgid "Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet."
+msgstr "Annetaan osoitealue, josta saadaan vaihtelupoikkeamille ylärajat. Valitse tietoalue -painike kutistaa ikkunan ja sallii aluevalinnan hiirellä."
+
#. rGBRC
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:394
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:449
msgctxt "tp_ErrorBars|IB_RANGE_POSITIVE|tooltip_text"
msgid "Select data range"
msgstr "Valitse tietoalue"
+#. QYRko
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:453
+msgctxt "tp_ErrorBars|extended_tip|IB_RANGE_POSITIVE"
+msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
+msgstr "Painikkeella kutistetaan ensin ikkuna, sitten valitaan hiirellä solualue laskentataulukosta. Painikkeen napsautus jälleen ja valintaikkuna palautuu entiseen kokoonsa (valittu solualue kentässä näkyen)."
+
#. C5ZdQ
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:419
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:479
msgctxt "tp_ErrorBars|FT_NEGATIVE"
msgid "_Negative (-)"
msgstr "Negatiivinen (-)"
+#. TAAD2
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:497
+msgctxt "tp_ErrorBars|extended_tip|MF_NEGATIVE"
+msgid "Enter the value to subtract from the displayed value as the negative error value."
+msgstr "Annetaan positiivinen luku, joka vähennetään esitetystä arvosta vaihteluvälin alarajan kuvaamiseksi."
+
+#. S8d3Y
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:514
+msgctxt "tp_ErrorBars|extended_tip|ED_RANGE_NEGATIVE"
+msgid "Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet."
+msgstr "Annetaan osoitealue, josta saadaan vaihtelupoikkeamille alarajat. Valitse tietoalue -painike kutistaa ikkunan ja sallii aluevalinnan hiirellä."
+
#. EVG7h
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:459
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:529
msgctxt "tp_ErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
msgid "Select data range"
msgstr "Valitse tietoalue"
+#. oEACZ
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:533
+msgctxt "tp_ErrorBars|extended_tip|IB_RANGE_NEGATIVE"
+msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
+msgstr "Painikkeella kutistetaan ensin ikkuna, sitten valitaan hiirellä solualue laskentataulukosta. Painikkeen napsautus jälleen ja valintaikkuna palautuu entiseen kokoonsa (valittu solualue kentässä näkyen)."
+
#. wdsax
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:477
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:552
msgctxt "tp_ErrorBars|CB_SYN_POS_NEG"
msgid "Same value for both"
msgstr "Sama arvo molemmissa"
+#. DvgLw
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:561
+msgctxt "tp_ErrorBars|extended_tip|CB_SYN_POS_NEG"
+msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically."
+msgstr ""
+
#. BEj3C
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:499
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:579
msgctxt "tp_ErrorBars|label3"
msgid "Parameters"
msgstr "Parametrit"
#. XxRKD
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:516
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:596
msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
msgid "Select Range for Positive Error Bars"
msgstr "Valitse alue positiivisille virhepalkeille"
#. FXjsk
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:527
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:607
msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
msgid "Select Range for Negative Error Bars"
msgstr "Valitse alue negatiivisille virhepalkeille"
#. AAfgS
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:538
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:618
msgctxt "tp_ErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
msgstr "Arvopistetaulukosta"
@@ -3217,50 +4201,86 @@ msgctxt "tp_LegendPosition|left"
msgid "_Left"
msgstr "Vasen"
+#. 98N4N
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:39
+msgctxt "tp_LegendPosition|extended_tip|left"
+msgid "Positions the legend at the left of the chart."
+msgstr "Asemoi selitteen vasemmalle."
+
#. WGGa8
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:45
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:50
msgctxt "tp_LegendPosition|right"
msgid "_Right"
msgstr "Oikea"
+#. BgNsc
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:60
+msgctxt "tp_LegendPosition|extended_tip|right"
+msgid "Positions the legend at the right of the chart."
+msgstr "Asemoi selitteen oikealle."
+
#. aURZs
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:61
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:71
msgctxt "tp_LegendPosition|top"
msgid "_Top"
msgstr "Yläreuna"
+#. GppCU
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:81
+msgctxt "tp_LegendPosition|extended_tip|top"
+msgid "Positions the legend at the top of the chart."
+msgstr "Asemoi selitteen kaavion yläreunaan."
+
#. 9WgFV
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:77
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:92
msgctxt "tp_LegendPosition|bottom"
msgid "_Bottom"
msgstr "Alareuna"
+#. dvBdX
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:102
+msgctxt "tp_LegendPosition|extended_tip|bottom"
+msgid "Positions the legend at the bottom of the chart."
+msgstr "Asemoi selitteen kaavion alareunaan."
+
#. z84pQ
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:99
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:119
msgctxt "tp_LegendPosition|TXT_POSITION"
msgid "Position"
msgstr "Sijainti"
#. 6teoB
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:134
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:154
msgctxt "tp_LegendPosition|FT_LEGEND_TEXTDIR"
msgid "Te_xt direction"
msgstr "Tekstin kirjoitussuunta"
+#. PSPoQ
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:170
+msgctxt "tp_LegendPosition|extended_tip|LB_LEGEND_TEXTDIR"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Määritetään tekstin suunta kappaleessa, jossa käytetään laajennettua tekstin asettelua (CTL)."
+
#. sUDkC
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:163
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:188
msgctxt "tp_LegendPosition|TXT_ORIENTATION"
msgid "Text Orientation"
msgstr "Tekstin asento"
#. VsH8A
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:196
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:221
msgctxt "tp_LegendPosition|CB_NO_OVERLAY"
msgid "Show the legend without overlapping the chart"
msgstr "Älä aseta selitettä kaavion päälle"
+#. yi8AX
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:230
+msgctxt "tp_LegendPosition|extended_tip|CB_NO_OVERLAY"
+msgid "Specifies whether the legend should overlap the chart."
+msgstr ""
+
#. 82yue
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:218
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:248
msgctxt "tp_LegendPosition|TXT_OVERLAY"
msgid "Overlay"
msgstr ""
@@ -3271,32 +4291,50 @@ msgctxt "tp_PolarOptions|CB_CLOCKWISE"
msgid "_Clockwise direction"
msgstr "Myötäpäivään"
+#. GikR7
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:39
+msgctxt "tp_PolarOptions|extended_tip|CB_CLOCKWISE"
+msgid "The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the Clockwise direction checkbox to draw the pieces in opposite direction."
+msgstr "Sektoriosat on järjestetty ympyräkaavioissa oletuksena vastapäivään. Rasti Myötäpäivään-valintaruudussa vaihtaa kiertosuunnan."
+
#. ATHCu
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:45
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:50
msgctxt "tp_PolarOptions|label1"
msgid "Orientation"
msgstr "Asento"
+#. mEJCE
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:90
+msgctxt "tp_PolarOptions|extended_tip|CT_ANGLE_DIAL"
+msgid "Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position."
+msgstr "Vetämällä pientä pistettä pitkin asteikkoympyrää tai napsauttamalla ympyrässä säädetään ympyrä- ja rengaskaavioiden alkukulma. Se on ensimmäisen sektorin alkukohdalle matemaattisesti esitetty suunta. Arvolla 90 astetta ensimmäinen sektorin piirtäminen alkaa klo 12 suunnasta. Arvolla 0 astetta aloitetaan klo 3 suunnasta."
+
+#. EEVTg
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:109
+msgctxt "tp_PolarOptions|extended_tip|NF_STARTING_ANGLE"
+msgid "Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value."
+msgstr "Annetaan aloituskulma 0 ja 359 asteen väliltä. Nuolipainikkeita napsauttamallakin voidaan näkyvää arvoa muuttaa."
+
#. prqEa
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:108
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:123
msgctxt "tp_PolarOptions|FT_ROTATION_DEGREES"
msgid "_Degrees"
msgstr "Astetta"
#. iHLKn
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:127
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:142
msgctxt "tp_PolarOptions|label2"
msgid "Starting Angle"
msgstr "Aloituskulma"
#. 5zEew
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:155
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:170
msgctxt "tp_PolarOptions|CB_INCLUDE_HIDDEN_CELLS_POLAR"
msgid "Include _values from hidden cells"
msgstr "Piirrä arvot myös piilotetuista soluista"
#. F5FTp
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:170
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:185
msgctxt "tp_PolarOptions|label3"
msgid "Plot Options"
msgstr "Piirtoasetukset"
@@ -3319,56 +4357,92 @@ msgctxt "tp_RangeChooser|FT_RANGE"
msgid "_Data range:"
msgstr "Tietoalue:"
+#. WKLi7
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:65
+msgctxt "tp_RangeChooser|extended_tip|ED_RANGE"
+msgid "Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Kirjoitetaan kaaviossa käytettävän tietoalueen viite. Kun valitaan tietoalue Calcin taulukosta, napsautetaan Valitse tietoalue -painiketta valintaikkunan pienentämiseksi."
+
#. FyVoD
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:74
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:79
msgctxt "tp_RangeChooser|IB_RANGE|tooltip_text"
msgid "Select data range"
msgstr "Valitse tietoalue"
+#. FVivY
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:83
+msgctxt "tp_RangeChooser|extended_tip|IB_RANGE"
+msgid "Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the Select data range button."
+msgstr "Kirjoitetaan kaaviossa käytettävän tietoalueen viite. Kun valitaan tietoalue Calcin taulukosta, napsautetaan Valitse tietoalue -painiketta valintaikkunan pienentämiseksi."
+
#. RGGHE
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:90
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:100
msgctxt "tp_RangeChooser|RB_DATAROWS"
msgid "Data series in _rows"
msgstr "Arvosarjat riveillä"
+#. w6DuB
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:110
+msgctxt "tp_RangeChooser|extended_tip|RB_DATAROWS"
+msgid "Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series."
+msgstr "Arvosarjat muodostuvat valitun alueen allekkaisista riveistä. Hajontakaavioissa ensimmäisellä rivillä on x:n arvot kaikille sarjoille. Kaikki muut rivit ovat y:n arvojen sarjoille."
+
#. wSDqF
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:106
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:121
msgctxt "tp_RangeChooser|RB_DATACOLS"
msgid "Data series in _columns"
msgstr "Arvosarjat sarakkeissa"
+#. RfFZF
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:131
+msgctxt "tp_RangeChooser|extended_tip|RB_DATACOLS"
+msgid "Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series."
+msgstr "Arvosarjat muodostuvat valitun alueen vierekkäisistä sarakkeista. Ensimmäisessä sarakkeessa on x:n arvot kaikille hajontakaavion sarjoille. Kaikki muut sarakkeet ovat y:n arvojen sarjoille."
+
#. CExLY
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:122
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:142
msgctxt "tp_RangeChooser|CB_FIRST_ROW_ASLABELS"
msgid "_First row as label"
msgstr "Ensimmäinen rivi sisältää otsikoita"
+#. HviBv
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:151
+msgctxt "tp_RangeChooser|extended_tip|CB_FIRST_ROW_ASLABELS"
+msgid "For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series."
+msgstr "Sarakkeiden arvosarjoilla: Ylintä riviä käytetään arvosarjojen nimille. Arvosarjoilla riveissä: Ylintä riviä käytetään luokkien nimille. Loput rivit muodostavat arvosarjoja. Jos ruutu on merkkaamatta, kaikki rivit ovat arvosarjoja."
+
#. ER2D7
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:137
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:162
msgctxt "tp_RangeChooser|CB_FIRST_COLUMN_ASLABELS"
msgid "F_irst column as label"
msgstr "Ensimmäinen sarake sisältää otsikoita"
+#. tTAhH
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:171
+msgctxt "tp_RangeChooser|extended_tip|CB_FIRST_COLUMN_ASLABELS"
+msgid "For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns."
+msgstr "Sarakkeiden arvosarjoilla: Ensimmäistä saraketta käytetään luokkien nimittämiseen. Arvosarjoilla riveissä: Ensimmäistä saraketta käytetään arvosarjojen nimittämiseen. Loput sarakkeet muodostavat arvosarjoja. Jos ruutua ei merkitä, kaikki sarakkeet ovat arvosarakkeita."
+
#. k9TMD
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:162
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:192
msgctxt "tp_RangeChooser|CB_TIME_BASED"
msgid "Time based charting"
msgstr "Aikaperusteiset kaaviot"
#. iuxE5
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:212
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:242
msgctxt "tp_RangeChooser|label1"
msgid "Start Table Index"
msgstr "Taulukon aloitusindeksi"
#. dnmDQ
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:226
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:256
msgctxt "tp_RangeChooser|label2"
msgid "End Table Index"
msgstr "Taulukon lopetusindeksi"
#. FcYeD
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:244
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:274
msgctxt "tp_RangeChooser|STR_PAGE_DATA_RANGE"
msgid "Data Range"
msgstr "Tietoalue"
@@ -3379,137 +4453,215 @@ msgctxt "tp_Scale|CBX_REVERSE"
msgid "_Reverse direction"
msgstr "Käänteinen suunta"
+#. DNJFK
+#: chart2/uiconfig/ui/tp_Scale.ui:68
+msgctxt "tp_Scale|extended_tip|CBX_REVERSE"
+msgid "Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction."
+msgstr "Määritetään, kummassa päässä akselia esitetään pienemmät ja kummassa suuremmat arvot. Rastiton tila vastaa tavanomaista matemaattista esitystä."
+
#. qBbBL
-#: chart2/uiconfig/ui/tp_Scale.ui:75
+#: chart2/uiconfig/ui/tp_Scale.ui:80
msgctxt "tp_Scale|CBX_LOGARITHM"
msgid "_Logarithmic scale"
msgstr "Logaritmiasteikko"
+#. 3wDMa
+#: chart2/uiconfig/ui/tp_Scale.ui:89
+msgctxt "tp_Scale|extended_tip|CBX_LOGARITHM"
+msgid "Specifies that you want the axis to be subdivided logarithmically."
+msgstr "Määritetään logaritminen asteikkojako."
+
#. 2B5CL
-#: chart2/uiconfig/ui/tp_Scale.ui:98
+#: chart2/uiconfig/ui/tp_Scale.ui:108
msgctxt "tp_Scale|TXT_AXIS_TYPE"
msgid "T_ype"
msgstr "Tyyppi"
#. D6Bre
-#: chart2/uiconfig/ui/tp_Scale.ui:114
+#: chart2/uiconfig/ui/tp_Scale.ui:124
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Automatic"
msgstr "Automaattinen"
#. TCiZu
-#: chart2/uiconfig/ui/tp_Scale.ui:115
+#: chart2/uiconfig/ui/tp_Scale.ui:125
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Text"
msgstr "Teksti"
#. vAAUB
-#: chart2/uiconfig/ui/tp_Scale.ui:116
+#: chart2/uiconfig/ui/tp_Scale.ui:126
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Date"
msgstr "Päivämäärä"
+#. 8YZhv
+#: chart2/uiconfig/ui/tp_Scale.ui:130
+msgctxt "tp_Scale|extended_tip|LB_AXIS_TYPE"
+msgid "For some types of axes, you can select to format an axis as text or date, or to detect the type automatically."
+msgstr "Joillekin akselityypeille käyttäjä voi valita muodoksi tekstin tai päivämäärän tahi antaa ohjelman tunnistaa tyyppi."
+
#. Vf7vB
-#: chart2/uiconfig/ui/tp_Scale.ui:149
+#: chart2/uiconfig/ui/tp_Scale.ui:164
msgctxt "tp_Scale|TXT_MIN"
msgid "_Minimum"
msgstr "Vähintään"
#. XUKzj
-#: chart2/uiconfig/ui/tp_Scale.ui:163
+#: chart2/uiconfig/ui/tp_Scale.ui:178
msgctxt "tp_Scale|TXT_MAX"
msgid "Ma_ximum"
msgstr "Enintään"
#. 4jRuB
-#: chart2/uiconfig/ui/tp_Scale.ui:175
+#: chart2/uiconfig/ui/tp_Scale.ui:190
msgctxt "tp_Scale|CBX_AUTO_MIN"
msgid "_Automatic"
msgstr "Automaattinen"
#. Bx5Co
-#: chart2/uiconfig/ui/tp_Scale.ui:190
+#: chart2/uiconfig/ui/tp_Scale.ui:205
msgctxt "tp_Scale|CBX_AUTO_MAX"
msgid "A_utomatic"
msgstr "Automaattinen"
-#. TsHtd
+#. 2Kb67
+#: chart2/uiconfig/ui/tp_Scale.ui:227
+msgctxt "tp_Scale|extended_tip|EDT_MIN"
+msgid "Defines the minimum value for the beginning of the axis."
+msgstr "Määritetään alaraja-arvo, josta akseli alkaa."
+
+#. AvhE9
#: chart2/uiconfig/ui/tp_Scale.ui:245
+msgctxt "tp_Scale|extended_tip|EDT_MAX"
+msgid "Defines the maximum value for the end of the axis."
+msgstr "Määritetään yläraja-arvo, johon akseli päättyy"
+
+#. TsHtd
+#: chart2/uiconfig/ui/tp_Scale.ui:270
msgctxt "tp_Scale|TXT_TIME_RESOLUTION"
msgid "R_esolution"
msgstr "Tarkkuus"
#. yyPFB
-#: chart2/uiconfig/ui/tp_Scale.ui:261 chart2/uiconfig/ui/tp_Scale.ui:343
-#: chart2/uiconfig/ui/tp_Scale.ui:469
+#: chart2/uiconfig/ui/tp_Scale.ui:286 chart2/uiconfig/ui/tp_Scale.ui:378
+#: chart2/uiconfig/ui/tp_Scale.ui:519
msgctxt "tp_Scale|liststoreDATE"
msgid "Days"
msgstr "Päivää"
#. 8xKtE
-#: chart2/uiconfig/ui/tp_Scale.ui:262 chart2/uiconfig/ui/tp_Scale.ui:344
-#: chart2/uiconfig/ui/tp_Scale.ui:470
+#: chart2/uiconfig/ui/tp_Scale.ui:287 chart2/uiconfig/ui/tp_Scale.ui:379
+#: chart2/uiconfig/ui/tp_Scale.ui:520
msgctxt "tp_Scale|liststoreDATE"
msgid "Months"
msgstr "Kuukautta"
#. WRUy8
-#: chart2/uiconfig/ui/tp_Scale.ui:263 chart2/uiconfig/ui/tp_Scale.ui:345
-#: chart2/uiconfig/ui/tp_Scale.ui:471
+#: chart2/uiconfig/ui/tp_Scale.ui:288 chart2/uiconfig/ui/tp_Scale.ui:380
+#: chart2/uiconfig/ui/tp_Scale.ui:521
msgctxt "tp_Scale|liststoreDATE"
msgid "Years"
msgstr "Vuotta"
+#. WUANc
+#: chart2/uiconfig/ui/tp_Scale.ui:292
+msgctxt "tp_Scale|extended_tip|LB_TIME_RESOLUTION"
+msgid "Resolution can be set to show days, months, or years as interval steps."
+msgstr "Tarkkuus voidaan asettaa esittämään arvovälit päivinä, kuukausina tai vuosina ."
+
#. ezN7c
-#: chart2/uiconfig/ui/tp_Scale.ui:274
+#: chart2/uiconfig/ui/tp_Scale.ui:304
msgctxt "tp_Scale|CBX_AUTO_TIME_RESOLUTION"
msgid "Automat_ic"
msgstr "Automaattinen"
#. DbJt9
-#: chart2/uiconfig/ui/tp_Scale.ui:304
+#: chart2/uiconfig/ui/tp_Scale.ui:334
msgctxt "tp_Scale|TXT_STEP_MAIN"
msgid "Ma_jor interval"
msgstr "Pääväli"
-#. UMEd3
+#. AtZ6D
+#: chart2/uiconfig/ui/tp_Scale.ui:363
+msgctxt "tp_Scale|extended_tip|MT_MAIN_DATE_STEP"
+msgid "Major interval can be set to show a certain number of days, months, or years."
+msgstr "Pääväli voidaan asettaa kattamaan tietty määrä päiviä, kuukausia tai vuosia"
+
+#. BD5BE
#: chart2/uiconfig/ui/tp_Scale.ui:384
+msgctxt "tp_Scale|extended_tip|LB_MAIN_TIME_UNIT"
+msgid "Major interval can be set to show a certain number of days, months, or years."
+msgstr "Pääväli voidaan asettaa kattamaan tietty määrä päiviä, kuukausia tai vuosia"
+
+#. a2Gjv
+#: chart2/uiconfig/ui/tp_Scale.ui:410
+msgctxt "tp_Scale|extended_tip|EDT_STEP_MAIN"
+msgid "Defines the interval for the main division of the axes."
+msgstr "Määritetään asteikon pääasiallinen jakoväli."
+
+#. UMEd3
+#: chart2/uiconfig/ui/tp_Scale.ui:429
msgctxt "tp_Scale|CBX_AUTO_STEP_MAIN"
msgid "Au_tomatic"
msgstr "Automaattinen"
#. Pv5GU
-#: chart2/uiconfig/ui/tp_Scale.ui:419
+#: chart2/uiconfig/ui/tp_Scale.ui:464
msgctxt "tp_Scale|TXT_STEP_HELP"
msgid "Minor inter_val"
msgstr "Jakoväli"
#. WMGqg
-#: chart2/uiconfig/ui/tp_Scale.ui:433
+#: chart2/uiconfig/ui/tp_Scale.ui:478
msgctxt "tp_Scale|TXT_STEP_HELP_COUNT"
msgid "Minor inter_val count"
msgstr "Jakoviivojen määrä"
+#. c9m8j
+#: chart2/uiconfig/ui/tp_Scale.ui:504
+msgctxt "tp_Scale|extended_tip|MT_STEPHELP"
+msgid "Defines the interval for the subdivision of the axes."
+msgstr "Määritetään asteikon toissijainen jakoväli."
+
+#. snFL6
+#: chart2/uiconfig/ui/tp_Scale.ui:525
+msgctxt "tp_Scale|extended_tip|LB_HELP_TIME_UNIT"
+msgid "Minor interval can be set to show a certain number of days, months, or years."
+msgstr "Jakoväli voidaan asettaa kattamaan tietty määrä päiviä, kuukausia tai vuosia."
+
#. X8FAK
-#: chart2/uiconfig/ui/tp_Scale.ui:482
+#: chart2/uiconfig/ui/tp_Scale.ui:537
msgctxt "tp_Scale|CBX_AUTO_STEP_HELP"
msgid "Aut_omatic"
msgstr "Automaattinen"
#. GAKPN
-#: chart2/uiconfig/ui/tp_Scale.ui:512
+#: chart2/uiconfig/ui/tp_Scale.ui:567
msgctxt "tp_Scale|TXT_ORIGIN"
msgid "Re_ference value"
msgstr "Vertailuarvo"
+#. HbRqw
+#: chart2/uiconfig/ui/tp_Scale.ui:586
+msgctxt "tp_Scale|extended_tip|EDT_ORIGIN"
+msgid "Specifies at which position to display the values along the axis."
+msgstr "Määritetään arvon sijainti akselilla."
+
#. Dj9GB
-#: chart2/uiconfig/ui/tp_Scale.ui:538
+#: chart2/uiconfig/ui/tp_Scale.ui:598
msgctxt "tp_Scale|CBX_AUTO_ORIGIN"
msgid "Automat_ic"
msgstr "Automaattinen"
+#. Z35M3
+#: chart2/uiconfig/ui/tp_Scale.ui:607
+msgctxt "tp_Scale|extended_tip|CBX_AUTO_ORIGIN"
+msgid "You must first deselect the Automatic option in order to modify the values."
+msgstr "Automaattinen-merkintä on poistettava, että asetusarvoja voisi muuttaa."
+
#. wqR5C
-#: chart2/uiconfig/ui/tp_Scale.ui:567
+#: chart2/uiconfig/ui/tp_Scale.ui:632
msgctxt "tp_Scale|FL_SCALE"
msgid "Scale"
msgstr "Asteikko"
@@ -3520,93 +4672,159 @@ msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_1"
msgid "Primary Y axis"
msgstr "Ensisijainen Y-akseli"
+#. ApXPx
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:52
+msgctxt "tp_SeriesToAxis|extended_tip|RBT_OPT_AXIS_1"
+msgid "This option is active as default. All data series are aligned to the primary Y axis."
+msgstr "Tämä on oletusasetus. Kaikki arvosarjat kohdistetaan ensisijaiseen y-akseliin."
+
#. aZ7G8
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:59
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:64
msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_2"
msgid "Secondary Y axis"
msgstr "Toissijainen Y-akseli"
+#. nTQUy
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:75
+msgctxt "tp_SeriesToAxis|extended_tip|RBT_OPT_AXIS_2"
+msgid "Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active."
+msgstr "Kohdistetaan ja skaalataan valittu arvosarja toissijaiseen y-akselin mukaan. Akseli näkyy vain, kun se on aktivoitu."
+
#. hV3cT
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:83
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:93
msgctxt "tp_SeriesToAxis|label1"
msgid "Align Data Series to"
msgstr "Tietolähteiden tasaus"
#. GAF6S
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:125
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:135
#, fuzzy
msgctxt "tp_SeriesToAxis|FT_GAP"
msgid "_Spacing"
msgstr "Objektivälit"
#. 27wWb
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:138
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:148
msgctxt "tp_SeriesToAxis|FT_OVERLAP"
msgid "_Overlap"
msgstr "Päällekkäin"
+#. NKaBT
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:164
+msgctxt "tp_SeriesToAxis|extended_tip|MT_GAP"
+msgid "Defines the spacing between the columns in percent."
+msgstr "Pylväiden välistys luokkien välillä määritetään prosentteina."
+
+#. 8E3zD
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:180
+msgctxt "tp_SeriesToAxis|extended_tip|MT_OVERLAP"
+msgid "Defines the necessary settings for overlapping data series."
+msgstr "Määritetään pylväiden välistys arvosarjojen välillä luokassa."
+
#. uV5Dn
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:178
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:198
msgctxt "tp_SeriesToAxis|CB_BARS_SIDE_BY_SIDE"
msgid "Show _bars side by side"
msgstr "Näytä palkit vierekkäin"
+#. U5ruY
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:207
+msgctxt "tp_SeriesToAxis|extended_tip|CB_BARS_SIDE_BY_SIDE"
+msgid "The bars from different data series are shown as if they were attached only to one axis."
+msgstr "Eri arvosarjojen palkit esitetään eri kohdista alkavina ja kohdistettuina vain yhteen akseliin."
+
#. b7cbo
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:194
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:219
msgctxt "tp_SeriesToAxis|CB_CONNECTOR"
msgid "Connection lines"
msgstr "Yhteysviivat"
+#. 42zFb
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:228
+msgctxt "tp_SeriesToAxis|extended_tip|CB_CONNECTOR"
+msgid "For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines."
+msgstr "Rasti vaikuttaa, että \"pinotussa\" ja \"suhteellisesti pinotussa\" palkkikaaviossa samaan sarjaan kuuluvat pylvään osat yhdistetään viivoilla."
+
#. VHcU3
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:216
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:246
msgctxt "tp_SeriesToAxis|label2"
msgid "Settings"
msgstr "Asetukset"
#. zaB5V
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:257
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:287
msgctxt "tp_SeriesToAxis|FT_MISSING_VALUES"
msgid "Plot missing values"
msgstr "Puuttuvien arvojen esittäminen"
#. fqYSM
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:267
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:297
msgctxt "tp_SeriesToAxis|RB_DONT_PAINT"
msgid "_Leave gap"
msgstr "Jätä aukko"
+#. CFmcS
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:307
+msgctxt "tp_SeriesToAxis|extended_tip|RB_DONT_PAINT"
+msgid "For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net."
+msgstr "Puuttuvan arvon kohdalle ei esitetään mitään tietoa. Tämä vaihtoehto on oletuksena pylväs-, palkki-, viiva- ja verkkokaavioissa."
+
#. ZvtoD
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:283
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:318
msgctxt "tp_SeriesToAxis|RB_ASSUME_ZERO"
msgid "_Assume zero"
msgstr "Oleta nollaksi"
+#. y6EGH
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:329
+msgctxt "tp_SeriesToAxis|extended_tip|RB_ASSUME_ZERO"
+msgid "For a missing value, the y-value will be shown as zero. This is the default for chart type Area."
+msgstr "Puuttuva arvon y-lukema esitetään nollana. Tämä vaihtoehto on oletuksena aluekaaviossa."
+
#. 8rLB4
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:300
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:340
msgctxt "tp_SeriesToAxis|RB_CONTINUE_LINE"
msgid "_Continue line"
msgstr "Jatka viivaa"
+#. 2HArG
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:351
+msgctxt "tp_SeriesToAxis|extended_tip|RB_CONTINUE_LINE"
+msgid "For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY."
+msgstr "Puuttuva arvon kohdalla esitetään viereisistä arvoista saatu interpolaatio. Tämä vaihtoehto on oletuksena XY-kaaviossa."
+
#. Nw9LX
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:330
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:375
msgctxt "tp_SeriesToAxis|CB_INCLUDE_HIDDEN_CELLS"
msgid "Include _values from hidden cells"
msgstr "Piirrä arvot myös piilotetuista soluista"
+#. vEDHo
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:384
+msgctxt "tp_SeriesToAxis|extended_tip|CB_INCLUDE_HIDDEN_CELLS"
+msgid "Check to also show values of currently hidden cells within the source cell range."
+msgstr "Merkintä tarkoittaa, että myös paraikaa lähdealueella piilotettuina olevien solujen arvot esitetään."
+
#. LvZ8x
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:352
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:402
msgctxt "tp_SeriesToAxis|label3"
msgid "Plot Options"
msgstr "Piirtoasetukset"
#. gRgPX
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:385
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:435
msgctxt "tp_SeriesToAxis|CB_LEGEND_ENTRY_HIDDEN"
msgid "Hide legend entry"
msgstr "Piilota selitemerkintä"
+#. GFmDA
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:443
+msgctxt "tp_SeriesToAxis|extended_tip|CB_LEGEND_ENTRY_HIDDEN"
+msgid "Do not show legend entry for the selected data series or data point."
+msgstr ""
+
#. q8CTC
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:406
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:461
msgctxt "tp_SeriesToAxis|label4"
msgid "Legend Entry"
msgstr "Selitemerkintä"
@@ -3617,104 +4835,236 @@ msgctxt "tp_Trendline|linear"
msgid "_Linear"
msgstr "Lineaarinen"
+#. jir3B
+#: chart2/uiconfig/ui/tp_Trendline.ui:75
+msgctxt "tp_Trendline|extended_tip|linear"
+msgid "A linear trend line is shown."
+msgstr "Piirretään regressiosuora."
+
#. u3nKx
-#: chart2/uiconfig/ui/tp_Trendline.ui:81
+#: chart2/uiconfig/ui/tp_Trendline.ui:86
msgctxt "tp_Trendline|logarithmic"
msgid "L_ogarithmic"
msgstr "Logaritminen"
+#. AZT5a
+#: chart2/uiconfig/ui/tp_Trendline.ui:97
+msgctxt "tp_Trendline|extended_tip|logarithmic"
+msgid "A logarithmic trend line is shown."
+msgstr "Piirretään logaritminen regressiokäyrä."
+
#. fPNok
-#: chart2/uiconfig/ui/tp_Trendline.ui:98
+#: chart2/uiconfig/ui/tp_Trendline.ui:108
msgctxt "tp_Trendline|exponential"
msgid "_Exponential"
msgstr "Eksponentiaalinen"
+#. gufBS
+#: chart2/uiconfig/ui/tp_Trendline.ui:119
+msgctxt "tp_Trendline|extended_tip|exponential"
+msgid "An exponential trend line is shown."
+msgstr "Piirretään eksponentiaalinen regressiokäyrä (x eksponenttina)."
+
#. a6FDp
-#: chart2/uiconfig/ui/tp_Trendline.ui:115
+#: chart2/uiconfig/ui/tp_Trendline.ui:130
msgctxt "tp_Trendline|power"
msgid "Po_wer"
msgstr "Potenssiregressio"
+#. sU36A
+#: chart2/uiconfig/ui/tp_Trendline.ui:141
+msgctxt "tp_Trendline|extended_tip|power"
+msgid "A power trend line is shown."
+msgstr "Piirretään potenssitrendiviiva (x kantalukuna)."
+
#. QCeGG
-#: chart2/uiconfig/ui/tp_Trendline.ui:132
+#: chart2/uiconfig/ui/tp_Trendline.ui:152
msgctxt "tp_Trendline|polynomial"
msgid "_Polynomial"
msgstr "Polynomi"
+#. f9EeD
+#: chart2/uiconfig/ui/tp_Trendline.ui:163
+msgctxt "tp_Trendline|extended_tip|polynomial"
+msgid "A polynomial trend line is shown with a given degree."
+msgstr ""
+
#. BkiE2
-#: chart2/uiconfig/ui/tp_Trendline.ui:149
+#: chart2/uiconfig/ui/tp_Trendline.ui:174
msgctxt "tp_Trendline|movingAverage"
msgid "_Moving Average"
msgstr "Liukuva keskiarvo"
+#. F5WMz
+#: chart2/uiconfig/ui/tp_Trendline.ui:185
+msgctxt "tp_Trendline|extended_tip|movingAverage"
+msgid "A moving average trend line is shown with a given period."
+msgstr ""
+
#. mGkUE
-#: chart2/uiconfig/ui/tp_Trendline.ui:173
+#: chart2/uiconfig/ui/tp_Trendline.ui:203
msgctxt "tp_Trendline|label3"
msgid "Degree"
msgstr "Aste"
+#. HwBsk
+#: chart2/uiconfig/ui/tp_Trendline.ui:208
+msgctxt "tp_Trendline|extended_tip|label3"
+msgid "Degree of polynomial trend line."
+msgstr ""
+
+#. EAkKg
+#: chart2/uiconfig/ui/tp_Trendline.ui:225
+msgctxt "tp_Trendline|extended_tip|degree"
+msgid "Degree of polynomial trend line."
+msgstr ""
+
#. ZvFov
-#: chart2/uiconfig/ui/tp_Trendline.ui:209
+#: chart2/uiconfig/ui/tp_Trendline.ui:249
msgctxt "tp_Trendline|label4"
msgid "Period"
msgstr "Jakso"
+#. akCwy
+#: chart2/uiconfig/ui/tp_Trendline.ui:254
+msgctxt "tp_Trendline|extended_tip|label4"
+msgid "Number of points to calculate average of moving average trend line."
+msgstr ""
+
+#. g3mex
+#: chart2/uiconfig/ui/tp_Trendline.ui:271
+msgctxt "tp_Trendline|extended_tip|period"
+msgid "Number of points to calculate average of moving average trend line."
+msgstr ""
+
#. ptaCA
-#: chart2/uiconfig/ui/tp_Trendline.ui:316
+#: chart2/uiconfig/ui/tp_Trendline.ui:366
msgctxt "tp_Trendline|label1"
msgid "Regression Type"
msgstr "Regressiotyyppi"
#. mNh7m
-#: chart2/uiconfig/ui/tp_Trendline.ui:352
+#: chart2/uiconfig/ui/tp_Trendline.ui:402
msgctxt "tp_Trendline|label7"
msgid "Extrapolate Forward"
msgstr "Ekstrapoloi eteenpäin"
+#. 4HshA
+#: chart2/uiconfig/ui/tp_Trendline.ui:408
+msgctxt "tp_Trendline|extended_tip|label7"
+msgid "Trend line is extrapolated for higher x-values."
+msgstr ""
+
#. tUrKr
-#: chart2/uiconfig/ui/tp_Trendline.ui:366
+#: chart2/uiconfig/ui/tp_Trendline.ui:421
msgctxt "tp_Trendline|label8"
msgid "Extrapolate Backward"
msgstr "Ekstrapoloi taaksepäin"
+#. tEfNE
+#: chart2/uiconfig/ui/tp_Trendline.ui:427
+msgctxt "tp_Trendline|extended_tip|label8"
+msgid "Trend line is extrapolated for lower x-values."
+msgstr ""
+
#. BGkFJ
-#: chart2/uiconfig/ui/tp_Trendline.ui:405
+#: chart2/uiconfig/ui/tp_Trendline.ui:465
msgctxt "tp_Trendline|setIntercept"
msgid "Force _Intercept"
msgstr "Pakota leikkauspiste"
+#. ZJUti
+#: chart2/uiconfig/ui/tp_Trendline.ui:477
+msgctxt "tp_Trendline|extended_tip|setIntercept"
+msgid "For linear, polynomial and exponential trend lines, intercept value is forced to a given value."
+msgstr ""
+
#. CSHNm
-#: chart2/uiconfig/ui/tp_Trendline.ui:423
+#: chart2/uiconfig/ui/tp_Trendline.ui:488
msgctxt "tp_Trendline|showEquation"
msgid "Show E_quation"
msgstr "Näytä yhtälö"
+#. nXrm7
+#: chart2/uiconfig/ui/tp_Trendline.ui:497
+msgctxt "tp_Trendline|extended_tip|showEquation"
+msgid "Shows the trend line equation next to the trend line."
+msgstr "Esitetään regressioyhtälö trendiviivan vieressä."
+
#. cA58s
-#: chart2/uiconfig/ui/tp_Trendline.ui:439
+#: chart2/uiconfig/ui/tp_Trendline.ui:509
msgctxt "tp_Trendline|showCorrelationCoefficient"
msgid "Show _Coefficient of Determination (R²)"
msgstr "Näytä selitysaste (R²)"
+#. CCyCH
+#: chart2/uiconfig/ui/tp_Trendline.ui:518
+msgctxt "tp_Trendline|extended_tip|showCorrelationCoefficient"
+msgid "Shows the coefficient of determination next to the trend line."
+msgstr "Esitetään selitysaste trendiviivan vieressä."
+
#. 2S6og
-#: chart2/uiconfig/ui/tp_Trendline.ui:457
+#: chart2/uiconfig/ui/tp_Trendline.ui:532
msgctxt "tp_Trendline|label5"
msgid "Trendline _Name"
msgstr "Trendiviivan nimi"
+#. GasKo
+#: chart2/uiconfig/ui/tp_Trendline.ui:538
+msgctxt "tp_Trendline|extended_tip|label5"
+msgid "Name of trend line in legend."
+msgstr ""
+
+#. FBT3Y
+#: chart2/uiconfig/ui/tp_Trendline.ui:554
+msgctxt "tp_Trendline|extended_tip|entry_name"
+msgid "Name of trend line in legend."
+msgstr ""
+
+#. C4C6e
+#: chart2/uiconfig/ui/tp_Trendline.ui:578
+msgctxt "tp_Trendline|extended_tip|interceptValue"
+msgid "Value of intercept if it is forced."
+msgstr ""
+
#. GEKL2
-#: chart2/uiconfig/ui/tp_Trendline.ui:501
+#: chart2/uiconfig/ui/tp_Trendline.ui:591
msgctxt "tp_Trendline|label6"
msgid "_X Variable Name"
msgstr "Muuttujan X nimi"
+#. 99kQL
+#: chart2/uiconfig/ui/tp_Trendline.ui:597
+msgctxt "tp_Trendline|extended_tip|label6"
+msgid "Name of X variable in trend line equation."
+msgstr ""
+
+#. Fz8b3
+#: chart2/uiconfig/ui/tp_Trendline.ui:613
+msgctxt "tp_Trendline|extended_tip|entry_Xname"
+msgid "Name of X variable in trend line equation."
+msgstr ""
+
#. GDQuF
-#: chart2/uiconfig/ui/tp_Trendline.ui:526
+#: chart2/uiconfig/ui/tp_Trendline.ui:626
msgctxt "tp_Trendline|label9"
msgid "_Y Variable Name"
msgstr "Muuttujan Y nimi"
+#. 2PBW3
+#: chart2/uiconfig/ui/tp_Trendline.ui:632
+msgctxt "tp_Trendline|extended_tip|label9"
+msgid "Name of Y variable in trend line equation."
+msgstr ""
+
+#. WHNXu
+#: chart2/uiconfig/ui/tp_Trendline.ui:648
+msgctxt "tp_Trendline|extended_tip|entry_Yname"
+msgid "Name of Y variable in trend line equation."
+msgstr ""
+
#. 9WeUe
-#: chart2/uiconfig/ui/tp_Trendline.ui:555
+#: chart2/uiconfig/ui/tp_Trendline.ui:665
msgctxt "tp_Trendline|label2"
msgid "Options"
msgstr "Asetukset"
@@ -3725,80 +5075,146 @@ msgctxt "tp_axisLabel|showlabelsCB"
msgid "Sho_w labels"
msgstr "Näytä akselin selitteet"
+#. Xr5zw
+#: chart2/uiconfig/ui/tp_axisLabel.ui:29
+msgctxt "tp_axisLabel|extended_tip|showlabelsCB"
+msgid "Specifies whether to show or hide the axis labels."
+msgstr "Määritetään asteikkonumeroiden näkyvyyttä."
+
#. HFhGL
-#: chart2/uiconfig/ui/tp_axisLabel.ui:62
+#: chart2/uiconfig/ui/tp_axisLabel.ui:67
msgctxt "tp_axisLabel|tile"
msgid "_Tile"
msgstr "Vierekkäin"
+#. cmjFi
+#: chart2/uiconfig/ui/tp_axisLabel.ui:77
+msgctxt "tp_axisLabel|extended_tip|tile"
+msgid "Arranges numbers on the axis side by side."
+msgstr "Asteikkonumerot esitetään tavanomaiseen tapaan linjattuina."
+
#. tHrCD
-#: chart2/uiconfig/ui/tp_axisLabel.ui:79
+#: chart2/uiconfig/ui/tp_axisLabel.ui:89
msgctxt "tp_axisLabel|odd"
msgid "St_agger odd"
msgstr "Lomita parittomat"
+#. Q8h6B
+#: chart2/uiconfig/ui/tp_axisLabel.ui:99
+msgctxt "tp_axisLabel|extended_tip|odd"
+msgid "Staggers numbers on the axis, even numbers lower than odd numbers."
+msgstr "Asteikkonumeroista lomitellaan järjestysnumeroltaan parilliset etäämmäksi asteikosta kuin parittomat."
+
#. tByen
-#: chart2/uiconfig/ui/tp_axisLabel.ui:96
+#: chart2/uiconfig/ui/tp_axisLabel.ui:111
msgctxt "tp_axisLabel|even"
msgid "Stagger _even"
msgstr "Lomita parilliset"
+#. 9EMGj
+#: chart2/uiconfig/ui/tp_axisLabel.ui:121
+msgctxt "tp_axisLabel|extended_tip|even"
+msgid "Stagger numbers on the axes, odd numbers lower than even numbers."
+msgstr "Asteikkonumeroista lomitellaan parittomat etäämmäksi asteikosta kuin parilliset."
+
#. 2JwY3
-#: chart2/uiconfig/ui/tp_axisLabel.ui:113
+#: chart2/uiconfig/ui/tp_axisLabel.ui:133
msgctxt "tp_axisLabel|auto"
msgid "A_utomatic"
msgstr "Automaattinen"
+#. fj3Rq
+#: chart2/uiconfig/ui/tp_axisLabel.ui:143
+msgctxt "tp_axisLabel|extended_tip|auto"
+msgid "Automatically arranges numbers on the axis."
+msgstr "Ohjelma järjestelee asteikkonumerot akseleille tilanteen mukaan."
+
#. bFH6L
-#: chart2/uiconfig/ui/tp_axisLabel.ui:136
+#: chart2/uiconfig/ui/tp_axisLabel.ui:161
msgctxt "tp_axisLabel|orderL"
msgid "Order"
msgstr "Järjestys"
#. GMtbb
-#: chart2/uiconfig/ui/tp_axisLabel.ui:171
+#: chart2/uiconfig/ui/tp_axisLabel.ui:196
msgctxt "tp_axisLabel|overlapCB"
msgid "O_verlap"
msgstr "Päällekkäin"
+#. zwgui
+#: chart2/uiconfig/ui/tp_axisLabel.ui:205
+msgctxt "tp_axisLabel|extended_tip|overlapCB"
+msgid "Specifies that the text in cells may overlap other cells."
+msgstr "Valinnalla sallitaan pitkien asteikkoselitteiden päällekkäisyys."
+
#. AYpQ8
-#: chart2/uiconfig/ui/tp_axisLabel.ui:187
+#: chart2/uiconfig/ui/tp_axisLabel.ui:217
msgctxt "tp_axisLabel|breakCB"
msgid "_Break"
msgstr "Vaihto"
+#. eBwTo
+#: chart2/uiconfig/ui/tp_axisLabel.ui:226
+msgctxt "tp_axisLabel|extended_tip|breakCB"
+msgid "Allows a text break."
+msgstr "Valinta sallii monirivisen tekstin."
+
#. 4EwR7
-#: chart2/uiconfig/ui/tp_axisLabel.ui:209
+#: chart2/uiconfig/ui/tp_axisLabel.ui:244
msgctxt "tp_axisLabel|textflowL"
msgid "Text Flow"
msgstr "Tekstin rivitys"
+#. exWTH
+#: chart2/uiconfig/ui/tp_axisLabel.ui:301
+msgctxt "tp_axisLabel|extended_tip|OrientDegree"
+msgid "Allows you to manually enter the orientation angle."
+msgstr "Kenttään voi syöttää suunnan asteluvun."
+
#. 5teDt
-#: chart2/uiconfig/ui/tp_axisLabel.ui:275
+#: chart2/uiconfig/ui/tp_axisLabel.ui:315
msgctxt "tp_axisLabel|degreeL"
msgid "_Degrees"
msgstr "Astetta"
#. jFKoF
-#: chart2/uiconfig/ui/tp_axisLabel.ui:309
+#: chart2/uiconfig/ui/tp_axisLabel.ui:349
msgctxt "tp_axisLabel|stackedCB"
msgid "Ve_rtically stacked"
msgstr "Kirjaimet päällekkäin"
+#. ra62A
+#: chart2/uiconfig/ui/tp_axisLabel.ui:359
+msgctxt "tp_axisLabel|extended_tip|stackedCB"
+msgid "Assigns vertical text orientation for cell contents."
+msgstr "Teksti juoksee pystysuunnassa pinomaisesti ruutu merkittynä."
+
#. JBz5H
-#: chart2/uiconfig/ui/tp_axisLabel.ui:326
+#: chart2/uiconfig/ui/tp_axisLabel.ui:371
msgctxt "tp_axisLabel|labelABCD"
msgid "ABCD"
msgstr "ABCD"
#. PE6RQ
-#: chart2/uiconfig/ui/tp_axisLabel.ui:343
+#: chart2/uiconfig/ui/tp_axisLabel.ui:388
msgctxt "tp_axisLabel|textdirL"
msgid "Te_xt direction:"
msgstr "Tekstin kirjoitussuunta:"
+#. YUAjA
+#: chart2/uiconfig/ui/tp_axisLabel.ui:402
+msgctxt "tp_axisLabel|extended_tip|textdirLB"
+msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
+msgstr "Määritetään tekstin suunta kappaleessa, jossa käytetään laajennettua tekstin asettelua (CTL)."
+
+#. NxsBh
+#: chart2/uiconfig/ui/tp_axisLabel.ui:421
+msgctxt "tp_axisLabel|extended_tip|dialCtrl"
+msgid "Clicking anywhere on the wheel defines the variable text orientation."
+msgstr "Kehän napsautus määrittää tekstin suunnan."
+
#. 3WhzS
-#: chart2/uiconfig/ui/tp_axisLabel.ui:383
+#: chart2/uiconfig/ui/tp_axisLabel.ui:438
msgctxt "tp_axisLabel|labelTextOrient"
msgid "Text Orientation"
msgstr "Tekstin asento"
@@ -3821,86 +5237,170 @@ msgctxt "wizelementspage|labelPrimaryZaxis"
msgid "_Z axis"
msgstr "Z-akseli"
+#. 7qRfe
+#: chart2/uiconfig/ui/wizelementspage.ui:89
+msgctxt "wizelementspage|extended_tip|primaryXaxis"
+msgid "Enter a label for the x-axis (horizontal)."
+msgstr "Nimetään x-akseli (vaakasuoraan)."
+
+#. 4vThc
+#: chart2/uiconfig/ui/wizelementspage.ui:106
+msgctxt "wizelementspage|extended_tip|primaryYaxis"
+msgid "Enter a label for the y-axis (vertical)."
+msgstr "Nimetään y-akseli (pystysuoraan)."
+
+#. 7zPH5
+#: chart2/uiconfig/ui/wizelementspage.ui:123
+msgctxt "wizelementspage|extended_tip|primaryZaxis"
+msgid "Enter a label for the z-axis. This option is only available for three-dimensional charts."
+msgstr "Nimetään z-akseli. Valinta on aktiivinen vain kolmiulotteisille kaavioille."
+
#. Qpj9H
-#: chart2/uiconfig/ui/wizelementspage.ui:121
+#: chart2/uiconfig/ui/wizelementspage.ui:136
msgctxt "wizelementspage|labelMainTitle"
msgid "_Title"
msgstr "Otsikko"
#. nPAjY
-#: chart2/uiconfig/ui/wizelementspage.ui:135
+#: chart2/uiconfig/ui/wizelementspage.ui:150
msgctxt "wizelementspage|labelSubTitle"
msgid "_Subtitle"
msgstr "Alaotsikko"
+#. CWmMQ
+#: chart2/uiconfig/ui/wizelementspage.ui:168
+msgctxt "wizelementspage|extended_tip|maintitle"
+msgid "Enter a title for your chart."
+msgstr "Kirjoitetaan otsikko kaaviolle."
+
+#. eNDvd
+#: chart2/uiconfig/ui/wizelementspage.ui:185
+msgctxt "wizelementspage|extended_tip|subtitle"
+msgid "Enter a subtitle for your chart."
+msgstr "Kirjoitetaan kaavion alaotsikko."
+
#. GJ7pJ
-#: chart2/uiconfig/ui/wizelementspage.ui:173
+#: chart2/uiconfig/ui/wizelementspage.ui:198
msgctxt "wizelementspage|labelSecondaryXAxis"
msgid "X _axis"
msgstr "X-akseli"
#. bBRgE
-#: chart2/uiconfig/ui/wizelementspage.ui:187
+#: chart2/uiconfig/ui/wizelementspage.ui:212
msgctxt "wizelementspage|labelSecondaryYAxis"
msgid "Y ax_is"
msgstr "Y-akseli"
+#. NGoMT
+#: chart2/uiconfig/ui/wizelementspage.ui:230
+msgctxt "wizelementspage|extended_tip|secondaryXaxis"
+msgid "Enter a label for the secondary x-axis. This option is only available for charts that support a secondary x-axis."
+msgstr "Nimetään toissijainen x-akseli. Vaihtoehto on käytettävissä vain kaavioille, jotka tukevat toissijaista x-akselia."
+
#. E6Y7y
-#: chart2/uiconfig/ui/wizelementspage.ui:234
+#: chart2/uiconfig/ui/wizelementspage.ui:264
msgctxt "wizelementspage|show"
msgid "_Display legend"
msgstr "Näytä selite"
+#. QWAen
+#: chart2/uiconfig/ui/wizelementspage.ui:273
+msgctxt "wizelementspage|extended_tip|show"
+msgid "Specifies whether to display a legend for the chart."
+msgstr "Määrittää selitteen näkymisen kaaviossa."
+
#. ejdzz
-#: chart2/uiconfig/ui/wizelementspage.ui:259
+#: chart2/uiconfig/ui/wizelementspage.ui:294
msgctxt "wizelementspage|left"
msgid "_Left"
msgstr "Vasen"
+#. tGgc2
+#: chart2/uiconfig/ui/wizelementspage.ui:304
+msgctxt "wizelementspage|extended_tip|left"
+msgid "Positions the legend at the left of the chart."
+msgstr "Asemoi selitteen vasemmalle."
+
#. EjE6h
-#: chart2/uiconfig/ui/wizelementspage.ui:275
+#: chart2/uiconfig/ui/wizelementspage.ui:315
msgctxt "wizelementspage|right"
msgid "_Right"
msgstr "Oikea"
+#. rvAN8
+#: chart2/uiconfig/ui/wizelementspage.ui:325
+msgctxt "wizelementspage|extended_tip|right"
+msgid "Positions the legend at the right of the chart."
+msgstr "Asemoi selitteen oikealle."
+
#. LnxgC
-#: chart2/uiconfig/ui/wizelementspage.ui:291
+#: chart2/uiconfig/ui/wizelementspage.ui:336
msgctxt "wizelementspage|top"
msgid "_Top"
msgstr "Yläreuna"
+#. Ehv3g
+#: chart2/uiconfig/ui/wizelementspage.ui:346
+msgctxt "wizelementspage|extended_tip|top"
+msgid "Positions the legend at the top of the chart."
+msgstr "Asemoi selitteen kaavion yläreunaan."
+
#. GD2qS
-#: chart2/uiconfig/ui/wizelementspage.ui:307
+#: chart2/uiconfig/ui/wizelementspage.ui:357
msgctxt "wizelementspage|bottom"
msgid "_Bottom"
msgstr "Alareuna"
+#. NCp3E
+#: chart2/uiconfig/ui/wizelementspage.ui:367
+msgctxt "wizelementspage|extended_tip|bottom"
+msgid "Positions the legend at the bottom of the chart."
+msgstr "Asemoi selitteen kaavion alareunaan."
+
#. REBEt
-#: chart2/uiconfig/ui/wizelementspage.ui:343
+#: chart2/uiconfig/ui/wizelementspage.ui:398
msgctxt "wizelementspage|Axe"
msgid "Choose Titles, Legend, and Grid Settings"
msgstr "Valitse otsikot, selitteet ja ruudukon asetukset"
#. wp2DC
-#: chart2/uiconfig/ui/wizelementspage.ui:376
+#: chart2/uiconfig/ui/wizelementspage.ui:431
msgctxt "wizelementspage|x"
msgid "X axis"
msgstr "X-akseli"
+#. KbejV
+#: chart2/uiconfig/ui/wizelementspage.ui:440
+msgctxt "wizelementspage|extended_tip|x"
+msgid "Displays grid lines that are perpendicular to the x-axis."
+msgstr "Merkinnällä määrätään x-akselista kohtisuoraan lähtevän kaavion viivasto näkyviin."
+
#. KPGMU
-#: chart2/uiconfig/ui/wizelementspage.ui:391
+#: chart2/uiconfig/ui/wizelementspage.ui:451
msgctxt "wizelementspage|y"
msgid "Y ax_is"
msgstr "Y-akseli"
+#. Nivye
+#: chart2/uiconfig/ui/wizelementspage.ui:460
+msgctxt "wizelementspage|extended_tip|y"
+msgid "Displays grid lines that are perpendicular to the y-axis."
+msgstr "Merkinnällä määrätään y-akselista kohtisuoraan lähtevän kaavion viivasto näkyviin."
+
#. G65v4
-#: chart2/uiconfig/ui/wizelementspage.ui:406
+#: chart2/uiconfig/ui/wizelementspage.ui:471
msgctxt "wizelementspage|z"
msgid "Z axi_s"
msgstr "Z-akseli"
+#. uVwTv
+#: chart2/uiconfig/ui/wizelementspage.ui:480
+msgctxt "wizelementspage|extended_tip|z"
+msgid "Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts."
+msgstr "Merkinnällä määrätään z-akselista kohtisuoraan lähtevän kaavion viivasto näkyviin. Valinta on aktiivinen vain kolmiulotteisille kaavioille."
+
#. wNqwZ
-#: chart2/uiconfig/ui/wizelementspage.ui:427
+#: chart2/uiconfig/ui/wizelementspage.ui:497
msgctxt "wizelementspage|label2"
msgid "Display Grids"
msgstr "Näytä ruudukot"
diff --git a/source/fi/cui/messages.po b/source/fi/cui/messages.po
index 2dbb2f80bb5..e59b11b5718 100644
--- a/source/fi/cui/messages.po
+++ b/source/fi/cui/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:30+0100\n"
"PO-Revision-Date: 2020-10-22 22:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/fi/>\n"
@@ -17,249 +17,249 @@ msgstr ""
"X-POOTLE-MTIME: 1564954460.000000\n"
#. GyY9M
-#: cui/inc/numcategories.hrc:17
+#: cui/inc/numcategories.hrc:16
msgctxt "numberingformatpage|liststore1"
msgid "All"
msgstr "Kaikki"
#. 8AwDu
-#: cui/inc/numcategories.hrc:18
+#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
msgid "User-defined"
msgstr "Käyttäjän määrittämä"
#. YPFu3
-#: cui/inc/numcategories.hrc:19
+#: cui/inc/numcategories.hrc:18
msgctxt "numberingformatpage|liststore1"
msgid "Number"
msgstr "Luku"
#. sCP8R
-#: cui/inc/numcategories.hrc:20
+#: cui/inc/numcategories.hrc:19
msgctxt "numberingformatpage|liststore1"
msgid "Percent"
msgstr "Prosenttia"
#. 6C4cy
-#: cui/inc/numcategories.hrc:21
+#: cui/inc/numcategories.hrc:20
msgctxt "numberingformatpage|liststore1"
msgid "Currency"
msgstr "Valuutta"
#. NgzCi
-#: cui/inc/numcategories.hrc:22
+#: cui/inc/numcategories.hrc:21
msgctxt "numberingformatpage|liststore1"
msgid "Date"
msgstr "Päivämäärä"
#. 4kcAo
-#: cui/inc/numcategories.hrc:23
+#: cui/inc/numcategories.hrc:22
msgctxt "numberingformatpage|liststore1"
msgid "Time"
msgstr "Aika"
#. xnmxf
-#: cui/inc/numcategories.hrc:24
+#: cui/inc/numcategories.hrc:23
msgctxt "numberingformatpage|liststore1"
msgid "Scientific"
msgstr "Tieteellinen"
#. vMka9
-#: cui/inc/numcategories.hrc:25
+#: cui/inc/numcategories.hrc:24
msgctxt "numberingformatpage|liststore1"
msgid "Fraction"
msgstr "Murtoluku"
#. M8AFf
-#: cui/inc/numcategories.hrc:26
+#: cui/inc/numcategories.hrc:25
msgctxt "numberingformatpage|liststore1"
msgid "Boolean Value"
msgstr "Boolen arvo"
#. 2esH2
-#: cui/inc/numcategories.hrc:27
+#: cui/inc/numcategories.hrc:26
msgctxt "numberingformatpage|liststore1"
msgid "Text"
msgstr "Teksti"
#. E6GDh
-#: cui/inc/strings.hrc:24
+#: cui/inc/strings.hrc:23
msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
msgid "Configuration"
msgstr "Kokoonpano"
#. z7dmW
-#: cui/inc/strings.hrc:25
+#: cui/inc/strings.hrc:24
msgctxt "RID_SVXSTR_KEY_WORK_PATH"
msgid "My Documents"
msgstr "Omat asiakirjat"
#. wnMWp
-#: cui/inc/strings.hrc:26
+#: cui/inc/strings.hrc:25
msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
msgid "Images"
msgstr "Kuvat"
#. AnM4M
-#: cui/inc/strings.hrc:27
+#: cui/inc/strings.hrc:26
msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
msgid "Icons"
msgstr "Kuvakkeet"
#. bpvbo
-#: cui/inc/strings.hrc:28
+#: cui/inc/strings.hrc:27
msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
msgid "Palettes"
msgstr "Paletit"
#. shiKT
-#: cui/inc/strings.hrc:29
+#: cui/inc/strings.hrc:28
msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
msgid "Backups"
msgstr "Varmuuskopiot"
#. ai8eF
-#: cui/inc/strings.hrc:30
+#: cui/inc/strings.hrc:29
msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
msgid "Modules"
msgstr "Moduulit"
#. WyhJD
-#: cui/inc/strings.hrc:31
+#: cui/inc/strings.hrc:30
msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
msgid "Templates"
msgstr "Mallit"
#. mNj9y
-#: cui/inc/strings.hrc:32
+#: cui/inc/strings.hrc:31
msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
msgid "AutoText"
msgstr "Automaattinen teksti"
#. co7GJ
-#: cui/inc/strings.hrc:33
+#: cui/inc/strings.hrc:32
msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
msgid "Dictionaries"
msgstr "Sanastot"
#. MbjWM
-#: cui/inc/strings.hrc:34
+#: cui/inc/strings.hrc:33
msgctxt "RID_SVXSTR_KEY_HELP_DIR"
msgid "Help"
msgstr "Ohje"
#. u2bQB
-#: cui/inc/strings.hrc:35
+#: cui/inc/strings.hrc:34
msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
msgid "Gallery"
msgstr "Galleria"
#. 2umbs
-#: cui/inc/strings.hrc:36
+#: cui/inc/strings.hrc:35
msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
msgid "Message Storage"
msgstr "Viestivaranto"
#. oMdF8
-#: cui/inc/strings.hrc:37
+#: cui/inc/strings.hrc:36
msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
msgid "Temporary files"
msgstr "Väliaikaiset tiedostot"
#. 4DDzW
-#: cui/inc/strings.hrc:38
+#: cui/inc/strings.hrc:37
msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
msgid "Plug-ins"
msgstr "Lisäosat"
#. v5YHp
-#: cui/inc/strings.hrc:39
+#: cui/inc/strings.hrc:38
msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
msgid "Folder Bookmarks"
msgstr "Kansion kirjanmerkit"
#. AJkga
-#: cui/inc/strings.hrc:40
+#: cui/inc/strings.hrc:39
msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
msgid "Filters"
msgstr "Suodattimet"
#. 2DKUC
-#: cui/inc/strings.hrc:41
+#: cui/inc/strings.hrc:40
msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
msgid "Add-ins"
msgstr "Lisäosat"
#. Tm2DM
-#: cui/inc/strings.hrc:42
+#: cui/inc/strings.hrc:41
msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
msgid "User Configuration"
msgstr "Käyttäjän asetukset"
#. ATuL4
-#: cui/inc/strings.hrc:43
+#: cui/inc/strings.hrc:42
msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
msgid "User-defined dictionaries"
msgstr "Omat sanastot"
#. qxBAu
-#: cui/inc/strings.hrc:44
+#: cui/inc/strings.hrc:43
msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
msgid "Classification"
msgstr "Luokitus"
#. FrDws
-#: cui/inc/strings.hrc:45
+#: cui/inc/strings.hrc:44
msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
msgid "AutoCorrect"
msgstr "Automaattinen korjaus"
#. jD48Q
-#: cui/inc/strings.hrc:46
+#: cui/inc/strings.hrc:45
msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
msgid "Writing aids"
msgstr "Kirjoituksen aputyökalut"
#. VNK5b
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:48
+#: cui/inc/strings.hrc:47
msgctxt "RID_SVXSTR_NEW_MENU"
msgid "New Menu %n"
msgstr "Uusi valikko %n"
#. dJXBJ
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:50
+#: cui/inc/strings.hrc:49
msgctxt "RID_SVXSTR_NEW_TOOLBAR"
msgid "New Toolbar %n"
msgstr "Uusi työkalurivi %n"
#. PCa2G
-#: cui/inc/strings.hrc:51
+#: cui/inc/strings.hrc:50
msgctxt "RID_SVXSTR_MOVE_MENU"
msgid "Move Menu"
msgstr "Siirrä valikko"
#. KbZFf
-#: cui/inc/strings.hrc:52
+#: cui/inc/strings.hrc:51
msgctxt "RID_SVXSTR_ADD_SUBMENU"
msgid "Add Submenu"
msgstr "Lisää alavalikko"
#. w2qNv
-#: cui/inc/strings.hrc:53
+#: cui/inc/strings.hrc:52
msgctxt "RID_SVXSTR_SUBMENU_NAME"
msgid "Submenu name"
msgstr "Alavalikon nimi"
#. qJgZw
-#: cui/inc/strings.hrc:54
+#: cui/inc/strings.hrc:53
msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
msgid "Are you sure to delete the image?"
msgstr "Haluatko varmasti poistaa kuvan?"
#. d6e9K
-#: cui/inc/strings.hrc:55
+#: cui/inc/strings.hrc:54
msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
msgid ""
"The icon %ICONNAME is already contained in the image list.\n"
@@ -269,19 +269,19 @@ msgstr ""
"Haluatko korvata olemassa olevan kuvakkeen?"
#. FRvQe
-#: cui/inc/strings.hrc:56
+#: cui/inc/strings.hrc:55
msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
msgid "Confirm Icon Replacement"
msgstr "Vahvista kuvakkeen korvaaminen"
#. xC2Wc
-#: cui/inc/strings.hrc:57
+#: cui/inc/strings.hrc:56
msgctxt "RID_SVXSTR_YESTOALL"
msgid "Yes to All"
msgstr "Kyllä kaikkiin"
#. jCwDZ
-#: cui/inc/strings.hrc:58
+#: cui/inc/strings.hrc:57
msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
msgstr "Työkalurivillä ei ole enää komentoja. Haluatko poistaa työkalurivin?"
@@ -290,896 +290,896 @@ msgstr "Työkalurivillä ei ole enää komentoja. Haluatko poistaa työkalurivin
#. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder
#. and will be replaced at runtime by the name of the selected application
#. or document.
-#: cui/inc/strings.hrc:63
+#: cui/inc/strings.hrc:62
msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr "%SAVE IN SELECTION%:n valikon kokoonpano palautetaan oletusasetuksiin. Haluatko jatkaa?"
#. RYeCk
-#: cui/inc/strings.hrc:64
+#: cui/inc/strings.hrc:63
msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr "%SAVE IN SELECTION%:n työkalurivin kokoonpano palautetaan oletusasetuksiin. Haluatko jatkaa?"
#. JgGvm
-#: cui/inc/strings.hrc:65
+#: cui/inc/strings.hrc:64
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
msgstr "Tämä poistaa kaikki edelliset työkaluriviin tehdyt muutokset. Oletko varma että haluat palauttaa työkalurivin?"
#. 4s9MJ
-#: cui/inc/strings.hrc:66
+#: cui/inc/strings.hrc:65
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU"
msgid "This will delete all changes previously made to this context menu. Do you really want to reset?"
msgstr "Tämä poistaa kaikki edelliset valikkoon tehdyt muutokset. Oletko varma että haluat palauttaa valikon?"
#. CPW5b
-#: cui/inc/strings.hrc:67
+#: cui/inc/strings.hrc:66
msgctxt "RID_SVXSTR_MNUCFG_ALREADY_INCLUDED"
msgid "Function is already included in this popup."
msgstr "Toiminto on jo tässä valikossa."
#. G2mu7
-#: cui/inc/strings.hrc:68
+#: cui/inc/strings.hrc:67
msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
msgid "~New name"
msgstr "~Uusi nimi"
#. Ahhg9
-#: cui/inc/strings.hrc:69
+#: cui/inc/strings.hrc:68
msgctxt "RID_SVXSTR_RENAME_MENU"
msgid "Rename Menu"
msgstr "Nimeä valikko uudelleen"
#. CmDaN
-#: cui/inc/strings.hrc:70
+#: cui/inc/strings.hrc:69
msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
msgid "Rename Toolbar"
msgstr "Nimeä työkalurivi uudelleen"
#. GN45E
-#: cui/inc/strings.hrc:72
+#: cui/inc/strings.hrc:71
msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
msgid "Close"
msgstr "Sulje"
#. dkH9d
-#: cui/inc/strings.hrc:73
+#: cui/inc/strings.hrc:72
msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
msgid "Mouse over object"
msgstr "Hiiri objektin kohdalla"
#. 4QYHe
-#: cui/inc/strings.hrc:74
+#: cui/inc/strings.hrc:73
msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
msgid "Trigger hyperlink"
msgstr "Käynnistä hyperlinkki"
#. WMQPj
-#: cui/inc/strings.hrc:75
+#: cui/inc/strings.hrc:74
msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "Hiiri poistuu objektista"
#. E8XCn
-#: cui/inc/strings.hrc:76
+#: cui/inc/strings.hrc:75
msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
msgid "Please type in a valid file name."
msgstr "Kirjoita kelvollinen tiedoston nimi."
#. ES4Pj
-#: cui/inc/strings.hrc:77
+#: cui/inc/strings.hrc:76
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "Painike"
#. MPHHF
-#: cui/inc/strings.hrc:78
+#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "Teksti"
#. 9nkb2
-#: cui/inc/strings.hrc:79
+#: cui/inc/strings.hrc:78
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Tiedosto on jo olemassa. Korvataanko?"
#. smWax
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:80
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "Valitse irrallisen kehyksen tiedosto"
#. F74rR
-#: cui/inc/strings.hrc:82
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "Kaikki komennot"
#. EeB6i
-#: cui/inc/strings.hrc:83
+#: cui/inc/strings.hrc:82
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "Makrot"
#. mkEjQ
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "Omat makrot"
#. Cv5m8
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:84
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME makrot"
#. RGCGW
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr "Makrolle ei ole kuvausta."
#. AFniE
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:86
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "Suorita"
#. whwAN
-#: cui/inc/strings.hrc:88
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "Lisää rivejä"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:89
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr "Valinnan yläpuolelle"
#. oBHui
-#: cui/inc/strings.hrc:91
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr "Valinnan alapuolelle"
#. c8nou
-#: cui/inc/strings.hrc:92
+#: cui/inc/strings.hrc:91
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Poista suosikeista"
#. XpjRm
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Puuttuva merkki"
#. 7tBGT
-#: cui/inc/strings.hrc:94
+#: cui/inc/strings.hrc:93
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Lisää suosikkeihin"
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:97
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "Lisää sarakkeita"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:98
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr "Ennen valintaa"
#. nXnb3
-#: cui/inc/strings.hrc:100
+#: cui/inc/strings.hrc:99
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr "Valinnan jälkeen"
#. QrFJZ
-#: cui/inc/strings.hrc:101
+#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "Automaattinen"
#. X9CWA
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Linkki"
#. QCgnw
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:102
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "Lataa näppäimistömääritys"
#. eWQoY
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "Tallenna näppäimistömääritys"
#. ggFZE
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:104
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "Määritystiedosto (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "Kohteita ei ole tässä asiakirjassa."
#. pCbRV
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "Asiakirjan avaaminen ei onnistunut."
#. zAUfq
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[Syötä teksti tähän]"
#. ResDx
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Hangul"
#. 3t3AC
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Hanja"
#. 88dts
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr "Basic-makrot"
#. XKYHn
-#: cui/inc/strings.hrc:112
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "Tyylit"
#. hFEBv
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:113
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "Käynnistä sovellus"
#. 6tUvx
-#: cui/inc/strings.hrc:115
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "Sulje sovellus"
#. 6NsQz
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "Uusi asiakirja"
#. G6b2e
-#: cui/inc/strings.hrc:117
+#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "Asiakirja suljettu"
#. yvsTa
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "Asiakirjaa ollaan sulkemassa"
#. DKpfj
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "Avaa asiakirja"
#. DTDDm
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "Tallenna asiakirja"
#. Trc82
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "Tallenna asiakirja nimellä"
#. GCbZt
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "Asiakirja on tallennettu"
#. mYtMa
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "Asiakirja on tallennettu nimellä"
#. t8F8W
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "Aktivoi asiakirja"
#. T7QE3
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "Poista asiakirja käytöstä"
#. AQXyC
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "Tulosta asiakirja"
#. 8uXuz
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "'Muokattu'-tila muuttui"
#. 5CKDG
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "Joukkokirjeiden tulostaminen alkoi"
#. AZ2io
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "Joukkokirjeiden tulostaminen päättyi"
#. dHtbz
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "Lomakkeen kenttien yhdistäminen aloitettiin"
#. uGCdD
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "Lomakkeen kenttien yhdistäminen päättyi"
#. srLLa
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "Muutetaan sivumäärää"
#. AsuQF
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "Ladattiin alikomponentti"
#. Gf22f
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "Alikomponentti suljettiin"
#. QayEb
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:134
#, fuzzy
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "Täytä parametrit"
#. mL59X
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "Suorita toiminto"
#. KtHBE
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "Päivityksen jälkeen"
#. b6CCj
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "Ennen päivitystä"
#. KTBcp
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "Ennen tietuetoimintoa"
#. Fhyio
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "Tietuetoiminnon jälkeen"
#. PmJgM
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "Vahvista poistaminen"
#. gcREA
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "On ilmennyt virhe"
#. oAwDt
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "Säädettäessä"
#. AyfwP
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:143
#, fuzzy
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "Kun kohdistus saavutetaan"
#. BD96B
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:144
#, fuzzy
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "Kun kohdistus menetetään"
#. wEhfE
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "Nimikkeen tilaa muutettu"
#. FRW7b
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "Näppäintä painettu"
#. 4kZCD
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "Näppäin vapautettu"
#. ZiS2D
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "Ladattaessa"
#. vEjAG
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "Ennen uudelleenlatausta"
#. 5FvrE
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "Uudelleenlatauksen yhteydessä"
#. CDcYt
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "Hiirtä liikutettu pitäen näppäintä painettuna"
#. CPpyk
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "Hiiri sisäpuolella"
#. 4hGfp
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "Hiiri ulkopuolella"
#. QEuWr
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "Hiirtä liikutettu"
#. 8YA3S
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "Hiiren painiketta painettu"
#. RMuJe
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "Hiiren painike vapautettu"
#. 5iPHQ
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "Ennen tietueen muuttamista"
#. yrBiz
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "Tietueen muuttamisen jälkeen"
#. bdBH4
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "Palauttamisen jälkeen"
#. eVsFk
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "Ennen palauttamista"
#. 2oAoV
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "Hyväksy toiminto"
#. hQAzK
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "Ennen lähettämistä"
#. CFPSo
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "Tekstiä muokattu"
#. 2ADMH
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "Ennen muistista poistamista"
#. F8BL3
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "Poistettaessa muistista"
#. M6fPe
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "Muutettu"
#. gZyVB
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "Asiakirja luotiin"
#. BcPDW
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "Asiakirjan lataaminen valmistui"
#. ir7AQ
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "Asiakirjan tallentaminen epäonnistui"
#. BFtTF
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "'Tallenna nimellä' epäonnistui"
#. N9e6u
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "Tallennetaan tai viedään asiakirjan kopioita"
#. okb9H
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "Asiakirjasta on luotu kopio"
#. DrYTY
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "Asiakirjan kopion luominen epäonnistui"
#. BBJJQ
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "Näkymä luotu"
#. XN9Az
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "Näkymää ollaan sulkemassa"
#. a9qty
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "Näkymä suljettu"
#. dDunN
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "Asiakirjan otsikko on vaihdettu"
#. 6D6BS
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "Valinta vaihtui"
#. XArW3
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "Kaksoisnapsautus"
#. oDkyz
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "Napsautus oikealla painikkeella"
#. tVSz9
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "Kaavat laskettu"
#. ESxTQ
-#: cui/inc/strings.hrc:183
+#: cui/inc/strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "Sisältö muuttunut"
#. Zimeo
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:184
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "missä tahansa"
#. qCKMY
-#: cui/inc/strings.hrc:186
+#: cui/inc/strings.hrc:185
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "kentän alussa"
#. CKVTF
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:186
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "kentän lopussa"
#. FZwxu
-#: cui/inc/strings.hrc:188
+#: cui/inc/strings.hrc:187
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "koko kenttä"
#. AFUFs
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:188
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "Ylhäältä"
#. FBDbX
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:189
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "Alhaalta"
#. brdgV
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:190
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "Tietojasi vastaavia tietueita ei löytynyt."
#. VkTjA
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:191
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "Ilmeni tuntematon virhe. Hakua ei voitu suorittaa loppuun."
#. jiQdw
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:192
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "Ylivuoto, hakua jatketaan alusta"
#. EzK3y
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:193
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "Ylivuoto, hakua jatketaan lopusta"
#. zwiat
-#: cui/inc/strings.hrc:195
+#: cui/inc/strings.hrc:194
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "lasketaan tietueita"
#. 7cVWa
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:196
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<Ei tiedostoja>"
#. AnJUu
-#: cui/inc/strings.hrc:198
+#: cui/inc/strings.hrc:197
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "objekti;objektit"
#. GQXSM
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:198
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(kirjoitussuojattu)"
#. sAwgA
-#: cui/inc/strings.hrc:200
+#: cui/inc/strings.hrc:199
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<Kaikki tiedostot>"
#. YkCky
-#: cui/inc/strings.hrc:201
+#: cui/inc/strings.hrc:200
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "Tunnus on jo olemassa..."
#. w3AUk
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:202
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "Polku %1 on jo olemassa."
#. 54BsS
-#: cui/inc/strings.hrc:204
+#: cui/inc/strings.hrc:203
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "Valitse arkistot"
#. NDB5V
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "Arkistot"
#. ffPAq
-#: cui/inc/strings.hrc:206
+#: cui/inc/strings.hrc:205
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "Tiedosto %1 on jo olemassa."
#. 5FyxP
-#: cui/inc/strings.hrc:207
+#: cui/inc/strings.hrc:206
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "Lisää kuva"
#. eUzGk
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:208
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "Vahvistussalasana ei vastannut alkuperäistä. Aseta salasana uudestaan kirjoittamalla sama salasana molempiin tekstikenttiin."
#. mN9jE
-#: cui/inc/strings.hrc:210
+#: cui/inc/strings.hrc:209
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "Vahvistussalasanat eivät vastanneet alkuperäisiä salasanoja. Aseta salasanat uudelleen."
#. 48ez3
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:210
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "Anna salasana tiedoston avaamiseksi ja muokkaamiseksi, tai valitse \"avaa kirjoitussuojattuna\"."
#. aAbAN
-#: cui/inc/strings.hrc:212
+#: cui/inc/strings.hrc:211
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr "Aseta salasana kirjoittamalla sama salasana molempiin tekstikenttiin."
#. ZXcFw
-#: cui/inc/strings.hrc:213
+#: cui/inc/strings.hrc:212
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr "Salasanan pituusraja %1 saavutettu"
#. Fko49
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:214
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "Automaattinen"
#. WYHFb
-#: cui/inc/strings.hrc:216
+#: cui/inc/strings.hrc:215
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "Manuaalinen"
#. PFN4j
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:216
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "Ei käytössä"
#. 5ymS3
-#: cui/inc/strings.hrc:218
+#: cui/inc/strings.hrc:217
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "Haluatko varmasti poistaa valitun linkin?"
#. wyMwT
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:218
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "Haluatko varmasti poistaa valitun linkin?"
#. CN74h
-#: cui/inc/strings.hrc:220
+#: cui/inc/strings.hrc:219
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "Odotetaan"
#. QJKgF
-#: cui/inc/strings.hrc:222
+#: cui/inc/strings.hrc:221
#, fuzzy
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
@@ -1187,25 +1187,25 @@ msgstr "Tallenna kaappaus nimellä..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:225
+#: cui/inc/strings.hrc:224
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "Arvosarjat $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:227
+#: cui/inc/strings.hrc:226
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "Kyllä"
#. RuQiB
-#: cui/inc/strings.hrc:228
+#: cui/inc/strings.hrc:227
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "Ei"
#. irLeD
-#: cui/inc/strings.hrc:230
+#: cui/inc/strings.hrc:229
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1217,7 +1217,7 @@ msgstr ""
"ei ole olemassa."
#. iQYnX
-#: cui/inc/strings.hrc:231
+#: cui/inc/strings.hrc:230
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1229,7 +1229,7 @@ msgstr ""
"ei ole olemassa paikallisessa tiedostojärjestelmässä."
#. 4PaJ2
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:231
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1239,163 +1239,163 @@ msgstr ""
"Valitse toinen nimi."
#. KFB7q
-#: cui/inc/strings.hrc:233
+#: cui/inc/strings.hrc:232
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "Haluatko poistaa tietueen?"
#. gg9gD
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:234
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "Haluatko poistaa seuraavan objektin?"
#. 42ivC
-#: cui/inc/strings.hrc:236
+#: cui/inc/strings.hrc:235
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "Vahvista poistaminen"
#. kn5KE
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:236
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "Valittua objektia ei voitu poistaa."
#. T7T8x
-#: cui/inc/strings.hrc:238
+#: cui/inc/strings.hrc:237
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "Virhe objektin poistossa"
#. SCgXy
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:238
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "Objektia ei voitu luoda."
#. TmiCU
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr "Samanniminen objekti on jo olemassa."
#. ffc5M
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "Virhe luotaessa objektia"
#. hpB8B
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "Objektia ei voitu nimetä uudelleen."
#. eevjm
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "Virhe nimettäessä objektia uudelleen"
#. fTHFY
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME-virhe"
#. e6BgS
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:244
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "Komentokieltä %LANGUAGENAME ei tueta."
#. EUek9
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "%LANGUAGENAME-komentosarjaa %SCRIPTNAME suoritettaessa tapahtui virhe."
#. KVQAh
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "%LANGUAGENAME-komentosarjaa %SCRIPTNAME suoritettaessa tapahtui poikkeus."
#. 5bFCQ
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "%LANGUAGENAME-komentosarjaa %SCRIPTNAME suoritettaessa tapahtui virhe rivillä: %LINENUMBER."
#. KTptU
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "%LANGUAGENAME-komentosarjaa %SCRIPTNAME suoritettaessa tapahtui poikkeus rivillä: %LINENUMBER."
#. BZDbp
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "%LANGUAGENAME-komentosarjaa %SCRIPTNAME suoritettaessa tapahtui komentosarjakehysvirhe."
#. AAghx
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "Tyyppi:"
#. GAsca
-#: cui/inc/strings.hrc:252
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "Viesti:"
#. ZcxRY
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathTypestä %PRODUCTNAME Mathiin tai toisin päin"
#. Ttggs
-#: cui/inc/strings.hrc:255
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWordista %PRODUCTNAME Writeriin tai toisin päin"
#. ZJRKY
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:255
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excelistä %PRODUCTNAME Calciin tai toisin päin"
#. VmuND
-#: cui/inc/strings.hrc:257
+#: cui/inc/strings.hrc:256
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPointista %PRODUCTNAME Impressiin tai toisin päin"
#. sE8as
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:257
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArtista %PRODUCTNAME-muodoiksi tai toisin päin"
#. AEgXY
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:258
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr "Visiosta %PRODUCTNAME Drawiin tai toisin päin"
#. Zarkq
-#: cui/inc/strings.hrc:260
+#: cui/inc/strings.hrc:259
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr "PDF:stä %PRODUCTNAME Drawiin tai toisin päin"
#. dDtDU
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:261
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1405,7 +1405,7 @@ msgstr ""
"Anna uusi nimi."
#. kzhkA
-#: cui/inc/strings.hrc:263
+#: cui/inc/strings.hrc:262
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1427,133 +1427,133 @@ msgstr ""
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:278
+#: cui/inc/strings.hrc:277
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "Taipuu kuin"
#. LPb5d
-#: cui/inc/strings.hrc:279
+#: cui/inc/strings.hrc:278
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "Korvaa"
#. anivV
-#: cui/inc/strings.hrc:280
+#: cui/inc/strings.hrc:279
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Haluatko vaihtaa sanaston '%1' kieltä?"
#. XEFrB
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:281
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "Haluatko varmasti poistaa väriteeman?"
#. ybdED
-#: cui/inc/strings.hrc:283
+#: cui/inc/strings.hrc:282
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "Väriteeman poisto"
#. DoNBE
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:283
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "Tallenna teema"
#. tFrki
-#: cui/inc/strings.hrc:285
+#: cui/inc/strings.hrc:284
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "Väriteeman nimi"
#. BAGbe
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:286
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "Oikoluku"
#. uBohu
-#: cui/inc/strings.hrc:288
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "Tavutus"
#. XGkt6
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "Synonyymisanasto"
#. EFrDA
-#: cui/inc/strings.hrc:290
+#: cui/inc/strings.hrc:289
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "Kielioppi"
#. zbEv9
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:290
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "Tarkista isolla kirjoitetut sanat"
#. BbDNe
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "Tarkista lukuja sisältävät sanat "
#. bPDyB
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "Tarkista erityisalueet"
#. XjifG
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "Oikolue kirjoittaessa"
#. J3ENq
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:294
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "Tarkista kielioppi kirjoittaessa"
#. f6v3L
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "Sanojen vähimmäispituus tavutuksessa: "
#. BCrEf
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "Merkit ennen rivinvaihtoa: "
#. Kgioh
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "Merkit rivinvaihdon jälkeen: "
#. AewrH
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:298
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "Tavuta kysymättä"
#. qCKn9
-#: cui/inc/strings.hrc:300
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "Tavuta erityisalueet"
#. weKUF
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1563,7 +1563,7 @@ msgstr ""
"Valitse toinen kansio."
#. jFLdB
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1573,13 +1573,13 @@ msgstr ""
"Valitse toinen kansio."
#. 79uiz
-#: cui/inc/strings.hrc:304
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "Muokkaa parametria"
#. fsbAN
-#: cui/inc/strings.hrc:306
+#: cui/inc/strings.hrc:305
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1591,37 +1591,37 @@ msgstr ""
"Porttinumeron suurin mahdollinen arvo on 65535."
#. UCFD6
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:307
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "Anna liukuvärjäykselle nimi:"
#. UDvKR
-#: cui/inc/strings.hrc:309
+#: cui/inc/strings.hrc:308
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "Anna bittikartalle nimi:"
#. QXqJD
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:309
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "Anna ulkoiselle bittikartalle nimi:"
#. SrS6X
-#: cui/inc/strings.hrc:311
+#: cui/inc/strings.hrc:310
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "Anna kuviolle nimi:"
#. yD7AW
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:311
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "Anna viivatyylille nimi:"
#. FQDrh
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1631,2388 +1631,2496 @@ msgstr ""
"Muuta valittua viivatyyliä tai lisää uusi viivatyyli."
#. Z5Dkg
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "Anna viivoitukselle nimi:"
#. rvyBi
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:314
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "Muuta"
#. ZDhBm
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "Lisää"
#. QgAFH
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "Anna uudelle värille nimi:"
#. GKnJR
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "Taulukko"
#. J6FBw
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:318
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "Anna uudelle nuolenkärjelle nimi:"
#. xD9BU
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "Ei %1"
#. GVkFG
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "Fonttiperhe:"
#. 6uDkp
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "Fontti:"
#. KFXAV
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "Tyyli:"
#. gDu75
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "Kirjaintyyppi:"
#. BcWHA
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "Käytä korvaustaulukkoa"
#. L8BEE
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "Korjaa KAksi ISoa ALkukirjainta"
#. p5h3s
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "Muuta jokaisen virkkeen alkukirjain isoksi"
#. prrWd
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "Automaattinen *lihavointi*, /kursivointi/, -yliviivaus- ja _alleviivaus_"
#. a89xT
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "Ohita kaksoisvälilyönnit"
#. qEA6h
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "URL-tunnistus"
#. JfySE
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "Korvaa viivat"
#. u2BuA
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "Korjaa cAPS LOCK -näppäimen tahaton käyttö"
#. GZqG9
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "Lisää sitova välilyönti tiettyjen välimerkkien edelle ranskankielisessä tekstissä"
#. NDmW9
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "Muotoile järjestyslukujen jälkiliitteet (1st -> 1^st)"
#. 6oHuF
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:334
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr ""
#. CNtDd
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr "Korvaa << ja >> kulmalainausmerkeillä"
#. Rc6Zg
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "Poista tyhjät kappaleet"
#. F6HCc
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:337
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "Korvaa mukautetut tyylit"
#. itDJG
-#: cui/inc/strings.hrc:339
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr "Korvaa luettelomerkit seuraavalla: %1"
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr "Yhdistä yhden rivin kappaleet, jos pituus on suurempi kuin %1"
#. M9kNQ
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr "Numeroimattomat ja numeroidut luettelot. Luettelomerkki: %1"
#. BJVGT
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "Käytä kehystä"
#. bXpcq
-#: cui/inc/strings.hrc:344
+#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "Luo taulukko"
#. RvEBo
-#: cui/inc/strings.hrc:345
+#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "Käytä tyylejä"
#. 6MGUe
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "Poista välilyönnit ja sarkaimet kappaleiden alusta ja lopusta"
#. R9Kke
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "Poista välilyönnit ja sarkaimet rivien alusta ja lopusta"
#. GFpkR
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "Yhdysviiva"
#. XDp8d
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "Mittajana"
#. Mxt3D
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "Lainauksen aloitus"
#. o8nY6
-#: cui/inc/strings.hrc:351
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "Lainauksen lopetus"
#. zvqUJ
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ei reunoja"
#. ABKEK
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Vain uloin reuna"
#. ygU8P
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Ulompi reuna ja vaakaviivat"
#. q5KJ8
-#: cui/inc/strings.hrc:356
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Ulompi reuna ja kaikki sisemmät viivat"
#. H5s9X
-#: cui/inc/strings.hrc:357
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Ulompi reuna muuttamatta sisempiä viivoja"
#. T5crG
-#: cui/inc/strings.hrc:358
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Aseta vain lävistäjäviivat"
#. S6AAA
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:358
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Kaikki neljä reunaa"
#. tknFJ
-#: cui/inc/strings.hrc:360
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Vain vasen ja oikea reuna"
#. hSmnW
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:360
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Vain ylä- ja alareuna"
#. Dy2UG
-#: cui/inc/strings.hrc:362
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Vain vasen reuna"
#. nCjXG
-#: cui/inc/strings.hrc:363
+#: cui/inc/strings.hrc:362
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Aseta ylä- ja alareunat ja kaikki sisemmät viivat"
#. 46Fq7
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Aseta vasen ja oikea reuna ja kaikki sisemmät viivat"
#. cZX7G
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:364
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ei varjoa"
#. bzAHG
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:365
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Varjo alaoikealle"
#. FjBGC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:366
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Varjo yläoikealle"
#. 5BkoC
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:367
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Varjo alavasemmalle"
#. GYB8M
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:368
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Varjo ylävasemmalle"
#. xTvak
-#: cui/inc/strings.hrc:370
+#: cui/inc/strings.hrc:369
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Allekirjoittanut: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:371
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Kaikki tiedostot"
#. 8bnrf
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Rekisteröidyt tietokannat"
#. xySty
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "URL-osoitetta <%1> ei voi muuttaa tiedostojärjestelmän poluksi."
#. XtUDA
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2020 LibreOffice contributors."
msgstr "Tekijänoikeus © 2000–2020 LibreOfficen osallistujat."
#. GesDU
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Tämän ohjelmaversion toimitti %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice pohjautui OpenOffice.orgiin."
#. 9aeNR
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME on johdettu LibreOfficesta, joka pohjautui OpenOffice.orgiin"
#. q5Myk
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "Käyttöliittymä: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Muokkaa polkuja: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "Komento"
#. dRqYc
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "Työkaluvihje"
#. 3FZFt
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "URL-osoite tai teksti on liian pitkä nykyiselle virheenkorjaustasolle. Lyhennä tekstiä tai vähennä korjaustasoa."
#. AD8QJ
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:393
+#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "Valitse poistettava väri"
-#. m8rYd
+#. FjQQ5
+#: cui/inc/strings.hrc:394
+msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
+msgid "Install"
+msgstr "Asenna"
+
+#. 2GUFq
+#: cui/inc/strings.hrc:395
+msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
+msgid "Installed"
+msgstr "Asennettu"
+
+#. TmK5f
+#: cui/inc/strings.hrc:396
+msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
+msgid "Installing"
+msgstr "Asennetaan"
+
+#. izdAK
+#: cui/inc/strings.hrc:397
+msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
+msgid "Searching..."
+msgstr "Etsitään..."
+
+#. HYT6K
+#: cui/inc/strings.hrc:398
+msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
+msgid "Loading..."
+msgstr "Ladataan..."
+
+#. 88Ect
+#: cui/inc/strings.hrc:399
+msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
+msgid "Extensions"
+msgstr "Lisäosat"
+
+#. KTtQE
+#: cui/inc/strings.hrc:401
+msgctxt "RID_SVXSTR_UI_APPLYALL"
+msgid "Apply to %MODULE"
+msgstr ""
+
+#. mpS3V
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "%PRODUCTNAME offers a variety of user interface options to make you feel at home"
+msgstr ""
+
+#. m8rYd
+#: cui/inc/tipoftheday.hrc:49
+msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
msgstr ""
#. BDEBo
#. local help missing
-#: cui/inc/tipoftheday.hrc:49
+#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To print the notes of your slides go to File ▸ Print ▸ Impress tab and select Notes under Document ▸ Type."
msgstr ""
#. TWjA5
-#: cui/inc/tipoftheday.hrc:50
+#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To start temporarily with a fresh user profile, or to restore a non-working %PRODUCTNAME, use Help ▸ Restart in Safe Mode."
msgstr "Käynnistääksesi %PRODUCTNAMEn tilapäisesti uudella käyttäjäprofiililla tai palauttaaksesi jumiutuneen %PRODUCTNAMEn toimintakuntoon, valitse Ohje ▸ Käynnistä uudelleen vikasietotilassa."
#. Hv5Ff
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/profile_safe_mode.html
-#: cui/inc/tipoftheday.hrc:51
+#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writing a book? %PRODUCTNAME master document lets you manage large documents as a container for individual %PRODUCTNAME Writer files."
msgstr ""
#. ZZtD5
#. local help missing
-#: cui/inc/tipoftheday.hrc:52
+#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
msgstr "Luo muokattavia hybridi-PDF-tiedostoja %PRODUCTNAMEn avulla."
#. LBkjN
-#: cui/inc/tipoftheday.hrc:53
+#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Explore the ten different functions in the status bar (at the bottom of the document window). Place the cursor over each field for an explanation. If not visible, use View ▸ Status Bar."
msgstr ""
#. 7JRpP
-#: cui/inc/tipoftheday.hrc:54
+#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sum a cell through several sheets? Refer to the range of sheets e.g. =SUM(Sheet1.A1:Sheet3.A1)."
msgstr ""
#. D7uEG
-#: cui/inc/tipoftheday.hrc:55
+#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create fillable form documents (even PDFs) with %PRODUCTNAME."
msgstr "Luo täytettäviä lomakkeita (myös PDF-tiedostoja) %PRODUCTNAMEn avulla."
#. BSUoN
-#: cui/inc/tipoftheday.hrc:56
+#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot see all the text in a cell? Expand the input line in the formula bar and you can scroll."
msgstr ""
#. 3JyGD
-#: cui/inc/tipoftheday.hrc:57
+#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Optimize your table layout with Table ▸ Size ▸ Distribute Rows / Columns Evenly."
msgstr ""
#. prXEA
-#: cui/inc/tipoftheday.hrc:58
+#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"
msgstr ""
#. DUvk6
-#: cui/inc/tipoftheday.hrc:59
+#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon style."
msgstr "Vaihda kuvakkeita kohdasta Työkalut ▸ Asetukset ▸ %PRODUCTNAME ▸ Näkymä ▸ Käyttöliittymä ▸ Kuvaketyyli."
#. RejqP
-#: cui/inc/tipoftheday.hrc:60
+#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can display a number as a fraction (0.125 = 1/8): Format ▸ Cells, Number ▸ Fraction."
msgstr "Voit näyttää luvun murtolukuna (0,125 = 1/8): Muotoilu ▸ Solut, Luku ▸ Murtoluku."
#. VxuFm
-#: cui/inc/tipoftheday.hrc:61
+#: cui/inc/tipoftheday.hrc:62
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove a hyperlink but keep its text, right-click on the hyperlink, and use “Remove Hyperlink”."
msgstr "Poistaaksesi hyperlinkin, mutta säilyttääksesi sen tekstin, napsauta hyperlinkkiä hiiren oikealla painikkeella ja valitse \"Poista hyperlinkki\"."
#. FeNXF
-#: cui/inc/tipoftheday.hrc:62
+#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove several hyperlinks at once, select the text with the hyperlinks, then right-click and use “Remove Hyperlink”."
msgstr "Poistaaksesi useita hyperlinkkejä kerralla valitse teksti, jossa hyperlinkit ovat, napsauta hiiren oikealla painikkeella ja valitse \"Poista hyperlinkki\"."
#. VnFnz
-#: cui/inc/tipoftheday.hrc:63
+#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To zoom a selection to fit the entire window in Draw, use the / (divide key) on the number pad."
msgstr "Zoomataksesi valinnan koko ikkunan kokoiseksi Drawissa, paina / (jakolaskun näppäin) numeronäppäimistöltä."
#. xfHwX
-#: cui/inc/tipoftheday.hrc:64
+#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click a column field (row) PivotTable and press F12 to group data. Choices adapt to content: Date (month, quarter, year), number (classes)"
msgstr ""
#. FhU4G
-#: cui/inc/tipoftheday.hrc:65
+#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can restart the slide show after a pause specified at Slide Show ▸ Slide Show Settings ▸ Loop and repeat."
msgstr ""
#. 5SoBD
-#: cui/inc/tipoftheday.hrc:66
+#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To distribute some text in multi-columns select the text and apply Format ▸ Columns."
msgstr ""
#. hr7ym
-#: cui/inc/tipoftheday.hrc:67
+#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use View ▸ Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background."
msgstr ""
#. y5bEE
#. local help missing
-#: cui/inc/tipoftheday.hrc:68
+#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create different master pages in a presentation template: View ▸ Master Slide and Slide ▸ New Master (or per toolbar or right click in slide pane)."
msgstr ""
#. b3KPF
-#: cui/inc/tipoftheday.hrc:69
+#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a pivot table? Click on drop-list’s arrow in the row/col header and select sort method: ascending, descending, or custom."
msgstr ""
#. CvgZt
-#: cui/inc/tipoftheday.hrc:70
+#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Display photos or images with different shapes in Writer. Insert and select shape, then Insert ▸ Image. To adjust image, right-click on selected shape and choose Area."
msgstr ""
#. si5Y9
-#: cui/inc/tipoftheday.hrc:71
+#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Page/Slide ▸ Properties ▸ “Fit object to paper format” in Draw/Impress to resize the objects so that they fit on your chosen paper format."
msgstr ""
#. hj7H4
-#: cui/inc/tipoftheday.hrc:72
+#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit the entire page in a Draw window, use * on the number pad."
msgstr "Sovita koko sivu Draw-ikkunaan painamalla * numeronäppäimistöltä."
#. pESS4
-#: cui/inc/tipoftheday.hrc:73
+#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In a Draw page, use “-” to zoom out; “+” to zoom in."
msgstr "Draw-sivulla paina ”-” zoomataksesi ulos ja ”+” zoomataksesi sisään."
#. PJFH2
-#: cui/inc/tipoftheday.hrc:74
+#: cui/inc/tipoftheday.hrc:75
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
#. VvEKg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
-#: cui/inc/tipoftheday.hrc:75
+#: cui/inc/tipoftheday.hrc:76
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
msgstr ""
#. AzNEm
-#: cui/inc/tipoftheday.hrc:76
+#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
msgstr "%PRODUCTNAME tukee käyttöä helpottavia työkaluja, kuten ulkoisia ruudunlukijoita, Braille-laitteita tai puhetta tunnistavia syöttölaitteita."
#. SiwUL
-#: cui/inc/tipoftheday.hrc:77
+#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
msgstr "Haluatko lajitella A1, A2, A3, A11, A15 -tyyppisen sarjan %PRODUCTNAME Calcissa aakkosjärjestyksen sijaan numerojärjestykseen? Ota käyttöön luonnollinen lajittelu Asetukset-välilehdellä."
#. Wx8QG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/12030200.html
-#: cui/inc/tipoftheday.hrc:78
+#: cui/inc/tipoftheday.hrc:79
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the default function in the status bar: right click on the area."
msgstr ""
#. 6soFJ
-#: cui/inc/tipoftheday.hrc:79
+#: cui/inc/tipoftheday.hrc:80
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to add many of the same shapes in Draw/Impress? Double-click a tool in the drawing toolbar to use it for repeated tasks."
msgstr ""
#. DDGnC
-#: cui/inc/tipoftheday.hrc:80
+#: cui/inc/tipoftheday.hrc:81
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%MOD1+Shift+F9 recalculates all formulas in all spreadsheets."
msgstr "%MOD1+Vaihto+F9 laskee uudelleen kaikki kaavat kaikissa laskentataulukoissa."
#. U5wE4
-#: cui/inc/tipoftheday.hrc:81
+#: cui/inc/tipoftheday.hrc:82
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to keep a part of an editable document as read-only? Insert ▸ Section. Add text to the section, then right-click “Edit Section” and check “Protect”."
msgstr ""
#. KtRU8
-#: cui/inc/tipoftheday.hrc:82
+#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Backspace key instead of Delete in Calc. You can choose what to delete."
msgstr "Käytä Delete-näppäimen sijaan askelpalautinta Calcissa. Voit valita, mitä poistat."
#. UuWHK
-#: cui/inc/tipoftheday.hrc:83
+#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Best way to fix bad-looking MS Word table cells via Table ▸ Size ▸ Optimal Row Height / Column Width."
msgstr ""
#. HEfCq
-#: cui/inc/tipoftheday.hrc:84
+#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To repeat a table heading when a table spans over a page, use Table ▸ Table Properties ▸ Text Flow ▸ Repeat heading."
msgstr ""
#. wBMUD
-#: cui/inc/tipoftheday.hrc:85
+#: cui/inc/tipoftheday.hrc:86
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly insert or delete rows, select the desired number of rows (or columns) and press %MOD1+ to add or %MOD1- to delete."
msgstr ""
#. gEysu
-#: cui/inc/tipoftheday.hrc:86
+#: cui/inc/tipoftheday.hrc:87
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To repeat rows/columns on every pages use Format ▸ Print Ranges ▸ Edit."
msgstr ""
#. S8KZH
-#: cui/inc/tipoftheday.hrc:87
+#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert images and photos into shapes in Draw and Impress. Right-click on a shape, choose Area ▸ Bitmap ▸ Add/Import, and use Options to adjust appearance."
msgstr ""
#. W6E2A
-#: cui/inc/tipoftheday.hrc:88
+#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to insert the date in a spreadsheet cell? Type %MOD1+; or Shift+%MOD1+; to insert the time."
msgstr "Haluatko lisätä päivämäärän laskentataulukon soluun? Paina %MOD1+, tai Vaihto+%MOD1+, lisätäksesi kellonajan."
#. vAFKt
-#: cui/inc/tipoftheday.hrc:89
+#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert your metadata in your document with Insert ▸ Fields ▸ More Fields… ▸ Document or DocInformation."
msgstr ""
#. FHorg
-#: cui/inc/tipoftheday.hrc:90
+#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
msgstr "Saat apua yhteisöltä Ask-portaalissa."
#. qnAAh
-#: cui/inc/tipoftheday.hrc:91
+#: cui/inc/tipoftheday.hrc:92
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Shift+Space to select the current row and %MOD1+Space to select the current column."
msgstr "Paina Vaihto+Välilyönti valitaksesi nykyisen rivin ja %MOD1+Välilyönti valitaksesi nykyisen sarakkeen."
#. MFv5S
-#: cui/inc/tipoftheday.hrc:92
+#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can move an object to another layer by holding it until its edges flash, then drag it to the tab of the layer you want to move it to."
msgstr ""
#. 3NRDt
-#: cui/inc/tipoftheday.hrc:93
+#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data ▸ Validity allows you to create drop-down lists where the user selects a value instead of typing."
msgstr ""
#. uikxZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:94
+#: cui/inc/tipoftheday.hrc:95
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Hold down %MOD1 and turn the mouse wheel to change the zoom factor."
msgstr "Pidä %MOD1 painettuna ja pyöritä hiiren rullaa muuttaaksesi zoomauskerrointa."
#. 7QLxF
-#: cui/inc/tipoftheday.hrc:95
+#: cui/inc/tipoftheday.hrc:96
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity—check them out."
msgstr "%PRODUCTNAMElle on saatavissa mainioita lisäosia – kokeile!"
#. DyoMt
-#: cui/inc/tipoftheday.hrc:96
+#: cui/inc/tipoftheday.hrc:97
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to count words for just one particular paragraph style? Use Edit ▸ Find and Replace, click Paragraph Styles, select the style in Find, and click Find All. Read the result in the status bar."
msgstr ""
#. VBCF7
-#: cui/inc/tipoftheday.hrc:97
+#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Generate fully customized PDF documents with the exact format, image compression, comments, access rights, password, etc., via File ▸ Export as PDF."
msgstr ""
#. XWchY
-#: cui/inc/tipoftheday.hrc:98
+#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
msgstr "Writeriin sisältyy LibreLogo: yksinkertainen Logo-tyyppinen ohjelmointiympäristö, johon sisältyy kilpikonnavektorigrafiikka, työpöytäjulkaiseminen ja graafinen suunnittelu."
#. 8x8QZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:99
+#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Construct your own 2D shapes in Draw. Select two or more objects, and explore possibilities with Shape ▸ Combine, Shape ▸ Merge, Shape ▸ Subtract, and Shape ▸ Intersect."
msgstr ""
#. f6Lan
-#: cui/inc/tipoftheday.hrc:100
+#: cui/inc/tipoftheday.hrc:101
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do you plan to change your computer and want to recover your customizations? See:"
msgstr "Oletko vaihtamassa tietokonetta ja haluat säilyttää omat asetuksesi? Katso:"
#. EkpTG
-#: cui/inc/tipoftheday.hrc:101
+#: cui/inc/tipoftheday.hrc:102
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can toggle between the field names and the actual value with View ▸ Fields Names (or %MOD1+F9)."
msgstr ""
#. 5ZVTy
-#: cui/inc/tipoftheday.hrc:102
+#: cui/inc/tipoftheday.hrc:103
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Show or hide comments in Writer by clicking the comment toggle button in the ruler."
msgstr ""
#. YQ8cC
-#: cui/inc/tipoftheday.hrc:103
+#: cui/inc/tipoftheday.hrc:104
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To enable macro recording, check Tools ▸ Options ▸ %PRODUCTNAME ▸ Advanced ▸ Enable macro recording."
msgstr "Ota makrojen nauhoittaminen käyttöön valitsemalla Työkalut ▸ Asetukset ▸ %PRODUCTNAME ▸ Lisäasetukset ▸ Ota käyttöön makrojen nauhoittaminen"
#. EnQur
-#: cui/inc/tipoftheday.hrc:104
+#: cui/inc/tipoftheday.hrc:105
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a placeholder for an image in a Writer template? Use Insert ▸ Fields ▸ More fields, click Functions tab, choose PlaceHolder for Type and Image for Format."
msgstr ""
#. sSeTz
-#: cui/inc/tipoftheday.hrc:105
+#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr "%PRODUCTNAME tukee neljää makrojen turvallisuustasoa (matalasta erittäin korkeaan) ja luotettuja lähteitä."
#. FnWjD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
-#: cui/inc/tipoftheday.hrc:106
+#: cui/inc/tipoftheday.hrc:107
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
msgstr "%PRODUCTNAME aikoo pyrkiä Google Summer of Code (GSoC) -ohjelmaan:"
#. SNTbc
-#: cui/inc/tipoftheday.hrc:107
+#: cui/inc/tipoftheday.hrc:108
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr "Tiesitkö että voit liittää tekstin osiin huomautuksia? Käytä näppäinyhdistelmää %MOD1+%MOD2+C."
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:108
+#: cui/inc/tipoftheday.hrc:109
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr "Haluatko siirtää yhtä tai useampaa kappaletta? Leikkaaminen ja liittäminen ei ole välttämätöntä: voit käyttää näppäinyhdistelmää %MOD1+%MOD2+Nuoli (ylös/alas)"
#. JDGDc
-#: cui/inc/tipoftheday.hrc:109
+#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:110
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:111
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr "Paina %MOD1+%MOD2+Vaihto+V liittääksesi leikepöydän sisällön muotoilemattomana tekstinä."
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr "Mukauta alaviitteiden ulkoasua valitsemalla Työkalut ▸ Ala- ja loppuviitteet…"
#. muc5F
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr "Haluatko muuttaa oikoluvun asetuksia jollekin tekstin osalle? Napsauta tilarivin kielialuetta tai käytä tyyliä."
#. oTX4L
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr "Pääset ohjeeseen painamalla F1, jos ohje on asennettu. Muussa tapauksessa voit lukea sitä verkossa:"
#. n3b6P
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr "Voit muuttaa %PRODUCTNAMEn ulkoasua valitsemalla Työkalut ▸ Asetukset ▸ Näkymä ▸ Käyttöliittymä."
#. J853i
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can show formulas instead of results with View ▸ Show Formula (or Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Display ▸ Formulas)."
msgstr ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr "%PRODUCTNAMEa kehittää ystävällinen yhteisö, joka koostuu sadoista osallistujista ympäri maailman. Liity mukaan, muutkin taidot kuin koodaaminen ovat avuksi."
#. GEJXj
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:131
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr "Vaihto+%MOD1+Delete poistaa kohdistimen kohdalta nykyisen virkkeen loppuun."
#. XDhNo
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr "Ärsyttävätkö solujen ympäri kulkevat \"muurahaiset\" Calcissa? Paina Esc pysäyttääksesi ne; kopioitu sisältö pysyy edelleen valmiina liitettäväksi."
#. fsDVc
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr "Haluatko %PRODUCTNAME-lähettilääksi? Kehittäjille, ylläpitäjille ja kouluttajille on sertifiointeja."
#. VWNyB
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr "Uusien sanastojen lisääminen %PRODUCTNAMEen on helppoa: ne ovat saatavilla lisäosina."
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr "Käytä kolmannen osapuolen lisäosaa viitteidenhallintaan."
#. ALczh
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr "Voit mukauttaa hiiren keskimmäisen painikkeen toimintaa valitsemalla Työkalut ▸ Asetukset ▸ %PRODUCTNAME ▸ Näkymä ▸ Hiiren keskipainike."
#. qQsXD
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr "Määritä usein käyttämäsi tekstit automaattisiksi teksteiksi. Niitä voi lisätä mihin tahansa Writer-asiakirjaan nimen perusteella, pikanäppäimellä tai työkaluriviltä."
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr "%PRODUCTNAME Calc ei laske vasemmalta oikealle, vaan järjestyksessä sulkeet – eksponentit – kertolasku – jakolasku – yhteenlasku – vähennyslasku."
#. heb7V
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr "%PRODUCTNAMEn dokumentaatio ja ilmaiset ohjekirjat löytyvät osoitteesta:"
#. T6uNP
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr "Haluatko hallita hyperlinkkien esitystapaa laskentataulukossa? Lisää ne HYPERLINKKI-funktiolla."
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr ""
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr "Käytä Android- tai iPhone-puhelintasi Impress-esityksen kauko-ohjaimena."
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr "Haluatko tietää, montako päivää tässä kuussa on? Käytä PÄIVIÄ.KUUKAUDESSA(TÄMÄ.PÄIVÄ()) -funktiota."
#. z72JP
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr "Näkyvätkö lukusi risuaitoina laskentataulukossasi? Sarake on liian kapea kaikkien numeroiden näyttämiseen."
#. REoF7
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr "Ota käyttöön kaavasolujen massiivinen rinnakkaislaskenta kohdasta Työkalut ▸ Asetukset ▸ OpenCL."
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr "Lahjoituksesi tukevat maailmanlaajuista yhteisöämme."
#. V2QjS
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr "Haluatko lisätä päivämäärään x kuukautta? Käytä seuraavaa: =PÄIVÄ.KUUKAUSI(päivämäärä;kuukautta)"
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr "Esittäjän apunäyttö on mainio ominaisuus %PRODUCTNAME Impressissä. Oletko kokeillut?"
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr "Muunna helposti asiakirjasi PDF-muotoon yhdellä napsautuksella työkalurivin PDF-kuvakkeesta."
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr "Haluatko tietää, mitä komentoriviparametreja voit käyttää? Käynnistä soffice parametrilla --help tai -h tai -?"
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
#. AFuSB
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:192
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apply Heading paragraph styles in Writer with shortcut keys: %MOD1+1 applies Heading 1, %MOD1+2 applies Heading 2, etc."
msgstr ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:203
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr "Lisätäksesi nykyisen päivämäärän asiakirjaan, valitse Lisää ▸ Kenttä ▸ Päivämäärä."
#. vGKBe
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr "Onko Writer-asiakirjassasi paljon kuvia? Nopeuta ohjelman toimintaa poistamalla käytöstä asetus Näytä ▸ Kuvat ja kaaviot."
#. Y85ij
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr "Voit allekirjoittaa olemassa olevia PDF-tiedostoja ja todentaa allekirjoitukset."
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr "Luotko usein asiakirjoja aiempien asiakirjojen pohjalta? Harkitse mallien käyttämistä."
#. nESeG
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr "Jos sinulla on vaikeuksia liittää asiakirjaan tekstiä PDF-tiedostoista tai verkkosivuilta, kokeile liittää muotoilemattomana tekstinä (%MOD1+%MOD2+Vaihto+V)."
#. BtaBD
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr "Käytä Calcissa KESKIARVO.TASATTU() -funktiota saadaksesi keskiarvon tietojoukosta, poislukien korkeimman ja matallimman arvon."
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Toolbars are contextual—they open depending on the context. If you do not want that, uncheck them from View ▸ Toolbars."
msgstr ""
#. XzmhB
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:239
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. GB8vo
#. local help missing
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr "Luo kaavio Writer-taulukon pohjalta napsauttamalla taulukkoa ja valitsemalla Lisää ▸ Kaavio."
#. j4m6F
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr "%PRODUCTNAME tukee yli 150 kieltä."
#. SLU8G
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit ▸ Find and Replace ▸ Other options ▸ Attributes ▸ Font weight."
msgstr ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr "Voit lajitella kappaleita tai taulukon rivejä aakkos- tai numerojärjestykseen valitsemalla Työkalut ▸ Lajittele."
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:248
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr "Käytä %PRODUCTNAMEa kaikissa selaimissa rollAppin avulla."
#. mPz5B
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr "Outo virhekoodi Calcissa, Err: jonka perässä on numero? Selitys löytyy tältä sivulta:"
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. DGCZW
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a serie? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill."
msgstr ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:261
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr "Etsiäksesi useista laskentataulukoista, valitse ne ennen haun aloittamista."
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr "Haluatko, että Calcissa arvon syöttämisen jälkeen kohdistin siirtyy oikeanpuoleiseen soluun? Käytä sarkainnäppäintä Enterin sijaan."
#. UggLQ
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr "%PRODUCTNAMEn uudet versiot tarjoavat uusia ominaisuuksia, vikojen korjauksia ja tietoturvapäivityksiä. Pidä ohjelmistosi ajan tasalla!"
#. cmz6r
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr "Kehitätkö uusia XSLT- ja XML-suodattimia?"
#. hsZPg
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:273
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr "%PRODUCTNAME-ohje"
#. NG4jW
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:274
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr "Lisätietoja"
-#. CB6ie
-#: cui/inc/tipoftheday.hrc:274
+#. sCREc
+#: cui/inc/tipoftheday.hrc:275
+msgctxt "STR_UNO_LINK"
+msgid "Run this action now..."
+msgstr ""
+
+#. P6JME
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_TITLE"
-msgid "Tip of the Day"
-msgstr "Päivän vinkki"
+msgid "Tip of the Day: %CURRENT/%TOTAL"
+msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:275
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:276
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr "Ctrl"
#. mZWSR
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_CMD"
msgid "Alt"
msgstr "Alt"
#. QtEGa
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
+#. DKCuY
+#: cui/inc/toolbarmode.hrc:22
+msgctxt "RID_CUI_TOOLBARMODES"
+msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended to user who are familiar with the classic interface."
+msgstr ""
+
+#. S5tR2
+#: cui/inc/toolbarmode.hrc:23
+msgctxt "RID_CUI_TOOLBARMODES"
+msgid "Standard user interface but with only one toolbar. Intended for use on small screens."
+msgstr ""
+
+#. wKg2Q
+#: cui/inc/toolbarmode.hrc:24
+msgctxt "RID_CUI_TOOLBARMODES"
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
+msgstr ""
+
+#. MEQAE
+#: cui/inc/toolbarmode.hrc:25
+msgctxt "RID_CUI_TOOLBARMODES"
+msgid "The Tabbed user interface is the most similar to the Ribbons used by Microsoft. It organize functions in tabs and makes the main menu obsolete."
+msgstr ""
+
+#. hXNUY
+#: cui/inc/toolbarmode.hrc:26
+msgctxt "RID_CUI_TOOLBARMODES"
+msgid "The Tabbed Compact variant aims to be familiar with Microsoft's interface having at the same time a short interface for small screen sizes."
+msgstr ""
+
+#. GFycb
+#: cui/inc/toolbarmode.hrc:27
+msgctxt "RID_CUI_TOOLBARMODES"
+msgid "The Groupedbar Compact variant provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The compact variant favors vertical size."
+msgstr ""
+
+#. Exopn
+#: cui/inc/toolbarmode.hrc:28
+msgctxt "RID_CUI_TOOLBARMODES"
+msgid "The Groupedbar interface provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The full variant favors functions and is slightly larger than other variants."
+msgstr ""
+
+#. LNaMA
+#: cui/inc/toolbarmode.hrc:29
+msgctxt "RID_CUI_TOOLBARMODES"
+msgid "The Contextual Single interface shows functions in a single line toolbar with contextual depending content."
+msgstr ""
+
+#. xcPJ4
+#: cui/inc/toolbarmode.hrc:30
+msgctxt "RID_CUI_TOOLBARMODES"
+msgid "The Contextual Groups interface focus on beginners. It exposes to the most frequently used functions on groups with the core action as large icon and a couple of small additional features. All functions have a label. Depending on the context an additional section provides access to those functions."
+msgstr ""
+
#. Xnz8J
-#: cui/inc/treeopt.hrc:34
+#: cui/inc/treeopt.hrc:33
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
#. CaEWP
-#: cui/inc/treeopt.hrc:35
+#: cui/inc/treeopt.hrc:34
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "User Data"
msgstr "Käyttäjän tiedot"
#. 7XYLG
-#: cui/inc/treeopt.hrc:36
+#: cui/inc/treeopt.hrc:35
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "General"
msgstr "Yleistä"
#. HCH7S
-#: cui/inc/treeopt.hrc:37
+#: cui/inc/treeopt.hrc:36
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "View"
msgstr "Näkymä"
#. HCLxc
-#: cui/inc/treeopt.hrc:38
+#: cui/inc/treeopt.hrc:37
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Print"
msgstr "Tulostus"
#. zuF6E
-#: cui/inc/treeopt.hrc:39
+#: cui/inc/treeopt.hrc:38
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Paths"
msgstr "Polut"
#. cSVdD
-#: cui/inc/treeopt.hrc:40
+#: cui/inc/treeopt.hrc:39
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Fonts"
msgstr "Fontit"
#. XnLRt
-#: cui/inc/treeopt.hrc:41
+#: cui/inc/treeopt.hrc:40
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Security"
msgstr "Suojaus"
#. ZhEG3
-#: cui/inc/treeopt.hrc:42
+#: cui/inc/treeopt.hrc:41
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Personalization"
msgstr "Personointi"
#. DLfE7
-#: cui/inc/treeopt.hrc:43
+#: cui/inc/treeopt.hrc:42
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Application Colors"
msgstr "Sovelluksen värit"
#. hh7Mg
-#: cui/inc/treeopt.hrc:44
+#: cui/inc/treeopt.hrc:43
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Accessibility"
msgstr "Saavutettavuus"
#. oUTLV
-#: cui/inc/treeopt.hrc:45
+#: cui/inc/treeopt.hrc:44
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Advanced"
msgstr "Lisäasetukset"
#. QR2hr
-#: cui/inc/treeopt.hrc:46
+#: cui/inc/treeopt.hrc:45
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Basic IDE"
msgstr "Basic-IDE"
#. ZS4Sx
-#: cui/inc/treeopt.hrc:47
+#: cui/inc/treeopt.hrc:46
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Online Update"
msgstr "Päivitykset"
#. 8CCRN
-#: cui/inc/treeopt.hrc:48
+#: cui/inc/treeopt.hrc:47
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "OpenCL"
msgstr "OpenCL"
#. VNpPF
-#: cui/inc/treeopt.hrc:53
+#: cui/inc/treeopt.hrc:52
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Language Settings"
msgstr "Kieliasetukset"
#. JmAVh
-#: cui/inc/treeopt.hrc:54
+#: cui/inc/treeopt.hrc:53
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Languages"
msgstr "Kielet"
#. HEzGc
-#: cui/inc/treeopt.hrc:55
+#: cui/inc/treeopt.hrc:54
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Writing Aids"
msgstr "Kirjoituksen aputyökalut"
#. DLJAB
-#: cui/inc/treeopt.hrc:56
+#: cui/inc/treeopt.hrc:55
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Searching in Japanese"
msgstr "Haku japanin kielellä"
#. dkSs5
-#: cui/inc/treeopt.hrc:57
+#: cui/inc/treeopt.hrc:56
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Asian Layout"
msgstr "Aasialainen asettelu"
#. VsApk
-#: cui/inc/treeopt.hrc:58
+#: cui/inc/treeopt.hrc:57
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Complex Text Layout"
msgstr "Kompleksisen tekstin asettelu"
#. TGnig
-#: cui/inc/treeopt.hrc:63
+#: cui/inc/treeopt.hrc:62
msgctxt "SID_INET_DLG_RES"
msgid "Internet"
msgstr "Internet"
#. QJNEE
-#: cui/inc/treeopt.hrc:64
+#: cui/inc/treeopt.hrc:63
msgctxt "SID_INET_DLG_RES"
msgid "Proxy"
msgstr "Välityspalvelin"
#. EhHFs
-#: cui/inc/treeopt.hrc:65
+#: cui/inc/treeopt.hrc:64
msgctxt "SID_INET_DLG_RES"
msgid "Email"
msgstr "Sähköposti"
#. 4Cajf
-#: cui/inc/treeopt.hrc:70
+#: cui/inc/treeopt.hrc:69
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer"
#. CtZCN
-#: cui/inc/treeopt.hrc:71
+#: cui/inc/treeopt.hrc:70
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "General"
msgstr "Yleistä"
#. t9DgE
-#: cui/inc/treeopt.hrc:72
+#: cui/inc/treeopt.hrc:71
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "View"
msgstr "Näkymä"
#. MxbiL
-#: cui/inc/treeopt.hrc:73
+#: cui/inc/treeopt.hrc:72
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Formatting Aids"
msgstr "Muotoilun aputyökalut"
#. V3usW
-#: cui/inc/treeopt.hrc:74
+#: cui/inc/treeopt.hrc:73
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Grid"
msgstr "Ruudukko"
#. Cc2Ka
-#: cui/inc/treeopt.hrc:75
+#: cui/inc/treeopt.hrc:74
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Western)"
msgstr "Perusfontit (länsimaiset)"
#. TDUti
-#: cui/inc/treeopt.hrc:76
+#: cui/inc/treeopt.hrc:75
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Asian)"
msgstr "Perusfontit (aasialaiset)"
#. nfHR8
-#: cui/inc/treeopt.hrc:77
+#: cui/inc/treeopt.hrc:76
#, fuzzy
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (CTL)"
msgstr "Perusfontit (laajennettu tekstiasettelu)"
#. 38A6E
-#: cui/inc/treeopt.hrc:78
+#: cui/inc/treeopt.hrc:77
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Print"
msgstr "Tulostus"
#. UCGLq
-#: cui/inc/treeopt.hrc:79
+#: cui/inc/treeopt.hrc:78
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Table"
msgstr "Taulukko"
#. NVRAk
-#: cui/inc/treeopt.hrc:80
+#: cui/inc/treeopt.hrc:79
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Changes"
msgstr "Muutokset"
#. 3DyC7
-#: cui/inc/treeopt.hrc:81
+#: cui/inc/treeopt.hrc:80
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Comparison"
msgstr "Vertailu"
#. AtMGC
-#: cui/inc/treeopt.hrc:82
+#: cui/inc/treeopt.hrc:81
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Compatibility"
msgstr "Yhteensopivuus"
#. byMJP
-#: cui/inc/treeopt.hrc:83
+#: cui/inc/treeopt.hrc:82
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "AutoCaption"
msgstr "Automaattiotsikointi"
#. aGnq6
-#: cui/inc/treeopt.hrc:84
+#: cui/inc/treeopt.hrc:83
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Mail Merge Email"
msgstr "Joukkokirje-sähköposti"
#. trEVm
-#: cui/inc/treeopt.hrc:89
+#: cui/inc/treeopt.hrc:88
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "%PRODUCTNAME Writer/Web"
msgstr "%PRODUCTNAME Writer/Web"
#. BZ7BG
-#: cui/inc/treeopt.hrc:90
+#: cui/inc/treeopt.hrc:89
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "View"
msgstr "Näkymä"
#. 3q8qM
-#: cui/inc/treeopt.hrc:91
+#: cui/inc/treeopt.hrc:90
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Formatting Aids"
msgstr "Muotoilun aputyökalut"
#. 9fj7Y
-#: cui/inc/treeopt.hrc:92
+#: cui/inc/treeopt.hrc:91
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Grid"
msgstr "Ruudukko"
#. stfD4
-#: cui/inc/treeopt.hrc:93
+#: cui/inc/treeopt.hrc:92
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Print"
msgstr "Tulostus"
#. KpkDS
-#: cui/inc/treeopt.hrc:94
+#: cui/inc/treeopt.hrc:93
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Table"
msgstr "Taulukko"
#. 9NS67
-#: cui/inc/treeopt.hrc:95
+#: cui/inc/treeopt.hrc:94
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Background"
msgstr "Tausta"
#. 9WCAp
-#: cui/inc/treeopt.hrc:100
+#: cui/inc/treeopt.hrc:99
msgctxt "SID_SM_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Math"
msgstr "%PRODUCTNAME Math"
#. rFHDF
-#: cui/inc/treeopt.hrc:101
+#: cui/inc/treeopt.hrc:100
msgctxt "SID_SM_EDITOPTIONS_RES"
msgid "Settings"
msgstr "Asetukset"
#. vk6jX
-#: cui/inc/treeopt.hrc:106
+#: cui/inc/treeopt.hrc:105
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME Calc"
#. xe2ry
-#: cui/inc/treeopt.hrc:107
+#: cui/inc/treeopt.hrc:106
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "General"
msgstr "Yleistä"
#. xE8RH
-#: cui/inc/treeopt.hrc:108
+#: cui/inc/treeopt.hrc:107
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Defaults"
msgstr "Oletusasetukset"
#. ufTM2
-#: cui/inc/treeopt.hrc:109
+#: cui/inc/treeopt.hrc:108
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "View"
msgstr "Näkymä"
#. QMCfy
-#: cui/inc/treeopt.hrc:110
+#: cui/inc/treeopt.hrc:109
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Calculate"
msgstr "Laskenta"
#. oq8xG
-#: cui/inc/treeopt.hrc:111
+#: cui/inc/treeopt.hrc:110
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Formula"
msgstr "Kaava"
#. HUUQP
-#: cui/inc/treeopt.hrc:112
+#: cui/inc/treeopt.hrc:111
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Sort Lists"
msgstr "Järjestä listat"
#. bostB
-#: cui/inc/treeopt.hrc:113
+#: cui/inc/treeopt.hrc:112
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Changes"
msgstr "Muutokset"
#. WVbFZ
-#: cui/inc/treeopt.hrc:114
+#: cui/inc/treeopt.hrc:113
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Compatibility"
msgstr "Yhteensopivuus"
#. UZGDj
-#: cui/inc/treeopt.hrc:115
+#: cui/inc/treeopt.hrc:114
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Grid"
msgstr "Ruudukko"
#. wrdFF
-#: cui/inc/treeopt.hrc:116
+#: cui/inc/treeopt.hrc:115
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Print"
msgstr "Tulostus"
#. EeKzo
-#: cui/inc/treeopt.hrc:121
+#: cui/inc/treeopt.hrc:120
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Impress"
msgstr "%PRODUCTNAME Impress"
#. GxFDj
-#: cui/inc/treeopt.hrc:122
+#: cui/inc/treeopt.hrc:121
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "General"
msgstr "Yleistä"
#. unCEW
-#: cui/inc/treeopt.hrc:123
+#: cui/inc/treeopt.hrc:122
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "View"
msgstr "Näkymä"
#. UxXLE
-#: cui/inc/treeopt.hrc:124
+#: cui/inc/treeopt.hrc:123
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "Grid"
msgstr "Ruudukko"
#. DLCS4
-#: cui/inc/treeopt.hrc:125
+#: cui/inc/treeopt.hrc:124
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "Print"
msgstr "Tulostus"
#. wZWAL
-#: cui/inc/treeopt.hrc:130
+#: cui/inc/treeopt.hrc:129
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "%PRODUCTNAME Draw"
msgstr "%PRODUCTNAME Draw"
#. B9gGf
-#: cui/inc/treeopt.hrc:131
+#: cui/inc/treeopt.hrc:130
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "General"
msgstr "Yleistä"
#. oiiBb
-#: cui/inc/treeopt.hrc:132
+#: cui/inc/treeopt.hrc:131
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "View"
msgstr "Näkymä"
#. et8PK
-#: cui/inc/treeopt.hrc:133
+#: cui/inc/treeopt.hrc:132
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "Grid"
msgstr "Ruudukko"
#. oGTEW
-#: cui/inc/treeopt.hrc:134
+#: cui/inc/treeopt.hrc:133
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "Print"
msgstr "Tulostus"
#. BECZi
-#: cui/inc/treeopt.hrc:139
+#: cui/inc/treeopt.hrc:138
msgctxt "SID_SCH_EDITOPTIONS_RES"
msgid "Charts"
msgstr "Kaaviot"
#. XAhzo
-#: cui/inc/treeopt.hrc:140
+#: cui/inc/treeopt.hrc:139
msgctxt "SID_SCH_EDITOPTIONS_RES"
msgid "Default Colors"
msgstr "Oletusvärit"
#. oUBac
-#: cui/inc/treeopt.hrc:145
+#: cui/inc/treeopt.hrc:144
msgctxt "SID_FILTER_DLG_RES"
msgid "Load/Save"
msgstr "Lataus ja tallennus"
#. 3go3N
-#: cui/inc/treeopt.hrc:146
+#: cui/inc/treeopt.hrc:145
msgctxt "SID_FILTER_DLG_RES"
msgid "General"
msgstr "Yleistä"
#. 9aX4K
-#: cui/inc/treeopt.hrc:147
+#: cui/inc/treeopt.hrc:146
msgctxt "SID_FILTER_DLG_RES"
msgid "VBA Properties"
msgstr "VBA-ominaisuudet"
#. oAGDd
-#: cui/inc/treeopt.hrc:148
+#: cui/inc/treeopt.hrc:147
msgctxt "SID_FILTER_DLG_RES"
msgid "Microsoft Office"
msgstr "Microsoft Office"
#. UtTyJ
-#: cui/inc/treeopt.hrc:149
+#: cui/inc/treeopt.hrc:148
msgctxt "SID_FILTER_DLG_RES"
msgid "HTML Compatibility"
msgstr "HTML-yhteensopivuus"
#. Qysp7
-#: cui/inc/treeopt.hrc:154
+#: cui/inc/treeopt.hrc:153
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME Base"
#. 78XBF
-#: cui/inc/treeopt.hrc:155
+#: cui/inc/treeopt.hrc:154
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "Connections"
msgstr "Yhteydet"
#. 54yat
-#: cui/inc/treeopt.hrc:156
+#: cui/inc/treeopt.hrc:155
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "Databases"
msgstr "Tietokannat"
#. NFYmd
-#: cui/inc/twolines.hrc:28
+#: cui/inc/twolines.hrc:27
msgctxt "twolinespage|liststore1"
msgid "(None)"
msgstr "(Ei mitään)"
#. oUwW4
-#: cui/inc/twolines.hrc:29
+#: cui/inc/twolines.hrc:28
msgctxt "twolinespage|liststore1"
msgid "("
msgstr "("
#. mSyZB
-#: cui/inc/twolines.hrc:30
+#: cui/inc/twolines.hrc:29
msgctxt "twolinespage|liststore1"
msgid "["
msgstr "["
#. aDAks
-#: cui/inc/twolines.hrc:31
+#: cui/inc/twolines.hrc:30
msgctxt "twolinespage|liststore1"
msgid "<"
msgstr "<"
#. uVPNB
-#: cui/inc/twolines.hrc:32
+#: cui/inc/twolines.hrc:31
msgctxt "twolinespage|liststore1"
msgid "{"
msgstr "{"
#. 6TmK5
-#: cui/inc/twolines.hrc:33
+#: cui/inc/twolines.hrc:32
msgctxt "twolinespage|liststore1"
msgid "Other Characters..."
msgstr "Muut merkit..."
#. ycpAX
-#: cui/inc/twolines.hrc:38
+#: cui/inc/twolines.hrc:37
msgctxt "twolinespage|liststore2"
msgid "(None)"
msgstr "(Ei mitään)"
#. ts6EG
-#: cui/inc/twolines.hrc:39
+#: cui/inc/twolines.hrc:38
msgctxt "twolinespage|liststore2"
msgid ")"
msgstr ")"
#. REFgT
-#: cui/inc/twolines.hrc:40
+#: cui/inc/twolines.hrc:39
msgctxt "twolinespage|liststore2"
msgid "]"
msgstr "]"
#. wFPzF
-#: cui/inc/twolines.hrc:41
+#: cui/inc/twolines.hrc:40
msgctxt "twolinespage|liststore2"
msgid ">"
msgstr ">"
#. HFeFt
-#: cui/inc/twolines.hrc:42
+#: cui/inc/twolines.hrc:41
msgctxt "twolinespage|liststore2"
msgid "}"
msgstr "}"
#. YcMQR
-#: cui/inc/twolines.hrc:43
+#: cui/inc/twolines.hrc:42
msgctxt "twolinespage|liststore2"
msgid "Other Characters..."
msgstr "Muut merkit..."
@@ -4024,47 +4132,77 @@ msgid "Expert Configuration"
msgstr "Edistyneet asetukset"
#. GBiPy
-#: cui/uiconfig/ui/aboutconfigdialog.ui:43
+#: cui/uiconfig/ui/aboutconfigdialog.ui:40
msgctxt "aboutconfigdialog|edit"
msgid "Edit"
msgstr "Muokkaa"
+#. Z7SA5
+#: cui/uiconfig/ui/aboutconfigdialog.ui:46
+msgctxt "extended_tip|edit"
+msgid "Opens a dialog to edit the preference."
+msgstr ""
+
#. 2uM3W
-#: cui/uiconfig/ui/aboutconfigdialog.ui:56
+#: cui/uiconfig/ui/aboutconfigdialog.ui:58
msgctxt "aboutconfigdialog|reset"
msgid "Reset"
msgstr "Palauta"
-#. EhpWF
+#. 95seU
+#: cui/uiconfig/ui/aboutconfigdialog.ui:64
+msgctxt "extended_tip|reset"
+msgid "Undo changes done so far in this dialog."
+msgstr ""
+
+#. j4Avi
#: cui/uiconfig/ui/aboutconfigdialog.ui:149
+msgctxt "extended_tip|searchEntry"
+msgid "Type the preference you want to display in the text area"
+msgstr ""
+
+#. EhpWF
+#: cui/uiconfig/ui/aboutconfigdialog.ui:161
msgctxt "aboutconfigdialog|searchButton"
msgid "_Search"
msgstr "Etsi"
+#. nmtBr
+#: cui/uiconfig/ui/aboutconfigdialog.ui:170
+msgctxt "extended_tip|searchButton"
+msgid "Click to search your preference text in the Preferences tree."
+msgstr ""
+
#. BMohC
-#: cui/uiconfig/ui/aboutconfigdialog.ui:196
+#: cui/uiconfig/ui/aboutconfigdialog.ui:212
msgctxt "aboutconfigdialog|preference"
msgid "Preference Name"
msgstr "Asetuksen nimi"
#. PiV9t
-#: cui/uiconfig/ui/aboutconfigdialog.ui:216
+#: cui/uiconfig/ui/aboutconfigdialog.ui:232
msgctxt "aboutconfigdialog|property"
msgid "Property"
msgstr "Ominaisuus"
#. g6RFE
-#: cui/uiconfig/ui/aboutconfigdialog.ui:230
+#: cui/uiconfig/ui/aboutconfigdialog.ui:246
msgctxt "aboutconfigdialog|type"
msgid "Type"
msgstr "Tyyppi"
#. BYBgx
-#: cui/uiconfig/ui/aboutconfigdialog.ui:244
+#: cui/uiconfig/ui/aboutconfigdialog.ui:260
msgctxt "aboutconfigdialog|value"
msgid "Value"
msgstr "Arvo"
+#. A9J9F
+#: cui/uiconfig/ui/aboutconfigdialog.ui:272
+msgctxt "extended_tip|preferences"
+msgid "List the preferences organized hierarchically in a tree layout."
+msgstr ""
+
#. B8FF9
#: cui/uiconfig/ui/aboutconfigvaluedialog.ui:8
msgctxt "aboutconfigvaluedialog|AboutConfigValueDialog"
@@ -4084,7 +4222,7 @@ msgid "About %PRODUCTNAME"
msgstr "Tietoja %PRODUCTNAMEsta"
#. rdEwV
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:106
msgctxt "aboutdialog|lbVersion"
msgid "Version:"
msgstr "Versio:"
@@ -4096,395 +4234,794 @@ msgid "Build:"
msgstr "Koontiversio:"
#. J78bj
-#: cui/uiconfig/ui/aboutdialog.ui:136
+#: cui/uiconfig/ui/aboutdialog.ui:139
msgctxt "aboutdialog|lbEnvironment"
msgid "Environment:"
msgstr "Ympäristö:"
#. c2sEB
-#: cui/uiconfig/ui/aboutdialog.ui:189
+#: cui/uiconfig/ui/aboutdialog.ui:204
msgctxt "aboutdialog|lbExtra"
msgid "Misc:"
msgstr "Muuta:"
#. FwVyQ
-#: cui/uiconfig/ui/aboutdialog.ui:218
+#: cui/uiconfig/ui/aboutdialog.ui:239
msgctxt "aboutdialog|lbLocale"
msgid "Locale:"
msgstr ""
#. SFbP2
-#: cui/uiconfig/ui/aboutdialog.ui:243
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|lbUI"
msgid "User Interface:"
msgstr "Käyttöliittymä:"
#. KFo3i
-#: cui/uiconfig/ui/aboutdialog.ui:277
+#: cui/uiconfig/ui/aboutdialog.ui:310
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME on moderni, helppokäyttöinen avoimen lähdekoodin toimisto-ohjelmisto mm. tekstinkäsittelyyn, taulukkolaskentaan ja esityksiin."
#. cFC6E
-#: cui/uiconfig/ui/aboutdialog.ui:316
+#: cui/uiconfig/ui/aboutdialog.ui:349
msgctxt "aboutdialog|credits"
msgid "Credits"
msgstr "Tekijät"
#. VkRAv
-#: cui/uiconfig/ui/aboutdialog.ui:332
+#: cui/uiconfig/ui/aboutdialog.ui:365
msgctxt "aboutdialog|website"
msgid "Website"
msgstr "Verkkosivusto"
-#. zSmJb
-#: cui/uiconfig/ui/aboutdialog.ui:348
-msgctxt "aboutdialog|description"
+#. i4Jo2
+#: cui/uiconfig/ui/aboutdialog.ui:381
+msgctxt "aboutdialog|releasenotes"
msgid "Release Notes"
msgstr ""
#. 5TUrF
-#: cui/uiconfig/ui/aboutdialog.ui:376
+#: cui/uiconfig/ui/aboutdialog.ui:409
msgctxt "aboutdialog|lbVersionInfo"
msgid "Version Information"
msgstr "Versiotietoa"
#. jZvGC
-#: cui/uiconfig/ui/aboutdialog.ui:393
+#: cui/uiconfig/ui/aboutdialog.ui:428
msgctxt "aboutdialog|btnCopyVersionTooltip"
msgid "Copy all version information in English"
msgstr "Kopioi kaikki versiotiedot englanniksi"
+#. UCjik
+#: cui/uiconfig/ui/accelconfigpage.ui:124
+msgctxt "accelconfigpage|extended_tip|shortcuts"
+msgid "Lists the shortcut keys and the associated commands. To assign or modify the shortcut key for the command selected in the Function list, click a shortcut in this list, and then click Modify."
+msgstr "Luettelossa on pikanäppäin ja siihen liitetty komento. Komennon pikanäppäimen määrittämiseksi tai muuttamiseksi valitaan Toiminto-luettelo, napsautetaan pikanäppäintä tästä luettelosta ja napsautetaan Muuta."
+
#. MP3WF
-#: cui/uiconfig/ui/accelconfigpage.ui:132
+#: cui/uiconfig/ui/accelconfigpage.ui:137
msgctxt "accelconfigpage|label21"
msgid "Shortcu_t Keys"
msgstr "_Pikanäppäimet"
#. rEN3b
-#: cui/uiconfig/ui/accelconfigpage.ui:158
+#: cui/uiconfig/ui/accelconfigpage.ui:163
msgctxt "accelconfigpage|office"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
+#. Bgzqd
+#: cui/uiconfig/ui/accelconfigpage.ui:173
+msgctxt "accelconfigpage|extended_tip|office"
+msgid "Displays shortcut keys that are common to all %PRODUCTNAME applications."
+msgstr "Esitetään kaikkien %PRODUCTNAME-sovellusten yhteiset pikanäppäimet."
+
#. jjhUE
-#: cui/uiconfig/ui/accelconfigpage.ui:175
+#: cui/uiconfig/ui/accelconfigpage.ui:185
msgctxt "accelconfigpage|module"
msgid "$(MODULE)"
msgstr "$(MODULE)"
+#. VnoU5
+#: cui/uiconfig/ui/accelconfigpage.ui:195
+msgctxt "accelconfigpage|extended_tip|module"
+msgid "Displays shortcut keys for the current %PRODUCTNAME application."
+msgstr "Esitetään käytössä olevan %PRODUCTNAME-sovelluksen pikanäppäimet."
+
#. R2nhJ
-#: cui/uiconfig/ui/accelconfigpage.ui:207
+#: cui/uiconfig/ui/accelconfigpage.ui:222
msgctxt "accelconfigpage|change"
msgid "_Modify"
msgstr "Muuta"
+#. F2oLa
+#: cui/uiconfig/ui/accelconfigpage.ui:229
+msgctxt "accelconfigpage|extended_tip|change"
+msgid "Assigns the key combination selected in the Shortcut keys list to the command selected in the Function list."
+msgstr "Määrätään näppäinyhdistelmä, joka on valittuna Pikanäppäimet-luettelossa, käytettäväksi komennossa, joka on valittuna Toiminto-luettelossa."
+
+#. eFsw9
+#: cui/uiconfig/ui/accelconfigpage.ui:248
+msgctxt "accelconfigpage|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
#. 6MwWq
-#: cui/uiconfig/ui/accelconfigpage.ui:235
+#: cui/uiconfig/ui/accelconfigpage.ui:260
msgctxt "accelconfigpage|load"
msgid "_Load..."
msgstr "Lataa..."
+#. yANEF
+#: cui/uiconfig/ui/accelconfigpage.ui:267
+msgctxt "accelconfigpage|extended_tip|load"
+msgid "Replaces the shortcut key configuration with one that was previously saved."
+msgstr "Korvataan pikanäppäinten kokoonpano aiemmin tallennetulla kokoonpanolla."
+
#. Uq7F5
-#: cui/uiconfig/ui/accelconfigpage.ui:250
+#: cui/uiconfig/ui/accelconfigpage.ui:280
msgctxt "accelconfigpage|save"
msgid "_Save..."
msgstr "Tallenna..."
+#. e9TFA
+#: cui/uiconfig/ui/accelconfigpage.ui:287
+msgctxt "accelconfigpage|extended_tip|save"
+msgid "Saves the current shortcut key configuration, so that you can load it later."
+msgstr "Tallennetaan vallitseva pikanäppäinkokoonpano, jotta se voidaan ladata myöhemmin."
+
+#. mJmga
+#: cui/uiconfig/ui/accelconfigpage.ui:308
+msgctxt "accelconfigpage|extended_tip|reset"
+msgid "Resets modified values back to the default values."
+msgstr "Palautetaan muutetut arvot takaisin oletusarvoiksi."
+
#. BKAsD
-#: cui/uiconfig/ui/accelconfigpage.ui:325
+#: cui/uiconfig/ui/accelconfigpage.ui:365
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr "Hae kirjoittamalla"
#. T5FGo
-#: cui/uiconfig/ui/accelconfigpage.ui:345
+#: cui/uiconfig/ui/accelconfigpage.ui:385
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "Luokka"
#. xfWzA
-#: cui/uiconfig/ui/accelconfigpage.ui:359
+#: cui/uiconfig/ui/accelconfigpage.ui:399
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "Toiminto"
#. 7PCeb
-#: cui/uiconfig/ui/accelconfigpage.ui:373
+#: cui/uiconfig/ui/accelconfigpage.ui:413
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr "Näppäimet"
+#. 8DnFJ
+#: cui/uiconfig/ui/accelconfigpage.ui:457
+msgctxt "accelconfigpage|extended_tip|category"
+msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
+msgstr "Luettelossa on saatavilla olevat toimintojen luokat. Pikanäppäimen määrittämiseksi tyylille avataan \"Tyylit\"-luokka."
+
+#. wGm8q
+#: cui/uiconfig/ui/accelconfigpage.ui:504
+msgctxt "accelconfigpage|extended_tip|function"
+msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
+msgstr "Valitaan toiminto, jolle pikanäppäin määritetään, napsautetaan näppäinyhdistelmän riviä Pikanäppäimet-luettelossa ja napsautetaan sitten Muuta-painiketta. Jos valitulla toiminnolla jo on pikanäppäin, se näkyy Näppäimet-luettelossa."
+
#. CqdJF
-#: cui/uiconfig/ui/accelconfigpage.ui:522
+#: cui/uiconfig/ui/accelconfigpage.ui:571
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "Funktiot"
+#. YDyhc
+#: cui/uiconfig/ui/accelconfigpage.ui:584
+msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
+msgid "Assigns or edits the shortcut keys for %PRODUCTNAME commands, or %PRODUCTNAME Basic macros."
+msgstr "Määritetään tai muokataan %PRODUCTNAME-komentojen ja %PRODUCTNAME Basic-makrojen pikanäppäimiä."
+
+#. FAPZ6
+#: cui/uiconfig/ui/acorexceptpage.ui:59
+msgctxt "acorexceptpage|extended_tip|abbrev"
+msgid "Type an abbreviation followed by a period, and then click New. This prevents %PRODUCTNAME from automatically capitalizing the first letter of the word that comes after the period at the end of the abbreviation."
+msgstr "Kirjoitetaan pisteeseen päättyvä lyhenne ja sitten napsautetaan Uusi. Tämä estää %PRODUCTNAME-ohjelmistoa muuttamasta ensimmäistä pisteen jälkeistä kirjainta suuraakkoseksi."
+
#. vanfV
-#: cui/uiconfig/ui/acorexceptpage.ui:65
+#: cui/uiconfig/ui/acorexceptpage.ui:70
msgctxt "acorexceptpage|autoabbrev"
msgid "_AutoInclude"
msgstr "Au_tomaattinen sisällytys"
+#. 5B9tX
+#: cui/uiconfig/ui/acorexceptpage.ui:79
+#, fuzzy
+msgctxt "acorexceptpage|extended_tip|autoabbrev"
+msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog."
+msgstr "Lyhenteet tai kahdella suuraakkosella alkavat sanat lisäytyvät merkkiä vastaavasti poikkeusluetteloonsa ohjelmallisesti. Tässä merkki vaikuttaa vain, jos vastaavasti on valittu Muuta jokaisen virkkeen ensimmäinen kirjain isoksi - tai Korjaa KAksi ISoa KIrjainta sanojen alussa -vaihtoehdot tämän valintaikkunan Asetukset-välilehden [T]-sarakkeessa. "
+
#. tpV8t
-#: cui/uiconfig/ui/acorexceptpage.ui:96
+#: cui/uiconfig/ui/acorexceptpage.ui:106
msgctxt "acorexceptpage|newabbrev-atkobject"
msgid "New abbreviations"
msgstr "Uudet lyhenteet"
#. CEdQa
-#: cui/uiconfig/ui/acorexceptpage.ui:108
+#: cui/uiconfig/ui/acorexceptpage.ui:118
msgctxt "acorexceptpage|replace"
msgid "_Replace"
msgstr "_Korvaa"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:132
+#: cui/uiconfig/ui/acorexceptpage.ui:142
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "Poista lyhenteitä"
+#. 9h2WR
+#: cui/uiconfig/ui/acorexceptpage.ui:193
+msgctxt "acorexceptpage|extended_tip|abbrevlist"
+msgid "Lists the abbreviations that are not automatically corrected."
+msgstr "Luettelo lyhenteistä, jotka eivät korjaudu ohjelmallisesti."
+
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:197
+#: cui/uiconfig/ui/acorexceptpage.ui:212
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "Lyhenteet (ei isoa kirjainta pisteen jälkeen)"
+#. 78P5X
+#: cui/uiconfig/ui/acorexceptpage.ui:256
+msgctxt "acorexceptpage|extended_tip|double"
+msgid "Type the word or abbreviation that starts with two capital letters that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc."
+msgstr "Kirjoitetaan sanat tai lyhenteet, jotka alkavat kahdella suuraakkosella, ja joita %PRODUCTNAME-ohjelmiston ei pidä muuttaa alkaviksi yhdellä isolla kirjaimella. Esimerkiksi kirjoitetaan PC estämään %PRODUCTNAME-ohjelmistoa muuttamasta PC Pc:ksi."
+
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:247
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "A_utomaattinen sisällytys"
+#. 6fGTF
+#: cui/uiconfig/ui/acorexceptpage.ui:276
+#, fuzzy
+msgctxt "acorexceptpage|extended_tip|autodouble"
+msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog."
+msgstr "Lyhenteet tai kahdella suuraakkosella alkavat sanat lisäytyvät merkkiä vastaavasti poikkeusluetteloonsa ohjelmallisesti. Tässä merkki vaikuttaa vain, jos vastaavasti on valittu Muuta jokaisen virkkeen ensimmäinen kirjain isoksi - tai Korjaa KAksi ISoa KIrjainta sanojen alussa -vaihtoehdot tämän valintaikkunan Asetukset-välilehden [T]-sarakkeessa. "
+
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:278
+#: cui/uiconfig/ui/acorexceptpage.ui:303
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr "Uudet sanat, joissa on kaksi isoa alkukirjainta tai pieni alkukirjain"
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:290
+#: cui/uiconfig/ui/acorexceptpage.ui:315
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "_Korvaa"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:314
+#: cui/uiconfig/ui/acorexceptpage.ui:339
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr "Poista sanat, joissa on kaksi isoa alkukirjainta tai pieni alkukirjain"
+#. kCahU
+#: cui/uiconfig/ui/acorexceptpage.ui:390
+msgctxt "acorexceptpage|extended_tip|doublelist"
+msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
+msgstr "Luettelo niistä kahdella suuraakkosella alkavista lyhenteistä, joita ohjelman ei pidä korjata. Kentässä luetellaan kaikki kahdella kirjaimella alkavat sanat."
+
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:379
+#: cui/uiconfig/ui/acorexceptpage.ui:409
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr "Sanat, joissa on KAksi ISoa ALkukirjainta tai pIENI aLKUKIRJAIN"
+#. 4qMgn
+#: cui/uiconfig/ui/acorexceptpage.ui:424
+msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
+msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
+msgstr "Määritetään lyhenteet tai kirjainyhdistelmät, joita %PRODUCTNAME-ohjelmiston ei haluta korjaavan."
+
+#. Cd7nJ
+#: cui/uiconfig/ui/acoroptionspage.ui:84
+msgctxt "acoroptionspage|extended_tip|AutocorrectOptionsPage"
+msgid "Select the options for automatically correcting errors as you type, and then click OK."
+msgstr "Valitaan kirjoitettaessa tapahtuvan virheiden ohjelmallisen korjaamisen asetukset ja hyväksytään OK:lla."
+
+#. D8rmz
+#: cui/uiconfig/ui/acorreplacepage.ui:39
+msgctxt "acorreplacepage|extended_tip|new"
+msgid "Adds or replaces an entry in the replacement table."
+msgstr "Lisätään tai korvataan korvaustaulukon merkintä."
+
#. qjPVK
-#: cui/uiconfig/ui/acorreplacepage.ui:46
+#: cui/uiconfig/ui/acorreplacepage.ui:51
msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Korvaa"
-#. GLT9J
+#. fjsDd
+#: cui/uiconfig/ui/acorreplacepage.ui:59
+msgctxt "acorreplacepage|extended_tip|replace"
+msgid "Adds or replaces an entry in the replacement table."
+msgstr "Lisätään tai korvataan korvaustaulukon merkintä."
+
+#. 7hHNW
+#: cui/uiconfig/ui/acorreplacepage.ui:78
+msgctxt "acorreplacepage|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
+#. YLcSj
+#: cui/uiconfig/ui/acorreplacepage.ui:145
+msgctxt "acorreplacepage|extended_tip|tabview"
+msgid "Lists the entries for automatically replacing words, abbreviations or word parts while you type. To add an entry, enter text in the Replace and With boxes, and then click New. To edit an entry, select it, change the text in the With box, and then click Replace. To delete an entry, select it, and then click Delete."
+msgstr "Luettelon sisältää kirjoitettaessa korvautuvat sanat, lyhenteet ja sanan osat. Merkinnän lisäämiseksi kirjoitetaan teksti Korvaa- ja Millä:-kenttiin ja napsautetaan sitten Uusi-painiketta. Rivin muokkaamiseksi rivi valitaan ja muutetaan tekstiä Millä:-kentässä ja napsautetaan sitten Korvaa-painiketta. Rivin poistamiseksi se valitaan ja sitten napsautetaan Poista-painiketta."
+
+#. p6tMV
#: cui/uiconfig/ui/acorreplacepage.ui:165
+msgctxt "acorreplacepage|extended_tip|newtext"
+msgid "Enter the replacement text, graphic, frame, or OLE object that you want to replace the text in the Replace box. If you have selected text, a graphic, a frame, or an OLE object in your document, the relevant information is already entered here."
+msgstr "Annetaan Korvaa-kentän tekstin korvaava teksti, kuva, kehys tai OLE-objekti. Jos asiakirjassa on valittuna teksti, kuva, kehys tai OLE-objekti, asiaan kuuluva tieto on jo kentässä."
+
+#. gd9PD
+#: cui/uiconfig/ui/acorreplacepage.ui:182
+msgctxt "acorreplacepage|extended_tip|origtext"
+msgid "Enter the word, abbreviation or word part that you want to replace while you type. Wildcard character sequence .* in the end of word results the replacement of the word before arbitrary suffixes, too. Wildcard character sequence .* before the word results the replacement after arbitrary prefixes, too. For example, the pattern \"i18n.*\" with the replacement text \"internationalization\" finds and replaces \"i18ns\" with \"internationalizations\", or the pattern \".*...\" with the replacement text \"…\" finds and replaces three dots in \"word...\" with the typographically correct precomposed Unicode horizontal ellipsis (\"word…\")."
+msgstr "Kenttään syötetään sana, lyhenne tai sanan osa, joka halutaan korvattavaksi tekstiä kirjoitettaessa. Jokerimerkki .* sanan lopussa mahdollistaa korjauksen myös tilanteissa, joissa sanan perässä on mikä tahansa jälkiliite. Vastaavasti jokerimerkki .* sanan alussa mahdollistaa vaihtuvat etuliitteet. Esimerkiksi korvattava teksti \"n:o.*\" korvaustekstillä \"numero\" johtaa sanan \"n:ossa\" korvaamiseen sanalla \"numerossa\", tai korvattava teksti \".*...\" korvaustekstillä \"…\" korvaa sanan perässä olevat kolme pistettä \"sana...\" typografisesti paremmalla Unicode-merkillä \"sana…\"."
+
+#. GLT9J
+#: cui/uiconfig/ui/acorreplacepage.ui:195
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Ko_rvaa"
#. RDUE5
-#: cui/uiconfig/ui/acorreplacepage.ui:182
+#: cui/uiconfig/ui/acorreplacepage.ui:212
msgctxt "acorreplacepage|label2"
msgid "_With"
msgstr ""
#. 25PQc
-#: cui/uiconfig/ui/acorreplacepage.ui:197
+#: cui/uiconfig/ui/acorreplacepage.ui:227
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Vain teksti"
+#. 784tz
+#: cui/uiconfig/ui/acorreplacepage.ui:236
+msgctxt "acorreplacepage|extended_tip|textonly"
+msgid "Saves the entry in the With box without formatting. When the replacement is made, the text uses the same format as the document text."
+msgstr "Millä:-kentän merkintä tallennetaan ilman muotoiluja. Korvattaessa tekstissä käytetään asiakirjan tekstin muotoilua."
+
+#. yuDgJ
+#: cui/uiconfig/ui/acorreplacepage.ui:250
+msgctxt "acorreplacepage|extended_tip|AcorReplacePage"
+msgid "Edits the replacement table for automatically correcting or replacing words or abbreviations in your document."
+msgstr "Muokataan asiakirjan ohjelmallisen korjauksen tai sanojen korvauksen tai lyhennysten korvaustaulukkoa."
+
+#. 9Xnti
+#: cui/uiconfig/ui/additionsdialog.ui:12
+msgctxt "customanimationfragment|90"
+msgid "Active version only"
+msgstr ""
+
+#. 6ZZPG
+#: cui/uiconfig/ui/additionsdialog.ui:25
+msgctxt "bulletandposition|gallery"
+msgid "Sort by"
+msgstr ""
+
+#. LhkwF
+#: cui/uiconfig/ui/additionsdialog.ui:34
+msgctxt "menuassignpage|gear_textOnly"
+msgid "Voting"
+msgstr ""
+
+#. KsZpM
+#: cui/uiconfig/ui/additionsdialog.ui:43
+msgctxt "menuassignpage|gear_textOnly"
+msgid "Downloads"
+msgstr ""
+
+#. A4zUt
+#: cui/uiconfig/ui/additionsdialog.ui:52
+msgctxt "menuassignpage|gear_textOnly"
+msgid "Comments"
+msgstr ""
+
+#. ncCYE
+#: cui/uiconfig/ui/additionsdialog.ui:71
+msgctxt "menuassignpage|gear_iconAndText"
+msgid "Detail view"
+msgstr ""
+
+#. SoASj
+#: cui/uiconfig/ui/additionsdialog.ui:82
+msgctxt "menuassignpage|gear_iconAndText"
+msgid "Condensed list"
+msgstr ""
+
+#. MdFgz
+#: cui/uiconfig/ui/additionsdialog.ui:98
+msgctxt "additionsdialog|AdditionsDialog"
+msgid "Additions"
+msgstr ""
+
+#. wqAig
+#: cui/uiconfig/ui/additionsdialog.ui:123
+msgctxt "additionsdialog|ProgressLabel"
+msgid "Progress Label"
+msgstr ""
+
+#. PjJ55
+#: cui/uiconfig/ui/additionsdialog.ui:126
+msgctxt "additionsdialog|ProgressLabel"
+msgid "ProgressLabel"
+msgstr ""
+
+#. SYKGE
+#: cui/uiconfig/ui/additionsdialog.ui:127
+msgctxt "additionsdialog|ProgressLabel"
+msgid "This label shows that the progress of the operations such as loading extensions, not found, etc."
+msgstr ""
+
+#. NrZT8
+#: cui/uiconfig/ui/additionsdialog.ui:186
+#: cui/uiconfig/ui/additionsdialog.ui:187
+msgctxt "additionsdialog|searchEntry"
+msgid "searchEntry"
+msgstr ""
+
+#. iamTq
+#: cui/uiconfig/ui/additionsdialog.ui:210
+msgctxt "additionsdialog|buttonGear"
+msgid "Gear Menu"
+msgstr ""
+
+#. CbCbR
+#: cui/uiconfig/ui/additionsdialog.ui:211
+msgctxt "additionsdialog|buttonGear"
+msgid "Contains commands to modify settings of the additions list such as sorting type or view type."
+msgstr ""
+
+#. fUE2f
+#: cui/uiconfig/ui/additionsfragment.ui:16
+msgctxt "additionsDialog|buttonShowMore"
+msgid "Show More Extensions"
+msgstr "Näytä lisää lisäosia"
+
+#. 2pPGn
+#: cui/uiconfig/ui/additionsfragment.ui:21
+msgctxt "additionsDialog|buttonShowMore"
+msgid "ButtonShowMore"
+msgstr ""
+
+#. i9AoG
+#: cui/uiconfig/ui/additionsfragment.ui:22
+msgctxt "additionsDialog|buttonShowMore"
+msgid "This button shows more extensions."
+msgstr ""
+
+#. UzjvF
+#: cui/uiconfig/ui/additionsfragment.ui:68
+msgctxt "additionsEntry|votingLabel"
+msgid "Voting:"
+msgstr ""
+
+#. iMQas
+#: cui/uiconfig/ui/additionsfragment.ui:88
+msgctxt "additionsEntry|labelLicense"
+msgid "License:"
+msgstr ""
+
+#. buPFe
+#: cui/uiconfig/ui/additionsfragment.ui:106
+msgctxt "additionsEntry|labelVersion"
+msgid "Required version:"
+msgstr ""
+
+#. cFsEL
+#: cui/uiconfig/ui/additionsfragment.ui:124
+msgctxt "additionsEntry|labelComments"
+msgid "Comments:"
+msgstr ""
+
+#. TkztG
+#: cui/uiconfig/ui/additionsfragment.ui:142
+msgctxt "additionsEntry|labelComments"
+msgid "Downloads:"
+msgstr ""
+
+#. JRe5b
+#: cui/uiconfig/ui/additionsfragment.ui:356
+msgctxt "additionsEntry|buttonInstall"
+msgid "Install"
+msgstr ""
+
+#. VEbVr
+#: cui/uiconfig/ui/additionsfragment.ui:370
+msgctxt "additionsEntry|buttonWebsite"
+msgid "Website"
+msgstr ""
+
#. BuMBh
#: cui/uiconfig/ui/agingdialog.ui:15
msgctxt "agingdialog|AgingDialog"
msgid "Aging"
msgstr "Ikääntyminen"
+#. A8e8L
+#: cui/uiconfig/ui/agingdialog.ui:147
+msgctxt "agingdialog|extended_tip|value"
+msgid "Specifies the number of colors to which the image is to be reduced."
+msgstr "Määritetään kuvaan jätettävien värien lukumäärä."
+
#. bJvBm
-#: cui/uiconfig/ui/agingdialog.ui:158
+#: cui/uiconfig/ui/agingdialog.ui:160
msgctxt "agingdialog|label2"
msgid "Aging degree:"
msgstr "Ikääntymisaste:"
#. 6FVBe
-#: cui/uiconfig/ui/agingdialog.ui:182
+#: cui/uiconfig/ui/agingdialog.ui:184
msgctxt "agingdialog|label1"
msgid "Parameters"
msgstr "Parametrit"
+#. pciJf
+#: cui/uiconfig/ui/agingdialog.ui:209
+msgctxt "agingdialog|extended_tip|AgingDialog"
+msgid "All pixels are set to their gray values, and then the green and blue color channels are reduced by the amount you specify. The red color channel is not changed."
+msgstr ""
+
#. nxZTH
-#: cui/uiconfig/ui/applyautofmtpage.ui:47
+#: cui/uiconfig/ui/applyautofmtpage.ui:53
msgctxt "applyautofmtpage|edit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. AYYCs
+#: cui/uiconfig/ui/applyautofmtpage.ui:62
+msgctxt "applyautofmtpage|extended_tip|edit"
+msgid "Modifies the selected AutoCorrect option."
+msgstr "Muokataan valittua automaattisen korjauksen asetusta."
+
#. sYxng
-#: cui/uiconfig/ui/applyautofmtpage.ui:65
+#: cui/uiconfig/ui/applyautofmtpage.ui:76
msgctxt "applyautofmtpage|label1"
msgid "[M]: Replace while modifying existing text"
msgstr "[M]: Korvaa muokattaessa nykyistä tekstiä"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:77
+#: cui/uiconfig/ui/applyautofmtpage.ui:88
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr "[T]: Automaattinen korjaus kirjoitettaessa"
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:122
+#: cui/uiconfig/ui/applyautofmtpage.ui:133
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[M]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:137
+#: cui/uiconfig/ui/applyautofmtpage.ui:155
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[T]"
+#. 2tG6L
+#: cui/uiconfig/ui/applyautofmtpage.ui:202
+msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
+msgid "Select the options for automatically correcting errors as you type, and then click OK."
+msgstr "Valitaan kirjoitettaessa tapahtuvan virheiden ohjelmallisen korjaamisen asetukset ja hyväksytään OK:lla."
+
#. EjG2g
-#: cui/uiconfig/ui/applylocalizedpage.ui:84
+#: cui/uiconfig/ui/applylocalizedpage.ui:90
msgctxt "applylocalizedpage|m"
msgid "[M]"
msgstr "[M]"
#. YUBPr
-#: cui/uiconfig/ui/applylocalizedpage.ui:99
+#: cui/uiconfig/ui/applylocalizedpage.ui:112
msgctxt "applylocalizedpage|t"
msgid "[T]"
msgstr "[T]"
+#. 9D3Vt
+#: cui/uiconfig/ui/applylocalizedpage.ui:137
+msgctxt "applylocalizedpage|extended_tip|list"
+msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]."
+msgstr "Valitaan korvausten käyttö kirjoitettaessa [T] tai muokattaessa vanhaa tekstiä [M]."
+
+#. KM3Dj
+#: cui/uiconfig/ui/applylocalizedpage.ui:198
+msgctxt "applylocalizedpage|extended_tip|checklist"
+msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]."
+msgstr "Valitaan korvausten käyttö kirjoitettaessa [T] tai muokattaessa vanhaa tekstiä [M]."
+
#. srHxL
-#: cui/uiconfig/ui/applylocalizedpage.ui:218
+#: cui/uiconfig/ui/applylocalizedpage.ui:241
msgctxt "applylocalizedpage|singlereplace"
msgid "Repla_ce"
msgstr "Korvaa"
+#. ybjKY
+#: cui/uiconfig/ui/applylocalizedpage.ui:250
+msgctxt "applylocalizedpage|extended_tip|singlereplace"
+msgid "Automatically replaces the default system symbol for the given type of quotation marks with the special character that you specify."
+msgstr ""
+
#. EQrEN
-#: cui/uiconfig/ui/applylocalizedpage.ui:237
+#: cui/uiconfig/ui/applylocalizedpage.ui:265
msgctxt "applylocalizedpage|startquoteft"
msgid "_Start quote:"
msgstr "Lainauksen aloitus:"
#. ASq8L
-#: cui/uiconfig/ui/applylocalizedpage.ui:260
+#: cui/uiconfig/ui/applylocalizedpage.ui:288
msgctxt "applylocalizedpage|startsingle-atkobject"
msgid "Start quote of single quotes"
msgstr "Aloittava puolilainausmerkki"
+#. ZSG3R
+#: cui/uiconfig/ui/applylocalizedpage.ui:289
+msgctxt "applylocalizedpage|extended_tip|startsingle"
+msgid "Select the special character that will automatically replace the current opening quotation mark in your document when you choose Tools - AutoCorrect - Apply."
+msgstr ""
+
#. FFEVA
-#: cui/uiconfig/ui/applylocalizedpage.ui:273
+#: cui/uiconfig/ui/applylocalizedpage.ui:302
msgctxt "applylocalizedpage|singlestartex"
msgid "Default"
msgstr "Oletus"
#. RindW
-#: cui/uiconfig/ui/applylocalizedpage.ui:289
+#: cui/uiconfig/ui/applylocalizedpage.ui:318
msgctxt "applylocalizedpage|defaultsingle"
msgid "_Default"
msgstr "Oletus"
#. QY58F
-#: cui/uiconfig/ui/applylocalizedpage.ui:297
+#: cui/uiconfig/ui/applylocalizedpage.ui:326
msgctxt "applylocalizedpage|defaultsingle-atkobject"
msgid "Single quotes default"
msgstr "Puolilainausmerkit (oletus)"
+#. nHhRe
+#: cui/uiconfig/ui/applylocalizedpage.ui:327
+msgctxt "applylocalizedpage|extended_tip|defaultsingle"
+msgid "Resets the quotation marks to the default symbols."
+msgstr ""
+
#. GRDaT
-#: cui/uiconfig/ui/applylocalizedpage.ui:311
+#: cui/uiconfig/ui/applylocalizedpage.ui:341
msgctxt "applylocalizedpage|endquoteft"
msgid "_End quote:"
msgstr "Lainauksen lopetus:"
#. Am27U
-#: cui/uiconfig/ui/applylocalizedpage.ui:334
+#: cui/uiconfig/ui/applylocalizedpage.ui:364
msgctxt "applylocalizedpage|endsingle-atkobject"
msgid "End quote of single quotes"
msgstr "Lopettava puolilainausmerkki"
+#. CHEww
+#: cui/uiconfig/ui/applylocalizedpage.ui:365
+msgctxt "applylocalizedpage|extended_tip|endsingle"
+msgid "Select the special character that will automatically replace the current closing quotation mark in your document when you choose Tools - AutoCorrect - Apply."
+msgstr ""
+
#. M4BCQ
-#: cui/uiconfig/ui/applylocalizedpage.ui:347
+#: cui/uiconfig/ui/applylocalizedpage.ui:378
msgctxt "applylocalizedpage|singleendex"
msgid "Default"
msgstr "Oletus"
#. VBKmS
-#: cui/uiconfig/ui/applylocalizedpage.ui:372
+#: cui/uiconfig/ui/applylocalizedpage.ui:403
msgctxt "applylocalizedpage|label1"
msgid "Single Quotes"
msgstr "Puolilainausmerkit"
#. Kadoe
-#: cui/uiconfig/ui/applylocalizedpage.ui:403
+#: cui/uiconfig/ui/applylocalizedpage.ui:434
msgctxt "applylocalizedpage|doublereplace"
msgid "Repla_ce"
msgstr "Korvaa"
+#. AADNo
+#: cui/uiconfig/ui/applylocalizedpage.ui:443
+msgctxt "applylocalizedpage|extended_tip|doublereplace"
+msgid "Automatically replaces the default system symbol for the given type of quotation marks with the special character that you specify."
+msgstr ""
+
#. MAW53
-#: cui/uiconfig/ui/applylocalizedpage.ui:422
+#: cui/uiconfig/ui/applylocalizedpage.ui:458
msgctxt "applylocalizedpage|label6"
msgid "_Start quote:"
msgstr "Lainauksen aloitus:"
#. BEFQi
-#: cui/uiconfig/ui/applylocalizedpage.ui:445
+#: cui/uiconfig/ui/applylocalizedpage.ui:481
msgctxt "applylocalizedpage|startdouble-atkobject"
msgid "Start quote of double quotes"
msgstr "Aloittava kokolainausmerkki"
+#. XDtCo
+#: cui/uiconfig/ui/applylocalizedpage.ui:482
+msgctxt "applylocalizedpage|extended_tip|startdouble"
+msgid "Select the special character that will automatically replace the current opening quotation mark in your document when you choose Tools - AutoCorrect - Apply."
+msgstr ""
+
#. oqBJC
-#: cui/uiconfig/ui/applylocalizedpage.ui:458
+#: cui/uiconfig/ui/applylocalizedpage.ui:495
msgctxt "applylocalizedpage|doublestartex"
msgid "Default"
msgstr "Oletus"
#. F7yr9
-#: cui/uiconfig/ui/applylocalizedpage.ui:474
+#: cui/uiconfig/ui/applylocalizedpage.ui:511
msgctxt "applylocalizedpage|defaultdouble"
msgid "_Default"
msgstr "Oletus"
#. KFTqi
-#: cui/uiconfig/ui/applylocalizedpage.ui:482
+#: cui/uiconfig/ui/applylocalizedpage.ui:519
msgctxt "applylocalizedpage|defaultdouble-atkobject"
msgid "Double quotes default"
msgstr "Kokolainausmerkit (oletus)"
+#. 8oRQv
+#: cui/uiconfig/ui/applylocalizedpage.ui:520
+msgctxt "applylocalizedpage|extended_tip|defaultdouble"
+msgid "Resets the quotation marks to the default symbols."
+msgstr ""
+
#. cDwwK
-#: cui/uiconfig/ui/applylocalizedpage.ui:496
+#: cui/uiconfig/ui/applylocalizedpage.ui:534
msgctxt "applylocalizedpage|label8"
msgid "_End quote:"
msgstr "Lainauksen lopetus:"
#. 85hDi
-#: cui/uiconfig/ui/applylocalizedpage.ui:519
+#: cui/uiconfig/ui/applylocalizedpage.ui:557
msgctxt "applylocalizedpage|enddouble-atkobject"
msgid "End quote of double quotes"
msgstr "Lopettava kokolainausmerkki"
+#. AurnH
+#: cui/uiconfig/ui/applylocalizedpage.ui:558
+msgctxt "applylocalizedpage|extended_tip|enddouble"
+msgid "Select the special character that will automatically replace the current closing quotation mark in your document when you choose Tools - AutoCorrect - Apply."
+msgstr ""
+
#. FBndB
-#: cui/uiconfig/ui/applylocalizedpage.ui:532
+#: cui/uiconfig/ui/applylocalizedpage.ui:571
msgctxt "applylocalizedpage|doubleendex"
msgid "Default"
msgstr "Oletus"
#. BDqUY
-#: cui/uiconfig/ui/applylocalizedpage.ui:557
+#: cui/uiconfig/ui/applylocalizedpage.ui:596
msgctxt "applylocalizedpage|label10"
msgid "Double Quotes"
msgstr "Kokolainausmerkit"
+#. WaGoG
+#: cui/uiconfig/ui/applylocalizedpage.ui:623
+msgctxt "applylocalizedpage|extended_tip|ApplyLocalizedPage"
+msgid "Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text."
+msgstr ""
+
#. BXzDP
#: cui/uiconfig/ui/areadialog.ui:8
msgctxt "areadialog|AreaDialog"
@@ -4492,23 +5029,29 @@ msgid "Area"
msgstr "Alue"
#. eVAJs
-#: cui/uiconfig/ui/areadialog.ui:137
+#: cui/uiconfig/ui/areadialog.ui:134
msgctxt "areadialog|RID_SVXPAGE_AREA"
msgid "Area"
msgstr "Alue"
#. GvZjP
-#: cui/uiconfig/ui/areadialog.ui:183
+#: cui/uiconfig/ui/areadialog.ui:180
msgctxt "areadialog|RID_SVXPAGE_SHADOW"
msgid "Shadow"
msgstr "Varjo"
#. 4XRBr
-#: cui/uiconfig/ui/areadialog.ui:230
+#: cui/uiconfig/ui/areadialog.ui:227
msgctxt "areadialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr "Läpinäkyvyys"
+#. mqtAE
+#: cui/uiconfig/ui/areadialog.ui:254
+msgctxt "areadialog|extended_tip|AreaDialog"
+msgid "Sets the fill properties of the selected drawing object."
+msgstr "Asetetaan valitun piirrosobjektin täyttöominaisuudet."
+
#. as89H
#: cui/uiconfig/ui/areatabpage.ui:33
msgctxt "areatabpage|tablelb"
@@ -4527,42 +5070,90 @@ msgctxt "areatabpage|tablelb"
msgid "Table"
msgstr "Taulukko"
+#. WxC4H
+#: cui/uiconfig/ui/areatabpage.ui:39
+msgctxt "areatabpage|extended_tip|tablelb"
+msgid "Set the fill options for the selected drawing object or document element."
+msgstr ""
+
#. 2kC9i
-#: cui/uiconfig/ui/areatabpage.ui:46
+#: cui/uiconfig/ui/areatabpage.ui:51
msgctxt "areatabpage|btnnone"
msgid "None"
msgstr "Ei mitään"
+#. kTpV7
+#: cui/uiconfig/ui/areatabpage.ui:57
+msgctxt "areatabpage|extended_tip|btnnone"
+msgid "Do not fill the selected object."
+msgstr ""
+
#. AiEuM
-#: cui/uiconfig/ui/areatabpage.ui:59
+#: cui/uiconfig/ui/areatabpage.ui:69
msgctxt "areatabpage|btncolor"
msgid "Color"
msgstr "Väri"
+#. rAxau
+#: cui/uiconfig/ui/areatabpage.ui:75
+msgctxt "areatabpage|extended_tip|btncolor"
+msgid "Fills the object with a gradient selected on this page."
+msgstr ""
+
#. zXDcA
-#: cui/uiconfig/ui/areatabpage.ui:72
+#: cui/uiconfig/ui/areatabpage.ui:87
msgctxt "areatabpage|btngradient"
msgid "Gradient"
msgstr "Liukuvärjäys"
+#. AGYbc
+#: cui/uiconfig/ui/areatabpage.ui:93
+msgctxt "areatabpage|extended_tip|btngradient"
+msgid "Fills the object with a gradient selected on this page."
+msgstr ""
+
#. MDHs7
-#: cui/uiconfig/ui/areatabpage.ui:85
+#: cui/uiconfig/ui/areatabpage.ui:105
msgctxt "areatabpage|btnbitmap"
msgid "Bitmap"
msgstr "Bittikartta"
+#. ACAkd
+#: cui/uiconfig/ui/areatabpage.ui:111
+msgctxt "areatabpage|extended_tip|btnbitmap"
+msgid "Fills the object with a hatching pattern selected on this page."
+msgstr ""
+
#. 9q7GD
-#: cui/uiconfig/ui/areatabpage.ui:98
+#: cui/uiconfig/ui/areatabpage.ui:123
msgctxt "areatabpage|btnpattern"
msgid "Pattern"
msgstr "Kuvio"
+#. TyREt
+#: cui/uiconfig/ui/areatabpage.ui:129
+msgctxt "areatabpage|extended_tip|btnpattern"
+msgid "Fills the object with a hatching pattern selected on this page."
+msgstr ""
+
#. 5y6vj
-#: cui/uiconfig/ui/areatabpage.ui:111
+#: cui/uiconfig/ui/areatabpage.ui:141
msgctxt "areatabpage|btnhatch"
msgid "Hatch"
msgstr "Viivoitus"
+#. irCyE
+#: cui/uiconfig/ui/areatabpage.ui:147
+msgctxt "areatabpage|extended_tip|btnhatch"
+msgid "Fills the object with a hatching pattern selected on this page."
+msgstr ""
+
+#. TFDzi
+#: cui/uiconfig/ui/areatabpage.ui:201
+msgctxt "areatabpage|extended_tip|AreaTabPage"
+msgid "Set the fill options for the selected drawing object or document element."
+msgstr ""
+
#. GSXcM
#: cui/uiconfig/ui/asiantypography.ui:25
msgctxt "asiantypography|checkForbidList"
@@ -4605,50 +5196,74 @@ msgctxt "autocorrectdialog|AutoCorrectDialog"
msgid "AutoCorrect"
msgstr "Automaattinen korjaus"
+#. LSGYn
+#: cui/uiconfig/ui/autocorrectdialog.ui:31
+msgctxt "autocorrectdialog|extended_tip|reset"
+msgid "Resets modified values back to the tab page previous values."
+msgstr ""
+
+#. PbHCG
+#: cui/uiconfig/ui/autocorrectdialog.ui:52
+msgctxt "autocorrectdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. Qqmqp
+#: cui/uiconfig/ui/autocorrectdialog.ui:71
+msgctxt "autocorrectdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. HBfWE
-#: cui/uiconfig/ui/autocorrectdialog.ui:108
+#: cui/uiconfig/ui/autocorrectdialog.ui:120
msgctxt "autocorrectdialog|label1"
msgid "Replacements and exceptions for language:"
msgstr "Korvaukset ja poikkeukset kielelle:"
+#. uThXE
+#: cui/uiconfig/ui/autocorrectdialog.ui:137
+msgctxt "autocorrectdialog|extended_tip|lang"
+msgid "Select the language for which you want to create or edit the replacement rules."
+msgstr "Valitaan kieli, jolle luodaan korvaus säännöt tai niitä muokataan."
+
#. Qpig7
-#: cui/uiconfig/ui/autocorrectdialog.ui:181
+#: cui/uiconfig/ui/autocorrectdialog.ui:198
msgctxt "autocorrectdialog|replace"
msgid "Replace"
msgstr "Korvaa"
#. gFjcV
-#: cui/uiconfig/ui/autocorrectdialog.ui:227
+#: cui/uiconfig/ui/autocorrectdialog.ui:244
msgctxt "autocorrectdialog|exceptions"
msgid "Exceptions"
msgstr "Poikkeukset"
#. FCFAS
-#: cui/uiconfig/ui/autocorrectdialog.ui:274
+#: cui/uiconfig/ui/autocorrectdialog.ui:291
msgctxt "autocorrectdialog|options"
msgid "Options"
msgstr "Asetukset"
#. PgrDz
-#: cui/uiconfig/ui/autocorrectdialog.ui:321
+#: cui/uiconfig/ui/autocorrectdialog.ui:338
msgctxt "autocorrectdialog|apply"
msgid "Options"
msgstr "Asetukset"
#. TCyBg
-#: cui/uiconfig/ui/autocorrectdialog.ui:368
+#: cui/uiconfig/ui/autocorrectdialog.ui:385
msgctxt "autocorrectdialog|localized"
msgid "Localized Options"
msgstr "Lokalisoidut valinnat"
#. G4rrm
-#: cui/uiconfig/ui/autocorrectdialog.ui:415
+#: cui/uiconfig/ui/autocorrectdialog.ui:432
msgctxt "autocorrectdialog|wordcompletion"
msgid "Word Completion"
msgstr "Sanojen täydennys"
#. 2HJ6n
-#: cui/uiconfig/ui/autocorrectdialog.ui:462
+#: cui/uiconfig/ui/autocorrectdialog.ui:479
msgctxt "autocorrectdialog|smarttags"
msgid "Smart Tags"
msgstr "Toimintotunnisteet"
@@ -4660,257 +5275,311 @@ msgid "Edit Links"
msgstr "Muokkaa linkkejä"
#. siGFm
-#: cui/uiconfig/ui/baselinksdialog.ui:56
+#: cui/uiconfig/ui/baselinksdialog.ui:53
msgctxt "baselinksdialog|CHANGE_SOURCE"
msgid "_Modify..."
msgstr "Muuta..."
+#. BhCKm
+#: cui/uiconfig/ui/baselinksdialog.ui:60
+msgctxt "baselinksdialog|extended_tip|CHANGE_SOURCE"
+msgid "Change the source file for the selected link."
+msgstr "Vaihdetaan valitun linkin lähdetiedostoa."
+
#. RDZHa
-#: cui/uiconfig/ui/baselinksdialog.ui:70
+#: cui/uiconfig/ui/baselinksdialog.ui:72
msgctxt "baselinksdialog|BREAK_LINK"
msgid "_Break Link"
msgstr "Pura linkki"
+#. EXexA
+#: cui/uiconfig/ui/baselinksdialog.ui:79
+msgctxt "baselinksdialog|extended_tip|BREAK_LINK"
+msgid "Breaks the link between the source file and the current document. The most recently updated contents of the source file are kept in the current document."
+msgstr "Painikkeella katkaistaan linkki lähdetiedoston ja nykyisen asiakirjan väliltä. Viimeisin päivitetty lähdetiedoston sisältö jää työstettävään asiakirjaan."
+
#. SEEGs
-#: cui/uiconfig/ui/baselinksdialog.ui:84
+#: cui/uiconfig/ui/baselinksdialog.ui:91
msgctxt "baselinksdialog|UPDATE_NOW"
msgid "_Update"
msgstr "Päivitä"
+#. BmGAY
+#: cui/uiconfig/ui/baselinksdialog.ui:98
+msgctxt "baselinksdialog|extended_tip|UPDATE_NOW"
+msgid "Updates the selected link so that the most recently saved version of the linked file is displayed in the current document."
+msgstr "Päivittää valitun linkin niin, että uusin tallennettu versio linkitetystä tiedostosta näkyy nykyiseen asiakirjaan."
+
#. A6Mz4
-#: cui/uiconfig/ui/baselinksdialog.ui:159
+#: cui/uiconfig/ui/baselinksdialog.ui:171
msgctxt "baselinksdialog|FILES"
msgid "Source file"
msgstr "Lähdetiedosto"
#. MJb22
-#: cui/uiconfig/ui/baselinksdialog.ui:172
+#: cui/uiconfig/ui/baselinksdialog.ui:184
msgctxt "baselinksdialog|LINKS"
msgid "Element"
msgstr "Elementti"
#. 5Hr79
-#: cui/uiconfig/ui/baselinksdialog.ui:185
+#: cui/uiconfig/ui/baselinksdialog.ui:197
msgctxt "baselinksdialog|TYPE"
msgid "Type"
msgstr "Tyyppi"
#. rnFJV
-#: cui/uiconfig/ui/baselinksdialog.ui:198
+#: cui/uiconfig/ui/baselinksdialog.ui:210
msgctxt "baselinksdialog|STATUS"
msgid "Status"
msgstr "Tila"
+#. 7k36Q
+#: cui/uiconfig/ui/baselinksdialog.ui:221
+msgctxt "baselinksdialog|extended_tip|TB_LINKS"
+msgid "Double-click a link in the list to open a file dialog where you can select another object for this link."
+msgstr "Luettelossa näkyvän linkin kaksoisnapsautus avaa Muuta linkkiä -ikkunan, jossa voidaan valita toinen kohde linkille."
+
#. VUouK
-#: cui/uiconfig/ui/baselinksdialog.ui:234
+#: cui/uiconfig/ui/baselinksdialog.ui:251
msgctxt "baselinksdialog|FILES2"
msgid "Source file"
msgstr "Lähdetiedosto"
#. ZukQV
-#: cui/uiconfig/ui/baselinksdialog.ui:248
+#: cui/uiconfig/ui/baselinksdialog.ui:265
msgctxt "baselinksdialog|SOURCE2"
msgid "Element:"
msgstr "Elementti:"
#. jg4VW
-#: cui/uiconfig/ui/baselinksdialog.ui:260
+#: cui/uiconfig/ui/baselinksdialog.ui:277
msgctxt "baselinksdialog|TYPE2"
msgid "Type:"
msgstr "Tyyppi:"
#. BPXPn
-#: cui/uiconfig/ui/baselinksdialog.ui:272
+#: cui/uiconfig/ui/baselinksdialog.ui:289
msgctxt "baselinksdialog|UPDATE"
msgid "Update:"
msgstr "Päivitys:"
#. NpTPK
-#: cui/uiconfig/ui/baselinksdialog.ui:337
+#: cui/uiconfig/ui/baselinksdialog.ui:354
msgctxt "baselinksdialog|AUTOMATIC"
msgid "_Automatic"
msgstr "Automaattinen"
+#. wkpVe
+#: cui/uiconfig/ui/baselinksdialog.ui:364
+msgctxt "baselinksdialog|extended_tip|AUTOMATIC"
+msgid "Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually."
+msgstr "Linkki päivitetään tiedostoa avattaessa. Lähdetiedoston muutokset näkyvät sitten linkissä. Linkitetyt kuvatiedostot voidaan päivittää vain komennolla."
+
#. GzGG5
-#: cui/uiconfig/ui/baselinksdialog.ui:353
+#: cui/uiconfig/ui/baselinksdialog.ui:375
msgctxt "baselinksdialog|MANUAL"
msgid "Ma_nual"
msgstr "Manuaalinen"
+#. x8SG6
+#: cui/uiconfig/ui/baselinksdialog.ui:385
+msgctxt "baselinksdialog|extended_tip|MANUAL"
+msgid "Only updates the link when you click the Update button."
+msgstr ""
+
+#. D2J77
+#: cui/uiconfig/ui/baselinksdialog.ui:425
+msgctxt "baselinksdialog|extended_tip|BaseLinksDialog"
+msgid "Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files."
+msgstr ""
+
#. D264D
#: cui/uiconfig/ui/bitmaptabpage.ui:66
msgctxt "bitmaptabpage|BTN_IMPORT"
msgid "Add / Import"
msgstr "Lisää / tuo"
+#. DwGRp
+#: cui/uiconfig/ui/bitmaptabpage.ui:72
+msgctxt "bitmaptabpage|extended_tip|BTN_IMPORT"
+msgid "Locate the bitmap that you want to import, and then click Open. The bitmap is added to the end of the list of available bitmaps."
+msgstr "Paikallistetaan tuotava bittikartta ja sitten napsautetaan Avaa. Bittikartta lisätään saatavilla olevien bittikarttojen luettelon loppuun."
+
#. UYRCn
-#: cui/uiconfig/ui/bitmaptabpage.ui:85
+#: cui/uiconfig/ui/bitmaptabpage.ui:90
msgctxt "bitmaptabpage|label1"
msgid "Bitmap"
msgstr "Bittikartta"
#. CFtG8
-#: cui/uiconfig/ui/bitmaptabpage.ui:133
+#: cui/uiconfig/ui/bitmaptabpage.ui:138
msgctxt "bitmaptabpage|label3"
msgid "Style:"
msgstr "Tyyli:"
#. 875YL
-#: cui/uiconfig/ui/bitmaptabpage.ui:149
+#: cui/uiconfig/ui/bitmaptabpage.ui:154
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Custom position/size"
msgstr "Mukautettu sijainti/koko"
#. exzsR
-#: cui/uiconfig/ui/bitmaptabpage.ui:150
+#: cui/uiconfig/ui/bitmaptabpage.ui:155
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Tiled"
msgstr "Monistettu"
#. tksrC
-#: cui/uiconfig/ui/bitmaptabpage.ui:151
+#: cui/uiconfig/ui/bitmaptabpage.ui:156
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Stretched"
msgstr "Venytetty"
#. dHVHq
-#: cui/uiconfig/ui/bitmaptabpage.ui:177
+#: cui/uiconfig/ui/bitmaptabpage.ui:182
msgctxt "bitmaptabpage|label4"
msgid "Size:"
msgstr "Koko:"
#. qVMh8
-#: cui/uiconfig/ui/bitmaptabpage.ui:195
+#: cui/uiconfig/ui/bitmaptabpage.ui:200
msgctxt "bitmaptabpage|label5"
msgid "Width:"
msgstr "Leveys:"
#. CQHCj
-#: cui/uiconfig/ui/bitmaptabpage.ui:233
+#: cui/uiconfig/ui/bitmaptabpage.ui:238
msgctxt "bitmaptabpage|label6"
msgid "Height:"
msgstr "Korkeus:"
#. D7XC6
-#: cui/uiconfig/ui/bitmaptabpage.ui:264
+#: cui/uiconfig/ui/bitmaptabpage.ui:269
msgctxt "bitmaptabpage|scaletsb"
msgid "Scale"
msgstr "Skaalaa"
#. r9QEy
-#: cui/uiconfig/ui/bitmaptabpage.ui:295
+#: cui/uiconfig/ui/bitmaptabpage.ui:300
msgctxt "bitmaptabpage|label7"
msgid "Position:"
msgstr "Sijainti:"
#. qqHXj
-#: cui/uiconfig/ui/bitmaptabpage.ui:311
+#: cui/uiconfig/ui/bitmaptabpage.ui:316
msgctxt "bitmaptabpage|positionlb"
msgid "Top Left"
msgstr "Ylävasemmalla"
#. SuAZu
-#: cui/uiconfig/ui/bitmaptabpage.ui:312
+#: cui/uiconfig/ui/bitmaptabpage.ui:317
msgctxt "bitmaptabpage|positionlb"
msgid "Top Center"
msgstr "Ylhäällä keskellä"
#. CiwFK
-#: cui/uiconfig/ui/bitmaptabpage.ui:313
+#: cui/uiconfig/ui/bitmaptabpage.ui:318
msgctxt "bitmaptabpage|positionlb"
msgid "Top Right"
msgstr "Yläoikealla"
#. gB3qr
-#: cui/uiconfig/ui/bitmaptabpage.ui:314
+#: cui/uiconfig/ui/bitmaptabpage.ui:319
msgctxt "bitmaptabpage|positionlb"
msgid "Center Left"
msgstr "Keskellä vasemmalla"
#. 6nG4k
-#: cui/uiconfig/ui/bitmaptabpage.ui:315
+#: cui/uiconfig/ui/bitmaptabpage.ui:320
msgctxt "bitmaptabpage|positionlb"
msgid "Center"
msgstr "Keskellä"
#. 5uwBi
-#: cui/uiconfig/ui/bitmaptabpage.ui:316
+#: cui/uiconfig/ui/bitmaptabpage.ui:321
msgctxt "bitmaptabpage|positionlb"
msgid "Center Right"
msgstr "Keskellä oikealla"
#. 9bWMT
-#: cui/uiconfig/ui/bitmaptabpage.ui:317
+#: cui/uiconfig/ui/bitmaptabpage.ui:322
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Left"
msgstr "Alavasemmalla"
#. BFD9u
-#: cui/uiconfig/ui/bitmaptabpage.ui:318
+#: cui/uiconfig/ui/bitmaptabpage.ui:323
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Center"
msgstr "Alhaalla keskellä"
#. TGk6s
-#: cui/uiconfig/ui/bitmaptabpage.ui:319
+#: cui/uiconfig/ui/bitmaptabpage.ui:324
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Right"
msgstr "Alaoikealla"
#. s3kat
-#: cui/uiconfig/ui/bitmaptabpage.ui:345
+#: cui/uiconfig/ui/bitmaptabpage.ui:350
msgctxt "bitmaptabpage|label9"
msgid "Tiling Position:"
msgstr "Toiston lähtöpiste:"
#. 9ddbX
-#: cui/uiconfig/ui/bitmaptabpage.ui:364
+#: cui/uiconfig/ui/bitmaptabpage.ui:369
msgctxt "bitmaptabpage|label10"
msgid "X-Offset:"
msgstr "X-siirtymä:"
#. C6HnD
-#: cui/uiconfig/ui/bitmaptabpage.ui:402
+#: cui/uiconfig/ui/bitmaptabpage.ui:407
msgctxt "bitmaptabpage|label11"
msgid "Y-Offset:"
msgstr "Y-siirtymä:"
#. oDXfi
-#: cui/uiconfig/ui/bitmaptabpage.ui:447
+#: cui/uiconfig/ui/bitmaptabpage.ui:452
msgctxt "bitmaptabpage|label15"
msgid "Tiling Offset:"
msgstr "Toiston siirtymä:"
#. GEMsd
-#: cui/uiconfig/ui/bitmaptabpage.ui:470
+#: cui/uiconfig/ui/bitmaptabpage.ui:475
msgctxt "bitmaptabpage|tileofflb"
msgid "Row"
msgstr "Rivi"
#. NFEF6
-#: cui/uiconfig/ui/bitmaptabpage.ui:471
+#: cui/uiconfig/ui/bitmaptabpage.ui:476
msgctxt "bitmaptabpage|tileofflb"
msgid "Column"
msgstr "Sarake"
#. CAdor
-#: cui/uiconfig/ui/bitmaptabpage.ui:515
+#: cui/uiconfig/ui/bitmaptabpage.ui:520
msgctxt "bitmaptabpage|label2"
msgid "Options"
msgstr "Asetukset"
#. EqVUn
-#: cui/uiconfig/ui/bitmaptabpage.ui:564
+#: cui/uiconfig/ui/bitmaptabpage.ui:569
msgctxt "bitmaptabpage|CTL_BITMAP_PREVIEW-atkobject"
msgid "Example"
msgstr "Esimerkki"
#. uFFCW
-#: cui/uiconfig/ui/bitmaptabpage.ui:586
+#: cui/uiconfig/ui/bitmaptabpage.ui:591
msgctxt "bitmaptabpage|label8"
msgid "Preview"
msgstr "Esikatselu"
+#. dqv5m
+#: cui/uiconfig/ui/bitmaptabpage.ui:607
+msgctxt "bitmaptabpage|extended_tip|BitmapTabPage"
+msgid "Select a bitmap that you want to use as a fill image, or add your own bitmap pattern."
+msgstr ""
+
#. AYRA3
#: cui/uiconfig/ui/borderareatransparencydialog.ui:8
msgctxt "borderareatransparencydialog|BorderAreaTransparencyDialog"
@@ -5091,20 +5760,38 @@ msgctxt "breaknumberoption|BreakNumberOption"
msgid "Hyphenation"
msgstr "Tavutus"
+#. kmYk5
+#: cui/uiconfig/ui/breaknumberoption.ui:94
+msgctxt "beforebreak"
+msgid "Sets the minimum number of characters of the word to be hyphenated that must remain at the end of the line."
+msgstr ""
+
#. 8Fp43
-#: cui/uiconfig/ui/breaknumberoption.ui:103
+#: cui/uiconfig/ui/breaknumberoption.ui:105
msgctxt "breaknumberoption|beforelabel"
msgid "Characters Before Break"
msgstr "Merkkejä ennen rivinvaihtoa"
+#. upKGC
+#: cui/uiconfig/ui/breaknumberoption.ui:138
+msgctxt "afterbreak"
+msgid "Specifies the minimum number of characters of a hyphenated word required at the next line."
+msgstr ""
+
#. p6cfZ
-#: cui/uiconfig/ui/breaknumberoption.ui:142
+#: cui/uiconfig/ui/breaknumberoption.ui:149
msgctxt "breaknumberoption|afterlabel"
msgid "Characters After Break"
msgstr "Merkkejä rivinvaihdon jälkeen"
+#. XN4Hs
+#: cui/uiconfig/ui/breaknumberoption.ui:182
+msgctxt "wordlength"
+msgid "Specifies the minimum number of characters required for automatic hyphenation to be applied."
+msgstr ""
+
#. sAo4B
-#: cui/uiconfig/ui/breaknumberoption.ui:181
+#: cui/uiconfig/ui/breaknumberoption.ui:193
msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Sanojen vähimmäispituus"
@@ -5170,139 +5857,139 @@ msgid "Select image..."
msgstr "Valitse kuva..."
#. Cv7BZ
-#: cui/uiconfig/ui/bulletandposition.ui:371
+#: cui/uiconfig/ui/bulletandposition.ui:372
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Väri:"
#. jxFmf
-#: cui/uiconfig/ui/bulletandposition.ui:415
+#: cui/uiconfig/ui/bulletandposition.ui:417
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Ominaisuudet"
#. CrtKB
-#: cui/uiconfig/ui/bulletandposition.ui:450
+#: cui/uiconfig/ui/bulletandposition.ui:452
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Ennen:"
#. VhHma
-#: cui/uiconfig/ui/bulletandposition.ui:464
+#: cui/uiconfig/ui/bulletandposition.ui:466
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Jälkeen:"
#. GAS5v
-#: cui/uiconfig/ui/bulletandposition.ui:504
+#: cui/uiconfig/ui/bulletandposition.ui:506
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Erotin"
#. KjiTB
-#: cui/uiconfig/ui/bulletandposition.ui:550
+#: cui/uiconfig/ui/bulletandposition.ui:552
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Leveys:"
#. AjgW8
-#: cui/uiconfig/ui/bulletandposition.ui:564
+#: cui/uiconfig/ui/bulletandposition.ui:566
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Korkeus:"
#. vqDku
-#: cui/uiconfig/ui/bulletandposition.ui:624
+#: cui/uiconfig/ui/bulletandposition.ui:626
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
#. pGXFi
-#: cui/uiconfig/ui/bulletandposition.ui:637
+#: cui/uiconfig/ui/bulletandposition.ui:639
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "Suht. koko:"
#. abzh8
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:657
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Säilytä mittasuhteet"
#. EhFU7
-#: cui/uiconfig/ui/bulletandposition.ui:693
+#: cui/uiconfig/ui/bulletandposition.ui:695
msgctxt "bulletandposition|beforeafter"
msgid "Size"
msgstr "Koko"
#. NoZdN
-#: cui/uiconfig/ui/bulletandposition.ui:728
+#: cui/uiconfig/ui/bulletandposition.ui:730
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Sisennys:"
#. mW5ef
-#: cui/uiconfig/ui/bulletandposition.ui:742
+#: cui/uiconfig/ui/bulletandposition.ui:744
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Leveys:"
#. SDhv3
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:759
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
#. eeDkR
-#: cui/uiconfig/ui/bulletandposition.ui:771
+#: cui/uiconfig/ui/bulletandposition.ui:773
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
#. CRdNb
-#: cui/uiconfig/ui/bulletandposition.ui:782
+#: cui/uiconfig/ui/bulletandposition.ui:784
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Suhteellinen"
#. FhAfv
-#: cui/uiconfig/ui/bulletandposition.ui:849
+#: cui/uiconfig/ui/bulletandposition.ui:851
msgctxt "bulletandposition|ALlabel"
msgid "Alignment:"
msgstr "Tasaus:"
#. BfBBW
-#: cui/uiconfig/ui/bulletandposition.ui:868
+#: cui/uiconfig/ui/bulletandposition.ui:870
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Sijainti"
#. MSmfX
-#: cui/uiconfig/ui/bulletandposition.ui:901
+#: cui/uiconfig/ui/bulletandposition.ui:903
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Dia"
#. dBWa8
-#: cui/uiconfig/ui/bulletandposition.ui:916
+#: cui/uiconfig/ui/bulletandposition.ui:918
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Valinta"
#. ATaHy
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:934
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
#. DiEaB
-#: cui/uiconfig/ui/bulletandposition.ui:952
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
#. GHYEV
-#: cui/uiconfig/ui/bulletandposition.ui:1009
+#: cui/uiconfig/ui/bulletandposition.ui:1011
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Esikatselu"
@@ -5331,127 +6018,175 @@ msgctxt "calloutdialog|RID_SVXPAGE_CAPTION"
msgid "Callout"
msgstr "Kuvateksti"
+#. VmG2i
+#: cui/uiconfig/ui/calloutpage.ui:35
+msgctxt "calloutpage|extended_tip|valueset"
+msgid "Click the Callout style that you want to apply to the selected callout."
+msgstr "Napsautetaan puhekuplan tyyliä, jota halutaan käyttää valitussa kuvatekstissä."
+
#. cAZqx
-#: cui/uiconfig/ui/calloutpage.ui:59
+#: cui/uiconfig/ui/calloutpage.ui:64
msgctxt "calloutpage|label2"
msgid "_Extension:"
msgstr "Laajennus:"
#. vfBPx
-#: cui/uiconfig/ui/calloutpage.ui:74
+#: cui/uiconfig/ui/calloutpage.ui:79
msgctxt "calloutpage|liststore1"
msgid "Optimal"
msgstr "Optimaalinen"
#. HjpWL
-#: cui/uiconfig/ui/calloutpage.ui:75
+#: cui/uiconfig/ui/calloutpage.ui:80
msgctxt "calloutpage|liststore1"
msgid "From top"
msgstr "Ylhäältä"
#. CQsFs
-#: cui/uiconfig/ui/calloutpage.ui:76
+#: cui/uiconfig/ui/calloutpage.ui:81
msgctxt "calloutpage|liststore1"
msgid "From left"
msgstr "Vasemmalta"
#. ZjSVS
-#: cui/uiconfig/ui/calloutpage.ui:77
+#: cui/uiconfig/ui/calloutpage.ui:82
msgctxt "calloutpage|liststore1"
msgid "Horizontal"
msgstr "Vaakataso"
#. bzD84
-#: cui/uiconfig/ui/calloutpage.ui:78
+#: cui/uiconfig/ui/calloutpage.ui:83
#, fuzzy
msgctxt "calloutpage|liststore1"
msgid "Vertical"
msgstr "Pystytaso"
+#. StuZd
+#: cui/uiconfig/ui/calloutpage.ui:87
+msgctxt "calloutpage|extended_tip|extension"
+msgid "Select where you want to extend the callout line from, in relation to the callout box."
+msgstr "Valitaan miten puhekuplan viiva jatke suunnataan, suhteessa ruutuun."
+
+#. CGjKD
+#: cui/uiconfig/ui/calloutpage.ui:117
+msgctxt "calloutpage|extended_tip|length"
+msgid "Enter the length of the callout line segment that extends from the callout box to the inflection point of the line."
+msgstr "Annetaan puhekuplan viivan sen osan pituus, joka ulottuu kuplasta viivan taitekohtaan."
+
#. SFvEw
-#: cui/uiconfig/ui/calloutpage.ui:115
+#: cui/uiconfig/ui/calloutpage.ui:130
msgctxt "calloutpage|lengthft"
msgid "_Length:"
msgstr "Pituus:"
#. Yb2kZ
-#: cui/uiconfig/ui/calloutpage.ui:133
+#: cui/uiconfig/ui/calloutpage.ui:148
msgctxt "calloutpage|optimal"
msgid "_Optimal"
msgstr "Optimaalinen"
+#. QEDdo
+#: cui/uiconfig/ui/calloutpage.ui:157
+msgctxt "calloutpage|extended_tip|optimal"
+msgid "Click here to display a single-angled line in an optimal way."
+msgstr "Napsauttamalla merkin näkyviin saa yksikulmaisen viiva esittämisen optimoitua."
+
#. dD3os
-#: cui/uiconfig/ui/calloutpage.ui:156
+#: cui/uiconfig/ui/calloutpage.ui:176
msgctxt "calloutpage|positionft"
msgid "_Position:"
msgstr "Sijainti:"
#. EXWoL
-#: cui/uiconfig/ui/calloutpage.ui:170
+#: cui/uiconfig/ui/calloutpage.ui:190
msgctxt "calloutpage|byft"
msgid "_By:"
msgstr "Tekijä:"
#. R7VbC
-#: cui/uiconfig/ui/calloutpage.ui:185
+#: cui/uiconfig/ui/calloutpage.ui:205
msgctxt "calloutpage|position"
msgid "Top"
msgstr "Yläreuna"
#. G4QwP
-#: cui/uiconfig/ui/calloutpage.ui:186
+#: cui/uiconfig/ui/calloutpage.ui:206
msgctxt "calloutpage|position"
msgid "Middle"
msgstr "Keskikohta"
#. WU9cc
-#: cui/uiconfig/ui/calloutpage.ui:187
+#: cui/uiconfig/ui/calloutpage.ui:207
msgctxt "calloutpage|position"
msgid "Bottom"
msgstr "Alareuna"
#. XAgVD
-#: cui/uiconfig/ui/calloutpage.ui:188
+#: cui/uiconfig/ui/calloutpage.ui:208
msgctxt "calloutpage|position"
msgid "Left"
msgstr "Vasen"
#. W5B2V
-#: cui/uiconfig/ui/calloutpage.ui:189
+#: cui/uiconfig/ui/calloutpage.ui:209
msgctxt "calloutpage|position"
msgid "Center"
msgstr "Keskikohta"
#. NNBsv
-#: cui/uiconfig/ui/calloutpage.ui:190
+#: cui/uiconfig/ui/calloutpage.ui:210
msgctxt "calloutpage|position"
msgid "Right"
msgstr "Oikea"
+#. ZgPFC
+#: cui/uiconfig/ui/calloutpage.ui:214
+msgctxt "calloutpage|extended_tip|position"
+msgid "Select where you want to extend the callout line from, in relation to the callout box."
+msgstr "Valitaan miten puhekuplan viiva jatke suunnataan, suhteessa ruutuun."
+
+#. rj7LU
+#: cui/uiconfig/ui/calloutpage.ui:233
+msgctxt "calloutpage|extended_tip|by"
+msgid "Select where you want to extend the callout line from, in relation to the callout box."
+msgstr "Valitaan miten puhekuplan viiva jatke suunnataan, suhteessa ruutuun."
+
#. jG4AE
-#: cui/uiconfig/ui/calloutpage.ui:227
+#: cui/uiconfig/ui/calloutpage.ui:257
msgctxt "calloutpage|label1"
msgid "_Spacing:"
msgstr "Väli:"
+#. 9SDGt
+#: cui/uiconfig/ui/calloutpage.ui:277
+msgctxt "calloutpage|extended_tip|spacing"
+msgid "Enter the amount of space that you want to leave between the end of the callout line, and the callout box."
+msgstr "Annetaan etäisyys, joka jää puhekuplan viivanpään ja ruudun väliin."
+
#. wvzCN
-#: cui/uiconfig/ui/calloutpage.ui:262
+#: cui/uiconfig/ui/calloutpage.ui:297
msgctxt "calloutpage|linetypes"
msgid "Straight Line"
msgstr "Suora viiva"
#. bQMyC
-#: cui/uiconfig/ui/calloutpage.ui:263
+#: cui/uiconfig/ui/calloutpage.ui:298
msgctxt "calloutpage|linetypes"
msgid "Angled Line"
msgstr "Kulmikas viiva"
#. LFs2D
-#: cui/uiconfig/ui/calloutpage.ui:264
+#: cui/uiconfig/ui/calloutpage.ui:299
msgctxt "calloutpage|linetypes"
msgid "Angled Connector Line"
msgstr "Kulmikas yhdysviiva"
+#. mvLuE
+#: cui/uiconfig/ui/calloutpage.ui:316
+msgctxt "calloutpage|extended_tip|CalloutPage"
+msgid "Click the Callout style that you want to apply to the selected callout."
+msgstr "Napsautetaan puhekuplan tyyliä, jota halutaan käyttää valitussa kuvatekstissä."
+
#. vQp3A
#: cui/uiconfig/ui/cellalignment.ui:50
msgctxt "cellalignment|labelDegrees"
@@ -5464,180 +6199,252 @@ msgctxt "cellalignment|labelRefEdge"
msgid "_Reference edge:"
msgstr "Kiinteä reuna:"
+#. YBDvA
+#: cui/uiconfig/ui/cellalignment.ui:83
+msgctxt "cellalignment|extended_tip|spinDegrees"
+msgid "Enter the rotation angle from 0 to 360 for the text in the selected cell(s)."
+msgstr ""
+
+#. D2Ebb
+#: cui/uiconfig/ui/cellalignment.ui:100
+msgctxt "cellalignment|extended_tip|references"
+msgid "Specify the cell edge from which to write the rotated text."
+msgstr "Määritetään solun se reuna, jonka mukaan tekstiä kierretään."
+
#. Gwudo
-#: cui/uiconfig/ui/cellalignment.ui:112
+#: cui/uiconfig/ui/cellalignment.ui:122
msgctxt "cellalignment|checkVertStack"
msgid "Vertically s_tacked"
msgstr "Pystysuuntainen pino"
+#. MDQLn
+#: cui/uiconfig/ui/cellalignment.ui:132
+msgctxt "cellalignment|extended_tip|checkVertStack"
+msgid "Aligns text vertically."
+msgstr "Kohdistetaan teksti pystyyn."
+
#. XBFYt
-#: cui/uiconfig/ui/cellalignment.ui:128
+#: cui/uiconfig/ui/cellalignment.ui:143
msgctxt "cellalignment|checkAsianMode"
msgid "Asian layout _mode"
msgstr "Aasialainen asettelu -tila"
+#. EKAhC
+#: cui/uiconfig/ui/cellalignment.ui:154
+msgctxt "cellalignment|extended_tip|checkAsianMode"
+msgid "Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated."
+msgstr "Aasialaiset merkit asetellaan toinen toisensa alle valittuihin soluihin. Jos solussa on enemmän kuin yksi rivi tekstiä, tekstirivit muunnetaan oikealta vasemmalle järjestetyiksi tekstisarakkeiksi. Muunnetun tekstin länsimaiset merkit kierretään 90 astetta oikealle. Aasialaisia merkkejä ei kierretä."
+
+#. rTfQa
+#: cui/uiconfig/ui/cellalignment.ui:178
+msgctxt "cellalignment|extended_tip|dialcontrol"
+msgid "Click in the dial to set the text orientation."
+msgstr "Tekstin suunta voidaan asettaa kehää napsauttamalla."
+
#. Kh9JE
-#: cui/uiconfig/ui/cellalignment.ui:173
+#: cui/uiconfig/ui/cellalignment.ui:198
msgctxt "cellalignment|labelTextOrient"
msgid "Text Orientation"
msgstr "Tekstin asento"
#. eM4r3
-#: cui/uiconfig/ui/cellalignment.ui:207
+#: cui/uiconfig/ui/cellalignment.ui:232
msgctxt "cellalignment|checkWrapTextAuto"
msgid "_Wrap text automatically"
msgstr "_Rivitä teksti automaattisesti"
+#. warfE
+#: cui/uiconfig/ui/cellalignment.ui:243
+msgctxt "cellalignment|extended_tip|checkWrapTextAuto"
+msgid "Wraps text onto another line at the cell border. The number of lines depends on the width of the cell."
+msgstr "Rivitetään teksti seuraavalle riville solun reunassa. Rivien määrä riippuu solun leveydestä."
+
#. GDRER
-#: cui/uiconfig/ui/cellalignment.ui:224
+#: cui/uiconfig/ui/cellalignment.ui:254
msgctxt "cellalignment|checkShrinkFitCellSize"
msgid "_Shrink to fit cell size"
msgstr "Kuti_sta solun kokoon sopivaksi"
+#. erdkq
+#: cui/uiconfig/ui/cellalignment.ui:264
+msgctxt "cellalignment|extended_tip|checkShrinkFitCellSize"
+msgid "Reduces the apparent size of the font so that the contents of the cell fit into the current cell width. You cannot apply this command to a cell that contains line breaks."
+msgstr "Pienennetään fontin näkyvää kokoa, niin että solun sisältö sopii nykyiseen solun leveyteen. Tätä komentoa ei voi käyttää soluihin, joissa on rivinvaihtoja.."
+
#. Phw2T
-#: cui/uiconfig/ui/cellalignment.ui:240
+#: cui/uiconfig/ui/cellalignment.ui:275
msgctxt "cellalignment|checkHyphActive"
msgid "Hyphenation _active"
msgstr "Tavutus _aktiivinen"
+#. XLgra
+#: cui/uiconfig/ui/cellalignment.ui:287
+msgctxt "cellalignment|extended_tip|checkHyphActive"
+msgid "Enables word hyphenation for text wrapping to the next line."
+msgstr "Otetaan sanojen tavutus käyttöön tekstin rivityksessä."
+
#. pQLTe
-#: cui/uiconfig/ui/cellalignment.ui:265
+#: cui/uiconfig/ui/cellalignment.ui:305
msgctxt "cellalignment|LabelTxtDir"
msgid "Te_xt direction:"
msgstr "Tekstin kirjoitussuunta:"
#. jDFtf
-#: cui/uiconfig/ui/cellalignment.ui:301
+#: cui/uiconfig/ui/cellalignment.ui:341
msgctxt "cellalignment|labelProperties"
msgid "Properties"
msgstr "Ominaisuudet"
+#. eByBx
+#: cui/uiconfig/ui/cellalignment.ui:379
+msgctxt "cellalignment|extended_tip|spinIndentFrom"
+msgid "Indents from the left edge of the cell by the amount that you enter."
+msgstr "Sisennetään solun vasemmasta reunasta annettu määrä."
+
#. dzBtA
-#: cui/uiconfig/ui/cellalignment.ui:347
+#: cui/uiconfig/ui/cellalignment.ui:392
msgctxt "cellalignment|labelHorzAlign"
msgid "Hori_zontal:"
msgstr ""
#. Ck3KU
-#: cui/uiconfig/ui/cellalignment.ui:361
+#: cui/uiconfig/ui/cellalignment.ui:406
msgctxt "cellalignment|labelVertAlign"
msgid "_Vertical:"
msgstr ""
#. mF2bB
-#: cui/uiconfig/ui/cellalignment.ui:375
+#: cui/uiconfig/ui/cellalignment.ui:420
msgctxt "cellalignment|labelIndent"
msgid "I_ndent:"
msgstr "Sisennys:"
#. FUsYk
-#: cui/uiconfig/ui/cellalignment.ui:390
+#: cui/uiconfig/ui/cellalignment.ui:435
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Default"
msgstr "Oletus"
#. tweuQ
-#: cui/uiconfig/ui/cellalignment.ui:391
+#: cui/uiconfig/ui/cellalignment.ui:436
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Left"
msgstr "Vasen"
#. RGwHA
-#: cui/uiconfig/ui/cellalignment.ui:392
+#: cui/uiconfig/ui/cellalignment.ui:437
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Center"
msgstr "Keskelle"
#. W9PDc
-#: cui/uiconfig/ui/cellalignment.ui:393
+#: cui/uiconfig/ui/cellalignment.ui:438
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Right"
msgstr "Oikea"
#. sFf4x
-#: cui/uiconfig/ui/cellalignment.ui:394
+#: cui/uiconfig/ui/cellalignment.ui:439
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Justified"
msgstr "Tasattu"
#. yJ33b
-#: cui/uiconfig/ui/cellalignment.ui:395
+#: cui/uiconfig/ui/cellalignment.ui:440
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Filled"
msgstr "Täytetty"
#. CF59Y
-#: cui/uiconfig/ui/cellalignment.ui:396
+#: cui/uiconfig/ui/cellalignment.ui:441
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Distributed"
msgstr "Jaettu"
+#. 8xDX2
+#: cui/uiconfig/ui/cellalignment.ui:445
+msgctxt "cellalignment|extended_tip|comboboxHorzAlign"
+msgid "Select the horizontal alignment option that you want to apply to the cell contents."
+msgstr "Valitaan solujen sisältöön käytettävä vaakatasaus."
+
#. Cu2BM
-#: cui/uiconfig/ui/cellalignment.ui:409
+#: cui/uiconfig/ui/cellalignment.ui:459
msgctxt "cellalignment|liststoreVertAlign"
msgid "Default"
msgstr "Oletus"
#. dNANA
-#: cui/uiconfig/ui/cellalignment.ui:410
+#: cui/uiconfig/ui/cellalignment.ui:460
msgctxt "cellalignment|liststoreVertAlign"
msgid "Top"
msgstr "Yläreuna"
#. 8qsJF
-#: cui/uiconfig/ui/cellalignment.ui:411
+#: cui/uiconfig/ui/cellalignment.ui:461
msgctxt "cellalignment|liststoreVertAlign"
msgid "Middle"
msgstr "Keskikohta"
#. eGhGU
-#: cui/uiconfig/ui/cellalignment.ui:412
+#: cui/uiconfig/ui/cellalignment.ui:462
msgctxt "cellalignment|liststoreVertAlign"
msgid "Bottom"
msgstr "Alareuna"
#. TGeEd
-#: cui/uiconfig/ui/cellalignment.ui:413
+#: cui/uiconfig/ui/cellalignment.ui:463
msgctxt "cellalignment|liststoreVertAlign"
msgid "Justified"
msgstr "Tasattu"
#. s7QDA
-#: cui/uiconfig/ui/cellalignment.ui:414
+#: cui/uiconfig/ui/cellalignment.ui:464
msgctxt "cellalignment|liststoreVertAlign"
msgid "Distributed"
msgstr "Jaettu"
+#. MH9tT
+#: cui/uiconfig/ui/cellalignment.ui:468
+msgctxt "cellalignment|extended_tip|comboboxVertAlign"
+msgid "Select the vertical alignment option that you want to apply to the cell contents."
+msgstr "Valitaan solun sisältöön käytettävä pystysuuntainen tasaus."
+
#. FT9GJ
-#: cui/uiconfig/ui/cellalignment.ui:436
+#: cui/uiconfig/ui/cellalignment.ui:491
msgctxt "cellalignment|LabelTextAlig"
msgid "Text Alignment"
msgstr "Tekstin tasaus"
#. CDKBz
-#: cui/uiconfig/ui/cellalignment.ui:456
+#: cui/uiconfig/ui/cellalignment.ui:511
msgctxt "cellalignment|labelSTR_BOTTOMLOCK"
msgid "Text Extension From Lower Cell Border"
msgstr "Tekstin laajennus solun alareunasta"
#. 7MTSt
-#: cui/uiconfig/ui/cellalignment.ui:467
+#: cui/uiconfig/ui/cellalignment.ui:522
msgctxt "cellalignment|labelSTR_TOPLOCK"
msgid "Text Extension From Upper Cell Border"
msgstr "Tekstin laajennus solun yläreunasta"
#. HJYjP
-#: cui/uiconfig/ui/cellalignment.ui:478
+#: cui/uiconfig/ui/cellalignment.ui:533
msgctxt "cellalignment|labelSTR_CELLLOCK"
msgid "Text Extension Inside Cell"
msgstr "Tekstin laajennus solun sisällä"
#. EDRZX
-#: cui/uiconfig/ui/cellalignment.ui:489
+#: cui/uiconfig/ui/cellalignment.ui:544
msgctxt "cellalignment|labelABCD"
msgid "ABCD"
msgstr "ABCD"
+#. U4vgj
+#: cui/uiconfig/ui/cellalignment.ui:560
+msgctxt "cellalignment|extended_tip|CellAlignPage"
+msgid "Sets the alignment options for the contents of the current cell, or the selected cells."
+msgstr "Tehdään valitun solun, tai solujen, sisällön tasausasetukset."
+
#. xPtim
#: cui/uiconfig/ui/certdialog.ui:24
msgctxt "certdialog|CertDialog"
@@ -5645,144 +6452,234 @@ msgid "Certificate Path"
msgstr "Varmenteen polku"
#. zZy4o
-#: cui/uiconfig/ui/certdialog.ui:43
+#: cui/uiconfig/ui/certdialog.ui:40
msgctxt "certdialog|add"
msgid "_Select NSS path..."
msgstr "Valitse NSS-polku..."
+#. zx3Mw
+#: cui/uiconfig/ui/certdialog.ui:48
+msgctxt "certdialog|extended_tip|add"
+msgid "Opens a file picker dialog to add a new Network Security Services Certificate directory to the list."
+msgstr ""
+
#. GFGjC
-#: cui/uiconfig/ui/certdialog.ui:137
+#: cui/uiconfig/ui/certdialog.ui:138
msgctxt "certdialog|label2"
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
msgstr "Valitse tai lisää digitaalisiin allekirjoituksiin käytettävä Network Security Services -varmennehakemisto:"
#. BbEyB
-#: cui/uiconfig/ui/certdialog.ui:160
+#: cui/uiconfig/ui/certdialog.ui:161
msgctxt "certdialog|manual"
msgid "manual"
msgstr "manuaalinen"
#. zWhfK
-#: cui/uiconfig/ui/certdialog.ui:171
+#: cui/uiconfig/ui/certdialog.ui:172
msgctxt "certdialog|certdir"
msgid "Select a Certificate directory"
msgstr "Valitse varmennehakemisto"
#. 7NJfB
-#: cui/uiconfig/ui/certdialog.ui:223
+#: cui/uiconfig/ui/certdialog.ui:209
msgctxt "certdialog|profile"
msgid "Profile"
msgstr "Profiili"
#. YBT5H
-#: cui/uiconfig/ui/certdialog.ui:236
+#: cui/uiconfig/ui/certdialog.ui:231
msgctxt "certdialog|dir"
msgid "Directory"
msgstr "Hakemisto"
#. Bt5Lw
-#: cui/uiconfig/ui/certdialog.ui:261
+#: cui/uiconfig/ui/certdialog.ui:256
msgctxt "certdialog|label1"
msgid "Certificate Path"
msgstr "Varmenteen polku"
+#. pbBGM
+#: cui/uiconfig/ui/certdialog.ui:282
+msgctxt "certdialog|extended_tip|CertDialog"
+msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures."
+msgstr ""
+
+#. xXVpD
+#: cui/uiconfig/ui/charnamepage.ui:243
+msgctxt "charnamepage|extended_tip|weststylelb-nocjk"
+msgid "Select the formatting that you want to apply."
+msgstr "Valitse käytettävä muotoilu."
+
+#. MR6Nr
+#: cui/uiconfig/ui/charnamepage.ui:339
+msgctxt "charnamepage|extended_tip|westsizelb-nocjk"
+msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
+msgstr "Syötetään tai valitaan käytettävä fonttikoko. Skaalautuville fonteille voidaan antaa myös desimaalikokoja."
+
#. YcKtn
-#: cui/uiconfig/ui/charnamepage.ui:360
+#: cui/uiconfig/ui/charnamepage.ui:370
msgctxt "charnamepage|westsizeft-nocjk"
msgid "Size:"
msgstr "Koko:"
#. WQxtG
-#: cui/uiconfig/ui/charnamepage.ui:386
+#: cui/uiconfig/ui/charnamepage.ui:396
msgctxt "charnamepage|westlangft-nocjk"
msgid "Language:"
msgstr "Kieli:"
+#. 63kyg
+#: cui/uiconfig/ui/charnamepage.ui:431
+msgctxt "charnamepage|extended_tip|westlanglb-nocjk"
+msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
+msgstr "Asetetaan oikoluvun valittuun tai kirjoitettavaan tekstiin käyttämä kieli. Käytettävissä olevilla kielimoduuleilla on pukkimerkki nimen edessä."
+
#. NgZJ9
-#: cui/uiconfig/ui/charnamepage.ui:435
+#: cui/uiconfig/ui/charnamepage.ui:450
msgctxt "charnamepage|west_features_button-nocjk"
msgid "Features..."
msgstr "Ominaisuudet..."
#. nKfjE
-#: cui/uiconfig/ui/charnamepage.ui:514
+#: cui/uiconfig/ui/charnamepage.ui:529
msgctxt "charnamepage|westsizeft-cjk"
msgid "Size:"
msgstr "Koko:"
#. jJc8T
-#: cui/uiconfig/ui/charnamepage.ui:528
+#: cui/uiconfig/ui/charnamepage.ui:543
msgctxt "charnamepage|westlangft-cjk"
msgid "Language:"
msgstr "Kieli:"
+#. PEg2a
+#: cui/uiconfig/ui/charnamepage.ui:584
+msgctxt "charnamepage|extended_tip|weststylelb-cjk"
+msgid "Select the formatting that you want to apply."
+msgstr "Valitse käytettävä muotoilu."
+
+#. 8quPQ
+#: cui/uiconfig/ui/charnamepage.ui:606
+msgctxt "charnamepage|extended_tip|westsizelb-cjk"
+msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
+msgstr "Syötetään tai valitaan käytettävä fonttikoko. Skaalautuville fonteille voidaan antaa myös desimaalikokoja."
+
+#. zCCrx
+#: cui/uiconfig/ui/charnamepage.ui:637
+msgctxt "charnamepage|extended_tip|westlanglb-cjk"
+msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
+msgstr "Asetetaan oikoluvun valittuun tai kirjoitettavaan tekstiin käyttämä kieli. Käytettävissä olevilla kielimoduuleilla on pukkimerkki nimen edessä."
+
#. qpSnT
-#: cui/uiconfig/ui/charnamepage.ui:635
+#: cui/uiconfig/ui/charnamepage.ui:665
msgctxt "charnamepage|west_features_button-cjk"
msgid "Features..."
msgstr "Ominaisuudet..."
#. LYK4e
-#: cui/uiconfig/ui/charnamepage.ui:661
+#: cui/uiconfig/ui/charnamepage.ui:691
msgctxt "charnamepage|label4"
msgid "Western Text Font"
msgstr "Länsimaisen tekstin fontti"
#. q4WZB
-#: cui/uiconfig/ui/charnamepage.ui:726
+#: cui/uiconfig/ui/charnamepage.ui:756
msgctxt "charnamepage|eastsizeft"
msgid "Size:"
msgstr "Koko:"
#. 6MVEP
-#: cui/uiconfig/ui/charnamepage.ui:740
+#: cui/uiconfig/ui/charnamepage.ui:770
msgctxt "charnamepage|eastlangft"
msgid "Language:"
msgstr "Kieli:"
+#. BhQZB
+#: cui/uiconfig/ui/charnamepage.ui:811
+msgctxt "charnamepage|extended_tip|eaststylelb"
+msgid "Select the formatting that you want to apply."
+msgstr "Valitse käytettävä muotoilu."
+
+#. JSR99
+#: cui/uiconfig/ui/charnamepage.ui:833
+msgctxt "charnamepage|extended_tip|eastsizelb"
+msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
+msgstr "Syötetään tai valitaan käytettävä fonttikoko. Skaalautuville fonteille voidaan antaa myös desimaalikokoja."
+
+#. KLJQT
+#: cui/uiconfig/ui/charnamepage.ui:863
+msgctxt "charnamepage|extended_tip|eastlanglb"
+msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
+msgstr "Asetetaan oikoluvun valittuun tai kirjoitettavaan tekstiin käyttämä kieli. Käytettävissä olevilla kielimoduuleilla on pukkimerkki nimen edessä."
+
#. 5uQYn
-#: cui/uiconfig/ui/charnamepage.ui:845
+#: cui/uiconfig/ui/charnamepage.ui:890
msgctxt "charnamepage|east_features_button"
msgid "Features..."
msgstr "Ominaisuudet..."
#. vAo4E
-#: cui/uiconfig/ui/charnamepage.ui:871
+#: cui/uiconfig/ui/charnamepage.ui:916
msgctxt "charnamepage|label5"
msgid "Asian Text Font"
msgstr "Aasialaisen tekstin fontti"
#. FSm5y
-#: cui/uiconfig/ui/charnamepage.ui:936
+#: cui/uiconfig/ui/charnamepage.ui:981
msgctxt "charnamepage|ctlsizeft"
msgid "Size:"
msgstr "Koko:"
#. j6bmf
-#: cui/uiconfig/ui/charnamepage.ui:950
+#: cui/uiconfig/ui/charnamepage.ui:995
msgctxt "charnamepage|ctllangft"
msgid "Language:"
msgstr "Kieli:"
+#. 64NvC
+#: cui/uiconfig/ui/charnamepage.ui:1036
+msgctxt "charnamepage|extended_tip|ctlstylelb"
+msgid "Select the formatting that you want to apply."
+msgstr "Valitse käytettävä muotoilu."
+
+#. CeMCG
+#: cui/uiconfig/ui/charnamepage.ui:1058
+msgctxt "charnamepage|extended_tip|ctlsizelb"
+msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
+msgstr "Syötetään tai valitaan käytettävä fonttikoko. Skaalautuville fonteille voidaan antaa myös desimaalikokoja."
+
+#. zCKxL
+#: cui/uiconfig/ui/charnamepage.ui:1088
+msgctxt "charnamepage|extended_tip|ctllanglb"
+msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
+msgstr "Asetetaan oikoluvun valittuun tai kirjoitettavaan tekstiin käyttämä kieli. Käytettävissä olevilla kielimoduuleilla on pukkimerkki nimen edessä."
+
#. Nobqa
-#: cui/uiconfig/ui/charnamepage.ui:1056
+#: cui/uiconfig/ui/charnamepage.ui:1116
msgctxt "charnamepage|ctl_features_button"
msgid "Features..."
msgstr "Ominaisuudet..."
#. C8hPj
-#: cui/uiconfig/ui/charnamepage.ui:1082
+#: cui/uiconfig/ui/charnamepage.ui:1142
#, fuzzy
msgctxt "charnamepage|label6"
msgid "CTL Font"
msgstr "Laajennetun tekstiasettelun fontti"
#. RyyME
-#: cui/uiconfig/ui/charnamepage.ui:1120
+#: cui/uiconfig/ui/charnamepage.ui:1180
msgctxt "charnamepage|preview-atkobject"
msgid "Preview"
msgstr "Esikatselu"
+#. kbQzU
+#: cui/uiconfig/ui/charnamepage.ui:1199
+msgctxt "charnamepage|extended_tip|CharNamePage"
+msgid "Specify the formatting and the font that you want to apply."
+msgstr "Määrätään käytettävä muotoilu ja fontti."
+
#. LE7Wp
#: cui/uiconfig/ui/colorconfigwin.ui:13
msgctxt "colorconfigwin|docboundaries"
@@ -6155,158 +7052,164 @@ msgctxt "colorpage|delete"
msgid "Delete"
msgstr "Poista"
+#. CAmRV
+#: cui/uiconfig/ui/colorpage.ui:211
+msgctxt "colorpage|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
#. m2Qm7
-#: cui/uiconfig/ui/colorpage.ui:220
+#: cui/uiconfig/ui/colorpage.ui:225
msgctxt "colorpage|label22"
msgid "Custom Palette"
msgstr "Mukautettu paletti"
#. 5jjvt
-#: cui/uiconfig/ui/colorpage.ui:286
+#: cui/uiconfig/ui/colorpage.ui:291
msgctxt "colorpage|label1"
msgid "Colors"
msgstr "Värit"
#. CvMfT
-#: cui/uiconfig/ui/colorpage.ui:345
+#: cui/uiconfig/ui/colorpage.ui:350
msgctxt "colorpage|oldpreview-atkobject"
msgid "Old Color"
msgstr "Vanha väri"
#. 2m4w9
-#: cui/uiconfig/ui/colorpage.ui:379
+#: cui/uiconfig/ui/colorpage.ui:384
msgctxt "colorpage|label7"
msgid "B"
msgstr "B"
#. DwaiD
-#: cui/uiconfig/ui/colorpage.ui:392
+#: cui/uiconfig/ui/colorpage.ui:397
msgctxt "colorpage|label8"
msgid "G"
msgstr "G"
#. hYiqy
-#: cui/uiconfig/ui/colorpage.ui:405
+#: cui/uiconfig/ui/colorpage.ui:410
msgctxt "colorpage|label9"
msgid "R"
msgstr "R"
#. MKq8c
-#: cui/uiconfig/ui/colorpage.ui:418
+#: cui/uiconfig/ui/colorpage.ui:423
msgctxt "colorpage|label18"
msgid "Hex"
msgstr "Heksa"
#. nnSGG
-#: cui/uiconfig/ui/colorpage.ui:494
+#: cui/uiconfig/ui/colorpage.ui:499
msgctxt "colorpage|label10"
msgid "_C"
msgstr "_C"
#. LCfVw
-#: cui/uiconfig/ui/colorpage.ui:507
+#: cui/uiconfig/ui/colorpage.ui:512
msgctxt "colorpage|label16"
msgid "_K"
msgstr "_K"
#. qmNUp
-#: cui/uiconfig/ui/colorpage.ui:520
+#: cui/uiconfig/ui/colorpage.ui:525
msgctxt "colorpage|label17"
msgid "_Y"
msgstr "_Y"
#. TSEpY
-#: cui/uiconfig/ui/colorpage.ui:581
+#: cui/uiconfig/ui/colorpage.ui:586
msgctxt "colorpage|label15"
msgid "_M"
msgstr "_M"
#. VnCYq
-#: cui/uiconfig/ui/colorpage.ui:605
+#: cui/uiconfig/ui/colorpage.ui:610
msgctxt "colorpage|label5"
msgid "Active"
msgstr "Aktiivinen"
#. AwBVq
-#: cui/uiconfig/ui/colorpage.ui:664
+#: cui/uiconfig/ui/colorpage.ui:669
msgctxt "colorpage|newpreview-atkobject"
msgid "New Color"
msgstr "Uusi väri"
#. yFQFh
-#: cui/uiconfig/ui/colorpage.ui:699
+#: cui/uiconfig/ui/colorpage.ui:704
msgctxt "colorpage|B_custom"
msgid "Blue"
msgstr "Sininen"
#. 3DcMm
-#: cui/uiconfig/ui/colorpage.ui:712
+#: cui/uiconfig/ui/colorpage.ui:717
msgctxt "colorpage|R_custom"
msgid "Red"
msgstr "Punainen"
#. 2o8Uw
-#: cui/uiconfig/ui/colorpage.ui:724
+#: cui/uiconfig/ui/colorpage.ui:729
msgctxt "colorpage|label4"
msgid "_B"
msgstr "_B"
#. HXuEA
-#: cui/uiconfig/ui/colorpage.ui:737
+#: cui/uiconfig/ui/colorpage.ui:742
msgctxt "colorpage|label3"
msgid "_G"
msgstr "_G"
#. Kd4oX
-#: cui/uiconfig/ui/colorpage.ui:750
+#: cui/uiconfig/ui/colorpage.ui:755
msgctxt "colorpage|label2"
msgid "_R"
msgstr "_R"
#. FgaZg
-#: cui/uiconfig/ui/colorpage.ui:764
+#: cui/uiconfig/ui/colorpage.ui:769
msgctxt "colorpage|G_custom"
msgid "Green"
msgstr "Vihreä"
#. FZ69n
-#: cui/uiconfig/ui/colorpage.ui:776
+#: cui/uiconfig/ui/colorpage.ui:781
msgctxt "colorpage|label19"
msgid "_Hex"
msgstr "Heksa"
#. BAYSF
-#: cui/uiconfig/ui/colorpage.ui:818
+#: cui/uiconfig/ui/colorpage.ui:823
msgctxt "colorpage|label11"
msgid "_C"
msgstr "C"
#. r3QVM
-#: cui/uiconfig/ui/colorpage.ui:831
+#: cui/uiconfig/ui/colorpage.ui:836
msgctxt "colorpage|label12"
msgid "_M"
msgstr "M"
#. 9C3nc
-#: cui/uiconfig/ui/colorpage.ui:844
+#: cui/uiconfig/ui/colorpage.ui:849
msgctxt "colorpage|label13"
msgid "_K"
msgstr "K"
#. KeYG5
-#: cui/uiconfig/ui/colorpage.ui:881
+#: cui/uiconfig/ui/colorpage.ui:886
msgctxt "colorpage|label14"
msgid "_Y"
msgstr "Y"
#. WPVmD
-#: cui/uiconfig/ui/colorpage.ui:923
+#: cui/uiconfig/ui/colorpage.ui:928
msgctxt "colorpage|edit"
msgid "Pick"
msgstr "Valitse"
#. DpUCG
-#: cui/uiconfig/ui/colorpage.ui:946
+#: cui/uiconfig/ui/colorpage.ui:951
msgctxt "colorpage|label6"
msgid "New"
msgstr "Uusi"
@@ -6317,90 +7220,222 @@ msgctxt "colorpickerdialog|ColorPicker"
msgid "Pick a Color"
msgstr "Valitse väri"
+#. fMFDR
+#: cui/uiconfig/ui/colorpickerdialog.ui:157
+msgctxt "extended tip | preview"
+msgid "In the left part of the bottom bar, the current result of your work in this dialog is visible."
+msgstr ""
+
+#. 7jLV5
+#: cui/uiconfig/ui/colorpickerdialog.ui:173
+msgctxt "extended tip | previous"
+msgid "In the right part of the bottom bar, you will see the original color from the parent tab, Colors."
+msgstr ""
+
+#. yEApx
+#: cui/uiconfig/ui/colorpickerdialog.ui:198
+msgctxt "extended tip | colorField"
+msgid "Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog."
+msgstr ""
+
+#. N8gjc
+#: cui/uiconfig/ui/colorpickerdialog.ui:215
+msgctxt "extended tip | colorSlider"
+msgid "With the vertical color component slider you can modify the value of each component of the color."
+msgstr ""
+
#. mjiGo
-#: cui/uiconfig/ui/colorpickerdialog.ui:281
+#: cui/uiconfig/ui/colorpickerdialog.ui:298
msgctxt "colorpickerdialog|redRadiobutton"
msgid "_Red:"
msgstr "Punainen:"
+#. yWDJE
+#: cui/uiconfig/ui/colorpickerdialog.ui:308
+msgctxt "extended tip | redRadiobutton"
+msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255."
+msgstr ""
+
#. TkTSB
-#: cui/uiconfig/ui/colorpickerdialog.ui:297
+#: cui/uiconfig/ui/colorpickerdialog.ui:319
msgctxt "colorpickerdialog|greenRadiobutton"
msgid "_Green:"
msgstr "Vihreä:"
+#. 3YZDt
+#: cui/uiconfig/ui/colorpickerdialog.ui:329
+msgctxt "extended tip | greenRadiobutton"
+msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255."
+msgstr ""
+
#. 5FGfv
-#: cui/uiconfig/ui/colorpickerdialog.ui:313
+#: cui/uiconfig/ui/colorpickerdialog.ui:340
msgctxt "colorpickerdialog|blueRadiobutton"
msgid "_Blue:"
msgstr "Sininen:"
+#. gSvva
+#: cui/uiconfig/ui/colorpickerdialog.ui:350
+msgctxt "extended tip | blueRadiobutton"
+msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255."
+msgstr ""
+
+#. c5MTh
+#: cui/uiconfig/ui/colorpickerdialog.ui:368
+msgctxt "extended tip | redSpinbutton"
+msgid "Set the Red color value directly. Allowed values are 0 to 255."
+msgstr ""
+
+#. 2yY2G
+#: cui/uiconfig/ui/colorpickerdialog.ui:386
+msgctxt "extended tip | greenSpinbutton"
+msgid "Set the Green color value directly. Allowed values are 0 to 255."
+msgstr ""
+
+#. UREX7
+#: cui/uiconfig/ui/colorpickerdialog.ui:404
+msgctxt "extended tip | blueSpinbutton"
+msgid "Set the Blue color value directly. Allowed values are 0 to 255."
+msgstr ""
+
#. 2nFsj
-#: cui/uiconfig/ui/colorpickerdialog.ui:370
+#: cui/uiconfig/ui/colorpickerdialog.ui:417
msgctxt "colorpickerdialog|label2"
msgid "Hex _#:"
msgstr "Heksa _#:"
+#. zPsRu
+#: cui/uiconfig/ui/colorpickerdialog.ui:435
+msgctxt "extended tip | hexEntry"
+msgid "Displays and sets the color value in the RGB color model expressed as a hexadecimal number."
+msgstr ""
+
#. sD6YC
-#: cui/uiconfig/ui/colorpickerdialog.ui:400
+#: cui/uiconfig/ui/colorpickerdialog.ui:452
msgctxt "colorpickerdialog|label1"
msgid "RGB"
msgstr "RGB"
#. wGrVM
-#: cui/uiconfig/ui/colorpickerdialog.ui:439
+#: cui/uiconfig/ui/colorpickerdialog.ui:491
msgctxt "colorpickerdialog|hueRadiobutton"
msgid "H_ue:"
msgstr "Sävy:"
+#. qnLnB
+#: cui/uiconfig/ui/colorpickerdialog.ui:501
+msgctxt "extended tip | hueRadiobutton"
+msgid "Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two-dimensional color picker field. Values are expressed in degrees from 0 to 359."
+msgstr ""
+
#. C4GE3
-#: cui/uiconfig/ui/colorpickerdialog.ui:455
+#: cui/uiconfig/ui/colorpickerdialog.ui:512
msgctxt "colorpickerdialog|satRadiobutton"
msgid "_Saturation:"
msgstr "Kylläisyys:"
+#. wGdN5
+#: cui/uiconfig/ui/colorpickerdialog.ui:522
+msgctxt "extended tip | satRadiobutton"
+msgid "Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)."
+msgstr ""
+
#. NXs9w
-#: cui/uiconfig/ui/colorpickerdialog.ui:471
+#: cui/uiconfig/ui/colorpickerdialog.ui:533
msgctxt "colorpickerdialog|brightRadiobutton"
msgid "Bright_ness:"
msgstr "Kirkkaus:"
+#. KkBQX
+#: cui/uiconfig/ui/colorpickerdialog.ui:543
+msgctxt "extended tip | brightRadiobutton"
+msgid "Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)."
+msgstr ""
+
+#. BCvUX
+#: cui/uiconfig/ui/colorpickerdialog.ui:561
+msgctxt "extended tip | hueSpinbutton"
+msgid "Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359."
+msgstr ""
+
+#. TcDh8
+#: cui/uiconfig/ui/colorpickerdialog.ui:579
+msgctxt "extended tip | satSpinbutton"
+msgid "Set the Saturation directly in the HSB color model. Values are expressed in percent (0 to 100)."
+msgstr ""
+
+#. hucEE
+#: cui/uiconfig/ui/colorpickerdialog.ui:597
+msgctxt "extended tip | brightSpinbutton"
+msgid "Set the Brightness directly in the HSB color model. Values are expressed in percent (0 to 100)."
+msgstr ""
+
#. B7RjF
-#: cui/uiconfig/ui/colorpickerdialog.ui:532
+#: cui/uiconfig/ui/colorpickerdialog.ui:614
msgctxt "colorpickerdialog|label3"
msgid "HSB"
msgstr "HSB"
#. sesZZ
-#: cui/uiconfig/ui/colorpickerdialog.ui:572
+#: cui/uiconfig/ui/colorpickerdialog.ui:654
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr "Syaani:"
#. Gw7rx
-#: cui/uiconfig/ui/colorpickerdialog.ui:587
+#: cui/uiconfig/ui/colorpickerdialog.ui:669
msgctxt "colorpickerdialog|label6"
msgid "_Magenta:"
msgstr "Magenta:"
#. Uv2KG
-#: cui/uiconfig/ui/colorpickerdialog.ui:602
+#: cui/uiconfig/ui/colorpickerdialog.ui:684
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
msgstr "Keltainen:"
#. aFvbe
-#: cui/uiconfig/ui/colorpickerdialog.ui:617
+#: cui/uiconfig/ui/colorpickerdialog.ui:699
msgctxt "colorpickerdialog|label8"
msgid "_Key:"
msgstr "Avain:"
+#. bNiCN
+#: cui/uiconfig/ui/colorpickerdialog.ui:718
+msgctxt "extended tip | cyanSpinbutton"
+msgid "Set the Cyan color value as expressed in the CMYK color model."
+msgstr ""
+
+#. mMXFr
+#: cui/uiconfig/ui/colorpickerdialog.ui:736
+msgctxt "extended tip | magSpinbutton"
+msgid "Set the Magenta color value as expressed in the CMYK color model."
+msgstr ""
+
+#. EEgiy
+#: cui/uiconfig/ui/colorpickerdialog.ui:754
+msgctxt "extended tip | yellowSpinbutton"
+msgid "Set the Yellow color value as expressed in the CMYK color model."
+msgstr ""
+
+#. UAAnZ
+#: cui/uiconfig/ui/colorpickerdialog.ui:772
+msgctxt "extended tip | keySpinbutton"
+msgid "Set the Black color value or key (black) as expressed in the CMYK color model."
+msgstr ""
+
#. mxFDw
-#: cui/uiconfig/ui/colorpickerdialog.ui:687
+#: cui/uiconfig/ui/colorpickerdialog.ui:789
msgctxt "colorpickerdialog|label4"
msgid "CMYK"
msgstr "CMYK"
+#. 9KyXs
+#: cui/uiconfig/ui/colorpickerdialog.ui:828
+msgctxt "extended tip | ColorPicker"
+msgid "%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
+msgstr ""
+
#. vDFei
#: cui/uiconfig/ui/comment.ui:18
msgctxt "comment|CommentDialog"
@@ -6419,152 +7454,236 @@ msgctxt "comment|label4"
msgid "_Text"
msgstr "_Teksti"
+#. 4ZGAd
+#: cui/uiconfig/ui/comment.ui:222
+msgctxt "comment|extended_tip|edit"
+msgid "Enter a comment for the recorded change."
+msgstr ""
+
#. bEtYk
-#: cui/uiconfig/ui/comment.ui:238
+#: cui/uiconfig/ui/comment.ui:243
msgctxt "comment|label5"
msgid "_Insert"
msgstr "_Lisää"
#. eGHyF
-#: cui/uiconfig/ui/comment.ui:250
+#: cui/uiconfig/ui/comment.ui:255
msgctxt "comment|author"
msgid "Author"
msgstr "Tekijä"
#. VjKDs
-#: cui/uiconfig/ui/comment.ui:271
+#: cui/uiconfig/ui/comment.ui:276
msgctxt "comment|alttitle"
msgid "Edit Comment"
msgstr "Muokkaa huomautusta"
#. JKZFi
-#: cui/uiconfig/ui/comment.ui:287
+#: cui/uiconfig/ui/comment.ui:292
msgctxt "comment|label1"
msgid "Contents"
msgstr "Sisältö"
+#. qSQBN
+#: cui/uiconfig/ui/comment.ui:317
+msgctxt "comment|extended_tip|CommentDialog"
+msgid "Enter a comment for the recorded change."
+msgstr ""
+
#. B73bz
#: cui/uiconfig/ui/connectortabpage.ui:62
msgctxt "connectortabpage|FT_TYPE"
msgid "_Type:"
msgstr "Tyyppi:"
+#. G63AW
+#: cui/uiconfig/ui/connectortabpage.ui:79
+msgctxt "connectortabpage|extended_tip|LB_TYPE"
+msgid "Lists the types of connectors that are available."
+msgstr "Luettelossa on saatavilla olevat yhdysviivatyypit."
+
#. VnKTH
-#: cui/uiconfig/ui/connectortabpage.ui:113
+#: cui/uiconfig/ui/connectortabpage.ui:118
msgctxt "connectortabpage|FT_LINE_1"
msgid "Line _1:"
msgstr "Viivanosa 1:"
#. VHqZH
-#: cui/uiconfig/ui/connectortabpage.ui:127
+#: cui/uiconfig/ui/connectortabpage.ui:132
msgctxt "connectortabpage|FT_LINE_2"
msgid "Line _2:"
msgstr "Viivanosa 2:"
#. vx3j2
-#: cui/uiconfig/ui/connectortabpage.ui:141
+#: cui/uiconfig/ui/connectortabpage.ui:146
msgctxt "connectortabpage|FT_LINE_3"
msgid "Line _3:"
msgstr "Viivanosa 3:"
+#. vUAiW
+#: cui/uiconfig/ui/connectortabpage.ui:165
+msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_1"
+msgid "Enter a skew value for Line 1."
+msgstr "Anna 1. viivanosan viistousarvo."
+
+#. SGov7
+#: cui/uiconfig/ui/connectortabpage.ui:183
+msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_2"
+msgid "Enter a skew value for Line 2."
+msgstr "Anna 2. viivanosan viistousarvo."
+
+#. Cv7eg
+#: cui/uiconfig/ui/connectortabpage.ui:201
+msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_3"
+msgid "Enter a skew value for Line 3."
+msgstr "Anna 3. viivanosan viistousarvo."
+
#. xvCfy
-#: cui/uiconfig/ui/connectortabpage.ui:198
+#: cui/uiconfig/ui/connectortabpage.ui:218
msgctxt "connectortabpage|label2"
msgid "Line Skew"
msgstr "Viivanosien viistoudet"
#. hAdsA
-#: cui/uiconfig/ui/connectortabpage.ui:234
+#: cui/uiconfig/ui/connectortabpage.ui:254
msgctxt "connectortabpage|FT_HORZ_1"
msgid "_Begin horizontal:"
msgstr "Alussa, vaakasuuntaan:"
#. jENzB
-#: cui/uiconfig/ui/connectortabpage.ui:248
+#: cui/uiconfig/ui/connectortabpage.ui:268
msgctxt "connectortabpage|FT_HORZ_2"
msgid "End _horizontal:"
msgstr "Lopussa, vaakasuuntaan:"
#. WSBhJ
-#: cui/uiconfig/ui/connectortabpage.ui:262
+#: cui/uiconfig/ui/connectortabpage.ui:282
msgctxt "connectortabpage|FT_VERT_1"
msgid "Begin _vertical:"
msgstr "Alussa, pystysuuntaan:"
#. bGjTC
-#: cui/uiconfig/ui/connectortabpage.ui:276
+#: cui/uiconfig/ui/connectortabpage.ui:296
msgctxt "connectortabpage|FT_VERT_2"
msgid "_End vertical:"
msgstr "Lopussa, pystysuuntaan:"
+#. md9nD
+#: cui/uiconfig/ui/connectortabpage.ui:315
+msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_1"
+msgid "Enter the amount of horizontal space you want at the beginning of the connector."
+msgstr "Annetaan vaakasuuntaisen tilan määrä, joka halutaan yhdysviivan alkuun."
+
+#. pUTnF
+#: cui/uiconfig/ui/connectortabpage.ui:333
+msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_2"
+msgid "Enter the amount of horizontal space you want at the end of the connector."
+msgstr "Annetaan vaakasuuntaisen tilan määrä, joka halutaan yhdysviivan loppuun."
+
+#. 23o9a
+#: cui/uiconfig/ui/connectortabpage.ui:351
+msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_1"
+msgid "Enter the amount of vertical space you want at the beginning of the connector."
+msgstr "Annetaan pystysuuntaisen tilan määrä, joka halutaan yhdysviivan alkuun."
+
+#. 22Tvd
+#: cui/uiconfig/ui/connectortabpage.ui:369
+msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_2"
+msgid "Enter the amount of vertical space you want at the end of the connector."
+msgstr "Annetaan pystysuuntaisen tilan määrä, joka halutaan yhdysviivan loppuun."
+
#. idTk6
-#: cui/uiconfig/ui/connectortabpage.ui:346
+#: cui/uiconfig/ui/connectortabpage.ui:386
msgctxt "connectortabpage|label3"
msgid "Line Spacing"
msgstr "Riviväli"
#. 6hSVr
-#: cui/uiconfig/ui/connectortabpage.ui:385
+#: cui/uiconfig/ui/connectortabpage.ui:425
msgctxt "connectortabpage|CTL_PREVIEW|tooltip_text"
msgid "Preview"
msgstr "Esikatselu"
#. PSBFq
-#: cui/uiconfig/ui/connectortabpage.ui:390
+#: cui/uiconfig/ui/connectortabpage.ui:430
msgctxt "connectortabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Esimerkki"
+#. 3HZXi
+#: cui/uiconfig/ui/connectortabpage.ui:446
+msgctxt "connectortabpage|extended_tip|ConnectorTabPage"
+msgid "Sets the properties of a connector."
+msgstr ""
+
#. ezicB
#: cui/uiconfig/ui/connpooloptions.ui:57
msgctxt "connpooloptions|connectionpooling"
msgid "Connection pooling enabled"
msgstr "Yhteyksien ryhmittely käytössä"
+#. pPghH
+#: cui/uiconfig/ui/connpooloptions.ui:66
+msgctxt "extended_tip|connectionpooling"
+msgid "Specifies whether the chosen connections are pooled."
+msgstr "Valinta mahdollistaa yhteysvarannon käytön valituille yhteyksille."
+
#. GHbky
-#: cui/uiconfig/ui/connpooloptions.ui:82
+#: cui/uiconfig/ui/connpooloptions.ui:87
msgctxt "connpooloptions|driverslabel"
msgid "Drivers known in %PRODUCTNAME"
msgstr "%PRODUCTNAME-ohjelmassa tunnetut ajurit"
#. Yohxk
-#: cui/uiconfig/ui/connpooloptions.ui:101
+#: cui/uiconfig/ui/connpooloptions.ui:106
msgctxt "connpooloptions|driverlabel"
msgid "Current driver:"
msgstr "Nykyinen ajuri:"
#. RGWQy
-#: cui/uiconfig/ui/connpooloptions.ui:131
+#: cui/uiconfig/ui/connpooloptions.ui:136
msgctxt "connpooloptions|enablepooling"
msgid "Enable pooling for this driver"
msgstr "Ota ryhmittely käyttöön tälle ajurille"
+#. b26rn
+#: cui/uiconfig/ui/connpooloptions.ui:145
+msgctxt "extended_tip|enablepooling"
+msgid "Select a driver from the list and mark the Enable pooling for this driver checkbox in order to pool its connection."
+msgstr "Yhteysvarannon käyttämiseksi valitaan ajuri luettelosta ja merkitään Ota ajurin varantotoiminto käyttöön."
+
#. uzbLN
-#: cui/uiconfig/ui/connpooloptions.ui:154
+#: cui/uiconfig/ui/connpooloptions.ui:164
msgctxt "connpooloptions|timeoutlabel"
msgid "_Timeout (seconds)"
msgstr "Aikakatkaisu (sekunteina)"
+#. CUE56
+#: cui/uiconfig/ui/connpooloptions.ui:185
+msgctxt "extended_tip|timeout"
+msgid "Defines the time in seconds after which a pooled connection is freed."
+msgstr "Määrätään aika sekunneissa, jonka jälkeen yhteysvarantoon otettu yhteys katkaistaan."
+
#. gWFKz
-#: cui/uiconfig/ui/connpooloptions.ui:217
+#: cui/uiconfig/ui/connpooloptions.ui:232
msgctxt "connpooloptions|drivername"
msgid "Driver name"
msgstr "Ajurin nimi"
#. pQGCs
-#: cui/uiconfig/ui/connpooloptions.ui:230
+#: cui/uiconfig/ui/connpooloptions.ui:245
msgctxt "connpooloptions|pool"
msgid "Pool"
msgstr "Ryhmä"
#. 7Svws
-#: cui/uiconfig/ui/connpooloptions.ui:243
+#: cui/uiconfig/ui/connpooloptions.ui:258
msgctxt "connpooloptions|timeout"
msgid "Timeout"
msgstr "Aikakatkaisu"
#. 9ctBe
-#: cui/uiconfig/ui/connpooloptions.ui:281
+#: cui/uiconfig/ui/connpooloptions.ui:296
msgctxt "connpooloptions|label1"
msgid "Connection Pool"
msgstr "Yhteysryhmä"
@@ -6660,35 +7779,71 @@ msgid "Properties"
msgstr "Ominaisuudet"
#. DcBMH
-#: cui/uiconfig/ui/cuiimapdlg.ui:98
+#: cui/uiconfig/ui/cuiimapdlg.ui:95
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "URL-osoite:"
+#. EhUMH
+#: cui/uiconfig/ui/cuiimapdlg.ui:114
+msgctxt "cuiimapdlg|extended_tip|urlentry"
+msgid "Enter the URL for the file that you want to open when you click the selected hotspot."
+msgstr ""
+
#. FLKr9
-#: cui/uiconfig/ui/cuiimapdlg.ui:140
+#: cui/uiconfig/ui/cuiimapdlg.ui:142
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Kehys:"
+#. 2uSg3
+#: cui/uiconfig/ui/cuiimapdlg.ui:167
+msgctxt "cuiimapdlg|extended_tip|frameCB"
+msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list."
+msgstr "Annetaan kohdekehyksen nimi, johon URL avautuu. Vakiokehysnimet voi valita luettelosta. Kaikki selaimet tunnistavat ne."
+
#. V8Zgo
-#: cui/uiconfig/ui/cuiimapdlg.ui:188
+#: cui/uiconfig/ui/cuiimapdlg.ui:195
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Nimi:"
+#. GcFws
+#: cui/uiconfig/ui/cuiimapdlg.ui:214
+msgctxt "cuiimapdlg|extended_tip|nameentry"
+msgid "Enter a name for the image."
+msgstr "Annetaan nimi kuvalle."
+
#. BAXQk
-#: cui/uiconfig/ui/cuiimapdlg.ui:230
+#: cui/uiconfig/ui/cuiimapdlg.ui:242
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Vaihtoehtoinen teksti:"
+#. m68ou
+#: cui/uiconfig/ui/cuiimapdlg.ui:261
+msgctxt "cuiimapdlg|extended_tip|textentry"
+msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser."
+msgstr ""
+
#. bsgYj
-#: cui/uiconfig/ui/cuiimapdlg.ui:272
+#: cui/uiconfig/ui/cuiimapdlg.ui:289
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "Kuvaus:"
+#. mF6Pw
+#: cui/uiconfig/ui/cuiimapdlg.ui:318
+msgctxt "cuiimapdlg|extended_tip|descTV"
+msgid "Enter a description for the hotspot."
+msgstr "Kirjoitetaan valitun avainalueen kuvaus."
+
+#. 7LsXB
+#: cui/uiconfig/ui/cuiimapdlg.ui:356
+msgctxt "cuiimapdlg|extended_tip|IMapDialog"
+msgid "Lists the properties for the selected hotspot."
+msgstr "Valitun kuuman alueen ominaisuusluettelo."
+
#. 8LR3s
#: cui/uiconfig/ui/customizedialog.ui:8
msgctxt "customizedialog|CustomizeDialog"
@@ -6738,29 +7893,47 @@ msgid "Create Database Link"
msgstr "Luo tietokantalinkki"
#. XAYvY
-#: cui/uiconfig/ui/databaselinkdialog.ui:93
+#: cui/uiconfig/ui/databaselinkdialog.ui:90
msgctxt "databaselinkdialog|browse"
msgid "Browse..."
msgstr "Selaa..."
+#. YPWDd
+#: cui/uiconfig/ui/databaselinkdialog.ui:97
+msgctxt "extended_tip|browse"
+msgid "Opens a file dialog where you can select the database file."
+msgstr "Avataan tiedostovalintaikkuna, jossa voidaan valita tietokantatiedosto."
+
#. kvNEy
-#: cui/uiconfig/ui/databaselinkdialog.ui:108
+#: cui/uiconfig/ui/databaselinkdialog.ui:110
msgctxt "databaselinkdialog|label1"
msgid "_Database file:"
msgstr "Tietokantatiedosto:"
#. X5UnF
-#: cui/uiconfig/ui/databaselinkdialog.ui:154
+#: cui/uiconfig/ui/databaselinkdialog.ui:156
msgctxt "databaselinkdialog|label4"
msgid "Registered _name:"
msgstr "Rekisteröity nimi:"
+#. qrTa8
+#: cui/uiconfig/ui/databaselinkdialog.ui:175
+msgctxt "extended_tip|name"
+msgid "Enter a name for the database. %PRODUCTNAME uses this name to access the database."
+msgstr "Kirjoitetaan tietokannan nimi. %PRODUCTNAME käyttää tätä nimeä tietokantaan pääsemiseen."
+
#. FrRyU
-#: cui/uiconfig/ui/databaselinkdialog.ui:187
+#: cui/uiconfig/ui/databaselinkdialog.ui:194
msgctxt "databaselinkdialog|alttitle"
msgid "Edit Database Link"
msgstr "Muokkaa tietokantalinkkiä"
+#. WtSXQ
+#: cui/uiconfig/ui/databaselinkdialog.ui:220
+msgctxt "extended_tip|DatabaseLinkDialog"
+msgid "Creates or edits an entry in the Databases tab page."
+msgstr ""
+
#. ehaGT
#: cui/uiconfig/ui/dbregisterpage.ui:73
msgctxt "dbregisterpage|type"
@@ -6779,20 +7952,38 @@ msgctxt "dbregisterpage|new"
msgid "_New..."
msgstr "Uusi..."
+#. AFdvd
+#: cui/uiconfig/ui/dbregisterpage.ui:130
+msgctxt "extended_tip|new"
+msgid "Opens the Database Link dialog to create a new entry."
+msgstr ""
+
#. zqFjG
-#: cui/uiconfig/ui/dbregisterpage.ui:137
+#: cui/uiconfig/ui/dbregisterpage.ui:142
msgctxt "dbregisterpage|delete"
msgid "_Delete"
msgstr "Poista"
+#. ZqToY
+#: cui/uiconfig/ui/dbregisterpage.ui:149
+msgctxt "extended_tip|delete"
+msgid "Removes the selected entry from the list."
+msgstr "Poistetaan valittu rivi luettelosta."
+
#. eiE2E
-#: cui/uiconfig/ui/dbregisterpage.ui:151
+#: cui/uiconfig/ui/dbregisterpage.ui:161
msgctxt "dbregisterpage|edit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. fAwt9
+#: cui/uiconfig/ui/dbregisterpage.ui:168
+msgctxt "extended_tip|edit"
+msgid "Opens the Database Link dialog to edit the selected entry."
+msgstr ""
+
#. Q3nF4
-#: cui/uiconfig/ui/dbregisterpage.ui:178
+#: cui/uiconfig/ui/dbregisterpage.ui:193
msgctxt "dbregisterpage|label1"
msgid "Registered Databases"
msgstr "Rekisteröidyt tietokannat"
@@ -6839,174 +8030,216 @@ msgctxt "dimensionlinestabpage|TSB_BELOW_REF_EDGE"
msgid "Measure _below object"
msgstr "Mitta objektin alapuolella"
+#. DovuA
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:170
+msgctxt "dimensionlinestabpage|extended_tip|TSB_BELOW_REF_EDGE"
+msgid "Reverses the properties set in the Line area."
+msgstr "Valintamerkintä vaihtaa Viiva-alueen ominaisuudet peilikuviksi perusviivan suhteen."
+
+#. M2qGu
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:189
+msgctxt "dimensionlinestabpage|extended_tip|MTR_LINE_DIST"
+msgid "Specifies the distance between the dimension line and the baseline (line distance = 0)."
+msgstr "Määritetään näkyvän mittaviivan etäisyys mittapisteiden perusviivasta (etäisyys = 0)."
+
+#. 6wKTs
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:207
+msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE_OVERHANG"
+msgid "Specifies the length of the left and right guides starting at the baseline (line distance = 0). Positive values extend the guides above the baseline and negative values extend the guides below the baseline."
+msgstr "Määritetään vasemman ja oikean mitta-apuviivalle sen osuuden pituus, joka ulottuu perusviivasta katsottuna kauemmaksi kuin mittaviiva (etäisyys = 0). Positiivisilla arvoilla mitta-apuviivat ulottuvat mittaviivan ohi ja negatiivisilla arvoille mitta-apuviivojen päät eivät ulotu mittaviivaankaan."
+
+#. AdBKh
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:225
+msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE_DIST"
+msgid "Specifies the length of the right and left guides starting at the dimension line. Positive values extend the guides above the dimension line and negative values extend the guides below the dimension line."
+msgstr "Määritetään oikean ja vasemman mitta-apuviivan etäisyys perusviivasta. Positiivisilla arvoilla mitta-apuviivat alkavat perusviivasta etäämpänä ja negatiivisilla arvoille mitta-apuviivojen päät alkavat perusviivan toiselta puolelta mittaviivasta katsottuna."
+
+#. hFGhD
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:243
+msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE1_LEN"
+msgid "Specifies the length of the left guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line."
+msgstr "Määritetään vasemman mitta-apuviivan etäisyyttä perusviivasta. Positiiviset arvot ulottavat apuviivan perusviivan toiselle puolelle mittaviivasta katsottuna ja negatiiviset arvot siirtävät apuviivan päätä perusviivasta mittaviivaan päin."
+
+#. 3bQD4
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:261
+msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE2_LEN"
+msgid "Specifies the length of the right guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line."
+msgstr "Määritetään oikeanpuoleisen mitta-apuviivan etäisyys perusviivasta. Positiiviset arvot ulottavat apuviivan perusviivan toiselle puolelle mittaviivasta katsottuna ja negatiiviset arvot siirtävät apuviivan päätä perusviivasta mittaviivaan päin."
+
+#. BKJDe
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:278
+msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_DECIMALPLACES"
+msgid "Specifies the number of decimal places used for the display of line properties."
+msgstr "Määritetään, monenko desimaalin tarkkuudella viivan pituus ilmoitetaan."
+
#. uruYG
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:260
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:295
msgctxt "dimensionlinestabpage|label1"
msgid "Line"
msgstr "Jana"
#. E3CgJ
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:296
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:331
msgctxt "dimensionlinestabpage|FT_POSITION"
msgid "_Text position"
msgstr "Tekstin sijainti"
+#. EBYZf
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:374
+msgctxt "dimensionlinestabpage|extended_tip|CTL_POSITION"
+msgid "Determines the position of the dimension text with respect to the dimension line and the guides."
+msgstr "Määritetään mittatekstin asema suhteessa mittaviivaan ja mitta-apuviivoihin."
+
#. t8Ewg
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:350
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:390
msgctxt "dimensionlinestabpage|TSB_AUTOPOSV"
msgid "_AutoVertical"
msgstr "Automaattinen pystysuunnassa"
+#. mFwVB
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:400
+msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSV"
+msgid "Determines the optimal vertical position for the dimension text."
+msgstr "Mittatekstin sijainti määräytyy optimaalisesti pystysuunnassa."
+
#. KykMq
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:367
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:412
msgctxt "dimensionlinestabpage|TSB_AUTOPOSH"
msgid "A_utoHorizontal"
msgstr "Automaattinen vaakasuunnassa"
+#. jepxb
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:422
+msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSH"
+msgid "Determines the optimal horizontal position for the dimension text."
+msgstr "Mittatekstin sijainti määräytyy optimaalisesti vaakasuunnassa."
+
#. yQtE3
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:393
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:443
msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "Mittajanan suuntaisesti"
+#. gZdFr
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:453
+msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
+msgid "Displays the text parallel to or at 90 degrees to the dimension line."
+msgstr "Merkinnällä määrätään, että teksti on mittaviivan suuntaisesti. Ilman merkintää teksti on kohtisuorassa viivaa vastaan."
+
#. QNscD
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:410
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:465
msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "Näytä mittayksikkö"
+#. cJRA9
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:475
+msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
+msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
+msgstr "Merkinnällä määrätään, että mittayksikkö on näkyvissä. Käytettävä mittayksikkö on valittavissa luettelosta."
+
+#. EEaqi
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:493
+msgctxt "dimensionlinestabpage|extended_tip|LB_UNIT"
+msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
+msgstr "Merkinnällä määrätään, että mittayksikkö on näkyvissä. Käytettävä mittayksikkö on valittavissa luettelosta."
+
#. gX83d
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:446
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:511
msgctxt "dimensionlinestabpage|label2"
msgid "Legend"
msgstr "Selite"
#. TmRKU
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:470
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:535
msgctxt "dimensionlinestabpage|STR_MEASURE_AUTOMATIC"
msgid "Automatic"
msgstr "Automaattinen"
-#. o3vUV
-#: cui/uiconfig/ui/distributiondialog.ui:8
-msgctxt "distributiondialog|DistributionDialog"
-msgid "Distribution"
-msgstr "Välien tasaus"
-
-#. wG8jp
-#: cui/uiconfig/ui/distributionpage.ui:36
-msgctxt "distributionpage|hornone"
-msgid "_None"
-msgstr "Ei mitään"
-
-#. pB5Ai
-#: cui/uiconfig/ui/distributionpage.ui:52
-msgctxt "distributionpage|horleft"
-msgid "_Left"
-msgstr ""
-
-#. pBR9z
-#: cui/uiconfig/ui/distributionpage.ui:68
-msgctxt "distributionpage|horcenter"
-msgid "_Center"
-msgstr ""
-
-#. 6zCGK
-#: cui/uiconfig/ui/distributionpage.ui:84
-msgctxt "distributionpage|horright"
-msgid "_Right"
-msgstr ""
-
-#. b9pAA
-#: cui/uiconfig/ui/distributionpage.ui:126
-msgctxt "distributionpage|hordistance"
-msgid "_Spacing"
-msgstr "Välit"
-
-#. 674zH
-#: cui/uiconfig/ui/distributionpage.ui:177
-msgctxt "distributionpage|label"
-msgid "Horizontal"
-msgstr "Vaakasuunta"
-
-#. x6Mf8
-#: cui/uiconfig/ui/distributionpage.ui:210
-msgctxt "distributionpage|vernone"
-msgid "N_one"
-msgstr ""
-
-#. AqXxA
-#: cui/uiconfig/ui/distributionpage.ui:225
-msgctxt "distributionpage|vertop"
-msgid "_Top"
-msgstr "Yläreuna"
-
-#. CEBVG
-#: cui/uiconfig/ui/distributionpage.ui:241
-msgctxt "distributionpage|vercenter"
-msgid "C_enter"
-msgstr ""
-
-#. WrxKw
-#: cui/uiconfig/ui/distributionpage.ui:258
-msgctxt "distributionpage|verdistance"
-msgid "S_pacing"
-msgstr "Välit"
-
-#. FPUuF
-#: cui/uiconfig/ui/distributionpage.ui:274
-msgctxt "distributionpage|verbottom"
-msgid "_Bottom"
-msgstr "Alareuna"
-
-#. 74ACK
-#: cui/uiconfig/ui/distributionpage.ui:351
-msgctxt "distributionpage|label1"
-msgid "Vertical"
-msgstr "Pystysuunta"
-
#. KxUJj
#: cui/uiconfig/ui/editdictionarydialog.ui:26
msgctxt "editdictionarydialog|EditDictionaryDialog"
msgid "Edit Custom Dictionary"
msgstr "Muokkaa mukautettua sanastoa"
+#. JCLFA
+#: cui/uiconfig/ui/editdictionarydialog.ui:93
+msgctxt "book"
+msgid "Specifies the book to be edited."
+msgstr ""
+
+#. trTxg
+#: cui/uiconfig/ui/editdictionarydialog.ui:108
+msgctxt "lang"
+msgid "Assigns a new language to the current custom dictionary."
+msgstr ""
+
#. PV8x9
-#: cui/uiconfig/ui/editdictionarydialog.ui:114
+#: cui/uiconfig/ui/editdictionarydialog.ui:121
msgctxt "editdictionarydialog|book_label"
msgid "_Book:"
msgstr "Kirja:"
#. HAsZg
-#: cui/uiconfig/ui/editdictionarydialog.ui:128
+#: cui/uiconfig/ui/editdictionarydialog.ui:135
msgctxt "editdictionarydialog|lang_label"
msgid "_Language:"
msgstr "Kieli:"
+#. mE3Lo
+#: cui/uiconfig/ui/editdictionarydialog.ui:180
+msgctxt "replace"
+msgid "This input field is only available if you are editing an exception dictionary or a language-dependent custom dictionary. In exception dictionaries, the field shows the alternative suggestion for the current word in the \"Word\" text box. In language-dependent custom dictionaries, the field contains a known root word, as a model of affixation of the new word or its usage in compound words. For example, in a German custom dictionary, the new word “Litschi” (lychee) with the model word “Gummi” (gum) will result recognition of “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) etc."
+msgstr ""
+
+#. 5EwBs
+#: cui/uiconfig/ui/editdictionarydialog.ui:197
+msgctxt "word"
+msgid "You can type a new word for inclusion in the dictionary. In the list below you will see the contents of the current custom dictionary."
+msgstr ""
+
#. WWwmQ
-#: cui/uiconfig/ui/editdictionarydialog.ui:193
+#: cui/uiconfig/ui/editdictionarydialog.ui:210
msgctxt "editdictionarydialog|word_label"
msgid "_Word"
msgstr "Sana"
#. okMAh
-#: cui/uiconfig/ui/editdictionarydialog.ui:207
+#: cui/uiconfig/ui/editdictionarydialog.ui:224
msgctxt "editdictionarydialog|replace_label"
msgid "_Replace By"
msgstr "Korvaa sanalla"
#. D7JJT
-#: cui/uiconfig/ui/editdictionarydialog.ui:336
+#: cui/uiconfig/ui/editdictionarydialog.ui:353
msgctxt "editdictionarydialog|newreplace"
msgid "_New"
msgstr "Uusi"
+#. CP9Qq
+#: cui/uiconfig/ui/editdictionarydialog.ui:360
+msgctxt "newreplace"
+msgid "Adds the word in the Word text field to your current custom dictionary. The word in the Suggestion field is also added when working with exception dictionaries."
+msgstr ""
+
#. K2Sst
-#: cui/uiconfig/ui/editdictionarydialog.ui:350
+#: cui/uiconfig/ui/editdictionarydialog.ui:372
msgctxt "editdictionarydialog|delete"
msgid "_Delete"
msgstr "Poista"
+#. VzuAW
+#: cui/uiconfig/ui/editdictionarydialog.ui:379
+msgctxt "delete"
+msgid "Removes the marked word from the current custom dictionary."
+msgstr ""
+
+#. 35DN3
+#: cui/uiconfig/ui/editdictionarydialog.ui:414
+msgctxt "EditDictionaryDialog"
+msgid "In the Edit Custom Dictionary dialog you have the option to enter new terms or edit existing entries."
+msgstr ""
+
#. XEUyG
#: cui/uiconfig/ui/editmodulesdialog.ui:34
msgctxt "editmodulesdialog|EditModulesDialog"
@@ -7014,37 +8247,67 @@ msgid "Edit Modules"
msgstr "Muokkaa moduuleja"
#. hcGaw
-#: cui/uiconfig/ui/editmodulesdialog.ui:115
+#: cui/uiconfig/ui/editmodulesdialog.ui:112
msgctxt "editmodulesdialog|moredictslink"
msgid "Get more dictionaries online..."
msgstr "Lisää sanastoja verkosta..."
#. ibDJj
-#: cui/uiconfig/ui/editmodulesdialog.ui:137
+#: cui/uiconfig/ui/editmodulesdialog.ui:134
msgctxt "editmodulesdialog|label2"
msgid "Language:"
msgstr "Kieli:"
+#. T7wyy
+#: cui/uiconfig/ui/editmodulesdialog.ui:166
+msgctxt "language"
+msgid "Specifies the language of the module."
+msgstr ""
+
#. 9zC9B
-#: cui/uiconfig/ui/editmodulesdialog.ui:196
+#: cui/uiconfig/ui/editmodulesdialog.ui:198
msgctxt "editmodulesdialog|up"
msgid "Move Up"
msgstr "Siirrä ylemmäs"
+#. Da5kZ
+#: cui/uiconfig/ui/editmodulesdialog.ui:205
+msgctxt "up"
+msgid "Increases the priority of the module selected in the list box by one level."
+msgstr ""
+
#. aGo9M
-#: cui/uiconfig/ui/editmodulesdialog.ui:210
+#: cui/uiconfig/ui/editmodulesdialog.ui:217
msgctxt "editmodulesdialog|down"
msgid "Move Down"
msgstr "Siirrä alemmas"
-#. Vr5kM
+#. ZEvov
#: cui/uiconfig/ui/editmodulesdialog.ui:224
+msgctxt "down"
+msgid "Decreases the priority of the module selected in the list box by one level."
+msgstr ""
+
+#. Vr5kM
+#: cui/uiconfig/ui/editmodulesdialog.ui:236
msgctxt "editmodulesdialog|back"
msgid "_Back"
msgstr "Edellinen"
+#. FuJDd
+#: cui/uiconfig/ui/editmodulesdialog.ui:243
+msgctxt "back"
+msgid "Click here to undo the current changes in the list box."
+msgstr ""
+
+#. 4d4Pc
+#: cui/uiconfig/ui/editmodulesdialog.ui:309
+msgctxt "lingudicts"
+msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module."
+msgstr ""
+
#. ZF8AG
-#: cui/uiconfig/ui/editmodulesdialog.ui:312
+#: cui/uiconfig/ui/editmodulesdialog.ui:334
msgctxt "editmodulesdialog|label1"
msgid "Options"
msgstr "Asetukset"
@@ -7097,294 +8360,384 @@ msgctxt "effectspage|liststore1"
msgid "Small capitals"
msgstr "Kapiteelit"
+#. 4quGL
+#: cui/uiconfig/ui/effectspage.ui:120
+msgctxt "effectspage|extended_tip|effectslb"
+msgid "Select the font effects that you want to apply."
+msgstr "Valitaan käytettävä fonttitehoste."
+
#. GJExJ
-#: cui/uiconfig/ui/effectspage.ui:129
+#: cui/uiconfig/ui/effectspage.ui:134
msgctxt "effectspage|liststore2"
msgid "(Without)"
msgstr "(ilman)"
#. 2zc6A
-#: cui/uiconfig/ui/effectspage.ui:130
+#: cui/uiconfig/ui/effectspage.ui:135
msgctxt "effectspage|liststore2"
msgid "Embossed"
msgstr "Korkokuva"
#. Vq3YD
-#: cui/uiconfig/ui/effectspage.ui:131
+#: cui/uiconfig/ui/effectspage.ui:136
msgctxt "effectspage|liststore2"
msgid "Engraved"
msgstr "Kaiverrettu"
+#. D49UU
+#: cui/uiconfig/ui/effectspage.ui:140
+msgctxt "effectspage|extended_tip|relieflb"
+msgid "Select a relief effect to apply to the selected text. The embossed relief makes the characters appear as if they are raised above the page. The engraved relief makes the characters appear as if they are pressed into the page."
+msgstr ""
+
#. G8SPK
-#: cui/uiconfig/ui/effectspage.ui:144
+#: cui/uiconfig/ui/effectspage.ui:154
msgctxt "effectspage|liststore3"
msgid "(Without)"
msgstr "(ilman)"
#. V3aSU
-#: cui/uiconfig/ui/effectspage.ui:145
+#: cui/uiconfig/ui/effectspage.ui:155
msgctxt "effectspage|liststore3"
msgid "Dot"
msgstr "Piste"
#. sek6h
-#: cui/uiconfig/ui/effectspage.ui:146
+#: cui/uiconfig/ui/effectspage.ui:156
msgctxt "effectspage|liststore3"
msgid "Circle"
msgstr "Ympyrä"
#. rbdan
-#: cui/uiconfig/ui/effectspage.ui:147
+#: cui/uiconfig/ui/effectspage.ui:157
msgctxt "effectspage|liststore3"
msgid "Disc"
msgstr "Kiekko"
#. CCKAv
-#: cui/uiconfig/ui/effectspage.ui:148
+#: cui/uiconfig/ui/effectspage.ui:158
msgctxt "effectspage|liststore3"
msgid "Accent"
msgstr "Aksentti"
+#. VSsqz
+#: cui/uiconfig/ui/effectspage.ui:162
+msgctxt "effectspage|extended_tip|emphasislb"
+msgid "Select a character to display over or below the entire length of the selected text."
+msgstr "Valitaan merkki, joka esitetään valitun tekstin ylä tai alapuolella koko tekstin pituudelta."
+
#. Z6WHC
-#: cui/uiconfig/ui/effectspage.ui:161
+#: cui/uiconfig/ui/effectspage.ui:176
msgctxt "effectspage|liststore4"
msgid "Above text"
msgstr "Tekstin yläpuolella"
#. 4dQqG
-#: cui/uiconfig/ui/effectspage.ui:162
+#: cui/uiconfig/ui/effectspage.ui:177
msgctxt "effectspage|liststore4"
msgid "Below text"
msgstr "Tekstin alapuolella"
+#. HPUf8
+#: cui/uiconfig/ui/effectspage.ui:181
+msgctxt "effectspage|extended_tip|positionlb"
+msgid "Specify where to display the emphasis marks."
+msgstr "Määritetään, missä korostusmerkki esitetään."
+
#. D848F
-#: cui/uiconfig/ui/effectspage.ui:174
+#: cui/uiconfig/ui/effectspage.ui:194
msgctxt "effectspage|positionft"
msgid "Position:"
msgstr "Sijainti:"
#. QBQPF
-#: cui/uiconfig/ui/effectspage.ui:188
+#: cui/uiconfig/ui/effectspage.ui:208
msgctxt "effectspage|emphasisft"
msgid "Emphasis mark:"
msgstr "Painotusmerkki:"
#. 5pMfK
-#: cui/uiconfig/ui/effectspage.ui:200
+#: cui/uiconfig/ui/effectspage.ui:220
msgctxt "effectspage|outlinecb"
msgid "Outline"
msgstr "Ääriviiva"
+#. fXVDq
+#: cui/uiconfig/ui/effectspage.ui:230
+msgctxt "effectspage|extended_tip|outlinecb"
+msgid "Displays the outline of the selected characters. This effect does not work with every font."
+msgstr "Esitetään valittujen merkkien ääriviivat. Tämä tehoste ei toimi kaikilla fonteilla."
+
#. umH7r
-#: cui/uiconfig/ui/effectspage.ui:216
+#: cui/uiconfig/ui/effectspage.ui:241
msgctxt "effectspage|shadowcb"
msgid "Shadow"
msgstr "Varjo"
+#. 8tyio
+#: cui/uiconfig/ui/effectspage.ui:251
+msgctxt "effectspage|extended_tip|shadowcb"
+msgid "Adds a shadow that casts below and to the right of the selected characters."
+msgstr "Lisätään valittujen merkkien ala- ja oikealle puolelle suuntautuva lyhyt varjo."
+
#. KraW7
-#: cui/uiconfig/ui/effectspage.ui:232
+#: cui/uiconfig/ui/effectspage.ui:262
msgctxt "effectspage|hiddencb"
msgid "Hidden"
msgstr "Piilotettu"
+#. wFPA3
+#: cui/uiconfig/ui/effectspage.ui:272
+msgctxt "effectspage|extended_tip|hiddencb"
+msgid "Hides the selected characters."
+msgstr ""
+
#. GZX6U
-#: cui/uiconfig/ui/effectspage.ui:269
+#: cui/uiconfig/ui/effectspage.ui:304
msgctxt "effectspage|effectsft2"
msgid "Effects"
msgstr "Tehosteet"
#. BD3Ka
-#: cui/uiconfig/ui/effectspage.ui:306
+#: cui/uiconfig/ui/effectspage.ui:341
msgctxt "effectspage|label46"
msgid "Overlining:"
msgstr "Ylleviivaus:"
#. WtjES
-#: cui/uiconfig/ui/effectspage.ui:320
+#: cui/uiconfig/ui/effectspage.ui:355
msgctxt "effectspage|label47"
msgid "Strikethrough:"
msgstr "Yliviivaus:"
#. tCP45
-#: cui/uiconfig/ui/effectspage.ui:334
+#: cui/uiconfig/ui/effectspage.ui:369
msgctxt "effectspage|label48"
msgid "Underlining:"
msgstr "Alleviivaus:"
#. EGta9
-#: cui/uiconfig/ui/effectspage.ui:349 cui/uiconfig/ui/effectspage.ui:378
+#: cui/uiconfig/ui/effectspage.ui:384 cui/uiconfig/ui/effectspage.ui:418
msgctxt "effectspage|liststore6"
msgid "(Without)"
msgstr "(ilman)"
#. wvpKK
-#: cui/uiconfig/ui/effectspage.ui:350 cui/uiconfig/ui/effectspage.ui:379
+#: cui/uiconfig/ui/effectspage.ui:385 cui/uiconfig/ui/effectspage.ui:419
msgctxt "effectspage|liststore6"
msgid "Single"
msgstr "Yksinkertainen"
#. dCubb
-#: cui/uiconfig/ui/effectspage.ui:351 cui/uiconfig/ui/effectspage.ui:380
+#: cui/uiconfig/ui/effectspage.ui:386 cui/uiconfig/ui/effectspage.ui:420
msgctxt "effectspage|liststore6"
msgid "Double"
msgstr "Kaksinkertainen"
#. JFKfG
-#: cui/uiconfig/ui/effectspage.ui:352 cui/uiconfig/ui/effectspage.ui:381
+#: cui/uiconfig/ui/effectspage.ui:387 cui/uiconfig/ui/effectspage.ui:421
msgctxt "effectspage|liststore6"
msgid "Bold"
msgstr "Lihavoitu"
#. m7Jwh
-#: cui/uiconfig/ui/effectspage.ui:353 cui/uiconfig/ui/effectspage.ui:382
+#: cui/uiconfig/ui/effectspage.ui:388 cui/uiconfig/ui/effectspage.ui:422
msgctxt "effectspage|liststore6"
msgid "Dotted"
msgstr "Pisteet"
#. iC5t6
-#: cui/uiconfig/ui/effectspage.ui:354 cui/uiconfig/ui/effectspage.ui:383
+#: cui/uiconfig/ui/effectspage.ui:389 cui/uiconfig/ui/effectspage.ui:423
msgctxt "effectspage|liststore6"
msgid "Dotted (Bold)"
msgstr "Pisteet (lihavoitu)"
#. uGcdw
-#: cui/uiconfig/ui/effectspage.ui:355 cui/uiconfig/ui/effectspage.ui:384
+#: cui/uiconfig/ui/effectspage.ui:390 cui/uiconfig/ui/effectspage.ui:424
msgctxt "effectspage|liststore6"
msgid "Dash"
msgstr "Katkoviiva"
#. BLRCY
-#: cui/uiconfig/ui/effectspage.ui:356 cui/uiconfig/ui/effectspage.ui:385
+#: cui/uiconfig/ui/effectspage.ui:391 cui/uiconfig/ui/effectspage.ui:425
msgctxt "effectspage|liststore6"
msgid "Dash (Bold)"
msgstr "Katkoviiva (lihavoitu)"
#. FCcKo
-#: cui/uiconfig/ui/effectspage.ui:357 cui/uiconfig/ui/effectspage.ui:386
+#: cui/uiconfig/ui/effectspage.ui:392 cui/uiconfig/ui/effectspage.ui:426
msgctxt "effectspage|liststore6"
msgid "Long Dash"
msgstr "Pitkä katkoviiva"
#. 7UBEL
-#: cui/uiconfig/ui/effectspage.ui:358 cui/uiconfig/ui/effectspage.ui:387
+#: cui/uiconfig/ui/effectspage.ui:393 cui/uiconfig/ui/effectspage.ui:427
msgctxt "effectspage|liststore6"
msgid "Long Dash (Bold)"
msgstr "Pitkä katkoviiva (lihavoitu)"
#. a58XD
-#: cui/uiconfig/ui/effectspage.ui:359 cui/uiconfig/ui/effectspage.ui:388
+#: cui/uiconfig/ui/effectspage.ui:394 cui/uiconfig/ui/effectspage.ui:428
msgctxt "effectspage|liststore6"
msgid "Dot Dash"
msgstr "Pistekatkoviiva"
#. MhBD8
-#: cui/uiconfig/ui/effectspage.ui:360 cui/uiconfig/ui/effectspage.ui:389
+#: cui/uiconfig/ui/effectspage.ui:395 cui/uiconfig/ui/effectspage.ui:429
msgctxt "effectspage|liststore6"
msgid "Dot Dash (Bold)"
msgstr "Pistekatkoviiva (lihavoitu)"
#. AcyEi
-#: cui/uiconfig/ui/effectspage.ui:361 cui/uiconfig/ui/effectspage.ui:390
+#: cui/uiconfig/ui/effectspage.ui:396 cui/uiconfig/ui/effectspage.ui:430
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash"
msgstr "Piste piste viiva"
#. BRq6u
-#: cui/uiconfig/ui/effectspage.ui:362 cui/uiconfig/ui/effectspage.ui:391
+#: cui/uiconfig/ui/effectspage.ui:397 cui/uiconfig/ui/effectspage.ui:431
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash (Bold)"
msgstr "Piste piste viiva (lihavoitu)"
#. kEEBv
-#: cui/uiconfig/ui/effectspage.ui:363 cui/uiconfig/ui/effectspage.ui:392
+#: cui/uiconfig/ui/effectspage.ui:398 cui/uiconfig/ui/effectspage.ui:432
msgctxt "effectspage|liststore6"
msgid "Wave"
msgstr "Aalto"
#. XDicz
-#: cui/uiconfig/ui/effectspage.ui:364 cui/uiconfig/ui/effectspage.ui:393
+#: cui/uiconfig/ui/effectspage.ui:399 cui/uiconfig/ui/effectspage.ui:433
msgctxt "effectspage|liststore6"
msgid "Wave (Bold)"
msgstr "Aalto (lihavoitu)"
#. ZxdxD
-#: cui/uiconfig/ui/effectspage.ui:365 cui/uiconfig/ui/effectspage.ui:394
+#: cui/uiconfig/ui/effectspage.ui:400 cui/uiconfig/ui/effectspage.ui:434
msgctxt "effectspage|liststore6"
msgid "Double Wave"
msgstr "Kaksinkertainen aalto"
+#. i6Qpd
+#: cui/uiconfig/ui/effectspage.ui:404
+msgctxt "effectspage|extended_tip|overlinelb"
+msgid "Select the overlining style that you want to apply. To apply the overlining to words only, select the Individual Words box."
+msgstr "Valitaan käytettävä ylleviivaustyyli. Ylleviivauksen käyttämiseksi vain sanojen kohdalla merkitään Yksittäiset sanat-ruutu."
+
+#. jbrhD
+#: cui/uiconfig/ui/effectspage.ui:438
+msgctxt "effectspage|extended_tip|underlinelb"
+msgid "Select the underlining style that you want to apply. To apply the underlining to words only, select the Individual Words box."
+msgstr "Valitaan käytettävä alleviivaustyyli. Alleviivauksen käyttämiseksi vain sanojen kohdalla merkitään Yksittäiset sanat-ruutu."
+
#. FgNij
-#: cui/uiconfig/ui/effectspage.ui:407
+#: cui/uiconfig/ui/effectspage.ui:452
msgctxt "effectspage|liststore5"
msgid "(Without)"
msgstr "(ilman)"
#. Q4YtH
-#: cui/uiconfig/ui/effectspage.ui:408
+#: cui/uiconfig/ui/effectspage.ui:453
msgctxt "effectspage|liststore5"
msgid "Single"
msgstr "Yksinkertainen"
#. 9ndBZ
-#: cui/uiconfig/ui/effectspage.ui:409
+#: cui/uiconfig/ui/effectspage.ui:454
msgctxt "effectspage|liststore5"
msgid "Double"
msgstr "Kaksinkertainen"
#. p5Q9A
-#: cui/uiconfig/ui/effectspage.ui:410
+#: cui/uiconfig/ui/effectspage.ui:455
msgctxt "effectspage|liststore5"
msgid "Bold"
msgstr "Lihavoitu"
#. bcZBk
-#: cui/uiconfig/ui/effectspage.ui:411
+#: cui/uiconfig/ui/effectspage.ui:456
msgctxt "effectspage|liststore5"
msgid "With /"
msgstr "/-merkillä"
#. GJKbv
-#: cui/uiconfig/ui/effectspage.ui:412
+#: cui/uiconfig/ui/effectspage.ui:457
msgctxt "effectspage|liststore5"
msgid "With X"
msgstr "X-merkillä"
+#. Pmdav
+#: cui/uiconfig/ui/effectspage.ui:461
+msgctxt "effectspage|extended_tip|strikeoutlb"
+msgid "Select a strikethrough style for the selected text."
+msgstr "Valitaan yliviivaustyyli valitulle tekstille."
+
+#. qtErr
+#: cui/uiconfig/ui/effectspage.ui:483
+msgctxt "effectspage|extended_tip|underlinecolorlb"
+msgid "Select the color for the underlining."
+msgstr "Valitaan alleviivauksen väri."
+
+#. vuxpt
+#: cui/uiconfig/ui/effectspage.ui:505
+msgctxt "effectspage|extended_tip|overlinecolorlb"
+msgid "Select the color for the overlining."
+msgstr "Valitaan ylleviivauksen väri."
+
#. VYaEr
-#: cui/uiconfig/ui/effectspage.ui:454
+#: cui/uiconfig/ui/effectspage.ui:516
msgctxt "effectspage|individualwordscb"
msgid "Individual words"
msgstr "Yksittäiset sanat"
+#. AP5Gy
+#: cui/uiconfig/ui/effectspage.ui:525
+msgctxt "effectspage|extended_tip|individualwordscb"
+msgid "Applies the selected effect only to words and ignores spaces."
+msgstr "Valittua tehostetta käytetään vain sanoissa ja välit ohitetaan."
+
#. oFKJN
-#: cui/uiconfig/ui/effectspage.ui:504
+#: cui/uiconfig/ui/effectspage.ui:571
msgctxt "effectspage|textdecoration"
msgid "Text Decoration"
msgstr "Tekstin muotoilu"
#. omW2n
-#: cui/uiconfig/ui/effectspage.ui:540
+#: cui/uiconfig/ui/effectspage.ui:607
msgctxt "effectspage|fontcolorft"
msgid "Font color:"
msgstr "Fontin väri:"
+#. ttwFt
+#: cui/uiconfig/ui/effectspage.ui:630
+msgctxt "effectspage|extended_tip|fontcolorlb"
+msgid "Sets the color for the selected text. If you select Automatic, the text color is set to black for light backgrounds and to white for dark backgrounds."
+msgstr ""
+
#. aAbzm
-#: cui/uiconfig/ui/effectspage.ui:569
+#: cui/uiconfig/ui/effectspage.ui:642
msgctxt "effectspage|a11ywarning"
msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text."
msgstr "Saavutettavuusasetus \"Käytä näytöllä automaattista fontin väriä\" on käytössä. Fontille asetettua väriä ei tällä hetkellä käytetä näytettäessä tekstiä näytöllä."
#. AZF8Q
-#: cui/uiconfig/ui/effectspage.ui:583
+#: cui/uiconfig/ui/effectspage.ui:656
msgctxt "effectspage|fonttransparencyft"
msgid "_Transparency:"
msgstr "Läpinäkyvyys:"
#. vELSr
-#: cui/uiconfig/ui/effectspage.ui:616
+#: cui/uiconfig/ui/effectspage.ui:689
msgctxt "effectspage|fontcolorft3"
msgid "Font Color"
msgstr "Fontin väri"
+#. TzsRB
+#: cui/uiconfig/ui/effectspage.ui:705
+msgctxt "effectspage|extended_tip|EffectsPage"
+msgid "Specify the font effects that you want to use."
+msgstr "Määritetään käytettävä fonttitehoste."
+
#. GypUU
#: cui/uiconfig/ui/embossdialog.ui:8
msgctxt "embossdialog|EmbossDialog"
@@ -7392,17 +8745,23 @@ msgid "Emboss"
msgstr "Korkokuva"
#. uAQBB
-#: cui/uiconfig/ui/embossdialog.ui:141
+#: cui/uiconfig/ui/embossdialog.ui:138
msgctxt "embossdialog|label2"
msgid "_Light source:"
msgstr "Valonlähde:"
#. GPyhz
-#: cui/uiconfig/ui/embossdialog.ui:195
+#: cui/uiconfig/ui/embossdialog.ui:192
msgctxt "embossdialog|label1"
msgid "Parameters"
msgstr "Parametrit"
+#. AuuQ6
+#: cui/uiconfig/ui/embossdialog.ui:217
+msgctxt "embossdialog|extended_tip|EmbossDialog"
+msgid "Displays a dialog for creating reliefs."
+msgstr ""
+
#. RjncS
#: cui/uiconfig/ui/entrycontextmenu.ui:12
msgctxt "entrycontextmenu|remove"
@@ -7446,47 +8805,83 @@ msgid "Assign Macro"
msgstr "Liitä makro"
#. BgFFN
-#: cui/uiconfig/ui/eventassignpage.ui:85
+#: cui/uiconfig/ui/eventassignpage.ui:84
msgctxt "eventassignpage|eventft"
msgid "Event"
msgstr "Tapahtuma"
#. ginEm
-#: cui/uiconfig/ui/eventassignpage.ui:98
+#: cui/uiconfig/ui/eventassignpage.ui:97
msgctxt "eventassignpage|assignft"
msgid "Assigned Action"
msgstr "Liitetty toiminto"
+#. xj34d
+#: cui/uiconfig/ui/eventassignpage.ui:108
+msgctxt "eventassignpage|extended_tip|assignments"
+msgid "Lists the events that can trigger a macro."
+msgstr ""
+
#. P3GeQ
-#: cui/uiconfig/ui/eventassignpage.ui:117
+#: cui/uiconfig/ui/eventassignpage.ui:121
msgctxt "eventassignpage|libraryft1"
msgid "Assignments"
msgstr "Liitokset"
#. dcPPB
-#: cui/uiconfig/ui/eventassignpage.ui:138
+#: cui/uiconfig/ui/eventassignpage.ui:142
msgctxt "eventassignpage|assign"
msgid "Assign"
msgstr "Määritä"
+#. dMCaf
+#: cui/uiconfig/ui/eventassignpage.ui:150
+msgctxt "eventassignpage|extended_tip|assign"
+msgid "Assigns the selected macro to the selected event."
+msgstr ""
+
#. nwUkL
-#: cui/uiconfig/ui/eventassignpage.ui:153
+#: cui/uiconfig/ui/eventassignpage.ui:162
msgctxt "eventassignpage|delete"
msgid "Remove"
msgstr "Poista"
+#. qaQin
+#: cui/uiconfig/ui/eventassignpage.ui:169
+msgctxt "eventassignpage|extended_tip|delete"
+msgid "Removes the macro assignment from the selected entry."
+msgstr ""
+
+#. 9GNQR
+#: cui/uiconfig/ui/eventassignpage.ui:249
+msgctxt "eventassignpage|extended_tip|libraries"
+msgid "Lists the %PRODUCTNAME program and any open %PRODUCTNAME document."
+msgstr ""
+
#. y7Vyi
-#: cui/uiconfig/ui/eventassignpage.ui:244
+#: cui/uiconfig/ui/eventassignpage.ui:262
msgctxt "eventassignpage|macrotoft"
msgid "Macro From"
msgstr "Makro moduulista"
+#. n2zaD
+#: cui/uiconfig/ui/eventassignpage.ui:330
+msgctxt "eventassignpage|extended_tip|macros"
+msgid "Lists the available macros. Select the macro that you want to assign to the selected event, and then click Assign."
+msgstr ""
+
#. d229E
-#: cui/uiconfig/ui/eventassignpage.ui:320
+#: cui/uiconfig/ui/eventassignpage.ui:343
msgctxt "eventassignpage|existingmacrosft"
msgid "Existing Macros"
msgstr "Olemassa olevat makrot"
+#. ZKRQr
+#: cui/uiconfig/ui/eventassignpage.ui:364
+msgctxt "eventassignpage|extended_tip|EventAssignPage"
+msgid "Specifies the macro to run when you click an image, frame, or an OLE object."
+msgstr ""
+
#. 83DK5
#: cui/uiconfig/ui/eventsconfigpage.ui:41
msgctxt "eventsconfigpage|label1"
@@ -7499,30 +8894,60 @@ msgctxt "eventsconfigpage|macro"
msgid "M_acro..."
msgstr "Makro..."
+#. TqHir
+#: cui/uiconfig/ui/eventsconfigpage.ui:67
+msgctxt "eventsconfigpage|extended_tip|macro"
+msgid "Opens the Macro Selector to assign a macro to the selected event."
+msgstr ""
+
#. gxSRb
-#: cui/uiconfig/ui/eventsconfigpage.ui:74
+#: cui/uiconfig/ui/eventsconfigpage.ui:79
msgctxt "eventsconfigpage|delete"
msgid "_Remove"
msgstr "Poista"
+#. FGfuV
+#: cui/uiconfig/ui/eventsconfigpage.ui:86
+msgctxt "eventsconfigpage|extended_tip|delete"
+msgid "Deletes the macro or component assignment for the selected event."
+msgstr ""
+
#. Ebcvv
-#: cui/uiconfig/ui/eventsconfigpage.ui:116
+#: cui/uiconfig/ui/eventsconfigpage.ui:126
msgctxt "eventsconfigpage|label2"
msgid "Save in:"
msgstr "Tallenna kohteeseen:"
+#. JQMTJ
+#: cui/uiconfig/ui/eventsconfigpage.ui:143
+msgctxt "eventsconfigpage|extended_tip|savein"
+msgid "Select first where to save the event binding, in the current document or in %PRODUCTNAME."
+msgstr ""
+
#. C6KwW
-#: cui/uiconfig/ui/eventsconfigpage.ui:167
+#: cui/uiconfig/ui/eventsconfigpage.ui:182
msgctxt "eventsconfigpage|eventft"
msgid "Event"
msgstr "Tapahtuma"
#. daKJA
-#: cui/uiconfig/ui/eventsconfigpage.ui:191
+#: cui/uiconfig/ui/eventsconfigpage.ui:206
msgctxt "eventsconfigpage|actionft"
msgid "Assigned Action"
msgstr "Määritetty toiminto"
+#. Gp5MK
+#: cui/uiconfig/ui/eventsconfigpage.ui:217
+msgctxt "eventsconfigpage|extended_tip|events"
+msgid "The big list box lists the events and the assigned macros. After you selected the location in the Save In list box, select an event in the big list box. Then click Assign Macro."
+msgstr ""
+
+#. aCb4v
+#: cui/uiconfig/ui/eventsconfigpage.ui:242
+msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
+msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
+msgstr "Liitetään makro ohjelman tapahtumaan. Liitetty makro käynnistyy joka kerta, kun valittu tapahtuma esiintyy."
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -7530,155 +8955,293 @@ msgid "Record Search"
msgstr "Tietuehaku"
#. BiFWr
-#: cui/uiconfig/ui/fmsearchdialog.ui:27
+#: cui/uiconfig/ui/fmsearchdialog.ui:24
msgctxt "fmsearchdialog|pbSearchAgain"
msgid "S_earch"
msgstr "Haku"
-#. sC6j6
+#. LBdux
+#: cui/uiconfig/ui/fmsearchdialog.ui:33
+msgctxt "fmsearchdialog|extended_tip|pbSearchAgain"
+msgid "Starts or cancels the search."
+msgstr "Aloitetaan tai peruutetaan haku."
+
+#. QReEJ
+#: cui/uiconfig/ui/fmsearchdialog.ui:52
+msgctxt "fmsearchdialog|extended_tip|close"
+msgid "Closes the dialog. The settings of the last search will be saved until you quit %PRODUCTNAME."
+msgstr "Suljetaan valintaikkuna. Viimeisen haun asetukset säilyvät kunnes %PRODUCTNAME-istunto lopetetaan."
+
+#. UPeyv
#: cui/uiconfig/ui/fmsearchdialog.ui:146
+msgctxt "fmsearchdialog|extended_tip|cmbSearchText"
+msgid "Enter the search term in the box or select it from the list."
+msgstr "Hakutermi kirjoitetaan ruutuun tai valitaan luettelosta."
+
+#. sC6j6
+#: cui/uiconfig/ui/fmsearchdialog.ui:157
msgctxt "fmsearchdialog|rbSearchForText"
msgid "_Text:"
msgstr "Teksti:"
+#. Abepw
+#: cui/uiconfig/ui/fmsearchdialog.ui:167
+msgctxt "fmsearchdialog|extended_tip|rbSearchForText"
+msgid "Enter the search term in the box or select it from the list."
+msgstr "Hakutermi kirjoitetaan ruutuun tai valitaan luettelosta."
+
#. CrVGp
-#: cui/uiconfig/ui/fmsearchdialog.ui:169
+#: cui/uiconfig/ui/fmsearchdialog.ui:185
msgctxt "fmsearchdialog|rbSearchForNull"
msgid "Field content is _NULL"
msgstr "Kentän sisältö on NULL (tyhjä)"
+#. CSSkE
+#: cui/uiconfig/ui/fmsearchdialog.ui:196
+msgctxt "fmsearchdialog|extended_tip|rbSearchForNull"
+msgid "Specifies that fields will be found that contain no data."
+msgstr "Merkinnällä määrätään, että haettavissa kentissä ei ole tietosisältöä."
+
#. zxjuF
-#: cui/uiconfig/ui/fmsearchdialog.ui:187
+#: cui/uiconfig/ui/fmsearchdialog.ui:208
msgctxt "fmsearchdialog|rbSearchForNotNull"
msgid "Field content is not NU_LL"
msgstr "Kentän sisältö ei ole NULL (tyhjä)"
+#. oybVR
+#: cui/uiconfig/ui/fmsearchdialog.ui:219
+msgctxt "fmsearchdialog|extended_tip|rbSearchForNotNull"
+msgid "Specifies that fields will be found that contain data."
+msgstr "Merkinnällä määrätään, että haetaan kenttiä, joissa on tietosisältöä."
+
#. X9FQy
-#: cui/uiconfig/ui/fmsearchdialog.ui:217
+#: cui/uiconfig/ui/fmsearchdialog.ui:243
msgctxt "fmsearchdialog|flSearchFor"
msgid "_Search for"
msgstr "Etsittävä"
#. PGaCY
-#: cui/uiconfig/ui/fmsearchdialog.ui:273
+#: cui/uiconfig/ui/fmsearchdialog.ui:299
msgctxt "fmsearchdialog|rbSingleField"
msgid "_Single field:"
msgstr "Yksittäinen kenttä:"
-#. aLBBD
+#. 9kRju
#: cui/uiconfig/ui/fmsearchdialog.ui:309
+msgctxt "fmsearchdialog|extended_tip|rbSingleField"
+msgid "Searches through a specified data field."
+msgstr "Etsintä määritellystä kentästä."
+
+#. TyqAE
+#: cui/uiconfig/ui/fmsearchdialog.ui:327
+msgctxt "fmsearchdialog|extended_tip|lbField"
+msgid "Searches through a specified data field."
+msgstr "Etsintä määritellystä kentästä."
+
+#. aLBBD
+#: cui/uiconfig/ui/fmsearchdialog.ui:345
msgctxt "fmsearchdialog|rbAllFields"
msgid "_All fields"
msgstr "Kaikki kentät"
+#. mWvzW
+#: cui/uiconfig/ui/fmsearchdialog.ui:356
+msgctxt "fmsearchdialog|extended_tip|rbAllFields"
+msgid "Searches through all fields."
+msgstr "Haku kattaa kaikki kentät."
+
#. 64yD3
-#: cui/uiconfig/ui/fmsearchdialog.ui:333
+#: cui/uiconfig/ui/fmsearchdialog.ui:374
msgctxt "fmsearchdialog|ftForm"
msgid "Form:"
msgstr "Lomake:"
+#. aCM9Q
+#: cui/uiconfig/ui/fmsearchdialog.ui:391
+msgctxt "fmsearchdialog|extended_tip|lbForm"
+msgid "Specifies the logical form in which you want the search to take place."
+msgstr "Määritetään looginen lomake, jossa haun pitää tapahtua."
+
#. B2SYL
-#: cui/uiconfig/ui/fmsearchdialog.ui:408
+#: cui/uiconfig/ui/fmsearchdialog.ui:454
msgctxt "fmsearchdialog|label2"
msgid "Where to Search"
msgstr "Hakualue"
#. yqEse
-#: cui/uiconfig/ui/fmsearchdialog.ui:458
+#: cui/uiconfig/ui/fmsearchdialog.ui:504
msgctxt "fmsearchdialog|ftPosition"
msgid "_Position:"
msgstr "_Sijainti:"
+#. BLRj3
+#: cui/uiconfig/ui/fmsearchdialog.ui:522
+msgctxt "fmsearchdialog|extended_tip|lbPosition"
+msgid "Specifies the relationship of the search term and the field contents."
+msgstr "Määritetään hakutermin ja kentän sisällön suhdetta."
+
#. c6ZbD
-#: cui/uiconfig/ui/fmsearchdialog.ui:495
+#: cui/uiconfig/ui/fmsearchdialog.ui:546
msgctxt "fmsearchdialog|HalfFullFormsCJK"
msgid "Match character wi_dth"
msgstr "Täsmäytä puoli- ja täysleveät muodot"
+#. wAKeF
+#: cui/uiconfig/ui/fmsearchdialog.ui:555
+msgctxt "fmsearchdialog|extended_tip|HalfFullFormsCJK"
+msgid "Distinguishes between half-width and full-width character forms."
+msgstr "Erotellaan puoli- ja täysleveät merkkimuodot toisistaan."
+
#. EedjA
-#: cui/uiconfig/ui/fmsearchdialog.ui:515
+#: cui/uiconfig/ui/fmsearchdialog.ui:571
msgctxt "fmsearchdialog|SoundsLikeCJK"
msgid "Sounds like (_Japanese)"
msgstr "Samankuuloinen kuin (japani)"
+#. m2QkD
+#: cui/uiconfig/ui/fmsearchdialog.ui:580
+msgctxt "fmsearchdialog|extended_tip|SoundsLikeCJK"
+msgid "Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the Sounds button to specify the search options."
+msgstr "Voidaan määritellä japanin kielessä hakuehtoja samantapaisille merkinnöille. Kun ruutu on merkitty, valitaan ... -painike ja määritellään haun ehtoja. "
+
#. 2Gsbd
-#: cui/uiconfig/ui/fmsearchdialog.ui:530
+#: cui/uiconfig/ui/fmsearchdialog.ui:591
msgctxt "fmsearchdialog|SoundsLikeCJKSettings"
msgid "Similarities..."
msgstr "Samankaltaisuudet..."
+#. CxVZm
+#: cui/uiconfig/ui/fmsearchdialog.ui:599
+msgctxt "fmsearchdialog|extended_tip|SoundsLikeCJKSettings"
+msgid "Sets the search options for similar notation used in Japanese text."
+msgstr "Asetetaan hakuehtoja japanin kielen samankaltaisten merkintöjen pohjalta."
+
#. Ra8jW
-#: cui/uiconfig/ui/fmsearchdialog.ui:555
+#: cui/uiconfig/ui/fmsearchdialog.ui:621
msgctxt "fmsearchdialog|cbApprox"
msgid "S_imilarity search"
msgstr "Vastaavuushaku"
+#. zDTS6
+#: cui/uiconfig/ui/fmsearchdialog.ui:630
+msgctxt "fmsearchdialog|extended_tip|cbApprox"
+msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options."
+msgstr ""
+
#. DNGxj
-#: cui/uiconfig/ui/fmsearchdialog.ui:570
+#: cui/uiconfig/ui/fmsearchdialog.ui:641
msgctxt "fmsearchdialog|pbApproxSettings"
msgid "Similarities..."
msgstr "Samankaltaisuudet..."
+#. PtuHs
+#: cui/uiconfig/ui/fmsearchdialog.ui:650
+msgctxt "fmsearchdialog|extended_tip|pbApproxSettings"
+msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options."
+msgstr ""
+
#. 6BpAF
-#: cui/uiconfig/ui/fmsearchdialog.ui:591
+#: cui/uiconfig/ui/fmsearchdialog.ui:667
msgctxt "fmsearchdialog|cbCase"
msgid "_Match case"
msgstr "Sama kirjainkoko"
+#. Gdo9i
+#: cui/uiconfig/ui/fmsearchdialog.ui:676
+msgctxt "fmsearchdialog|extended_tip|cbCase"
+msgid "Specifies that upper and lower case are taken into consideration during the search."
+msgstr "Merkinnällä määrätään, että SUUR- ja pienaakkoset erotellaan haussa."
+
#. X5q2K
-#: cui/uiconfig/ui/fmsearchdialog.ui:606
+#: cui/uiconfig/ui/fmsearchdialog.ui:687
msgctxt "fmsearchdialog|cbStartOver"
msgid "Fr_om top"
msgstr "Ylhäältä"
+#. y83im
+#: cui/uiconfig/ui/fmsearchdialog.ui:696
+msgctxt "fmsearchdialog|extended_tip|cbStartOver"
+msgid "Restarts the search. A forward search restarts with the first record. A backwards search restarts with the last record."
+msgstr "Haku käynnistetään uudestaan. Eteenpäin haku käynnistyy ensimmäisestä tietueesta. Taaksepäin haku käynnistyy uudestaan viimeisestä tietueesta."
+
#. WP3XA
-#: cui/uiconfig/ui/fmsearchdialog.ui:621
+#: cui/uiconfig/ui/fmsearchdialog.ui:707
msgctxt "fmsearchdialog|cbRegular"
msgid "_Regular expression"
msgstr "Säännöllinen lauseke"
+#. 4uneg
+#: cui/uiconfig/ui/fmsearchdialog.ui:716
+msgctxt "fmsearchdialog|extended_tip|cbRegular"
+msgid "Searches with regular expressions."
+msgstr ""
+
#. qzKAB
-#: cui/uiconfig/ui/fmsearchdialog.ui:636
+#: cui/uiconfig/ui/fmsearchdialog.ui:727
msgctxt "fmsearchdialog|cbUseFormat"
msgid "Appl_y field format"
msgstr "Käytä kentän muotoa"
+#. BdMDC
+#: cui/uiconfig/ui/fmsearchdialog.ui:736
+msgctxt "fmsearchdialog|extended_tip|cbUseFormat"
+msgid "Specifies that all field formats are considered when searching in the current document."
+msgstr "Merkinnällä määrätään, että haku aktiivisesta asiakirjasta huomioi kaikki kentän muodot."
+
#. 2GvF5
-#: cui/uiconfig/ui/fmsearchdialog.ui:651
+#: cui/uiconfig/ui/fmsearchdialog.ui:747
msgctxt "fmsearchdialog|cbBackwards"
msgid "Search _backwards"
msgstr "Etsi taaksepäin"
+#. QvjG7
+#: cui/uiconfig/ui/fmsearchdialog.ui:756
+msgctxt "fmsearchdialog|extended_tip|cbBackwards"
+msgid "Specifies that the search process will run in reverse direction, from the last to the first record."
+msgstr "Merkinnällä määrätään, että hakuprosessi suoritetaan käänteisessä järjestyksessä, viimeisestä tietueesta ensimmäiseen."
+
#. 4ixJZ
-#: cui/uiconfig/ui/fmsearchdialog.ui:666
+#: cui/uiconfig/ui/fmsearchdialog.ui:767
msgctxt "fmsearchdialog|cbWildCard"
msgid "_Wildcard expression"
msgstr "Jokerimerkkilauseke"
+#. BES8b
+#: cui/uiconfig/ui/fmsearchdialog.ui:776
+msgctxt "fmsearchdialog|extended_tip|cbWildCard"
+msgid "Allows a search with a * or ? wildcard."
+msgstr ""
+
#. xHRxu
-#: cui/uiconfig/ui/fmsearchdialog.ui:694
+#: cui/uiconfig/ui/fmsearchdialog.ui:800
msgctxt "fmsearchdialog|flOptions"
msgid "Settings"
msgstr "Asetukset"
#. wBBss
-#: cui/uiconfig/ui/fmsearchdialog.ui:729
+#: cui/uiconfig/ui/fmsearchdialog.ui:835
msgctxt "fmsearchdialog|ftRecordLabel"
msgid "Record:"
msgstr "Tietue:"
#. UBLpq
-#: cui/uiconfig/ui/fmsearchdialog.ui:741
+#: cui/uiconfig/ui/fmsearchdialog.ui:847
msgctxt "fmsearchdialog|ftRecord"
msgid "record count"
msgstr "tietueiden määrä"
#. 8EDSy
-#: cui/uiconfig/ui/fmsearchdialog.ui:767
+#: cui/uiconfig/ui/fmsearchdialog.ui:873
msgctxt "fmsearchdialog|flState"
msgid "State"
msgstr "Tila"
+#. tqCYV
+#: cui/uiconfig/ui/fmsearchdialog.ui:904
+msgctxt "fmsearchdialog|extended_tip|RecordSearchDialog"
+msgid "Searches database tables and forms."
+msgstr ""
+
#. zbAyQ
#: cui/uiconfig/ui/fontfeaturesdialog.ui:10
msgctxt "fontfeaturesdialog|FontFeaturesDialog"
@@ -7686,11 +9249,17 @@ msgid "Font Features"
msgstr "Fontin ominaisuudet"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:166
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:163
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Esikatselu"
+#. hib9i
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:199
+msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
+msgid "Select and apply font typographical features to characters."
+msgstr ""
+
#. CJQFA
#: cui/uiconfig/ui/formatcellsdialog.ui:8
msgctxt "formatcellsdialog|FormatCellsDialog"
@@ -7745,36 +9314,72 @@ msgctxt "galleryfilespage|label1"
msgid "_File type:"
msgstr "Tiedostotyyppi:"
+#. p7EMZ
+#: cui/uiconfig/ui/galleryfilespage.ui:62
+msgctxt "galleryfilespage|extended_tip|filetype"
+msgid "Select the type of file that you want to add."
+msgstr "Valitaan lisättävän tiedoston tyyppi."
+
#. GS6jY
-#: cui/uiconfig/ui/galleryfilespage.ui:107
+#: cui/uiconfig/ui/galleryfilespage.ui:112
msgctxt "galleryfilespage|files-atkobject"
msgid "Files Found"
msgstr "Löydetyt tiedostot"
+#. EP5WY
+#: cui/uiconfig/ui/galleryfilespage.ui:113
+msgctxt "galleryfilespage|extended_tip|files"
+msgid "Lists the available files. Select the file(s) that you want to add, and then click Add. To add all of the files in the list, click Add All."
+msgstr "Luettelossa on saatavilla olevat tiedostot. Valitaan lisättävät tiedostot ja napsautetaan sitten Lisää-painiketta. Luettelon kaikkien tiedostojen lisäämiseksi napsautetaan Lisää kaikki -painiketta."
+
#. UnmAz
-#: cui/uiconfig/ui/galleryfilespage.ui:136
+#: cui/uiconfig/ui/galleryfilespage.ui:142
msgctxt "galleryfilespage|preview"
msgid "Pr_eview"
msgstr "Esikatselu"
+#. sWLgt
+#: cui/uiconfig/ui/galleryfilespage.ui:151
+msgctxt "galleryfilespage|extended_tip|preview"
+msgid "Displays or hides a preview of the selected file."
+msgstr "Ruutu merkittynä voidaan esikatsella valittua tiedostoa."
+
#. EmQfr
-#: cui/uiconfig/ui/galleryfilespage.ui:166
+#: cui/uiconfig/ui/galleryfilespage.ui:177
msgctxt "galleryfilespage|image-atkobject"
msgid "Preview"
msgstr "Esikatselu"
#. iGEBB
-#: cui/uiconfig/ui/galleryfilespage.ui:194
+#: cui/uiconfig/ui/galleryfilespage.ui:205
msgctxt "galleryfilespage|findfiles"
msgid "_Find Files..."
msgstr "Etsi tiedostot..."
+#. iqzdT
+#: cui/uiconfig/ui/galleryfilespage.ui:212
+msgctxt "galleryfilespage|extended_tip|findfiles"
+msgid "Locate the directory containing the files that you want to add, and then click OK."
+msgstr "Paikallistetaan kansio, jossa lisättävät tiedostot on, ja napsautetaan sitten OK-painiketta."
+
+#. bhqkR
+#: cui/uiconfig/ui/galleryfilespage.ui:231
+msgctxt "galleryfilespage|extended_tip|add"
+msgid "Adds the selected file(s) to the current theme."
+msgstr "Lisätään valitut tiedostot kohdistettuun teemaan."
+
#. oNFEr
-#: cui/uiconfig/ui/galleryfilespage.ui:222
+#: cui/uiconfig/ui/galleryfilespage.ui:243
msgctxt "galleryfilespage|addall"
msgid "A_dd All"
msgstr "Lisää kaikki"
+#. yHYBJ
+#: cui/uiconfig/ui/galleryfilespage.ui:250
+msgctxt "galleryfilespage|extended_tip|addall"
+msgid "Adds all of the files in the list to the current theme."
+msgstr "Lisätään luettelon kaikki tiedostot kohdistettuun teemaan."
+
#. kfNzx
#: cui/uiconfig/ui/gallerygeneralpage.ui:21
msgctxt "gallerygeneralpage|label1"
@@ -7861,7 +9466,7 @@ msgid "Enter Title"
msgstr "Syötä otsikko"
#. DBmvf
-#: cui/uiconfig/ui/gallerytitledialog.ui:89
+#: cui/uiconfig/ui/gallerytitledialog.ui:86
msgctxt "gallerytitledialog|label2"
msgid "Title:"
msgstr "Otsikko:"
@@ -7878,144 +9483,222 @@ msgctxt "galleryupdateprogress|label2"
msgid "File"
msgstr "Tiedosto"
+#. NTAMc
+#: cui/uiconfig/ui/galleryupdateprogress.ui:103
+msgctxt "galleryupdateprogress|extended_tip|GalleryUpdateProgress"
+msgid "Updates the view in the window or in the selected object."
+msgstr "Päivitetään ikkunan tai valitun objektin näkymää."
+
+#. YDCTd
+#: cui/uiconfig/ui/gradientpage.ui:122
+msgctxt "gradientpage|extended_tip|add"
+msgid "Adds a custom gradient to the current list. Specify the properties of your gradient, and then click this button"
+msgstr "Lisätään mukautettu liukuvärjäys nykyiseen luetteloon. Määritellään ensin käyttäjän oman liukuvärjäyksen ominaisuudet ja sitten napsautetaan tätä painiketta"
+
#. QfZFH
-#: cui/uiconfig/ui/gradientpage.ui:129
+#: cui/uiconfig/ui/gradientpage.ui:134
msgctxt "gradientpage|modify"
msgid "_Modify"
msgstr "_Muuta"
+#. EeXWP
+#: cui/uiconfig/ui/gradientpage.ui:141
+msgctxt "gradientpage|extended_tip|modify"
+msgid "Applies the current gradient properties to the selected gradient. If you want, you can save the gradient under a different name."
+msgstr "Käytetään aktiivisen liukuvärjäyksen ominaisuuksia valittuun liukuvärjäykseen. Tarvittaessa liukuvärjäys voidaan tallentaa eri nimellä."
+
#. 7ipyi
-#: cui/uiconfig/ui/gradientpage.ui:156
+#: cui/uiconfig/ui/gradientpage.ui:166
msgctxt "gradientpage|label1"
msgid "Gradient"
msgstr "Liukuvärjäys"
#. GPnwG
-#: cui/uiconfig/ui/gradientpage.ui:204
+#: cui/uiconfig/ui/gradientpage.ui:214
msgctxt "gradientpage|typeft"
msgid "_Type:"
msgstr "Tyyppi:"
#. 8Qjgv
-#: cui/uiconfig/ui/gradientpage.ui:220
+#: cui/uiconfig/ui/gradientpage.ui:230
msgctxt "gradientpage|gradienttypelb"
msgid "Linear"
msgstr "Lineaarinen"
#. fgBSm
-#: cui/uiconfig/ui/gradientpage.ui:221
+#: cui/uiconfig/ui/gradientpage.ui:231
msgctxt "gradientpage|gradienttypelb"
msgid "Axial"
msgstr "Aksiaalinen"
#. FGjhA
-#: cui/uiconfig/ui/gradientpage.ui:222
+#: cui/uiconfig/ui/gradientpage.ui:232
msgctxt "gradientpage|gradienttypelb"
msgid "Radial"
msgstr "Säteittäinen"
#. VGtK3
-#: cui/uiconfig/ui/gradientpage.ui:223
+#: cui/uiconfig/ui/gradientpage.ui:233
msgctxt "gradientpage|gradienttypelb"
msgid "Ellipsoid"
msgstr "Ellipsoidi"
#. 7FRe4
-#: cui/uiconfig/ui/gradientpage.ui:224
+#: cui/uiconfig/ui/gradientpage.ui:234
msgctxt "gradientpage|gradienttypelb"
msgid "Quadratic"
msgstr "Neliön muotoinen"
#. wQDTv
-#: cui/uiconfig/ui/gradientpage.ui:225
+#: cui/uiconfig/ui/gradientpage.ui:235
msgctxt "gradientpage|gradienttypelb"
msgid "Square"
msgstr "Neliö"
+#. XasEx
+#: cui/uiconfig/ui/gradientpage.ui:239
+msgctxt "gradientpage|extended_tip|gradienttypelb"
+msgid "Select the gradient that you want to apply."
+msgstr "Valitaan käytettävän liukuvärjäyksen tyyppi."
+
#. BBKZM
-#: cui/uiconfig/ui/gradientpage.ui:252
+#: cui/uiconfig/ui/gradientpage.ui:267
msgctxt "gradientpage|incrementft"
msgid "Increment:"
msgstr "Askelia:"
#. F5dVt
-#: cui/uiconfig/ui/gradientpage.ui:277
+#: cui/uiconfig/ui/gradientpage.ui:292
msgctxt "gradientpage|autoincrement"
msgid "A_utomatic"
msgstr "Automaattinen"
#. LAhqj
-#: cui/uiconfig/ui/gradientpage.ui:309
+#: cui/uiconfig/ui/gradientpage.ui:324
msgctxt "gradientpage|centerft"
msgid "Center ( X / Y ):"
msgstr "Keskipiste ( X / Y ):"
+#. mP62s
+#: cui/uiconfig/ui/gradientpage.ui:347
+msgctxt "gradientpage|extended_tip|centerxmtr"
+msgid "Enter the horizontal offset for the gradient, where 0% corresponds to the current horizontal location of the endpoint color in the gradient. The endpoint color is the color that is selected in the To Color box."
+msgstr ""
+
+#. AP27S
+#: cui/uiconfig/ui/gradientpage.ui:365
+msgctxt "gradientpage|extended_tip|centerymtr"
+msgid "Enter the vertical offset for the gradient, where 0% corresponds to the current vertical location of the endpoint color in the gradient. The endpoint color is the color that is selected in the To Color box."
+msgstr ""
+
#. ZZ7yo
-#: cui/uiconfig/ui/gradientpage.ui:374
+#: cui/uiconfig/ui/gradientpage.ui:399
msgctxt "gradientpage|borderft"
msgid "_Border:"
msgstr "Raja:"
+#. iZbnF
+#: cui/uiconfig/ui/gradientpage.ui:432
+msgctxt "gradientpage|extended_tip|bordermtr"
+msgid "Enter the amount by which you want to adjust the area of the endpoint color on the gradient. The endpoint color is the color that is selected in the To Color box."
+msgstr ""
+
+#. qCvgc
+#: cui/uiconfig/ui/gradientpage.ui:448
+msgctxt "gradientpage|extended_tip|anglemtr"
+msgid "Enter a rotation angle for the selected gradient."
+msgstr "Annetaan valitun liukuvärjäyksen kiertokulma."
+
#. cGXmA
-#: cui/uiconfig/ui/gradientpage.ui:427
+#: cui/uiconfig/ui/gradientpage.ui:462
msgctxt "gradientpage|angleft"
msgid "A_ngle:"
msgstr "K_ulma:"
+#. fwB6f
+#: cui/uiconfig/ui/gradientpage.ui:480
+msgctxt "gradientpage|extended_tip|colortomtr"
+msgid "Enter the intensity for the color in the To Color box, where 0% corresponds to black, and 100 % to the selected color."
+msgstr ""
+
+#. C6iys
+#: cui/uiconfig/ui/gradientpage.ui:502
+msgctxt "gradientpage|extended_tip|colortolb"
+msgid "Select a color for the endpoint of the gradient."
+msgstr "Valitaan liukuvärjäyksen loppupisteen väri."
+
#. tFEUh
-#: cui/uiconfig/ui/gradientpage.ui:470
+#: cui/uiconfig/ui/gradientpage.ui:515
msgctxt "gradientpage|colortoft"
msgid "_To Color:"
msgstr "Väriin:"
+#. RnucA
+#: cui/uiconfig/ui/gradientpage.ui:539
+msgctxt "gradientpage|extended_tip|colorfromlb"
+msgid "Select a color for the beginning point of the gradient."
+msgstr "Valitaan liukuvärjäyksen alkupisteväri."
+
+#. B9z2L
+#: cui/uiconfig/ui/gradientpage.ui:555
+msgctxt "gradientpage|extended_tip|colorfrommtr"
+msgid "Enter the intensity for the color in the From Color box, where 0% corresponds to black, and 100 % to the selected color."
+msgstr ""
+
#. TQFE8
-#: cui/uiconfig/ui/gradientpage.ui:513
+#: cui/uiconfig/ui/gradientpage.ui:568
msgctxt "gradientpage|colorfromft"
msgid "_From Color:"
msgstr "_Väristä:"
#. RNhur
-#: cui/uiconfig/ui/gradientpage.ui:551
+#: cui/uiconfig/ui/gradientpage.ui:606
msgctxt "gradientpage|a11y_center_x"
msgid "Center X"
msgstr "Keskipisteen X"
#. qkLcz
-#: cui/uiconfig/ui/gradientpage.ui:565
+#: cui/uiconfig/ui/gradientpage.ui:620
msgctxt "gradientpage|a11y_center_y"
msgid "Center Y"
msgstr "Keskipisteen Y"
#. VX2bJ
-#: cui/uiconfig/ui/gradientpage.ui:579
+#: cui/uiconfig/ui/gradientpage.ui:634
msgctxt "gradientpage|a11y_percentage_from"
msgid "From color percentage"
msgstr "Väriprosentista"
#. 3qVyC
-#: cui/uiconfig/ui/gradientpage.ui:593
+#: cui/uiconfig/ui/gradientpage.ui:648
msgctxt "gradientpage|a11y_percentage_to"
msgid "To color percentage"
msgstr "Väriprosenttiin"
#. 58WB2
-#: cui/uiconfig/ui/gradientpage.ui:618
+#: cui/uiconfig/ui/gradientpage.ui:673
msgctxt "gradientpage|propfl"
msgid "Options"
msgstr "Asetukset"
#. 5mDZm
-#: cui/uiconfig/ui/gradientpage.ui:667
+#: cui/uiconfig/ui/gradientpage.ui:722
msgctxt "gradientpage|previewctl-atkobject"
msgid "Example"
msgstr "Esimerkki"
#. e2Ai2
-#: cui/uiconfig/ui/gradientpage.ui:689
+#: cui/uiconfig/ui/gradientpage.ui:744
msgctxt "gradientpage|label2"
msgid "Preview"
msgstr "Esikatselu"
+#. VBG9C
+#: cui/uiconfig/ui/gradientpage.ui:760
+msgctxt "gradientpage|extended_tip|GradientPage"
+msgid "Select a gradient, modify the properties of a gradient, or save a new gradient."
+msgstr ""
+
#. 26WXC
#: cui/uiconfig/ui/hangulhanjaadddialog.ui:8
msgctxt "hangulhanjaadddialog|HangulHanjaAddDialog"
@@ -8023,13 +9706,19 @@ msgid "New Dictionary"
msgstr "Uusi sanasto"
#. iqNN4
-#: cui/uiconfig/ui/hangulhanjaadddialog.ui:102
+#: cui/uiconfig/ui/hangulhanjaadddialog.ui:99
msgctxt "hangulhanjaadddialog|label2"
msgid "_Name:"
msgstr "Nimi:"
+#. haBfA
+#: cui/uiconfig/ui/hangulhanjaadddialog.ui:118
+msgctxt "hangulhanjaadddialog|extended_tip|entry"
+msgid "Enter a name for the dictionary."
+msgstr "Nimetään uusi sanasto"
+
#. S2WpP
-#: cui/uiconfig/ui/hangulhanjaadddialog.ui:134
+#: cui/uiconfig/ui/hangulhanjaadddialog.ui:136
msgctxt "hangulhanjaadddialog|label1"
msgid "Dictionary"
msgstr "Sanasto"
@@ -8041,151 +9730,313 @@ msgid "Hangul/Hanja Conversion"
msgstr "Hangul/hanja-muunnos"
#. kh2or
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:105
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:102
msgctxt "hangulhanjaconversiondialog|label1"
msgid "Original"
msgstr "Alkuperäinen"
+#. bJGUF
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:119
+msgctxt "hangulhanjaconversiondialog|extended_tip|originalword"
+msgid "Displays the current selection."
+msgstr ""
+
#. P2Lhg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:130
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:132
msgctxt "hangulhanjaconversiondialog|label3"
msgid "Word"
msgstr "Sana"
+#. 3vGK6
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:154
+msgctxt "hangulhanjaconversiondialog|extended_tip|wordinput"
+msgid "Displays the first replacement suggestion from the dictionary."
+msgstr ""
+
#. JQfs4
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:159
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:166
msgctxt "hangulhanjaconversiondialog|find"
msgid "_Find"
msgstr "Etsi"
+#. TqDEv
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:173
+msgctxt "hangulhanjaconversiondialog|extended_tip|find"
+msgid "Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja."
+msgstr ""
+
#. 3NS8C
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:181
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:193
msgctxt "hangulhanjaconversiondialog|label4"
msgid "Suggestions"
msgstr "Ehdotukset"
#. ECK62
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:274
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:286
msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "Muotoilu"
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:294
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr "Hanja yläpuolella"
+#. 3FDwm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:313
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
+msgid "The Hangul part will be displayed as ruby text above the Hanja part."
+msgstr ""
+
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:310
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:327
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr "Hanja alapuolella"
+#. cuAAs
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:334
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
+msgid "The Hangul part will be displayed as ruby text below the Hanja part."
+msgstr ""
+
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:348
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr "Hangul yläpuolella"
+#. yHfhf
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
+msgid "The Hanja part will be displayed as ruby text above the Hangul part."
+msgstr ""
+
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:342
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr "Hangul alapuolella"
+#. R37Uk
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:376
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
+msgid "The Hanja part will be displayed as ruby text below the Hangul part."
+msgstr ""
+
#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:387
msgctxt "hangulhanjaconversiondialog|simpleconversion"
msgid "_Hangul/Hanja"
msgstr "Hangul/hanja"
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:398
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:372
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:409
msgctxt "hangulhanjaconversiondialog|hangulbracket"
msgid "Hanja (Han_gul)"
msgstr "Hanja (hangul)"
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:419
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:388
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:430
msgctxt "hangulhanjaconversiondialog|hanjabracket"
msgid "Hang_ul (Hanja)"
msgstr "Hangul (hanja)"
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:440
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:418
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:465
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "Muunnos"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:435
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:482
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "Vain hangul"
+#. 45H2A
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:491
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
+msgid "Check to convert only Hangul. Do not convert Hanja."
+msgstr ""
+
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:451
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:503
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "Vain hanja"
+#. Fi82M
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:512
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
+msgid "Check to convert only Hanja. Do not convert Hangul."
+msgstr ""
+
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:488
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:545
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "Ohita"
+#. 3mrTE
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:554
+msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
+msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
+msgstr ""
+
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:504
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:566
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "Ohita kaikki"
+#. HBgLV
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:573
+msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
+msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
+msgstr ""
+
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:518
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:585
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "Korvaa"
+#. ECMPD
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:592
+msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
+msgid "Replaces the selection with the suggested characters or word according to the format options."
+msgstr ""
+
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:532
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:604
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "Kor_vaa aina"
+#. 9itJD
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:611
+msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
+msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
+msgstr ""
+
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:546
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:623
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "Korvaa _merkeittäin"
+#. F2QEt
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:632
+msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
+msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
+msgstr ""
+
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:562
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:644
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr "Valinnat..."
+#. GVqQg
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
+msgctxt "hangulhanjaconversiondialog|extended_tip|options"
+msgid "Opens the Hangul/Hanja Options dialog."
+msgstr ""
+
+#. omcyJ
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:686
+msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
+msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
+msgstr ""
+
#. XiQXK
#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:8
msgctxt "hangulhanjaeditdictdialog|HangulHanjaEditDictDialog"
msgid "Edit Custom Dictionary"
msgstr "Muokkaa mukautettua sanastoa"
+#. Wnqcm
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:95
+msgctxt "hangulhanjaeditdictdialog|extended_tip|book"
+msgid "Select the user-defined dictionary that you want to edit."
+msgstr "Valitaan muokattava käyttäjän määrittämä sanasto."
+
#. AnsSG
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:111
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:113
msgctxt "hangulhanjaeditdictdialog|label4"
msgid "Book"
msgstr "Kirja"
+#. ttFFj
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:164
+msgctxt "hangulhanjaeditdictdialog|extended_tip|original"
+msgid "Select the entry in the current dictionary that you want to edit. If you want, you can also type a new entry in this box."
+msgstr "Valitaan kohdistetun sanaston muokattava merkintä. Tarvittaessa tähän kenttään voidaan kirjoittaa myös uusi merkintä."
+
+#. GdYKP
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:190
+msgctxt "hangulhanjaeditdictdialog|extended_tip|new"
+msgid "Adds the current replacement definition to the dictionary."
+msgstr "Lisätään kohdistettu korvausmääritelmä sanastoon."
+
+#. myWFD
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:210
+msgctxt "hangulhanjaeditdictdialog|extended_tip|delete"
+msgid "Deletes the selected entry."
+msgstr "Poistetaan valittu merkintä."
+
#. uPgna
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:217
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:234
msgctxt "hangulhanjaeditdictdialog|label2"
msgid "Original"
msgstr "Alkuperäinen"
+#. 8qtRG
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:291
+msgctxt "hangulhanjaeditdictdialog|extended_tip|edit1"
+msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
+msgstr "Kirjoitetaan ehdotettava korvaaja merkinnälle, joka on valittu Alkuperäinen -tekstiruudussa. Korvaavassa sanassa voi olla enintään kahdeksan merkkiä."
+
+#. qFDF8
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:309
+msgctxt "hangulhanjaeditdictdialog|extended_tip|edit2"
+msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
+msgstr "Kirjoitetaan ehdotettava korvaaja merkinnälle, joka on valittu Alkuperäinen -tekstiruudussa. Korvaavassa sanassa voi olla enintään kahdeksan merkkiä."
+
+#. rFF8x
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:327
+msgctxt "hangulhanjaeditdictdialog|extended_tip|edit3"
+msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
+msgstr "Kirjoitetaan ehdotettava korvaaja merkinnälle, joka on valittu Alkuperäinen -tekstiruudussa. Korvaavassa sanassa voi olla enintään kahdeksan merkkiä."
+
+#. HNSTX
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:345
+msgctxt "hangulhanjaeditdictdialog|extended_tip|edit4"
+msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
+msgstr "Kirjoitetaan ehdotettava korvaaja merkinnälle, joka on valittu Alkuperäinen -tekstiruudussa. Korvaavassa sanassa voi olla enintään kahdeksan merkkiä."
+
#. ZiDNN
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:330
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:367
msgctxt "hangulhanjaeditdictdialog|label3"
msgid "Suggestions"
msgstr "Ehdotukset"
@@ -8197,125 +10048,210 @@ msgid "Hangul/Hanja Options"
msgstr "Hangul/hanja-asetukset"
#. TLs2q
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:127
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:124
msgctxt "hangulhanjaoptdialog|new"
msgid "New..."
msgstr "Uusi..."
+#. hNjua
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:131
+msgctxt "hangulhanjaoptdialog|extended_tip|new"
+msgid "Opens the New dictionary dialog box, where you can create a new dictionary."
+msgstr "Avataan Uusi sanasto-valintaikkunan kenttä, johon voidaan luoda uusi sanasto."
+
#. UbGjT
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:141
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:143
msgctxt "hangulhanjaoptdialog|edit"
msgid "Edit..."
msgstr "Muokkaa..."
+#. NKvWY
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:149
+msgctxt "hangulhanjaoptdialog|extended_tip|edit"
+msgid "Opens the Edit Custom Dictionary dialog where you can edit any user-defined dictionary."
+msgstr "Avataan Muokkaa mukautettua sanastoa -valintaikkuna, jossa voidaan muokata kaikkia käyttäjän määrittämiä sanastoja"
+
+#. qML94
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:168
+msgctxt "hangulhanjaoptdialog|extended_tip|delete"
+msgid "Deletes the selected user-defined dictionary."
+msgstr "Poistetaan valittu käyttäjän määrittämä sanasto."
+
+#. v7Bkk
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:233
+msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgstr "Luettelossa on kaikki käyttäjän määrittämät sanastot. Valitaan käytettävän sanaston viereinen valintaruutu. Tyhjennetään valintaruutu niiden sanastojen vierestä, joita ei käytetä."
+
#. DmfuX
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:235
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:252
msgctxt "hangulhanjaoptdialog|label1"
msgid "User-defined Dictionaries"
msgstr "Omat sanastot"
#. DEoRc
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:266
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:283
msgctxt "hangulhanjaoptdialog|ignorepost"
msgid "Ignore post-positional word"
msgstr "Ohita postpositio-sanat"
+#. B4zEG
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:292
+msgctxt "hangulhanjaoptdialog|extended_tip|ignorepost"
+msgid "Ignores positional characters at the end of Korean words when you search a dictionary."
+msgstr "Ohitetaan korean sanojen lopussa olevat asemaa osoittavat merkit sanakirjasta haettaessa."
+
#. EEKAT
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:281
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:303
msgctxt "hangulhanjaoptdialog|showrecentfirst"
msgid "Show recently used entries first"
msgstr "Näytä ensin viimeksi käytetyt merkinnät"
+#. aqATS
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:312
+msgctxt "hangulhanjaoptdialog|extended_tip|showrecentfirst"
+msgid "Shows the replacement suggestion that you selected the last time as the first entry on the list."
+msgstr "Näytetään edellisellä kerralla valittu korvausehdotus luettelon ensimmäisenä."
+
#. MKAyM
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:296
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:323
msgctxt "hangulhanjaoptdialog|autoreplaceunique"
msgid "Replace all unique entries automatically"
msgstr "Korvaa kaikki yksikäsitteiset merkinnät automaattisesti"
+#. HerDJ
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:332
+msgctxt "hangulhanjaoptdialog|extended_tip|autoreplaceunique"
+msgid "Automatically replaces words that only have one suggested word replacement."
+msgstr "Sanat, joilla on vain yksi korvausehdotus, korvautuvat kyselyittä."
+
#. Bdqne
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:317
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:349
msgctxt "hangulhanjaoptdialog|label2"
msgid "Options"
msgstr "Asetukset"
+#. UaXFU
+#: cui/uiconfig/ui/hatchpage.ui:89
+msgctxt "hatchpage|extended_tip|add"
+msgid "Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button."
+msgstr "Lisätään mukautettu viivoitus nykyiseen luetteloon. Määritetään ensin viivoituskuvion ominaisuudet ja sitten napsautetaan tätä painiketta."
+
#. TGiD7
-#: cui/uiconfig/ui/hatchpage.ui:96
+#: cui/uiconfig/ui/hatchpage.ui:101
msgctxt "hatchpage|modify"
msgid "_Modify"
msgstr "Muuta"
+#. 5VuZv
+#: cui/uiconfig/ui/hatchpage.ui:108
+msgctxt "hatchpage|extended_tip|modify"
+msgid "Applies the current hatching properties to the selected hatching pattern. If you want, you can save the pattern under a different name."
+msgstr "Käytetään vallitsevia viivoitusominaisuuksia valittuun viivoituskuvioon. Jos halutaan, kuvion voi tallentaa eri nimellä."
+
#. U8bWc
-#: cui/uiconfig/ui/hatchpage.ui:123
+#: cui/uiconfig/ui/hatchpage.ui:133
msgctxt "hatchpage|label2"
msgid "Hatch"
msgstr "Viivoitus"
#. HNCBu
-#: cui/uiconfig/ui/hatchpage.ui:164
+#: cui/uiconfig/ui/hatchpage.ui:174
msgctxt "hatchpage|distanceft"
msgid "_Spacing:"
msgstr "Väli:"
+#. 5Psyb
+#: cui/uiconfig/ui/hatchpage.ui:192
+msgctxt "hatchpage|extended_tip|distancemtr"
+msgid "Enter the amount of space that you want to have between the hatch lines."
+msgstr "Määritetään viivoituksen välien suuruus."
+
#. spGWy
-#: cui/uiconfig/ui/hatchpage.ui:191
+#: cui/uiconfig/ui/hatchpage.ui:206
msgctxt "hatchpage|angleft"
msgid "A_ngle:"
msgstr "Kulma:"
+#. UBmvt
+#: cui/uiconfig/ui/hatchpage.ui:243
+#, fuzzy
+msgctxt "hatchpage|extended_tip|anglemtr"
+msgid "Enter the rotation angle for the hatch lines, or click a position in the angle grid."
+msgstr "Annetaan viivoituksen kulma suhteessa vaakatasoon tai napsautetaan oheista kulmaritilää."
+
#. sEriJ
-#: cui/uiconfig/ui/hatchpage.ui:244
+#: cui/uiconfig/ui/hatchpage.ui:264
msgctxt "hatchpage|linetypeft"
msgid "_Line type:"
msgstr "Viivatyyppi:"
#. mv3sN
-#: cui/uiconfig/ui/hatchpage.ui:260
+#: cui/uiconfig/ui/hatchpage.ui:280
msgctxt "hatchpage|linetypelb"
msgid "Single"
msgstr "Yksinkertainen"
#. 7DR7B
-#: cui/uiconfig/ui/hatchpage.ui:261
+#: cui/uiconfig/ui/hatchpage.ui:281
msgctxt "hatchpage|linetypelb"
msgid "Crossed"
msgstr "Ristikkäinen"
#. EBDMC
-#: cui/uiconfig/ui/hatchpage.ui:262
+#: cui/uiconfig/ui/hatchpage.ui:282
msgctxt "hatchpage|linetypelb"
msgid "Triple"
msgstr "Kolminkertainen"
+#. ZpygN
+#: cui/uiconfig/ui/hatchpage.ui:286
+msgctxt "hatchpage|extended_tip|linetypelb"
+msgid "Select the type of hatch lines that you want to use."
+msgstr "Valitaan käytettävä viivoitustyyppi."
+
#. VyTto
-#: cui/uiconfig/ui/hatchpage.ui:275
+#: cui/uiconfig/ui/hatchpage.ui:300
msgctxt "hatchpage|linecolorft"
msgid "Line _color:"
msgstr "Viivan väri:"
+#. AwxCA
+#: cui/uiconfig/ui/hatchpage.ui:325
+msgctxt "hatchpage|extended_tip|linecolorlb"
+msgid "Select the color of the hatch lines."
+msgstr "Valitaan viivoituksen viivojen väri."
+
#. 3hgCJ
-#: cui/uiconfig/ui/hatchpage.ui:307
+#: cui/uiconfig/ui/hatchpage.ui:337
msgctxt "hatchpage|backgroundcolor"
msgid "Background Color"
msgstr "Taustaväri"
#. uvmDA
-#: cui/uiconfig/ui/hatchpage.ui:354
+#: cui/uiconfig/ui/hatchpage.ui:384
msgctxt "hatchpage|propfl"
msgid "Options"
msgstr "Asetukset"
#. D8ovo
-#: cui/uiconfig/ui/hatchpage.ui:404
+#: cui/uiconfig/ui/hatchpage.ui:434
msgctxt "hatchpage|previewctl-atkobject"
msgid "Example"
msgstr "Esimerkki"
#. GbfFA
-#: cui/uiconfig/ui/hatchpage.ui:426
+#: cui/uiconfig/ui/hatchpage.ui:456
msgctxt "hatchpage|label1"
msgid "Preview"
msgstr "Esikatselu"
+#. ZeF6M
+#: cui/uiconfig/ui/hatchpage.ui:472
+msgctxt "hatchpage|extended_tip|HatchPage"
+msgid "Set the properties of a hatching pattern, or save a new hatching pattern."
+msgstr ""
+
#. QqjhD
#: cui/uiconfig/ui/hyperlinkdialog.ui:10
msgctxt "hyperlinkdialog|HyperlinkDialog"
@@ -8323,61 +10259,79 @@ msgid "Hyperlink"
msgstr "Hyperlinkki"
#. FN68B
-#: cui/uiconfig/ui/hyperlinkdialog.ui:30
+#: cui/uiconfig/ui/hyperlinkdialog.ui:27
msgctxt "hyperlinkdialog|reset"
msgid "Reset"
msgstr "Palauta"
+#. 3B8Aq
+#: cui/uiconfig/ui/hyperlinkdialog.ui:33
+msgctxt "hyperlinkdialog|extended_tip|reset"
+msgid "Resets the entries in the dialog to their original state."
+msgstr ""
+
#. n9DBf
-#: cui/uiconfig/ui/hyperlinkdialog.ui:43
+#: cui/uiconfig/ui/hyperlinkdialog.ui:45
msgctxt "hyperlinkdialog|apply"
msgid "Apply"
msgstr "Käytä"
+#. ixPEZ
+#: cui/uiconfig/ui/hyperlinkdialog.ui:51
+msgctxt "hyperlinkdialog|extended_tip|apply"
+msgid "Applies the data to your document."
+msgstr ""
+
+#. CS6kG
+#: cui/uiconfig/ui/hyperlinkdialog.ui:86
+msgctxt "hyperlinkdialog|extended_tip|cancel"
+msgid "Closes the dialog without saving."
+msgstr ""
+
#. SBQmF
-#: cui/uiconfig/ui/hyperlinkdialog.ui:156
+#: cui/uiconfig/ui/hyperlinkdialog.ui:168
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLINETTP_HELP"
msgid "This is where you create a hyperlink to a Web page or FTP server connection."
msgstr ""
#. 2H6BD
-#: cui/uiconfig/ui/hyperlinkdialog.ui:170
+#: cui/uiconfig/ui/hyperlinkdialog.ui:182
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLINETTP"
msgid "Internet"
msgstr "Internet"
#. TwuBW
-#: cui/uiconfig/ui/hyperlinkdialog.ui:228
+#: cui/uiconfig/ui/hyperlinkdialog.ui:240
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
msgid "This is where you create a hyperlink to an email address."
msgstr ""
#. nocMA
-#: cui/uiconfig/ui/hyperlinkdialog.ui:242
+#: cui/uiconfig/ui/hyperlinkdialog.ui:254
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLMAILTP"
msgid "Mail"
msgstr "Sähköposti"
#. MXhAV
-#: cui/uiconfig/ui/hyperlinkdialog.ui:301
+#: cui/uiconfig/ui/hyperlinkdialog.ui:313
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCTP_HELP"
msgid "This is where you create a hyperlink to an existing document or a target within a document."
msgstr ""
#. HkUh2
-#: cui/uiconfig/ui/hyperlinkdialog.ui:315
+#: cui/uiconfig/ui/hyperlinkdialog.ui:327
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCTP"
msgid "Document"
msgstr "Asiakirja"
#. xFvuL
-#: cui/uiconfig/ui/hyperlinkdialog.ui:374
+#: cui/uiconfig/ui/hyperlinkdialog.ui:386
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP"
msgid "This is where you create a new document to which the new link points."
msgstr ""
#. ZprBE
-#: cui/uiconfig/ui/hyperlinkdialog.ui:388
+#: cui/uiconfig/ui/hyperlinkdialog.ui:400
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCNTP"
msgid "New Document"
msgstr "Uusi asiakirja"
@@ -8394,222 +10348,408 @@ msgctxt "hyperlinkdocpage|fileopen|tooltip_text"
msgid "Open File"
msgstr "Avaa tiedosto"
+#. mJQ7c
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:68
+msgctxt "hyperlinkdocpage|extended_tip|fileopen"
+msgid "Opens the Open dialog, where you can select a file."
+msgstr ""
+
+#. 9f5SN
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:91
+msgctxt "hyperlinkdocpage|extended_tip|path"
+msgid "Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame."
+msgstr ""
+
#. Ewn6K
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:98
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:108
msgctxt "hyperlinkdocpage|label2"
msgid "Document"
msgstr "Asiakirja"
#. pedja
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:134
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:144
msgctxt "hyperlinkdocpage|target_label"
msgid "Targ_et:"
msgstr "Kohde:"
#. hUini
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:149
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:159
msgctxt "hyperlinkdocpage|url_label"
msgid "URL:"
msgstr "URL-osoite:"
#. zH7Fk
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:163
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:173
msgctxt "hyperlinkdocpage|browse|tooltip_text"
msgid "Target in Document"
msgstr "Kohde asiakirjassa"
+#. wnXzL
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:178
+msgctxt "hyperlinkdocpage|extended_tip|browse"
+msgid "Opens the Target in Document dialog."
+msgstr ""
+
+#. 3ndEf
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:194
+msgctxt "hyperlinkdocpage|extended_tip|target"
+msgid "Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame."
+msgstr ""
+
#. oUByt
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:189
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:209
msgctxt "hyperlinkdocpage|url"
msgid "Test text"
msgstr "Koeteksti"
#. 8Gbv5
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:207
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:227
msgctxt "hyperlinkdocpage|label3"
msgid "Target in Document"
msgstr "Kohde asiakirjassa"
#. VQxYG
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:246
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:266
msgctxt "hyperlinkdocpage|frame_label"
msgid "F_rame:"
msgstr "Kehys:"
#. cFnPM
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:261
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:281
msgctxt "hyperlinkdocpage|indication_label"
msgid "Te_xt:"
msgstr "Teksti:"
#. o2Fic
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:276
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:296
msgctxt "hyperlinkdocpage|name_label"
msgid "N_ame:"
msgstr "Nimi:"
+#. PuhGD
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:313
+msgctxt "hyperlinkdocpage|extended_tip|indication"
+msgid "Specifies the visible text or button caption for the hyperlink."
+msgstr ""
+
+#. RszPA
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:329
+msgctxt "hyperlinkdocpage|extended_tip|name"
+msgid "Enter a name for the hyperlink."
+msgstr "Nimetään hyperlinkki."
+
#. y3amv
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:319
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:349
msgctxt "hyperlinkdocpage|form_label"
msgid "F_orm:"
msgstr "Lomake:"
+#. 6TBzX
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:366
+msgctxt "hyperlinkdocpage|extended_tip|form"
+msgid "Specifies whether the hyperlink is inserted as text or as a button."
+msgstr ""
+
#. sAAC7
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:345
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:380
msgctxt "hyperlinkdocpage|script|tooltip_text"
msgid "Events"
msgstr "Tapahtumat"
+#. EbFym
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:384
+msgctxt "hyperlinkdocpage|extended_tip|script"
+msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
+msgstr ""
+
+#. TXrCH
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:407
+msgctxt "hyperlinkdocpage|extended_tip|frame"
+msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
+msgstr "Kirjoitetaan avattavaan tiedostoon linkitettävän kehyksen nimi tai valitaan esimääritelty kehys luettelosta. Jos kenttä jätetään tyhjäksi, linkitetty tiedosto avataan nykyiseen selainikkunaan."
+
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:385
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:430
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "Muut asetukset"
+#. 789Vi
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:445
+msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
+msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
+msgstr ""
+
#. BpE9F
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:41
msgctxt "hyperlinkinternetpage|linktyp_internet"
msgid "_Web"
msgstr "Web"
+#. wL4we
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:51
+msgctxt "hyperlinkinternetpage|extended_tip|linktyp_internet"
+msgid "Creates an \"http://\" hyperlink."
+msgstr ""
+
#. HybDr
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:57
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:62
msgctxt "hyperlinkinternetpage|linktyp_ftp"
msgid "_FTP"
msgstr "_FTP"
+#. dHmZB
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:73
+msgctxt "hyperlinkinternetpage|extended_tip|linktyp_ftp"
+msgid "Creates an \"FTP://\" hyperlink."
+msgstr ""
+
#. qgyrE
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:83
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:93
msgctxt "hyperlinkinternetpage|target_label"
msgid "_URL:"
msgstr "URL-osoite:"
#. YLtwS
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:98
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:108
msgctxt "hyperlinkinternetpage|login_label"
msgid "_Login name:"
msgstr "Käyttäjätunnus:"
#. GGnn8
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:113
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:123
msgctxt "hyperlinkinternetpage|password_label"
msgid "_Password:"
msgstr "Salasana:"
+#. kVJEB
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:141
+msgctxt "hyperlinkinternetpage|extended_tip|login"
+msgid "Specifies your login name, if you are working with FTP addresses."
+msgstr ""
+
+#. cgWAc
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:158
+msgctxt "hyperlinkinternetpage|extended_tip|password"
+msgid "Specifies your password, if you are working with FTP addresses."
+msgstr ""
+
#. HHhGY
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:149
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:169
msgctxt "hyperlinkinternetpage|anonymous"
msgid "Anonymous _user"
msgstr "Anonyymi käyttäjä"
+#. Ttx68
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:178
+msgctxt "hyperlinkinternetpage|extended_tip|anonymous"
+msgid "Allows you to log in to the FTP address as an anonymous user."
+msgstr ""
+
+#. JwfAC
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:201
+msgctxt "hyperlinkinternetpage|extended_tip|target"
+msgid "Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame."
+msgstr ""
+
#. XhMm4
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:184
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:214
msgctxt "hyperlinkinternetpage|indication_label"
msgid "Te_xt:"
msgstr "Teksti:"
+#. fFLgD
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:231
+msgctxt "hyperlinkinternetpage|extended_tip|indication"
+msgid "Specifies the visible text or button caption for the hyperlink."
+msgstr ""
+
#. ABK2n
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:210
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:245
msgctxt "hyperlinkinternetpage|protocol_label"
msgid "Proto_col:"
msgstr ""
#. MoZP7
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:231
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:266
msgctxt "hyperlinkinternetpage|label2"
msgid "Hyperlink Type"
msgstr "Hyperlinkin tyyppi"
#. x4GDd
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:270
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:305
msgctxt "hyperlinkinternetpage|frame_label"
msgid "F_rame:"
msgstr "Kehys:"
#. wiRZD
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:285
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:320
msgctxt "hyperlinkinternetpage|name_label"
msgid "Na_me:"
msgstr "Nimi:"
+#. ZdkMh
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:337
+msgctxt "hyperlinkinternetpage|extended_tip|name"
+msgid "Enter a name for the hyperlink."
+msgstr "Nimetään hyperlinkki."
+
#. UG2wE
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:317
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:357
msgctxt "hyperlinkinternetpage|form_label"
msgid "F_orm:"
msgstr "Lomake:"
+#. QPMun
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:374
+msgctxt "hyperlinkinternetpage|extended_tip|form"
+msgid "Specifies whether the hyperlink is inserted as text or as a button."
+msgstr ""
+
#. MyGFB
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:343
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:388
msgctxt "hyperlinkinternetpage|script|tooltip_text"
msgid "Events"
msgstr "Tapahtumat"
+#. sYWVn
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:392
+msgctxt "hyperlinkinternetpage|extended_tip|script"
+msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
+msgstr ""
+
+#. C5Hqs
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:415
+msgctxt "hyperlinkinternetpage|extended_tip|frame"
+msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
+msgstr "Kirjoitetaan avattavaan tiedostoon linkitettävän kehyksen nimi tai valitaan esimääritelty kehys luettelosta. Jos kenttä jätetään tyhjäksi, linkitetty tiedosto avataan nykyiseen selainikkunaan."
+
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:383
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:438
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "Muut asetukset"
+#. 8UdTe
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:453
+msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
+msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
+msgstr ""
+
#. GKAsu
#: cui/uiconfig/ui/hyperlinkmailpage.ui:43
msgctxt "hyperlinkmailpage|receiver_label"
msgid "Re_cipient:"
msgstr "Vastaanottaja:"
-#. B5Axh
+#. 3Q6NE
#: cui/uiconfig/ui/hyperlinkmailpage.ui:58
-msgctxt "hyperlinkmailpage|adressbook|tooltip_text"
+msgctxt "hyperlinkmailpage|addressbook|tooltip_text"
msgid "Data Sources..."
-msgstr "Tietolähteet..."
+msgstr ""
+
+#. mZ8Wv
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:63
+msgctxt "hyperlinkmailpage|extended_tip|addressbook"
+msgid "Hides or shows the data source browser."
+msgstr ""
#. NJi4c
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:73
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:78
msgctxt "hyperlinkmailpage|subject_label"
msgid "_Subject:"
msgstr "A_ihe:"
+#. hseLC
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:96
+msgctxt "hyperlinkmailpage|extended_tip|subject"
+msgid "Specifies the subject that is inserted in the subject line of the new message document."
+msgstr ""
+
+#. 8gCor
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:119
+msgctxt "hyperlinkmailpage|extended_tip|receiver"
+msgid "Assigns the specified email address to the hyperlink."
+msgstr ""
+
#. eCvXD
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:133
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:148
msgctxt "hyperlinkmailpage|label2"
msgid "Mail"
msgstr "Sähköposti"
#. Rx7bX
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:172
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:187
msgctxt "hyperlinkmailpage|frame_label"
msgid "F_rame:"
msgstr "Kehys:"
#. E6CWA
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:187
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:202
msgctxt "hyperlinkmailpage|indication_label"
msgid "Te_xt:"
msgstr "Teksti:"
#. BjAaB
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:202
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:217
msgctxt "hyperlinkmailpage|name_label"
msgid "N_ame:"
msgstr "Nimi:"
+#. PJMVD
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:234
+msgctxt "hyperlinkmailpage|extended_tip|indication"
+msgid "Specifies the visible text or button caption for the hyperlink."
+msgstr ""
+
+#. pJbde
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:250
+msgctxt "hyperlinkmailpage|extended_tip|name"
+msgid "Enter a name for the hyperlink."
+msgstr "Nimetään hyperlinkki."
+
#. zkpdN
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:245
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:270
msgctxt "hyperlinkmailpage|form_label"
msgid "F_orm:"
msgstr "Lomake:"
+#. ckEPR
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:287
+msgctxt "hyperlinkmailpage|extended_tip|form"
+msgid "Specifies whether the hyperlink is inserted as text or as a button."
+msgstr ""
+
#. 7wzYs
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:271
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:301
msgctxt "hyperlinkmailpage|script|tooltip_text"
msgid "Events"
msgstr "Tapahtumat"
+#. rukYs
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:305
+msgctxt "hyperlinkmailpage|extended_tip|script"
+msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
+msgstr ""
+
+#. CwHdi
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:328
+msgctxt "hyperlinkmailpage|extended_tip|frame"
+msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
+msgstr "Kirjoitetaan avattavaan tiedostoon linkitettävän kehyksen nimi tai valitaan esimääritelty kehys luettelosta. Jos kenttä jätetään tyhjäksi, linkitetty tiedosto avataan nykyiseen selainikkunaan."
+
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:311
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:351
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "Muut asetukset"
+#. SvyDu
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:366
+msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
+msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
+msgstr ""
+
#. FiqBU
#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:18
msgctxt "hyperlinkmarkdialog|HyperlinkMark"
@@ -8617,95 +10757,173 @@ msgid "Target in Document"
msgstr "Kohde asiakirjassa"
#. JRUcA
-#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:36
+#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:33
msgctxt "hyperlinkmarkdialog|apply"
msgid "_Apply"
msgstr "Käytä"
#. jWKYr
-#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:52
+#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:49
msgctxt "hyperlinkmarkdialog|close"
msgid "_Close"
msgstr "_Sulje"
+#. CLEQK
+#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:56
+msgctxt "hyperlinkmarkdialog|extended_tip|close"
+msgid "Once the hyperlink has been completely entered, click on Close to set the link and leave the dialog."
+msgstr "Kun hyperlinkin syöttäminen on kokonaan valmis, napsautetaan Sulje linkin asettamiseksi ja valintaikkunan sulkemiseksi."
+
#. P5DCe
-#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:121
+#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:122
msgctxt "hyperlinkmarkdialog|TreeListBox-atkobject"
msgid "Mark Tree"
msgstr "Linkkien kohteet puuna"
+#. iBoH5
+#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:123
+msgctxt "hyperlinkmarkdialog|extended_tip|TreeListBox"
+msgid "Specifies the position in the target document where you wish to jump to."
+msgstr "Määritetään se kohdeasiakirjan sijainti, jonne halutaan hypätä."
+
#. tHygQ
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:57
msgctxt "hyperlinknewdocpage|editnow"
msgid "Edit _now"
msgstr "Muokkaa nyt"
+#. DENWb
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:67
+msgctxt "hyperlinknewdocpage|extended_tip|editnow"
+msgid "Specifies that the new document is created and immediately opened for editing."
+msgstr ""
+
#. YAeDk
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:73
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:78
msgctxt "hyperlinknewdocpage|editlater"
msgid "Edit _later"
msgstr "Muokkaa _myöhemmin"
+#. CD5y6
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:89
+msgctxt "hyperlinknewdocpage|extended_tip|editlater"
+msgid "Specifies that the document is created but it is not immediately opened."
+msgstr ""
+
#. DqCc6
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:99
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:109
msgctxt "hyperlinknewdocpage|file_label"
msgid "_File:"
msgstr "_Tiedosto:"
#. PDNz4
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:114
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:124
msgctxt "hyperlinknewdocpage|create|tooltip_text"
msgid "Select Path"
msgstr "Valitse polku"
-#. NKd9R
+#. FPajM
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:129
+msgctxt "hyperlinknewdocpage|extended_tip|create"
+msgid "Opens the Select Path dialog, where you can select a path."
+msgstr ""
+
+#. NKd9R
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:144
msgctxt "hyperlinknewdocpage|types_label"
msgid "File _type:"
msgstr "Tiedoston tyyppi:"
+#. TRstM
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:169
+msgctxt "hyperlinknewdocpage|extended_tip|path"
+msgid "Enter a URL for the file that you want to open when you click the hyperlink."
+msgstr "Annetaan sen tiedoston URL-osoite, joka avataan, kun hyperlinkkiä napsautetaan."
+
+#. Ee4g2
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:209
+msgctxt "hyperlinknewdocpage|extended_tip|types"
+msgid "Specifies the file type for the new document."
+msgstr ""
+
#. 9TYuE
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:212
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:237
msgctxt "hyperlinknewdocpage|label2"
msgid "New Document"
msgstr "Uusi asiakirja"
#. uChAF
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:251
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:276
msgctxt "hyperlinknewdocpage|frame_label"
msgid "F_rame:"
msgstr "Kehys:"
#. NG5VC
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:266
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:291
msgctxt "hyperlinknewdocpage|indication_label"
msgid "Te_xt:"
msgstr "Teksti:"
#. SVEq9
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:281
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:306
msgctxt "hyperlinknewdocpage|name_label"
msgid "N_ame:"
msgstr "Nimi:"
+#. J9DQE
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:323
+msgctxt "hyperlinknewdocpage|extended_tip|indication"
+msgid "Specifies the visible text or button caption for the hyperlink."
+msgstr ""
+
+#. FExJ9
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:339
+msgctxt "hyperlinknewdocpage|extended_tip|name"
+msgid "Enter a name for the hyperlink."
+msgstr "Nimetään hyperlinkki."
+
#. cSknQ
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:324
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:359
msgctxt "hyperlinknewdocpage|form_label"
msgid "F_orm:"
msgstr "Lomake:"
+#. fARTX
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:375
+msgctxt "hyperlinknewdocpage|extended_tip|form"
+msgid "Specifies whether the hyperlink is inserted as text or as a button."
+msgstr ""
+
#. 5xVHb
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:349
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:389
msgctxt "hyperlinknewdocpage|script|tooltip_text"
msgid "Events"
msgstr "Tapahtumat"
+#. MikBD
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:393
+msgctxt "hyperlinknewdocpage|extended_tip|script"
+msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
+msgstr ""
+
+#. rXaNm
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:416
+msgctxt "hyperlinknewdocpage|extended_tip|frame"
+msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
+msgstr "Kirjoitetaan avattavaan tiedostoon linkitettävän kehyksen nimi tai valitaan esimääritelty kehys luettelosta. Jos kenttä jätetään tyhjäksi, linkitetty tiedosto avataan nykyiseen selainikkunaan."
+
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:389
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:439
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "Muut asetukset"
+#. ztAbs
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:454
+msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
+msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
+msgstr ""
+
#. XkDqc
#: cui/uiconfig/ui/hyphenate.ui:18
msgctxt "hyphenate|HyphenateDialog"
@@ -8713,29 +10931,71 @@ msgid "Hyphenation"
msgstr "Tavutus"
#. N4zDD
-#: cui/uiconfig/ui/hyphenate.ui:53
+#: cui/uiconfig/ui/hyphenate.ui:50
msgctxt "hyphenate|hyphall"
msgid "Hyphenate All"
msgstr "Tavuta kaikki"
#. TraEA
-#: cui/uiconfig/ui/hyphenate.ui:103
+#: cui/uiconfig/ui/hyphenate.ui:100
msgctxt "hyphenate|ok"
msgid "Hyphenate"
msgstr "Tavuta"
+#. 843cx
+#: cui/uiconfig/ui/hyphenate.ui:108
+msgctxt "hyphenate|extended_tip|ok"
+msgid "Inserts the hyphen at the indicated position."
+msgstr "Lisätään tavuviiva osoitetulle kohdalle."
+
#. gEGtP
-#: cui/uiconfig/ui/hyphenate.ui:118
+#: cui/uiconfig/ui/hyphenate.ui:120
msgctxt "hyphenate|continue"
msgid "Skip"
msgstr "Ohita"
+#. JqhEE
+#: cui/uiconfig/ui/hyphenate.ui:126
+msgctxt "hyphenate|extended_tip|continue"
+msgid "Ignores the hyphenation suggestion and finds the next word to hyphenate."
+msgstr "Ohitetaan tavutusehdotus ja etsitään seuraava tavutettava sana."
+
+#. zXLRC
+#: cui/uiconfig/ui/hyphenate.ui:145
+msgctxt "hyphenate|extended_tip|delete"
+msgid "Removes the current hyphenation point from the displayed word."
+msgstr "Poistetaan käsiteltävä tavutuskohta esitetystä sanasta."
+
#. dsjvf
-#: cui/uiconfig/ui/hyphenate.ui:153
+#: cui/uiconfig/ui/hyphenate.ui:165
msgctxt "hyphenate|label1"
msgid "Word:"
msgstr "Sana:"
+#. fvcRg
+#: cui/uiconfig/ui/hyphenate.ui:193
+msgctxt "hyphenate|extended_tip|worded"
+msgid "Displays the hyphenation suggestion(s) for the selected word."
+msgstr "Näytetään valitun sanan tavutusehdotukset."
+
+#. HAF8G
+#: cui/uiconfig/ui/hyphenate.ui:212
+msgctxt "hyphenate|extended_tip|left"
+msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed."
+msgstr "Asetetaan tavuviivan paikka. Tämä vaihtoehto on käytettävissä vain, jos useampi kuin yksi tavutusehdotus on esillä."
+
+#. 5gKXt
+#: cui/uiconfig/ui/hyphenate.ui:230
+msgctxt "hyphenate|extended_tip|right"
+msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed."
+msgstr "Asetetaan tavuviivan paikka. Tämä vaihtoehto on käytettävissä vain, jos useampi kuin yksi tavutusehdotus on esillä."
+
+#. 8QHd8
+#: cui/uiconfig/ui/hyphenate.ui:268
+msgctxt "hyphenate|extended_tip|HyphenateDialog"
+msgid "Inserts hyphens in words that are too long to fit at the end of a line."
+msgstr "Lisätään tavuviiva sanoihin, jotka ovat sopimattoman pitkiä rivin loppuun."
+
#. HGCp4
#: cui/uiconfig/ui/iconchangedialog.ui:61
msgctxt "iconchangedialog|label1"
@@ -8753,25 +11013,37 @@ msgid "Change Icon"
msgstr "Vaihda kuvake"
#. qZXP7
-#: cui/uiconfig/ui/iconselectordialog.ui:148
+#: cui/uiconfig/ui/iconselectordialog.ui:145
msgctxt "iconselectordialog|label1"
msgid "_Icons"
msgstr "Kuvakkeet"
#. ZyFG4
-#: cui/uiconfig/ui/iconselectordialog.ui:171
+#: cui/uiconfig/ui/iconselectordialog.ui:168
msgctxt "iconselectordialog|importButton"
msgid "I_mport..."
msgstr "Tuo..."
+#. rAyQo
+#: cui/uiconfig/ui/iconselectordialog.ui:175
+msgctxt "iconselectordialog|extended_tip|importButton"
+msgid "Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME."
+msgstr "Lisätään uusia kuvakkeita kuvakeluetteloon. Näkyviin tulee tiedoston avaamisikkuna, josta valitut kuvakkeet tuodaan %PRODUCTNAME-ohjelmiston sisäiseen kuvakehakemistoon."
+
#. 46d7Z
-#: cui/uiconfig/ui/iconselectordialog.ui:185
+#: cui/uiconfig/ui/iconselectordialog.ui:187
msgctxt "iconselectordialog|deleteButton"
msgid "_Delete..."
msgstr "Poista..."
+#. MEMzu
+#: cui/uiconfig/ui/iconselectordialog.ui:194
+msgctxt "iconselectordialog|extended_tip|deleteButton"
+msgid "Click to remove the selected icon from the list. Only user-defined icons can be removed."
+msgstr "Napsautetaan valitun kuvakkeen poistamiseksi. Vain käyttäjän määrittämät kuvakkeet ovat poistettavissa."
+
#. C4HU9
-#: cui/uiconfig/ui/iconselectordialog.ui:216
+#: cui/uiconfig/ui/iconselectordialog.ui:223
msgctxt "iconselectordialog|noteLabel"
msgid ""
"Note:\n"
@@ -8788,96 +11060,174 @@ msgctxt "insertfloatingframe|InsertFloatingFrameDialog"
msgid "Floating Frame Properties"
msgstr "Irrallisen kehyksen ominaisuudet"
+#. DckNs
+#: cui/uiconfig/ui/insertfloatingframe.ui:105
+msgctxt "insertfloatingframe|extended_tip|edname"
+msgid "Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore (_)."
+msgstr ""
+
+#. dxeqd
+#: cui/uiconfig/ui/insertfloatingframe.ui:125
+msgctxt "insertfloatingframe|extended_tip|edurl"
+msgid "Enter the path and the name of the file that you want to display in the floating frame. You can also click the Browse button and locate the file that you want to display."
+msgstr ""
+
#. 6Zg6E
-#: cui/uiconfig/ui/insertfloatingframe.ui:133
+#: cui/uiconfig/ui/insertfloatingframe.ui:140
msgctxt "insertfloatingframe|label6"
msgid "Name:"
msgstr "Nimi:"
#. QFERc
-#: cui/uiconfig/ui/insertfloatingframe.ui:146
+#: cui/uiconfig/ui/insertfloatingframe.ui:153
msgctxt "insertfloatingframe|label7"
msgid "Contents:"
msgstr "Sisältö:"
#. ExCGU
-#: cui/uiconfig/ui/insertfloatingframe.ui:155
+#: cui/uiconfig/ui/insertfloatingframe.ui:162
msgctxt "insertfloatingframe|buttonbrowse"
msgid "Browse..."
msgstr "Selaa..."
+#. EQDKW
+#: cui/uiconfig/ui/insertfloatingframe.ui:169
+msgctxt "insertfloatingframe|extended_tip|buttonbrowse"
+msgid "Locate the file that you want to display in the selected floating frame, and then click Open."
+msgstr ""
+
#. CFNgz
-#: cui/uiconfig/ui/insertfloatingframe.ui:198
+#: cui/uiconfig/ui/insertfloatingframe.ui:210
msgctxt "insertfloatingframe|scrollbaron"
msgid "On"
msgstr "Käytössä"
+#. qobGp
+#: cui/uiconfig/ui/insertfloatingframe.ui:220
+msgctxt "insertfloatingframe|extended_tip|scrollbaron"
+msgid "Displays the scrollbar for the floating frame."
+msgstr ""
+
#. RTCXH
-#: cui/uiconfig/ui/insertfloatingframe.ui:215
+#: cui/uiconfig/ui/insertfloatingframe.ui:232
msgctxt "insertfloatingframe|scrollbaroff"
msgid "Off"
msgstr "Ei käytössä"
+#. pdYYk
+#: cui/uiconfig/ui/insertfloatingframe.ui:242
+msgctxt "insertfloatingframe|extended_tip|scrollbaroff"
+msgid "Hides the scrollbar for the floating frame."
+msgstr ""
+
#. iucHE
-#: cui/uiconfig/ui/insertfloatingframe.ui:232
+#: cui/uiconfig/ui/insertfloatingframe.ui:254
msgctxt "insertfloatingframe|scrollbarauto"
msgid "Automatic"
msgstr "Automaattinen"
+#. xEruo
+#: cui/uiconfig/ui/insertfloatingframe.ui:264
+msgctxt "insertfloatingframe|extended_tip|scrollbarauto"
+msgid "Mark this option if the currently active floating frame can have a scrollbar when needed."
+msgstr ""
+
#. NTDhm
-#: cui/uiconfig/ui/insertfloatingframe.ui:255
+#: cui/uiconfig/ui/insertfloatingframe.ui:282
msgctxt "insertfloatingframe|label1"
msgid "Scroll Bar"
msgstr "Vierityspalkki"
#. 9DUFs
-#: cui/uiconfig/ui/insertfloatingframe.ui:288
+#: cui/uiconfig/ui/insertfloatingframe.ui:315
msgctxt "insertfloatingframe|borderon"
msgid "On"
msgstr "Käytössä"
+#. wE67j
+#: cui/uiconfig/ui/insertfloatingframe.ui:325
+msgctxt "insertfloatingframe|extended_tip|borderon"
+msgid "Displays the border of the floating frame."
+msgstr ""
+
#. P9vwv
-#: cui/uiconfig/ui/insertfloatingframe.ui:305
+#: cui/uiconfig/ui/insertfloatingframe.ui:337
msgctxt "insertfloatingframe|borderoff"
msgid "Off"
msgstr "Ei käytössä"
+#. hEBTb
+#: cui/uiconfig/ui/insertfloatingframe.ui:347
+msgctxt "insertfloatingframe|extended_tip|borderoff"
+msgid "Hides the border of the floating frame."
+msgstr ""
+
#. xBDSb
-#: cui/uiconfig/ui/insertfloatingframe.ui:331
+#: cui/uiconfig/ui/insertfloatingframe.ui:368
msgctxt "insertfloatingframe|label2"
msgid "Border"
msgstr "Reuna"
#. RAz7e
-#: cui/uiconfig/ui/insertfloatingframe.ui:367
+#: cui/uiconfig/ui/insertfloatingframe.ui:404
msgctxt "insertfloatingframe|widthlabel"
msgid "Width:"
msgstr "Leveys:"
#. DMLy9
-#: cui/uiconfig/ui/insertfloatingframe.ui:380
+#: cui/uiconfig/ui/insertfloatingframe.ui:417
msgctxt "insertfloatingframe|heightlabel"
msgid "Height:"
msgstr "Korkeus:"
+#. ieZRs
+#: cui/uiconfig/ui/insertfloatingframe.ui:434
+msgctxt "insertfloatingframe|extended_tip|width"
+msgid "Enter the amount of horizontal space that you want to leave between the right and the left edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents."
+msgstr ""
+
+#. R35J9
+#: cui/uiconfig/ui/insertfloatingframe.ui:452
+msgctxt "insertfloatingframe|extended_tip|height"
+msgid "Enter the amount of vertical space that you want to leave between the top and bottom edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents."
+msgstr ""
+
#. EEPAq
-#: cui/uiconfig/ui/insertfloatingframe.ui:416
+#: cui/uiconfig/ui/insertfloatingframe.ui:463
msgctxt "insertfloatingframe|defaultwidth"
msgid "Default"
msgstr "Oletus"
+#. NSmeU
+#: cui/uiconfig/ui/insertfloatingframe.ui:472
+msgctxt "insertfloatingframe|extended_tip|defaultwidth"
+msgid "Applies the default horizontal spacing."
+msgstr ""
+
#. dQ8BY
-#: cui/uiconfig/ui/insertfloatingframe.ui:431
+#: cui/uiconfig/ui/insertfloatingframe.ui:483
msgctxt "insertfloatingframe|defaultheight"
msgid "Default"
msgstr "Oletus"
+#. vjLip
+#: cui/uiconfig/ui/insertfloatingframe.ui:492
+msgctxt "insertfloatingframe|extended_tip|defaultheight"
+msgid "Applies the default vertical spacing."
+msgstr ""
+
#. YqkF7
-#: cui/uiconfig/ui/insertfloatingframe.ui:452
+#: cui/uiconfig/ui/insertfloatingframe.ui:509
msgctxt "insertfloatingframe|label3"
msgid "Padding"
msgstr "Täyte"
+#. Ehuh3
+#: cui/uiconfig/ui/insertfloatingframe.ui:549
+msgctxt "insertfloatingframe|extended_tip|InsertFloatingFrameDialog"
+msgid "Changes the properties of the selected floating frame. Floating frames work best when they contain an html document, and when they are inserted in another html document."
+msgstr ""
+
#. DHyVM
#: cui/uiconfig/ui/insertoleobject.ui:16
msgctxt "insertoleobject|InsertOLEObjectDialog"
@@ -8885,47 +11235,59 @@ msgid "Insert OLE Object"
msgstr "Lisää OLE-objekti"
#. APCbM
-#: cui/uiconfig/ui/insertoleobject.ui:103
+#: cui/uiconfig/ui/insertoleobject.ui:100
msgctxt "insertoleobject|createnew"
msgid "Create new"
msgstr "Luo uusi"
#. g7yF2
-#: cui/uiconfig/ui/insertoleobject.ui:120
+#: cui/uiconfig/ui/insertoleobject.ui:117
msgctxt "insertoleobject|createfromfile"
msgid "Create from file"
msgstr "Luo tiedostosta"
#. JcNDd
-#: cui/uiconfig/ui/insertoleobject.ui:200
+#: cui/uiconfig/ui/insertoleobject.ui:197
msgctxt "insertoleobject|label1"
msgid "Object Type"
msgstr "Objektilaji"
#. GYhtz
-#: cui/uiconfig/ui/insertoleobject.ui:246
+#: cui/uiconfig/ui/insertoleobject.ui:243
msgctxt "insertoleobject|urlbtn"
msgid "Search…"
msgstr "Etsi…"
#. PL3Eq
-#: cui/uiconfig/ui/insertoleobject.ui:259
+#: cui/uiconfig/ui/insertoleobject.ui:256
msgctxt "insertoleobject|linktofile"
msgid "Link to file"
msgstr "Linkitä tiedostoon"
+#. FDCFK
+#: cui/uiconfig/ui/insertoleobject.ui:265
+msgctxt "insertoleobject|extended_tip|linktofile"
+msgid "Enable this checkbox to insert the OLE object as a link to the original file. If this checkbox is not enabled, the OLE object will be embedded into your document."
+msgstr "Rastimalla valintaruutu OLE-objekti lisätään linkkinä alkuperäiseen tiedostoon. Jos valintaruutu on tyhjä, OLE-objekti upotetaan asiakirjaan."
+
#. G8yfb
-#: cui/uiconfig/ui/insertoleobject.ui:274
+#: cui/uiconfig/ui/insertoleobject.ui:276
msgctxt "insertoleobject|asicon"
msgid "Display as icon"
msgstr "Näytä kuvakkeena"
#. ry68g
-#: cui/uiconfig/ui/insertoleobject.ui:296
+#: cui/uiconfig/ui/insertoleobject.ui:298
msgctxt "insertoleobject|label2"
msgid "File"
msgstr "Tiedosto"
+#. wdBbV
+#: cui/uiconfig/ui/insertoleobject.ui:331
+msgctxt "insertoleobject|extended_tip|InsertOLEObjectDialog"
+msgid "Inserts an OLE object into the current document. The OLE object is inserted as a link or an embedded object."
+msgstr ""
+
#. BCgnf
#: cui/uiconfig/ui/insertrowcolumn.ui:15
msgctxt "insertrowcolumn|InsertRowColumnDialog"
@@ -8938,26 +11300,44 @@ msgctxt "insertrowcolumn|label3"
msgid "_Number:"
msgstr "Lukumäärä:"
+#. P5PWM
+#: cui/uiconfig/ui/insertrowcolumn.ui:128
+msgctxt "insertrowcolumn|extended_tip|insert_number"
+msgid "Enter the number of columns or rows that you want."
+msgstr ""
+
#. nEwTY
-#: cui/uiconfig/ui/insertrowcolumn.ui:140
+#: cui/uiconfig/ui/insertrowcolumn.ui:145
msgctxt "insertrowcolumn|label1"
msgid "Insert"
msgstr "Lisää"
#. xdCAE
-#: cui/uiconfig/ui/insertrowcolumn.ui:171
+#: cui/uiconfig/ui/insertrowcolumn.ui:176
msgctxt "insertrowcolumn|insert_before"
msgid "_Before"
msgstr "Ennen"
+#. bX93d
+#: cui/uiconfig/ui/insertrowcolumn.ui:186
+msgctxt "insertrowcolumn|extended_tip|insert_before"
+msgid "Adds new columns to the left of the current column, or adds new rows above the current row."
+msgstr ""
+
#. ZmEKX
-#: cui/uiconfig/ui/insertrowcolumn.ui:188
+#: cui/uiconfig/ui/insertrowcolumn.ui:198
msgctxt "insertrowcolumn|insert_after"
msgid "A_fter"
msgstr "Jälkeen"
+#. Rqgws
+#: cui/uiconfig/ui/insertrowcolumn.ui:208
+msgctxt "insertrowcolumn|extended_tip|insert_after"
+msgid "Adds new columns to the right of the current column, or adds new rows below the current row."
+msgstr ""
+
#. mS7YV
-#: cui/uiconfig/ui/insertrowcolumn.ui:211
+#: cui/uiconfig/ui/insertrowcolumn.ui:226
msgctxt "insertrowcolumn|label2"
msgid "Position"
msgstr "Sijainti"
@@ -8974,24 +11354,54 @@ msgctxt "javaclasspathdialog|label1"
msgid "A_ssigned folders and archives"
msgstr "Määritellyt hakemistot ja arkistotiedostot"
+#. ERHh7
+#: cui/uiconfig/ui/javaclasspathdialog.ui:158
+msgctxt "extended_tip|paths"
+msgid "Specifies the location of Java classes or Java class libraries."
+msgstr "Määritetään Java-luokkien tai Java-luokkakirjastojen sijainti."
+
#. 5cgAY
-#: cui/uiconfig/ui/javaclasspathdialog.ui:180
+#: cui/uiconfig/ui/javaclasspathdialog.ui:185
msgctxt "javaclasspathdialog|archive"
msgid "_Add Archive..."
msgstr "Lisää Java-arkistotiedosto..."
+#. xV5SQ
+#: cui/uiconfig/ui/javaclasspathdialog.ui:192
+msgctxt "extended_tip|archive"
+msgid "Select an archive file in jar or zip format and add the file to the class path."
+msgstr "Valitaan jar- tai zip-muotoinen arkistotiedosto ja lisätään tiedosto luokkapolkuun."
+
#. LBBVG
-#: cui/uiconfig/ui/javaclasspathdialog.ui:194
+#: cui/uiconfig/ui/javaclasspathdialog.ui:204
msgctxt "javaclasspathdialog|folder"
msgid "Add _Folder"
msgstr "Lisää hakemisto"
+#. WP9Eo
+#: cui/uiconfig/ui/javaclasspathdialog.ui:211
+msgctxt "extended_tip|folder"
+msgid "Select a folder and add the folder to the class path."
+msgstr "Valitaan kansio ja lisätään se luokkapolkuun."
+
#. YNHm3
-#: cui/uiconfig/ui/javaclasspathdialog.ui:208
+#: cui/uiconfig/ui/javaclasspathdialog.ui:223
msgctxt "javaclasspathdialog|remove"
msgid "_Remove"
msgstr "Poista"
+#. fGAwc
+#: cui/uiconfig/ui/javaclasspathdialog.ui:230
+msgctxt "extended_tip|remove"
+msgid "Select an archive or a folder in the list and click Remove to remove the object from the class path."
+msgstr "Valitaan luettelosta arkistotiedosto tai kansio ja napsautetaan Poista-painiketta kohteen poistamiseksi luokkapolusta."
+
+#. De7GF
+#: cui/uiconfig/ui/javaclasspathdialog.ui:266
+msgctxt "extended_tip|JavaClassPath"
+msgid "Specifies the location of Java classes or Java class libraries."
+msgstr "Määritetään Java-luokkien tai Java-luokkakirjastojen sijainti."
+
#. LU9ad
#: cui/uiconfig/ui/javastartparametersdialog.ui:16
msgctxt "javastartparametersdialog|JavaStartParameters"
@@ -8999,41 +11409,71 @@ msgid "Java Start Parameters"
msgstr "Java-käynnistysparametrit"
#. AkVB2
-#: cui/uiconfig/ui/javastartparametersdialog.ui:107
+#: cui/uiconfig/ui/javastartparametersdialog.ui:104
msgctxt "javastartparametersdialog|label4"
msgid "Java start _parameter"
msgstr "Java-käynnistysparametri"
+#. Btkis
+#: cui/uiconfig/ui/javastartparametersdialog.ui:122
+msgctxt "extended_tip|parameterfield"
+msgid "Enter a start parameter for a JRE as you would on a command line. Click Assign to add the parameter to the list of available start parameters."
+msgstr "Syötetään JRE-käynnistysparametri samalla tavalla kuin komentorivillä. Napsautetaan Määritä-painiketta parametrin lisäämiseksi määriteltyjen parametrien luetteloon."
+
#. bbrtf
-#: cui/uiconfig/ui/javastartparametersdialog.ui:133
+#: cui/uiconfig/ui/javastartparametersdialog.ui:135
msgctxt "javastartparametersdialog|label5"
msgid "Assig_ned start parameters"
msgstr "Määritellyt käynnistysparametrit"
+#. xjKFh
+#: cui/uiconfig/ui/javastartparametersdialog.ui:177
+msgctxt "extended_tip|assignlist"
+msgid "Lists the assigned JRE start parameters. To remove a start parameter, select the parameter, and then click Remove."
+msgstr "Luettelossa on määritellyt JRE-käynnistysparametrit. Parametrin poistamiseksi valitaan parametri ja napsautetaan sitten Poista."
+
#. 87Ysi
-#: cui/uiconfig/ui/javastartparametersdialog.ui:185
+#: cui/uiconfig/ui/javastartparametersdialog.ui:192
msgctxt "javastartparametersdialog|label6"
msgid "For example: -Dmyprop=c:\\\\program files\\\\java"
msgstr "Esimerkiksi: -Dmyprop=c:\\\\program files\\\\java"
#. F3A9L
-#: cui/uiconfig/ui/javastartparametersdialog.ui:195
+#: cui/uiconfig/ui/javastartparametersdialog.ui:202
msgctxt "javastartparametersdialog|assignbtn"
msgid "_Add"
msgstr "Lisää"
+#. 5DJCP
+#: cui/uiconfig/ui/javastartparametersdialog.ui:211
+msgctxt "extended_tip|assignbtn"
+msgid "Adds the current JRE start parameter to the list."
+msgstr "Lisätään käsiteltävä JRE-käynnistysparametri luetteloon."
+
#. sNSWD
-#: cui/uiconfig/ui/javastartparametersdialog.ui:216
+#: cui/uiconfig/ui/javastartparametersdialog.ui:228
msgctxt "javastartparametersdialog|editbtn"
msgid "_Edit"
msgstr "_Muokkaa"
+#. 5FP58
+#: cui/uiconfig/ui/javastartparametersdialog.ui:236
+msgctxt "extended_tip|editbtn"
+msgid "Opens a dialog where the selected JRE start parameter can be edited."
+msgstr ""
+
#. fUGmG
-#: cui/uiconfig/ui/javastartparametersdialog.ui:231
+#: cui/uiconfig/ui/javastartparametersdialog.ui:248
msgctxt "javastartparametersdialog|removebtn"
msgid "_Remove"
msgstr "Poista"
+#. PhsGH
+#: cui/uiconfig/ui/javastartparametersdialog.ui:256
+msgctxt "extended_tip|removebtn"
+msgid "Deletes the selected JRE start parameter."
+msgstr "Poistetaan valittu JRE-käynnistysparametri."
+
#. RdoKs
#: cui/uiconfig/ui/linedialog.ui:8
msgctxt "linedialog|LineDialog"
@@ -9077,31 +11517,37 @@ msgid "Arrow _style:"
msgstr "Nuolityyli:"
#. y6SSb
-#: cui/uiconfig/ui/lineendstabpage.ui:137
+#: cui/uiconfig/ui/lineendstabpage.ui:134
msgctxt "lineendstabpage|FI_TIP"
msgid "Add a selected object to create new arrow styles."
msgstr "Luo uusia nuolityylejä lisäämällä valittu objekti."
#. rgBEv
-#: cui/uiconfig/ui/lineendstabpage.ui:178
+#: cui/uiconfig/ui/lineendstabpage.ui:175
msgctxt "lineendstabpage|BTN_MODIFY"
msgid "_Modify"
msgstr "Muuta"
+#. iQUys
+#: cui/uiconfig/ui/lineendstabpage.ui:196
+msgctxt "lineendstabpage|extended_tip|BTN_DELETE"
+msgid "Deletes the selected element or elements after confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä vahvistuskyselyn jälkeen."
+
#. V4C5Z
-#: cui/uiconfig/ui/lineendstabpage.ui:216
+#: cui/uiconfig/ui/lineendstabpage.ui:218
msgctxt "lineendstabpage|BTN_LOAD|tooltip_text"
msgid "Load arrow styles"
msgstr "Lataa nuolityylit"
#. CUTxx
-#: cui/uiconfig/ui/lineendstabpage.ui:230
+#: cui/uiconfig/ui/lineendstabpage.ui:232
msgctxt "lineendstabpage|BTN_SAVE|tooltip_text"
msgid "Save arrow styles"
msgstr "Tallenna nuolityylit"
#. hEYzS
-#: cui/uiconfig/ui/lineendstabpage.ui:309
+#: cui/uiconfig/ui/lineendstabpage.ui:311
msgctxt "lineendstabpage|label1"
msgid "Organize Arrow Styles"
msgstr "Järjestä nuolityylit"
@@ -9157,25 +11603,31 @@ msgid "Line _style:"
msgstr "Viivatyyli:"
#. MAsFg
-#: cui/uiconfig/ui/linestyletabpage.ui:350
+#: cui/uiconfig/ui/linestyletabpage.ui:347
msgctxt "linestyletabpage|BTN_MODIFY"
msgid "_Modify"
msgstr "Muuta"
+#. wuhfR
+#: cui/uiconfig/ui/linestyletabpage.ui:368
+msgctxt "linestyletabpage|extended_tip|BTN_DELETE"
+msgid "Deletes the selected element or elements after confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä vahvistuskyselyn jälkeen."
+
#. FmGAy
-#: cui/uiconfig/ui/linestyletabpage.ui:388
+#: cui/uiconfig/ui/linestyletabpage.ui:390
msgctxt "linestyletabpage|BTN_LOAD|tooltip_text"
msgid "Load Line Styles"
msgstr "Lataa viivatyylit"
#. JCDCi
-#: cui/uiconfig/ui/linestyletabpage.ui:402
+#: cui/uiconfig/ui/linestyletabpage.ui:404
msgctxt "linestyletabpage|BTN_SAVE|tooltip_text"
msgid "Save Line Styles"
msgstr "Tallenna viivatyylit"
#. VGiHW
-#: cui/uiconfig/ui/linestyletabpage.ui:467
+#: cui/uiconfig/ui/linestyletabpage.ui:469
msgctxt "linestyletabpage|label1"
msgid "Properties"
msgstr "Ominaisuudet"
@@ -9355,31 +11807,31 @@ msgid "Select..."
msgstr "Valitse..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:794
+#: cui/uiconfig/ui/linetabpage.ui:795
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "Leveys:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:818
+#: cui/uiconfig/ui/linetabpage.ui:819
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "Säilytä mittasuhteet"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:836
+#: cui/uiconfig/ui/linetabpage.ui:837
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "Korkeus:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:873
+#: cui/uiconfig/ui/linetabpage.ui:874
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Kuvake"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:915
+#: cui/uiconfig/ui/linetabpage.ui:916
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Esimerkki"
@@ -9390,6 +11842,12 @@ msgctxt "macroassigndialog|MacroAssignDialog"
msgid "Assign Action"
msgstr "Määritä toiminto"
+#. 2UNZB
+#: cui/uiconfig/ui/macroassigndialog.ui:90
+msgctxt "macroassigndialog|extended_tip|MacroAssignDialog"
+msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
+msgstr "Liitetään makro ohjelman tapahtumaan. Liitetty makro käynnistyy joka kerta, kun valittu tapahtuma esiintyy."
+
#. NGu7X
#: cui/uiconfig/ui/macroassignpage.ui:64
msgctxt "macroassignpage|eventft"
@@ -9402,36 +11860,60 @@ msgctxt "macroassignpage|assignft"
msgid "Assigned Action"
msgstr "Määritetty toiminto"
+#. PahfF
+#: cui/uiconfig/ui/macroassignpage.ui:99
+msgctxt "macroassignpage|extended_tip|assignments"
+msgid "The big list box lists the events and the assigned macros. After you selected the location in the Save In list box, select an event in the big list box. Then click Assign Macro."
+msgstr ""
+
#. jfate
-#: cui/uiconfig/ui/macroassignpage.ui:107
+#: cui/uiconfig/ui/macroassignpage.ui:112
msgctxt "macroassignpage|libraryft1"
msgid "Assignments"
msgstr "Liitokset"
#. YG6nV
-#: cui/uiconfig/ui/macroassignpage.ui:140
+#: cui/uiconfig/ui/macroassignpage.ui:145
msgctxt "macroassignpage|assign"
msgid "M_acro..."
msgstr "Makro..."
+#. ECTjc
+#: cui/uiconfig/ui/macroassignpage.ui:152
+msgctxt "macroassignpage|extended_tip|assign"
+msgid "Opens the Macro Selector to assign a macro to the selected event."
+msgstr ""
+
#. nhxq7
-#: cui/uiconfig/ui/macroassignpage.ui:154
+#: cui/uiconfig/ui/macroassignpage.ui:164
msgctxt "macroassignpage|component"
msgid "Com_ponent..."
msgstr "Komponentti..."
#. UNHTV
-#: cui/uiconfig/ui/macroassignpage.ui:168
+#: cui/uiconfig/ui/macroassignpage.ui:178
msgctxt "macroassignpage|delete"
msgid "Remove"
msgstr "Poista"
+#. pieEu
+#: cui/uiconfig/ui/macroassignpage.ui:185
+msgctxt "macroassignpage|extended_tip|delete"
+msgid "Deletes the macro or component assignment for the selected event."
+msgstr ""
+
#. CqT9E
-#: cui/uiconfig/ui/macroassignpage.ui:188
+#: cui/uiconfig/ui/macroassignpage.ui:203
msgctxt "macroassignpage|label1"
msgid "Assign"
msgstr "Määritä"
+#. v49A4
+#: cui/uiconfig/ui/macroassignpage.ui:217
+msgctxt "macroassignpage|extended_tip|MacroAssignPage"
+msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
+msgstr "Liitetään makro ohjelman tapahtumaan. Liitetty makro käynnistyy joka kerta, kun valittu tapahtuma esiintyy."
+
#. RVDTA
#: cui/uiconfig/ui/macroselectordialog.ui:26
msgctxt "macroselectordialog|MacroSelectorDialog"
@@ -9439,305 +11921,395 @@ msgid "Macro Selector"
msgstr "Makron valinta"
#. sgKzf
-#: cui/uiconfig/ui/macroselectordialog.ui:45
+#: cui/uiconfig/ui/macroselectordialog.ui:42
msgctxt "macroselectordialog|add"
msgid "Add"
msgstr "Lisää"
#. fpfnw
-#: cui/uiconfig/ui/macroselectordialog.ui:138
+#: cui/uiconfig/ui/macroselectordialog.ui:135
msgctxt "macroselectordialog|helpmacro"
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr "Valitse kirjasto joka sisältää haluamasi makron. Valitse tämän jälkeen makro 'makron nimi' valinnan alta."
#. nVAE3
-#: cui/uiconfig/ui/macroselectordialog.ui:154
+#: cui/uiconfig/ui/macroselectordialog.ui:151
msgctxt "macroselectordialog|helptoolbar"
msgid "To add a command to a toolbar, select the category and then the command. Then drag the command to the Commands list of the Toolbars tab page in the Customize dialog."
msgstr "Lisätäksesi komennon työkaluriville, valitse ensin luokka ja sitten komento. Voit myös vetää komennon komentoluetteloon Mukauta-ikkunan Valikot-välisivulla."
#. SuCLc
-#: cui/uiconfig/ui/macroselectordialog.ui:240
+#: cui/uiconfig/ui/macroselectordialog.ui:236
msgctxt "macroselectordialog|libraryft"
msgid "Library"
msgstr "Kirjasto"
#. ah4q5
-#: cui/uiconfig/ui/macroselectordialog.ui:255
+#: cui/uiconfig/ui/macroselectordialog.ui:251
msgctxt "macroselectordialog|categoryft"
msgid "Category"
msgstr "Luokka"
#. QvKmS
-#: cui/uiconfig/ui/macroselectordialog.ui:334
+#: cui/uiconfig/ui/macroselectordialog.ui:330
msgctxt "macroselectordialog|macronameft"
msgid "Macro Name"
msgstr "Makron nimi"
#. 2pAF6
-#: cui/uiconfig/ui/macroselectordialog.ui:350
+#: cui/uiconfig/ui/macroselectordialog.ui:346
msgctxt "macroselectordialog|commandsft"
msgid "Commands"
msgstr "Komennot"
#. gsUCh
-#: cui/uiconfig/ui/macroselectordialog.ui:419
+#: cui/uiconfig/ui/macroselectordialog.ui:415
msgctxt "macroselectordialog|label1"
msgid "Description"
msgstr "Kuvaus"
#. YTX8B
-#: cui/uiconfig/ui/menuassignpage.ui:44
+#: cui/uiconfig/ui/menuassignpage.ui:46
msgctxt "menuassignpage|insertseparator"
msgid "Insert Separator"
msgstr "Lisää erotin"
#. RNPyo
-#: cui/uiconfig/ui/menuassignpage.ui:52
+#: cui/uiconfig/ui/menuassignpage.ui:54
msgctxt "menuassignpage|insertsubmenu"
msgid "Insert Submenu"
msgstr "Lisää alivalikko"
#. DXfmq
-#: cui/uiconfig/ui/menuassignpage.ui:102 cui/uiconfig/ui/menuassignpage.ui:174
+#: cui/uiconfig/ui/menuassignpage.ui:104 cui/uiconfig/ui/menuassignpage.ui:176
msgctxt "menuassignpage|gear_add"
msgid "_Add..."
msgstr "_Lisää..."
#. ekuNo
-#: cui/uiconfig/ui/menuassignpage.ui:110 cui/uiconfig/ui/menuassignpage.ui:182
+#: cui/uiconfig/ui/menuassignpage.ui:112 cui/uiconfig/ui/menuassignpage.ui:184
msgctxt "menuassignpage|gear_delete"
msgid "_Delete"
msgstr "_Poista"
#. iRLgG
-#: cui/uiconfig/ui/menuassignpage.ui:118 cui/uiconfig/ui/menuassignpage.ui:190
+#: cui/uiconfig/ui/menuassignpage.ui:120 cui/uiconfig/ui/menuassignpage.ui:192
msgctxt "menuassignpage|gear_rename"
msgid "_Rename..."
msgstr "_Nimeä uudelleen..."
#. rE3BD
-#: cui/uiconfig/ui/menuassignpage.ui:126 cui/uiconfig/ui/menuassignpage.ui:198
+#: cui/uiconfig/ui/menuassignpage.ui:128 cui/uiconfig/ui/menuassignpage.ui:200
msgctxt "menuassignpage|gear_move"
msgid "_Move..."
msgstr "_Siirrä..."
#. iNnSq
-#: cui/uiconfig/ui/menuassignpage.ui:138
+#: cui/uiconfig/ui/menuassignpage.ui:140
msgctxt "menuassignpage|renameItem"
msgid "Rename..."
msgstr "Nimeä uudelleen..."
#. vtxfm
-#: cui/uiconfig/ui/menuassignpage.ui:146
+#: cui/uiconfig/ui/menuassignpage.ui:148
msgctxt "menuassignpage|changeIcon"
msgid "Change Icon..."
msgstr "Vaihda kuvake..."
#. pisMz
-#: cui/uiconfig/ui/menuassignpage.ui:154
+#: cui/uiconfig/ui/menuassignpage.ui:156
msgctxt "menuassignpage|resetIcon"
msgid "Reset Icon"
msgstr "Palauta kuvake"
#. ooFCE
-#: cui/uiconfig/ui/menuassignpage.ui:162
+#: cui/uiconfig/ui/menuassignpage.ui:164
msgctxt "menuassignpage|restoreItem"
msgid "Restore Default Command"
msgstr "Palauta oletuskomento"
#. CkLgx
-#: cui/uiconfig/ui/menuassignpage.ui:212
+#: cui/uiconfig/ui/menuassignpage.ui:214
msgctxt "menuassignpage|gear_iconAndText"
msgid "_Icon and text"
msgstr "_Kuvake ja teksti"
#. G3FuF
-#: cui/uiconfig/ui/menuassignpage.ui:222
+#: cui/uiconfig/ui/menuassignpage.ui:224
msgctxt "menuassignpage|gear_iconOnly"
msgid "Icon _only"
msgstr "_Vain kuvake"
#. DCnZr
-#: cui/uiconfig/ui/menuassignpage.ui:232
+#: cui/uiconfig/ui/menuassignpage.ui:234
msgctxt "menuassignpage|gear_textOnly"
msgid "_Text only"
msgstr "_Vain teksti"
#. vJPYK
-#: cui/uiconfig/ui/menuassignpage.ui:261
+#: cui/uiconfig/ui/menuassignpage.ui:263
msgctxt "menuassignpage|contentslabel"
msgid "_Search"
msgstr "Etsi"
#. 6Vz2j
-#: cui/uiconfig/ui/menuassignpage.ui:278
+#: cui/uiconfig/ui/menuassignpage.ui:280
msgctxt "menuassignpage|desc"
msgid "Description of the currently selected function."
msgstr ""
+#. 8WPmN
+#: cui/uiconfig/ui/menuassignpage.ui:290
+msgctxt "menuassignpage|extended_tip|desc"
+msgid "The text box contains a short description of the selected command."
+msgstr ""
+
#. qiiBX
-#: cui/uiconfig/ui/menuassignpage.ui:300
+#: cui/uiconfig/ui/menuassignpage.ui:307
msgctxt "menuassignpage|label33"
msgid "D_escription"
msgstr "_Kuvaus"
+#. KXCzA
+#: cui/uiconfig/ui/menuassignpage.ui:360
+msgctxt "menuassignpage|extended_tip|functions"
+msgid "Displays the results of the combination of the search string and category of the desired function."
+msgstr ""
+
#. wYjEi
-#: cui/uiconfig/ui/menuassignpage.ui:367
+#: cui/uiconfig/ui/menuassignpage.ui:377
msgctxt "menuassignpage|contentslabel"
msgid "_Available Commands"
msgstr "Saatavilla olevat komennot"
-#. ZrMmi
+#. EY8HF
#: cui/uiconfig/ui/menuassignpage.ui:393
+msgctxt "menuassignpage|extended_tip|commandcategorylist"
+msgid "Select the menu command category in the drop-down list to restrict the search of commands or scroll the list below. Macros and styles commands are in the bottom of the list."
+msgstr ""
+
+#. ZrMmi
+#: cui/uiconfig/ui/menuassignpage.ui:408
msgctxt "menuassignpage|contentslabel"
msgid "Categor_y"
msgstr "L_uokka"
#. trbSd
-#: cui/uiconfig/ui/menuassignpage.ui:407
+#: cui/uiconfig/ui/menuassignpage.ui:422
msgctxt "menuassignpage|searchEntry"
msgid "Type to search"
msgstr "Kirjoita hakeaksesi"
+#. GR5u8
+#: cui/uiconfig/ui/menuassignpage.ui:425
+msgctxt "menuassignpage|extended_tip|searchEntry"
+msgid "Enter a string in the text box to narrow the search of commands."
+msgstr ""
+
+#. 7gtLC
+#: cui/uiconfig/ui/menuassignpage.ui:448
+msgctxt "menuassignpage|extended_tip|savein"
+msgid "Select the location where the menu is to be attached. If attached to a %PRODUCTNAME module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active."
+msgstr ""
+
#. D35vJ
-#: cui/uiconfig/ui/menuassignpage.ui:434
+#: cui/uiconfig/ui/menuassignpage.ui:459
msgctxt "menuassignpage|functionbtn"
msgid "_Function"
msgstr "Toiminto"
+#. 2HL6E
+#: cui/uiconfig/ui/menuassignpage.ui:490
+msgctxt "menuassignpage|extended_tip|toplevellist"
+msgid "Select the menu where the customization is to be applied. The current set of functions is displayed in the box below."
+msgstr ""
+
#. QN5Bd
-#: cui/uiconfig/ui/menuassignpage.ui:481
+#: cui/uiconfig/ui/menuassignpage.ui:511
msgctxt "menuassignpage|menugearbtn"
msgid "Gear Menu"
msgstr "Ratasvalikko"
#. rnmCf
-#: cui/uiconfig/ui/menuassignpage.ui:482
+#: cui/uiconfig/ui/menuassignpage.ui:512
msgctxt "menuassignpage|menugearbtn"
msgid "Contains commands to modify or delete the selected top level menu, and the command to add new top level menus."
msgstr "Sisältää komentoja valitun ylätason valikon muokkaamiseen tai poistamiseen sekä komennon, jolla lisätään uusia ylätason valikkoja."
#. 7PE7X
-#: cui/uiconfig/ui/menuassignpage.ui:503
+#: cui/uiconfig/ui/menuassignpage.ui:533
msgctxt "menuassignpage|toolbargearbtn"
msgid "Gear Menu"
msgstr "Ratasvalikko"
#. L7fQq
-#: cui/uiconfig/ui/menuassignpage.ui:504
+#: cui/uiconfig/ui/menuassignpage.ui:534
msgctxt "menuassignpage|toolbargearbtn"
msgid "Contains commands to modify or delete the selected toolbar, and the command to add new toolbars."
msgstr "Sisältää komentoja valitun työkalurivin muokkaamiseen tai poistamiseen sekä komennon uusien työkalurivien lisäämiseen."
#. w7EFX
-#: cui/uiconfig/ui/menuassignpage.ui:671
+#: cui/uiconfig/ui/menuassignpage.ui:687
msgctxt "menuassignpage|insert"
msgid "_Insert"
msgstr "_Lisää"
#. Q69cQ
-#: cui/uiconfig/ui/menuassignpage.ui:695
+#: cui/uiconfig/ui/menuassignpage.ui:711
msgctxt "menuassignpage|modify"
msgid "_Modify"
msgstr "Muuta"
#. Cwu32
-#: cui/uiconfig/ui/menuassignpage.ui:719
+#: cui/uiconfig/ui/menuassignpage.ui:735
msgctxt "menuassignpage|defaultsbtn"
msgid "_Defaults"
msgstr "Oletusasetukset"
#. taFyJ
-#: cui/uiconfig/ui/menuassignpage.ui:730
+#: cui/uiconfig/ui/menuassignpage.ui:746
msgctxt "menuassignpage|defaultsbtn"
msgid "Resets the selected toolbar, menu, or context menu to its default state."
msgstr "Palauttaa valitun työkalurivin, valikon tai pikavalikon alkuperäiseen tilaansa."
#. B32nz
-#: cui/uiconfig/ui/menuassignpage.ui:764
+#: cui/uiconfig/ui/menuassignpage.ui:780
msgctxt "menuassignpage|add"
msgid "Add item"
msgstr "Lisää kohde"
+#. JrYMp
+#: cui/uiconfig/ui/menuassignpage.ui:790
+msgctxt "menuassignpage|extended_tip|add"
+msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected menu."
+msgstr ""
+
#. iree8
-#: cui/uiconfig/ui/menuassignpage.ui:794
+#: cui/uiconfig/ui/menuassignpage.ui:815
msgctxt "menuassignpage|remove"
msgid "Remove item"
msgstr "Poista kohde"
+#. AsenA
+#: cui/uiconfig/ui/menuassignpage.ui:825
+msgctxt "menuassignpage|extended_tip|remove"
+msgid "Click on the left arrow button to remove the selected command from the current menu."
+msgstr ""
+
#. t7BYP
-#: cui/uiconfig/ui/menuassignpage.ui:831
+#: cui/uiconfig/ui/menuassignpage.ui:857
msgctxt "menuassignpage|moveupbtn"
msgid "Move up"
msgstr "Siirrä ylemmäs"
+#. BH9fq
+#: cui/uiconfig/ui/menuassignpage.ui:861
+msgctxt "menuassignpage|extended_tip|up"
+msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands."
+msgstr ""
+
#. S6K2N
-#: cui/uiconfig/ui/menuassignpage.ui:844
+#: cui/uiconfig/ui/menuassignpage.ui:875
msgctxt "menuassignpage|movedownbtn"
msgid "Move down"
msgstr "Siirrä alemmas"
+#. RCKEK
+#: cui/uiconfig/ui/menuassignpage.ui:879
+msgctxt "menuassignpage|extended_tip|down"
+msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands."
+msgstr ""
+
#. fto8m
-#: cui/uiconfig/ui/menuassignpage.ui:863
+#: cui/uiconfig/ui/menuassignpage.ui:899
msgctxt "menuassignpage|scopelabel"
msgid "S_cope"
msgstr "Rajaus"
#. SLinm
-#: cui/uiconfig/ui/menuassignpage.ui:876
+#: cui/uiconfig/ui/menuassignpage.ui:912
msgctxt "menuassignpage|targetlabel"
msgid "_Target"
msgstr "Kohde"
#. cZEBZ
-#: cui/uiconfig/ui/menuassignpage.ui:889
+#: cui/uiconfig/ui/menuassignpage.ui:925
msgctxt "menuassignpage|functionlabel"
msgid "Assi_gned Commands"
msgstr ""
#. AZQ8V
-#: cui/uiconfig/ui/menuassignpage.ui:902
+#: cui/uiconfig/ui/menuassignpage.ui:938
msgctxt "menuassignpage|customizelabel"
msgid "_Customize"
msgstr "Mukauta"
+#. yFQHn
+#: cui/uiconfig/ui/menuassignpage.ui:997
+msgctxt "menuassignpage|extended_tip|MenuAssignPage"
+msgid "Lets you customize %PRODUCTNAME menus for all modules."
+msgstr ""
+
#. Mcir5
#: cui/uiconfig/ui/mosaicdialog.ui:21
msgctxt "mosaicdialog|MosaicDialog"
msgid "Mosaic"
msgstr "Mosaiikki"
+#. aW8Fh
+#: cui/uiconfig/ui/mosaicdialog.ui:160
+msgctxt "mosaicdialog|extended_tip|width"
+msgid "Defines the width of the individual tiles."
+msgstr "Määritetään yksittäisten värilohkojen leveys."
+
#. yVvs9
-#: cui/uiconfig/ui/mosaicdialog.ui:171
+#: cui/uiconfig/ui/mosaicdialog.ui:173
msgctxt "mosaicdialog|label2"
msgid "_Width:"
msgstr "Leveys:"
#. TsqoC
-#: cui/uiconfig/ui/mosaicdialog.ui:196
+#: cui/uiconfig/ui/mosaicdialog.ui:198
msgctxt "mosaicdialog|height"
msgid "2"
msgstr "2"
+#. zq4c3
+#: cui/uiconfig/ui/mosaicdialog.ui:203
+msgctxt "mosaicdialog|extended_tip|height"
+msgid "Defines the height of the individual tiles."
+msgstr "Määritetään yksittäisten värilohkojen korkeus."
+
#. Ca8nA
-#: cui/uiconfig/ui/mosaicdialog.ui:209
+#: cui/uiconfig/ui/mosaicdialog.ui:216
msgctxt "mosaicdialog|label3"
msgid "_Height:"
msgstr "Korkeus:"
#. HPBw2
-#: cui/uiconfig/ui/mosaicdialog.ui:227
+#: cui/uiconfig/ui/mosaicdialog.ui:234
msgctxt "mosaicdialog|edges"
msgid "E_nhance edges"
msgstr "Korosta reunoja"
+#. mEUiS
+#: cui/uiconfig/ui/mosaicdialog.ui:243
+msgctxt "mosaicdialog|extended_tip|edges"
+msgid "Enhances, or sharpens, the edges of the object."
+msgstr "Korostetaan tai terävöitetään kohteiden reunoja."
+
#. LKQEa
-#: cui/uiconfig/ui/mosaicdialog.ui:254
+#: cui/uiconfig/ui/mosaicdialog.ui:266
msgctxt "mosaicdialog|label1"
msgid "Parameters"
msgstr "Parametrit"
+#. LGB8f
+#: cui/uiconfig/ui/mosaicdialog.ui:291
+msgctxt "mosaicdialog|extended_tip|MosaicDialog"
+msgid "Joins small groups of pixels into rectangular areas of the same color."
+msgstr ""
+
#. NcNCG
#: cui/uiconfig/ui/movemenu.ui:26
msgctxt "movemenu|MoveMenuDialog"
@@ -9745,49 +12317,91 @@ msgid "New Menu"
msgstr "Uusi valikko"
#. kJERC
-#: cui/uiconfig/ui/movemenu.ui:113
+#: cui/uiconfig/ui/movemenu.ui:110
msgctxt "movemenu|menunameft"
msgid "Menu name:"
msgstr "Valikon nimi:"
+#. Dzrz4
+#: cui/uiconfig/ui/movemenu.ui:129
+msgctxt "movemenu|extended_tip|menuname"
+msgid "Enter a name for the menu. To specify a letter in the name as an accelerator key, enter a tilde (~) before the letter."
+msgstr "Nimetään valikko. Pikanäppäimen määräämiseksi kirjoitetaan tilde (~) kirjaimen eteen."
+
#. YV2LE
-#: cui/uiconfig/ui/movemenu.ui:156
+#: cui/uiconfig/ui/movemenu.ui:158
msgctxt "movemenu|label1"
msgid "Menu _position:"
msgstr "Valikon sijainti:"
#. HZFF5
-#: cui/uiconfig/ui/movemenu.ui:229
+#: cui/uiconfig/ui/movemenu.ui:231
msgctxt "movemenu|up-atkobject"
msgid "Up"
msgstr "Ylöspäin"
#. nRLog
-#: cui/uiconfig/ui/movemenu.ui:248
+#: cui/uiconfig/ui/movemenu.ui:250
msgctxt "movemenu|down-atkobject"
msgid "Down"
msgstr "Alaspäin"
+#. xFV7x
+#: cui/uiconfig/ui/movemenu.ui:300
+msgctxt "movemenu|extended_tip|MoveMenuDialog"
+msgid "Moves the selected menu entry up one position or down one position in the menu when you click an arrow button."
+msgstr "Siirretään valittua valikkoriviä ylös- tai alaspäin yhden sijan verran valikossa, kun nuolipainiketta napsautetaan."
+
#. qoE4K
#: cui/uiconfig/ui/multipathdialog.ui:22
msgctxt "multipathdialog|MultiPathDialog"
msgid "Select Paths"
msgstr "Valitse polut"
+#. xFCHr
+#: cui/uiconfig/ui/multipathdialog.ui:45
+msgctxt "multipathdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. LCieM
+#: cui/uiconfig/ui/multipathdialog.ui:64
+msgctxt "multipathdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. yfGYp
-#: cui/uiconfig/ui/multipathdialog.ui:123
+#: cui/uiconfig/ui/multipathdialog.ui:130
msgctxt "multipathdialog|add"
msgid "_Add..."
msgstr "Lisää..."
+#. yfofV
+#: cui/uiconfig/ui/multipathdialog.ui:137
+msgctxt "cui/ui/multipathdialog/add"
+msgid "Opens the Select Path dialog to select another folder or the Open dialog to select another file."
+msgstr ""
+
+#. e3JxQ
+#: cui/uiconfig/ui/multipathdialog.ui:156
+msgctxt "multipathdialog|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
#. b9DFN
-#: cui/uiconfig/ui/multipathdialog.ui:200
+#: cui/uiconfig/ui/multipathdialog.ui:201
msgctxt "multipathdialog|pathlist"
msgid "Path list"
msgstr "Polkuluettelo"
+#. EPpjr
+#: cui/uiconfig/ui/multipathdialog.ui:221
+msgctxt "cui/ui/multipathdialog/paths"
+msgid "Contains a list of the paths that have already been added. Mark the default path for new files."
+msgstr ""
+
#. AsnM3
-#: cui/uiconfig/ui/multipathdialog.ui:231
+#: cui/uiconfig/ui/multipathdialog.ui:246
msgctxt "multipathdialog|label1"
msgid "Mark the Default Path for New Files"
msgstr "Merkitse uusien tiedostojen oletuspolku"
@@ -9870,108 +12484,210 @@ msgctxt "newtoolbardialog|label2"
msgid "_Save in:"
msgstr "Tallenna kohteeseen:"
+#. BGmuQ
+#: cui/uiconfig/ui/numberingformatpage.ui:88
+msgctxt "numberingformatpage|extended_tip|formatted"
+msgid "Displays the number format code for the selected format. You can also enter a custom format."
+msgstr ""
+
#. 5ATKM
-#: cui/uiconfig/ui/numberingformatpage.ui:97
+#: cui/uiconfig/ui/numberingformatpage.ui:102
msgctxt "numberingformatpage|add|tooltip_text"
msgid "Add"
msgstr "Lisää"
+#. 29z6z
+#: cui/uiconfig/ui/numberingformatpage.ui:107
+msgctxt "numberingformatpage|extended_tip|add"
+msgid "Adds the number format code that you entered to the user-defined category."
+msgstr "Lisätään kirjoitettu lukumuotoilukoodi käyttäjän määrittämä -luokkaan."
+
#. Sjx7f
-#: cui/uiconfig/ui/numberingformatpage.ui:111
+#: cui/uiconfig/ui/numberingformatpage.ui:121
msgctxt "numberingformatpage|edit|tooltip_text"
msgid "Edit Comment"
msgstr "Muokkaa huomautusta"
+#. DGYGu
+#: cui/uiconfig/ui/numberingformatpage.ui:126
+msgctxt "numberingformatpage|extended_tip|edit"
+msgid "Enter a comment for the selected number format, and then click outside this box."
+msgstr "Kirjoitetaan kommentti valitulle lukumuotoilulle ja sitten napsautetaan jossain muussa kentässä."
+
#. YidmA
-#: cui/uiconfig/ui/numberingformatpage.ui:125
+#: cui/uiconfig/ui/numberingformatpage.ui:140
msgctxt "numberingformatpage|delete|tooltip_text"
msgid "Remove"
msgstr "Poista"
+#. gyLL4
+#: cui/uiconfig/ui/numberingformatpage.ui:145
+msgctxt "numberingformatpage|extended_tip|delete"
+msgid "Deletes the selected number format."
+msgstr "Poistetaan valittu muotoilu."
+
#. BFF82
-#: cui/uiconfig/ui/numberingformatpage.ui:150
+#: cui/uiconfig/ui/numberingformatpage.ui:170
msgctxt "numberingformatpage|commented|tooltip_text"
msgid "Comment"
msgstr ""
-#. uz2qX
-#: cui/uiconfig/ui/numberingformatpage.ui:166
+#. EF7pt
+#: cui/uiconfig/ui/numberingformatpage.ui:173
+msgctxt "numberingformatpage|extended_tip|commented"
+msgid "Adds a comment to the selected number format."
+msgstr "Lisätään kommentti valittuun lukumuotoon."
+
+#. XNdu6
+#: cui/uiconfig/ui/numberingformatpage.ui:191
msgctxt "numberingformatpage|formatf"
-msgid "_Format code"
-msgstr "_Muotoilukoodi"
+msgid "_Format Code"
+msgstr ""
-#. jQQZk
-#: cui/uiconfig/ui/numberingformatpage.ui:257
-msgctxt "numberingformatpage|denominatorft"
-msgid "Den_ominator places:"
-msgstr "Numeroita nimittäjässä:"
+#. 5GA9p
+#: cui/uiconfig/ui/numberingformatpage.ui:237
+msgctxt "numberingformatpage|extended_tip|decimalsed"
+msgid "Enter the number of decimal places that you want to display."
+msgstr "Syötetään luvun esitettävien desimaalien määrä."
+
+#. VnduH
+#: cui/uiconfig/ui/numberingformatpage.ui:254
+msgctxt "numberingformatpage|extended_tip|denominatored"
+msgid "With fraction format, enter the number of places for the denominator that you want to display."
+msgstr ""
+
+#. zG6sE
+#: cui/uiconfig/ui/numberingformatpage.ui:277
+msgctxt "numberingformatpage|extended_tip|leadzerosed"
+msgid "Enter the maximum number of zeroes to display in front of the decimal point."
+msgstr "Syötetään desimaalipilkun edessä näytettävien nollien enimmäismäärä."
#. ZiPyf
-#: cui/uiconfig/ui/numberingformatpage.ui:272
+#: cui/uiconfig/ui/numberingformatpage.ui:298
msgctxt "numberingformatpage|decimalsft"
msgid "_Decimal places:"
msgstr "Desimaaleja:"
+#. jQQZk
+#: cui/uiconfig/ui/numberingformatpage.ui:312
+msgctxt "numberingformatpage|denominatorft"
+msgid "Den_ominator places:"
+msgstr "Numeroita nimittäjässä:"
+
#. EXEbk
-#: cui/uiconfig/ui/numberingformatpage.ui:293
+#: cui/uiconfig/ui/numberingformatpage.ui:333
msgctxt "numberingformatpage|leadzerosft"
msgid "Leading _zeroes:"
msgstr "Etunollia:"
#. BRPVs
-#: cui/uiconfig/ui/numberingformatpage.ui:305
+#: cui/uiconfig/ui/numberingformatpage.ui:345
msgctxt "numberingformatpage|negnumred"
msgid "_Negative numbers red"
msgstr "Negatiiviset luvut _punaisina"
+#. 8SFwc
+#: cui/uiconfig/ui/numberingformatpage.ui:354
+msgctxt "numberingformatpage|extended_tip|negnumred"
+msgid "Changes the font color of negative numbers to red."
+msgstr ""
+
#. 9DhkC
-#: cui/uiconfig/ui/numberingformatpage.ui:327
+#: cui/uiconfig/ui/numberingformatpage.ui:372
msgctxt "numberingformatpage|engineering"
msgid "_Engineering notation"
msgstr "Tekninen notaatio"
+#. Fg7BD
+#: cui/uiconfig/ui/numberingformatpage.ui:380
+msgctxt "numberingformatpage|extended_tip|engineering"
+msgid "With scientific format, Engineering notation ensures that exponent is a multiple of 3."
+msgstr ""
+
#. rrDFo
-#: cui/uiconfig/ui/numberingformatpage.ui:342
+#: cui/uiconfig/ui/numberingformatpage.ui:392
msgctxt "numberingformatpage|thousands"
msgid "_Thousands separator"
msgstr "_Tuhaterotin"
+#. XRqXQ
+#: cui/uiconfig/ui/numberingformatpage.ui:401
+msgctxt "numberingformatpage|extended_tip|thousands"
+msgid "Inserts a separator between thousands. The type of separator that is used depends on your language settings."
+msgstr "Tuhansien väliin tulee erotinmerkki. Merkin tyyppi on kieliasetuksista riippuvainen."
+
#. rsmBU
-#: cui/uiconfig/ui/numberingformatpage.ui:370
+#: cui/uiconfig/ui/numberingformatpage.ui:425
msgctxt "numberingformatpage|optionsft"
msgid "Options"
msgstr "Asetukset"
+#. qv95K
+#: cui/uiconfig/ui/numberingformatpage.ui:490
+msgctxt "numberingformatpage|extended_tip|categorylb"
+msgid "Select a category from the list, and then select a formatting style in the Format box."
+msgstr ""
+
#. NTAb6
-#: cui/uiconfig/ui/numberingformatpage.ui:443
+#: cui/uiconfig/ui/numberingformatpage.ui:503
msgctxt "numberingformatpage|categoryft"
msgid "C_ategory"
msgstr "Luokka"
#. zCSmH
-#: cui/uiconfig/ui/numberingformatpage.ui:487
+#: cui/uiconfig/ui/numberingformatpage.ui:547
msgctxt "numberingformatpage|liststore2"
msgid "Automatically"
msgstr "Päivitä automaattisesti"
+#. gPTsF
+#: cui/uiconfig/ui/numberingformatpage.ui:551
+msgctxt "numberingformatpage|extended_tip|currencylb"
+msgid "Select a currency, and then scroll to the top of the Format list to view the formatting options for the currency."
+msgstr "Valitaan maan valuutta ja sitten vieritetään Muotoilu-luettelon yläreunaan, jotta nähdään valuutan muotoiluvaihtoehdot."
+
+#. TBLU5
+#: cui/uiconfig/ui/numberingformatpage.ui:592
+msgctxt "numberingformatpage|extended_tip|formatlb"
+msgid "Select how you want the contents of the selected field to be displayed."
+msgstr ""
+
#. Wxkzd
-#: cui/uiconfig/ui/numberingformatpage.ui:541
+#: cui/uiconfig/ui/numberingformatpage.ui:611
msgctxt "numberingformatpage|formatft"
msgid "Fo_rmat"
msgstr "Muotoilu"
+#. h3kCx
+#: cui/uiconfig/ui/numberingformatpage.ui:651
+msgctxt "numberingformatpage|extended_tip|languagelb"
+msgid "Specifies the language setting for the selected field."
+msgstr ""
+
#. hx9FX
-#: cui/uiconfig/ui/numberingformatpage.ui:587
+#: cui/uiconfig/ui/numberingformatpage.ui:662
msgctxt "numberingformatpage|sourceformat"
msgid "So_urce format"
msgstr "Lähdemuoto"
+#. Pugh9
+#: cui/uiconfig/ui/numberingformatpage.ui:671
+msgctxt "numberingformatpage|extended_tip|sourceformat"
+msgid "Uses the same number format as the cells containing the data for the chart."
+msgstr "Käytetään samaa lukumuotoa kuin kaavion arvosoluissa."
+
#. iCX4U
-#: cui/uiconfig/ui/numberingformatpage.ui:634
+#: cui/uiconfig/ui/numberingformatpage.ui:714
msgctxt "numberingformatpage|languageft"
msgid "_Language"
msgstr "_Kieli"
+#. cmmFq
+#: cui/uiconfig/ui/numberingformatpage.ui:736
+msgctxt "numberingformatpage|extended_tip|NumberingFormatPage"
+msgid "Specify the formatting options for the selected cell(s)."
+msgstr ""
+
#. XxX2T
#: cui/uiconfig/ui/numberingoptionspage.ui:42
msgctxt "numberingoptionspage|fromfile"
@@ -9984,188 +12700,284 @@ msgctxt "numberingoptionspage|gallery"
msgid "Gallery"
msgstr "Galleria"
+#. KJC7w
+#: cui/uiconfig/ui/numberingoptionspage.ui:116
+msgctxt "numberingoptionspage|extended_tip|levellb"
+msgid "Select the level(s) that you want to define the formatting options for."
+msgstr "Valitaan tasot, joille muotoiluasetuksia aiotaan käyttää."
+
#. iHsAJ
-#: cui/uiconfig/ui/numberingoptionspage.ui:124
+#: cui/uiconfig/ui/numberingoptionspage.ui:129
msgctxt "numberingoptionspage|label1"
msgid "Level"
msgstr "Taso"
#. AxmSa
-#: cui/uiconfig/ui/numberingoptionspage.ui:171
+#: cui/uiconfig/ui/numberingoptionspage.ui:176
msgctxt "numberingoptionspage|label4"
msgid "Number:"
msgstr "Luku:"
+#. CJfZf
+#: cui/uiconfig/ui/numberingoptionspage.ui:192
+msgctxt "numberingoptionspage|extended_tip|charstyle"
+msgid "Select the Character Style that you want to use in the numbered list."
+msgstr ""
+
+#. UaFF9
+#: cui/uiconfig/ui/numberingoptionspage.ui:210
+msgctxt "numberingoptionspage|extended_tip|sublevels"
+msgid "Enter the number of previous levels to include in the numbering style. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering style, the numbering scheme for the current level becomes: \"A.1\"."
+msgstr "Annetaan numerointityyliin sisällytettävien ylempien tasojen lukumäärä. Esimerkiksi, jos annetaan luku \"2\" ja edellinen taso käyttää \"A, B, C...\" -numerointityyliä, kohdistetun tason numerointikaavaksi tulee: \"A.1\"."
+
+#. ST2Co
+#: cui/uiconfig/ui/numberingoptionspage.ui:227
+msgctxt "numberingoptionspage|extended_tip|startat"
+msgid "Enter a new starting number for the current level."
+msgstr "Annetaan uusi aloitusnumero nykyiselle tasolle."
+
#. xWX3x
-#: cui/uiconfig/ui/numberingoptionspage.ui:220
+#: cui/uiconfig/ui/numberingoptionspage.ui:240
msgctxt "numberingoptionspage|startatft"
msgid "Start at:"
msgstr "Aloitus:"
+#. QxbQe
+#: cui/uiconfig/ui/numberingoptionspage.ui:256
+msgctxt "numberingoptionspage|extended_tip|numfmtlb"
+msgid "Select a numbering style for the selected levels."
+msgstr "Valitaan numerointityyli, jota käytetään valituilla tasoilla."
+
#. EDSiA
-#: cui/uiconfig/ui/numberingoptionspage.ui:244
+#: cui/uiconfig/ui/numberingoptionspage.ui:269
msgctxt "numberingoptionspage|bitmapft"
msgid "Graphics:"
msgstr "Kuvat:"
#. Hooqo
-#: cui/uiconfig/ui/numberingoptionspage.ui:258
+#: cui/uiconfig/ui/numberingoptionspage.ui:283
msgctxt "numberingoptionspage|widthft"
msgid "Width:"
msgstr "Leveys:"
+#. EetAa
+#: cui/uiconfig/ui/numberingoptionspage.ui:302
+msgctxt "numberingoptionspage|extended_tip|widthmf"
+msgid "Enter a width for the graphic."
+msgstr "Syötetään kuvan leveys."
+
#. PBvy6
-#: cui/uiconfig/ui/numberingoptionspage.ui:285
+#: cui/uiconfig/ui/numberingoptionspage.ui:315
msgctxt "numberingoptionspage|heightft"
msgid "Height:"
msgstr "Korkeus:"
+#. prqMN
+#: cui/uiconfig/ui/numberingoptionspage.ui:335
+msgctxt "numberingoptionspage|extended_tip|heightmf"
+msgid "Enter a height for the graphic."
+msgstr "Syötetään kuvan korkeus."
+
#. bRHQn
-#: cui/uiconfig/ui/numberingoptionspage.ui:311
+#: cui/uiconfig/ui/numberingoptionspage.ui:346
msgctxt "numberingoptionspage|keepratio"
msgid "Keep ratio"
msgstr "Säilytä mittasuhteet"
+#. aeFQE
+#: cui/uiconfig/ui/numberingoptionspage.ui:355
+msgctxt "numberingoptionspage|extended_tip|keepratio"
+msgid "Maintains the size proportions of the graphic."
+msgstr "Merkinnällä määrätään kuvan suhteet säilytettäviksi."
+
#. 7Wuu8
-#: cui/uiconfig/ui/numberingoptionspage.ui:328
+#: cui/uiconfig/ui/numberingoptionspage.ui:368
msgctxt "numberingoptionspage|orientft"
msgid "Alignment:"
msgstr "Tasaus:"
#. BJjDU
-#: cui/uiconfig/ui/numberingoptionspage.ui:344
+#: cui/uiconfig/ui/numberingoptionspage.ui:384
msgctxt "numberingoptionspage|orientlb"
msgid "Top of baseline"
msgstr "Perusviivan yläreuna"
#. YgzFa
-#: cui/uiconfig/ui/numberingoptionspage.ui:345
+#: cui/uiconfig/ui/numberingoptionspage.ui:385
msgctxt "numberingoptionspage|orientlb"
msgid "Center of baseline"
msgstr "Perusviivan keskipiste"
#. rRWyY
-#: cui/uiconfig/ui/numberingoptionspage.ui:346
+#: cui/uiconfig/ui/numberingoptionspage.ui:386
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of baseline"
msgstr "Perusviivan alareuna"
#. GRqAC
-#: cui/uiconfig/ui/numberingoptionspage.ui:347
+#: cui/uiconfig/ui/numberingoptionspage.ui:387
msgctxt "numberingoptionspage|orientlb"
msgid "Top of character"
msgstr "Merkin yläreuna"
#. 5z7jX
-#: cui/uiconfig/ui/numberingoptionspage.ui:348
+#: cui/uiconfig/ui/numberingoptionspage.ui:388
msgctxt "numberingoptionspage|orientlb"
msgid "Center of character"
msgstr "Merkin keskikohta"
#. MsKwk
-#: cui/uiconfig/ui/numberingoptionspage.ui:349
+#: cui/uiconfig/ui/numberingoptionspage.ui:389
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of character"
msgstr "Merkin alareuna"
#. JJEdP
-#: cui/uiconfig/ui/numberingoptionspage.ui:350
+#: cui/uiconfig/ui/numberingoptionspage.ui:390
msgctxt "numberingoptionspage|orientlb"
msgid "Top of line"
msgstr "Rivin yläreuna"
#. UoEug
-#: cui/uiconfig/ui/numberingoptionspage.ui:351
+#: cui/uiconfig/ui/numberingoptionspage.ui:391
msgctxt "numberingoptionspage|orientlb"
msgid "Center of line"
msgstr "Viivan keskikohta"
#. 7dPkC
-#: cui/uiconfig/ui/numberingoptionspage.ui:352
+#: cui/uiconfig/ui/numberingoptionspage.ui:392
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of line"
msgstr "Rivin alareuna"
+#. Quwne
+#: cui/uiconfig/ui/numberingoptionspage.ui:396
+msgctxt "numberingoptionspage|extended_tip|orientlb"
+msgid "Select the alignment option for the graphic."
+msgstr "Valitaan kuvan kohdistusasetus."
+
#. CoAAt
-#: cui/uiconfig/ui/numberingoptionspage.ui:362
+#: cui/uiconfig/ui/numberingoptionspage.ui:407
msgctxt "numberingoptionspage|bitmap"
msgid "Select..."
msgstr "Valitse..."
+#. Eqa4C
+#: cui/uiconfig/ui/numberingoptionspage.ui:419
+msgctxt "numberingoptionspage|extended_tip|bitmap"
+msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
+msgstr "Valitaan luetelmamerkkinä käytettävä kuva tai paikallistetaan kuvan tiedosto."
+
+#. NCamZ
+#: cui/uiconfig/ui/numberingoptionspage.ui:441
+msgctxt "numberingoptionspage|extended_tip|color"
+msgid "Select a color for the current numbering style."
+msgstr "Valitaan nykyisen numerointityylin väri."
+
+#. hJgCL
+#: cui/uiconfig/ui/numberingoptionspage.ui:458
+msgctxt "numberingoptionspage|extended_tip|relsize"
+msgid "Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph."
+msgstr "Annetaan määrä, jolla luetelmamerkin kokoa muutetaan suhteessa kohdistetun kappaleen fontin korkeuteen."
+
#. M4aPS
-#: cui/uiconfig/ui/numberingoptionspage.ui:408
+#: cui/uiconfig/ui/numberingoptionspage.ui:469
msgctxt "numberingoptionspage|bullet"
msgid "Select..."
msgstr "Valitse..."
+#. vfKmd
+#: cui/uiconfig/ui/numberingoptionspage.ui:475
+msgctxt "numberingoptionspage|extended_tip|bullet"
+msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
+msgstr "Valitaan luetelmamerkkinä käytettävä kuva tai paikallistetaan kuvan tiedosto."
+
#. RJa39
-#: cui/uiconfig/ui/numberingoptionspage.ui:427
+#: cui/uiconfig/ui/numberingoptionspage.ui:493
msgctxt "numberingoptionspage|prefixft"
msgid "Before:"
msgstr "Ennen:"
#. EzDC5
-#: cui/uiconfig/ui/numberingoptionspage.ui:448
+#: cui/uiconfig/ui/numberingoptionspage.ui:514
msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Erotin"
+#. AEaYR
+#: cui/uiconfig/ui/numberingoptionspage.ui:531
+msgctxt "numberingoptionspage|extended_tip|suffix"
+msgid "Enter a character or the text to display behind the number in the list. If you want to create a numbered list that uses the style \"1.)\", enter \".)\" in this box."
+msgstr "Annetaan merkki tai teksti, joka esiintyy numeron jäljessä luettelossa. Jos halutaan luoda numeroitu luettelo, joka käyttää tyyliä \"1.)\", syötetään \".)\" tähän ruutuun."
+
+#. wVrAN
+#: cui/uiconfig/ui/numberingoptionspage.ui:547
+msgctxt "numberingoptionspage|extended_tip|prefix"
+msgid "Enter a character or the text to display in front of the number in the list."
+msgstr "Annetaan merkki tai teksti, joka esiintyy numeron edessä luettelossa."
+
#. FLJWG
-#: cui/uiconfig/ui/numberingoptionspage.ui:484
+#: cui/uiconfig/ui/numberingoptionspage.ui:560
msgctxt "numberingoptionspage|suffixft"
msgid "After:"
msgstr "Jälkeen:"
#. TZVTJ
-#: cui/uiconfig/ui/numberingoptionspage.ui:498
+#: cui/uiconfig/ui/numberingoptionspage.ui:574
msgctxt "numberingoptionspage|sublevelsft"
msgid "Show sublevels:"
msgstr "Näytä alatasot:"
#. FaDZX
-#: cui/uiconfig/ui/numberingoptionspage.ui:513
+#: cui/uiconfig/ui/numberingoptionspage.ui:589
msgctxt "numberingoptionspage|bulletft"
msgid "Character:"
msgstr "Merkki:"
#. 6jTGa
-#: cui/uiconfig/ui/numberingoptionspage.ui:527
+#: cui/uiconfig/ui/numberingoptionspage.ui:603
msgctxt "numberingoptionspage|relsizeft"
msgid "_Relative size:"
msgstr "_Suhteellinen koko:"
#. 6r484
-#: cui/uiconfig/ui/numberingoptionspage.ui:541
+#: cui/uiconfig/ui/numberingoptionspage.ui:617
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
msgstr "Väri:"
#. ksG2M
-#: cui/uiconfig/ui/numberingoptionspage.ui:555
+#: cui/uiconfig/ui/numberingoptionspage.ui:631
msgctxt "numberingoptionspage|charstyleft"
msgid "Character style:"
msgstr "Merkkityyli:"
#. S9jNu
-#: cui/uiconfig/ui/numberingoptionspage.ui:592
+#: cui/uiconfig/ui/numberingoptionspage.ui:668
msgctxt "numberingoptionspage|label2"
msgid "Numbering"
msgstr "Numerointi"
#. kcgWM
-#: cui/uiconfig/ui/numberingoptionspage.ui:619
+#: cui/uiconfig/ui/numberingoptionspage.ui:695
msgctxt "numberingoptionspage|allsame"
msgid "_Consecutive numbering"
msgstr "_Jatkuva numerointi"
+#. 48AhR
+#: cui/uiconfig/ui/numberingoptionspage.ui:705
+msgctxt "numberingoptionspage|extended_tip|allsame"
+msgid "Increases the numbering by one as you go down each level in the list hierarchy."
+msgstr "Lisätään numerointia yhdellä mentäessä kultakin hierarkiatasoilta alemmalle tasolle."
+
#. 9VSpp
-#: cui/uiconfig/ui/numberingoptionspage.ui:635
+#: cui/uiconfig/ui/numberingoptionspage.ui:716
msgctxt "numberingoptionspage|label3"
msgid "All Levels"
msgstr "Kaikki tasot"
#. DJptx
-#: cui/uiconfig/ui/numberingoptionspage.ui:696
+#: cui/uiconfig/ui/numberingoptionspage.ui:777
msgctxt "numberingoptionspage|previewlabel"
msgid "Preview"
msgstr "Esikatselu"
@@ -10194,50 +13006,98 @@ msgctxt "numberingpositionpage|indentat"
msgid "Indent at:"
msgstr "Sisennys:"
+#. PEgTA
+#: cui/uiconfig/ui/numberingpositionpage.ui:149
+msgctxt "numberingpositionpage|extended_tip|indentatmf"
+msgid "Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line."
+msgstr "Asetetaan vasemman marginaalin ja kaikkien ensimmäistä riviä seuraavien numeroidun kappaleen rivien välinen etäisyys."
+
#. FW9wv
-#: cui/uiconfig/ui/numberingpositionpage.ui:157
+#: cui/uiconfig/ui/numberingpositionpage.ui:162
msgctxt "numberingpositionpage|at"
msgid "Tab stop at:"
msgstr "Sarkainkohta:"
+#. DvSCa
+#: cui/uiconfig/ui/numberingpositionpage.ui:181
+msgctxt "numberingpositionpage|extended_tip|atmf"
+msgid "If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position."
+msgstr "Jos numerointia seuraamaan valittiin sarkainkohta, ei-negatiivinen luku voidaan antaa sarkainkohdan sijainniksi."
+
+#. dA4DF
+#: cui/uiconfig/ui/numberingpositionpage.ui:199
+msgctxt "numberingpositionpage|extended_tip|alignedatmf"
+msgid "Enter the distance from the left page margin at which the numbering symbol will be aligned."
+msgstr "Annetaan etäisyys vasemmasta marginaalista, jolle numerointisymboli kohdistetaan."
+
#. tsTNP
-#: cui/uiconfig/ui/numberingpositionpage.ui:198
+#: cui/uiconfig/ui/numberingpositionpage.ui:213
msgctxt "numberingpositionpage|liststore2"
msgid "Tab stop"
msgstr "Sarkainkohta"
#. 3EFaG
-#: cui/uiconfig/ui/numberingpositionpage.ui:199
+#: cui/uiconfig/ui/numberingpositionpage.ui:214
msgctxt "numberingpositionpage|liststore2"
msgid "Space"
msgstr "Väli"
#. GviqT
-#: cui/uiconfig/ui/numberingpositionpage.ui:200
+#: cui/uiconfig/ui/numberingpositionpage.ui:215
msgctxt "numberingpositionpage|liststore2"
msgid "Nothing"
msgstr "Ei mitään"
+#. UWJoe
+#: cui/uiconfig/ui/numberingpositionpage.ui:219
+msgctxt "numberingpositionpage|extended_tip|numfollowedbylb"
+msgid "Enter the distance from the left page margin at which the numbering symbol will be aligned."
+msgstr "Annetaan etäisyys vasemmasta marginaalista, jolle numerointisymboli kohdistetaan."
+
#. fXRT2
-#: cui/uiconfig/ui/numberingpositionpage.ui:212
+#: cui/uiconfig/ui/numberingpositionpage.ui:232
msgctxt "numberingpositionpage|indent"
msgid "Indent:"
msgstr "Sisennä:"
+#. DEBG2
+#: cui/uiconfig/ui/numberingpositionpage.ui:251
+msgctxt "numberingpositionpage|extended_tip|indentmf"
+msgid "Enter the amount of space to leave between the left page margin (or the left edge of the text object) and the left edge of the numbering area. If the current paragraph style uses an indent, the amount you enter here is added to the indent."
+msgstr ""
+
#. YCZDg
-#: cui/uiconfig/ui/numberingpositionpage.ui:237
+#: cui/uiconfig/ui/numberingpositionpage.ui:262
msgctxt "numberingpositionpage|relative"
msgid "Relati_ve"
msgstr "_Suhteellinen"
+#. CCTdA
+#: cui/uiconfig/ui/numberingpositionpage.ui:272
+msgctxt "numberingpositionpage|extended_tip|relative"
+msgid "Indents the current level relative to the previous level in the list hierarchy."
+msgstr ""
+
#. bt7Fj
-#: cui/uiconfig/ui/numberingpositionpage.ui:256
+#: cui/uiconfig/ui/numberingpositionpage.ui:286
msgctxt "numberingpositionpage|numberingwidth"
msgid "Width of numbering:"
msgstr "Numeroinnin leveys:"
+#. V6FF5
+#: cui/uiconfig/ui/numberingpositionpage.ui:305
+msgctxt "numberingpositionpage|extended_tip|numberingwidthmf"
+msgid "Enter the width of the numbering area. The numbering symbol can be left, center or right in this area."
+msgstr ""
+
+#. zuD8v
+#: cui/uiconfig/ui/numberingpositionpage.ui:323
+msgctxt "numberingpositionpage|extended_tip|numdistmf"
+msgid "The alignment of the numbering symbol is adjusted to get the desired minimum space. If it is not possible because the numbering area is not wide enough, then the start of the text is adjusted."
+msgstr ""
+
#. EJUm3
-#: cui/uiconfig/ui/numberingpositionpage.ui:296
+#: cui/uiconfig/ui/numberingpositionpage.ui:336
msgctxt "numberingpositionpage|numdist"
msgid ""
"Minimum space between\n"
@@ -10247,49 +13107,73 @@ msgstr ""
"välillä vähintään:"
#. 8FbxK
-#: cui/uiconfig/ui/numberingpositionpage.ui:312
+#: cui/uiconfig/ui/numberingpositionpage.ui:352
msgctxt "numberingpositionpage|numalign"
msgid "N_umbering alignment:"
msgstr "Numeroinnin tasaus:"
#. Bu2uC
-#: cui/uiconfig/ui/numberingpositionpage.ui:327
+#: cui/uiconfig/ui/numberingpositionpage.ui:367
msgctxt "numberingpositionpage|liststore1"
msgid "Left"
msgstr "Vasen"
#. FzFuR
-#: cui/uiconfig/ui/numberingpositionpage.ui:328
+#: cui/uiconfig/ui/numberingpositionpage.ui:368
msgctxt "numberingpositionpage|liststore1"
msgid "Centered"
msgstr "Keskitetty"
#. BF5Nt
-#: cui/uiconfig/ui/numberingpositionpage.ui:329
+#: cui/uiconfig/ui/numberingpositionpage.ui:369
msgctxt "numberingpositionpage|liststore1"
msgid "Right"
msgstr "Oikea"
+#. 2cBQp
+#: cui/uiconfig/ui/numberingpositionpage.ui:373
+msgctxt "numberingpositionpage|extended_tip|numalignlb"
+msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
+msgstr "Asetetaan numerointisymboleiden kohdistus. Valitaan \"Vasen\", kun numerointisymboli tasataan alkamaan välittömästi \"Tasattu etäisyydelle\" -sijainnista. Valitaan \"Oikea\", kun symboli tasataan päättymään \"Tasattu etäisyydelle\" -sijaintiin. Valitaan \"Keskitetty \", kun symboli keskitetään \"Tasattu etäisyydelle\" -sijaintiin nähden."
+
+#. mLBFy
+#: cui/uiconfig/ui/numberingpositionpage.ui:388
+msgctxt "numberingpositionpage|extended_tip|num2alignlb"
+msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
+msgstr "Asetetaan numerointisymboleiden kohdistus. Valitaan \"Vasen\", kun numerointisymboli tasataan alkamaan välittömästi \"Tasattu etäisyydelle\" -sijainnista. Valitaan \"Oikea\", kun symboli tasataan päättymään \"Tasattu etäisyydelle\" -sijaintiin. Valitaan \"Keskitetty \", kun symboli keskitetään \"Tasattu etäisyydelle\" -sijaintiin nähden."
+
#. 6DLtp
-#: cui/uiconfig/ui/numberingpositionpage.ui:355
+#: cui/uiconfig/ui/numberingpositionpage.ui:405
msgctxt "numberingpositionpage|label10"
msgid "Position and Spacing"
msgstr "Sijainti ja välit"
#. x2AGL
-#: cui/uiconfig/ui/numberingpositionpage.ui:389
+#: cui/uiconfig/ui/numberingpositionpage.ui:439
msgctxt "numberingpositionpage|standard"
msgid "Default"
msgstr "Oletus"
+#. 4phf2
+#: cui/uiconfig/ui/numberingpositionpage.ui:446
+msgctxt "numberingpositionpage|extended_tip|standard"
+msgid "Resets the indent and the spacing values to the default values."
+msgstr "Palautetaan sisennys- ja välistysarvot oletusarvoikseen."
+
#. eLFGG
-#: cui/uiconfig/ui/numberingpositionpage.ui:439
+#: cui/uiconfig/ui/numberingpositionpage.ui:494
msgctxt "numberingpositionpage|previewframe"
msgid "Preview"
msgstr "Esikatselu"
+#. oBArM
+#: cui/uiconfig/ui/numberingpositionpage.ui:555
+msgctxt "numberingpositionpage|extended_tip|levellb"
+msgid "Select the level(s) that you want to modify."
+msgstr ""
+
#. jRE6s
-#: cui/uiconfig/ui/numberingpositionpage.ui:508
+#: cui/uiconfig/ui/numberingpositionpage.ui:568
msgctxt "numberingpositionpage|1"
msgid "Level"
msgstr "Taso"
@@ -10306,6 +13190,12 @@ msgctxt "objectnamedialog|object_name_label"
msgid "_Name:"
msgstr "Nimi:"
+#. uFBRJ
+#: cui/uiconfig/ui/objectnamedialog.ui:128
+msgctxt "objectnamedialog|extended_tip|ObjectNameDialog"
+msgid "Enter a name for the selected object. The name will be visible in the Navigator."
+msgstr ""
+
#. 4TRWw
#: cui/uiconfig/ui/objecttitledescdialog.ui:15
msgctxt "objecttitledescdialog|ObjectTitleDescDialog"
@@ -10318,260 +13208,464 @@ msgctxt "objecttitledescdialog|object_title_label"
msgid "_Title:"
msgstr "Otsikko:"
+#. mMZoM
+#: cui/uiconfig/ui/objecttitledescdialog.ui:111
+msgctxt "objecttitledescdialog|extended_tip|object_title_entry"
+msgid "Enter a title text. This short name is visible as an alternative tag in HTML format. Accessibility tools can read this text."
+msgstr "Kirjoita otsikkoteksti. Tämä lyhyt nimi näkyy vaihtoehtoisena muotoilukoodina HTML-tiedostomuodossa. Saavutettavuustyökalut voivat lukea tätä tekstiä."
+
#. kDbQ9
-#: cui/uiconfig/ui/objecttitledescdialog.ui:120
+#: cui/uiconfig/ui/objecttitledescdialog.ui:125
msgctxt "objecttitledescdialog|desc_label"
msgid "_Description:"
msgstr "Kuvaus:"
+#. vT3u9
+#: cui/uiconfig/ui/objecttitledescdialog.ui:148
+msgctxt "objecttitledescdialog|extended_tip|desc_entry"
+msgid "Enter a description text. The long description text can be entered to describe a complex object or group of objects to users with screen reader software. The description is visible as an alternative tag for accessibility tools."
+msgstr "Kirjoitetaan kuvailuteksti. Monimutkaisille objekteille tai ryhmäobjekteille voidaan antaa pitkä kuvaus näytönlukuohjelman käyttäjiä varten. Kuvaus näkyy vaihtoehtoisena muotoilukoodina saavutettavuustyökaluille."
+
+#. 8BCe3
+#: cui/uiconfig/ui/objecttitledescdialog.ui:179
+msgctxt "objecttitledescdialog|extended_tip|ObjectTitleDescDialog"
+msgid "Assigns a title and a description to the selected object. These are accessible for accessibility tools and as alternative tags when you export the document."
+msgstr "Annetaan valitulle objektille otsikko ja kuvaus. Nämä näkyvät saavutettavuustyökaluille ja vaihtoehtoisina muotoilukoodeina asiakirjaa vietäessä."
+
#. s8E7z
#: cui/uiconfig/ui/optaccessibilitypage.ui:31
msgctxt "optaccessibilitypage|acctool"
msgid "Support _assistive technology tools (program restart required)"
msgstr "Tuki _apuvälineteknologisille työkaluille (ohjelma täytyy käynnistää uudestaan)"
+#. DYfLF
+#: cui/uiconfig/ui/optaccessibilitypage.ui:40
+msgctxt "extended_tip|acctool"
+msgid "Allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices. The Java Runtime Environment must be installed on your computer before you can enable assistive support."
+msgstr "Valinta sallii apuvälineiden käytön, kuten ulkoiset ruudunlukijat, pistekirjoituslaitteet tai puheentunnistavat syöttölaitteet. Javan ajonaikainen ympäristö (JRE) pitää olla asennettuna, jotta apuvälineiden tuki toimisi."
+
#. EZqPM
-#: cui/uiconfig/ui/optaccessibilitypage.ui:47
+#: cui/uiconfig/ui/optaccessibilitypage.ui:52
msgctxt "optaccessibilitypage|textselinreadonly"
msgid "Use te_xt selection cursor in read-only text documents"
msgstr "Käytä kohdistinta _tekstin valintaan kirjoitussuojatuissa asiakirjoissa"
+#. KWSKn
+#: cui/uiconfig/ui/optaccessibilitypage.ui:61
+msgctxt "extended_tip|textselinreadonly"
+msgid "Displays cursor in read-only documents."
+msgstr "Merkinnällä määrätään, että kohdistin näkyy kirjoitussuojatuissa asiakirjoissa."
+
#. APEfF
-#: cui/uiconfig/ui/optaccessibilitypage.ui:63
+#: cui/uiconfig/ui/optaccessibilitypage.ui:73
msgctxt "optaccessibilitypage|animatedgraphics"
msgid "Allow animated _images"
msgstr "Salli animoidut kuvat"
+#. vvmf3
+#: cui/uiconfig/ui/optaccessibilitypage.ui:82
+msgctxt "extended_tip|animatedgraphics"
+msgid "Previews animated graphics, such as GIF images, in %PRODUCTNAME."
+msgstr "%PRODUCTNAME näyttää esikatselussa liikkuvia kuvia, kuten GIF-animaatioita."
+
#. 3Q66x
-#: cui/uiconfig/ui/optaccessibilitypage.ui:79
+#: cui/uiconfig/ui/optaccessibilitypage.ui:94
msgctxt "optaccessibilitypage|animatedtext"
msgid "Allow animated _text"
msgstr "Salli animoitu _teksti"
+#. dcCgH
+#: cui/uiconfig/ui/optaccessibilitypage.ui:103
+msgctxt "extended_tip|animatedtext"
+msgid "Previews animated text, such as blinking and scrolling, in %PRODUCTNAME."
+msgstr "%PRODUCTNAME näyttää esikatselussa muuttuvia, kuten vilkkuvia tai vieriviä tekstejä."
+
#. 2A83C
-#: cui/uiconfig/ui/optaccessibilitypage.ui:101
+#: cui/uiconfig/ui/optaccessibilitypage.ui:121
msgctxt "optaccessibilitypage|label1"
msgid "Miscellaneous Options"
msgstr "Sekalaiset valinnat"
#. pLAWF
-#: cui/uiconfig/ui/optaccessibilitypage.ui:134
+#: cui/uiconfig/ui/optaccessibilitypage.ui:154
msgctxt "optaccessibilitypage|autodetecthc"
msgid "Automatically _detect high contrast mode of operating system"
msgstr "_Havaitse käyttöjärjestelmän korkean kontrastin tila automaattisesti"
+#. S8FrL
+#: cui/uiconfig/ui/optaccessibilitypage.ui:163
+msgctxt "extended_tip|autodetecthc"
+msgid "Switches %PRODUCTNAME into high contrast mode when the system background color is very dark."
+msgstr "Vaihdetaan %PRODUCTNAME korkean kontrastin tilaan, kun järjestelmän taustaväri on hyvin tumma."
+
#. Sc8Cq
-#: cui/uiconfig/ui/optaccessibilitypage.ui:150
+#: cui/uiconfig/ui/optaccessibilitypage.ui:175
msgctxt "optaccessibilitypage|autofontcolor"
msgid "Use automatic font _color for screen display"
msgstr "Käytä näytöllä automaattista fontin _väriä"
+#. DP3mg
+#: cui/uiconfig/ui/optaccessibilitypage.ui:184
+msgctxt "extended_tip|autofontcolor"
+msgid "Displays fonts in %PRODUCTNAME using the system color settings. This option only affects the screen display."
+msgstr "%PRODUCTNAME näyttää fontit järjestelmän väriasetuksilla. Asetus vaikuttaa vain näyttölaitteella."
+
#. n24Cd
-#: cui/uiconfig/ui/optaccessibilitypage.ui:166
+#: cui/uiconfig/ui/optaccessibilitypage.ui:196
msgctxt "optaccessibilitypage|systempagepreviewcolor"
msgid "_Use system colors for page previews"
msgstr "Käytä esikatselussa _järjestelmän värejä"
+#. DRkNv
+#: cui/uiconfig/ui/optaccessibilitypage.ui:205
+msgctxt "extended_tip|systempagepreviewcolor"
+msgid "Applies the high contrast settings of the operating system to page previews."
+msgstr "Sivun esikatselussa käytetään järjestelmän suuren kontrastin asetuksia."
+
#. hGpaw
-#: cui/uiconfig/ui/optaccessibilitypage.ui:188
+#: cui/uiconfig/ui/optaccessibilitypage.ui:223
msgctxt "optaccessibilitypage|label2"
msgid "Options for High Contrast Appearance"
msgstr "Korkean kontrastin ulkoasun asetukset"
+#. yuSqB
+#: cui/uiconfig/ui/optaccessibilitypage.ui:238
+msgctxt "extended_tip|OptAccessibilityPage"
+msgid "Sets options that make %PRODUCTNAME programs more accessible for users with reduced sight, limited dexterity or other disabilities."
+msgstr "Tehdään asetuksia, jotka tekevät %PRODUCTNAME-ohjelmat helppokäyttöisemmiksi käyttäjille, joilla on vähentynyt näkökyky, toimintaesteisyys tai muita vammoja."
+
#. kishx
-#: cui/uiconfig/ui/optadvancedpage.ui:55
+#: cui/uiconfig/ui/optadvancedpage.ui:61
msgctxt "optadvancedpage|javaenabled"
msgid "_Use a Java runtime environment"
msgstr "_Käytä Java-ajoympäristöä"
+#. xBxzA
+#: cui/uiconfig/ui/optadvancedpage.ui:70
+msgctxt "extended_tip|javaenabled"
+msgid "Allows you to run Java applications in %PRODUCTNAME."
+msgstr "Sallitaan Java-sovellusten suorittaminen %PRODUCTNAMEssa."
+
#. DFVFw
-#: cui/uiconfig/ui/optadvancedpage.ui:89
+#: cui/uiconfig/ui/optadvancedpage.ui:101
msgctxt "optadvancedpage|label2"
msgid "_Java runtime environments (JRE) already installed:"
msgstr "Asennetut _Java-ajoympäristöt (JRE):"
#. mBYfC
-#: cui/uiconfig/ui/optadvancedpage.ui:114
+#: cui/uiconfig/ui/optadvancedpage.ui:126
msgctxt "optadvancedpage|add"
msgid "_Add..."
msgstr "Lisää..."
+#. kbEGR
+#: cui/uiconfig/ui/optadvancedpage.ui:133
+msgctxt "extended_tip|add"
+msgid "Add a path to the root folder of a JRE on your computer."
+msgstr "Lisätään polku JRE:n juurihakemistoon tietokoneella."
+
#. YtgBL
-#: cui/uiconfig/ui/optadvancedpage.ui:128
+#: cui/uiconfig/ui/optadvancedpage.ui:145
msgctxt "optadvancedpage|parameters"
msgid "_Parameters..."
msgstr "_Parametrit..."
+#. DJxvJ
+#: cui/uiconfig/ui/optadvancedpage.ui:152
+msgctxt "extended_tip|parameters"
+msgid "Opens the Java Start Parameters dialog."
+msgstr "Avataan Java-käynnistysparametrit -valintaikkuna."
+
#. dhf5G
-#: cui/uiconfig/ui/optadvancedpage.ui:142
+#: cui/uiconfig/ui/optadvancedpage.ui:164
msgctxt "optadvancedpage|classpath"
msgid "_Class Path..."
msgstr "_Luokkapolku..."
+#. qDrtT
+#: cui/uiconfig/ui/optadvancedpage.ui:171
+msgctxt "extended_tip|classpath"
+msgid "Opens the Class Path dialog."
+msgstr "Avataan Luokkapolku-valintaikkuna."
+
#. MxHGu
-#: cui/uiconfig/ui/optadvancedpage.ui:207
+#: cui/uiconfig/ui/optadvancedpage.ui:243
msgctxt "optadvancedpage|vendor"
msgid "Vendor"
msgstr "Toimittaja"
#. e6xHG
-#: cui/uiconfig/ui/optadvancedpage.ui:220
+#: cui/uiconfig/ui/optadvancedpage.ui:256
msgctxt "optadvancedpage|version"
msgid "Version"
msgstr "Versio"
+#. kwgDj
+#: cui/uiconfig/ui/optadvancedpage.ui:267
+msgctxt "extended_tip|javas"
+msgid "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart %PRODUCTNAME to use your changed setting."
+msgstr "Valitaan käytettävä JRE. Joissakin järjestelmissä on odotettava minuutin verran, että luettelo tulee valmiiksi. Joissakin järjestelmissä %PRODUCTNAME on käynnistettävä uudestaan, jotta asetukset tulevat voimaan."
+
#. erNBk
-#: cui/uiconfig/ui/optadvancedpage.ui:254
+#: cui/uiconfig/ui/optadvancedpage.ui:295
msgctxt "optadvancedpage|javapath"
msgid "Location: "
msgstr "Sijainti: "
#. GkBzK
-#: cui/uiconfig/ui/optadvancedpage.ui:271
+#: cui/uiconfig/ui/optadvancedpage.ui:312
msgctxt "optadvancedpage|selectruntime"
msgid "Select a Java Runtime Environment"
msgstr "Valitse Java-ajoympäristö"
#. 7QUQp
-#: cui/uiconfig/ui/optadvancedpage.ui:301
+#: cui/uiconfig/ui/optadvancedpage.ui:345
msgctxt "optadvancedpage|label1"
msgid "Java Options"
msgstr "Java-asetukset"
#. rEtsc
-#: cui/uiconfig/ui/optadvancedpage.ui:336
+#: cui/uiconfig/ui/optadvancedpage.ui:380
msgctxt "optadvancedpage|experimental"
msgid "Enable experimental features (may be unstable)"
msgstr "Ota käyttöön kokeelliset (mahdollisesti epävakaat) toiminnot"
+#. CyDsa
+#: cui/uiconfig/ui/optadvancedpage.ui:389
+msgctxt "extended_tip|experimental"
+msgid "Enable experimental features"
+msgstr "Ota käyttöön kokeelliset ominaisuudet"
+
#. rMVcA
-#: cui/uiconfig/ui/optadvancedpage.ui:351
+#: cui/uiconfig/ui/optadvancedpage.ui:400
msgctxt "optadvancedpage|macrorecording"
msgid "Enable macro recording (may be limited)"
msgstr "Ota käyttöön makrojen nauhoittaminen (rajoitetusti)"
+#. 8Gjtp
+#: cui/uiconfig/ui/optadvancedpage.ui:409
+msgctxt "extended_tip|macrorecording"
+msgid "Enable macro recording"
+msgstr "Salli makrojen nauhoittaminen"
+
#. NgRXw
-#: cui/uiconfig/ui/optadvancedpage.ui:366
+#: cui/uiconfig/ui/optadvancedpage.ui:420
msgctxt "optadvancedpage|expertconfig"
msgid "Open Expert Configuration"
msgstr "Avaa edistyneet asetukset"
+#. rAnYG
+#: cui/uiconfig/ui/optadvancedpage.ui:428
+msgctxt "extended_tip|expertconfig"
+msgid "Opens the Expert Configuration dialog for advanced settings and configuration of %PRODUCTNAME."
+msgstr ""
+
#. ZLtrh
-#: cui/uiconfig/ui/optadvancedpage.ui:386
+#: cui/uiconfig/ui/optadvancedpage.ui:445
msgctxt "optadvancedpage|label12"
msgid "Optional Features"
msgstr "Valinnaiset ominaisuudet"
+#. wJx8x
+#: cui/uiconfig/ui/optadvancedpage.ui:461
+msgctxt "extended_tip|OptAdvancedPage"
+msgid "Allows you to run Java applications in %PRODUCTNAME."
+msgstr "Sallitaan Java-sovellusten suorittaminen %PRODUCTNAMEssa."
+
#. dmvLE
#: cui/uiconfig/ui/optappearancepage.ui:37
msgctxt "optappearancepage|label3"
msgid "_Scheme:"
msgstr "Teema:"
+#. k8ACj
+#: cui/uiconfig/ui/optappearancepage.ui:55
+msgctxt "extended_tip|save"
+msgid "Saves the current settings as a color scheme that you can reload later."
+msgstr "Tallennetaan käsillä olevat asetukset väriteemana, joka voidaan ladata käyttöön myöhemmin."
+
+#. 4YuTW
+#: cui/uiconfig/ui/optappearancepage.ui:73
+msgctxt "extended_tip|delete"
+msgid "Deletes the color scheme shown in the Scheme box. You cannot delete the Default scheme."
+msgstr "Poistetaan varmistuskyselyin Teema-ruudussa näkyvä väriteema. Oletusteema ei ole poistettavissa."
+
+#. Gii2p
+#: cui/uiconfig/ui/optappearancepage.ui:89
+msgctxt "extended_tip|colorschemelb"
+msgid "Selects the color scheme you want to use."
+msgstr "Valitaan käytettävä väriteema."
+
#. jzELX
-#: cui/uiconfig/ui/optappearancepage.ui:91
+#: cui/uiconfig/ui/optappearancepage.ui:106
msgctxt "optappearancepage|label1"
msgid "Color Scheme"
msgstr "Väriteema"
+#. RAEbU
+#: cui/uiconfig/ui/optappearancepage.ui:199
+msgctxt "extended_tip|colorconfig"
+msgid "Select the colors for the user interface elements."
+msgstr "Valitaan käyttöliittymän osien värit."
+
#. BtFUJ
-#: cui/uiconfig/ui/optappearancepage.ui:211
+#: cui/uiconfig/ui/optappearancepage.ui:231
msgctxt "optappearancepage|uielements"
msgid "User interface elements"
msgstr "Käyttöliittymäelementit"
#. nrHHF
-#: cui/uiconfig/ui/optappearancepage.ui:226
+#: cui/uiconfig/ui/optappearancepage.ui:246
msgctxt "optappearancepage|colorsetting"
msgid "Color setting"
msgstr "Väriasetus"
#. Jms9Q
-#: cui/uiconfig/ui/optappearancepage.ui:239
+#: cui/uiconfig/ui/optappearancepage.ui:259
msgctxt "optappearancepage|on"
msgid "On"
msgstr "Käytössä"
#. HFLPF
-#: cui/uiconfig/ui/optappearancepage.ui:260
+#: cui/uiconfig/ui/optappearancepage.ui:280
msgctxt "optappearancepage|label2"
msgid "Custom Colors"
msgstr "Mukautetut värit"
+#. vxBRc
+#: cui/uiconfig/ui/optappearancepage.ui:295
+msgctxt "extended_tip|OptAppearancePage"
+msgid "Sets the colors for the %PRODUCTNAME user interface."
+msgstr "Tehdään %PRODUCTNAME-käyttöliittymän väriasetukset."
+
#. nRFne
#: cui/uiconfig/ui/optasianpage.ui:30
msgctxt "optasianpage|charkerning"
msgid "_Western text only"
msgstr "Vain länsimainen teksti"
+#. QCvQv
+#: cui/uiconfig/ui/optasianpage.ui:40
+msgctxt "extended_tip|charkerning"
+msgid "Specifies that kerning is only applied to western text."
+msgstr "Merkinnällä määrätään parivälistys käyttöön vain länsimaisessa tekstissä."
+
#. WEFrz
-#: cui/uiconfig/ui/optasianpage.ui:47
+#: cui/uiconfig/ui/optasianpage.ui:52
msgctxt "optasianpage|charpunctkerning"
msgid "Western _text and Asian punctuation"
msgstr "Länsimainen teksti ja aasialaiset välimerkit"
+#. PCrHe
+#: cui/uiconfig/ui/optasianpage.ui:62
+msgctxt "extended_tip|charpunctkerning"
+msgid "Specifies that kerning is applied to both western text and Asian punctuation."
+msgstr "Merkinnällä määrätään parivälistys käyttöön sekä länsimaisessa tekstissä että aasialaisissa välimerkeissä."
+
#. 4wTpB
-#: cui/uiconfig/ui/optasianpage.ui:70
+#: cui/uiconfig/ui/optasianpage.ui:80
msgctxt "optasianpage|label1"
msgid "Kerning"
msgstr "Parivälistys"
#. mboKG
-#: cui/uiconfig/ui/optasianpage.ui:102
+#: cui/uiconfig/ui/optasianpage.ui:112
msgctxt "optasianpage|nocompression"
msgid "_No compression"
msgstr "Ei tiivistystä"
+#. DGBhs
+#: cui/uiconfig/ui/optasianpage.ui:122
+msgctxt "extended_tip|nocompression"
+msgid "Specifies that no compression at all will occur."
+msgstr "Merkinnällä määrätään, ettei tiivistetä lainkaan."
+
#. GvJuV
-#: cui/uiconfig/ui/optasianpage.ui:119
+#: cui/uiconfig/ui/optasianpage.ui:134
msgctxt "optasianpage|punctcompression"
msgid "_Compress punctuation only"
msgstr "Vain välimerkkien tiivistys"
+#. 8FYbX
+#: cui/uiconfig/ui/optasianpage.ui:144
+msgctxt "extended_tip|punctcompression"
+msgid "Specifies that only the punctuation is compressed."
+msgstr "Merkinnällä määrätään, että vain välimerkit tiivistetään."
+
#. aGY7H
-#: cui/uiconfig/ui/optasianpage.ui:136
+#: cui/uiconfig/ui/optasianpage.ui:156
msgctxt "optasianpage|punctkanacompression"
msgid "Compress punctuation and Japanese Kana"
msgstr "Välimerkkien ja japanilaisten kana-merkkien tiivistys"
+#. k2K9z
+#: cui/uiconfig/ui/optasianpage.ui:166
+msgctxt "extended_tip|punctkanacompression"
+msgid "Specifies that punctuation and Japanese Kana are compressed."
+msgstr "Merkinnällä määrätään, että välimerkit ja japanilaiset kana-merkit tiivistetään."
+
#. DAgwH
-#: cui/uiconfig/ui/optasianpage.ui:159
+#: cui/uiconfig/ui/optasianpage.ui:184
msgctxt "optasianpage|label2"
msgid "Character Spacing"
msgstr "Merkkiväli"
+#. LbEDU
+#: cui/uiconfig/ui/optasianpage.ui:238
+msgctxt "extended_tip|language"
+msgid "Specifies the language for which you want to define first and last characters."
+msgstr "Valitaan kieli, jolle määritetään aloitus- ja lopetusmerkit."
+
#. CeSy8
-#: cui/uiconfig/ui/optasianpage.ui:220
+#: cui/uiconfig/ui/optasianpage.ui:250
msgctxt "optasianpage|standard"
msgid "_Default"
msgstr "Oletus"
+#. bEKYg
+#: cui/uiconfig/ui/optasianpage.ui:259
+msgctxt "extended_tip|standard"
+msgid "When you mark Default, the following two text boxes are filled with the default characters for the selected language:"
+msgstr "Kun Oletus-ruutu merkitään, seuraavat kaksi tekstiruutua täytetään valitulle kielelle oletuksena olevilla merkeillä:"
+
#. WmjE9
-#: cui/uiconfig/ui/optasianpage.ui:244
+#: cui/uiconfig/ui/optasianpage.ui:279
msgctxt "optasianpage|languageft"
msgid "_Language:"
msgstr "Kieli:"
#. 3Airv
-#: cui/uiconfig/ui/optasianpage.ui:258
+#: cui/uiconfig/ui/optasianpage.ui:293
msgctxt "optasianpage|startft"
msgid "Not _at start of line:"
msgstr "Ei rivin alussa:"
#. TiFfn
-#: cui/uiconfig/ui/optasianpage.ui:272
+#: cui/uiconfig/ui/optasianpage.ui:307
msgctxt "optasianpage|endft"
msgid "Not at _end of line:"
msgstr "Ei rivin lopussa:"
+#. ebuCA
+#: cui/uiconfig/ui/optasianpage.ui:325
+msgctxt "extended_tip|start"
+msgid "Specifies the characters that should not appear alone at the beginning of a line."
+msgstr "Määritetään merkit, joiden ei tule esiintyä yksin rivin alussa."
+
+#. 6EoPs
+#: cui/uiconfig/ui/optasianpage.ui:342
+msgctxt "extended_tip|end"
+msgid "Specifies the characters that should not appear alone at the end of a line."
+msgstr "Määritetään merkit, joiden ei tule esiintyä yksi rivin lopussa."
+
#. dSvmP
-#: cui/uiconfig/ui/optasianpage.ui:317
+#: cui/uiconfig/ui/optasianpage.ui:362
msgctxt "optasianpage|hintft"
msgid "Without user-defined line break symbols"
msgstr "Ilman käyttäjän määrittämiä rivinvaihtomerkkejä"
#. BCwCp
-#: cui/uiconfig/ui/optasianpage.ui:334
+#: cui/uiconfig/ui/optasianpage.ui:379
msgctxt "optasianpage|label3"
msgid "First and Last Characters"
msgstr "Aloitus- ja lopetusmerkit"
@@ -10582,323 +13676,515 @@ msgctxt "optbasicidepage|codecomplete_enable"
msgid "Enable code completion"
msgstr "Sanojen täydennys koodieditorissa"
+#. oQJh3
+#: cui/uiconfig/ui/optbasicidepage.ui:38
+msgctxt "extended_tip|codecomplete_enable"
+msgid "Display methods of a Basic object."
+msgstr ""
+
#. B8fvE
-#: cui/uiconfig/ui/optbasicidepage.ui:50
+#: cui/uiconfig/ui/optbasicidepage.ui:55
msgctxt "optbasicidepage|label1"
msgid "Code Completion"
msgstr "Koodin sanojen täydennys"
#. kaYLZ
-#: cui/uiconfig/ui/optbasicidepage.ui:82
+#: cui/uiconfig/ui/optbasicidepage.ui:87
msgctxt "optbasicidepage|autoclose_proc"
msgid "Autoclose procedures"
msgstr "Automaattiset proseduurien lopetukset"
+#. hjYfe
+#: cui/uiconfig/ui/optbasicidepage.ui:96
+msgctxt "extended_tip|autoclose_proc"
+msgid "Automatically insert closing statements for procedures."
+msgstr ""
+
#. qKTPa
-#: cui/uiconfig/ui/optbasicidepage.ui:97
+#: cui/uiconfig/ui/optbasicidepage.ui:107
msgctxt "optbasicidepage|autoclose_paren"
msgid "Autoclose parenthesis"
msgstr "Automaattiset loppusulkeet"
+#. UmekG
+#: cui/uiconfig/ui/optbasicidepage.ui:116
+msgctxt "extended_tip|autoclose_paren"
+msgid "Automatically close open parenthesis."
+msgstr ""
+
#. EExBY
-#: cui/uiconfig/ui/optbasicidepage.ui:112
+#: cui/uiconfig/ui/optbasicidepage.ui:127
msgctxt "optbasicidepage|autoclose_quotes"
msgid "Autoclose quotes"
msgstr "Automaattiset loppulainausmerkit"
+#. GKCkD
+#: cui/uiconfig/ui/optbasicidepage.ui:136
+msgctxt "extended_tip|autoclose_quotes"
+msgid "Automatically close open quotes."
+msgstr ""
+
#. CCtUM
-#: cui/uiconfig/ui/optbasicidepage.ui:127
+#: cui/uiconfig/ui/optbasicidepage.ui:147
msgctxt "optbasicidepage|autocorrect"
msgid "Autocorrection"
msgstr "Automaattinen korjaus"
+#. czdha
+#: cui/uiconfig/ui/optbasicidepage.ui:157
+msgctxt "extended_tip|autocorrect"
+msgid "Correct cases of Basic variables and keywords while typing."
+msgstr ""
+
#. dJWhM
-#: cui/uiconfig/ui/optbasicidepage.ui:149
+#: cui/uiconfig/ui/optbasicidepage.ui:174
msgctxt "optbasicidepage|label2"
msgid "Code Suggestion"
msgstr "Koodiehdotukset"
#. iUBCy
-#: cui/uiconfig/ui/optbasicidepage.ui:181
+#: cui/uiconfig/ui/optbasicidepage.ui:206
msgctxt "optbasicidepage|extendedtypes_enable"
msgid "Use extended types"
msgstr "Käytä laajennettuja tyyppejä"
+#. zYY9B
+#: cui/uiconfig/ui/optbasicidepage.ui:215
+msgctxt "extended_tip|extendedtypes_enable"
+msgid "Allow UNO object types as valid Basic types."
+msgstr ""
+
#. rG8Fi
-#: cui/uiconfig/ui/optbasicidepage.ui:202
+#: cui/uiconfig/ui/optbasicidepage.ui:232
msgctxt "optbasicidepage|label3"
msgid "Language Features"
msgstr "Kielen ominaisuudet"
+#. VXGYT
+#: cui/uiconfig/ui/optchartcolorspage.ui:80
+msgctxt "extended_tip|colors"
+msgid "Displays all the colors available for the data series."
+msgstr "Esillä on kaikki arvosarjojen käytössä olevat värit."
+
#. vTZjC
-#: cui/uiconfig/ui/optchartcolorspage.ui:91
+#: cui/uiconfig/ui/optchartcolorspage.ui:93
msgctxt "optchartcolorspage|label20"
msgid "Chart Colors"
msgstr "Kaavion värit"
#. WA57y
-#: cui/uiconfig/ui/optchartcolorspage.ui:163
+#: cui/uiconfig/ui/optchartcolorspage.ui:165
msgctxt "optchartcolorspage|default"
msgid "_Default"
msgstr "Oletus"
+#. mpSKB
+#: cui/uiconfig/ui/optchartcolorspage.ui:172
+msgctxt "extended_tip|default"
+msgid "Restores the color settings that were defined when the program was installed."
+msgstr "Palautetaan väriasetukset ohjelman asennuksen aikaisiin määrityksiin."
+
#. KoHHw
-#: cui/uiconfig/ui/optchartcolorspage.ui:233
+#: cui/uiconfig/ui/optchartcolorspage.ui:240
msgctxt "optchartcolorspage|label1"
msgid "Color Table"
msgstr "Väritaulukko"
+#. xxtZE
+#: cui/uiconfig/ui/optchartcolorspage.ui:255
+msgctxt "extended_tip|OptChartColorsPage"
+msgid "Displays all the colors available for the data series."
+msgstr "Esillä on kaikki arvosarjojen käytössä olevat värit."
+
#. fVDQp
#: cui/uiconfig/ui/optctlpage.ui:31
msgctxt "optctlpage|sequencechecking"
msgid "Use se_quence checking"
msgstr "Käytä jakson tarkistusta"
+#. 47pP9
+#: cui/uiconfig/ui/optctlpage.ui:40
+msgctxt "extended_tip|sequencechecking"
+msgid "Enables sequence input checking for languages such as Thai."
+msgstr "Valinta sallii jakson tarkastuksen sellaisilla kielillä kuin thai."
+
#. DTWHd
-#: cui/uiconfig/ui/optctlpage.ui:56
+#: cui/uiconfig/ui/optctlpage.ui:61
msgctxt "optctlpage|restricted"
msgid "Restricted"
msgstr "Rajoitettu"
+#. HtGj9
+#: cui/uiconfig/ui/optctlpage.ui:70
+msgctxt "extended_tip|restricted"
+msgid "Prevents the use as well as the printing of illegal character combinations."
+msgstr "Valinnalla estetään luvattomien merkkiyhdistelmien käyttö ja tulostaminen."
+
#. wkSPW
-#: cui/uiconfig/ui/optctlpage.ui:71
+#: cui/uiconfig/ui/optctlpage.ui:81
msgctxt "optctlpage|typeandreplace"
msgid "_Type and replace"
msgstr "Kirjoita ja korvaa"
#. 4fM2r
-#: cui/uiconfig/ui/optctlpage.ui:100
+#: cui/uiconfig/ui/optctlpage.ui:110
msgctxt "optctlpage|label1"
msgid "Sequence Checking"
msgstr "Jakson tarkistus"
#. oBBi6
-#: cui/uiconfig/ui/optctlpage.ui:135
+#: cui/uiconfig/ui/optctlpage.ui:145
msgctxt "optctlpage|label3"
msgid "Movement:"
msgstr "Liikuttaminen:"
#. R7YUB
-#: cui/uiconfig/ui/optctlpage.ui:145
+#: cui/uiconfig/ui/optctlpage.ui:155
msgctxt "optctlpage|movementlogical"
msgid "Lo_gical"
msgstr "Looginen"
+#. W9NrD
+#: cui/uiconfig/ui/optctlpage.ui:165
+msgctxt "extended_tip|movementlogical"
+msgid "Pressing the Right Arrow key moves the text cursor toward the end of the current text. Pressing the Left Arrow key moves the text cursor toward the beginning of the current text."
+msgstr "Oikeanuoli-näppäimen painaminen siirtää tekstikohdistinta käsiteltävän kirjoituksen loppua kohti. Vasennuoli-näppäimen painaminen siirtää tekstikohdistinta käsiteltävän kirjoituksen alkuun päin."
+
#. aEwYW
-#: cui/uiconfig/ui/optctlpage.ui:161
+#: cui/uiconfig/ui/optctlpage.ui:176
msgctxt "optctlpage|movementvisual"
msgid "_Visual"
msgstr "Visuaalinen"
-#. 78DkF
+#. wpUXS
#: cui/uiconfig/ui/optctlpage.ui:186
+msgctxt "extended_tip|movementvisual"
+msgid "Pressing the Right Arrow key moves the text cursor in the right-hand direction. Pressing the Left Arrow key moves the text cursor in the left-hand direction."
+msgstr "Oikeanuoli-näppäimen painaminen siirtää tekstikohdistinta nuolen mukaisesti oikealle. Vasennuoli-näppäimen painaminen siirtää tekstikohdistinta vasemmalle."
+
+#. 78DkF
+#: cui/uiconfig/ui/optctlpage.ui:206
msgctxt "optctlpage|label2"
msgid "Cursor Control"
msgstr "Kohdistimen hallinta"
#. LcTwD
-#: cui/uiconfig/ui/optctlpage.ui:220
+#: cui/uiconfig/ui/optctlpage.ui:240
msgctxt "optctlpage|label5"
msgid "_Numerals:"
msgstr "Numerot:"
#. BdfCk
-#: cui/uiconfig/ui/optctlpage.ui:235
+#: cui/uiconfig/ui/optctlpage.ui:255
msgctxt "optctlpage|numerals"
msgid "Arabic (1, 2, 3…)"
msgstr "Arabialaiset (1, 2, 3…)"
#. 2n6dr
-#: cui/uiconfig/ui/optctlpage.ui:236
+#: cui/uiconfig/ui/optctlpage.ui:256
#, fuzzy
msgctxt "optctlpage|numerals"
msgid "Eastern Arabic (٣ ,٢ ,١…)"
msgstr "Itäinen arabia (٣ ,٢ ,١…)"
#. uFBEA
-#: cui/uiconfig/ui/optctlpage.ui:237
+#: cui/uiconfig/ui/optctlpage.ui:257
msgctxt "optctlpage|numerals"
msgid "System"
msgstr "Järjestelmä"
#. 93jgb
-#: cui/uiconfig/ui/optctlpage.ui:238
+#: cui/uiconfig/ui/optctlpage.ui:258
msgctxt "optctlpage|numerals"
msgid "Context"
msgstr "Konteksti"
+#. jDGEt
+#: cui/uiconfig/ui/optctlpage.ui:262
+msgctxt "extended_tip|numerals"
+msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all %PRODUCTNAME modules. Only cell contents of %PRODUCTNAME Calc are not affected."
+msgstr "Valitaan kaikissa %PRODUCTNAME-moduuleissa tekstissä, teksti- ja ohjausobjekteissa sekä kentissä käytettävä numerotyyppi. %PRODUCTNAME Calcin solusisältöihin ei kuitenkaan vaikuteta."
+
#. kWczF
-#: cui/uiconfig/ui/optctlpage.ui:254
+#: cui/uiconfig/ui/optctlpage.ui:279
msgctxt "optctlpage|label4"
msgid "General Options"
msgstr "Yleisasetukset"
+#. WSTDt
+#: cui/uiconfig/ui/optctlpage.ui:294
+msgctxt "extended_tip|OptCTLPage"
+msgid "Defines the options for documents with complex text layouts."
+msgstr "Määritetään laajennetun tekstiasettelun asiakirjojen asetukset."
+
#. G5EDD
#: cui/uiconfig/ui/optemailpage.ui:34
msgctxt "optemailpage|label2"
msgid "_Email program:"
msgstr "_Sähköpostiohjelma:"
+#. bEyeK
+#: cui/uiconfig/ui/optemailpage.ui:53
+msgctxt "extended_tip|url"
+msgid "Enter the email program path and name."
+msgstr ""
+
#. ACQCM
-#: cui/uiconfig/ui/optemailpage.ui:59
+#: cui/uiconfig/ui/optemailpage.ui:64
msgctxt "optemailpage|browse"
msgid "Browse..."
msgstr "Selaa..."
+#. Vs69j
+#: cui/uiconfig/ui/optemailpage.ui:71
+msgctxt "extended_tip|browse"
+msgid "Opens a file dialog to select the email program."
+msgstr ""
+
#. EHBa5
-#: cui/uiconfig/ui/optemailpage.ui:87
+#: cui/uiconfig/ui/optemailpage.ui:97
msgctxt "optemailpage|browsetitle"
msgid "All files"
msgstr "Kaikki tiedostot"
#. scEyS
-#: cui/uiconfig/ui/optemailpage.ui:112
+#: cui/uiconfig/ui/optemailpage.ui:122
msgctxt "optemailpage|suppress"
msgid "Suppress hidden elements of documents"
msgstr "Jätä pois asiakirjojen piilotetut elementit"
#. vbcqb
-#: cui/uiconfig/ui/optemailpage.ui:181
+#: cui/uiconfig/ui/optemailpage.ui:191
msgctxt "optemailpage|label1"
msgid "Sending Documents as Email Attachments"
msgstr "Asiakirjojen lähettäminen sähköpostin liitteinä"
+#. DoGA3
+#: cui/uiconfig/ui/optemailpage.ui:199
+msgctxt "extended_tip|OptEmailPage"
+msgid "Enter the email program path and name."
+msgstr ""
+
#. CnnM7
#. A column title, short for Load. This string is repeated as a prefix to an explanatory note under the widget
-#: cui/uiconfig/ui/optfltrembedpage.ui:82
+#: cui/uiconfig/ui/optfltrembedpage.ui:88
msgctxt "optfltrembedpage|column1"
msgid "[L]"
msgstr ""
#. 66D6D
#. A column title, short for Save. This string is repeated as a prefix to an explanatory note under the widget
-#: cui/uiconfig/ui/optfltrembedpage.ui:97
+#: cui/uiconfig/ui/optfltrembedpage.ui:110
msgctxt "optfltrembedpage|column2"
msgid "[S]"
msgstr ""
+#. xrKRQ
+#: cui/uiconfig/ui/optfltrembedpage.ui:135
+msgctxt "extended_tip|checklbcontainer"
+msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loading into %PRODUCTNAME [L] and/or when saving into a Microsoft format [S]. "
+msgstr ""
+
#. x5kfq
#. The [L] here is repeated as the column title for the "Load" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:138
+#: cui/uiconfig/ui/optfltrembedpage.ui:156
msgctxt "optfltrembedpage|label2"
msgid "[L]: Load and convert the object"
msgstr "[L]: Tuo ja muuntaa objektin"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:151
+#: cui/uiconfig/ui/optfltrembedpage.ui:169
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[S]: Muuntaa ja tallentaa objektin"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:175
+#: cui/uiconfig/ui/optfltrembedpage.ui:193
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "Upotetut objektit"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:209
+#: cui/uiconfig/ui/optfltrembedpage.ui:227
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "Vie muodossa:"
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:224
+#: cui/uiconfig/ui/optfltrembedpage.ui:242
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "Korostus"
+#. mCeit
+#: cui/uiconfig/ui/optfltrembedpage.ui:252
+msgctxt "extended_tip|highlighting"
+msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+msgstr ""
+
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:241
+#: cui/uiconfig/ui/optfltrembedpage.ui:264
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Varjostus"
+#. 5b274
+#: cui/uiconfig/ui/optfltrembedpage.ui:274
+msgctxt "extended_tip|shading"
+msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+msgstr ""
+
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:271
+#: cui/uiconfig/ui/optfltrembedpage.ui:299
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "Merkin korostus"
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:302
+#: cui/uiconfig/ui/optfltrembedpage.ui:330
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr "Luo MSO-lukkotiedosto"
-#. WkpLv
-#: cui/uiconfig/ui/optfltrembedpage.ui:325
+#. NDG4H
+#: cui/uiconfig/ui/optfltrembedpage.ui:340
+msgctxt "extended_tip|mso_lockfile"
+msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to %PRODUCTNAME own lock file."
+msgstr ""
+
+#. Sg5Bw
+#: cui/uiconfig/ui/optfltrembedpage.ui:358
msgctxt "optfltrembedpage|label5"
-msgid "Lock files"
-msgstr "Lukitse tiedostot"
+msgid "Lock Files"
+msgstr ""
+
+#. EUBnP
+#: cui/uiconfig/ui/optfltrembedpage.ui:372
+msgctxt "extended_tip|OptFilterPage"
+msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
+msgstr ""
#. ttAk5
-#: cui/uiconfig/ui/optfltrpage.ui:29
+#: cui/uiconfig/ui/optfltrpage.ui:30
msgctxt "optfltrpage|wo_basic"
msgid "Load Basic _code"
msgstr "Lataa Basic-lähdekoodi"
+#. q4wdN
+#: cui/uiconfig/ui/optfltrpage.ui:39
+msgctxt "extended_tip|wo_basic"
+msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgstr ""
+
#. AChYC
-#: cui/uiconfig/ui/optfltrpage.ui:46
+#: cui/uiconfig/ui/optfltrpage.ui:50
msgctxt "optfltrpage|wo_exec"
msgid "E_xecutable code"
msgstr "Suoritettava koodi"
+#. DrWP3
+#: cui/uiconfig/ui/optfltrpage.ui:60
+msgctxt "extended_tip|wo_exec"
+msgid "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this checkbox is not checked, the VBA code will be commented out so it can be inspected, but will not run."
+msgstr "VBA (Visual Basic for Applications) -koodi ladataan suoritusvalmiina. Jos tämä valintaruutu ei ole merkitty, VBA-koodi kommentoidaan ulos, niin että se on tarkasteltavissa, muttei suoritettavissa."
+
#. avyQV
-#: cui/uiconfig/ui/optfltrpage.ui:64
+#: cui/uiconfig/ui/optfltrpage.ui:71
msgctxt "optfltrpage|wo_saveorig"
msgid "Save _original Basic code"
msgstr "Tallenna alkuperäinen Basic-lähdekoodi"
+#. 4pGYB
+#: cui/uiconfig/ui/optfltrpage.ui:80
+msgctxt "extended_tip|wo_saveorig"
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgstr ""
+
#. W6nED
-#: cui/uiconfig/ui/optfltrpage.ui:87
+#: cui/uiconfig/ui/optfltrpage.ui:97
msgctxt "optfltrpage|label1"
msgid "Microsoft Word"
msgstr "Microsoft Word"
#. Z88Ms
-#: cui/uiconfig/ui/optfltrpage.ui:119
+#: cui/uiconfig/ui/optfltrpage.ui:129
msgctxt "optfltrpage|ex_basic"
msgid "Lo_ad Basic code"
msgstr "Lataa Basic-lähdekoodi"
+#. QcFGD
+#: cui/uiconfig/ui/optfltrpage.ui:138
+msgctxt "extended_tip|ex_basic"
+msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgstr ""
+
#. S6ozV
-#: cui/uiconfig/ui/optfltrpage.ui:136
+#: cui/uiconfig/ui/optfltrpage.ui:149
msgctxt "optfltrpage|ex_exec"
msgid "E_xecutable code"
msgstr "Suoritettava koodi"
+#. qvcsz
+#: cui/uiconfig/ui/optfltrpage.ui:159
+msgctxt "extended_tip|ex_exec"
+msgid "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this checkbox is not checked, the VBA code will be commented out so it can be inspected, but will not run."
+msgstr "VBA (Visual Basic for Applications) -koodi ladataan suoritusvalmiina. Jos tämä valintaruutu ei ole merkitty, VBA-koodi kommentoidaan ulos, niin että se on tarkasteltavissa, muttei suoritettavissa."
+
#. K6YYX
-#: cui/uiconfig/ui/optfltrpage.ui:154
+#: cui/uiconfig/ui/optfltrpage.ui:170
msgctxt "optfltrpage|ex_saveorig"
msgid "Sa_ve original Basic code"
msgstr "Tallenna alkuperäinen Basic-lähdekoodi"
+#. QzDgZ
+#: cui/uiconfig/ui/optfltrpage.ui:179
+msgctxt "extended_tip|ex_saveorig"
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgstr ""
+
#. a5EkB
-#: cui/uiconfig/ui/optfltrpage.ui:177
+#: cui/uiconfig/ui/optfltrpage.ui:196
msgctxt "optfltrpage|label2"
msgid "Microsoft Excel"
msgstr "Microsoft Excel"
#. z9TKA
-#: cui/uiconfig/ui/optfltrpage.ui:209
+#: cui/uiconfig/ui/optfltrpage.ui:228
msgctxt "optfltrpage|pp_basic"
msgid "Load Ba_sic code"
msgstr "Lataa Basic-lähdekoodi"
+#. VR4v5
+#: cui/uiconfig/ui/optfltrpage.ui:237
+msgctxt "extended_tip|pp_basic"
+msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgstr ""
+
#. VSdyY
-#: cui/uiconfig/ui/optfltrpage.ui:226
+#: cui/uiconfig/ui/optfltrpage.ui:248
msgctxt "optfltrpage|pp_saveorig"
msgid "Sav_e original Basic code"
msgstr "Tallenna alkuperäinen Basic-lähdekoodi"
+#. tTQXM
+#: cui/uiconfig/ui/optfltrpage.ui:257
+msgctxt "extended_tip|pp_saveorig"
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgstr ""
+
#. sazZt
-#: cui/uiconfig/ui/optfltrpage.ui:249
+#: cui/uiconfig/ui/optfltrpage.ui:274
msgctxt "optfltrpage|label3"
msgid "Microsoft PowerPoint"
msgstr "Microsoft PowerPoint"
+#. yV3zh
+#: cui/uiconfig/ui/optfltrpage.ui:289
+msgctxt "extended_tip|OptFltrPage"
+msgid "Specifies the general properties for loading and saving Microsoft Office documents with VBA (Visual Basic for Applications) code."
+msgstr "Määritetään yleiset lataus- ja tallennusominaisuudet Microsoft Office -asiakirjoille, joissa on VBA (Visual Basic for Applications) -koodia."
+
#. Q8yvt
#: cui/uiconfig/ui/optfontspage.ui:86
msgctxt "optfontspage|label2"
@@ -10912,67 +14198,127 @@ msgid "Re_place with:"
msgstr "_Korvaa fontilla:"
#. ctZBz
-#: cui/uiconfig/ui/optfontspage.ui:153
+#: cui/uiconfig/ui/optfontspage.ui:140
msgctxt "optfontspage|always"
msgid "Always"
msgstr "Aina"
#. pyVz3
-#: cui/uiconfig/ui/optfontspage.ui:167
+#: cui/uiconfig/ui/optfontspage.ui:161
msgctxt "optfontspage|screenonly"
msgid "Screen only"
msgstr "Vain näytöllä"
#. bMguF
-#: cui/uiconfig/ui/optfontspage.ui:181
+#: cui/uiconfig/ui/optfontspage.ui:175
msgctxt "optfontspage|font"
msgid "Font"
msgstr "Fontti"
#. FELgv
-#: cui/uiconfig/ui/optfontspage.ui:195
+#: cui/uiconfig/ui/optfontspage.ui:189
msgctxt "optfontspage|replacewith"
msgid "Replace with"
msgstr "Korvaa sanalla"
+#. MN8PJ
+#: cui/uiconfig/ui/optfontspage.ui:201
+msgctxt "extended_tip | checklb"
+msgid "Lists the original font and the font that will replace it. Select Always to replace the font, even if the original font is installed on your system. Select Screen only to replace the screen font only and never replace the font for printing."
+msgstr "Luettelossa on alkuperäinen fontti ja fontti, jolla se korvataan. Valitaan Aina, kun fontti korvataan myös silloin, kun alkuperäinen on asennettu järjestelmään. Valitaan Vain näytöllä, kun vain näyttöfontti korvataan, eikä koskaan tulostusfonttia."
+
+#. BGoZq
+#: cui/uiconfig/ui/optfontspage.ui:230
+msgctxt "extended_tip | apply"
+msgid "Applies the selected font replacement."
+msgstr "Otetaan käyttöön valittu fontin korvaus."
+
+#. sYmaA
+#: cui/uiconfig/ui/optfontspage.ui:249
+msgctxt "extended_tip | delete"
+msgid "Deletes the selected font replacement."
+msgstr "Poistetaan valittu fontin korvaus."
+
+#. gtiJp
+#: cui/uiconfig/ui/optfontspage.ui:272
+msgctxt "extended_tip | font2"
+msgid "Enter or select the name of the replacement font."
+msgstr "Kirjoitetaan tai valitaan korvaavan fontin nimi."
+
+#. SABse
+#: cui/uiconfig/ui/optfontspage.ui:295
+msgctxt "extended_tip | font1"
+msgid "Enter or select the name of the font that you want to replace."
+msgstr "Kirjoitetaan tai valitaan korvattavan fontin nimi."
+
+#. k4PCs
+#: cui/uiconfig/ui/optfontspage.ui:306
+msgctxt "extended_tip | replacements"
+msgid "Substitutes a font with a font of your choice. The substitution replaces a font only when it is displayed on screen, or on screen and when printing. The replacement does not change the font settings that are saved in the document."
+msgstr "Fontit-toiminnossa korvataan fontti toisella fontilla käyttäjän valinnan mukaan. Fontin eli kirjasimen korvaaminen voi koskea vain näyttöä tai sekä näyttöä että tulostusta. Korvaustoiminto ei muuta asiakirjaan tallennettuja fonttiasetuksia."
+
#. 7ECDC
-#: cui/uiconfig/ui/optfontspage.ui:294
+#: cui/uiconfig/ui/optfontspage.ui:318
msgctxt "optfontspage|usetable"
msgid "_Apply replacement table"
msgstr "Käytä korvaus_taulukkoa"
+#. AVB5d
+#: cui/uiconfig/ui/optfontspage.ui:327
+msgctxt "extended_tip | usetable"
+msgid "Enables the font replacement settings that you define."
+msgstr "Otetaan käyttöön määriteltävät fonttien korvausasetukset."
+
#. wDa4A
-#: cui/uiconfig/ui/optfontspage.ui:316
+#: cui/uiconfig/ui/optfontspage.ui:345
msgctxt "optfontspage|label4"
msgid "Replacement Table"
msgstr "Korvaustaulukko"
#. z93yC
-#: cui/uiconfig/ui/optfontspage.ui:354
+#: cui/uiconfig/ui/optfontspage.ui:383
msgctxt "optfontspage|label8"
msgid "Fon_ts:"
msgstr "Fontit:"
#. L9aT3
-#: cui/uiconfig/ui/optfontspage.ui:369
+#: cui/uiconfig/ui/optfontspage.ui:398
msgctxt "optfontspage|label9"
msgid "_Size:"
msgstr "Koko:"
#. KXCQg
-#: cui/uiconfig/ui/optfontspage.ui:384
+#: cui/uiconfig/ui/optfontspage.ui:413
msgctxt "optfontspage|fontname"
msgid "Automatic"
msgstr "Automaattinen"
+#. LKiV2
+#: cui/uiconfig/ui/optfontspage.ui:417
+msgctxt "extended_tip | fontname"
+msgid "Select the font for the display of HTML and Basic source code."
+msgstr "Valitaan fontti HTML- ja Basic-lähdekoodien esittämiseen."
+
#. Cc5tn
-#: cui/uiconfig/ui/optfontspage.ui:394
+#: cui/uiconfig/ui/optfontspage.ui:428
msgctxt "optfontspage|nonpropfontonly"
msgid "_Non-proportional fonts only"
msgstr "Vain ei-suhteelliset fontit"
+#. aUYNh
+#: cui/uiconfig/ui/optfontspage.ui:437
+msgctxt "extended_tip | nonpropfontonly"
+msgid "Check to display only non-proportional fonts in the Fonts list box."
+msgstr "Merkinnällä määrätään vain tasaleveitä kirjasimia esitettäväksi Fontit-luetteloruudussa."
+
+#. GAiec
+#: cui/uiconfig/ui/optfontspage.ui:454
+msgctxt "extended_tip | fontheight"
+msgid "Select a font size for the display of HTML and Basic source code."
+msgstr "Valitaan fontin koko HTML- ja Basic-lähdekoodien esittämiseen."
+
#. AafuA
-#: cui/uiconfig/ui/optfontspage.ui:430
+#: cui/uiconfig/ui/optfontspage.ui:474
msgctxt "optfontspage|label1"
msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Fonttiasetukset HTML-, Basic- ja SQL-lähdekoodille"
@@ -10983,362 +14329,620 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Laajennetut vihjeet"
+#. ypuz2
+#: cui/uiconfig/ui/optgeneralpage.ui:44
+msgctxt "extended_tip | exthelp"
+msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
+msgstr "Esitetään ohjeteksti, kun hiiren osoitin on kuvakkeen, valikkokomennon tai valintaikkunan ohjausobjektin päällä."
+
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:50
+#: cui/uiconfig/ui/optgeneralpage.ui:55
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Näytä ilmoitus, jos ohjeita ei ole asennettu"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:64
+#: cui/uiconfig/ui/optgeneralpage.ui:69
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Näytä päivän vinkki ohjelmaa käynnistettäessä"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:85
+#: cui/uiconfig/ui/optgeneralpage.ui:90
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ohje"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:116
+#: cui/uiconfig/ui/optgeneralpage.ui:121
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Käytä _%PRODUCTNAME-valintaikkunoita"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:150
+#: cui/uiconfig/ui/optgeneralpage.ui:155
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Avaus- ja tallennusikkunat"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:181
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Käytä %PRODUCTNAME-valintaikkunoita"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:191
+#: cui/uiconfig/ui/optgeneralpage.ui:196
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Tulostusvalintaikkunat"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:217
+#: cui/uiconfig/ui/optgeneralpage.ui:222
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "T_ulostaminen asettaa \"asiakirjaa muokattu\" -tilan"
+#. kPEpF
+#: cui/uiconfig/ui/optgeneralpage.ui:231
+msgctxt "extended_tip | docstatus"
+msgid "Specifies whether the printing of the document counts as a modification."
+msgstr "Merkinnällä määrätään, että asiakirjan tulostus lasketaan muokkaukseksi."
+
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:232
+#: cui/uiconfig/ui/optgeneralpage.ui:242
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Asiakirjan tila"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:275
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tulkitse vuosiksi väliltä "
+#. huNG6
+#: cui/uiconfig/ui/optgeneralpage.ui:293
+msgctxt "extended_tip | year"
+msgid "Defines a date range, within which the system recognizes a two-digit year."
+msgstr "Määritetään päivämäärä väli, jolta järjestelmä tunnistaa vuoden kahdesta numerosta."
+
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ja "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:306
+#: cui/uiconfig/ui/optgeneralpage.ui:321
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Vuosi (kaksi numeroa)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:336
+#: cui/uiconfig/ui/optgeneralpage.ui:351
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kerää tietoja ohjelmiston käytöstä ja lähetä ne The Document Foundationille"
+#. xkgEo
+#: cui/uiconfig/ui/optgeneralpage.ui:361
+msgctxt "extended_tip | collectusageinfo"
+msgid "Send usage data to help The Document Foundation improve the software usability."
+msgstr ""
+
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:352
+#: cui/uiconfig/ui/optgeneralpage.ui:372
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Lähetä ilmoitus ohjelman kaatumisesta The Document Foundationille"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:374
+#: cui/uiconfig/ui/optgeneralpage.ui:394
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Auta parantamaan %PRODUCTNAMEa"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:405
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Lataa %PRODUCTNAME järjestelmän käynnistyksen yhteydessä"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:420
+#: cui/uiconfig/ui/optgeneralpage.ui:440
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ota käyttöön pikakäynnistys"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:441
+#: cui/uiconfig/ui/optgeneralpage.ui:461
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME-pikakäynnistys"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:472
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windowsin oletussovellukset"
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:511
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAMEn tiedostojen kytkentä"
+#. coFbL
+#: cui/uiconfig/ui/optgeneralpage.ui:525
+msgctxt "extended_tip | OptGeneralPage"
+msgid "Specifies the general settings for %PRODUCTNAME."
+msgstr "Määritetään %PRODUCTNAME-ohjelmiston yleisasetukset."
+
#. FsiDE
#: cui/uiconfig/ui/opthtmlpage.ui:89
msgctxt "opthtmlpage|size7FT"
msgid "Size _7:"
msgstr "Koko _7:"
+#. eSVmw
+#: cui/uiconfig/ui/opthtmlpage.ui:105
+msgctxt "extended_tip|size7"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. SfHVG
-#: cui/uiconfig/ui/opthtmlpage.ui:113
+#: cui/uiconfig/ui/opthtmlpage.ui:118
msgctxt "opthtmlpage|size6FT"
msgid "Size _6:"
msgstr "Koko _6:"
+#. wWFqw
+#: cui/uiconfig/ui/opthtmlpage.ui:134
+msgctxt "extended_tip|size6"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. mbGGc
-#: cui/uiconfig/ui/opthtmlpage.ui:137
+#: cui/uiconfig/ui/opthtmlpage.ui:147
msgctxt "opthtmlpage|size5FT"
msgid "Size _5:"
msgstr "Koko _5:"
+#. GAy87
+#: cui/uiconfig/ui/opthtmlpage.ui:163
+msgctxt "extended_tip|size5"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. PwaSa
-#: cui/uiconfig/ui/opthtmlpage.ui:161
+#: cui/uiconfig/ui/opthtmlpage.ui:176
msgctxt "opthtmlpage|size4FT"
msgid "Size _4:"
msgstr "Koko _4:"
+#. QEA47
+#: cui/uiconfig/ui/opthtmlpage.ui:192
+msgctxt "extended_tip|size4"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. FSRpm
-#: cui/uiconfig/ui/opthtmlpage.ui:185
+#: cui/uiconfig/ui/opthtmlpage.ui:205
msgctxt "opthtmlpage|size3FT"
msgid "Size _3:"
msgstr "Koko _3:"
+#. drCYA
+#: cui/uiconfig/ui/opthtmlpage.ui:221
+msgctxt "extended_tip|size3"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. unrKj
-#: cui/uiconfig/ui/opthtmlpage.ui:209
+#: cui/uiconfig/ui/opthtmlpage.ui:234
msgctxt "opthtmlpage|size2FT"
msgid "Size _2:"
msgstr "Koko _2:"
+#. tvwUA
+#: cui/uiconfig/ui/opthtmlpage.ui:250
+msgctxt "extended_tip|size2"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. aiSoE
-#: cui/uiconfig/ui/opthtmlpage.ui:233
+#: cui/uiconfig/ui/opthtmlpage.ui:263
msgctxt "opthtmlpage|size1FT"
msgid "Size _1:"
msgstr "Koko _1:"
+#. 99HCd
+#: cui/uiconfig/ui/opthtmlpage.ui:279
+msgctxt "extended_tip|size1"
+msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
+msgstr ""
+
#. rRkQd
-#: cui/uiconfig/ui/opthtmlpage.ui:261
+#: cui/uiconfig/ui/opthtmlpage.ui:296
msgctxt "opthtmlpage|label1"
msgid "Font Sizes"
msgstr "Fonttikoot"
#. JRQrk
-#: cui/uiconfig/ui/opthtmlpage.ui:310
+#: cui/uiconfig/ui/opthtmlpage.ui:345
msgctxt "opthtmlpage|ignorefontnames"
msgid "Ignore _font settings"
msgstr "Ohita fonttiasetukset"
+#. kD39h
+#: cui/uiconfig/ui/opthtmlpage.ui:355
+msgctxt "extended_tip|ignorefontnames"
+msgid "Mark this check box to ignore all font settings when importing. The fonts that were defined in the HTML Page Style will be the fonts that will be used. "
+msgstr "Kentän merkitseminen johtaa kaikkien fonttimääreiden ohittamiseen tuotaessa. HTML-sivutyyleissä määritellyt fontit tulevat käyttöön. "
+
#. 7bZSP
-#: cui/uiconfig/ui/opthtmlpage.ui:326
+#: cui/uiconfig/ui/opthtmlpage.ui:366
msgctxt "opthtmlpage|unknowntag"
msgid "_Import unknown HTML tags as fields"
msgstr "Tuo tuntemattomat HTML-koodit kenttinä"
+#. QvehA
+#: cui/uiconfig/ui/opthtmlpage.ui:376
+msgctxt "extended_tip|unknowntag"
+msgid "Mark this check box if you want tags that are not recognized by %PRODUCTNAME to be imported as fields."
+msgstr "Valintaruutu merkitään, kun halutaan, että ne muotoilukoodit, joita %PRODUCTNAME ei tunnista, tuodaan kenttinä."
+
#. VFTrU
-#: cui/uiconfig/ui/opthtmlpage.ui:342
+#: cui/uiconfig/ui/opthtmlpage.ui:387
msgctxt "opthtmlpage|numbersenglishus"
msgid "_Use '%ENGLISHUSLOCALE' locale for numbers"
msgstr "Käytä luvuille maa-asetusta '%ENGLISHUSLOCALE'"
+#. c4j5A
+#: cui/uiconfig/ui/opthtmlpage.ui:397
+msgctxt "extended_tip|numbersenglishus"
+msgid "If not checked, numbers will be interpreted according to the setting in Language Settings - Language of - Locale setting in the Options dialog box. If checked, numbers will be interpreted as 'English (USA)' locale."
+msgstr "-Ellei merkitä, luvut tulkitaan Asetukset-valintaikkunan Kieliasetukset - Kielet - Maa-asetus -asetuksen mukaisesti. Jos tämä ruutu merkitään, luvut tulkitaan 'amerikanenglanti' -maa-asetuksen mukaisesti."
+
#. Fnsdh
-#: cui/uiconfig/ui/opthtmlpage.ui:364
+#: cui/uiconfig/ui/opthtmlpage.ui:414
msgctxt "opthtmlpage|label2"
msgid "Import"
msgstr "Tuonti"
#. UajLE
-#: cui/uiconfig/ui/opthtmlpage.ui:408
+#: cui/uiconfig/ui/opthtmlpage.ui:458
msgctxt "opthtmlpage|charsetFT"
msgid "Character _set:"
msgstr "Merkistö:"
+#. bTGc4
+#: cui/uiconfig/ui/opthtmlpage.ui:476
+msgctxt "extended_tip|charset"
+msgid "Select the appropriate character set for the export"
+msgstr "Valitaan vientiin sopiva merkistö"
+
#. nJtoS
-#: cui/uiconfig/ui/opthtmlpage.ui:438
+#: cui/uiconfig/ui/opthtmlpage.ui:493
msgctxt "opthtmlpage|savegrflocal"
msgid "_Copy local images to Internet"
msgstr "Kopioi paikalliset kuvat Internetiin"
+#. fPAEu
+#: cui/uiconfig/ui/opthtmlpage.ui:503
+msgctxt "extended_tip|savegrflocal"
+msgid "Mark this check box to automatically upload the embedded pictures to the Internet server when uploading using FTP. Use the Save As dialog to save the document and enter a complete FTP URL as the file name in the Internet."
+msgstr "Tämä valintaruutu merkitään, jos upotetut kuvat halutaan kopioida automaattisesti Internet-palvelimelle FTP-tiedonsiirtoa käytettäessä. Tallenna nimellä -valintaikkunaa käytetään asiakirjojen tallennukseen käyttäen koko FTP URL -osoitetta tiedostonnimenä Internetissä."
+
#. Xc4iM
-#: cui/uiconfig/ui/opthtmlpage.ui:454
+#: cui/uiconfig/ui/opthtmlpage.ui:514
msgctxt "opthtmlpage|printextension"
msgid "_Print layout"
msgstr "Tulostusasettelu"
+#. CMsrc
+#: cui/uiconfig/ui/opthtmlpage.ui:524
+msgctxt "extended_tip|printextension"
+msgid "If you mark this field, the print layout of the current document (for example, table of contents with justified page numbers and dot leaders) is exported as well."
+msgstr ""
+
#. Wwuvt
-#: cui/uiconfig/ui/opthtmlpage.ui:470
+#: cui/uiconfig/ui/opthtmlpage.ui:535
msgctxt "opthtmlpage|starbasicwarning"
msgid "Display _warning"
msgstr "Näytä varoitus"
+#. wArnh
+#: cui/uiconfig/ui/opthtmlpage.ui:546
+msgctxt "extended_tip|starbasicwarning"
+msgid "If this field is marked, when exporting to HTML a warning is shown that %PRODUCTNAME Basic macros will be lost."
+msgstr "Jos kenttä on merkitty, vietäessä HTML-muotoon näytetään varoitus, että %PRODUCTNAME Basic -makrot menetetään."
+
#. puyKW
-#: cui/uiconfig/ui/opthtmlpage.ui:487
+#: cui/uiconfig/ui/opthtmlpage.ui:557
msgctxt "opthtmlpage|starbasic"
msgid "LibreOffice _Basic"
msgstr "LibreOffice Basic"
+#. BtWXE
+#: cui/uiconfig/ui/opthtmlpage.ui:567
+msgctxt "extended_tip|starbasic"
+msgid "Mark this check box to include the %PRODUCTNAME Basic instructions when exporting to HTML format."
+msgstr "Valintaruutu merkitään %PRODUCTNAME Basic-käskyjen sisällyttämiseksi vietäessä HTML-muotoon."
+
#. sEnBN
-#: cui/uiconfig/ui/opthtmlpage.ui:509
+#: cui/uiconfig/ui/opthtmlpage.ui:584
msgctxt "opthtmlpage|label3"
msgid "Export"
msgstr "Vienti"
+#. TKsp4
+#: cui/uiconfig/ui/opthtmlpage.ui:606
+msgctxt "extended_tip|OptHtmlPage"
+msgid "Defines settings for HTML pages."
+msgstr "Määritetään HTML-sivujen asetukset."
+
#. ecN5A
#: cui/uiconfig/ui/optionsdialog.ui:18
msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Asetukset"
+#. 5UNGW
+#: cui/uiconfig/ui/optionsdialog.ui:56
+msgctxt "optionsdialog|extended_tip|revert"
+msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. 9asgn
+#: cui/uiconfig/ui/optionsdialog.ui:110
+msgctxt "optionsdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. CgiEq
-#: cui/uiconfig/ui/optjsearchpage.ui:33
+#: cui/uiconfig/ui/optjsearchpage.ui:34
msgctxt "optjsearchpage|matchcase"
msgid "_uppercase/lowercase"
msgstr "isot kirjaimet/pienet kirjaimet"
+#. HLhzj
+#: cui/uiconfig/ui/optjsearchpage.ui:43
+msgctxt "extended_tip|matchcase"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. MkLv3
-#: cui/uiconfig/ui/optjsearchpage.ui:50
+#: cui/uiconfig/ui/optjsearchpage.ui:54
msgctxt "optjsearchpage|matchfullhalfwidth"
msgid "_full-width/half-width forms"
msgstr "täysleveät/puolileveät muodot"
+#. 35mFr
+#: cui/uiconfig/ui/optjsearchpage.ui:63
+msgctxt "extended_tip|matchfullhalfwidth"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. FPFmB
-#: cui/uiconfig/ui/optjsearchpage.ui:67
+#: cui/uiconfig/ui/optjsearchpage.ui:74
msgctxt "optjsearchpage|matchhiraganakatakana"
msgid "_hiragana/katakana"
msgstr "hiragana/katakana"
+#. LUPFs
+#: cui/uiconfig/ui/optjsearchpage.ui:83
+msgctxt "extended_tip|matchhiraganakatakana"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. vx6x8
-#: cui/uiconfig/ui/optjsearchpage.ui:84
+#: cui/uiconfig/ui/optjsearchpage.ui:94
msgctxt "optjsearchpage|matchcontractions"
msgid "_contractions (yo-on, sokuon)"
msgstr "diftongit (yo-on, sokuon)"
+#. xYeGB
+#: cui/uiconfig/ui/optjsearchpage.ui:103
+msgctxt "extended_tip|matchcontractions"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. DLxj9
-#: cui/uiconfig/ui/optjsearchpage.ui:101
+#: cui/uiconfig/ui/optjsearchpage.ui:114
msgctxt "optjsearchpage|matchminusdashchoon"
msgid "_minus/dash/cho-on"
msgstr "miinus/viiva/cho-on"
+#. pkg8E
+#: cui/uiconfig/ui/optjsearchpage.ui:123
+msgctxt "extended_tip|matchminusdashchoon"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. hYq5H
-#: cui/uiconfig/ui/optjsearchpage.ui:118
+#: cui/uiconfig/ui/optjsearchpage.ui:134
msgctxt "optjsearchpage|matchrepeatcharmarks"
msgid "'re_peat character' marks"
msgstr "merkintoistomerkit"
+#. fHHv6
+#: cui/uiconfig/ui/optjsearchpage.ui:143
+msgctxt "extended_tip|matchrepeatcharmarks"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. 62963
-#: cui/uiconfig/ui/optjsearchpage.ui:135
+#: cui/uiconfig/ui/optjsearchpage.ui:154
msgctxt "optjsearchpage|matchvariantformkanji"
msgid "_variant-form kanji (itaiji)"
msgstr "kanji-variaatiot (itaiji)"
+#. EQ6FA
+#: cui/uiconfig/ui/optjsearchpage.ui:163
+msgctxt "extended_tip|matchvariantformkanji"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. ghXPH
-#: cui/uiconfig/ui/optjsearchpage.ui:152
+#: cui/uiconfig/ui/optjsearchpage.ui:174
msgctxt "optjsearchpage|matcholdkanaforms"
msgid "_old Kana forms"
msgstr "vanhat kana-muodot"
+#. 2WWSU
+#: cui/uiconfig/ui/optjsearchpage.ui:183
+msgctxt "extended_tip|matcholdkanaforms"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. Wxc7u
-#: cui/uiconfig/ui/optjsearchpage.ui:169
+#: cui/uiconfig/ui/optjsearchpage.ui:194
msgctxt "optjsearchpage|matchdiziduzu"
msgid "_di/zi, du/zu"
msgstr "di/zi, du/zu"
+#. EBvfD
+#: cui/uiconfig/ui/optjsearchpage.ui:203
+msgctxt "extended_tip|matchdiziduzu"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. mAzGZ
-#: cui/uiconfig/ui/optjsearchpage.ui:186
+#: cui/uiconfig/ui/optjsearchpage.ui:214
msgctxt "optjsearchpage|matchbavahafa"
msgid "_ba/va, ha/fa"
msgstr "ba/va, ha/fa"
+#. QMJfK
+#: cui/uiconfig/ui/optjsearchpage.ui:223
+msgctxt "extended_tip|matchbavahafa"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. MJAYD
-#: cui/uiconfig/ui/optjsearchpage.ui:203
+#: cui/uiconfig/ui/optjsearchpage.ui:234
msgctxt "optjsearchpage|matchtsithichidhizi"
msgid "_tsi/thi/chi, dhi/zi"
msgstr "tsi/thi/chi, dhi/zi"
+#. WBzBC
+#: cui/uiconfig/ui/optjsearchpage.ui:243
+msgctxt "extended_tip|matchtsithichidhizi"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. CDA8F
-#: cui/uiconfig/ui/optjsearchpage.ui:220
+#: cui/uiconfig/ui/optjsearchpage.ui:254
msgctxt "optjsearchpage|matchhyuiyubyuvyu"
msgid "h_yu/fyu, byu/vyu"
msgstr "hyu/fyu, byu/vyu"
+#. ZHDR5
+#: cui/uiconfig/ui/optjsearchpage.ui:263
+msgctxt "extended_tip|matchhyuiyubyuvyu"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. MsCme
-#: cui/uiconfig/ui/optjsearchpage.ui:237
+#: cui/uiconfig/ui/optjsearchpage.ui:274
msgctxt "optjsearchpage|matchseshezeje"
msgid "_se/she, ze/je"
msgstr "se/she, ze/je"
+#. ZgHGb
+#: cui/uiconfig/ui/optjsearchpage.ui:283
+msgctxt "extended_tip|matchseshezeje"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. nRKqj
-#: cui/uiconfig/ui/optjsearchpage.ui:254
+#: cui/uiconfig/ui/optjsearchpage.ui:294
msgctxt "optjsearchpage|matchiaiya"
msgid "_ia/iya (piano/piyano)"
msgstr "ia/iya (piano/piyano)"
+#. SANdY
+#: cui/uiconfig/ui/optjsearchpage.ui:303
+msgctxt "extended_tip|matchiaiya"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. 4i3uv
-#: cui/uiconfig/ui/optjsearchpage.ui:271
+#: cui/uiconfig/ui/optjsearchpage.ui:314
msgctxt "optjsearchpage|matchkiku"
msgid "_ki/ku (tekisuto/tekusuto)"
msgstr "ki/ku (tekisuto/tekusuto)"
+#. s4qyS
+#: cui/uiconfig/ui/optjsearchpage.ui:323
+msgctxt "extended_tip|matchkiku"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. eEXX5
-#: cui/uiconfig/ui/optjsearchpage.ui:288
+#: cui/uiconfig/ui/optjsearchpage.ui:334
msgctxt "optjsearchpage|matchprolongedsoundmark"
msgid "Prolon_ged vowels (ka-/kaa)"
msgstr "Venytetyt vokaalit (ka-/kaa)"
+#. rRCUA
+#: cui/uiconfig/ui/optjsearchpage.ui:343
+msgctxt "extended_tip|matchprolongedsoundmark"
+msgid "Specifies the options to be treated as equal in a search."
+msgstr "Merkinnällä määrätään, että esitetyt vaihtoehdot käsitellään samanarvoisina haussa."
+
#. rPGGZ
-#: cui/uiconfig/ui/optjsearchpage.ui:311
+#: cui/uiconfig/ui/optjsearchpage.ui:360
msgctxt "optjsearchpage|label1"
msgid "Treat as Equal"
msgstr "Käsittele yhtäläisinä"
#. wT3mJ
-#: cui/uiconfig/ui/optjsearchpage.ui:345
+#: cui/uiconfig/ui/optjsearchpage.ui:394
msgctxt "optjsearchpage|ignorepunctuation"
msgid "Pu_nctuation characters"
msgstr "Välimerkit"
+#. zACWR
+#: cui/uiconfig/ui/optjsearchpage.ui:403
+msgctxt "extended_tip|ignorepunctuation"
+msgid "Specifies the characters to be ignored."
+msgstr "Merkinnällä määrätään, että merkit ohitetaan."
+
#. 5JD7N
-#: cui/uiconfig/ui/optjsearchpage.ui:362
+#: cui/uiconfig/ui/optjsearchpage.ui:414
msgctxt "optjsearchpage|ignorewhitespace"
msgid "_Whitespace characters"
msgstr "Tyhjän välin merkit"
+#. vyC8h
+#: cui/uiconfig/ui/optjsearchpage.ui:423
+msgctxt "extended_tip|ignorewhitespace"
+msgid "Specifies the characters to be ignored."
+msgstr "Merkinnällä määrätään, että merkit ohitetaan."
+
#. W92kS
-#: cui/uiconfig/ui/optjsearchpage.ui:379
+#: cui/uiconfig/ui/optjsearchpage.ui:434
msgctxt "optjsearchpage|ignoremiddledot"
msgid "Midd_le dots"
msgstr "Keskellä olevat pisteet"
+#. kA2cf
+#: cui/uiconfig/ui/optjsearchpage.ui:443
+msgctxt "extended_tip|ignoremiddledot"
+msgid "Specifies the characters to be ignored."
+msgstr "Merkinnällä määrätään, että merkit ohitetaan."
+
#. nZXcM
-#: cui/uiconfig/ui/optjsearchpage.ui:405
+#: cui/uiconfig/ui/optjsearchpage.ui:463
msgctxt "optjsearchpage|label2"
msgid "Ignore"
msgstr "Ohita"
@@ -11349,294 +14953,504 @@ msgctxt "optlanguagespage|label4"
msgid "_User interface:"
msgstr "Käyttöliittymä:"
+#. PwNF7
+#: cui/uiconfig/ui/optlanguagespage.ui:83
+msgctxt "extended_tip|userinterface"
+msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack or a multi-language version of %PRODUCTNAME."
+msgstr "Valitaan käyttöliittymän kieli, joka näkyy esimerkiksi valikoissa, valintaikkunoissa ja ohjetiedostoissa. Ainakin yksi lisäkieli tai monikielinen %PRODUCTNAME-versio pitää olla asennettuna."
+
#. e8VE3
-#: cui/uiconfig/ui/optlanguagespage.ui:95
+#: cui/uiconfig/ui/optlanguagespage.ui:100
msgctxt "optlanguagespage|label1"
msgid "Language Of"
msgstr "Kieli"
+#. E3UQs
+#: cui/uiconfig/ui/optlanguagespage.ui:156
+msgctxt "extended_tip|westernlanguage"
+msgid "Specifies the language used for the spellcheck function in western alphabets."
+msgstr "Määritetään länsimaisilla aakkosilla oikoluvussa käytettävä kieli."
+
+#. oP5CC
+#: cui/uiconfig/ui/optlanguagespage.ui:188
+msgctxt "extended_tip|asianlanguage"
+msgid "Specifies the language used for the spellcheck function in Asian alphabets."
+msgstr "Määritetään aasialaisilla kirjainmerkeillä oikoluvussa käytettävä kieli."
+
+#. cZNNA
+#: cui/uiconfig/ui/optlanguagespage.ui:220
+msgctxt "extended_tip|complexlanguage"
+msgid "Specifies the language for the complex text layout spellcheck."
+msgstr "Määritetään kieli laajennetun tekstiasettelun oikoluvulle."
+
#. 3JLVm
-#: cui/uiconfig/ui/optlanguagespage.ui:211
+#: cui/uiconfig/ui/optlanguagespage.ui:231
msgctxt "optlanguagespage|currentdoc"
msgid "For the current document only"
msgstr "Vain nykyisessä asiakirjassa"
+#. Xg3qT
+#: cui/uiconfig/ui/optlanguagespage.ui:241
+msgctxt "extended_tip|currentdoc"
+msgid "Specifies that the settings for default languages are valid only for the current document."
+msgstr "Valinta määrä, että asiakirjan oletuskielen asetukset ovat voimassa vain työstettävässä asiakirjassa."
+
#. zeaKX
-#: cui/uiconfig/ui/optlanguagespage.ui:227
+#: cui/uiconfig/ui/optlanguagespage.ui:252
msgctxt "optlanguagespage|ctlsupport"
msgid "Complex _text layout:"
msgstr "Kompleksisen tekstin asettelu:"
+#. gTEDf
+#: cui/uiconfig/ui/optlanguagespage.ui:261
+msgctxt "extended_tip|ctlsupport"
+msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout in %PRODUCTNAME."
+msgstr "Merkitsemällä ruutu otetaan käyttöön laajennettu tekstiasettelu (CTL), jota voi nyt säätää %PRODUCTNAME-ohjelmistossa."
+
#. mpLF7
-#: cui/uiconfig/ui/optlanguagespage.ui:242
+#: cui/uiconfig/ui/optlanguagespage.ui:272
msgctxt "optlanguagespage|asiansupport"
msgid "Asian:"
msgstr "Aasialainen:"
+#. GT6AZ
+#: cui/uiconfig/ui/optlanguagespage.ui:281
+msgctxt "extended_tip|asiansupport"
+msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings in %PRODUCTNAME."
+msgstr "Aktivoidaan aasialaisten kielten tuki. Nyt voidaan muokata %PRODUCTNAME-ohjelmiston aasialaisten kielten muita asetuksia."
+
#. QwDAK
-#: cui/uiconfig/ui/optlanguagespage.ui:259
+#: cui/uiconfig/ui/optlanguagespage.ui:294
msgctxt "optlanguagespage|western"
msgid "Western:"
msgstr "Länsimainen:"
#. K62Ex
-#: cui/uiconfig/ui/optlanguagespage.ui:280
+#: cui/uiconfig/ui/optlanguagespage.ui:315
msgctxt "optlanguagespage|label2"
msgid "Default Languages for Documents"
msgstr "Asiakirjojen oletuskielet"
#. 25J4E
-#: cui/uiconfig/ui/optlanguagespage.ui:311
+#: cui/uiconfig/ui/optlanguagespage.ui:346
msgctxt "optlanguagespage|ignorelanguagechange"
msgid "Ignore s_ystem input language"
msgstr "Sivuuta järjestelmän syöttökieliasetus"
+#. CCumn
+#: cui/uiconfig/ui/optlanguagespage.ui:355
+msgctxt "extended_tip|ignorelanguagechange"
+msgid "Indicates whether changes to the system input language/keyboard will be ignored. If ignored, when new text is typed that text will follow the language of the document or current paragraph, not the current system language."
+msgstr "Ilmaistaan, ohitetaanko muutokset järjestelmän syöttökielessä tai näppäimistössä. Jos ohitetaan, kirjoitettaessa uusi teksti noudattaa asiakirjan tai kappaleen kieltä, ei nykyistä järjestelmän kieltä."
+
#. 83eTv
-#: cui/uiconfig/ui/optlanguagespage.ui:332
+#: cui/uiconfig/ui/optlanguagespage.ui:372
msgctxt "optlanguagespage|label3"
msgid "Enhanced Language Support"
msgstr "Parannettu kielituki"
#. XqCkq
-#: cui/uiconfig/ui/optlanguagespage.ui:369
+#: cui/uiconfig/ui/optlanguagespage.ui:409
msgctxt "optlanguagespage|localesettingFT"
msgid "Locale setting:"
msgstr "Maa-asetus:"
#. Zyao3
-#: cui/uiconfig/ui/optlanguagespage.ui:383
+#: cui/uiconfig/ui/optlanguagespage.ui:423
msgctxt "optlanguagespage|label6"
msgid "Decimal separator key:"
msgstr "Desimaalierotinmerkki:"
#. cuqUB
-#: cui/uiconfig/ui/optlanguagespage.ui:397
+#: cui/uiconfig/ui/optlanguagespage.ui:437
msgctxt "optlanguagespage|defaultcurrency"
msgid "_Default currency:"
msgstr "Oletusvaluutta:"
#. XmgPh
-#: cui/uiconfig/ui/optlanguagespage.ui:411
+#: cui/uiconfig/ui/optlanguagespage.ui:451
msgctxt "optlanguagespage|dataaccpatterns"
msgid "Date acceptance _patterns:"
msgstr "Päivämäärän syöttömuodot:"
+#. yBkAN
+#: cui/uiconfig/ui/optlanguagespage.ui:469
+msgctxt "extended_tip|localesetting"
+msgid "Specifies the locale setting of the country setting. This influences settings for numbering, currency and units of measure."
+msgstr "Määritetään aluekohtaiset asetukset. Tämä vaikuttaa numeroinnin, valuutan ja mittayksiköiden asetuksiin."
+
+#. XqESm
+#: cui/uiconfig/ui/optlanguagespage.ui:486
+msgctxt "extended_tip|currencylb"
+msgid "Specifies the default currency that is used for the currency format and the currency fields."
+msgstr "Määritetään valuuttamuotoiluissa ja valuuttakentissä käytettävä oletusvaluutta."
+
+#. eNFJn
+#: cui/uiconfig/ui/optlanguagespage.ui:504
+msgctxt "extended_tip|datepatterns"
+msgid "Specifies the date acceptance patterns for the current locale. Calc spreadsheet and Writer table cell input needs to match locale dependent date acceptance patterns before it is recognized as a valid date."
+msgstr ""
+
#. WoNAA
-#: cui/uiconfig/ui/optlanguagespage.ui:460
+#: cui/uiconfig/ui/optlanguagespage.ui:515
msgctxt "optlanguagespage|decimalseparator"
msgid "_Same as locale setting ( %1 )"
msgstr "Maa-asetuksen mukainen ( %1 )"
+#. G5VXy
+#: cui/uiconfig/ui/optlanguagespage.ui:524
+msgctxt "extended_tip|decimalseparator"
+msgid "Specifies to use the decimal separator key that is set in your system when you press the respective key on the number pad."
+msgstr "Merkinnällä määrätään, että numeronäppäimistön desimaalipilkkunäppäin tuottaa vaikkapa pisteen, jos maa-asetuksen mukainen desimaalierotin on piste."
+
#. BGtpx
-#: cui/uiconfig/ui/optlanguagespage.ui:481
+#: cui/uiconfig/ui/optlanguagespage.ui:541
msgctxt "optlanguagespage|label7"
msgid "Formats"
msgstr "Muodot"
+#. HASiD
+#: cui/uiconfig/ui/optlanguagespage.ui:555
+msgctxt "extended_tip|OptLanguagesPage"
+msgid "Defines the default languages and some other locale settings for documents."
+msgstr "Määritetään oletuskielet ja joitakin muita asiakirjojen paikallisia asetuksia."
+
+#. CgUDR
+#: cui/uiconfig/ui/optlingupage.ui:136
+msgctxt "lingumodules"
+msgid "Contains the installed language modules."
+msgstr ""
+
#. 8kxYC
-#: cui/uiconfig/ui/optlingupage.ui:141
+#: cui/uiconfig/ui/optlingupage.ui:149
msgctxt "optlingupage|lingumodulesedit"
msgid "_Edit..."
msgstr "Muokkaa..."
#. va3tH
-#: cui/uiconfig/ui/optlingupage.ui:149
+#: cui/uiconfig/ui/optlingupage.ui:157
msgctxt "optlingupage|lingumodulesedit-atkobject"
msgid "Edit Available language modules"
msgstr "Muokkaa käytettävissä olevia kielimoduuleja"
-#. 2LJ2C
-#: cui/uiconfig/ui/optlingupage.ui:172
+#. peVgj
+#: cui/uiconfig/ui/optlingupage.ui:158
+msgctxt "lingumodulesedit"
+msgid "To edit a language module, select it and click Edit."
+msgstr ""
+
+#. SBvTc
+#: cui/uiconfig/ui/optlingupage.ui:226
msgctxt "optlingupage|lingumodulesft"
-msgid "_Available language modules"
-msgstr "Käytettävissä olevat kielimoduulit"
+msgid "_Available Language Modules"
+msgstr ""
+
+#. efvBg
+#: cui/uiconfig/ui/optlingupage.ui:309
+msgctxt "lingudicts"
+msgid "Lists the available user dictionaries."
+msgstr ""
#. qBrCR
-#: cui/uiconfig/ui/optlingupage.ui:269
+#: cui/uiconfig/ui/optlingupage.ui:329
msgctxt "optlingupage|lingudictsnew"
msgid "_New..."
msgstr "Uusi..."
+#. 9ozFQ
+#: cui/uiconfig/ui/optlingupage.ui:336
+msgctxt "lingudictsnew"
+msgid "Opens the New Dictionary dialog, in which you can name a new user-defined dictionary or dictionary of exceptions and specify the language."
+msgstr ""
+
#. mCu3q
-#: cui/uiconfig/ui/optlingupage.ui:283
+#: cui/uiconfig/ui/optlingupage.ui:348
msgctxt "optlingupage|lingudictsedit"
msgid "Ed_it..."
msgstr "Muokkaa..."
#. B7nKn
-#: cui/uiconfig/ui/optlingupage.ui:290
+#: cui/uiconfig/ui/optlingupage.ui:355
msgctxt "optlingupage|lingudictsedit-atkobject"
msgid "Edit User-defined dictionaries"
msgstr "Muokkaa omia sanastoja"
+#. Y2AmA
+#: cui/uiconfig/ui/optlingupage.ui:356
+msgctxt "lingudictsedit"
+msgid "Opens the Edit custom dictionary dialog, in which you can add to your custom dictionary or edit existing entries."
+msgstr ""
+
#. WCFD5
-#: cui/uiconfig/ui/optlingupage.ui:302
+#: cui/uiconfig/ui/optlingupage.ui:368
msgctxt "optlingupage|lingudictsdelete"
msgid "_Delete"
msgstr "Poista"
-#. hUBdn
-#: cui/uiconfig/ui/optlingupage.ui:328
+#. LXG4L
+#: cui/uiconfig/ui/optlingupage.ui:375
+msgctxt "lingudictsdelete"
+msgid "Deletes the selected dictionary after a confirmation, provided it is not write-protected."
+msgstr ""
+
+#. qEqZD
+#: cui/uiconfig/ui/optlingupage.ui:420
msgctxt "optlingupage|lingudictsft"
-msgid "_User-defined dictionaries"
+msgid "_User-defined Dictionaries"
msgstr ""
-#. XCpcE
-#: cui/uiconfig/ui/optlingupage.ui:365
-msgctxt "optlingupage|moredictslink"
-msgid "Get more dictionaries online..."
-msgstr "Lisää sanastoja verkosta..."
+#. sE9tc
+#: cui/uiconfig/ui/optlingupage.ui:505
+msgctxt "linguoptions"
+msgid "Defines the options for the spellcheck and hyphenation."
+msgstr ""
#. 58e5v
-#: cui/uiconfig/ui/optlingupage.ui:436
+#: cui/uiconfig/ui/optlingupage.ui:518
msgctxt "optlingupage|linguoptionsedit"
msgid "Edi_t..."
msgstr "Muokkaa..."
#. 5MSSC
-#: cui/uiconfig/ui/optlingupage.ui:444
+#: cui/uiconfig/ui/optlingupage.ui:526
msgctxt "optlingupage|linguoptionsedit-atkobject"
msgid "Edit Options"
msgstr "Muokkaa asetuksia"
+#. f85qm
+#: cui/uiconfig/ui/optlingupage.ui:527
+msgctxt "linguoptionsedit"
+msgid "If you want to change a value, select the entry and then click Edit."
+msgstr ""
+
+#. XCpcE
+#: cui/uiconfig/ui/optlingupage.ui:554
+msgctxt "optlingupage|moredictslink"
+msgid "Get more dictionaries online..."
+msgstr "Lisää sanastoja verkosta..."
+
#. gardH
-#: cui/uiconfig/ui/optlingupage.ui:461
+#: cui/uiconfig/ui/optlingupage.ui:597
msgctxt "optlingupage|label4"
msgid "_Options"
msgstr "Asetukset"
+#. ARk3s
+#: cui/uiconfig/ui/optlingupage.ui:632
+msgctxt "OptLinguPage"
+msgid "Specifies the properties of the spelling, thesaurus and hyphenation."
+msgstr ""
+
#. ADZ8E
#: cui/uiconfig/ui/optnewdictionarydialog.ui:8
msgctxt "optnewdictionarydialog|OptNewDictionaryDialog"
msgid "New Dictionary"
msgstr "Uusi sanasto"
+#. oWC8W
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:104
+msgctxt "nameedit"
+msgid "Specifies the name of the new custom dictionary."
+msgstr ""
+
#. XucrZ
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:112
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:117
msgctxt "optnewdictionarydialog|name_label"
msgid "_Name:"
msgstr "Nimi:"
#. ypeEr
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:126
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:131
msgctxt "optnewdictionarydialog|language_label"
msgid "_Language:"
msgstr "Kieli:"
#. SmQV7
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:138
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:143
msgctxt "optnewdictionarydialog|except"
msgid "_Exception (-)"
msgstr "Poikkeus (-)"
+#. saphk
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:152
+msgctxt "except"
+msgid "Specifies whether you wish to avoid certain words in your documents."
+msgstr ""
+
+#. VJQ4d
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:175
+msgctxt "language"
+msgid "By selecting a certain language you can limit the use of the custom dictionary."
+msgstr ""
+
#. CpgB2
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:177
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:192
msgctxt "optnewdictionarydialog|label1"
msgid "Dictionary"
msgstr "Sanasto"
+#. Vbp6F
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:217
+msgctxt "OptNewDictionaryDialog"
+msgid "In the Dictionary section you can name a new user-defined dictionary or dictionary of exceptions and specify the language."
+msgstr ""
+
#. n6vQH
#: cui/uiconfig/ui/optonlineupdatepage.ui:34
msgctxt "optonlineupdatepage|autocheck"
msgid "_Check for updates automatically"
msgstr "_Tarkista päivitykset automaattisesti"
+#. k3qNc
+#: cui/uiconfig/ui/optonlineupdatepage.ui:43
+msgctxt "extended_tip|autocheck"
+msgid "Mark to check for online updates periodically, then select the time interval how often %PRODUCTNAME will check for online updates."
+msgstr "Merkitään ruutu verkkopäivitysten sallimiseksi, sitten valitaan, miten usein %PRODUCTNAME tarkistaa verkkopäivityksiä."
+
#. Hbe2C
-#: cui/uiconfig/ui/optonlineupdatepage.ui:60
+#: cui/uiconfig/ui/optonlineupdatepage.ui:64
msgctxt "optonlineupdatepage|everyday"
msgid "Every da_y"
msgstr "Joka _päivä"
+#. yFD8D
+#: cui/uiconfig/ui/optonlineupdatepage.ui:74
+msgctxt "extended_tip|everyday"
+msgid "A check will be performed once a day."
+msgstr "Tarkistus tehdään päivittäin."
+
#. 3zd7m
-#: cui/uiconfig/ui/optonlineupdatepage.ui:76
+#: cui/uiconfig/ui/optonlineupdatepage.ui:85
msgctxt "optonlineupdatepage|everyweek"
msgid "Every _week"
msgstr "Joka _viikko"
+#. Xcj78
+#: cui/uiconfig/ui/optonlineupdatepage.ui:95
+msgctxt "extended_tip|everyweek"
+msgid "A check will be performed once a week. This is the default setting."
+msgstr "Tarkistus tehdään viikoittain. Tämä on oletusasetus."
+
#. 29exv
-#: cui/uiconfig/ui/optonlineupdatepage.ui:92
+#: cui/uiconfig/ui/optonlineupdatepage.ui:106
msgctxt "optonlineupdatepage|everymonth"
msgid "Every _month"
msgstr "Joka _kuukausi"
+#. oEWBt
+#: cui/uiconfig/ui/optonlineupdatepage.ui:116
+msgctxt "extended_tip|everymonth"
+msgid "A check will be performed once a month."
+msgstr "Tarkistus tehdään kuukausittain."
+
#. pGuvH
-#: cui/uiconfig/ui/optonlineupdatepage.ui:117
+#: cui/uiconfig/ui/optonlineupdatepage.ui:136
msgctxt "optonlineupdatepage|checknow"
msgid "Check _Now"
msgstr "Tarkista _heti"
+#. 4DhgF
+#: cui/uiconfig/ui/optonlineupdatepage.ui:144
+msgctxt "extended_tip|checknow"
+msgid "A check will be performed now."
+msgstr "Tarkistus tehdään nyt."
+
#. UvuAC
-#: cui/uiconfig/ui/optonlineupdatepage.ui:145
+#: cui/uiconfig/ui/optonlineupdatepage.ui:169
msgctxt "optonlineupdatepage|lastchecked"
msgid "Last checked: %DATE%, %TIME%"
msgstr "Viimeksi tarkistettu: %DATE%, %TIME%"
#. rw57A
-#: cui/uiconfig/ui/optonlineupdatepage.ui:158
+#: cui/uiconfig/ui/optonlineupdatepage.ui:182
msgctxt "optonlineupdatepage|neverchecked"
msgid "Last checked: Not yet"
msgstr "Viimeksi tarkistettu: ei vielä"
#. DWDdu
-#: cui/uiconfig/ui/optonlineupdatepage.ui:206
+#: cui/uiconfig/ui/optonlineupdatepage.ui:230
msgctxt "optonlineupdatepage|autodownload"
msgid "_Download updates automatically"
msgstr "_Lataa päivitykset automaattisesti"
+#. 5TCn4
+#: cui/uiconfig/ui/optonlineupdatepage.ui:239
+msgctxt "extended_tip|autodownload"
+msgid "Enable the automatic download of updates to the specified folder."
+msgstr ""
+
#. AmVMh
-#: cui/uiconfig/ui/optonlineupdatepage.ui:233
+#: cui/uiconfig/ui/optonlineupdatepage.ui:262
msgctxt "optonlineupdatepage|changepath"
msgid "Ch_ange..."
msgstr "_Vaihda..."
+#. mCu2A
+#: cui/uiconfig/ui/optonlineupdatepage.ui:270
+msgctxt "extended_tip|changepath"
+msgid "Click to select the destination folder for downloaded files."
+msgstr ""
+
#. iCVFj
-#: cui/uiconfig/ui/optonlineupdatepage.ui:254
+#: cui/uiconfig/ui/optonlineupdatepage.ui:288
msgctxt "optonlineupdatepage|destpathlabel"
msgid "Download destination:"
msgstr "Latauskansio:"
+#. j2D7W
+#: cui/uiconfig/ui/optonlineupdatepage.ui:292
+msgctxt "extended_tip|destpathlabel"
+msgid "Click to select the destination folder for downloaded files."
+msgstr ""
+
#. vDRC5
-#: cui/uiconfig/ui/optonlineupdatepage.ui:299
+#: cui/uiconfig/ui/optonlineupdatepage.ui:338
msgctxt "optonlineupdatepage|labeldest"
msgid "Download Destination"
msgstr "Latauskansio"
#. JqAh4
-#: cui/uiconfig/ui/optonlineupdatepage.ui:333
+#: cui/uiconfig/ui/optonlineupdatepage.ui:372
msgctxt "optonlineupdatepage|extrabits"
msgid "_Send OS version and basic hardware information"
msgstr "Lähetä käyttöjärjestelmän versio ja perustiedot laitteistosta"
#. b95Sc
-#: cui/uiconfig/ui/optonlineupdatepage.ui:337
+#: cui/uiconfig/ui/optonlineupdatepage.ui:376
msgctxt "optonlineupdatepage|extrabits|tooltip_text"
msgid "This information lets us make optimizations for your hardware and operating system."
msgstr "Näiden tietojen perusteella voimme optimoida ohjelmistoa laitteistollesi ja käyttöjärjestelmällesi."
#. f2Wtr
-#: cui/uiconfig/ui/optonlineupdatepage.ui:362
+#: cui/uiconfig/ui/optonlineupdatepage.ui:401
msgctxt "optonlineupdatepage|useragent_label"
msgid "User Agent:"
msgstr "Käyttämäsi ohjelmisto:"
#. agWbu
-#: cui/uiconfig/ui/optonlineupdatepage.ui:374
+#: cui/uiconfig/ui/optonlineupdatepage.ui:413
msgctxt "optonlineupdatepage|useragent_changed"
msgid "Hit apply to update"
msgstr "Napsauta käytä päivittääksesi"
#. ZC9EF
-#: cui/uiconfig/ui/optonlineupdatepage.ui:412
+#: cui/uiconfig/ui/optonlineupdatepage.ui:451
msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr "Käyttämäsi ohjelmisto"
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:470
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Ohjelmapäivityksen valinnat"
+#. aJHdb
+#: cui/uiconfig/ui/optonlineupdatepage.ui:478
+msgctxt "extended_tip|OptOnlineUpdatePage"
+msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
+msgstr ""
+
#. QYxCN
#: cui/uiconfig/ui/optopenclpage.ui:29
msgctxt "optopenclpage|useopencl"
@@ -11679,102 +15493,180 @@ msgctxt "optpathspage|internal_paths"
msgid "Internal Paths"
msgstr "Sisäiset polut"
+#. RS5BX
+#: cui/uiconfig/ui/optpathspage.ui:130
+msgctxt "paths"
+msgid "To modify an entry in this list, click the entry and click Edit. You can also double click the entry."
+msgstr ""
+
#. rfDum
-#: cui/uiconfig/ui/optpathspage.ui:145
+#: cui/uiconfig/ui/optpathspage.ui:150
msgctxt "optpathspage|label1"
msgid "Paths used by %PRODUCTNAME"
msgstr "%PRODUCTNAMEn käyttämät polut"
#. k8MmB
-#: cui/uiconfig/ui/optpathspage.ui:166
+#: cui/uiconfig/ui/optpathspage.ui:171
msgctxt "optpathspage|default"
msgid "_Default"
msgstr "O_letus"
+#. U2Nkh
+#: cui/uiconfig/ui/optpathspage.ui:178
+msgctxt "default"
+msgid "The Default button resets the predefined paths for all selected entries."
+msgstr ""
+
#. q8JFc
-#: cui/uiconfig/ui/optpathspage.ui:180
+#: cui/uiconfig/ui/optpathspage.ui:190
msgctxt "optpathspage|edit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. LTD6T
+#: cui/uiconfig/ui/optpathspage.ui:197
+msgctxt "edit"
+msgid "Click to display the Select Path or Edit Paths dialog."
+msgstr ""
+
+#. G5xyX
+#: cui/uiconfig/ui/optpathspage.ui:216
+msgctxt "OptPathsPage"
+msgid "This section contains the default paths to important folders in %PRODUCTNAME. These paths can be edited by the user."
+msgstr ""
+
#. pQEWv
#: cui/uiconfig/ui/optproxypage.ui:30
msgctxt "optproxypage|label2"
msgid "Proxy s_erver:"
msgstr "Välitys_palvelin:"
+#. KLjce
+#: cui/uiconfig/ui/optproxypage.ui:49
+msgctxt "extended_tip|http"
+msgid "Type the name of the proxy server for HTTP."
+msgstr "Kirjoitetaan HTTP-välityspalvelimen nimi."
+
+#. 4Aszp
+#: cui/uiconfig/ui/optproxypage.ui:67
+msgctxt "extended_tip|https"
+msgid "Type the name of the proxy server for HTTPS. Type the port in the right-hand field."
+msgstr "Kirjoitetaan HTTPS-välityspalvelimen nimi. Portti merkitään kenttään oikealla."
+
+#. wtMPj
+#: cui/uiconfig/ui/optproxypage.ui:85
+msgctxt "extended_tip|ftp"
+msgid "Type the name of the proxy server for FTP."
+msgstr "Kirjoitetaan FTP-välityspalvelimen nimi."
+
+#. 6oaAC
+#: cui/uiconfig/ui/optproxypage.ui:103
+msgctxt "extended_tip|noproxy"
+msgid "Specifies the names of the servers that do not require any proxy servers, separated by semicolons."
+msgstr "Määritetään palvelinnimet, jotka eivät vaadi välityspalvelimia. Nimet erotellaan puolipistein."
+
+#. DyExz
+#: cui/uiconfig/ui/optproxypage.ui:123
+msgctxt "extended_tip|httpport"
+msgid "Type the port for the corresponding proxy server."
+msgstr "Kirjoitetaan portti, joka vastaa välityspalvelinta."
+
+#. 5RqLF
+#: cui/uiconfig/ui/optproxypage.ui:143
+msgctxt "extended_tip|httpsport"
+msgid "Type the port for the corresponding proxy server."
+msgstr "Kirjoitetaan portti, joka vastaa välityspalvelinta."
+
+#. sTzye
+#: cui/uiconfig/ui/optproxypage.ui:163
+msgctxt "extended_tip|ftpport"
+msgid "Type the port for the corresponding proxy server."
+msgstr "Kirjoitetaan portti, joka vastaa välityspalvelinta."
+
#. LBWG4
-#: cui/uiconfig/ui/optproxypage.ui:142
+#: cui/uiconfig/ui/optproxypage.ui:177
msgctxt "optproxypage|proxymode"
msgid "None"
msgstr "Ei mikään"
#. 9BdbA
-#: cui/uiconfig/ui/optproxypage.ui:143
+#: cui/uiconfig/ui/optproxypage.ui:178
msgctxt "optproxypage|proxymode"
msgid "System"
msgstr "Järjestelmä"
#. 8D2Di
-#: cui/uiconfig/ui/optproxypage.ui:144
+#: cui/uiconfig/ui/optproxypage.ui:179
msgctxt "optproxypage|proxymode"
msgid "Manual"
msgstr "Manuaalinen"
+#. k9TRd
+#: cui/uiconfig/ui/optproxypage.ui:183
+msgctxt "extended_tip|proxymode"
+msgid "Specifies the type of proxy definition."
+msgstr "Valitaan välityspalvelinmäärityksen tyyppi."
+
#. pkdvs
-#: cui/uiconfig/ui/optproxypage.ui:156
+#: cui/uiconfig/ui/optproxypage.ui:196
msgctxt "optproxypage|httpft"
msgid "HT_TP proxy:"
msgstr "_HTTP-välityspalvelin:"
#. dGMMs
-#: cui/uiconfig/ui/optproxypage.ui:170
+#: cui/uiconfig/ui/optproxypage.ui:210
msgctxt "optproxypage|httpportft"
msgid "_Port:"
msgstr "Portti:"
#. 5tuq7
-#: cui/uiconfig/ui/optproxypage.ui:183
+#: cui/uiconfig/ui/optproxypage.ui:223
msgctxt "optproxypage|httpsft"
msgid "HTTP_S proxy:"
msgstr "HTTPS-välityspalvelin:"
#. egcgL
-#: cui/uiconfig/ui/optproxypage.ui:197
+#: cui/uiconfig/ui/optproxypage.ui:237
msgctxt "optproxypage|ftpft"
msgid "_FTP proxy:"
msgstr "_FTP-välityspalvelin:"
#. ZaUmG
-#: cui/uiconfig/ui/optproxypage.ui:211
+#: cui/uiconfig/ui/optproxypage.ui:251
msgctxt "optproxypage|noproxyft"
msgid "_No proxy for:"
msgstr "Ei v_älitystä kohteelle:"
#. UynC6
-#: cui/uiconfig/ui/optproxypage.ui:225
+#: cui/uiconfig/ui/optproxypage.ui:265
msgctxt "optproxypage|httpsportft"
msgid "P_ort:"
msgstr "Portti:"
#. kmBDu
-#: cui/uiconfig/ui/optproxypage.ui:238
+#: cui/uiconfig/ui/optproxypage.ui:278
msgctxt "optproxypage|ftpportft"
msgid "P_ort:"
msgstr "Portti:"
#. RW6E4
-#: cui/uiconfig/ui/optproxypage.ui:251
+#: cui/uiconfig/ui/optproxypage.ui:291
msgctxt "optproxypage|noproxydesc"
msgid "Separator ;"
msgstr "Erotin ;"
#. FzAg6
-#: cui/uiconfig/ui/optproxypage.ui:274
+#: cui/uiconfig/ui/optproxypage.ui:314
msgctxt "optproxypage|label1"
msgid "Settings"
msgstr "Asetukset"
+#. S7T5C
+#: cui/uiconfig/ui/optproxypage.ui:322
+msgctxt "extended_tip|OptProxyPage"
+msgid "Specifies the type of proxy definition."
+msgstr "Valitaan välityspalvelinmäärityksen tyyppi."
+
#. Cdbvg
#: cui/uiconfig/ui/optsavepage.ui:36
#, fuzzy
@@ -11782,185 +15674,269 @@ msgctxt "optsavepage|load_docprinter"
msgid "Load printer settings with the document"
msgstr "Lataa tulostimen asetukset asiakirjan kanssa"
+#. 69Rzq
+#: cui/uiconfig/ui/optsavepage.ui:45
+msgctxt "load_docprinter"
+msgid "If enabled, the printer settings will be loaded with the document. This can cause a document to be printed on a distant printer, if you do not change the printer manually in the Print dialog. If disabled, your standard printer will be used to print this document. The current printer settings will be stored with the document whether or not this option is checked."
+msgstr ""
+
#. VdFnA
-#: cui/uiconfig/ui/optsavepage.ui:51
+#: cui/uiconfig/ui/optsavepage.ui:56
#, fuzzy
msgctxt "optsavepage|load_settings"
msgid "Load user-specific settings with the document"
msgstr "Lataa käyttäjän määrittämät asetukset asiakirjan kanssa"
+#. CjEVo
+#: cui/uiconfig/ui/optsavepage.ui:65
+msgctxt "load_settings"
+msgid "Loads the user-specific settings saved in a document with the document."
+msgstr ""
+
#. js6Gn
-#: cui/uiconfig/ui/optsavepage.ui:72
+#: cui/uiconfig/ui/optsavepage.ui:82
msgctxt "optsavepage|label1"
msgid "Load"
msgstr "Lataa"
#. bLvCX
-#: cui/uiconfig/ui/optsavepage.ui:109
+#: cui/uiconfig/ui/optsavepage.ui:119
msgctxt "optsavepage|autosave"
msgid "Save _AutoRecovery information every:"
msgstr "Tallenna asiakirjan _palautustiedot joka:"
+#. 6L2Yh
+#: cui/uiconfig/ui/optsavepage.ui:128
+msgctxt "autosave"
+msgid "Specifies that %PRODUCTNAME saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval."
+msgstr ""
+
+#. ipCBG
+#: cui/uiconfig/ui/optsavepage.ui:146
+msgctxt "autosave_spin"
+msgid "Specifies the time interval in minutes for the automatic recovery option."
+msgstr ""
+
#. BN5Js
-#: cui/uiconfig/ui/optsavepage.ui:139
+#: cui/uiconfig/ui/optsavepage.ui:159
msgctxt "optsavepage|autosave_mins"
msgid "minutes"
msgstr "minuutti"
#. UKeCt
-#: cui/uiconfig/ui/optsavepage.ui:154
+#: cui/uiconfig/ui/optsavepage.ui:174
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document too"
msgstr "Tallenna myös itse asiakirja automaattisesti"
+#. udKBa
+#: cui/uiconfig/ui/optsavepage.ui:183
+msgctxt "userautosave"
+msgid "Specifies that %PRODUCTNAME saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
+msgstr ""
+
#. kwFtx
-#: cui/uiconfig/ui/optsavepage.ui:169
+#: cui/uiconfig/ui/optsavepage.ui:194
msgctxt "optsavepage|relative_fsys"
msgid "Save URLs relative to file system"
msgstr "URL-osoitteen tallennus suhteessa tiedostojärjestelmään"
+#. jDKxF
+#: cui/uiconfig/ui/optsavepage.ui:203
+msgctxt "relative_fsys"
+msgid "Select this box for relative saving of URLs in the file system."
+msgstr ""
+
#. 8xmX3
-#: cui/uiconfig/ui/optsavepage.ui:184
+#: cui/uiconfig/ui/optsavepage.ui:214
msgctxt "optsavepage|docinfo"
msgid "_Edit document properties before saving"
msgstr "_Muokkaa asiakirjan ominaisuuksia ennen tallennusta"
+#. LSD3v
+#: cui/uiconfig/ui/optsavepage.ui:223
+msgctxt "docinfo"
+msgid "Specifies that the Properties dialog will appear every time you select the Save As command."
+msgstr ""
+
#. ctAxA
-#: cui/uiconfig/ui/optsavepage.ui:199
+#: cui/uiconfig/ui/optsavepage.ui:234
msgctxt "optsavepage|relative_inet"
msgid "Save URLs relative to internet"
msgstr "URL-osoitteen tallennus suhteessa internetiin"
+#. WYrQB
+#: cui/uiconfig/ui/optsavepage.ui:243
+msgctxt "relative_inet"
+msgid "Select this box for relative saving of URLs to the Internet."
+msgstr ""
+
#. YsjVX
-#: cui/uiconfig/ui/optsavepage.ui:214
+#: cui/uiconfig/ui/optsavepage.ui:254
msgctxt "optsavepage|backup"
msgid "Al_ways create backup copy"
msgstr "_Luo aina varmuuskopio"
+#. TtAJZ
+#: cui/uiconfig/ui/optsavepage.ui:263
+msgctxt "backup"
+msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time %PRODUCTNAME creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
+msgstr ""
+
#. NaGCU
-#: cui/uiconfig/ui/optsavepage.ui:235
+#: cui/uiconfig/ui/optsavepage.ui:280
msgctxt "optsavepage|label2"
msgid "Save"
msgstr "Tallenna"
#. TDBAs
-#: cui/uiconfig/ui/optsavepage.ui:267
+#: cui/uiconfig/ui/optsavepage.ui:312
msgctxt "optsavepage|warnalienformat"
msgid "Warn when not saving in ODF or default format"
msgstr "Varoita tallennettaessa muussa kuin ODF- tai oletusmuodossa"
+#. zGBEu
+#: cui/uiconfig/ui/optsavepage.ui:321
+msgctxt "warnalienformat"
+msgid "You can choose to get a warning message when you save a document in a format that is not OpenDocument or which you did not set as default format in Load/Save - General in the Options dialog box."
+msgstr ""
+
#. 5ANvD
#. EN-US, the term 'extended' must not be translated.
-#: cui/uiconfig/ui/optsavepage.ui:291
+#: cui/uiconfig/ui/optsavepage.ui:341
msgctxt "optsavepage|odfwarning_label"
msgid "Not using ODF 1.3 Extended may cause information to be lost."
msgstr "Jos et käytä tallennukseen ODF 1.3 Extended -muotoa, tietoja voi kadota."
#. 6Tfns
-#: cui/uiconfig/ui/optsavepage.ui:321
+#: cui/uiconfig/ui/optsavepage.ui:371
msgctxt "optsavepage|odfversion"
msgid "1.0/1.1"
msgstr "1.0/1.1"
#. BJSfi
-#: cui/uiconfig/ui/optsavepage.ui:322
+#: cui/uiconfig/ui/optsavepage.ui:372
msgctxt "optsavepage|odfversion"
msgid "1.2"
msgstr "1.2"
#. k3jkA
-#: cui/uiconfig/ui/optsavepage.ui:323
+#: cui/uiconfig/ui/optsavepage.ui:373
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended (compatibility mode)"
msgstr "1.2 Extended (yhteensopivuustila)"
#. G826f
-#: cui/uiconfig/ui/optsavepage.ui:324
+#: cui/uiconfig/ui/optsavepage.ui:374
#, fuzzy
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended"
msgstr "1.2 Extended"
#. vLmeZ
-#: cui/uiconfig/ui/optsavepage.ui:325
+#: cui/uiconfig/ui/optsavepage.ui:375
#, fuzzy
msgctxt "optsavepage|odfversion"
msgid "1.3"
msgstr "1.3"
#. e6EP2
-#: cui/uiconfig/ui/optsavepage.ui:326
+#: cui/uiconfig/ui/optsavepage.ui:376
msgctxt "optsavepage|odfversion"
msgid "1.3 Extended (recommended)"
msgstr "1.3 Extended (suositeltu)"
+#. w2urA
+#: cui/uiconfig/ui/optsavepage.ui:380
+msgctxt "odfversion"
+msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible."
+msgstr ""
+
#. cxPqV
-#: cui/uiconfig/ui/optsavepage.ui:338
+#: cui/uiconfig/ui/optsavepage.ui:393
msgctxt "optsavepage|label5"
msgid "ODF format version:"
msgstr "ODF-tiedostomuodon versio:"
#. bF5dA
-#: cui/uiconfig/ui/optsavepage.ui:352
+#: cui/uiconfig/ui/optsavepage.ui:407
msgctxt "optsavepage|saveas_label"
msgid "Always sa_ve as:"
msgstr "Tallenna aina muodossa:"
#. p3xHz
-#: cui/uiconfig/ui/optsavepage.ui:367
+#: cui/uiconfig/ui/optsavepage.ui:422
msgctxt "optsavepage|doctype"
msgid "Text document"
msgstr "Tekstiasiakirja"
#. F2tP4
-#: cui/uiconfig/ui/optsavepage.ui:368
+#: cui/uiconfig/ui/optsavepage.ui:423
msgctxt "optsavepage|doctype"
msgid "HTML document"
msgstr "HTML-asiakirja"
#. hA5Di
-#: cui/uiconfig/ui/optsavepage.ui:369
+#: cui/uiconfig/ui/optsavepage.ui:424
#, fuzzy
msgctxt "optsavepage|doctype"
msgid "Master document"
msgstr "Perusasiakirja"
#. Dfgxy
-#: cui/uiconfig/ui/optsavepage.ui:370
+#: cui/uiconfig/ui/optsavepage.ui:425
msgctxt "optsavepage|doctype"
msgid "Spreadsheet"
msgstr "Laskentataulukko"
#. EEvDc
-#: cui/uiconfig/ui/optsavepage.ui:371
+#: cui/uiconfig/ui/optsavepage.ui:426
msgctxt "optsavepage|doctype"
msgid "Presentation"
msgstr "Esitys"
#. XgyzS
-#: cui/uiconfig/ui/optsavepage.ui:372
+#: cui/uiconfig/ui/optsavepage.ui:427
msgctxt "optsavepage|doctype"
msgid "Drawing"
msgstr "Piirros"
#. 4DDpx
-#: cui/uiconfig/ui/optsavepage.ui:373
+#: cui/uiconfig/ui/optsavepage.ui:428
msgctxt "optsavepage|doctype"
msgid "Formula"
msgstr "Kaava"
+#. iCZX2
+#: cui/uiconfig/ui/optsavepage.ui:432
+msgctxt "doctype"
+msgid "Specifies the document type for which you want to define the default file format."
+msgstr ""
+
+#. 69GMF
+#: cui/uiconfig/ui/optsavepage.ui:447
+msgctxt "saveas"
+msgid "Specifies how documents of the type selected on the left will always be saved as this file type. You may select another file type for the current document in the Save as dialog."
+msgstr ""
+
#. 29FUf
-#: cui/uiconfig/ui/optsavepage.ui:395
+#: cui/uiconfig/ui/optsavepage.ui:460
msgctxt "optsavepage|label6"
msgid "D_ocument type:"
msgstr "Asiakirjan tyyppi:"
#. CgCxr
-#: cui/uiconfig/ui/optsavepage.ui:413
+#: cui/uiconfig/ui/optsavepage.ui:478
msgctxt "optsavepage|label3"
msgid "Default File Format and ODF Settings"
msgstr "Oletustiedostomuoto ja ODF-asetukset"
+#. G7BAM
+#: cui/uiconfig/ui/optsavepage.ui:492
+msgctxt "OptSavePage"
+msgid "In the General section, you can select default settings for saving documents, and can select default file formats."
+msgstr ""
+
#. ArEZy
#: cui/uiconfig/ui/optsecuritypage.ui:35
msgctxt "optsecuritypage|label9"
@@ -11973,68 +15949,92 @@ msgctxt "optsecuritypage|tsas"
msgid "_TSAs..."
msgstr "TSA:t..."
+#. Wzygs
+#: cui/uiconfig/ui/optsecuritypage.ui:56
+msgctxt "extended_tip|tsas"
+msgid "Opens the Time Stamping Authority URLs dialog."
+msgstr ""
+
#. vrbum
-#: cui/uiconfig/ui/optsecuritypage.ui:68
+#: cui/uiconfig/ui/optsecuritypage.ui:73
msgctxt "optsecuritypage|label10"
msgid "TSAs"
msgstr "TSA:t"
#. dgPTb
-#: cui/uiconfig/ui/optsecuritypage.ui:105
+#: cui/uiconfig/ui/optsecuritypage.ui:110
msgctxt "optsecuritypage|label7"
msgid "Select the Network Security Services certificate directory to use for digital signatures."
msgstr "Valitse sähköisiin allekirjoituksiin käytettävä Network Security Services -varmennehakemisto."
#. DPGqn
-#: cui/uiconfig/ui/optsecuritypage.ui:118
+#: cui/uiconfig/ui/optsecuritypage.ui:123
msgctxt "optsecuritypage|cert"
msgid "_Certificate..."
msgstr "Varmenne..."
+#. GFX6B
+#: cui/uiconfig/ui/optsecuritypage.ui:131
+msgctxt "extended_tip|cert"
+msgid "Opens the Certificate Path dialog."
+msgstr ""
+
#. UCYi2
-#: cui/uiconfig/ui/optsecuritypage.ui:138
+#: cui/uiconfig/ui/optsecuritypage.ui:148
msgctxt "optsecuritypage|label8"
msgid "Certificate Path"
msgstr "Varmenteen polku"
#. pDQrj
-#: cui/uiconfig/ui/optsecuritypage.ui:175
+#: cui/uiconfig/ui/optsecuritypage.ui:185
msgctxt "optsecuritypage|label5"
msgid "Adjust the security level for executing macros and specify trusted macro developers."
msgstr "Säädä makrojen suorituksen turvallisuustasoa ja määritä luotetut makrojen kehittäjät."
#. wBcDQ
-#: cui/uiconfig/ui/optsecuritypage.ui:188
+#: cui/uiconfig/ui/optsecuritypage.ui:198
msgctxt "optsecuritypage|macro"
msgid "Macro Securit_y..."
msgstr "Makrojen turvallisuus..."
+#. eGAGp
+#: cui/uiconfig/ui/optsecuritypage.ui:206
+msgctxt "extended_tip|macro"
+msgid "Opens the Macro Security dialog."
+msgstr ""
+
#. rDJXk
-#: cui/uiconfig/ui/optsecuritypage.ui:208
+#: cui/uiconfig/ui/optsecuritypage.ui:223
msgctxt "optsecuritypage|label3"
msgid "Macro Security"
msgstr "Makrojen turvallisuus"
#. UGTda
-#: cui/uiconfig/ui/optsecuritypage.ui:248
+#: cui/uiconfig/ui/optsecuritypage.ui:263
msgctxt "optsecuritypage|savepassword"
msgid "Persistently _save passwords for web connections"
msgstr "Tallenna pysyvästi www-yhteyksien salasanat"
+#. RHiBv
+#: cui/uiconfig/ui/optsecuritypage.ui:272
+msgctxt "extended_tip|savepassword"
+msgid "If enabled, %PRODUCTNAME will securely store all passwords that you use to access files from web servers. You can retrieve the passwords from the list after you enter the master password."
+msgstr "Jos toiminto on käytössä, %PRODUCTNAME tallentaa turvallisesti salasanat, joilla päästään verkkopalvelimen tiedostoihin. Salasanat voidaan noutaa luettelosta, kun ensin on annettu pääsalasana."
+
#. Gyqwf
-#: cui/uiconfig/ui/optsecuritypage.ui:275
+#: cui/uiconfig/ui/optsecuritypage.ui:295
msgctxt "optsecuritypage|usemasterpassword"
msgid "Protected _by a master password (recommended)"
msgstr "Suojattu pääsalasanalla (suositus)"
#. ipcrn
-#: cui/uiconfig/ui/optsecuritypage.ui:293
+#: cui/uiconfig/ui/optsecuritypage.ui:313
msgctxt "optsecuritypage|masterpasswordtext"
msgid "Passwords are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list."
msgstr "Salasanat suojataan pääsalasanalla. Pääsalasana on annettava kertaalleen istunnon aikana, jos %PRODUCTNAME tarvitsee salasanaa tallennettujen salasanojen joukosta."
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:309
+#: cui/uiconfig/ui/optsecuritypage.ui:329
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -12046,41 +16046,65 @@ msgstr ""
"Haluatko poistaa tallennetut salasanat ja pääsalasanan?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:347
+#: cui/uiconfig/ui/optsecuritypage.ui:367
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "Yhteydet..."
+#. GLEjB
+#: cui/uiconfig/ui/optsecuritypage.ui:375
+msgctxt "extended_tip|connections"
+msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
+msgstr "Kysytään pääsalasanaa. Jos pääsalasana on oikein, esille tulee Tallennetut WWW-kirjautumistiedot -valintaikkuna."
+
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:396
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "Pääsalasana..."
+#. w3TQo
+#: cui/uiconfig/ui/optsecuritypage.ui:404
+msgctxt "extended_tip|masterpassword"
+msgid "Opens the Enter Master Password dialog."
+msgstr "Avataan Pääsalasana-valintaikkuna."
+
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:403
+#: cui/uiconfig/ui/optsecuritypage.ui:433
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "WWW-yhteyksien salasanat"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:440
+#: cui/uiconfig/ui/optsecuritypage.ui:470
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "Muuta suojausasetuksia ja asiakirjoissa olevaan piilotettuun tietoon liittyviä varoituksia. "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:453
+#: cui/uiconfig/ui/optsecuritypage.ui:483
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "A_setukset..."
+#. pepKZ
+#: cui/uiconfig/ui/optsecuritypage.ui:491
+msgctxt "extended_tip|options"
+msgid "Opens the \"Security Options and Warnings\" dialog."
+msgstr ""
+
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:473
+#: cui/uiconfig/ui/optsecuritypage.ui:508
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Suojausasetukset ja varoitukset"
+#. rwtuC
+#: cui/uiconfig/ui/optsecuritypage.ui:522
+msgctxt "extended_tip|OptSecurityPage"
+msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
+msgstr "Määritetään asiakirjojen tallennuksen ja makroja sisältävien asiakirjojen avaamisen suojausasetukset ."
+
#. FPuvb
#: cui/uiconfig/ui/optuserpage.ui:34
msgctxt "optuserpage|companyft"
@@ -12141,538 +16165,790 @@ msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Etunimi"
+#. XfEkD
+#: cui/uiconfig/ui/optuserpage.ui:169
+msgctxt "extended tip | firstname"
+msgid "Type your first name."
+msgstr ""
+
#. kW7rP
-#: cui/uiconfig/ui/optuserpage.ui:186
+#: cui/uiconfig/ui/optuserpage.ui:187
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "Sukunimi"
+#. cWaCs
+#: cui/uiconfig/ui/optuserpage.ui:188
+msgctxt "extended tip | lastname"
+msgid "Type your last name."
+msgstr ""
+
#. DuFHY
-#: cui/uiconfig/ui/optuserpage.ui:204
+#: cui/uiconfig/ui/optuserpage.ui:206
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "Nimikirjaimet"
+#. CYFY2
+#: cui/uiconfig/ui/optuserpage.ui:207
+msgctxt "extended tip | shortname"
+msgid "Type your initials."
+msgstr ""
+
#. Emfwm
-#: cui/uiconfig/ui/optuserpage.ui:233
+#: cui/uiconfig/ui/optuserpage.ui:236
msgctxt "city-atkobject"
msgid "City"
msgstr "Postitoimipaikka"
+#. UVG4o
+#: cui/uiconfig/ui/optuserpage.ui:237
+msgctxt "extended tip | city"
+msgid "Type the city where you live."
+msgstr ""
+
#. CnJ3K
-#: cui/uiconfig/ui/optuserpage.ui:251
+#: cui/uiconfig/ui/optuserpage.ui:255
msgctxt "state-atkobject"
msgid "State"
msgstr "Osavaltio"
+#. y652V
+#: cui/uiconfig/ui/optuserpage.ui:256
+msgctxt "extended tip | state"
+msgid "Type your state."
+msgstr ""
+
#. ADpC7
-#: cui/uiconfig/ui/optuserpage.ui:269
+#: cui/uiconfig/ui/optuserpage.ui:274
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "Postinumero"
+#. 5vad5
+#: cui/uiconfig/ui/optuserpage.ui:275
+msgctxt "extended tip | zip"
+msgid "Type your ZIP in this field."
+msgstr ""
+
#. p45Kt
-#: cui/uiconfig/ui/optuserpage.ui:299
+#: cui/uiconfig/ui/optuserpage.ui:305
msgctxt "title-atkobject"
msgid "Title"
msgstr "Otsikko"
+#. 5G2ww
+#: cui/uiconfig/ui/optuserpage.ui:306
+msgctxt "extended tip | title"
+msgid "Type your title in this field."
+msgstr ""
+
#. HCiNt
-#: cui/uiconfig/ui/optuserpage.ui:317
+#: cui/uiconfig/ui/optuserpage.ui:324
msgctxt "position-atkobject"
msgid "Position"
msgstr "Sijainti"
+#. QGc4K
+#: cui/uiconfig/ui/optuserpage.ui:325
+msgctxt "extended tip | position"
+msgid "Type your position in the company in this field."
+msgstr ""
+
#. qhkwG
-#: cui/uiconfig/ui/optuserpage.ui:346
+#: cui/uiconfig/ui/optuserpage.ui:354
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "Kotipuhelinnumero"
+#. RNBjN
+#: cui/uiconfig/ui/optuserpage.ui:355
+msgctxt "extended tip | home"
+msgid "Type your private telephone number in this field."
+msgstr ""
+
#. SfmfD
-#: cui/uiconfig/ui/optuserpage.ui:364
+#: cui/uiconfig/ui/optuserpage.ui:373
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "Työpuhelinnumero"
+#. d5v6D
+#: cui/uiconfig/ui/optuserpage.ui:374
+msgctxt "extended tip | work"
+msgid "Type your work number in this field."
+msgstr ""
+
#. VEhd3
-#: cui/uiconfig/ui/optuserpage.ui:394
+#: cui/uiconfig/ui/optuserpage.ui:404
msgctxt "fax-atkobject"
msgid "Fax number"
msgstr "Faksinumero"
+#. CtsEr
+#: cui/uiconfig/ui/optuserpage.ui:405
+msgctxt "extended tip | fax"
+msgid "Type your fax number in this field."
+msgstr ""
+
#. 8BG5j
-#: cui/uiconfig/ui/optuserpage.ui:412
+#: cui/uiconfig/ui/optuserpage.ui:423
msgctxt "email-atkobject"
msgid "email address"
msgstr "sähköpostiosoite"
+#. PGFMX
+#: cui/uiconfig/ui/optuserpage.ui:424
+msgctxt "extended tip | email"
+msgid "Type your email address."
+msgstr ""
+
#. eygE2
-#: cui/uiconfig/ui/optuserpage.ui:429
+#: cui/uiconfig/ui/optuserpage.ui:441
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "Käytä asiakirjan ominaisuustietoja"
+#. cGnAb
+#: cui/uiconfig/ui/optuserpage.ui:450
+msgctxt "extended tips | usefordoprop"
+msgid "Mark to use the data in document properties"
+msgstr ""
+
#. ZngAH
-#: cui/uiconfig/ui/optuserpage.ui:447
+#: cui/uiconfig/ui/optuserpage.ui:465
msgctxt "optuserpage|rusnameft"
msgid "Last/first/father’s _name/initials:"
msgstr "Suku/etu/isän nimi / nimikirjaimet:"
#. 9GPga
-#: cui/uiconfig/ui/optuserpage.ui:471
+#: cui/uiconfig/ui/optuserpage.ui:489
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "Sukunimi"
+#. kU7ef
+#: cui/uiconfig/ui/optuserpage.ui:490
+msgctxt "extended tip | ruslastname"
+msgid "Type your last name."
+msgstr ""
+
#. gCfx3
-#: cui/uiconfig/ui/optuserpage.ui:489
+#: cui/uiconfig/ui/optuserpage.ui:508
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "Isän nimi"
+#. WurmE
+#: cui/uiconfig/ui/optuserpage.ui:509
+msgctxt "extended tips | rusfathersname"
+msgid "Type your father's name"
+msgstr ""
+
#. pAF2D
-#: cui/uiconfig/ui/optuserpage.ui:507
+#: cui/uiconfig/ui/optuserpage.ui:527
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "Nimikirjaimet"
+#. BSSJF
+#: cui/uiconfig/ui/optuserpage.ui:528
+msgctxt "extended tip | russhortname"
+msgid "Type your initials."
+msgstr ""
+
#. byLGz
-#: cui/uiconfig/ui/optuserpage.ui:525
+#: cui/uiconfig/ui/optuserpage.ui:546
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "Etunimi"
+#. 2Xsp9
+#: cui/uiconfig/ui/optuserpage.ui:547
+msgctxt "extended tip | rusfirstname"
+msgid "Type your first name."
+msgstr ""
+
#. 4qdC2
-#: cui/uiconfig/ui/optuserpage.ui:545
+#: cui/uiconfig/ui/optuserpage.ui:567
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "Suku-/etunimi/nimikirjaimet:"
#. Emtmj
-#: cui/uiconfig/ui/optuserpage.ui:569
+#: cui/uiconfig/ui/optuserpage.ui:591
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "Sukunimi"
+#. 9zJxz
+#: cui/uiconfig/ui/optuserpage.ui:592
+msgctxt "extended tip | eastlastname"
+msgid "Type your last name."
+msgstr ""
+
#. 6MrBD
-#: cui/uiconfig/ui/optuserpage.ui:587
+#: cui/uiconfig/ui/optuserpage.ui:610
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "Etunimi"
+#. iBZAf
+#: cui/uiconfig/ui/optuserpage.ui:611
+msgctxt "extended tip | eastfirstname"
+msgid "Type your first name."
+msgstr ""
+
#. mebNB
-#: cui/uiconfig/ui/optuserpage.ui:605
+#: cui/uiconfig/ui/optuserpage.ui:629
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "Nimikirjaimet"
+#. i3xBr
+#: cui/uiconfig/ui/optuserpage.ui:630
+msgctxt "extended tip | eastshortname"
+msgid "Type your initials."
+msgstr ""
+
#. NGEU9
-#: cui/uiconfig/ui/optuserpage.ui:625
+#: cui/uiconfig/ui/optuserpage.ui:650
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "Katu-/huoneistonumero:"
#. oxw3f
-#: cui/uiconfig/ui/optuserpage.ui:649
+#: cui/uiconfig/ui/optuserpage.ui:674
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "Katuosoite"
+#. C5n48
+#: cui/uiconfig/ui/optuserpage.ui:675
+msgctxt "extended tips | russrteet"
+msgid "Type the name of your street in this field."
+msgstr ""
+
#. QxpMF
-#: cui/uiconfig/ui/optuserpage.ui:667
+#: cui/uiconfig/ui/optuserpage.ui:693
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "Huoneistonumero"
+#. ZsKHB
+#: cui/uiconfig/ui/optuserpage.ui:694
+msgctxt "extended tips | apartnum"
+msgid "Type your apartment number"
+msgstr ""
+
#. 8kEFB
-#: cui/uiconfig/ui/optuserpage.ui:687
+#: cui/uiconfig/ui/optuserpage.ui:714
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "Postinumero/toimipaikka:"
#. RhK5j
-#: cui/uiconfig/ui/optuserpage.ui:711
+#: cui/uiconfig/ui/optuserpage.ui:738
msgctxt "icity-atkobject"
msgid "City"
msgstr "Postitoimipaikka"
+#. knxAE
+#: cui/uiconfig/ui/optuserpage.ui:739
+msgctxt "extended tip | icity"
+msgid "Type the city where you live."
+msgstr ""
+
#. Hdniz
-#: cui/uiconfig/ui/optuserpage.ui:729
+#: cui/uiconfig/ui/optuserpage.ui:757
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "Postinumero"
+#. 4zTys
+#: cui/uiconfig/ui/optuserpage.ui:758
+msgctxt "extended tip | izip"
+msgid "Type your ZIP in this field."
+msgstr ""
+
+#. VbiGF
+#: cui/uiconfig/ui/optuserpage.ui:787
+msgctxt "extended tip | street"
+msgid "Type the name of your street in this field."
+msgstr ""
+
+#. As2sL
+#: cui/uiconfig/ui/optuserpage.ui:816
+msgctxt "extended tips | country"
+msgid "Type your country and region"
+msgstr ""
+
+#. Lw69w
+#: cui/uiconfig/ui/optuserpage.ui:845
+msgctxt "extended tip | company"
+msgid "Type the name of your company in this field."
+msgstr ""
+
#. 9v6o6
-#: cui/uiconfig/ui/optuserpage.ui:827
+#: cui/uiconfig/ui/optuserpage.ui:868
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Osoite"
#. QfCBu
-#: cui/uiconfig/ui/optuserpage.ui:862
+#: cui/uiconfig/ui/optuserpage.ui:903
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr "OpenPGP-allekirjoitusavain:"
#. 4KEFW
-#: cui/uiconfig/ui/optuserpage.ui:876
+#: cui/uiconfig/ui/optuserpage.ui:917
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr "OpenPGP-salausavain:"
#. GCS8p
-#: cui/uiconfig/ui/optuserpage.ui:892 cui/uiconfig/ui/optuserpage.ui:906
+#: cui/uiconfig/ui/optuserpage.ui:933 cui/uiconfig/ui/optuserpage.ui:952
msgctxt "optuserpage|liststore1"
msgid "No key"
msgstr "Ei avainta"
+#. UJXE4
+#: cui/uiconfig/ui/optuserpage.ui:937
+msgctxt "extended tip | encryptionkey"
+msgid "Select your OpenPGP key from the drop-down list for encrypting ODF documents."
+msgstr ""
+
+#. m27Ub
+#: cui/uiconfig/ui/optuserpage.ui:956
+msgctxt "extended tip | signingkey"
+msgid "Select your OpenPGP key from the drop-down list for signing ODF documents."
+msgstr ""
+
#. 8USbk
-#: cui/uiconfig/ui/optuserpage.ui:916
+#: cui/uiconfig/ui/optuserpage.ui:967
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr "Asiakirjoja salattaessa salaa aina itselle"
+#. FaxaF
+#: cui/uiconfig/ui/optuserpage.ui:976
+msgctxt "extended tip | encrypttoself"
+msgid "Mark this checkbox to also encrypt the file with your public key, so you can open the document with your private key."
+msgstr ""
+
#. P5BBC
-#: cui/uiconfig/ui/optuserpage.ui:940
+#: cui/uiconfig/ui/optuserpage.ui:994
msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
msgstr "Kryptografia"
+#. PjCQu
+#: cui/uiconfig/ui/optuserpage.ui:1010
+msgctxt "extended tip | OptUserPage"
+msgid "Use this tab page to enter or edit user data."
+msgstr ""
+
#. DryvE
-#: cui/uiconfig/ui/optviewpage.ui:50
+#: cui/uiconfig/ui/optviewpage.ui:53
msgctxt "optviewpage|label11"
msgid "_Positioning:"
msgstr "Sijainti:"
#. E6zhJ
-#: cui/uiconfig/ui/optviewpage.ui:64
+#: cui/uiconfig/ui/optviewpage.ui:67
msgctxt "optviewpage|label12"
msgid "Middle _button:"
msgstr "Keskimmäinen painike:"
#. 3rdJa
-#: cui/uiconfig/ui/optviewpage.ui:81
+#: cui/uiconfig/ui/optviewpage.ui:84
msgctxt "optviewpage|mousepos"
msgid "Default button"
msgstr "Oletuspainike"
#. 6UedG
-#: cui/uiconfig/ui/optviewpage.ui:82
+#: cui/uiconfig/ui/optviewpage.ui:85
msgctxt "optviewpage|mousepos"
msgid "Dialog center"
msgstr "Valintaikkunan keskitys"
#. UHeFm
-#: cui/uiconfig/ui/optviewpage.ui:83
+#: cui/uiconfig/ui/optviewpage.ui:86
msgctxt "optviewpage|mousepos"
msgid "No automatic positioning"
msgstr "Ei automaattista sijoittelua"
+#. pDN23
+#: cui/uiconfig/ui/optviewpage.ui:90
+msgctxt "extended_tip | mousepos"
+msgid "Specifies if and how the mouse pointer will be positioned in newly opened dialogs."
+msgstr ""
+
#. GCAp5
-#: cui/uiconfig/ui/optviewpage.ui:98
+#: cui/uiconfig/ui/optviewpage.ui:106
msgctxt "optviewpage|mousemiddle"
msgid "No function"
msgstr "Ei toimintoa"
#. 2b59y
-#: cui/uiconfig/ui/optviewpage.ui:99
+#: cui/uiconfig/ui/optviewpage.ui:107
msgctxt "optviewpage|mousemiddle"
msgid "Automatic scrolling"
msgstr "Automaattinen vieritys"
#. 8ELrc
-#: cui/uiconfig/ui/optviewpage.ui:100
+#: cui/uiconfig/ui/optviewpage.ui:108
msgctxt "optviewpage|mousemiddle"
msgid "Paste clipboard"
msgstr "Liitä leikepöytä"
+#. DeQ72
+#: cui/uiconfig/ui/optviewpage.ui:112
+msgctxt "extended_tip | mousemiddle"
+msgid "Defines the function of the middle mouse button."
+msgstr ""
+
#. NbJKy
-#: cui/uiconfig/ui/optviewpage.ui:116
+#: cui/uiconfig/ui/optviewpage.ui:129
msgctxt "optviewpage|label4"
msgid "Mouse"
msgstr "Hiiri"
#. crQSQ
-#: cui/uiconfig/ui/optviewpage.ui:154
+#: cui/uiconfig/ui/optviewpage.ui:169
msgctxt "optviewpage|label13"
msgid "Menu icons:"
msgstr ""
#. XKRM7
-#: cui/uiconfig/ui/optviewpage.ui:170
+#: cui/uiconfig/ui/optviewpage.ui:185
msgctxt "optviewpage|menuicons"
msgid "Automatic"
msgstr "Automaattinen"
#. Fbyi9
-#: cui/uiconfig/ui/optviewpage.ui:171
+#: cui/uiconfig/ui/optviewpage.ui:186
msgctxt "optviewpage|menuicons"
msgid "Hide"
msgstr "Piilota"
#. WTgFx
-#: cui/uiconfig/ui/optviewpage.ui:172
+#: cui/uiconfig/ui/optviewpage.ui:187
msgctxt "optviewpage|menuicons"
msgid "Show"
msgstr "Näytä"
+#. CpRAh
+#: cui/uiconfig/ui/optviewpage.ui:191
+msgctxt "extended_tip | menuicons"
+msgid "Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes."
+msgstr ""
+
#. evVAC
-#: cui/uiconfig/ui/optviewpage.ui:197
+#: cui/uiconfig/ui/optviewpage.ui:218
msgctxt "optviewpage|contextmenushortcuts"
msgid "Automatic"
msgstr "Automaattinen"
#. 36Dg2
-#: cui/uiconfig/ui/optviewpage.ui:198
+#: cui/uiconfig/ui/optviewpage.ui:219
msgctxt "optviewpage|contextmenushortcuts"
msgid "Hide"
msgstr "Piilota"
#. aE3Cq
-#: cui/uiconfig/ui/optviewpage.ui:199
+#: cui/uiconfig/ui/optviewpage.ui:220
msgctxt "optviewpage|contextmenushortcuts"
msgid "Show"
msgstr "Näytä"
#. ZutFR
-#: cui/uiconfig/ui/optviewpage.ui:211
+#: cui/uiconfig/ui/optviewpage.ui:232
msgctxt "optviewpage|label10"
msgid "Shortcuts:"
msgstr ""
#. EWdHF
-#: cui/uiconfig/ui/optviewpage.ui:235
+#: cui/uiconfig/ui/optviewpage.ui:256
msgctxt "optviewpage|label3"
msgid "Visibility"
msgstr "Näkyvyys"
#. LxFLY
-#: cui/uiconfig/ui/optviewpage.ui:274
+#: cui/uiconfig/ui/optviewpage.ui:296
msgctxt "optviewpage|notebookbariconsize"
msgid "Automatic"
msgstr "Automaattinen"
#. oKQEA
-#: cui/uiconfig/ui/optviewpage.ui:275
+#: cui/uiconfig/ui/optviewpage.ui:297
msgctxt "optviewpage|notebookbariconsize"
msgid "Small"
msgstr "Pieni"
#. JHk7X
-#: cui/uiconfig/ui/optviewpage.ui:276
+#: cui/uiconfig/ui/optviewpage.ui:298
msgctxt "optviewpage|notebookbariconsize"
msgid "Large"
msgstr "Suuri"
+#. E7vjR
+#: cui/uiconfig/ui/optviewpage.ui:302
+msgctxt "extended_tip | notebookbariconsize"
+msgid "Specifies the display size of notebook bar icons."
+msgstr ""
+
#. G8qAD
-#: cui/uiconfig/ui/optviewpage.ui:288
+#: cui/uiconfig/ui/optviewpage.ui:315
msgctxt "optviewpage|label7"
msgid "_Notebookbar:"
msgstr "Lehtiöpalkki:"
#. CsRM4
-#: cui/uiconfig/ui/optviewpage.ui:304
+#: cui/uiconfig/ui/optviewpage.ui:331
msgctxt "optviewpage|sidebariconsize"
msgid "Automatic"
msgstr "Automaattinen"
#. wMYTk
-#: cui/uiconfig/ui/optviewpage.ui:305
+#: cui/uiconfig/ui/optviewpage.ui:332
msgctxt "optviewpage|sidebariconsize"
msgid "Small"
msgstr "Pieni"
#. AFBcQ
-#: cui/uiconfig/ui/optviewpage.ui:306
+#: cui/uiconfig/ui/optviewpage.ui:333
msgctxt "optviewpage|sidebariconsize"
msgid "Large"
msgstr "Suuri"
+#. W8yUi
+#: cui/uiconfig/ui/optviewpage.ui:337
+msgctxt "extended_tip | sidebariconsize"
+msgid "Specifies the display size of sidebar icons."
+msgstr ""
+
#. kPSBA
-#: cui/uiconfig/ui/optviewpage.ui:318
+#: cui/uiconfig/ui/optviewpage.ui:350
msgctxt "optviewpage|label9"
msgid "Sidebar:"
msgstr "Sivupalkki:"
#. R5bS2
-#: cui/uiconfig/ui/optviewpage.ui:334
+#: cui/uiconfig/ui/optviewpage.ui:366
msgctxt "optviewpage|iconsize"
msgid "Automatic"
msgstr "Automaattinen"
#. LEpgg
-#: cui/uiconfig/ui/optviewpage.ui:335
+#: cui/uiconfig/ui/optviewpage.ui:367
msgctxt "optviewpage|iconsize"
msgid "Small"
msgstr "Pieni"
#. q4LX3
-#: cui/uiconfig/ui/optviewpage.ui:336
+#: cui/uiconfig/ui/optviewpage.ui:368
msgctxt "optviewpage|iconsize"
msgid "Large"
msgstr "Suuri"
#. oYDs8
-#: cui/uiconfig/ui/optviewpage.ui:337
+#: cui/uiconfig/ui/optviewpage.ui:369
msgctxt "optviewpage|iconsize"
msgid "Extra Large"
msgstr "Hyvin iso"
+#. bhmh9
+#: cui/uiconfig/ui/optviewpage.ui:373
+msgctxt "extended_tip | iconsize"
+msgid "Specifies the display size of toolbar icons."
+msgstr ""
+
#. PdeBj
-#: cui/uiconfig/ui/optviewpage.ui:349
+#: cui/uiconfig/ui/optviewpage.ui:386
msgctxt "optviewpage|label8"
msgid "Toolbar:"
msgstr "Työkalurivi:"
-#. hZsaQ
-#: cui/uiconfig/ui/optviewpage.ui:367
+#. juDWx
+#: cui/uiconfig/ui/optviewpage.ui:404
msgctxt "optviewpage|label1"
-msgid "Icon size"
-msgstr "Kuvakekoko"
+msgid "Icon Size"
+msgstr ""
#. 8CiB5
-#: cui/uiconfig/ui/optviewpage.ui:405
+#: cui/uiconfig/ui/optviewpage.ui:443
msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automaattinen"
#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:406
+#: cui/uiconfig/ui/optviewpage.ui:444
msgctxt "optviewpage|iconstyle"
msgid "Galaxy"
msgstr "Galaxy"
#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:407
+#: cui/uiconfig/ui/optviewpage.ui:445
msgctxt "optviewpage|iconstyle"
msgid "High Contrast"
msgstr "Korkea kontrasti"
#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:408
+#: cui/uiconfig/ui/optviewpage.ui:446
msgctxt "optviewpage|iconstyle"
msgid "Oxygen"
msgstr "Oxygen"
#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:409
+#: cui/uiconfig/ui/optviewpage.ui:447
msgctxt "optviewpage|iconstyle"
msgid "Classic"
msgstr "Perinteinen"
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:410
+#: cui/uiconfig/ui/optviewpage.ui:448
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:411
+#: cui/uiconfig/ui/optviewpage.ui:449
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
+#. dDE86
+#: cui/uiconfig/ui/optviewpage.ui:453
+msgctxt "extended_tip | iconstyle"
+msgid "Specifies the icon style for icons in toolbars and dialogs."
+msgstr ""
+
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:466
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Kuvaketyyli:"
-#. a86VJ
-#: cui/uiconfig/ui/optviewpage.ui:441
+#. StBQN
+#: cui/uiconfig/ui/optviewpage.ui:481
+msgctxt "optviewpage|btnMoreIcons"
+msgid "Add more icon themes via extension"
+msgstr ""
+
+#. eMqmK
+#: cui/uiconfig/ui/optviewpage.ui:499
msgctxt "optviewpage|label1"
-msgid "Icon style"
-msgstr "Kuvaketyyli"
+msgid "Icon Style"
+msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:480
+#: cui/uiconfig/ui/optviewpage.ui:540
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Vaatii uudelleenkäynnistyksen"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:484
+#: cui/uiconfig/ui/optviewpage.ui:544
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Käytä laitteistokiihdytystä"
+#. qw73y
+#: cui/uiconfig/ui/optviewpage.ui:553
+msgctxt "extended_tip | useaccel"
+msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
+msgstr "Käytetään suoraan näytönohjaimen laitteiston ominaisuuksia näytön kuvan parantamiseen."
+
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:499
+#: cui/uiconfig/ui/optviewpage.ui:564
#, fuzzy
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Käytä viivojen pehmennystä"
+#. fUKV9
+#: cui/uiconfig/ui/optviewpage.ui:573
+msgctxt "extended_tip | useaa"
+msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
+msgstr "Grafiikan reunan pehmennys voidaan ottaa käyttöön tai poistaa käytöstä, mikäli ominaisuus on tuettu. Kun reunan tai viivan pehmennys on käytössä, useimpien graafisten objektien esitys on sileämpi ja vääristymiä on vähemmän."
+
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:514
+#: cui/uiconfig/ui/optviewpage.ui:584
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Käytä Skiaa kaikkeen grafiikan piirtämiseen"
-#. NaqGG
-#: cui/uiconfig/ui/optviewpage.ui:529
-msgctxt "optviewpage|forceskia"
-msgid "Ignore Skia blacklist"
-msgstr "Ohita Skia-estolista"
-
-#. v9eeZ
-#: cui/uiconfig/ui/optviewpage.ui:533
-msgctxt "optviewpage|forceskia|tooltip_text"
-msgid "Requires restart. Enabling this may expose driver bugs"
-msgstr "Uudelleenkäynnistys vaaditaan. Tämän ottaminen käyttöön voi tuoda esiin ajurien virheitä."
-
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:546
+#: cui/uiconfig/ui/optviewpage.ui:599
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Pakota ohjelmistopohjainen grafiikan piirtäminen Skialla"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:550
+#: cui/uiconfig/ui/optviewpage.ui:603
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Vaatii uudelleenkäynnistyksen. Tämän valitseminen estää grafiikka-ajureiden käyttämisen."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:565
+#: cui/uiconfig/ui/optviewpage.ui:618
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Skia on käytössä."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:577
+#: cui/uiconfig/ui/optviewpage.ui:630
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Skia on pois käytöstä."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:593
+#: cui/uiconfig/ui/optviewpage.ui:688
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Grafiikan näyttäminen"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:624
+#: cui/uiconfig/ui/optviewpage.ui:720
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Näytä fonttien _esikatselu"
+#. 7Qidy
+#: cui/uiconfig/ui/optviewpage.ui:729
+msgctxt "extended_tip | showfontpreview"
+msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
+msgstr ""
+
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:740
#, fuzzy
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Näyttöfontin viivojen pehmennys"
+#. 5QEjG
+#: cui/uiconfig/ui/optviewpage.ui:749
+msgctxt "extended_tip | aafont"
+msgid "Select to smooth the screen appearance of text."
+msgstr "Valinta silottaa tekstin ulkonäköä näytöllä."
+
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:663
+#: cui/uiconfig/ui/optviewpage.ui:770
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "lähtien:"
+#. 9tsFW
+#: cui/uiconfig/ui/optviewpage.ui:787
+msgctxt "extended_tip | aanf"
+msgid "Enter the smallest font size to apply antialiasing."
+msgstr "Annetaan pienin fonttikoko, jolle käytetään reunan pehmennystä."
+
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:698
+#: cui/uiconfig/ui/optviewpage.ui:849
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Fonttiluettelot"
@@ -12785,74 +17061,81 @@ msgctxt "pageformatpage|labelPageNumbers"
msgid "Page numbers:"
msgstr "Sivunumerot:"
-#. RNDFy
+#. G3G5M
#: cui/uiconfig/ui/pageformatpage.ui:530
msgctxt "pageformatpage|checkRegisterTrue"
-msgid "Register-tr_ue"
-msgstr "Rivirekisteri"
+msgid "Page li_ne spacing"
+msgstr ""
+
+#. 3BsGZ
+#. xdds
+#: cui/uiconfig/ui/pageformatpage.ui:534
+msgctxt "pageformatpage|checkRegisterTrue"
+msgid "All paragraph styles with the option Page line spacing checked will be affected, assuming the line spacing defined here. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
+msgstr ""
#. 46djR
-#: cui/uiconfig/ui/pageformatpage.ui:548
+#: cui/uiconfig/ui/pageformatpage.ui:549
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr "Oikea ja vasen"
#. xetCH
-#: cui/uiconfig/ui/pageformatpage.ui:549
+#: cui/uiconfig/ui/pageformatpage.ui:550
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr "Peilattu"
#. 47EHF
-#: cui/uiconfig/ui/pageformatpage.ui:550
+#: cui/uiconfig/ui/pageformatpage.ui:551
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr "Vain oikea"
#. ALSy9
-#: cui/uiconfig/ui/pageformatpage.ui:551
+#: cui/uiconfig/ui/pageformatpage.ui:552
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr "Vain vasen"
#. Fhvzk
-#: cui/uiconfig/ui/pageformatpage.ui:573
+#: cui/uiconfig/ui/pageformatpage.ui:574
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "Taulukon tasaus:"
#. 79BH9
-#: cui/uiconfig/ui/pageformatpage.ui:585
+#: cui/uiconfig/ui/pageformatpage.ui:586
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "Vaakasuora"
#. krxQZ
-#: cui/uiconfig/ui/pageformatpage.ui:600
+#: cui/uiconfig/ui/pageformatpage.ui:601
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "_Pystysuora"
#. FPLFK
-#: cui/uiconfig/ui/pageformatpage.ui:615
+#: cui/uiconfig/ui/pageformatpage.ui:616
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr "_Sovita sisältö sivun muotoon"
#. bqcXW
-#: cui/uiconfig/ui/pageformatpage.ui:634
+#: cui/uiconfig/ui/pageformatpage.ui:635
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
msgstr "Viitteen tyyli:"
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:668
+#: cui/uiconfig/ui/pageformatpage.ui:669
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Asettelu"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:689
+#: cui/uiconfig/ui/pageformatpage.ui:690
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -13128,11 +17411,11 @@ msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "A_ctivate"
msgstr "Aktivoi"
-#. CZshb
+#. HifGU
#: cui/uiconfig/ui/paraindentspacing.ui:505
msgctxt "paraindentspacing|label3"
-msgid "Register-true"
-msgstr "Rivirekisteri"
+msgid "Follow Page Line Spacing"
+msgstr ""
#. pbs4W
#: cui/uiconfig/ui/paratabspage.ui:118
@@ -13212,20 +17495,26 @@ msgctxt "paratabspage|buttonBTN_DELALL"
msgid "Delete _all"
msgstr "Poista kaikki"
+#. qctkA
+#: cui/uiconfig/ui/paratabspage.ui:550
+msgctxt "paratabspage|extended_tip|buttonBTN_DEL"
+msgid "Deletes the selected element or elements after confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä vahvistuskyselyn jälkeen."
+
#. WCcAj
-#: cui/uiconfig/ui/paratabspage.ui:558
+#: cui/uiconfig/ui/paratabspage.ui:563
msgctxt "paratabspage|label4"
msgid "points"
msgstr "pisteet"
#. GcMMk
-#: cui/uiconfig/ui/paratabspage.ui:571
+#: cui/uiconfig/ui/paratabspage.ui:576
msgctxt "paratabspage|label5"
msgid "dashes"
msgstr "katkoviivat"
#. CYnkr
-#: cui/uiconfig/ui/paratabspage.ui:584
+#: cui/uiconfig/ui/paratabspage.ui:589
msgctxt "paratabspage|label6"
msgid "underscores"
msgstr "alaviivat"
@@ -13236,56 +17525,74 @@ msgctxt "password|PasswordDialog"
msgid "Set Password"
msgstr "Aseta salasana"
+#. XDzCT
+#: cui/uiconfig/ui/password.ui:100
+msgctxt "password|extended_tip|newpassEntry"
+msgid "Type a password. A password is case sensitive."
+msgstr ""
+
+#. QbKd2
+#: cui/uiconfig/ui/password.ui:119
+msgctxt "password|extended_tip|confirmpassEntry"
+msgid "Re-enter the password."
+msgstr "Annetaan sama salasana uudestaan."
+
#. vMhFF
-#: cui/uiconfig/ui/password.ui:122
+#: cui/uiconfig/ui/password.ui:132
msgctxt "password|label1"
msgid "Note: After a password has been set, the document will only open with the password. Should you lose the password, there will be no way to recover the document. Please also note that this password is case-sensitive."
msgstr "Huomaa: Kun salasana on asetettu, asiakirja voidaan avata vain kyseisellä salasanalla. Jos hukkaat salasanan, asiakirjaa ei ole mahdollista palauttaa luettavaksi. Huomaa myös, että salasanassa kirjainkoolla (isot ja pienet kirjaimet) on merkitystä."
#. scLkF
-#: cui/uiconfig/ui/password.ui:156
+#: cui/uiconfig/ui/password.ui:166
msgctxt "password|readonly"
msgid "Open file read-only"
msgstr "Avaa kirjoitussuojattuna"
#. f5Ydx
-#: cui/uiconfig/ui/password.ui:205
+#: cui/uiconfig/ui/password.ui:215
msgctxt "password|label7"
msgid "Enter password to allow editing"
msgstr "Anna salasana muokkauksen mahdollistamiseksi"
#. AgwpD
-#: cui/uiconfig/ui/password.ui:249
+#: cui/uiconfig/ui/password.ui:259
msgctxt "password|label8"
msgid "Confirm password"
msgstr "Vahvista salasana"
#. SEgNR
-#: cui/uiconfig/ui/password.ui:293
+#: cui/uiconfig/ui/password.ui:303
msgctxt "password|label6"
msgid "File Sharing Password"
msgstr "Tiedostojaon salasana"
#. Sjh3k
-#: cui/uiconfig/ui/password.ui:305
+#: cui/uiconfig/ui/password.ui:315
msgctxt "password|label3"
msgid "_Options"
msgstr "Asetukset"
+#. xgwm4
+#: cui/uiconfig/ui/password.ui:321
+msgctxt "password|extended_tip|expander"
+msgid "Click to show or hide the file sharing password options."
+msgstr "Napsauttamalla näytetään tai piilotetaan tiedoston salasanoihin liittyvät asetukset."
+
#. wqXmU
-#: cui/uiconfig/ui/password.ui:323
+#: cui/uiconfig/ui/password.ui:338
msgctxt "password|label4"
msgid "_Enter password to open"
msgstr "Anna salasana avataksesi"
#. ujTNz
-#: cui/uiconfig/ui/password.ui:367
+#: cui/uiconfig/ui/password.ui:382
msgctxt "password|label5"
msgid "Confirm password"
msgstr "Vahvista salasana"
#. FfyCu
-#: cui/uiconfig/ui/password.ui:411
+#: cui/uiconfig/ui/password.ui:426
msgctxt "password|label2"
msgid "File Encryption Password"
msgstr "Tiedoston salasana"
@@ -13302,66 +17609,120 @@ msgctxt "pastespecial|label2"
msgid "Source:"
msgstr "Lähde:"
+#. WzCXw
+#: cui/uiconfig/ui/pastespecial.ui:116
+msgctxt "pastespecial|extended_tip|source"
+msgid "Displays the source of the clipboard contents."
+msgstr "Rivillä näkyy leikepöydän sisällön lähde."
+
+#. RwDM8
+#: cui/uiconfig/ui/pastespecial.ui:181
+msgctxt "pastespecial|extended_tip|list"
+msgid "Select a format for the clipboard contents that you want to paste. The available format depends on the copied or cut source format."
+msgstr ""
+
#. gjnwU
-#: cui/uiconfig/ui/pastespecial.ui:184
+#: cui/uiconfig/ui/pastespecial.ui:194
msgctxt "pastespecial|label1"
msgid "Selection"
msgstr "Valinta"
+#. xNCmW
+#: cui/uiconfig/ui/pastespecial.ui:226
+msgctxt "pastespecial|extended_tip|PasteSpecialDialog"
+msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
+msgstr "Lisätään leikepöydän sisältö käsiteltävään asiakirjaan määriteltävässä muodossa."
+
+#. WiEC6
+#: cui/uiconfig/ui/patterntabpage.ui:75
+msgctxt "patterntabpage|extended_tip|BTN_ADD"
+msgid "Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button."
+msgstr ""
+
#. 68KjX
-#: cui/uiconfig/ui/patterntabpage.ui:82
+#: cui/uiconfig/ui/patterntabpage.ui:87
msgctxt "patterntabpage|BTN_MODIFY"
msgid "_Modify"
msgstr "Muokkaa"
+#. 4LFRB
+#: cui/uiconfig/ui/patterntabpage.ui:94
+msgctxt "patterntabpage|extended_tip|BTN_MODIFY"
+msgid "Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name."
+msgstr ""
+
#. SnESZ
-#: cui/uiconfig/ui/patterntabpage.ui:109
+#: cui/uiconfig/ui/patterntabpage.ui:119
msgctxt "patterntabpage|label3"
msgid "Pattern"
msgstr "Kuvio"
#. qr5PS
-#: cui/uiconfig/ui/patterntabpage.ui:156
+#: cui/uiconfig/ui/patterntabpage.ui:166
msgctxt "patterntabpage|label4"
msgid "Pattern Editor:"
msgstr "Kuvioeditori:"
#. 7nWqN
-#: cui/uiconfig/ui/patterntabpage.ui:187
+#: cui/uiconfig/ui/patterntabpage.ui:197
msgctxt "patterntabpage|CTL_PIXEL-atkobject"
msgid "Pattern Editor"
msgstr "Kuvioeditori"
+#. ED8Xx
+#: cui/uiconfig/ui/patterntabpage.ui:198
+msgctxt "patterntabpage|extended_tip|CTL_PIXEL"
+msgid "Draw the pattern in the 8 x 8 pixel board. Click on a pattern pixel to activate it, click again to deactivate it."
+msgstr ""
+
#. BvHTn
-#: cui/uiconfig/ui/patterntabpage.ui:218
+#: cui/uiconfig/ui/patterntabpage.ui:229
msgctxt "patterntabpage|label5"
msgid "Foreground Color:"
msgstr "Edustan väri:"
+#. EkYFZ
+#: cui/uiconfig/ui/patterntabpage.ui:253
+msgctxt "patterntabpage|extended_tip|LB_COLOR"
+msgid "Set the color of the activated pattern pixels."
+msgstr ""
+
#. S8mpk
-#: cui/uiconfig/ui/patterntabpage.ui:264
+#: cui/uiconfig/ui/patterntabpage.ui:280
msgctxt "patterntabpage|label6"
msgid "Background Color:"
msgstr "Taustan väri:"
+#. h8fmT
+#: cui/uiconfig/ui/patterntabpage.ui:304
+msgctxt "patterntabpage|extended_tip|LB_BACKGROUND_COLOR"
+msgid "Set the color of the deactivated pattern pixels."
+msgstr ""
+
#. hg7RL
-#: cui/uiconfig/ui/patterntabpage.ui:308
+#: cui/uiconfig/ui/patterntabpage.ui:329
msgctxt "patterntabpage|label1"
msgid "Options"
msgstr "Asetukset"
#. 2U7Pc
-#: cui/uiconfig/ui/patterntabpage.ui:357
+#: cui/uiconfig/ui/patterntabpage.ui:378
msgctxt "patterntabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Esimerkki"
#. wCrAc
-#: cui/uiconfig/ui/patterntabpage.ui:379
+#: cui/uiconfig/ui/patterntabpage.ui:400
msgctxt "patterntabpage|label2"
msgid "Preview"
msgstr "Esikatselu"
+#. zmVMN
+#: cui/uiconfig/ui/patterntabpage.ui:416
+msgctxt "patterntabpage|extended_tip|PatternTabPage"
+msgid "Fills the object with a simple two color pattern selected on this page."
+msgstr ""
+
#. WCjNN
#: cui/uiconfig/ui/percentdialog.ui:14
msgctxt "percentdialog|PercentDialog"
@@ -13374,6 +17735,12 @@ msgctxt "percentdialog|label1"
msgid "Minimum Size"
msgstr "Vähimmäiskoko"
+#. uqcmG
+#: cui/uiconfig/ui/percentdialog.ui:122
+msgctxt "percentdialog|extended_tip|PercentDialog"
+msgid "Enter the minimum length for combining single-lined paragraphs as a percentage of the page width."
+msgstr "Annetaan yhdistämisen vähimmäispituus prosentteina sivun leveydestä yksirivisille kappaleille."
+
#. 9RySH
#: cui/uiconfig/ui/personalization_tab.ui:33
msgctxt "personalization_tab|no_persona"
@@ -13392,42 +17759,90 @@ msgctxt "personalization_tab|personas_label"
msgid "LibreOffice Themes"
msgstr "LibreOffice-teemat"
+#. C5MHG
+#: cui/uiconfig/ui/pickbulletpage.ui:43
+msgctxt "pickbulletpage|extended_tip|valueset"
+msgid "Click the bullet style that you want to use."
+msgstr "Napsautetaan numerointimerkkityyliä, jota halutaan käyttää."
+
#. K4D8E
-#: cui/uiconfig/ui/pickbulletpage.ui:53
+#: cui/uiconfig/ui/pickbulletpage.ui:58
msgctxt "pickbulletpage|label25"
msgid "Selection"
msgstr "Valinta"
+#. eYCSe
+#: cui/uiconfig/ui/pickbulletpage.ui:66
+msgctxt "pickbulletpage|extended_tip|PickBulletPage"
+msgid "Displays the different bullet styles that you can apply."
+msgstr "Katsellaan erilaisia, käytettävissä olevia luetelma- eli luettelomerkkityylejä."
+
+#. LkXNn
+#: cui/uiconfig/ui/pickgraphicpage.ui:49
+msgctxt "pickgraphicpage|extended_tip|valueset"
+msgid "Click the graphics that you want to use as bullets."
+msgstr "Napsautetaan luetelmasymbolina käytettävää kuvaa."
+
#. GkQdm
-#: cui/uiconfig/ui/pickgraphicpage.ui:61
+#: cui/uiconfig/ui/pickgraphicpage.ui:66
msgctxt "pickgraphicpage|errorft"
msgid "The Gallery theme 'Bullets' is empty (no images)."
msgstr "Galleriateema Luettelomerkit on tyhjä (ei kuvia)."
#. NrrxW
-#: cui/uiconfig/ui/pickgraphicpage.ui:71
+#: cui/uiconfig/ui/pickgraphicpage.ui:76
msgctxt "pickgraphicpage|browseBtn"
msgid "Add and Resize"
msgstr "Lisää ja muuta kokoa"
#. bX3Eo
-#: cui/uiconfig/ui/pickgraphicpage.ui:99
+#: cui/uiconfig/ui/pickgraphicpage.ui:104
msgctxt "pickgraphicpage|label25"
msgid "Selection"
msgstr "Valinta"
+#. CDrF8
+#: cui/uiconfig/ui/pickgraphicpage.ui:112
+msgctxt "pickgraphicpage|extended_tip|PickGraphicPage"
+msgid "Displays the different graphics that you can use as bullets in a bulleted list."
+msgstr "Katsellaan erilaisia kuvia, jotka ovat käytettävissä luetelmien luetelmasymboleina."
+
+#. Qd4sn
+#: cui/uiconfig/ui/picknumberingpage.ui:43
+msgctxt "picknumberingpage|extended_tip|valueset"
+msgid "Click the numbering style that you want to use."
+msgstr "Napsautetaan käytettävää numerointityyliä."
+
#. 9JnpQ
-#: cui/uiconfig/ui/picknumberingpage.ui:52
+#: cui/uiconfig/ui/picknumberingpage.ui:58
msgctxt "picknumberingpage|label25"
msgid "Selection"
msgstr "Valinta"
+#. mQsy5
+#: cui/uiconfig/ui/picknumberingpage.ui:66
+msgctxt "picknumberingpage|extended_tip|PickNumberingPage"
+msgid "Displays the different numbering styles that you can apply."
+msgstr "Katsellaan erilaisia, käytettävissä olevia numerointityylejä."
+
+#. BDFqB
+#: cui/uiconfig/ui/pickoutlinepage.ui:43
+msgctxt "pickoutlinepage|extended_tip|valueset"
+msgid "Click the outline style that you want to use."
+msgstr "Napsautetaan käytettävää jäsennystyyliä."
+
#. i8h33
-#: cui/uiconfig/ui/pickoutlinepage.ui:52
+#: cui/uiconfig/ui/pickoutlinepage.ui:58
msgctxt "pickoutlinepage|label25"
msgid "Selection"
msgstr "Valinta"
+#. FnZK4
+#: cui/uiconfig/ui/pickoutlinepage.ui:66
+msgctxt "pickoutlinepage|extended_tip|PickOutlinePage"
+msgid "Displays the different styles that you can apply to a hierarchical list. %PRODUCTNAME supports up to nine outline levels in a list hierarchy."
+msgstr "Katsellaan erilaisia tyylejä, joita voidaan käyttää hierarkkisiin luetteloihin. %PRODUCTNAME tukee yhdeksää jäsennystasoa luettelohierarkiassa."
+
#. hRP6U
#: cui/uiconfig/ui/positionpage.ui:66
msgctxt "positionpage|normal"
@@ -13578,165 +17993,291 @@ msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Sijainti Y:"
+#. TCRj5
+#: cui/uiconfig/ui/possizetabpage.ui:95
+msgctxt "possizetabpage|extended_tip|MTR_FLD_POS_X"
+msgid "Enter the horizontal distance that you want to move the object relative to the base point selected in the grid."
+msgstr "Annetaan objektin kohdistusruudukosta valitun peruspisteen ja sivun alkupisteen vaakaetäisyys."
+
+#. 88ohS
+#: cui/uiconfig/ui/possizetabpage.ui:114
+msgctxt "possizetabpage|extended_tip|MTR_FLD_POS_Y"
+msgid "Enter the vertical distance that you want to move the object relative to the base point selected in the grid."
+msgstr "Annetaan objektin kohdistusruudukosta valitun peruspisteen ja sivun alkupisteen pystyetäisyys."
+
+#. fo7DN
+#: cui/uiconfig/ui/possizetabpage.ui:156
+msgctxt "possizetabpage|extended_tip|CTL_POSRECT"
+msgid "Click a base point in the grid, and then enter the amount that you want to shift the object relative to the base point that you selected in the Position Y and Position X boxes. The base points correspond to the selection handles on an object."
+msgstr "Napsautetaan ensin peruspistettä kohdistusruudukossa ja annetaan sitten sille etäisyys suhteessa sivun alkupisteeseen syöttämällä arvot Sijainti Y ja Sijainti X -ruutuihin. Peruspisteet vastaavat objektin kahvoja."
+
#. 35vDU
-#: cui/uiconfig/ui/possizetabpage.ui:159
+#: cui/uiconfig/ui/possizetabpage.ui:174
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Peruspiste:"
#. Vxpqo
-#: cui/uiconfig/ui/possizetabpage.ui:184
+#: cui/uiconfig/ui/possizetabpage.ui:199
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Sijainti"
#. pFULX
-#: cui/uiconfig/ui/possizetabpage.ui:226
+#: cui/uiconfig/ui/possizetabpage.ui:241
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Leveys:"
#. jGiQW
-#: cui/uiconfig/ui/possizetabpage.ui:240
+#: cui/uiconfig/ui/possizetabpage.ui:255
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Korkeus:"
+#. RnbvF
+#: cui/uiconfig/ui/possizetabpage.ui:275
+msgctxt "possizetabpage|extended_tip|MTR_FLD_WIDTH"
+msgid "Enter a width for the selected object."
+msgstr "Annetaan valitun objektin leveys."
+
+#. iEYQc
+#: cui/uiconfig/ui/possizetabpage.ui:294
+msgctxt "possizetabpage|extended_tip|MTR_FLD_HEIGHT"
+msgid "Enter a height for the selected object."
+msgstr "Annetaan valitun objektin korkeus."
+
#. VTzYW
-#: cui/uiconfig/ui/possizetabpage.ui:280
+#: cui/uiconfig/ui/possizetabpage.ui:305
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Säilytä mittasuhteet"
+#. 9AxVT
+#: cui/uiconfig/ui/possizetabpage.ui:314
+msgctxt "possizetabpage|extended_tip|CBX_SCALE"
+msgid "Maintains proportions when you resize the selected object."
+msgstr "Valitun objektin kokoa muutettaessa sen suhteet säilytetään."
+
+#. AzyvU
+#: cui/uiconfig/ui/possizetabpage.ui:357
+msgctxt "possizetabpage|extended_tip|CTL_SIZERECT"
+msgid "Click a base point in the grid, and then enter the new size dimensions for the selected object in the Width and Height boxes."
+msgstr "Valitaan ensin paikallaan pysyvä objektin peruspiste ja annetaan sitten valitun objektin uudet mitat Leveys- ja Korkeus-kenttiin."
+
#. 4A7Le
-#: cui/uiconfig/ui/possizetabpage.ui:340
+#: cui/uiconfig/ui/possizetabpage.ui:375
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Peruspiste:"
#. C2Xds
-#: cui/uiconfig/ui/possizetabpage.ui:365
+#: cui/uiconfig/ui/possizetabpage.ui:400
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Koko"
#. 2mfBD
-#: cui/uiconfig/ui/possizetabpage.ui:405
+#: cui/uiconfig/ui/possizetabpage.ui:440
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Sijainti"
+#. 3CGAx
+#: cui/uiconfig/ui/possizetabpage.ui:450
+msgctxt "possizetabpage|extended_tip|TSB_POSPROTECT"
+msgid "Prevents changes to the position or the size of the selected object."
+msgstr "Estetään valitun objektin sijainnin tai koon muuttaminen."
+
#. qD3T7
-#: cui/uiconfig/ui/possizetabpage.ui:422
+#: cui/uiconfig/ui/possizetabpage.ui:462
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Koko"
+#. 5Fftz
+#: cui/uiconfig/ui/possizetabpage.ui:472
+msgctxt "possizetabpage|extended_tip|TSB_SIZEPROTECT"
+msgid "Prevents you from resizing the object."
+msgstr "Valinta estää objektin koon muuttamisen."
+
#. 4Ezcc
-#: cui/uiconfig/ui/possizetabpage.ui:445
+#: cui/uiconfig/ui/possizetabpage.ui:490
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Suojaa"
#. vpzXL
-#: cui/uiconfig/ui/possizetabpage.ui:479
+#: cui/uiconfig/ui/possizetabpage.ui:524
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Sovita leveys tekstiin"
+#. zZUic
+#: cui/uiconfig/ui/possizetabpage.ui:534
+msgctxt "possizetabpage|extended_tip|TSB_AUTOGROW_WIDTH"
+msgid "Expands the width of the object to the width of the text, if the object is smaller than the text."
+msgstr "Laajennetaan objektin leveyttä tekstin leveyteen, jos objekti on tekstiä pienempi."
+
#. XPXA3
-#: cui/uiconfig/ui/possizetabpage.ui:496
+#: cui/uiconfig/ui/possizetabpage.ui:546
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Sovita korkeus tekstiin"
+#. EoEoC
+#: cui/uiconfig/ui/possizetabpage.ui:556
+msgctxt "possizetabpage|extended_tip|TSB_AUTOGROW_HEIGHT"
+msgid "Expands the height of the object to the height of the text, if the object is smaller than the text."
+msgstr "Laajennetaan objektin korkeutta tekstin korkuiseksi, jos objekti on tekstiä pienempi."
+
#. A4B3x
-#: cui/uiconfig/ui/possizetabpage.ui:519
+#: cui/uiconfig/ui/possizetabpage.ui:574
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Sovita"
+#. 5AEGM
+#: cui/uiconfig/ui/possizetabpage.ui:597
+msgctxt "possizetabpage|extended_tip|PositionAndSize"
+msgid "Resizes or moves the selected object."
+msgstr "Valittua objektia siirretään tai sen kokoa muutetaan."
+
#. BydCX
#: cui/uiconfig/ui/posterdialog.ui:15
msgctxt "posterdialog|PosterDialog"
msgid "Posterize"
msgstr "Värien vähennys"
+#. ySBCG
+#: cui/uiconfig/ui/posterdialog.ui:146
+msgctxt "posterdialog|extended_tip|value"
+msgid "Specifies the number of colors to which the image is to be reduced."
+msgstr "Määritetään kuvaan jätettävien värien lukumäärä."
+
#. 2ncug
-#: cui/uiconfig/ui/posterdialog.ui:157
+#: cui/uiconfig/ui/posterdialog.ui:159
msgctxt "posterdialog|label2"
msgid "Poster colors:"
msgstr "Värien määrä:"
#. 3iZDQ
-#: cui/uiconfig/ui/posterdialog.ui:181
+#: cui/uiconfig/ui/posterdialog.ui:183
msgctxt "posterdialog|label1"
msgid "Parameters"
msgstr "Parametrit"
+#. DoLFC
+#: cui/uiconfig/ui/posterdialog.ui:208
+msgctxt "posterdialog|extended_tip|PosterDialog"
+msgid "Opens a dialog to determine the number of poster colors."
+msgstr ""
+
#. YodDB
-#: cui/uiconfig/ui/qrcodegen.ui:15
+#: cui/uiconfig/ui/qrcodegen.ui:14
msgctxt "qrcodegen|QrCodeGenDialog"
msgid "QR Code Generator"
msgstr "QR-koodin luonti"
#. CCQhf
-#: cui/uiconfig/ui/qrcodegen.ui:117
+#: cui/uiconfig/ui/qrcodegen.ui:116
msgctxt "qrcodegen|edit_name"
msgid "www.libreoffice.org"
msgstr "www.libreoffice.org"
+#. B4bcB
+#: cui/uiconfig/ui/qrcodegen.ui:119
+msgctxt "qr text"
+msgid "The text from which to generate the QR code."
+msgstr "Teksti, josta QR-koodi luodaan."
+
#. PFE57
#. Text to be stored in the QR
-#: cui/uiconfig/ui/qrcodegen.ui:129
+#: cui/uiconfig/ui/qrcodegen.ui:133
msgctxt "qrcodegen|label_text"
msgid "URL/Text :"
msgstr "URL-osoite/teksti:"
#. HYC7f
#. Set Border around QR
-#: cui/uiconfig/ui/qrcodegen.ui:144
+#: cui/uiconfig/ui/qrcodegen.ui:148
msgctxt "qrcodegen|label_border"
msgid "Border :"
msgstr "Reuna:"
#. i2kkj
#. Error Correction Level of QR code
-#: cui/uiconfig/ui/qrcodegen.ui:164
+#: cui/uiconfig/ui/qrcodegen.ui:168
msgctxt "qrcodegen|label_ecc"
msgid "Error Correction:"
msgstr "Virheenkorjaus:"
+#. ecSS4
+#: cui/uiconfig/ui/qrcodegen.ui:199
+msgctxt "edit border"
+msgid "The width in dots of the border surrounding the QR code."
+msgstr ""
+
#. vUJPT
-#: cui/uiconfig/ui/qrcodegen.ui:203
+#: cui/uiconfig/ui/qrcodegen.ui:215
msgctxt "qrcodegen|ErrorCorrection"
msgid "Low"
msgstr "Alhainen"
+#. GeYR9
+#: cui/uiconfig/ui/qrcodegen.ui:228
+msgctxt "button_low"
+msgid "7% of codewords can be restored."
+msgstr ""
+
#. 2gaf5
-#: cui/uiconfig/ui/qrcodegen.ui:219
+#: cui/uiconfig/ui/qrcodegen.ui:239
msgctxt "qrcodegen|ErrorCorrection"
msgid "Medium"
msgstr "Keskitaso"
+#. 3A5XB
+#: cui/uiconfig/ui/qrcodegen.ui:253
+msgctxt "button_medium"
+msgid "15% of codewords can be restored."
+msgstr ""
+
#. GBf3R
-#: cui/uiconfig/ui/qrcodegen.ui:236
+#: cui/uiconfig/ui/qrcodegen.ui:264
msgctxt "qrcodegen|ErrorCorrection"
msgid "Quartile"
msgstr "Kvartiili"
+#. x4g64
+#: cui/uiconfig/ui/qrcodegen.ui:278
+msgctxt "button_quartile"
+msgid "25% of codewords can be restored."
+msgstr ""
+
#. WS3ER
-#: cui/uiconfig/ui/qrcodegen.ui:253
+#: cui/uiconfig/ui/qrcodegen.ui:289
msgctxt "qrcodegen|ErrorCorrection"
msgid "High"
msgstr "Korkea"
+#. A2TRN
+#: cui/uiconfig/ui/qrcodegen.ui:303
+msgctxt "button_high"
+msgid "30% of codewords can be restored."
+msgstr ""
+
#. VCCGD
-#: cui/uiconfig/ui/qrcodegen.ui:282
+#: cui/uiconfig/ui/qrcodegen.ui:326
msgctxt "qrcodegen|QR Code Properties"
msgid "Options"
msgstr "Asetukset"
+#. fj4HR
+#: cui/uiconfig/ui/qrcodegen.ui:357
+msgctxt "qr code dialog title"
+msgid "Generate QR Code for any text or URL."
+msgstr "Luo QR-koodi mistä tahansta tekstistä tai URL-osoitteesta."
+
#. 3HNDZ
#: cui/uiconfig/ui/querychangelineenddialog.ui:7
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
@@ -13965,48 +18506,84 @@ msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Sijainti Y:"
-#. GpHXD
-#: cui/uiconfig/ui/rotationtabpage.ui:123
-msgctxt "rotationtabpage|FT_POSPRESETS"
-msgid "_Default settings:"
-msgstr "Oletusasetukset:"
+#. EiCXd
+#: cui/uiconfig/ui/rotationtabpage.ui:89
+msgctxt "rotationtabpage|extended_tip|MTR_FLD_POS_X"
+msgid "Enter the horizontal distance from the left edge of the page to the pivot point."
+msgstr "Annetaan vaakaetäisyys sivun vasemmasta reunasta kiertoakseliin."
+
+#. 3gEFD
+#: cui/uiconfig/ui/rotationtabpage.ui:107
+msgctxt "rotationtabpage|extended_tip|MTR_FLD_POS_Y"
+msgid "Enter the vertical distance from the top edge of the page to the pivot point."
+msgstr "Annetaan pystyetäisyys sivun yläreunasta kiertoakseliin."
#. 6tTrN
-#: cui/uiconfig/ui/rotationtabpage.ui:151
+#: cui/uiconfig/ui/rotationtabpage.ui:147
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Kiertopiste"
+#. Kpeuu
+#: cui/uiconfig/ui/rotationtabpage.ui:150
+msgctxt "rotationtabpage|extended_tip|CTL_RECT"
+msgid "Click where you want to place the pivot point."
+msgstr "Napsautetaan siellä, minne keskipiste halutaan."
+
+#. GpHXD
+#: cui/uiconfig/ui/rotationtabpage.ui:168
+msgctxt "rotationtabpage|FT_POSPRESETS"
+msgid "_Default settings:"
+msgstr "Oletusasetukset:"
+
#. mNM6u
-#: cui/uiconfig/ui/rotationtabpage.ui:178
+#: cui/uiconfig/ui/rotationtabpage.ui:193
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Keskipiste"
#. w4tmF
-#: cui/uiconfig/ui/rotationtabpage.ui:220
+#: cui/uiconfig/ui/rotationtabpage.ui:235
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Kulma:"
+#. 2nqLU
+#: cui/uiconfig/ui/rotationtabpage.ui:256
+msgctxt "rotationtabpage|extended_tip|NF_ANGLE"
+msgid "Enter the number of degrees that you want to rotate the selected object."
+msgstr "Annetaan astemäärä valitun objektin kiertämiselle."
+
#. G7xCD
-#: cui/uiconfig/ui/rotationtabpage.ui:264
+#: cui/uiconfig/ui/rotationtabpage.ui:284
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Kiertokulma"
+#. RCbZK
+#: cui/uiconfig/ui/rotationtabpage.ui:288
+msgctxt "rotationtabpage|extended_tip|CTL_ANGLE"
+msgid "Click to specify the rotation angle in multiples of 45 degrees."
+msgstr "Napsauttamalla kiertämisritilää määritetään kiertokulma 45 asteen kerrannaisina."
+
#. LrED9
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:302
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Oletusasetukset:"
#. Hg259
-#: cui/uiconfig/ui/rotationtabpage.ui:302
+#: cui/uiconfig/ui/rotationtabpage.ui:327
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Kiertokulma"
+#. ByBjr
+#: cui/uiconfig/ui/rotationtabpage.ui:343
+msgctxt "rotationtabpage|extended_tip|Rotation"
+msgid "Rotates the selected object."
+msgstr "Valittua objektia kierretään."
+
#. r67NG
#: cui/uiconfig/ui/screenshotannotationdialog.ui:8
msgctxt "screenshotannotationdialog|ScreenshotAnnotationDialog"
@@ -14039,41 +18616,77 @@ msgid "%MACROLANG Macros"
msgstr "%MACROLANG-makrot"
#. FrF4C
-#: cui/uiconfig/ui/scriptorganizer.ui:37
+#: cui/uiconfig/ui/scriptorganizer.ui:34
msgctxt "scriptorganizer|run"
msgid "Run"
msgstr "Suorita"
#. nVYFP
-#: cui/uiconfig/ui/scriptorganizer.ui:165
+#: cui/uiconfig/ui/scriptorganizer.ui:161
msgctxt "scriptorganizer|create"
msgid "Create..."
msgstr "Luo..."
+#. xsmtf
+#: cui/uiconfig/ui/scriptorganizer.ui:167
+msgctxt "scriptorganizer|extended_tip|create"
+msgid "Creates a new script."
+msgstr ""
+
+#. pUCto
+#: cui/uiconfig/ui/scriptorganizer.ui:186
+msgctxt "scriptorganizer|extended_tip|edit"
+msgid "Opens the default script editor for your operating system."
+msgstr ""
+
#. 8iqip
-#: cui/uiconfig/ui/scriptorganizer.ui:192
+#: cui/uiconfig/ui/scriptorganizer.ui:198
msgctxt "scriptorganizer|rename"
msgid "Rename..."
msgstr "Nimeä uudelleen..."
+#. D6WNC
+#: cui/uiconfig/ui/scriptorganizer.ui:204
+msgctxt "scriptorganizer|extended_tip|rename"
+msgid "Opens a dialog where you can change the name of the selected script."
+msgstr ""
+
#. vvvff
-#: cui/uiconfig/ui/scriptorganizer.ui:205
+#: cui/uiconfig/ui/scriptorganizer.ui:216
msgctxt "scriptorganizer|delete"
msgid "Delete..."
msgstr "Poista..."
+#. wZgUF
+#: cui/uiconfig/ui/scriptorganizer.ui:222
+msgctxt "scriptorganizer|extended_tip|delete"
+msgid "Prompts you to delete the selected script."
+msgstr ""
+
#. fQdom
-#: cui/uiconfig/ui/scriptorganizer.ui:230
+#: cui/uiconfig/ui/scriptorganizer.ui:246
msgctxt "scriptorganizer|macrosft"
msgid "Macros"
msgstr "Makrot"
+#. vX8VC
+#: cui/uiconfig/ui/scriptorganizer.ui:271
+msgctxt "scriptorganizer|extended_tip|ScriptOrganizerDialog"
+msgid "Select a macro or script from My Macros, %PRODUCTNAME Macros, or an open document. To view the available macros or scripts, double-click an entry."
+msgstr ""
+
#. U3sDy
#: cui/uiconfig/ui/searchattrdialog.ui:22
msgctxt "searchattrdialog|SearchAttrDialog"
msgid "Attributes"
msgstr "Määritteet"
+#. C5Fet
+#: cui/uiconfig/ui/searchattrdialog.ui:155
+msgctxt "searchattrdialog|extended_tip|SearchAttrDialog"
+msgid "Choose the text attributes that you want to search for. For example, if you search for the Font attribute, all instances of text that do not use the default font are found. All text that has a directly coded font attribute, and all text where a style switches the font attribute, are found."
+msgstr ""
+
#. 2nKNE
#: cui/uiconfig/ui/searchformatdialog.ui:8
msgctxt "searchformatdialog|SearchFormatDialog"
@@ -14146,126 +18759,252 @@ msgctxt "securityoptionsdialog|savesenddocs"
msgid "_When saving or sending"
msgstr "Tallennettaessa tai lähetettäessä"
+#. nPLGw
+#: cui/uiconfig/ui/securityoptionsdialog.ui:117
+msgctxt "extended_tip|savesenddocs"
+msgid "Select to see a warning dialog when you try to save or send a document that contains recorded changes, versions, or comments."
+msgstr ""
+
#. 6f6yg
-#: cui/uiconfig/ui/securityoptionsdialog.ui:123
+#: cui/uiconfig/ui/securityoptionsdialog.ui:128
msgctxt "securityoptionsdialog|whensigning"
msgid "When _signing"
msgstr "Allekirjoitettaessa"
+#. zPKQY
+#: cui/uiconfig/ui/securityoptionsdialog.ui:137
+msgctxt "extended_tip|whensigning"
+msgid "Select to see a warning dialog when you try to sign a document that contains recorded changes, versions, fields, references to other sources (for example linked sections or linked pictures), or comments."
+msgstr ""
+
#. D6Lsv
-#: cui/uiconfig/ui/securityoptionsdialog.ui:138
+#: cui/uiconfig/ui/securityoptionsdialog.ui:148
msgctxt "securityoptionsdialog|whenprinting"
msgid "When _printing"
msgstr "Tulostettaessa"
+#. fYdUd
+#: cui/uiconfig/ui/securityoptionsdialog.ui:157
+msgctxt "extended_tip|whenprinting"
+msgid "Select to see a warning dialog when you try to print a document that contains recorded changes or comments."
+msgstr ""
+
#. 8BnPF
-#: cui/uiconfig/ui/securityoptionsdialog.ui:153
+#: cui/uiconfig/ui/securityoptionsdialog.ui:168
msgctxt "securityoptionsdialog|whenpdf"
msgid "When creating PDF _files"
msgstr "PDF-tiedostoja luotaessa"
+#. jVm3C
+#: cui/uiconfig/ui/securityoptionsdialog.ui:177
+msgctxt "extended_tip|whenpdf"
+msgid "Select to see a warning dialog when you try to export a document to PDF format that displays recorded changes in Writer, or that displays comments."
+msgstr ""
+
#. pfCsh
-#: cui/uiconfig/ui/securityoptionsdialog.ui:229
+#: cui/uiconfig/ui/securityoptionsdialog.ui:249
msgctxt "securityoptionsdialog|label3"
msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
msgstr "Varoita jos asiakirja sisältää talletettuja muutoksia, versioita, piilotettua tietoa tai huomautuksia:"
#. 3yxBp
-#: cui/uiconfig/ui/securityoptionsdialog.ui:245
+#: cui/uiconfig/ui/securityoptionsdialog.ui:265
msgctxt "securityoptionsdialog|label1"
msgid "Security Warnings"
msgstr "Suojausvaroitukset"
#. 8Vywd
-#: cui/uiconfig/ui/securityoptionsdialog.ui:279
+#: cui/uiconfig/ui/securityoptionsdialog.ui:299
msgctxt "securityoptionsdialog|removepersonal"
msgid "_Remove personal information on saving"
msgstr "Poista henkilötiedot tallennettaessa"
+#. kjZqN
+#: cui/uiconfig/ui/securityoptionsdialog.ui:309
+msgctxt "extended_tip|removepersonal"
+msgid "Select to always remove user data from the file properties. If this option is not selected, you can still remove the personal information for the current document with the Reset Properties button on File - Properties - General."
+msgstr ""
+
#. y5FFs
-#: cui/uiconfig/ui/securityoptionsdialog.ui:295
+#: cui/uiconfig/ui/securityoptionsdialog.ui:320
msgctxt "securityoptionsdialog|password"
msgid "Recommend password protection on sa_ving"
msgstr "Ehdota salasanasuojausta tallennettaessa"
+#. kWgcV
+#: cui/uiconfig/ui/securityoptionsdialog.ui:330
+msgctxt "extended_tip|password"
+msgid "Select to always enable the Save with password option in the file save dialogs. Deselect the option to save files by default without password."
+msgstr ""
+
#. i3F7P
-#: cui/uiconfig/ui/securityoptionsdialog.ui:311
+#: cui/uiconfig/ui/securityoptionsdialog.ui:341
msgctxt "securityoptionsdialog|ctrlclick"
msgid "Ctrl-click required _to open hyperlinks"
msgstr "Hyperlinkkien avaaminen vaatii Ctrl-napsautuksen"
+#. nxTdt
+#: cui/uiconfig/ui/securityoptionsdialog.ui:351
+msgctxt "extended_tip|ctrlclick"
+msgid "If enabled, you must hold down the Ctrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink."
+msgstr ""
+
#. Ubb9Q
-#: cui/uiconfig/ui/securityoptionsdialog.ui:327
+#: cui/uiconfig/ui/securityoptionsdialog.ui:362
msgctxt "securityoptionsdialog|blockuntrusted"
msgid "Block any links from documents not among the trusted locations (see Macro Security)"
msgstr "Estä linkit asiakirjoissa, jotka eivät ole luotetuissa sijainneissa (ks. Makrojen turvallisuus)"
+#. Zm9kD
+#: cui/uiconfig/ui/securityoptionsdialog.ui:372
+msgctxt "extended_tip|blockuntrusted"
+msgid "Blocks the use of linked images by documents not in the trusted locations defined on the Trusted Sources tab of the Macro Security dialog."
+msgstr ""
+
#. vQGT6
-#: cui/uiconfig/ui/securityoptionsdialog.ui:398
+#: cui/uiconfig/ui/securityoptionsdialog.ui:438
msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Suojausasetukset"
+#. GENQg
+#: cui/uiconfig/ui/securityoptionsdialog.ui:470
+msgctxt "extended_tip|SecurityOptionsDialog"
+msgid "Set security related options and warnings about hidden information in documents."
+msgstr ""
+
#. md3EB
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
msgstr "Valitse polut"
+#. R45hT
+#: cui/uiconfig/ui/selectpathdialog.ui:42
+msgctxt "selectpathdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. 2rXGN
+#: cui/uiconfig/ui/selectpathdialog.ui:61
+msgctxt "selectpathdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. oN39A
-#: cui/uiconfig/ui/selectpathdialog.ui:117
+#: cui/uiconfig/ui/selectpathdialog.ui:127
msgctxt "selectpathdialog|add"
msgid "_Add..."
msgstr "Lisää..."
+#. dUWC3
+#: cui/uiconfig/ui/selectpathdialog.ui:134
+msgctxt "cui/ui/selectpathdialog/add"
+msgid "Opens the Select Path dialog to select another folder or the Open dialog to select another file."
+msgstr ""
+
+#. WKcRy
+#: cui/uiconfig/ui/selectpathdialog.ui:153
+msgctxt "selectpathdialog|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
+#. UADPU
+#: cui/uiconfig/ui/selectpathdialog.ui:201
+msgctxt "cui/ui/selectpathdialog/paths"
+msgid "Contains a list of the paths that have already been added. Mark the default path for new files."
+msgstr ""
+
#. oADTt
-#: cui/uiconfig/ui/selectpathdialog.ui:195
+#: cui/uiconfig/ui/selectpathdialog.ui:220
msgctxt "selectpathdialog|label1"
msgid "Paths"
msgstr "Polut"
#. UzFeh
-#: cui/uiconfig/ui/shadowtabpage.ui:40
+#: cui/uiconfig/ui/shadowtabpage.ui:45
msgctxt "shadowtabpage|TSB_SHOW_SHADOW"
msgid "_Use shadow"
msgstr "Käytä varjoa"
+#. 6bXyA
+#: cui/uiconfig/ui/shadowtabpage.ui:55
+msgctxt "shadowtabpage|extended_tip|TSB_SHOW_SHADOW"
+msgid "Adds a shadow to the selected drawing object."
+msgstr ""
+
+#. GGsRg
+#: cui/uiconfig/ui/shadowtabpage.ui:85
+msgctxt "shadowtabpage|extended_tip|MTR_SHADOW_TRANSPARENT"
+msgid "Enter a percentage from 0% (opaque) to 100% (transparent) to specify the transparency of the shadow."
+msgstr ""
+
+#. FEWDn
+#: cui/uiconfig/ui/shadowtabpage.ui:116
+msgctxt "shadowtabpage|extended_tip|MTR_FLD_DISTANCE"
+msgid "Enter the distance that you want the shadow to be offset from the selected object."
+msgstr ""
+
+#. 3PNWf
+#: cui/uiconfig/ui/shadowtabpage.ui:143
+msgctxt "shadowtabpage|extended_tip|CTL_POSITION"
+msgid "Click where you want to cast the shadow."
+msgstr ""
+
+#. BEyDS
+#: cui/uiconfig/ui/shadowtabpage.ui:169
+msgctxt "shadowtabpage|extended_tip|LB_SHADOW_COLOR"
+msgid "Select a color for the shadow."
+msgstr "Valitaan varjon väri."
+
#. 4BFuT
-#: cui/uiconfig/ui/shadowtabpage.ui:139
+#: cui/uiconfig/ui/shadowtabpage.ui:182
msgctxt "shadowtabpage|FT_DISTANCE"
msgid "_Distance:"
msgstr "Etäisyys:"
#. 5ZBde
-#: cui/uiconfig/ui/shadowtabpage.ui:153
+#: cui/uiconfig/ui/shadowtabpage.ui:196
msgctxt "shadowtabpage|FT_SHADOW_COLOR"
msgid "_Color:"
msgstr "Väri:"
+#. kGyDZ
+#: cui/uiconfig/ui/shadowtabpage.ui:210
+msgctxt "shadowtabpage|FT_SHADOW_BLUR"
+msgid "_Blur:"
+msgstr ""
+
#. DMAGP
-#: cui/uiconfig/ui/shadowtabpage.ui:167
+#: cui/uiconfig/ui/shadowtabpage.ui:224
msgctxt "shadowtabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "Läpinäkyvyys:"
#. JsPjd
-#: cui/uiconfig/ui/shadowtabpage.ui:197
+#: cui/uiconfig/ui/shadowtabpage.ui:254
msgctxt "shadowtabpage|label"
msgid "Properties"
msgstr "Ominaisuudet"
#. SYFAn
-#: cui/uiconfig/ui/shadowtabpage.ui:246
+#: cui/uiconfig/ui/shadowtabpage.ui:303
msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject"
msgid "Example"
msgstr "Esimerkki"
#. HcTUC
-#: cui/uiconfig/ui/shadowtabpage.ui:268
+#: cui/uiconfig/ui/shadowtabpage.ui:325
msgctxt "shadowtabpage|label"
msgid "Preview"
msgstr "Esikatselu"
+#. nxBPj
+#: cui/uiconfig/ui/shadowtabpage.ui:340
+msgctxt "shadowtabpage|extended_tip|ShadowTabPage"
+msgid "Add a shadow to the selected drawing object, and define the properties of the shadow."
+msgstr ""
+
#. C7Ct3
#: cui/uiconfig/ui/showcoldialog.ui:16
msgctxt "showcoldialog|ShowColDialog"
@@ -14290,65 +19029,101 @@ msgctxt "signatureline|edit_name"
msgid "John Doe"
msgstr "Matti Meikäläinen"
+#. F8khU
+#: cui/uiconfig/ui/signatureline.ui:114
+msgctxt "signatureline|extended_tip|edit_name"
+msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
+msgstr ""
+
#. bMy9F
-#: cui/uiconfig/ui/signatureline.ui:124
+#: cui/uiconfig/ui/signatureline.ui:129
msgctxt "signatureline|edit_title"
msgid "Director"
msgstr "Johtaja"
+#. BfTFx
+#: cui/uiconfig/ui/signatureline.ui:132
+msgctxt "signatureline|extended_tip|edit_title"
+msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
+msgstr ""
+
#. 3SKcg
-#: cui/uiconfig/ui/signatureline.ui:137
+#: cui/uiconfig/ui/signatureline.ui:147
msgctxt "signatureline|edit_email"
msgid "john.doe@example.org"
msgstr "matti.meikalainen@esimerkki.fi"
+#. DF2wM
+#: cui/uiconfig/ui/signatureline.ui:150
+msgctxt "signatureline|extended_tip|edit_email"
+msgid "Enter the email of the signer. The email is not displayed in the signature line graphic box, but is used for the digital signature."
+msgstr ""
+
#. As8u6
#. Suggested Signer Name
-#: cui/uiconfig/ui/signatureline.ui:149
+#: cui/uiconfig/ui/signatureline.ui:164
msgctxt "signatureline|label_name"
msgid "Name:"
msgstr "Nimi:"
#. dMWtK
#. Suggested Signer Title
-#: cui/uiconfig/ui/signatureline.ui:163
+#: cui/uiconfig/ui/signatureline.ui:178
msgctxt "signatureline|label_title"
msgid "Title:"
msgstr "Nimike:"
#. 48kX8
#. Suggested Signer email
-#: cui/uiconfig/ui/signatureline.ui:177
+#: cui/uiconfig/ui/signatureline.ui:192
msgctxt "signatureline|label_email"
msgid "Email:"
msgstr "Sähköposti:"
#. 4C6SW
-#: cui/uiconfig/ui/signatureline.ui:194
+#: cui/uiconfig/ui/signatureline.ui:209
msgctxt "signatureline|label_suggestedsigner"
msgid "Suggested Signer"
msgstr "Ehdotettu allekirjoittaja"
#. 4R5Hz
-#: cui/uiconfig/ui/signatureline.ui:228
+#: cui/uiconfig/ui/signatureline.ui:243
msgctxt "signatureline|checkbox_can_add_comments"
msgid "Signer can add comments"
msgstr "Allekirjoittaja voi lisätä huomautuksia"
+#. Gonpf
+#: cui/uiconfig/ui/signatureline.ui:252
+msgctxt "signatureline|extended_tip|checkbox_can_add_comments"
+msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
+msgstr ""
+
#. BPMGM
-#: cui/uiconfig/ui/signatureline.ui:243
+#: cui/uiconfig/ui/signatureline.ui:263
msgctxt "signatureline|checkbox_show_sign_date"
msgid "Show sign date in signature line"
msgstr "Näytä allekirjoituspäivä allekirjoitusrivillä"
+#. QnaFT
+#: cui/uiconfig/ui/signatureline.ui:272
+msgctxt "signatureline|extended_tip|checkbox_show_sign_date"
+msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
+msgstr ""
+
#. fSsbq
-#: cui/uiconfig/ui/signatureline.ui:261
+#: cui/uiconfig/ui/signatureline.ui:286
msgctxt "signatureline|label_instructions"
msgid "Instructions to the signer:"
msgstr "Ohjeet allekirjoittajalle:"
+#. AdqtN
+#: cui/uiconfig/ui/signatureline.ui:311
+msgctxt "signatureline|extended_tip|edit_instructions"
+msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
+msgstr ""
+
#. jqCPH
-#: cui/uiconfig/ui/signatureline.ui:300
+#: cui/uiconfig/ui/signatureline.ui:330
msgctxt "signatureline|label_more"
msgid "More"
msgstr "Lisää"
@@ -14360,82 +19135,106 @@ msgid "Sign Signature Line"
msgstr "Allekirjoita allekirjoitusrivi"
#. 8JC4v
-#: cui/uiconfig/ui/signsignatureline.ui:56
+#: cui/uiconfig/ui/signsignatureline.ui:53
msgctxt "signsignatureline|ok"
msgid "Sign"
msgstr "Allekirjoita"
#. yE7r7
-#: cui/uiconfig/ui/signsignatureline.ui:113
+#: cui/uiconfig/ui/signsignatureline.ui:110
msgctxt "signsignatureline|edit_name"
msgid "Type your name here"
msgstr "Kirjoita nimesi tähän"
+#. XNvhh
+#: cui/uiconfig/ui/signsignatureline.ui:113
+msgctxt "signsignatureline|extended_tip|edit_name"
+msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
+msgstr ""
+
#. dgTR9
#. Name of the signer
-#: cui/uiconfig/ui/signsignatureline.ui:125
+#: cui/uiconfig/ui/signsignatureline.ui:127
msgctxt "signsignatureline|label_name"
msgid "Your Name:"
msgstr "Nimesi:"
#. 5dFsN
#. Certificate to be used for signing
-#: cui/uiconfig/ui/signsignatureline.ui:139
+#: cui/uiconfig/ui/signsignatureline.ui:141
msgctxt "signsignatureline|label_certificate"
msgid "Certificate:"
msgstr "Varmenne:"
#. SNBEH
-#: cui/uiconfig/ui/signsignatureline.ui:150
+#: cui/uiconfig/ui/signsignatureline.ui:152
msgctxt "signsignatureline|btn_select_certificate"
msgid "Select Certificate"
msgstr "Valitse varmenne"
+#. uJ9EC
+#: cui/uiconfig/ui/signsignatureline.ui:158
+msgctxt "signsignatureline|extended_tip|btn_select_certificate"
+msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
+msgstr ""
+
#. 3vSAS
#. Name of the signer
-#: cui/uiconfig/ui/signsignatureline.ui:166
+#: cui/uiconfig/ui/signsignatureline.ui:173
msgctxt "signsignatureline|label_name"
msgid "or"
msgstr "tai"
#. XhtMy
-#: cui/uiconfig/ui/signsignatureline.ui:175
+#: cui/uiconfig/ui/signsignatureline.ui:182
msgctxt "signsignatureline|btn_load_image"
msgid "Use Signature Image"
msgstr "Käytä allekirjoituskuvaa"
#. SVjkF
-#: cui/uiconfig/ui/signsignatureline.ui:190
+#: cui/uiconfig/ui/signsignatureline.ui:197
msgctxt "signsignatureline|btn_clear_image"
msgid "Clear"
msgstr "Tyhjennä"
#. wZRg8
-#: cui/uiconfig/ui/signsignatureline.ui:206
+#: cui/uiconfig/ui/signsignatureline.ui:213
msgctxt "signsignatureline|label_image_dimensions"
msgid "Best image size: 600 x 100 px"
msgstr "Paras kuvakoko: 600 x 100 px"
#. xUxqT
-#: cui/uiconfig/ui/signsignatureline.ui:237
+#: cui/uiconfig/ui/signsignatureline.ui:244
msgctxt "signsignatureline|label_sign"
msgid "Sign"
msgstr "Allekirjoita"
#. ViryY
-#: cui/uiconfig/ui/signsignatureline.ui:274
+#: cui/uiconfig/ui/signsignatureline.ui:281
msgctxt "signsignatureline|label_add_comment"
msgid "Add comment:"
msgstr "Lisää huomautus:"
+#. CJAg3
+#: cui/uiconfig/ui/signsignatureline.ui:306
+msgctxt "signsignatureline|extended_tip|edit_comment"
+msgid "Enter comments about the signature. The comments are displayed in the Description field of the certificate."
+msgstr ""
+
#. k4PqT
-#: cui/uiconfig/ui/signsignatureline.ui:310
+#: cui/uiconfig/ui/signsignatureline.ui:322
msgctxt "signsignatureline|label_hint"
msgid "Instructions from the document creator:"
msgstr "Ohjeet asiakirjan tekijältä:"
-#. kVoG9
+#. J8MFU
#: cui/uiconfig/ui/signsignatureline.ui:343
+msgctxt "signsignatureline|extended_tip|label_hint_text"
+msgid "This area displays the instructions entered by the document creator when adding the signature line."
+msgstr ""
+
+#. kVoG9
+#: cui/uiconfig/ui/signsignatureline.ui:360
msgctxt "signsignatureline|label_more"
msgid "More"
msgstr "Lisää"
@@ -14470,84 +19269,174 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Yhdistä"
+#. FBUtw
+#: cui/uiconfig/ui/similaritysearchdialog.ui:157
+msgctxt "similaritysearchdialog|extended_tip|relaxbox"
+msgid "Searches for a term that matches any combination of the similarity search settings."
+msgstr "Osumaksi hyväksytään minkä tahansa ehtojen yhdistelmän täyttävä sana."
+
+#. ncAU3
+#: cui/uiconfig/ui/similaritysearchdialog.ui:174
+msgctxt "similaritysearchdialog|extended_tip|otherfld"
+msgid "Enter the number of characters in the search term that can be exchanged."
+msgstr ""
+
+#. K5dwk
+#: cui/uiconfig/ui/similaritysearchdialog.ui:190
+msgctxt "similaritysearchdialog|extended_tip|longerfld"
+msgid "Enter the maximum number of characters by which a word can exceed the number of characters in the search term."
+msgstr "Kirjataan ruutuun suurin merkkien lukumäärä, jolla hyväksyttävä osuma voi ylittää hakutermin."
+
+#. iK8Hr
+#: cui/uiconfig/ui/similaritysearchdialog.ui:206
+msgctxt "similaritysearchdialog|extended_tip|shorterfld"
+msgid "Enter the number of characters by which a word can be shorter than the search term."
+msgstr "Annetaan lukumäärä, jolla osuma voi alittaa hakutermin merkkien määrän."
+
+#. TBNnx
+#: cui/uiconfig/ui/similaritysearchdialog.ui:234
+msgctxt "similaritysearchdialog|extended_tip|SimilaritySearchDialog"
+msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options."
+msgstr ""
+
#. VNDAt
#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "X:"
+#. 2e5NJ
+#: cui/uiconfig/ui/slantcornertabpage.ui:90
+msgctxt "slantcornertabpage|extended_tip|controlx1"
+msgid "Enter the X coordinate of the control point 1"
+msgstr ""
+
#. CkJx5
-#: cui/uiconfig/ui/slantcornertabpage.ui:110
+#: cui/uiconfig/ui/slantcornertabpage.ui:115
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "Y:"
+#. ozMHB
+#: cui/uiconfig/ui/slantcornertabpage.ui:135
+msgctxt "slantcornertabpage|extended_tip|controly1"
+msgid "Enter the Y coordinate of the control point 1"
+msgstr ""
+
#. gpixF
-#: cui/uiconfig/ui/slantcornertabpage.ui:149
+#: cui/uiconfig/ui/slantcornertabpage.ui:159
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Ohjauspiste 1"
#. krHiw
-#: cui/uiconfig/ui/slantcornertabpage.ui:183
+#: cui/uiconfig/ui/slantcornertabpage.ui:193
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Säde:"
+#. v8XnA
+#: cui/uiconfig/ui/slantcornertabpage.ui:212
+msgctxt "slantcornertabpage|extended_tip|MTR_FLD_RADIUS"
+msgid "Enter the radius of the circle that you want to use to round the corners."
+msgstr "Annetaan sen ympyrän säde, jota käytetään kulmien pyöristyksessä."
+
#. WVN9Y
-#: cui/uiconfig/ui/slantcornertabpage.ui:214
+#: cui/uiconfig/ui/slantcornertabpage.ui:229
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Kulmasäde"
#. oVtU3
-#: cui/uiconfig/ui/slantcornertabpage.ui:248
+#: cui/uiconfig/ui/slantcornertabpage.ui:263
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Kulma:"
+#. sUHCF
+#: cui/uiconfig/ui/slantcornertabpage.ui:282
+msgctxt "slantcornertabpage|extended_tip|MTR_FLD_ANGLE"
+msgid "Enter the angle of the slant axis."
+msgstr "Annetaan kallistusakselin kulma."
+
#. ATpxT
-#: cui/uiconfig/ui/slantcornertabpage.ui:279
+#: cui/uiconfig/ui/slantcornertabpage.ui:299
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Kallista"
#. mtFaZ
-#: cui/uiconfig/ui/slantcornertabpage.ui:320
+#: cui/uiconfig/ui/slantcornertabpage.ui:340
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "X:"
-#. 3EL7K
+#. nvSvt
#: cui/uiconfig/ui/slantcornertabpage.ui:360
+msgctxt "slantcornertabpage|extended_tip|controlx2"
+msgid "Enter the X coordinate of the control point 2"
+msgstr ""
+
+#. 3EL7K
+#: cui/uiconfig/ui/slantcornertabpage.ui:385
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "Y:"
+#. zAyqa
+#: cui/uiconfig/ui/slantcornertabpage.ui:405
+msgctxt "slantcornertabpage|extended_tip|controly2"
+msgid "Enter the Y coordinate of the control point 2"
+msgstr ""
+
#. FzWQs
-#: cui/uiconfig/ui/slantcornertabpage.ui:399
+#: cui/uiconfig/ui/slantcornertabpage.ui:429
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Ohjauspiste 2"
+#. hQu5B
+#: cui/uiconfig/ui/slantcornertabpage.ui:444
+msgctxt "slantcornertabpage|extended_tip|SlantAndCornerRadius"
+msgid "Slants the selected object, or rounds the corners of a rectangular object."
+msgstr "Valittua objektia kallistetaan tai suorakulmaisen objektin kulmia pyöristetään."
+
#. 6HGgg
#: cui/uiconfig/ui/smarttagoptionspage.ui:34
msgctxt "smarttagoptionspage|main"
msgid "Label text with smart tags"
msgstr "Merkitse teksti toimintotunnistein"
+#. u2yey
+#: cui/uiconfig/ui/smarttagoptionspage.ui:43
+msgctxt "smarttagoptionspage|extended_tip|main"
+msgid "Enables Smart Tags to be evaluated and shown in your text document."
+msgstr "Sallitaan tekstiasiakirjan toimintotunnisteiden tulkitseminen ja näkyminen."
+
#. vfc7b
-#: cui/uiconfig/ui/smarttagoptionspage.ui:72
+#: cui/uiconfig/ui/smarttagoptionspage.ui:77
msgctxt "smarttagoptionspage|properties"
msgid "Properties..."
msgstr "Ominaisuudet..."
+#. fENAa
+#: cui/uiconfig/ui/smarttagoptionspage.ui:85
+msgctxt "smarttagoptionspage|extended_tip|properties"
+msgid "To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured."
+msgstr "Toimintotunnisteen kokoonpanon asettamiseksi valitaan toimintotunnisteen nimi ja napsautetaan sitten ominaisuuksia. Kaikki toimintotunnisteet eivät ole säädettävissä."
+
#. 4xp5D
-#: cui/uiconfig/ui/smarttagoptionspage.ui:147
+#: cui/uiconfig/ui/smarttagoptionspage.ui:157
msgctxt "smarttagoptionspage|label1"
msgid "Currently Installed Smart Tags"
msgstr "Asennetut toimintotunnisteet"
+#. dUASA
+#: cui/uiconfig/ui/smarttagoptionspage.ui:177
+msgctxt "smarttagoptionspage|extended_tip|SmartTagOptionsPage"
+msgid "When you have installed at least one Smart Tag extension, you see the Smart Tags page."
+msgstr "Kun vähintään yksi Smart Tag -toimintotunnistelaajennus on asennettu, toimintotunnistepaneeli on näkyvissä."
+
#. y7D3W
#: cui/uiconfig/ui/smoothdialog.ui:15
msgctxt "smoothdialog|SmoothDialog"
@@ -14555,41 +19444,65 @@ msgid "Smooth"
msgstr "Tasoita"
#. BwUut
-#: cui/uiconfig/ui/smoothdialog.ui:159
+#: cui/uiconfig/ui/smoothdialog.ui:156
msgctxt "smoothdialog|label2"
msgid "_Smooth radius:"
msgstr "Tasoitusssäde:"
#. b62Mc
-#: cui/uiconfig/ui/smoothdialog.ui:183
+#: cui/uiconfig/ui/smoothdialog.ui:180
msgctxt "smoothdialog|label1"
msgid "Parameters"
msgstr "Parametrit"
+#. RHoUb
+#: cui/uiconfig/ui/smoothdialog.ui:205
+msgctxt "smoothdialog|extended_tip|SmoothDialog"
+msgid "Softens or blurs the image by applying a low pass filter."
+msgstr ""
+
#. xAH4y
#: cui/uiconfig/ui/solarizedialog.ui:13
msgctxt "solarizedialog|SolarizeDialog"
msgid "Solarization"
msgstr "Solarisaatio"
+#. GEGrA
+#: cui/uiconfig/ui/solarizedialog.ui:145
+msgctxt "solarizedialog|extended_tip|value"
+msgid "Specifies the number of colors to which the image is to be reduced."
+msgstr "Määritetään kuvaan jätettävien värien lukumäärä."
+
#. Cjvhw
-#: cui/uiconfig/ui/solarizedialog.ui:156
+#: cui/uiconfig/ui/solarizedialog.ui:158
msgctxt "solarizedialog|label2"
msgid "Threshold _value:"
msgstr "Raja-arvo:"
#. zN2jC
-#: cui/uiconfig/ui/solarizedialog.ui:168
+#: cui/uiconfig/ui/solarizedialog.ui:170
msgctxt "solarizedialog|invert"
msgid "_Invert"
msgstr "Käänteiset värit"
+#. owmYE
+#: cui/uiconfig/ui/solarizedialog.ui:179
+msgctxt "solarizedialog|extended_tip|invert"
+msgid "Specifies to also invert all pixels."
+msgstr "Merkinnällä määrätään kaikki kuvapisteet käännettäväksi vastaväreikseen."
+
#. vd8sF
-#: cui/uiconfig/ui/solarizedialog.ui:195
+#: cui/uiconfig/ui/solarizedialog.ui:202
msgctxt "solarizedialog|label1"
msgid "Parameters"
msgstr "Parametrit"
+#. Vec6B
+#: cui/uiconfig/ui/solarizedialog.ui:227
+msgctxt "solarizedialog|extended_tip|SolarizeDialog"
+msgid "Opens a dialog for defining solarization. Solarization refers to an effect that looks like what can happen when there is too much light during photo development. The colors become partly inverted."
+msgstr ""
+
#. JpXVy
#: cui/uiconfig/ui/specialcharacters.ui:8
msgctxt "specialcharacters|SpecialCharactersDialog"
@@ -14597,65 +19510,83 @@ msgid "Special Characters"
msgstr "Lisää erikoismerkki"
#. FEFAp
-#: cui/uiconfig/ui/specialcharacters.ui:27
+#: cui/uiconfig/ui/specialcharacters.ui:24
msgctxt "specialcharacters|insert"
msgid "_Insert"
msgstr "_Lisää"
#. CLtzq
-#: cui/uiconfig/ui/specialcharacters.ui:110
+#: cui/uiconfig/ui/specialcharacters.ui:107
msgctxt "specialcharacters|subsetft"
msgid "Subset:"
msgstr "Osajoukko:"
#. mPCRR
-#: cui/uiconfig/ui/specialcharacters.ui:124
+#: cui/uiconfig/ui/specialcharacters.ui:121
msgctxt "specialcharacters|fontft"
msgid "Font:"
msgstr "Fontti:"
#. 3LCFE
-#: cui/uiconfig/ui/specialcharacters.ui:138
+#: cui/uiconfig/ui/specialcharacters.ui:135
msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "Etsi:"
+#. eCjVg
+#: cui/uiconfig/ui/specialcharacters.ui:163
+msgctxt "specialcharacters|extended_tip|subsetlb"
+msgid "Select a Unicode category for the current font."
+msgstr "Valitaan Unicode-merkkilohko valitulle fontille."
+
+#. JPWW8
+#: cui/uiconfig/ui/specialcharacters.ui:186
+msgctxt "specialcharacters|extended_tip|fontlb"
+msgid "Select a font to display the special characters that are associated with it."
+msgstr "Valitaan fonttilaji, johon kuuluvat erikoismerkit näytetään."
+
#. LxRMr
-#: cui/uiconfig/ui/specialcharacters.ui:226
+#: cui/uiconfig/ui/specialcharacters.ui:233
msgctxt "specialcharacters|hexlabel"
msgid "Hexadecimal:"
msgstr "Heksadesimaali:"
#. XFFYD
-#: cui/uiconfig/ui/specialcharacters.ui:280
+#: cui/uiconfig/ui/specialcharacters.ui:287
msgctxt "specialcharacters|decimallabel"
msgid "Decimal:"
msgstr "Desimaali:"
#. UAnec
-#: cui/uiconfig/ui/specialcharacters.ui:305
+#: cui/uiconfig/ui/specialcharacters.ui:312
msgctxt "specialcharacters|favbtn"
msgid "Add to Favorites"
msgstr "Lisää suosikkeihin"
#. REwcC
-#: cui/uiconfig/ui/specialcharacters.ui:309
+#: cui/uiconfig/ui/specialcharacters.ui:316
msgctxt "specialcharacters|favbtn|tooltip_text"
msgid "Maximum Limit: 16 Characters"
msgstr "Enimmäismäärä: 16 merkkiä"
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:356
+#: cui/uiconfig/ui/specialcharacters.ui:363
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr "Viimeisimmät merkit:"
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:590
+#: cui/uiconfig/ui/specialcharacters.ui:597
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr "Suosikkimerkit:"
+#. DhG6L
+#: cui/uiconfig/ui/specialcharacters.ui:894
+msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
+msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
+msgstr ""
+
#. 2pg6B
#: cui/uiconfig/ui/spellingdialog.ui:30
msgctxt "spellingdialog|SpellingDialog"
@@ -14663,119 +19594,203 @@ msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "Oikoluku: $LANGUAGE ($LOCATION)"
#. FcbQv
-#: cui/uiconfig/ui/spellingdialog.ui:64
+#: cui/uiconfig/ui/spellingdialog.ui:61
msgctxt "spellingdialog|options"
msgid "_Options..."
msgstr "Asetukset..."
+#. CTnCk
+#: cui/uiconfig/ui/spellingdialog.ui:68
+msgctxt "spellingdialog|extended_tip|options"
+msgid "Opens a dialog, where you can select the user-defined dictionaries, and set the rules for the spellchecking."
+msgstr "Avataan valintaikkuna, jossa voidaan valita käyttäjän määrittämiä sanastoja ja asettaa oikoluvun sääntöjä."
+
+#. yuEBN
+#: cui/uiconfig/ui/spellingdialog.ui:88
+msgctxt "spellingdialog|extended_tip|undo"
+msgid "Click to undo the last change in the current sentence. Click again to undo the previous change in the same sentence."
+msgstr "Napsautus kumoaa käsiteltävän virkkeen viimeisimmän muutoksen. Uusi napsautus kumoaa sitä edellisen muutoksen virkkeessä."
+
#. XESAQ
-#: cui/uiconfig/ui/spellingdialog.ui:138
+#: cui/uiconfig/ui/spellingdialog.ui:145
msgctxt "spellingdialog|explainlink"
msgid "More..."
msgstr "Lisää..."
+#. fsyKA
+#: cui/uiconfig/ui/spellingdialog.ui:173
+msgctxt "spellingdialog|extended_tip|sentence"
+msgid "Displays the sentence with the misspelled word highlighted. Edit the word or the sentence, or click one of the suggestions in the text box below."
+msgstr "Lause esitetään virheellinen sana korostettuna. Muokataan sanaa tai lausetta tai napsautetaan yhtä alla olevan tekstiruudun ehdotuksista."
+
#. 4E4ES
-#: cui/uiconfig/ui/spellingdialog.ui:178
+#: cui/uiconfig/ui/spellingdialog.ui:190
msgctxt "spellingdialog|suggestionsft"
msgid "_Suggestions"
msgstr "Eh_dotukset"
+#. MZdqY
+#: cui/uiconfig/ui/spellingdialog.ui:233
+msgctxt "spellingdialog|extended_tip|suggestionslb"
+msgid "Lists suggested words to replace the misspelled word. Select the word that you want to use, and then click Correct or Correct All."
+msgstr "Näyttää listan korjausehdotuksista väärin kirjoitetun sanan tilalle. Valitse oikea korjausehdotus ja napsauta Korjaa tai Korjaa kaikki."
+
#. 7Lgq7
-#: cui/uiconfig/ui/spellingdialog.ui:229
+#: cui/uiconfig/ui/spellingdialog.ui:246
msgctxt "spellingdialog|checkgrammar"
msgid "Chec_k grammar"
msgstr "Tarkista kielioppi"
+#. 3VnDN
+#: cui/uiconfig/ui/spellingdialog.ui:255
+msgctxt "spellingdialog|extended_tip|checkgrammar"
+msgid "Enable Check grammar to work first on all spelling errors, then on all grammar errors."
+msgstr ""
+
#. gPGys
-#: cui/uiconfig/ui/spellingdialog.ui:253
+#: cui/uiconfig/ui/spellingdialog.ui:275
msgctxt "spellingdialog|notindictft"
msgid "_Not in dictionary"
msgstr "_Ei sanastossa"
#. R7k8J
-#: cui/uiconfig/ui/spellingdialog.ui:273
+#: cui/uiconfig/ui/spellingdialog.ui:295
msgctxt "spellingdialog|paste"
msgid "Paste"
msgstr "Liitä"
#. vTAkA
-#: cui/uiconfig/ui/spellingdialog.ui:286
+#: cui/uiconfig/ui/spellingdialog.ui:308
msgctxt "spellingdialog|insert"
msgid "Special Character"
msgstr "Erikoismerkki"
#. qLx9c
-#: cui/uiconfig/ui/spellingdialog.ui:317
+#: cui/uiconfig/ui/spellingdialog.ui:339
msgctxt "spellingdialog|languageft"
msgid "Text languag_e:"
msgstr "Tekstin kieli:"
+#. g7zja
+#: cui/uiconfig/ui/spellingdialog.ui:371
+msgctxt "spellingdialog|extended_tip|languagelb"
+msgid "Specifies the language to use to check the spelling."
+msgstr "Määrätään oikoluvussa käytettävä kieli."
+
#. bxC8G
-#: cui/uiconfig/ui/spellingdialog.ui:368
+#: cui/uiconfig/ui/spellingdialog.ui:395
msgctxt "spellingdialog|resumeft"
msgid "Res_ume"
msgstr "Jatka"
#. D2E4f
-#: cui/uiconfig/ui/spellingdialog.ui:380
+#: cui/uiconfig/ui/spellingdialog.ui:407
msgctxt "spellingdialog|nosuggestionsft"
msgid "(no suggestions)"
msgstr "(ei ehdotuksia)"
#. dCCnN
-#: cui/uiconfig/ui/spellingdialog.ui:392
+#: cui/uiconfig/ui/spellingdialog.ui:419
msgctxt "spellingdialog|alttitleft"
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "Oikoluku: $LANGUAGE ($LOCATION)"
#. 5LDdh
-#: cui/uiconfig/ui/spellingdialog.ui:415
+#: cui/uiconfig/ui/spellingdialog.ui:442
msgctxt "spellingdialog|change"
msgid "Co_rrect"
msgstr "Korjaa"
+#. m7FFp
+#: cui/uiconfig/ui/spellingdialog.ui:451
+msgctxt "spellingdialog|extended_tip|change"
+msgid "Replaces the unknown word with the current suggestion. If you changed more than just the misspelled word, the entire sentence is replaced."
+msgstr "Korvataan tuntematon sana kohdistetulla ehdotuksella. Jos kirjoittamalla on muutettu muutakin tekstiä kuin vain virheellistä sanaa, koko lause korvataan asiakirjaan."
+
#. dZvFo
-#: cui/uiconfig/ui/spellingdialog.ui:430
+#: cui/uiconfig/ui/spellingdialog.ui:462
msgctxt "spellingdialog|changeall"
msgid "Correct A_ll"
msgstr "Korjaa kaikki"
+#. 9kjPB
+#: cui/uiconfig/ui/spellingdialog.ui:471
+msgctxt "spellingdialog|extended_tip|changeall"
+msgid "Replaces all occurrences of the unknown word with the current suggestion."
+msgstr "Korvataan tuntemattoman sanan kaikki esiintymät kohdistetulla ehdotuksella."
+
#. GYcSJ
-#: cui/uiconfig/ui/spellingdialog.ui:445
+#: cui/uiconfig/ui/spellingdialog.ui:482
msgctxt "spellingdialog|autocorrect"
msgid "Alwa_ys Correct"
msgstr "Korjaa aina"
+#. GhEsr
+#: cui/uiconfig/ui/spellingdialog.ui:491
+msgctxt "spellingdialog|extended_tip|autocorrect"
+msgid "Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacements table."
+msgstr "Lisätään väärinkirjoitetun sanan ja korvaavan sanan yhdistelmä automaattisen korjauksen korvaustaulukkoon."
+
#. DoqLo
-#: cui/uiconfig/ui/spellingdialog.ui:472
+#: cui/uiconfig/ui/spellingdialog.ui:514
msgctxt "spellingdialog|ignore"
msgid "_Ignore Once"
msgstr "_Ohita kerran"
+#. M5qZF
+#: cui/uiconfig/ui/spellingdialog.ui:523
+msgctxt "spellingdialog|extended_tip|ignore"
+msgid "Skips the unknown word and continues with the spellcheck."
+msgstr "Ohitetaan ohjelmalle tuntematon sana ja jatketaan oikolukua."
+
#. 32F96
-#: cui/uiconfig/ui/spellingdialog.ui:487
+#: cui/uiconfig/ui/spellingdialog.ui:534
msgctxt "spellingdialog|ignoreall"
msgid "I_gnore All"
msgstr "Ohita k_aikki"
+#. B5UQJ
+#: cui/uiconfig/ui/spellingdialog.ui:543
+msgctxt "spellingdialog|extended_tip|ignoreall"
+msgid "Skips all occurrences of the unknown word until the end of the current %PRODUCTNAME session and continues with the spellcheck."
+msgstr "Ohitetaan ohjelmalle vieraan sanan kaikki esiintymät koko %PRODUCTNAME-istunnon ajan ja jatketaan oikolukua."
+
#. ZZNQM
-#: cui/uiconfig/ui/spellingdialog.ui:502
+#: cui/uiconfig/ui/spellingdialog.ui:554
msgctxt "spellingdialog|ignorerule"
msgid "I_gnore Rule"
msgstr "Ohita sääntö"
+#. E63nm
+#: cui/uiconfig/ui/spellingdialog.ui:563
+msgctxt "spellingdialog|extended_tip|ignorerule"
+msgid "While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error."
+msgstr "Tarkistettaessa kielioppia napsautetaan Ohita sääntö sen säännön ohittamiseksi, joka käsiteltävässä kohdassa on merkitty kielioppivirheeksi."
+
#. evAcz
-#: cui/uiconfig/ui/spellingdialog.ui:517
+#: cui/uiconfig/ui/spellingdialog.ui:574
msgctxt "spellingdialog|add"
msgid "_Add to Dictionary"
msgstr "Lisää sanastoon"
#. CEWcz
-#: cui/uiconfig/ui/spellingdialog.ui:532
+#: cui/uiconfig/ui/spellingdialog.ui:589
msgctxt "spellingdialog|addmb"
msgid "_Add to Dictionary"
msgstr "Lisää sanastoon"
+#. YFz8g
+#: cui/uiconfig/ui/spellingdialog.ui:603
+msgctxt "spellingdialog|extended_tip|addmb"
+msgid "Adds the unknown word to a user-defined dictionary."
+msgstr "Lisätään käyttäjän määrittämään sanastoon uusi, ohjelmalle tuntematon sana."
+
+#. GSZVa
+#: cui/uiconfig/ui/spellingdialog.ui:644
+msgctxt "spellingdialog|extended_tip|SpellingDialog"
+msgid "Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors."
+msgstr ""
+
#. fM6Vt
#: cui/uiconfig/ui/spelloptionsdialog.ui:8
msgctxt "spelloptionsdialog|SpellOptionsDialog"
@@ -14824,6 +19839,12 @@ msgctxt "splitcellsdialog|label2"
msgid "Direction"
msgstr "Suunta"
+#. WFHAy
+#: cui/uiconfig/ui/splitcellsdialog.ui:278
+msgctxt "splitcellsdialog|extended_tip|SplitCellsDialog"
+msgid "Splits the cell or group of cells horizontally or vertically into the number of cells that you enter."
+msgstr ""
+
#. hbDka
#: cui/uiconfig/ui/storedwebconnectiondialog.ui:18
msgctxt "storedwebconnectiondialog|StoredWebConnectionDialog"
@@ -14860,139 +19881,235 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Vaihda salasana..."
+#. M4C6V
+#: cui/uiconfig/ui/swpossizepage.ui:77
+msgctxt "swpossizepage|extended_tip|width"
+msgid "Enter the width that you want for the selected object."
+msgstr ""
+
#. ADAyE
-#: cui/uiconfig/ui/swpossizepage.ui:85
+#: cui/uiconfig/ui/swpossizepage.ui:90
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Leveys:"
+#. 5jMac
+#: cui/uiconfig/ui/swpossizepage.ui:120
+msgctxt "swpossizepage|extended_tip|height"
+msgid "Enter the height that you want for the selected object."
+msgstr ""
+
#. D2QY9
-#: cui/uiconfig/ui/swpossizepage.ui:123
+#: cui/uiconfig/ui/swpossizepage.ui:133
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Korkeus:"
#. UpdQN
-#: cui/uiconfig/ui/swpossizepage.ui:141
+#: cui/uiconfig/ui/swpossizepage.ui:151
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Säilytä mittasuhteet"
+#. vRbyX
+#: cui/uiconfig/ui/swpossizepage.ui:160
+msgctxt "swpossizepage|extended_tip|ratio"
+msgid "Maintains the height and width ratio when you change the width or the height setting."
+msgstr ""
+
#. Dhk9o
-#: cui/uiconfig/ui/swpossizepage.ui:162
+#: cui/uiconfig/ui/swpossizepage.ui:177
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Koko"
#. okeh5
-#: cui/uiconfig/ui/swpossizepage.ui:218
+#: cui/uiconfig/ui/swpossizepage.ui:233
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Sivulle"
+#. cAYrG
+#: cui/uiconfig/ui/swpossizepage.ui:243
+msgctxt "swpossizepage|extended_tip|topage"
+msgid "Anchors the selection to the current page."
+msgstr ""
+
#. 7GtoG
-#: cui/uiconfig/ui/swpossizepage.ui:234
+#: cui/uiconfig/ui/swpossizepage.ui:254
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Kappaleeseen"
+#. NhNym
+#: cui/uiconfig/ui/swpossizepage.ui:264
+msgctxt "swpossizepage|extended_tip|topara"
+msgid "Anchors the selection to the current paragraph."
+msgstr ""
+
#. Uj9Pu
-#: cui/uiconfig/ui/swpossizepage.ui:250
+#: cui/uiconfig/ui/swpossizepage.ui:275
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Merkkiin"
+#. KpVFy
+#: cui/uiconfig/ui/swpossizepage.ui:285
+msgctxt "swpossizepage|extended_tip|tochar"
+msgid "Anchors the selection to a character."
+msgstr ""
+
#. GNmu5
-#: cui/uiconfig/ui/swpossizepage.ui:266
+#: cui/uiconfig/ui/swpossizepage.ui:296
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Merkkinä"
+#. F5EmK
+#: cui/uiconfig/ui/swpossizepage.ui:306
+msgctxt "swpossizepage|extended_tip|aschar"
+msgid "Anchors the selection as character. The height of the current line is resized to match the height of the selection."
+msgstr ""
+
#. e4F9d
-#: cui/uiconfig/ui/swpossizepage.ui:282
+#: cui/uiconfig/ui/swpossizepage.ui:317
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Kehykseen"
#. ckR4Z
-#: cui/uiconfig/ui/swpossizepage.ui:304
+#: cui/uiconfig/ui/swpossizepage.ui:339
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ankkuri"
#. 7XWqU
-#: cui/uiconfig/ui/swpossizepage.ui:344
+#: cui/uiconfig/ui/swpossizepage.ui:379
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Vaakataso:"
#. nCjCJ
-#: cui/uiconfig/ui/swpossizepage.ui:358
+#: cui/uiconfig/ui/swpossizepage.ui:393
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "etäisyys:"
#. JAihS
-#: cui/uiconfig/ui/swpossizepage.ui:372
+#: cui/uiconfig/ui/swpossizepage.ui:407
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "etäisyys:"
#. bEU2H
-#: cui/uiconfig/ui/swpossizepage.ui:386
+#: cui/uiconfig/ui/swpossizepage.ui:421
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "kohde:"
+#. 7c9uU
+#: cui/uiconfig/ui/swpossizepage.ui:440
+msgctxt "swpossizepage|extended_tip|byhori"
+msgid "Enter the amount of space to leave between the left edge of the selected object and the reference point that you select in the To box."
+msgstr ""
+
+#. 93Nyg
+#: cui/uiconfig/ui/swpossizepage.ui:455
+msgctxt "swpossizepage|extended_tip|horianchor"
+msgid "Select the reference point for the selected horizontal alignment option."
+msgstr ""
+
+#. drz3i
+#: cui/uiconfig/ui/swpossizepage.ui:470
+msgctxt "swpossizepage|extended_tip|horipos"
+msgid "Select the horizontal alignment option for the object."
+msgstr ""
+
#. NKeEB
-#: cui/uiconfig/ui/swpossizepage.ui:433
+#: cui/uiconfig/ui/swpossizepage.ui:483
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Pystytasossa:"
+#. DRm4w
+#: cui/uiconfig/ui/swpossizepage.ui:499
+msgctxt "swpossizepage|extended_tip|vertpos"
+msgid "Select the vertical alignment option for the object."
+msgstr ""
+
+#. ys5CR
+#: cui/uiconfig/ui/swpossizepage.ui:517
+msgctxt "swpossizepage|extended_tip|byvert"
+msgid "Enter the amount of space to leave between the top edge of the selected object and the reference point that you select in the To box."
+msgstr ""
+
#. 5jQc3
-#: cui/uiconfig/ui/swpossizepage.ui:470
+#: cui/uiconfig/ui/swpossizepage.ui:530
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "kohde:"
+#. 5YHD7
+#: cui/uiconfig/ui/swpossizepage.ui:546
+msgctxt "swpossizepage|extended_tip|vertanchor"
+msgid "Select the reference point for the selected vertical alignment option."
+msgstr ""
+
#. ZFE5p
-#: cui/uiconfig/ui/swpossizepage.ui:492
+#: cui/uiconfig/ui/swpossizepage.ui:557
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Peilaa parillisilla sivuilla"
-#. iTRvh
-#: cui/uiconfig/ui/swpossizepage.ui:509
+#. rubDV
+#: cui/uiconfig/ui/swpossizepage.ui:567
+msgctxt "swpossizepage|extended_tip|mirror"
+msgid "Reverses the current horizontal alignment settings on even pages."
+msgstr ""
+
+#. NRKCh
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|followtextflow"
-msgid "Follow te_xt flow"
-msgstr "Seuraa tekstin rivitystä"
+msgid "Keep inside te_xt boundaries"
+msgstr ""
+
+#. zfpt5
+#: cui/uiconfig/ui/swpossizepage.ui:589
+msgctxt "swpossizepage|extended_tip|followtextflow"
+msgid "Keeps the selected object within the layout boundaries of the text that the object is anchored to. To place the selected object anywhere in your document, do not select this option."
+msgstr ""
#. hKBGx
-#: cui/uiconfig/ui/swpossizepage.ui:532
+#: cui/uiconfig/ui/swpossizepage.ui:607
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Sijainti"
#. 3PMgB
-#: cui/uiconfig/ui/swpossizepage.ui:563
+#: cui/uiconfig/ui/swpossizepage.ui:638
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Sijainti"
#. YuVkA
-#: cui/uiconfig/ui/swpossizepage.ui:579
+#: cui/uiconfig/ui/swpossizepage.ui:654
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Koko"
#. 7MV8R
-#: cui/uiconfig/ui/swpossizepage.ui:601
+#: cui/uiconfig/ui/swpossizepage.ui:676
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Suojaa"
+#. YeGXE
+#: cui/uiconfig/ui/swpossizepage.ui:690
+msgctxt "swpossizepage|extended_tip|SwPosSizePage"
+msgid "Specifies the size and the position of the selected object or frame on a page."
+msgstr ""
+
#. C7DcB
#: cui/uiconfig/ui/textanimtabpage.ui:70
msgctxt "textanimtabpage|liststoreEFFECT"
@@ -15023,210 +20140,372 @@ msgctxt "textanimtabpage|liststoreEFFECT"
msgid "Scroll In"
msgstr "Vieritä sisään"
+#. Ew3yG
+#: cui/uiconfig/ui/textanimtabpage.ui:78
+msgctxt "textanimtabpage|extended_tip|LB_EFFECT"
+msgid "Select the animation effect that you want to apply to the text in the selected drawing object. To remove an animation effect, select No Effect."
+msgstr "Poimitaan valitun piirrosobjektin tekstiin käytettävä animaatiotehoste. Tehoste poistetaan valitsemalla Ei tehostetta."
+
#. FpCUy
-#: cui/uiconfig/ui/textanimtabpage.ui:94
+#: cui/uiconfig/ui/textanimtabpage.ui:99
msgctxt "textanimtabpage|FT_DIRECTION"
msgid "Direction:"
msgstr "Suunta:"
#. XD5iJ
-#: cui/uiconfig/ui/textanimtabpage.ui:113
+#: cui/uiconfig/ui/textanimtabpage.ui:118
msgctxt "textanimtabpage|BTN_UP|tooltip_text"
msgid "To top"
msgstr "Yläreunaan"
#. bz7eu
-#: cui/uiconfig/ui/textanimtabpage.ui:120
+#: cui/uiconfig/ui/textanimtabpage.ui:125
msgctxt "textanimtabpage|BTN_UP-atkobject"
msgid "Up"
msgstr "Ylös"
+#. DaCJR
+#: cui/uiconfig/ui/textanimtabpage.ui:126
+msgctxt "textanimtabpage|extended_tip|BTN_UP"
+msgid "Scrolls text from bottom to top."
+msgstr "Teksti vieritetään alhaalta ylöspäin."
+
#. xD7QC
-#: cui/uiconfig/ui/textanimtabpage.ui:134
+#: cui/uiconfig/ui/textanimtabpage.ui:140
msgctxt "textanimtabpage|BTN_RIGHT|tooltip_text"
msgid "To right"
msgstr "Oikealle"
#. VN5hz
-#: cui/uiconfig/ui/textanimtabpage.ui:141
+#: cui/uiconfig/ui/textanimtabpage.ui:147
msgctxt "textanimtabpage|BTN_RIGHT-atkobject"
msgid "Right"
msgstr "Oikea"
+#. wYUTD
+#: cui/uiconfig/ui/textanimtabpage.ui:148
+msgctxt "textanimtabpage|extended_tip|BTN_RIGHT"
+msgid "Scrolls text from left to right."
+msgstr "Vieritetään teksti vasemmalta oikealle."
+
#. qufE7
-#: cui/uiconfig/ui/textanimtabpage.ui:155
+#: cui/uiconfig/ui/textanimtabpage.ui:162
msgctxt "textanimtabpage|BTN_LEFT|tooltip_text"
msgid "To left"
msgstr "Vasemmalle"
#. XGbGL
-#: cui/uiconfig/ui/textanimtabpage.ui:162
+#: cui/uiconfig/ui/textanimtabpage.ui:169
msgctxt "textanimtabpage|BTN_LEFT-atkobject"
msgid "Left"
msgstr "Vasen"
+#. DKAFm
+#: cui/uiconfig/ui/textanimtabpage.ui:170
+msgctxt "textanimtabpage|extended_tip|BTN_LEFT"
+msgid "Scrolls text from right to left."
+msgstr "Teksti vieritetään oikealta vasemmalle."
+
#. Y9HDp
-#: cui/uiconfig/ui/textanimtabpage.ui:176
+#: cui/uiconfig/ui/textanimtabpage.ui:184
msgctxt "textanimtabpage|BTN_DOWN|tooltip_text"
msgid "To bottom"
msgstr "Alareunaan"
#. AaxJ6
-#: cui/uiconfig/ui/textanimtabpage.ui:183
+#: cui/uiconfig/ui/textanimtabpage.ui:191
msgctxt "textanimtabpage|BTN_DOWN-atkobject"
msgid "Down"
msgstr "Alas"
+#. LmUmC
+#: cui/uiconfig/ui/textanimtabpage.ui:192
+msgctxt "textanimtabpage|extended_tip|BTN_DOWN"
+msgid "Scrolls text from top to bottom."
+msgstr "Teksti vieritetään ylhäältä alaspäin."
+
#. C8qts
-#: cui/uiconfig/ui/textanimtabpage.ui:229
+#: cui/uiconfig/ui/textanimtabpage.ui:238
msgctxt "textanimtabpage|FT_EFFECTS"
msgid "E_ffect"
msgstr "Tehoste"
#. yTfAi
-#: cui/uiconfig/ui/textanimtabpage.ui:264
+#: cui/uiconfig/ui/textanimtabpage.ui:273
msgctxt "textanimtabpage|TSB_START_INSIDE"
msgid "S_tart inside"
msgstr "Aloita kohteessa"
+#. WeZT4
+#: cui/uiconfig/ui/textanimtabpage.ui:283
+msgctxt "textanimtabpage|extended_tip|TSB_START_INSIDE"
+msgid "Text is visible and inside the drawing object when the effect is applied."
+msgstr "Teksti on näkyvä ja piirroksen sisällä tehostetta käytettäessä."
+
#. AojvU
-#: cui/uiconfig/ui/textanimtabpage.ui:281
+#: cui/uiconfig/ui/textanimtabpage.ui:295
msgctxt "textanimtabpage|TSB_STOP_INSIDE"
msgid "Text _visible when exiting"
msgstr "Teksti näkyvissä poistuttaessa"
+#. 6a3Ed
+#: cui/uiconfig/ui/textanimtabpage.ui:305
+msgctxt "textanimtabpage|extended_tip|TSB_STOP_INSIDE"
+msgid "Text remains visible after the effect is applied."
+msgstr "Teksti jää näkyväksi tehosteanimaation päätyttyä."
+
#. mH7ec
-#: cui/uiconfig/ui/textanimtabpage.ui:300
+#: cui/uiconfig/ui/textanimtabpage.ui:319
msgctxt "textanimtabpage|FT_COUNT"
msgid "Animation cycles:"
msgstr "Animaation kierto:"
#. r33uA
-#: cui/uiconfig/ui/textanimtabpage.ui:317
+#: cui/uiconfig/ui/textanimtabpage.ui:336
msgctxt "textanimtabpage|TSB_ENDLESS"
msgid "_Continuous"
msgstr "Jatkuva"
+#. RBFeu
+#: cui/uiconfig/ui/textanimtabpage.ui:349
+msgctxt "textanimtabpage|extended_tip|TSB_ENDLESS"
+msgid "Plays the animation effect continuously. To specify the number of times to play the effect, clear this checkbox, and enter a number in the Continuous box."
+msgstr "Merkintä määrää, että animaatiotehostetta toistetaan jatkuvasti. Tehosteen toistokertojen määrittämiseksi valintaruutu tyhjennetään ja annetaan lukumäärä viereiseen Jatkuva-kenttään."
+
+#. 9wuKa
+#: cui/uiconfig/ui/textanimtabpage.ui:370
+msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
+msgid "Enter the number of times that you want the animation effect to repeat."
+msgstr "Annetaan animaatiotehosteen toistokertojen lukumäärä."
+
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:361
+#: cui/uiconfig/ui/textanimtabpage.ui:390
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "Askel:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:378
+#: cui/uiconfig/ui/textanimtabpage.ui:407
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "Kuvapisteet"
+#. rwAQy
+#: cui/uiconfig/ui/textanimtabpage.ui:420
+msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
+msgid "Measures increment value in pixels."
+msgstr "Askeleen suuruus mitataan pikseleinä."
+
+#. fq4Ps
+#: cui/uiconfig/ui/textanimtabpage.ui:441
+msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
+msgid "Enter the number of increments by which to scroll the text."
+msgstr "Annetaan vieritysaskeleen suuruus."
+
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:422
+#: cui/uiconfig/ui/textanimtabpage.ui:461
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "Viive:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:439
+#: cui/uiconfig/ui/textanimtabpage.ui:478
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "Automaattinen"
+#. HwKA5
+#: cui/uiconfig/ui/textanimtabpage.ui:491
+msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
+msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
+msgstr "%PRODUCTNAME määrää tehosteen toistolle oletusviiveen ruutu merkittynä. Käyttäjä voi määrittää odotusajan, mikäli ruutu tyhjennetään ja syötetään arvo Viivytä-kenttään."
+
+#. aagEf
+#: cui/uiconfig/ui/textanimtabpage.ui:512
+msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
+msgid "Enter the amount of time to wait before repeating the effect."
+msgstr "Annetaan odotusaika, joka kuluu ennen tehosteen toistoa."
+
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:487
+#: cui/uiconfig/ui/textanimtabpage.ui:536
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Ominaisuudet"
+#. 7cYvC
+#: cui/uiconfig/ui/textanimtabpage.ui:552
+msgctxt "textanimtabpage|extended_tip|TextAnimation"
+msgid "Adds an animation effect to the text in the selected drawing object."
+msgstr "Lisätään valitun piirrosobjektin tekstiin animaatiotehoste."
+
#. 4iDya
#: cui/uiconfig/ui/textattrtabpage.ui:60
msgctxt "textattrtabpage|TSB_AUTOGROW_WIDTH"
msgid "Fit wi_dth to text"
msgstr "Sovita leveys tekstiin"
+#. JswCU
+#: cui/uiconfig/ui/textattrtabpage.ui:70
+msgctxt "textattrtabpage|extended_tip|TSB_AUTOGROW_WIDTH"
+msgid "Expands the width of the object to the width of the text, if the object is smaller than the text."
+msgstr "Laajennetaan objektin leveyttä tekstin leveyteen, jos objekti on tekstiä pienempi."
+
#. AFJcc
-#: cui/uiconfig/ui/textattrtabpage.ui:76
+#: cui/uiconfig/ui/textattrtabpage.ui:81
msgctxt "textattrtabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit h_eight to text"
msgstr "Sovita korkeus tekstiin"
+#. pgGDH
+#: cui/uiconfig/ui/textattrtabpage.ui:91
+msgctxt "textattrtabpage|extended_tip|TSB_AUTOGROW_HEIGHT"
+msgid "Expands the height of the object to the height of the text, if the object is smaller than the text."
+msgstr "Laajennetaan objektin korkeutta tekstin korkuiseksi, jos objekti on tekstiä pienempi."
+
#. gKSp5
-#: cui/uiconfig/ui/textattrtabpage.ui:92
+#: cui/uiconfig/ui/textattrtabpage.ui:102
msgctxt "textattrtabpage|TSB_FIT_TO_SIZE"
msgid "_Fit to frame"
msgstr "Sovita kehykseen"
+#. qAEnD
+#: cui/uiconfig/ui/textattrtabpage.ui:112
+msgctxt "textattrtabpage|extended_tip|TSB_FIT_TO_SIZE"
+msgid "Resizes the text to fit the entire area of the drawing or text object."
+msgstr ""
+
#. HNhqB
-#: cui/uiconfig/ui/textattrtabpage.ui:108
+#: cui/uiconfig/ui/textattrtabpage.ui:123
msgctxt "textattrtabpage|TSB_CONTOUR"
msgid "_Adjust to contour"
msgstr "Sovita ääriviivaan"
+#. QBTi6
+#: cui/uiconfig/ui/textattrtabpage.ui:133
+msgctxt "textattrtabpage|extended_tip|TSB_CONTOUR"
+msgid "Adapts the text flow so that it matches the contours of the selected drawing object."
+msgstr "Sovitetaan tekstin tavutusta niin, että teksti mukailee valitun piirrosobjektin ääriviivoja."
+
#. ZxFbp
-#: cui/uiconfig/ui/textattrtabpage.ui:130
+#: cui/uiconfig/ui/textattrtabpage.ui:150
msgctxt "textattrtabpage|label1"
msgid "Drawing Object Text"
msgstr "Piirrosobjektin teksti"
#. E7JrK
-#: cui/uiconfig/ui/textattrtabpage.ui:163
+#: cui/uiconfig/ui/textattrtabpage.ui:183
msgctxt "textattrtabpage|TSB_WORDWRAP_TEXT"
msgid "_Word wrap text in shape"
msgstr "Rivitä teksti kuviossa"
+#. 4rpt3
+#: cui/uiconfig/ui/textattrtabpage.ui:193
+msgctxt "textattrtabpage|extended_tip|TSB_WORDWRAP_TEXT"
+msgid "Wraps the text that you add after double-clicking a custom shape to fit inside the shape."
+msgstr "Rivitetään teksti, joka lisätään mukautetun kuvion kaksoisnapsautuksen jälkeen, sopimaan kuvion sisälle."
+
#. T4kEz
-#: cui/uiconfig/ui/textattrtabpage.ui:179
+#: cui/uiconfig/ui/textattrtabpage.ui:204
msgctxt "textattrtabpage|TSB_AUTOGROW_SIZE"
msgid "_Resize shape to fit text"
msgstr "Muuta kuvion koko tekstille sopivaksi"
+#. iFsgJ
+#: cui/uiconfig/ui/textattrtabpage.ui:214
+msgctxt "textattrtabpage|extended_tip|TSB_AUTOGROW_SIZE"
+msgid "Resizes a custom shape to fit the text that you enter after double-clicking the shape."
+msgstr "Muutetaan mukautetun kuvion koko vastaamaan sen tekstin vaatimaa tilaa, joka lisättiin kuvion kaksoisnapsautuksen jälkeen."
+
#. CWdDn
-#: cui/uiconfig/ui/textattrtabpage.ui:201
+#: cui/uiconfig/ui/textattrtabpage.ui:231
msgctxt "textattrtabpage|label8"
msgid "Custom Shape Text"
msgstr "Mukautetun muodon teksti"
#. 7Ad2Q
-#: cui/uiconfig/ui/textattrtabpage.ui:248
+#: cui/uiconfig/ui/textattrtabpage.ui:278
msgctxt "textattrtabpage|label4"
msgid "_Left:"
msgstr "Vasen:"
#. dMFkF
-#: cui/uiconfig/ui/textattrtabpage.ui:262
+#: cui/uiconfig/ui/textattrtabpage.ui:292
msgctxt "textattrtabpage|label5"
msgid "_Right:"
msgstr "Oikea:"
#. nxccs
-#: cui/uiconfig/ui/textattrtabpage.ui:276
+#: cui/uiconfig/ui/textattrtabpage.ui:306
msgctxt "textattrtabpage|label6"
msgid "_Top:"
msgstr "Yläreuna:"
#. avsGr
-#: cui/uiconfig/ui/textattrtabpage.ui:290
+#: cui/uiconfig/ui/textattrtabpage.ui:320
msgctxt "textattrtabpage|label7"
msgid "_Bottom:"
msgstr "Alareuna:"
+#. qhk2Q
+#: cui/uiconfig/ui/textattrtabpage.ui:339
+msgctxt "textattrtabpage|extended_tip|MTR_FLD_LEFT"
+msgid "Enter the amount of space to leave between the left edge of the drawing or text object and the left border of the text."
+msgstr "Annetaan piirroksen tai tekstiobjektin vasemman reunan ja tekstin vasemman reunan välin suuruus."
+
+#. Gscsa
+#: cui/uiconfig/ui/textattrtabpage.ui:357
+msgctxt "textattrtabpage|extended_tip|MTR_FLD_RIGHT"
+msgid "Enter the amount of space to leave between the right edge of the drawing or text object and the right border of the text."
+msgstr "Annetaan piirroksen tai tekstiobjektin oikean reunan ja tekstin oikean reunan välin suuruus."
+
+#. 7CCsd
+#: cui/uiconfig/ui/textattrtabpage.ui:375
+msgctxt "textattrtabpage|extended_tip|MTR_FLD_TOP"
+msgid "Enter the amount of space to leave between the top edge of the drawing or text object and the upper border of the text."
+msgstr "Annetaan piirroksen tai tekstiobjektin yläreunan ja tekstin yläreunan välin suuruus."
+
+#. T3o9E
+#: cui/uiconfig/ui/textattrtabpage.ui:393
+msgctxt "textattrtabpage|extended_tip|MTR_FLD_BOTTOM"
+msgid "Enter the amount of space to leave between the bottom edge of the drawing or text object and the lower border of the text."
+msgstr "Annetaan piirroksen tai tekstiobjektin alareunan ja tekstin alareunan välin suuruus."
+
#. aYFEA
-#: cui/uiconfig/ui/textattrtabpage.ui:360
+#: cui/uiconfig/ui/textattrtabpage.ui:410
msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Väli reunoihin"
+#. gMHiC
+#: cui/uiconfig/ui/textattrtabpage.ui:462
+msgctxt "textattrtabpage|extended_tip|CTL_POSITION"
+msgid "Click where you want to place the anchor for the text."
+msgstr "Napsautetaan siellä, minne tekstin ankkuri halutaan."
+
#. PUoRb
-#: cui/uiconfig/ui/textattrtabpage.ui:423
+#: cui/uiconfig/ui/textattrtabpage.ui:478
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Täysi leveys"
+#. jU6YX
+#: cui/uiconfig/ui/textattrtabpage.ui:488
+msgctxt "textattrtabpage|extended_tip|TSB_FULL_WIDTH"
+msgid "Anchors the text to the full width of the drawing object or text object."
+msgstr "Ankkuroidaan teksti piirroksen tai tekstiobjektin koko leveydelle."
+
#. BP2Vk
-#: cui/uiconfig/ui/textattrtabpage.ui:446
+#: cui/uiconfig/ui/textattrtabpage.ui:506
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Tekstin ankkuri"
+#. 3zrBD
+#: cui/uiconfig/ui/textattrtabpage.ui:528
+msgctxt "textattrtabpage|extended_tip|TextAttributesPage"
+msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
+msgstr "Asetetaan valitun piirros- tai tekstiobjektin tekstin asettelu- ja ankkurointiominaisuudet."
+
#. 3Huae
#: cui/uiconfig/ui/textdialog.ui:8
msgctxt "textdialog|TextDialog"
@@ -15251,144 +20530,246 @@ msgctxt "textflowpage|checkAuto"
msgid "A_utomatically"
msgstr "A_utomaattisesti"
+#. iKEC7
+#: cui/uiconfig/ui/textflowpage.ui:82
+msgctxt "textflowpage|extended_tip|checkAuto"
+msgid "Automatically inserts hyphens where they are needed in a paragraph."
+msgstr "Tavuviivoja tulee kappaleen tarpeen mukaisesti."
+
+#. MzDMB
+#: cui/uiconfig/ui/textflowpage.ui:102
+msgctxt "textflowpage|extended_tip|spinMaxNum"
+msgid "Enter the maximum number of consecutive lines that can be hyphenated."
+msgstr "Annetaan peräkkäisten viivojen enimmäismäärä tavutettaessa."
+
+#. zBD7h
+#: cui/uiconfig/ui/textflowpage.ui:121
+msgctxt "textflowpage|extended_tip|spinLineBegin"
+msgid "Enter the minimum number of characters that must appear at the beginning of the line after the hyphen."
+msgstr "Annetaan lisättävän tavumerkin jälkeen sanaan rivin alkuun jäävien merkkien vähimmäismäärä."
+
+#. FFGUz
+#: cui/uiconfig/ui/textflowpage.ui:141
+msgctxt "textflowpage|extended_tip|spinLineEnd"
+msgid "Enter the minimum number of characters to leave at the end of the line before a hyphen is inserted."
+msgstr "Annetaan lisättävän tavumerkin edelle sanaan rivin lopussa jäävien merkkien vähimmäismäärä."
+
#. c6KN2
-#: cui/uiconfig/ui/textflowpage.ui:135
+#: cui/uiconfig/ui/textflowpage.ui:155
msgctxt "textflowpage|labelLineEnd"
msgid "C_haracters at line end"
msgstr "Merkkejä rivin _lopussa"
#. AGfNV
-#: cui/uiconfig/ui/textflowpage.ui:149
+#: cui/uiconfig/ui/textflowpage.ui:169
msgctxt "textflowpage|labelLineBegin"
msgid "Cha_racters at line begin"
msgstr "Merkkejä rivin a_lussa"
#. FTX7o
-#: cui/uiconfig/ui/textflowpage.ui:163
+#: cui/uiconfig/ui/textflowpage.ui:183
msgctxt "textflowpage|labelMaxNum"
msgid "_Maximum number of consecutive hyphens"
msgstr "Per_äkkäisten yhdysmerkkien enimmäismäärä"
#. GgHhP
-#: cui/uiconfig/ui/textflowpage.ui:174
+#: cui/uiconfig/ui/textflowpage.ui:194
msgctxt "textflowpage|checkNoCaps"
msgid "Don't hyphenate words in _CAPS"
msgstr "Älä tavuta ISOLLA kirjoitettuja sanoja"
#. stYh3
-#: cui/uiconfig/ui/textflowpage.ui:197
+#: cui/uiconfig/ui/textflowpage.ui:217
msgctxt "textflowpage|LabelHyphenation"
msgid "Hyphenation"
msgstr "Tavutus"
#. ZLB8K
-#: cui/uiconfig/ui/textflowpage.ui:229
+#: cui/uiconfig/ui/textflowpage.ui:249
msgctxt "textflowpage|checkInsert"
msgid "_Insert"
msgstr "_Lisää"
+#. Zje9t
+#: cui/uiconfig/ui/textflowpage.ui:259
+msgctxt "textflowpage|extended_tip|checkInsert"
+msgid "Select this check box, and then select the break type that you want to use."
+msgstr "Tämän valintaruudun merkintä mahdollistaa vaihdon tyypin asettamisen."
+
#. JiDat
-#: cui/uiconfig/ui/textflowpage.ui:245
+#: cui/uiconfig/ui/textflowpage.ui:270
msgctxt "textflowpage|checkPageStyle"
msgid "With page st_yle:"
msgstr "Sivutyylin kanssa:"
+#. RFwGc
+#: cui/uiconfig/ui/textflowpage.ui:283
+msgctxt "textflowpage|extended_tip|checkPageStyle"
+msgid "Select this check box, and then select the page style that you want to use for the first page after the break."
+msgstr "Tämän valintaruudun merkintä mahdollistaa vaihdon jälkeisen sivun tyylin asettamisen."
+
#. fMeRA
-#: cui/uiconfig/ui/textflowpage.ui:266
+#: cui/uiconfig/ui/textflowpage.ui:296
msgctxt "textflowpage|labelType"
msgid "_Type:"
msgstr "Tyyppi:"
+#. tX6ag
+#: cui/uiconfig/ui/textflowpage.ui:317
+msgctxt "textflowpage|extended_tip|spinPageNumber"
+msgid "Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked."
+msgstr ""
+
#. nrtWo
-#: cui/uiconfig/ui/textflowpage.ui:293
+#: cui/uiconfig/ui/textflowpage.ui:328
msgctxt "textflowpage|labelPageNum"
msgid "Page _number:"
msgstr "_Sivunumero:"
#. xNBLd
-#: cui/uiconfig/ui/textflowpage.ui:314
+#: cui/uiconfig/ui/textflowpage.ui:349
msgctxt "textflowpage|labelPosition"
msgid "Position:"
msgstr "Sijainti:"
#. bFKWE
-#: cui/uiconfig/ui/textflowpage.ui:334
+#: cui/uiconfig/ui/textflowpage.ui:369
msgctxt "textflowpage|comboPageStyle-atkobject"
msgid "Page Style"
msgstr "Sivutyyli"
+#. E97k4
+#: cui/uiconfig/ui/textflowpage.ui:370
+msgctxt "textflowpage|extended_tip|comboPageStyle"
+msgid "Select the formatting style to use for the first page after the break."
+msgstr "Valitaan ensimmäisellä vaihdon jälkeisellä sivulla käytettävä muotoilutyyli."
+
#. aziF3
-#: cui/uiconfig/ui/textflowpage.ui:348
+#: cui/uiconfig/ui/textflowpage.ui:384
msgctxt "textflowpage|comboBreakType"
msgid "Page"
msgstr "Sivu"
#. MeAgB
-#: cui/uiconfig/ui/textflowpage.ui:349
+#: cui/uiconfig/ui/textflowpage.ui:385
msgctxt "textflowpage|comboBreakType"
msgid "Column"
msgstr "Palsta"
+#. eLRHP
+#: cui/uiconfig/ui/textflowpage.ui:389
+msgctxt "textflowpage|extended_tip|comboBreakType"
+msgid "Select the break type that you want to insert."
+msgstr "Valitaan lisättävän vaihdon tyyppi."
+
#. 8RF2z
-#: cui/uiconfig/ui/textflowpage.ui:362
+#: cui/uiconfig/ui/textflowpage.ui:403
msgctxt "textflowpage|comboBreakPosition"
msgid "Before"
msgstr "Ennen"
#. vMWKU
-#: cui/uiconfig/ui/textflowpage.ui:363
+#: cui/uiconfig/ui/textflowpage.ui:404
msgctxt "textflowpage|comboBreakPosition"
msgid "After"
msgstr "Jälkeen"
+#. BJqRd
+#: cui/uiconfig/ui/textflowpage.ui:408
+msgctxt "textflowpage|extended_tip|comboBreakPosition"
+msgid "Select where you want to insert the break."
+msgstr "Valitaan, mihin vaihto lisätään."
+
#. B657G
-#: cui/uiconfig/ui/textflowpage.ui:382
+#: cui/uiconfig/ui/textflowpage.ui:428
msgctxt "textflowpage|label3"
msgid "Breaks"
msgstr "Vaihdot"
#. MEpn4
-#: cui/uiconfig/ui/textflowpage.ui:414
+#: cui/uiconfig/ui/textflowpage.ui:460
msgctxt "textflowpage|checkSplitPara"
msgid "_Do not split paragraph"
msgstr "_Ei rivien erotusta"
+#. XLpSD
+#: cui/uiconfig/ui/textflowpage.ui:470
+msgctxt "textflowpage|extended_tip|checkSplitPara"
+msgid "Shifts the entire paragraph to the next page or column after a break is inserted."
+msgstr "Siirretään koko kappale seuraavalle sivulle tai palstalle vaihtomerkin lisäämisen jälkeen."
+
#. vWpZR
-#: cui/uiconfig/ui/textflowpage.ui:431
+#: cui/uiconfig/ui/textflowpage.ui:482
msgctxt "textflowpage|checkKeepPara"
msgid "_Keep with next paragraph"
msgstr "Si_do seuraavaan kappaleeseen"
+#. i6pDE
+#: cui/uiconfig/ui/textflowpage.ui:492
+msgctxt "textflowpage|extended_tip|checkKeepPara"
+msgid "Keeps the current paragraph and the following paragraph together when a break or column break is inserted."
+msgstr "Pidetään käsiteltävä kappale ja seuraava kappale yhdessä, kun sivun- tai palstan vaihto lisätään."
+
#. dQZQ7
-#: cui/uiconfig/ui/textflowpage.ui:448
+#: cui/uiconfig/ui/textflowpage.ui:504
msgctxt "textflowpage|checkOrphan"
msgid "_Orphan control"
msgstr "O_rporivien esto"
+#. zADSo
+#: cui/uiconfig/ui/textflowpage.ui:517
+msgctxt "textflowpage|extended_tip|checkOrphan"
+msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
+msgstr "Määritetään vähimmäismäärä kappaleeseen jääviä rivejä ennen sivunvaihtoa. Merkitään tämä valintaruutu ja annetaan sitten luku Riviä-ruutuun."
+
#. pnW52
-#: cui/uiconfig/ui/textflowpage.ui:467
+#: cui/uiconfig/ui/textflowpage.ui:528
msgctxt "textflowpage|checkWidow"
msgid "_Widow control"
msgstr "_Leskirivien ohjaus"
+#. SmFT5
+#: cui/uiconfig/ui/textflowpage.ui:541
+msgctxt "textflowpage|extended_tip|checkWidow"
+msgid "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 Lines box."
+msgstr "Määritetään vähimmäismäärä kappaleeseen jääviä rivejä sivunvaihdon jälkeen. Merkitään tämä valintaruutu ja annetaan sitten luku Riviä-ruutuun."
+
+#. mb9LZ
+#: cui/uiconfig/ui/textflowpage.ui:561
+msgctxt "textflowpage|extended_tip|spinOrphan"
+msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
+msgstr "Määritetään vähimmäismäärä kappaleeseen jääviä rivejä ennen sivunvaihtoa. Merkitään tämä valintaruutu ja annetaan sitten luku Riviä-ruutuun."
+
+#. 3cNEP
+#: cui/uiconfig/ui/textflowpage.ui:582
+msgctxt "textflowpage|extended_tip|spinWidow"
+msgid "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 Lines box."
+msgstr "Määritetään vähimmäismäärä kappaleeseen jääviä rivejä sivunvaihdon jälkeen. Merkitään tämä valintaruutu ja annetaan sitten luku Riviä-ruutuun."
+
#. dcEiB
-#: cui/uiconfig/ui/textflowpage.ui:519
+#: cui/uiconfig/ui/textflowpage.ui:595
msgctxt "textflowpage|labelOrphan"
msgid "lines"
msgstr "riviä"
#. 6swWD
-#: cui/uiconfig/ui/textflowpage.ui:531
+#: cui/uiconfig/ui/textflowpage.ui:607
msgctxt "textflowpage|labelWidow"
msgid "lines"
msgstr "riviä"
#. nXryi
-#: cui/uiconfig/ui/textflowpage.ui:547
+#: cui/uiconfig/ui/textflowpage.ui:623
msgctxt "textflowpage|labelOptions"
msgid "Options"
msgstr "Asetukset"
+#. qrhEF
+#: cui/uiconfig/ui/textflowpage.ui:640
+msgctxt "textflowpage|extended_tip|TextFlowPage"
+msgid "Specify hyphenation and pagination options."
+msgstr "Määritellään tavutus- ja sivutusasetukset."
+
#. 5BskL
#: cui/uiconfig/ui/thesaurus.ui:23
msgctxt "thesaurus|ThesaurusDialog"
@@ -15396,35 +20777,71 @@ msgid "Thesaurus"
msgstr "Synonyymisanasto"
#. BBvLD
-#: cui/uiconfig/ui/thesaurus.ui:58
+#: cui/uiconfig/ui/thesaurus.ui:55
msgctxt "thesaurus|replace"
msgid "_Replace"
msgstr "Korvaa"
#. x792E
-#: cui/uiconfig/ui/thesaurus.ui:105
+#: cui/uiconfig/ui/thesaurus.ui:102
msgctxt "thesaurus|label1"
msgid "Current word:"
msgstr "Nykyinen sana:"
#. GQz9P
-#: cui/uiconfig/ui/thesaurus.ui:120
+#: cui/uiconfig/ui/thesaurus.ui:117
msgctxt "thesaurus|label2"
msgid "Alternatives:"
msgstr "Vaihtoehdot:"
#. DqB5k
-#: cui/uiconfig/ui/thesaurus.ui:135
+#: cui/uiconfig/ui/thesaurus.ui:132
msgctxt "thesaurus|label3"
msgid "Replace with:"
msgstr "Korvaa sanalla:"
+#. wMG8r
+#: cui/uiconfig/ui/thesaurus.ui:150
+msgctxt "thesaurus|extended_tip|replaceed"
+msgid "The word or words in the \"Replace with\" text box will replace the original word in the document when you click the Replace button. You can also type text directly in this box."
+msgstr "Yksi tai useampi \"Korvaa sanalla\" -tekstiruudun sana korvaa asiakirjan alkuperäisen sanan, kun napsautetaan Korvaa-painiketta. Ruutuun voi kirjoittaa myös suoraan."
+
+#. xW3j2
+#: cui/uiconfig/ui/thesaurus.ui:170
+msgctxt "thesaurus|extended_tip|left"
+msgid "Recalls the previous contents of the \"Current word\" text box."
+msgstr "Palautetaan \"Nykyinen sana\" -tekstiruudun edellinen sisältö."
+
+#. MysZM
+#: cui/uiconfig/ui/thesaurus.ui:186
+msgctxt "thesaurus|extended_tip|langcb"
+msgid "Select a language for the thesaurus."
+msgstr ""
+
+#. 2GzjN
+#: cui/uiconfig/ui/thesaurus.ui:211
+msgctxt "thesaurus|extended_tip|wordcb"
+msgid "Displays the current word, or the related term that you selected by double-clicking a line in the Alternatives list. You can also type text directly in this box to look up your text."
+msgstr "Näytetään käsiteltävä sana tai läheinen termi, joka on valittu kaksoisnapsauttamalla riviä vaihtoehtojen luettelossa. Tekstin voi myös kirjoittaa suoraan tähän ruutuun tekstin tarkastelemiseksi."
+
+#. FGgNh
+#: cui/uiconfig/ui/thesaurus.ui:263
+msgctxt "thesaurus|extended_tip|alternatives"
+msgid "Click an entry in the Alternatives list to copy the related term to the \"Replace with\" text box. Double-click an entry to copy the related term to the \"Current word\" text box and to look up that term."
+msgstr "Napsauttamalla merkintää Vaihtoehdot-luettelossa vastaava termi kopioituu \"Korvaa sanalla\" -tekstiruutuun. Kaksoisnapsauttamalla merkintää vastaava termi kopioituu \"Nykyinen sana\"-tekstiruutuun tarkasteltavaksi."
+
#. qZ6KM
-#: cui/uiconfig/ui/thesaurus.ui:259
+#: cui/uiconfig/ui/thesaurus.ui:281
msgctxt "thesaurus|RID_SVXSTR_ERR_TEXTNOTFOUND"
msgid "No alternatives found."
msgstr "Vaihtoehtoja ei löytynyt."
+#. VGEXu
+#: cui/uiconfig/ui/thesaurus.ui:320
+msgctxt "thesaurus|extended_tip|ThesaurusDialog"
+msgid "Opens a dialog box to replace the current word with a synonym, or a related term."
+msgstr "Avataan valintaikkuna, jossa korvataan kohdistettu sana synonyymillään tai rinnakkaistermillään."
+
#. BeTCk
#: cui/uiconfig/ui/tipofthedaydialog.ui:8
msgctxt "TipOfTheDayDialog|Name"
@@ -15461,120 +20878,264 @@ msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Linkki"
+#. WGqn5
+#: cui/uiconfig/ui/toolbarmodedialog.ui:13
+msgctxt "ToolbarmodeDialog|Name"
+msgid "Select Your Preferred User Interface"
+msgstr ""
+
+#. odHug
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
+msgctxt "ToolbarmodeDialog|radiobutton1"
+msgid "Standard Toolbar"
+msgstr ""
+
+#. wTDDF
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
+msgid "Single Toolbar"
+msgstr ""
+
+#. AMgFL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:145
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Sidebar"
+msgstr ""
+
+#. WRYEa
+#: cui/uiconfig/ui/toolbarmodedialog.ui:163
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Tabbed"
+msgstr ""
+
+#. YvSd9
+#: cui/uiconfig/ui/toolbarmodedialog.ui:181
+msgctxt "ToolbarmodeDialog|radiobutton5"
+msgid "Tabbed Compact"
+msgstr ""
+
+#. jAJbo
+#: cui/uiconfig/ui/toolbarmodedialog.ui:199
+msgctxt "ToolbarmodeDialog|radiobutton6"
+msgid "Groupedbar Compact"
+msgstr ""
+
+#. yT3UT
+#: cui/uiconfig/ui/toolbarmodedialog.ui:217
+msgctxt "ToolbarmodeDialog|radiobutton7"
+msgid "Groupedbar"
+msgstr ""
+
+#. iSVgL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:235
+msgctxt "ToolbarmodeDialog|radiobutton8"
+msgid "Contextual Single"
+msgstr ""
+
+#. TrcWq
+#: cui/uiconfig/ui/toolbarmodedialog.ui:253
+msgctxt "ToolbarmodeDialog|radiobutton9"
+msgid "Contextual Groups"
+msgstr ""
+
+#. kGdXR
+#: cui/uiconfig/ui/toolbarmodedialog.ui:277
+msgctxt "ToolbarmodeDialog|leftframe"
+msgid "UI variants"
+msgstr ""
+
+#. H7m7J
+#: cui/uiconfig/ui/toolbarmodedialog.ui:350
+msgctxt "ToolbarmodeDialog|rightframe"
+msgid "Preview"
+msgstr ""
+
#. WChLB
#: cui/uiconfig/ui/transparencytabpage.ui:77
msgctxt "transparencytabpage|RBT_TRANS_OFF"
msgid "_No transparency"
msgstr "Ei läpinäkyvyyttä"
+#. vysNZ
+#: cui/uiconfig/ui/transparencytabpage.ui:87
+msgctxt "transparencytabpage|extended_tip|RBT_TRANS_OFF"
+msgid "Turns off color transparency."
+msgstr "Värin läpinäkyvyys ei ole käytössä."
+
#. DEU8f
-#: cui/uiconfig/ui/transparencytabpage.ui:93
+#: cui/uiconfig/ui/transparencytabpage.ui:98
msgctxt "transparencytabpage|RBT_TRANS_LINEAR"
msgid "_Transparency:"
msgstr "Läpinäkyvyys:"
+#. RpVxj
+#: cui/uiconfig/ui/transparencytabpage.ui:111
+msgctxt "transparencytabpage|extended_tip|RBT_TRANS_LINEAR"
+msgid "Turns on color transparency. Select this option, and then enter a number in the box, where 0% is fully opaque and 100% is fully transparent."
+msgstr "Valinta kytkee värin läpinäkyvyyden käyttöön. Valitaan tämä asetus ja sitten annetaan luku kenttään, jossa 0% on täysin peittävä ja 100% on täysin läpinäkyvä."
+
#. mHokD
-#: cui/uiconfig/ui/transparencytabpage.ui:112
+#: cui/uiconfig/ui/transparencytabpage.ui:122
msgctxt "transparencytabpage|RBT_TRANS_GRADIENT"
msgid "_Gradient"
msgstr "Liukuva läpinäkyvyys"
+#. 6WDfQ
+#: cui/uiconfig/ui/transparencytabpage.ui:132
+msgctxt "transparencytabpage|extended_tip|RBT_TRANS_GRADIENT"
+msgid "Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties."
+msgstr "Käytetään läpinäkyvää liukuvärjäystä työstettävään täyttöväriin. Valitaan ensin tämä vaihtoehto ja sitten liukuvärjäyksen ominaisuudet."
+
+#. FBxYk
+#: cui/uiconfig/ui/transparencytabpage.ui:152
+msgctxt "transparencytabpage|extended_tip|MTR_TRANSPARENT"
+msgid "Adjusts the transparency of the current fill color. Enter a number between 0% (opaque) and 100% (transparent)."
+msgstr "Säädetään käytettävän täyttövärin läpinäkyvyyttä. Annetaan luku välitä 0% (peittävä) ... 100% (läpinäkyvä)."
+
+#. 7XQDC
+#: cui/uiconfig/ui/transparencytabpage.ui:188
+msgctxt "transparencytabpage|extended_tip|MTR_TRGR_END_VALUE"
+msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent."
+msgstr "Annetaan liukuvärjäyksen lopetuskohdan läpinäkyvyysarvo, jossa 0% on täysin peittävä ja 100% on täysin läpinäkyvä."
+
+#. fq8QF
+#: cui/uiconfig/ui/transparencytabpage.ui:205
+msgctxt "transparencytabpage|extended_tip|MTR_TRGR_START_VALUE"
+msgid "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent."
+msgstr "Annetaan liukuvärjäyksen aloituskohdan läpinäkyvyysarvo, jossa 0% on täysin peittävä ja 100% on täysin läpinäkyvä."
+
+#. 5EEBy
+#: cui/uiconfig/ui/transparencytabpage.ui:222
+msgctxt "transparencytabpage|extended_tip|MTR_TRGR_BORDER"
+msgid "Enter the amount by which you want to adjust the transparent area of the gradient. The default value is 0%."
+msgstr "Annetaan osuus, jolla läpinäkyvää aluetta rajataan täysin peittävällä reuna-alueella. Oletusarvo on 0%."
+
+#. Yr5Vv
+#: cui/uiconfig/ui/transparencytabpage.ui:239
+msgctxt "transparencytabpage|extended_tip|MTR_TRGR_ANGLE"
+msgid "Enter a rotation angle for the gradient."
+msgstr "Syötä liukuvärjäyksen kiertokulma."
+
+#. tJHu5
+#: cui/uiconfig/ui/transparencytabpage.ui:256
+msgctxt "transparencytabpage|extended_tip|MTR_TRGR_CENTER_Y"
+msgid "Enter the vertical offset for the gradient."
+msgstr "Annetaan liukuvärjäyksen suhteellinen pystysiirros."
+
+#. nascp
+#: cui/uiconfig/ui/transparencytabpage.ui:273
+msgctxt "transparencytabpage|extended_tip|MTR_TRGR_CENTER_X"
+msgid "Enter the horizontal offset for the gradient."
+msgstr "Annetaan liukuvärjäyksen suhteellinen vaakasiirros aloitusreunasta."
+
#. YgMd8
-#: cui/uiconfig/ui/transparencytabpage.ui:237
+#: cui/uiconfig/ui/transparencytabpage.ui:287
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Linear"
msgstr "Lineaarinen"
#. 8CgMQ
-#: cui/uiconfig/ui/transparencytabpage.ui:238
+#: cui/uiconfig/ui/transparencytabpage.ui:288
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Axial"
msgstr "Aksiaalinen"
#. hyMck
-#: cui/uiconfig/ui/transparencytabpage.ui:239
+#: cui/uiconfig/ui/transparencytabpage.ui:289
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Radial"
msgstr "Säteittäinen"
#. mEnF6
-#: cui/uiconfig/ui/transparencytabpage.ui:240
+#: cui/uiconfig/ui/transparencytabpage.ui:290
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Ellipsoid"
msgstr "Ellipsoidi"
#. GDBS5
-#: cui/uiconfig/ui/transparencytabpage.ui:241
+#: cui/uiconfig/ui/transparencytabpage.ui:291
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Quadratic"
msgstr "Neliön muotoinen"
#. NgYW8
-#: cui/uiconfig/ui/transparencytabpage.ui:242
+#: cui/uiconfig/ui/transparencytabpage.ui:292
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Square"
msgstr "Neliö"
+#. 9hAzC
+#: cui/uiconfig/ui/transparencytabpage.ui:296
+msgctxt "transparencytabpage|extended_tip|LB_TRGR_GRADIENT_TYPES"
+msgid "Select the type of transparency gradient that you want to apply."
+msgstr "Valitaan käytettävän läpinäkyvän liukuvärjäyksen leviämiskuvio."
+
#. EmYEU
-#: cui/uiconfig/ui/transparencytabpage.ui:259
+#: cui/uiconfig/ui/transparencytabpage.ui:314
msgctxt "transparencytabpage|FT_TRGR_TYPE"
msgid "Ty_pe:"
msgstr "Tyyppi:"
#. kfKen
-#: cui/uiconfig/ui/transparencytabpage.ui:280
+#: cui/uiconfig/ui/transparencytabpage.ui:335
msgctxt "transparencytabpage|FT_TRGR_CENTER_X"
msgid "Center _X:"
msgstr "Keskipisteen X:"
#. Nsx4p
-#: cui/uiconfig/ui/transparencytabpage.ui:301
+#: cui/uiconfig/ui/transparencytabpage.ui:356
msgctxt "transparencytabpage|FT_TRGR_CENTER_Y"
msgid "Center _Y:"
msgstr "Keskipisteen Y:"
#. RWNkA
-#: cui/uiconfig/ui/transparencytabpage.ui:322
+#: cui/uiconfig/ui/transparencytabpage.ui:377
msgctxt "transparencytabpage|FT_TRGR_ANGLE"
msgid "_Angle:"
msgstr "Kulma:"
#. uRCB3
-#: cui/uiconfig/ui/transparencytabpage.ui:343
+#: cui/uiconfig/ui/transparencytabpage.ui:398
msgctxt "transparencytabpage|FT_TRGR_BORDER"
msgid "_Border:"
msgstr "Raja:"
#. JBFw6
-#: cui/uiconfig/ui/transparencytabpage.ui:364
+#: cui/uiconfig/ui/transparencytabpage.ui:419
msgctxt "transparencytabpage|FT_TRGR_START_VALUE"
msgid "_Start value:"
msgstr "Aloitusarvo:"
#. opX8T
-#: cui/uiconfig/ui/transparencytabpage.ui:385
+#: cui/uiconfig/ui/transparencytabpage.ui:440
msgctxt "transparencytabpage|FT_TRGR_END_VALUE"
msgid "_End value:"
msgstr "Lopetusarvo:"
#. vFPGU
-#: cui/uiconfig/ui/transparencytabpage.ui:442
+#: cui/uiconfig/ui/transparencytabpage.ui:497
msgctxt "transparencytabpage|CTL_BITMAP_PREVIEW-atkobject"
msgid "Example"
msgstr "Esimerkki"
#. AiQzg
-#: cui/uiconfig/ui/transparencytabpage.ui:477
+#: cui/uiconfig/ui/transparencytabpage.ui:532
msgctxt "transparencytabpage|CTL_TRANS_PREVIEW-atkobject"
msgid "Example"
msgstr "Esimerkki"
#. UMCGy
-#: cui/uiconfig/ui/transparencytabpage.ui:521
+#: cui/uiconfig/ui/transparencytabpage.ui:576
msgctxt "transparencytabpage|FL_PROP"
msgid "Area Transparency Mode"
msgstr "Alueen läpinäkyvyystila"
+#. 2tXmW
+#: cui/uiconfig/ui/transparencytabpage.ui:585
+msgctxt "transparencytabpage|extended_tip|TransparencyTabPage"
+msgid "Set the transparency options for the fill that you apply to the selected object."
+msgstr "Asetetaan valittuun objektiin käytettävän täytön läpinäkyvyys."
+
#. vUHk9
#: cui/uiconfig/ui/tsaurldialog.ui:16
msgctxt "tsaurldialog|TSAURLDialog"
@@ -15582,25 +21143,25 @@ msgid "Time Stamping Authority URLs"
msgstr "Aikaleimapalvelimien (TSA) URL-osoitteet"
#. osDWc
-#: cui/uiconfig/ui/tsaurldialog.ui:67
+#: cui/uiconfig/ui/tsaurldialog.ui:66
msgctxt "tsaurldialog|add"
msgid "_Add..."
msgstr "Lisää..."
#. px3EH
-#: cui/uiconfig/ui/tsaurldialog.ui:145
+#: cui/uiconfig/ui/tsaurldialog.ui:143
msgctxt "tsaurldialog|label2"
msgid "Add or delete Time Stamp Authority URLs"
msgstr "Lisää tai poista aikaleimapalvelimien osoitteita"
#. fUEE7
-#: cui/uiconfig/ui/tsaurldialog.ui:207
+#: cui/uiconfig/ui/tsaurldialog.ui:205
msgctxt "tsaurldialog|enteraurl"
msgid "Enter a Time Stamp Authority URL"
msgstr "Anna aikaleimapalvelimen URL-osoite"
#. NEFBL
-#: cui/uiconfig/ui/tsaurldialog.ui:235
+#: cui/uiconfig/ui/tsaurldialog.ui:233
msgctxt "tsaurldialog|label1"
msgid "TSA URL"
msgstr "TSA:n URL"
@@ -15653,60 +21214,126 @@ msgctxt "wordcompletionpage|enablewordcomplete"
msgid "Enable word _completion"
msgstr "Ota sanojen täydennys käyttöön"
+#. C6wQP
+#: cui/uiconfig/ui/wordcompletionpage.ui:79
+msgctxt "wordcompletionpage|extended_tip|enablewordcomplete"
+msgid "Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word."
+msgstr "Tallennetaan säännöllisesti käytettyjä sanoja ja ohjelma täydentää sana, kun kolme ensimmäistä tallennetun sanan kirjainta kirjoitetaan."
+
#. F6ECQ
-#: cui/uiconfig/ui/wordcompletionpage.ui:95
+#: cui/uiconfig/ui/wordcompletionpage.ui:100
msgctxt "wordcompletionpage|appendspace"
msgid "_Append space"
msgstr "Lisää sanan jälkeen välilyönti"
+#. B3Tgo
+#: cui/uiconfig/ui/wordcompletionpage.ui:109
+msgctxt "wordcompletionpage|extended_tip|appendspace"
+msgid "If you do not add punctuation after the word, %PRODUCTNAME adds a space."
+msgstr "Jos et lisää sanan jälkeen välimerkkiä, %PRODUCTNAME lisää välilyönnin."
+
#. YyYGC
-#: cui/uiconfig/ui/wordcompletionpage.ui:110
+#: cui/uiconfig/ui/wordcompletionpage.ui:120
msgctxt "wordcompletionpage|showastip"
msgid "_Show as tip"
msgstr "Näytä vihjeenä"
+#. AM5rj
+#: cui/uiconfig/ui/wordcompletionpage.ui:129
+msgctxt "wordcompletionpage|extended_tip|showastip"
+msgid "Displays the completed word as a Help Tip."
+msgstr "Esitetään kokonainen sana vihjeenä."
+
#. RJa2G
-#: cui/uiconfig/ui/wordcompletionpage.ui:153
+#: cui/uiconfig/ui/wordcompletionpage.ui:168
msgctxt "wordcompletionpage|label2"
msgid "Mi_n. word length:"
msgstr "Sanan vähimmäispituus:"
+#. XSEGa
+#: cui/uiconfig/ui/wordcompletionpage.ui:187
+msgctxt "wordcompletionpage|extended_tip|minwordlen"
+msgid "Enter the minimum word length for a word to become eligible for the word completion feature."
+msgstr "Annetaan sanan vähimmäispituus, josta alkaen sanat ovat sanojen täydennykseen sopivia."
+
#. YAb3D
-#: cui/uiconfig/ui/wordcompletionpage.ui:180
+#: cui/uiconfig/ui/wordcompletionpage.ui:200
msgctxt "wordcompletionpage|label1"
msgid "_Max. entries:"
msgstr "Merkintöjen enimmäismäärä:"
+#. Ypa2L
+#: cui/uiconfig/ui/wordcompletionpage.ui:219
+msgctxt "wordcompletionpage|extended_tip|maxentries"
+msgid "Enter the maximum number of words that you want to store in the Word Completion list."
+msgstr "Annetaan sanojen enimmäismäärä, jota käytetään sanojen täydennyksen luettelossa."
+
#. SzABn
-#: cui/uiconfig/ui/wordcompletionpage.ui:207
+#: cui/uiconfig/ui/wordcompletionpage.ui:232
msgctxt "wordcompletionpage|label3"
msgid "Acc_ept with:"
msgstr "Hyväksy näppäimellä:"
+#. gPj5A
+#: cui/uiconfig/ui/wordcompletionpage.ui:248
+msgctxt "wordcompletionpage|extended_tip|acceptwith"
+msgid "Select the key that you want to use to accept the automatic word completion."
+msgstr "Valitaan näppäin, jolla automaattinen sanojen täydennys hyväksytään."
+
#. iedK3
-#: cui/uiconfig/ui/wordcompletionpage.ui:253
+#: cui/uiconfig/ui/wordcompletionpage.ui:283
msgctxt "acorreplacepage|collectedwords"
msgid "Collected Words"
msgstr "Kerätyt sanat"
+#. GCXAm
+#: cui/uiconfig/ui/wordcompletionpage.ui:329
+msgctxt "wordcompletionpage|extended_tip|entries"
+msgid "Lists the collected words. The list is valid until you close the current document. To make the list available to other documents in the current session, disable \"When closing a document, remove the words collected from it from the list\"."
+msgstr "Luettelossa on kerätyt sanat. Luettelo on voimassa työstettävän asiakirjan sulkemiseen asti. Luettelon käyttämiseksi saman istunnon muissa asiakirjoissa, valitaan \"Kun asiakirja suljetaan, tallenna luettelo myöhempää käyttöä varten muissa asiakirjoissa\"."
+
#. Akygd
-#: cui/uiconfig/ui/wordcompletionpage.ui:307
+#: cui/uiconfig/ui/wordcompletionpage.ui:342
msgctxt "wordcompletionpage|whenclosing"
msgid "_When closing a document, remove the words collected from it from the list"
msgstr "Kun asiakirja suljetaan, poista siitä kerätyt sanat luettelosta"
+#. RFvtW
+#: cui/uiconfig/ui/wordcompletionpage.ui:352
+msgctxt "wordcompletionpage|extended_tip|whenclosing"
+msgid "When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit %PRODUCTNAME."
+msgstr "Tehdään nykyisestä sanojen täydennysluettelosta muissakin asiakirjoissa käytettävä työstettävän asiakirjan sulkemisen jälkeen. Luettelo säilyy käytettävissä kunnes poistutaan %PRODUCTNAME-ohjelmistosta."
+
#. f7oAK
-#: cui/uiconfig/ui/wordcompletionpage.ui:327
+#: cui/uiconfig/ui/wordcompletionpage.ui:367
msgctxt "wordcompletionpage|collectwords"
msgid "C_ollect words"
msgstr "Kerää sanoja"
+#. AJuiz
+#: cui/uiconfig/ui/wordcompletionpage.ui:376
+msgctxt "wordcompletionpage|extended_tip|collectwords"
+msgid "Adds the frequently used words to a list. To remove a word from the Word Completion list, select the word, and then click Delete Entry."
+msgstr "Kerätään säännöllisesti käytetyt sanat luetteloon. Sanan poistamiseksi sanojen täydennyksen luettelosta valitaan sana ja napsautetaan sitten Poista merkintä -painiketta."
+
#. yzZjo
-#: cui/uiconfig/ui/wordcompletionpage.ui:343
+#: cui/uiconfig/ui/wordcompletionpage.ui:388
msgctxt "wordcompletionpage|delete"
msgid "_Delete"
msgstr "Poista"
+#. 4HjyH
+#: cui/uiconfig/ui/wordcompletionpage.ui:397
+msgctxt "wordcompletionpage|extended_tip|delete"
+msgid "Removes the selected word or words from the Word Completion list."
+msgstr "Poistetaan valittu sana sanojen täydennyksen luettelosta."
+
+#. zqnKv
+#: cui/uiconfig/ui/wordcompletionpage.ui:428
+msgctxt "wordcompletionpage|extended_tip|WordCompletionPage"
+msgid "Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word."
+msgstr "Tallennetaan säännöllisesti käytettyjä sanoja ja ohjelma täydentää sana, kun kolme ensimmäistä tallennetun sanan kirjainta kirjoitetaan."
+
#. gzUCC
#: cui/uiconfig/ui/zoomdialog.ui:19
msgctxt "zoomdialog|ZoomDialog"
@@ -15719,75 +21346,147 @@ msgctxt "zoomdialog|optimal"
msgid "Optimal"
msgstr "Optimaalinen"
+#. Yd7ht
+#: cui/uiconfig/ui/zoomdialog.ui:122
+msgctxt "zoomdialog|extended_tip|optimal"
+msgid "Resizes the display to fit the width of the text in the document at the moment the command is started."
+msgstr ""
+
#. RfuDU
-#: cui/uiconfig/ui/zoomdialog.ui:129
+#: cui/uiconfig/ui/zoomdialog.ui:134
msgctxt "zoomdialog|fitwandh"
msgid "Fit width and height"
msgstr "Sovita leveys ja korkeus"
+#. ZHbzV
+#: cui/uiconfig/ui/zoomdialog.ui:144
+msgctxt "zoomdialog|extended_tip|fitwandh"
+msgid "Displays the entire page on your screen."
+msgstr ""
+
#. P9XGA
-#: cui/uiconfig/ui/zoomdialog.ui:146
+#: cui/uiconfig/ui/zoomdialog.ui:156
msgctxt "zoomdialog|fitw"
msgid "Fit width"
msgstr "Sovita leveys"
+#. ANMvA
+#: cui/uiconfig/ui/zoomdialog.ui:166
+msgctxt "zoomdialog|extended_tip|fitw"
+msgid "Displays the complete width of the document page. The top and bottom edges of the page may not be visible."
+msgstr ""
+
#. qeWB6
-#: cui/uiconfig/ui/zoomdialog.ui:163
+#: cui/uiconfig/ui/zoomdialog.ui:178
msgctxt "zoomdialog|100pc"
msgid "100%"
msgstr "100 %"
+#. kwdpk
+#: cui/uiconfig/ui/zoomdialog.ui:188
+msgctxt "zoomdialog|extended_tip|100pc"
+msgid "Displays the document at its actual size."
+msgstr ""
+
#. DE7hS
-#: cui/uiconfig/ui/zoomdialog.ui:185
+#: cui/uiconfig/ui/zoomdialog.ui:205
msgctxt "zoomdialog|variable"
msgid "Variable:"
msgstr "Mukautettu:"
+#. zSg6i
+#: cui/uiconfig/ui/zoomdialog.ui:218
+msgctxt "zoomdialog|extended_tip|variable"
+msgid "Enter the zoom factor at which you want to display the document. Enter a percentage in the box."
+msgstr ""
+
#. QGHoo
-#: cui/uiconfig/ui/zoomdialog.ui:214
+#: cui/uiconfig/ui/zoomdialog.ui:239
#, fuzzy
msgctxt "zoomdialog|zoomsb-atkobject"
msgid "Variable"
msgstr "Muuttuja"
+#. tnqjj
+#: cui/uiconfig/ui/zoomdialog.ui:240
+msgctxt "zoomdialog|extended_tip|zoomsb"
+msgid "Enter the zoom factor at which you want to display the document. Enter a percentage in the box."
+msgstr ""
+
#. 8iPB6
-#: cui/uiconfig/ui/zoomdialog.ui:239
+#: cui/uiconfig/ui/zoomdialog.ui:265
msgctxt "zoomdialog|label2"
msgid "Zoom Factor"
msgstr "Zoom-kerroin"
#. CzsKr
-#: cui/uiconfig/ui/zoomdialog.ui:272
+#: cui/uiconfig/ui/zoomdialog.ui:298
msgctxt "zoomdialog|automatic"
msgid "Automatic"
msgstr "Automaattinen"
+#. CQYiS
+#: cui/uiconfig/ui/zoomdialog.ui:307
+msgctxt "zoomdialog|extended_tip|automatic"
+msgid "The automatic view layout displays pages side by side, as many as the zoom factor allows."
+msgstr "Automaattinen asettelu näyttää sivuja rinnakkain niin monta kuin zoomauskerroin sallii."
+
#. DBVGM
-#: cui/uiconfig/ui/zoomdialog.ui:288
+#: cui/uiconfig/ui/zoomdialog.ui:319
msgctxt "zoomdialog|singlepage"
msgid "Single page"
msgstr "Yksi sivu"
+#. E2onG
+#: cui/uiconfig/ui/zoomdialog.ui:329
+msgctxt "zoomdialog|extended_tip|singlepage"
+msgid "The single page view layout displays pages beneath each other, but never side by side."
+msgstr "Yksittäissivu-asettelussa nähdään sivut allekkain, muttei koskaan rinnakkain."
+
#. FdNqb
-#: cui/uiconfig/ui/zoomdialog.ui:310
+#: cui/uiconfig/ui/zoomdialog.ui:346
msgctxt "zoomdialog|columns"
msgid "Columns:"
msgstr "Sivuja vierekkäin:"
+#. oXVAa
+#: cui/uiconfig/ui/zoomdialog.ui:360
+msgctxt "zoomdialog|extended_tip|columns"
+msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
+msgstr "Vierekkäin-asettelussa näkyy annettu määrä sivuja rinnakkain. Syötä vierekkäisten sivujen lukumäärä."
+
#. opsyv
-#: cui/uiconfig/ui/zoomdialog.ui:341
+#: cui/uiconfig/ui/zoomdialog.ui:382
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr "Sivuja vierekkäin"
+#. psRyA
+#: cui/uiconfig/ui/zoomdialog.ui:383
+msgctxt "zoomdialog|extended_tip|columnssb"
+msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
+msgstr "Vierekkäin-asettelussa näkyy annettu määrä sivuja rinnakkain. Syötä vierekkäisten sivujen lukumäärä."
+
#. rhLet
-#: cui/uiconfig/ui/zoomdialog.ui:365
+#: cui/uiconfig/ui/zoomdialog.ui:407
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr "Kirjan aukeamina"
+#. egdNS
+#: cui/uiconfig/ui/zoomdialog.ui:420
+msgctxt "zoomdialog|extended_tip|bookmode"
+msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number."
+msgstr "Kirjan aukeamina vierekkäisten sivujen asettelu näkyy avoimen kirjan tapaan. Ensimmäinen sivu on parittomana aukeamassa oikealla."
+
#. pdZqi
-#: cui/uiconfig/ui/zoomdialog.ui:393
+#: cui/uiconfig/ui/zoomdialog.ui:440
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "Näkymän asettelu"
+
+#. xrBmX
+#: cui/uiconfig/ui/zoomdialog.ui:472
+msgctxt "zoomdialog|extended_tip|ZoomDialog"
+msgid "Reduces or enlarges the screen display of %PRODUCTNAME."
+msgstr "Loitonnetaan ja lähennetään %PRODUCTNAMEn näkymää näytöllä."
diff --git a/source/fi/dbaccess/messages.po b/source/fi/dbaccess/messages.po
index 475ed8f21a6..8fd5388f784 100644
--- a/source/fi/dbaccess/messages.po
+++ b/source/fi/dbaccess/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:30+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/fi/>\n"
@@ -965,20 +965,14 @@ msgctxt "STR_TASKS"
msgid "Tasks"
msgstr "Tehtävät"
-#. t46y2
-#: dbaccess/inc/strings.hrc:183
-msgctxt "STR_DESCRIPTION"
-msgid "Description"
-msgstr ""
-
#. i4BHJ
-#: dbaccess/inc/strings.hrc:184
+#: dbaccess/inc/strings.hrc:183
msgctxt "STR_PREVIEW"
msgid "Preview"
msgstr "Esikatselu"
#. MpYZa
-#: dbaccess/inc/strings.hrc:185
+#: dbaccess/inc/strings.hrc:184
msgctxt "STR_QUERY_CLOSEDOCUMENTS"
msgid ""
"The connection type has been altered.\n"
@@ -992,31 +986,31 @@ msgstr ""
"Haluatko sulkea kaikki asiakirjat nyt?"
#. 5Ujux
-#: dbaccess/inc/strings.hrc:188
+#: dbaccess/inc/strings.hrc:187
msgctxt "STR_FRM_LABEL"
msgid "F~orm name"
msgstr "L~omakkeen nimi"
#. zA6vD
-#: dbaccess/inc/strings.hrc:189
+#: dbaccess/inc/strings.hrc:188
msgctxt "STR_RPT_LABEL"
msgid "~Report name"
msgstr "R~aportin nimi"
#. 8RUit
-#: dbaccess/inc/strings.hrc:190
+#: dbaccess/inc/strings.hrc:189
msgctxt "STR_FOLDER_LABEL"
msgid "F~older name"
msgstr "~Kansion nimi"
#. Twota
-#: dbaccess/inc/strings.hrc:191
+#: dbaccess/inc/strings.hrc:190
msgctxt "STR_SUB_DOCS_WITH_SCRIPTS"
msgid "The document contains forms or reports with embedded macros."
msgstr "Asiakirja sisältää lomakkeita tai raportteja, joissa on makroja."
#. v33uG
-#: dbaccess/inc/strings.hrc:192
+#: dbaccess/inc/strings.hrc:191
msgctxt "STR_SUB_DOCS_WITH_SCRIPTS_DETAIL"
msgid ""
"Macros should be embedded into the database document itself.\n"
@@ -1032,260 +1026,260 @@ msgstr ""
"Uusia makroja ei voi liittää tietokanta-asiakirjaan ennen kuin tämä muunnos on tehty. "
#. SBEJP
-#: dbaccess/inc/strings.hrc:197
+#: dbaccess/inc/strings.hrc:196
msgctxt "RID_STR_EMBEDDED_DATABASE"
msgid "Embedded database"
msgstr "Upotettu tietokanta"
#. 9GfaL
-#: dbaccess/inc/strings.hrc:198
+#: dbaccess/inc/strings.hrc:197
msgctxt "RID_STR_NO_DIFF_CAT"
msgid "You cannot select different categories."
msgstr "Erityyppisiä kohteita ei voi valita samanaikaisesti."
#. HMRSN
-#: dbaccess/inc/strings.hrc:199
+#: dbaccess/inc/strings.hrc:198
msgctxt "RID_STR_UNSUPPORTED_OBJECT_TYPE"
msgid "Unsupported object type found ($type$)."
msgstr "Tyyppiä $type$ olevia objekteja ei tueta."
#. YgB34
-#: dbaccess/inc/strings.hrc:200
+#: dbaccess/inc/strings.hrc:199
msgctxt "STR_PAGETITLE_GENERAL"
msgid "Advanced Properties"
msgstr "Lisäominaisuudet"
#. wFDHD
-#: dbaccess/inc/strings.hrc:201
+#: dbaccess/inc/strings.hrc:200
msgctxt "STR_PAGETITLE_ADVANCED"
msgid "Additional Settings"
msgstr "Lisäasetukset"
#. HYDjE
-#: dbaccess/inc/strings.hrc:202
+#: dbaccess/inc/strings.hrc:201
msgctxt "STR_PAGETITLE_CONNECTION"
msgid "Connection settings"
msgstr "Yhteysasetukset"
#. KLRak
-#: dbaccess/inc/strings.hrc:203
+#: dbaccess/inc/strings.hrc:202
msgctxt "STR_TBL_LABEL"
msgid "~Table Name"
msgstr "Taulun nimi"
#. WPmUe
-#: dbaccess/inc/strings.hrc:204
+#: dbaccess/inc/strings.hrc:203
msgctxt "STR_QRY_LABEL"
msgid "~Query name"
msgstr "Kyselyn nimi"
#. cGPht
-#: dbaccess/inc/strings.hrc:205
+#: dbaccess/inc/strings.hrc:204
msgctxt "STR_TITLE_RENAME"
msgid "Rename to"
msgstr "Vaihda nimeksi"
#. GQDBD
-#: dbaccess/inc/strings.hrc:206
+#: dbaccess/inc/strings.hrc:205
msgctxt "STR_TITLE_PASTE_AS"
msgid "Insert as"
msgstr "Lisää nimellä"
#. yGyEU
-#: dbaccess/inc/strings.hrc:208
+#: dbaccess/inc/strings.hrc:207
msgctxt "STR_QUERY_BRW_DELETE_ROWS"
msgid "Do you want to delete the selected data?"
msgstr "Haluatko poistaa valitut tiedot?"
#. AMTEz
-#: dbaccess/inc/strings.hrc:209
+#: dbaccess/inc/strings.hrc:208
msgctxt "SBA_BROWSER_SETTING_ORDER"
msgid "Error setting the sort criteria"
msgstr "Virhe lajittelujärjestyksen määrityksessä"
#. kXqdF
-#: dbaccess/inc/strings.hrc:210
+#: dbaccess/inc/strings.hrc:209
msgctxt "SBA_BROWSER_SETTING_FILTER"
msgid "Error setting the filter criteria"
msgstr "Virhe suodatusehtojen määrityksessä"
#. tXz3U
-#: dbaccess/inc/strings.hrc:211
+#: dbaccess/inc/strings.hrc:210
msgctxt "RID_STR_CONNECTION_LOST"
msgid "Connection lost"
msgstr "Yhteys katkennut"
#. 5ELXe
-#: dbaccess/inc/strings.hrc:212
+#: dbaccess/inc/strings.hrc:211
msgctxt "RID_STR_QUERIES_CONTAINER"
msgid "Queries"
msgstr "Kyselyt"
#. wdm7E
-#: dbaccess/inc/strings.hrc:213
+#: dbaccess/inc/strings.hrc:212
msgctxt "RID_STR_TABLES_CONTAINER"
msgid "Tables"
msgstr "Taulut"
#. BTcMU
-#: dbaccess/inc/strings.hrc:214
+#: dbaccess/inc/strings.hrc:213
msgctxt "STR_TITLE_CONFIRM_DELETION"
msgid "Confirm Deletion"
msgstr "Vahvista poistaminen"
#. pbjZT
-#: dbaccess/inc/strings.hrc:215
+#: dbaccess/inc/strings.hrc:214
msgctxt "STR_QUERY_DELETE_TABLE"
msgid "Do you want to delete the table '%1'?"
msgstr "Haluatko poistaa taulun '%1'?"
#. CLELW
-#: dbaccess/inc/strings.hrc:216
+#: dbaccess/inc/strings.hrc:215
msgctxt "STR_QUERY_CONNECTION_LOST"
msgid "The connection to the database has been lost. Do you want to reconnect?"
msgstr "Tietokantayhteys katkesi. Haluatko muodostaa yhteyden uudelleen?"
#. NRXrT
-#: dbaccess/inc/strings.hrc:217
+#: dbaccess/inc/strings.hrc:216
msgctxt "STR_OPENTABLES_WARNINGS"
msgid "Warnings encountered"
msgstr "Ilmenneet varoitukset"
#. EXau9
-#: dbaccess/inc/strings.hrc:218
+#: dbaccess/inc/strings.hrc:217
msgctxt "STR_OPENTABLES_WARNINGS_DETAILS"
msgid "While retrieving the tables, warnings were reported by the database connection."
msgstr "Tietokantayhteys palautti varoituksia tauluja noudettaessa."
#. HtRDf
-#: dbaccess/inc/strings.hrc:219
+#: dbaccess/inc/strings.hrc:218
msgctxt "STR_CONNECTING_DATASOURCE"
msgid "Connecting to \"$name$\" ..."
msgstr "Yhdistetään kohteeseen $name$..."
#. QNCRB
-#: dbaccess/inc/strings.hrc:220
+#: dbaccess/inc/strings.hrc:219
msgctxt "STR_LOADING_QUERY"
msgid "Loading query $name$ ..."
msgstr "Ladataan kyselyä $name$..."
#. QfTUB
-#: dbaccess/inc/strings.hrc:221
+#: dbaccess/inc/strings.hrc:220
msgctxt "STR_LOADING_TABLE"
msgid "Loading table $name$ ..."
msgstr "Ladataan taulua $name$..."
#. FECQm
-#: dbaccess/inc/strings.hrc:222
+#: dbaccess/inc/strings.hrc:221
msgctxt "STR_NO_TABLE_FORMAT_INSIDE"
msgid "No table format could be found."
msgstr "Taulumuotoa ei löytynyt."
#. 6isKD
-#: dbaccess/inc/strings.hrc:223
+#: dbaccess/inc/strings.hrc:222
msgctxt "STR_COULDNOTCONNECT_DATASOURCE"
msgid "The connection to the data source \"$name$\" could not be established."
msgstr "Yhteyttä tietolähteeseen $name$ ei voitu muodostaa."
#. CmzsA
-#: dbaccess/inc/strings.hrc:225
+#: dbaccess/inc/strings.hrc:224
msgctxt "STR_TABLEDESIGN_DBFIELDTYPES"
msgid "Unknown;Text;Number;Date/Time;Date;Time;Yes/No;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;OTHER;Bit (fix)"
msgstr "Tuntematon;Teksti;Luku;Päivämäärä/Kellonaika;Päivämäärä;Kellonaika;Kyllä/Ei;Valuutta;Muistio;Laskin;Kuva;Teksti (kiinteä);Desimaali;Binääri (kiinteä);Binääri;BigInt;Kaksoistarkkuuden liukuluku;Liukuluku;Reaaliluku;Kokonaisluku;Pieni (small) kokonaisluku;Pieni (tiny) kokonaisluku;SQL-tyhjä;Objekti;Erityis;Rakenne;Kenttä;BLOB;CLOB;REF;OTHER;Bitti (kiinteä)"
#. hhXGF
-#: dbaccess/inc/strings.hrc:226
+#: dbaccess/inc/strings.hrc:225
msgctxt "STR_TABLEDESIGN_UNDO_PRIMKEY"
msgid "Insert/remove primary key"
msgstr "Lisää tai poista perusavain"
#. 26uKH
-#: dbaccess/inc/strings.hrc:227
+#: dbaccess/inc/strings.hrc:226
msgctxt "STR_VALUE_YES"
msgid "Yes"
msgstr "Kyllä"
#. vqVF5
-#: dbaccess/inc/strings.hrc:228
+#: dbaccess/inc/strings.hrc:227
msgctxt "STR_VALUE_NO"
msgid "No"
msgstr "Ei"
#. TDokm
#. Note: should somehow fit to the word "value" in other languages as well: value - none...
-#: dbaccess/inc/strings.hrc:230
+#: dbaccess/inc/strings.hrc:229
msgctxt "STR_VALUE_NONE"
msgid "<none>"
msgstr "<ei mitään>"
#. 66g23
-#: dbaccess/inc/strings.hrc:231
+#: dbaccess/inc/strings.hrc:230
msgctxt "STR_TAB_FIELD_COLUMN_NAME"
msgid "Field Name"
msgstr "Kentän nimi"
#. F6UGZ
-#: dbaccess/inc/strings.hrc:232
+#: dbaccess/inc/strings.hrc:231
msgctxt "STR_TAB_FIELD_COLUMN_DATATYPE"
msgid "Field Type"
msgstr "Kenttätyyppi"
#. LFBuq
-#: dbaccess/inc/strings.hrc:233
+#: dbaccess/inc/strings.hrc:232
msgctxt "STR_TAB_HELP_TEXT"
msgid "Description"
msgstr "Kuvaus"
#. BYE5G
-#: dbaccess/inc/strings.hrc:234
+#: dbaccess/inc/strings.hrc:233
msgctxt "STR_COLUMN_DESCRIPTION"
msgid "Column Description"
msgstr "Sarakkeen kuvaus"
#. Aney5
-#: dbaccess/inc/strings.hrc:235
+#: dbaccess/inc/strings.hrc:234
msgctxt "STR_TAB_PROPERTIES"
msgid "Field Properties"
msgstr "Kentän ominaisuudet"
#. kjdpF
-#: dbaccess/inc/strings.hrc:236
+#: dbaccess/inc/strings.hrc:235
msgctxt "STR_TABED_UNDO_CELLMODIFIED"
msgid "Modify cell"
msgstr "Muuta solua"
#. aPzA3
-#: dbaccess/inc/strings.hrc:237
+#: dbaccess/inc/strings.hrc:236
msgctxt "STR_TABED_UNDO_ROWDELETED"
msgid "Delete row"
msgstr "Poista rivi"
#. DFnqv
-#: dbaccess/inc/strings.hrc:238
+#: dbaccess/inc/strings.hrc:237
msgctxt "STR_TABED_UNDO_TYPE_CHANGED"
msgid "Modify field type"
msgstr "Muuta kenttätyyppiä"
#. XLRpC
-#: dbaccess/inc/strings.hrc:239
+#: dbaccess/inc/strings.hrc:238
msgctxt "STR_TABED_UNDO_ROWINSERTED"
msgid "Insert row"
msgstr "Lisää rivi"
#. LgbwQ
-#: dbaccess/inc/strings.hrc:240
+#: dbaccess/inc/strings.hrc:239
msgctxt "STR_TABED_UNDO_NEWROWINSERTED"
msgid "Insert new row"
msgstr "Lisää uusi rivi"
#. gi8TU
-#: dbaccess/inc/strings.hrc:241
+#: dbaccess/inc/strings.hrc:240
msgctxt "STR_DEFAULT_VALUE"
msgid "~Default value"
msgstr "~Oletusarvo"
#. 3AyBV
-#: dbaccess/inc/strings.hrc:242
+#: dbaccess/inc/strings.hrc:241
msgctxt "STR_HELP_BOOL_DEFAULT"
msgid ""
"Select a value that is to appear in all new records as default.\n"
@@ -1295,7 +1289,7 @@ msgstr ""
"Jos kenttään ei tule oletusarvoa, valitse tyhjä merkkijono."
#. AbZU4
-#: dbaccess/inc/strings.hrc:243
+#: dbaccess/inc/strings.hrc:242
msgctxt "STR_HELP_DEFAULT_VALUE"
msgid ""
"Enter a default value for this field.\n"
@@ -1307,19 +1301,19 @@ msgstr ""
"Tätä merkkijonoa käytetään valitun kentän jokaisessa uudessa tietueessa, kun tietoja syötetään tauluun. Oletusarvon tulee siksi myös vastata solun muotoa, joka määritellään alapuolella."
#. hwwVA
-#: dbaccess/inc/strings.hrc:244
+#: dbaccess/inc/strings.hrc:243
msgctxt "STR_HELP_TEXT_LENGTH"
msgid "Enter the maximum text length permitted."
msgstr "Syötä tekstin sallittu enimmäispituus."
#. yPnZq
-#: dbaccess/inc/strings.hrc:245
+#: dbaccess/inc/strings.hrc:244
msgctxt "STR_HELP_NUMERIC_TYPE"
msgid "Enter the number format."
msgstr "Syötä luvun muoto."
#. 2yCJu
-#: dbaccess/inc/strings.hrc:246
+#: dbaccess/inc/strings.hrc:245
msgctxt "STR_HELP_LENGTH"
msgid ""
"Determine the length data can have in this field.\n"
@@ -1333,25 +1327,25 @@ msgstr ""
"Arvo korjataan määrityksen mukaan, jos se ylittää tietokannan enimmäisarvon."
#. BY4V7
-#: dbaccess/inc/strings.hrc:247
+#: dbaccess/inc/strings.hrc:246
msgctxt "STR_HELP_SCALE"
msgid "Specify the number of decimal places permitted in this field."
msgstr "Määritä sallittujen desimaalien määrä tässä kentässä."
#. QBHjm
-#: dbaccess/inc/strings.hrc:248
+#: dbaccess/inc/strings.hrc:247
msgctxt "STR_HELP_FORMAT_CODE"
msgid "This is where you see how the data would be displayed in the current format (use the button on the right to modify the format)."
msgstr "Tässä näytetään kuinka tiedot näytettäisiin käyttäen nykyistä muotomääritystä (voit muokata muotoa käyttämällä painiketta oikealla)."
#. eV4sD
-#: dbaccess/inc/strings.hrc:249
+#: dbaccess/inc/strings.hrc:248
msgctxt "STR_HELP_FORMAT_BUTTON"
msgid "This is where you determine the output format of the data."
msgstr "Tässä voit määrittää tietojen tulostusmuodon."
#. Y5q39
-#: dbaccess/inc/strings.hrc:250
+#: dbaccess/inc/strings.hrc:249
msgctxt "STR_HELP_AUTOINCREMENT"
msgid ""
"Choose if this field should contain AutoIncrement values.\n"
@@ -1363,49 +1357,49 @@ msgstr ""
"Tämän tyyppisiin kenttiin ei voi syöttää tietoja. Kullekin tietueelle määritetään automaattisesti arvo, joka saadaan kasvattamalla edellisen tietueen arvoa yhdellä."
#. 5uQpF
-#: dbaccess/inc/strings.hrc:251
+#: dbaccess/inc/strings.hrc:250
msgctxt "STR_TABLEDESIGN_DUPLICATE_NAME"
msgid "The table cannot be saved because column name \"$column$\" was assigned twice."
msgstr "Taulua ei voi tallentaa, koska sarakkeen nimi \"$column$\" määritettiin kahdesti."
#. vayRE
-#: dbaccess/inc/strings.hrc:252
+#: dbaccess/inc/strings.hrc:251
msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN"
msgid "The column \"$column$\" belongs to the primary key. If the column is deleted, the primary key will also be deleted. Do you really want to continue?"
msgstr "Sarake \"$column$\" on osa perusavainta. Jos poistat tämän sarakkeen, myös perusavain poistetaan. Haluatko varmasti jatkaa?"
#. fo93e
-#: dbaccess/inc/strings.hrc:253
+#: dbaccess/inc/strings.hrc:252
msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE"
msgid "Primary Key Affected"
msgstr "Vaikutus kohdistunut perusavaimeen"
#. wcLcG
-#: dbaccess/inc/strings.hrc:254
+#: dbaccess/inc/strings.hrc:253
msgctxt "STR_COLUMN_NAME"
msgid "Column"
msgstr "Sarake"
#. ES566
-#: dbaccess/inc/strings.hrc:255
+#: dbaccess/inc/strings.hrc:254
msgctxt "STR_QRY_CONTINUE"
msgid "Continue anyway?"
msgstr "Jatketaanko silti?"
#. iXbw5
-#: dbaccess/inc/strings.hrc:256
+#: dbaccess/inc/strings.hrc:255
msgctxt "STR_TABLEDESIGN_CONNECTION_MISSING"
msgid "The table could not be saved due to problems connecting to the database."
msgstr "Taulua ei voitu tallentaa, koska tietokantaan ei voitu muodostaa yhteyttä."
#. kuExF
-#: dbaccess/inc/strings.hrc:257
+#: dbaccess/inc/strings.hrc:256
msgctxt "STR_TABLEDESIGN_DATASOURCE_DELETED"
msgid "The table filter could not be adjusted because the data source has been deleted."
msgstr "Taulujen suodatusta ei voitu säätää, koska tietolähde on poistettu."
#. Lt4Yc
-#: dbaccess/inc/strings.hrc:258
+#: dbaccess/inc/strings.hrc:257
msgctxt "STR_QUERY_SAVE_TABLE_EDIT_INDEXES"
msgid ""
"Before you can edit the indexes of a table, you have to save it.\n"
@@ -1415,13 +1409,13 @@ msgstr ""
"Tallennetaanko muutokset nyt?"
#. HFLQk
-#: dbaccess/inc/strings.hrc:259
+#: dbaccess/inc/strings.hrc:258
msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY_HEAD"
msgid "No primary key"
msgstr "Ei perusavainta"
#. ir5Du
-#: dbaccess/inc/strings.hrc:260
+#: dbaccess/inc/strings.hrc:259
msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY"
msgid ""
"A unique index or primary key is required for data record identification in this database.\n"
@@ -1435,25 +1429,25 @@ msgstr ""
"Haluatko luoda perusavaimen nyt?"
#. R7KDG
-#: dbaccess/inc/strings.hrc:261
+#: dbaccess/inc/strings.hrc:260
msgctxt "STR_TABLEDESIGN_ALTER_ERROR"
msgid "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
msgstr "Saraketta \"$column$\" ei voitu muuttaa. Poistetaanko sarake ja käytetään uutta muotoa?"
#. U3f4j
-#: dbaccess/inc/strings.hrc:262
+#: dbaccess/inc/strings.hrc:261
msgctxt "STR_TABLEDESIGN_SAVE_ERROR"
msgid "Error while saving the table design"
msgstr "Virhe tallennettaessa taulun rakennetta"
#. 9BsSL
-#: dbaccess/inc/strings.hrc:263
+#: dbaccess/inc/strings.hrc:262
msgctxt "STR_TABLEDESIGN_COULD_NOT_DROP_COL"
msgid "The column $column$ could not be deleted."
msgstr "Saraketta $column$ ei voitu poistaa."
#. Etkrj
-#: dbaccess/inc/strings.hrc:264
+#: dbaccess/inc/strings.hrc:263
msgctxt "STR_HELP_AUTOINCREMENT_VALUE"
msgid ""
"Enter an SQL statement for the auto-increment field.\n"
@@ -1465,7 +1459,7 @@ msgstr ""
"Tämä lause siirretään suoraan tietokantaan kun taulu luodaan."
#. fAEud
-#: dbaccess/inc/strings.hrc:265
+#: dbaccess/inc/strings.hrc:264
msgctxt "STR_NO_TYPE_INFO_AVAILABLE"
msgid ""
"No type information could be retrieved from the database.\n"
@@ -1475,37 +1469,37 @@ msgstr ""
"Taulun suunnittelutila ei ole käytettävissä tälle tietolähteelle."
#. 2s2rr
-#: dbaccess/inc/strings.hrc:266
+#: dbaccess/inc/strings.hrc:265
msgctxt "STR_CHANGE_COLUMN_NAME"
msgid "change field name"
msgstr "vaihda kentän nimeä"
#. PC3QD
-#: dbaccess/inc/strings.hrc:267
+#: dbaccess/inc/strings.hrc:266
msgctxt "STR_CHANGE_COLUMN_TYPE"
msgid "change field type"
msgstr "vaihda kentän tyyppiä"
#. Z2B9o
-#: dbaccess/inc/strings.hrc:268
+#: dbaccess/inc/strings.hrc:267
msgctxt "STR_CHANGE_COLUMN_DESCRIPTION"
msgid "change field description"
msgstr "vaihda kentän kuvausta"
#. aDrTE
-#: dbaccess/inc/strings.hrc:269
+#: dbaccess/inc/strings.hrc:268
msgctxt "STR_CHANGE_COLUMN_ATTRIBUTE"
msgid "change field attribute"
msgstr "vaihda kentän määritteitä"
#. 3srwC
-#: dbaccess/inc/strings.hrc:271
+#: dbaccess/inc/strings.hrc:270
msgctxt "STR_ENTER_CONNECTION_PASSWORD"
msgid "A password is needed to connect to the data source \"$name$\"."
msgstr "Yhteyden muodostamiseen tietolähteeseen \"$name$\" tarvitaan salasana."
#. tYDxc
-#: dbaccess/inc/strings.hrc:272
+#: dbaccess/inc/strings.hrc:271
msgctxt "STR_ASK_FOR_DIRECTORY_CREATION"
msgid ""
"The directory\n"
@@ -1521,49 +1515,49 @@ msgstr ""
"ei ole. Luodaanko hakemisto?"
#. 3PFxY
-#: dbaccess/inc/strings.hrc:273
+#: dbaccess/inc/strings.hrc:272
msgctxt "STR_COULD_NOT_CREATE_DIRECTORY"
msgid "The directory $name$ could not be created."
msgstr "Hakemiston $name$ luominen ei onnistunut."
#. V9kGF
-#: dbaccess/inc/strings.hrc:274
+#: dbaccess/inc/strings.hrc:273
msgctxt "STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Tiedosto on jo olemassa. Korvataanko?"
#. i47ye
-#: dbaccess/inc/strings.hrc:275
+#: dbaccess/inc/strings.hrc:274
msgctxt "STR_NEW_FOLDER"
msgid "Folder"
msgstr "Kansio"
#. U2bRK
-#: dbaccess/inc/strings.hrc:277
+#: dbaccess/inc/strings.hrc:276
msgctxt "STR_DATABASE_TYPE_CHANGE"
msgid "Database properties"
msgstr "Tietokannan ominaisuudet"
#. etNzz
-#: dbaccess/inc/strings.hrc:278
+#: dbaccess/inc/strings.hrc:277
msgctxt "STR_PARENTTITLE_GENERAL"
msgid "Data Source Properties: #"
msgstr "Tietolähteen ominaisuudet: #"
#. z9Ecp
-#: dbaccess/inc/strings.hrc:279
+#: dbaccess/inc/strings.hrc:278
msgctxt "STR_ERR_USE_CONNECT_TO"
msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
msgstr "Valitse 'Muodostetaan yhteys olemassa olevaan tietokantaan' muodostaaksesi yhteyden olemassa olevaan tietokantaan."
#. PfAC6
-#: dbaccess/inc/strings.hrc:280
+#: dbaccess/inc/strings.hrc:279
msgctxt "STR_COULD_NOT_LOAD_ODBC_LIB"
msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
msgstr "Ohjelmakirjaston #lib# lataaminen ei onnistunut tai kirjasto on vioittunut. ODBC-tietolähteet eivät ole käytettävissä."
#. d3vbZ
-#: dbaccess/inc/strings.hrc:281
+#: dbaccess/inc/strings.hrc:280
msgctxt "STR_UNSUPPORTED_DATASOURCE_TYPE"
msgid ""
"This kind of data source is not supported on this platform.\n"
@@ -1573,152 +1567,152 @@ msgstr ""
"Voit muuttaa asetuksia, mutta et todennäköisesti pysty muodostamaan yhteyttä tietokantaan."
#. 2f7Ga
-#: dbaccess/inc/strings.hrc:282
+#: dbaccess/inc/strings.hrc:281
msgctxt "STR_AUTOTEXT_FIELD_SEP_NONE"
msgid "{None}"
msgstr "{None}"
#. iR7CJ
#. To translators: EM Dec 2002: 'Space' refers t o what you get when you hit the space bar on your keyboard.
-#: dbaccess/inc/strings.hrc:284
+#: dbaccess/inc/strings.hrc:283
msgctxt "STR_AUTOFIELDSEPARATORLIST"
msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
msgstr ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
#. DFGo9
-#: dbaccess/inc/strings.hrc:285
+#: dbaccess/inc/strings.hrc:284
msgctxt "STR_AUTODELIMITER_MISSING"
msgid "#1 must be set."
msgstr "#1 on määritettävä."
#. ZDRBf
-#: dbaccess/inc/strings.hrc:286
+#: dbaccess/inc/strings.hrc:285
msgctxt "STR_AUTODELIMITER_MUST_DIFFER"
msgid "#1 and #2 must be different."
msgstr "Arvot #1 ja #2 eivät saa olla identtiset."
#. 9oCZr
-#: dbaccess/inc/strings.hrc:287
+#: dbaccess/inc/strings.hrc:286
msgctxt "STR_AUTONO_WILDCARDS"
msgid "Wildcards such as ?,* are not allowed in #1."
msgstr "Jokerimerkkejä, kuten ? ja *, ei sallita arvossa #1."
#. BdzcB
-#: dbaccess/inc/strings.hrc:289
+#: dbaccess/inc/strings.hrc:288
msgctxt "STR_CONNECTION_TEST"
msgid "Connection Test"
msgstr "Yhteyden testaus"
#. oAAKs
-#: dbaccess/inc/strings.hrc:290
+#: dbaccess/inc/strings.hrc:289
msgctxt "STR_CONNECTION_SUCCESS"
msgid "The connection was established successfully."
msgstr "Yhteys muodostettiin onnistuneesti."
#. 5V7Ay
-#: dbaccess/inc/strings.hrc:291
+#: dbaccess/inc/strings.hrc:290
msgctxt "STR_CONNECTION_NO_SUCCESS"
msgid "The connection could not be established."
msgstr "Yhteyttä ei voitu muodostaa."
#. wvNFP
-#: dbaccess/inc/strings.hrc:292
+#: dbaccess/inc/strings.hrc:291
msgctxt "STR_JDBCDRIVER_SUCCESS"
msgid "The JDBC driver was loaded successfully."
msgstr "JDBC-ajuri ladattiin onnistuneesti."
#. RdMCN
-#: dbaccess/inc/strings.hrc:293
+#: dbaccess/inc/strings.hrc:292
msgctxt "STR_JDBCDRIVER_NO_SUCCESS"
msgid "The JDBC driver could not be loaded."
msgstr "JDBC-ajuria ei voitu ladata."
#. dyCvN
-#: dbaccess/inc/strings.hrc:294
+#: dbaccess/inc/strings.hrc:293
msgctxt "STR_MSACCESS_FILTERNAME"
msgid "MS Access file"
msgstr "MS Access -tiedosto"
#. rDsuu
-#: dbaccess/inc/strings.hrc:295
+#: dbaccess/inc/strings.hrc:294
msgctxt "STR_MSACCESS_2007_FILTERNAME"
msgid "MS Access 2007 file"
msgstr "MS Access 2007 -tiedosto"
#. jFwxU
-#: dbaccess/inc/strings.hrc:296
+#: dbaccess/inc/strings.hrc:295
msgctxt "STR_FIREBIRD_FILTERNAME"
msgid "Firebird Database"
msgstr "Firebird-tietokanta"
#. 8Uiv2
-#: dbaccess/inc/strings.hrc:298
+#: dbaccess/inc/strings.hrc:297
msgctxt "STR_RSC_CHARSETS"
msgid "System"
msgstr "Järjestelmä"
#. pnwDB
-#: dbaccess/inc/strings.hrc:299
+#: dbaccess/inc/strings.hrc:298
msgctxt "STR_ERROR_DURING_CREATION"
msgid "Error during creation"
msgstr "Virhe luonnin aikana"
#. hnyJF
-#: dbaccess/inc/strings.hrc:300
+#: dbaccess/inc/strings.hrc:299
msgctxt "STR_UNEXPECTED_ERROR"
msgid "An error occurred. The operation could not be performed."
msgstr "Tapahtui virhe. Toimintoa ei voitu suorittaa."
#. kXCG9
-#: dbaccess/inc/strings.hrc:301
+#: dbaccess/inc/strings.hrc:300
msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
msgid "The document \"$file$\" could not be opened."
msgstr "Asiakirjan \"$file$\" avaaminen ei onnistunut."
#. bFHHW
-#: dbaccess/inc/strings.hrc:302
+#: dbaccess/inc/strings.hrc:301
msgctxt "STR_MISSING_TABLES_XDROP"
msgid "The table cannot be deleted because the database connection does not support this."
msgstr "Taulua ei voi poistaa, koska tietokantayhteys ei tue poistamista."
#. ZNB5D
-#: dbaccess/inc/strings.hrc:303
+#: dbaccess/inc/strings.hrc:302
msgctxt "STR_BUTTON_TEXT_ALL"
msgid "~All"
msgstr "~Kaikki"
#. C8eBG
-#: dbaccess/inc/strings.hrc:304
+#: dbaccess/inc/strings.hrc:303
msgctxt "STR_UNDO_COLON"
msgid "Undo:"
msgstr "Kumoa:"
#. aje2A
-#: dbaccess/inc/strings.hrc:305
+#: dbaccess/inc/strings.hrc:304
msgctxt "STR_REDO_COLON"
msgid "Redo:"
msgstr "Tee uudelleen:"
#. ixMkj
-#: dbaccess/inc/strings.hrc:306
+#: dbaccess/inc/strings.hrc:305
msgctxt "STR_UNKNOWN_TYPE_FOUND"
msgid "No corresponding column type could be found for column '#1'."
msgstr "Sarakkeelle '#1' ei löytynyt vastaavaa saraketyyppiä."
#. qVax3
-#: dbaccess/inc/strings.hrc:307
+#: dbaccess/inc/strings.hrc:306
msgctxt "STR_FILE_DOES_NOT_EXIST"
msgid "The file \"$file$\" does not exist."
msgstr "Tiedostoa \"$file$\" ei ole olemassa."
#. 737k3
-#: dbaccess/inc/strings.hrc:308
+#: dbaccess/inc/strings.hrc:307
msgctxt "STR_WARNINGS_DURING_CONNECT"
msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
msgstr "Yhteydenoton aikana tietolähteeseen ilmeni varoituksia. Napsauta \"$buttontext$\" nähdäksesi ne."
#. cGJja
-#: dbaccess/inc/strings.hrc:309
+#: dbaccess/inc/strings.hrc:308
msgctxt "STR_NAMED_OBJECT_ALREADY_EXISTS"
msgid ""
"The name '$#$' already exists.\n"
@@ -1729,199 +1723,199 @@ msgstr ""
#. xTNjt
#. #i96130# use hard coded name
-#: dbaccess/inc/strings.hrc:311
+#: dbaccess/inc/strings.hrc:310
msgctxt "RID_STR_EXTENSION_NOT_PRESENT"
msgid "The report, \"$file$\", requires the Report Builder feature."
msgstr "Raportti \"$file$\" vaatii Report Builder -lisäosan."
#. oC8Px
-#: dbaccess/inc/strings.hrc:313
+#: dbaccess/inc/strings.hrc:312
msgctxt "STR_COULDNOTCREATE_DRIVERMANAGER"
msgid "Cannot connect to the SDBC driver manager (#servicename#)."
msgstr "Yhteyden muodostaminen SDBC-ajurien hallintaan ei onnistu (#servicename#)."
#. aym6r
-#: dbaccess/inc/strings.hrc:314
+#: dbaccess/inc/strings.hrc:313
msgctxt "STR_NOREGISTEREDDRIVER"
msgid "A driver is not registered for the URL #connurl#."
msgstr "Ajuria ei ole rekisteröity URL-osoitteelle #connurl#."
#. oafZG
-#: dbaccess/inc/strings.hrc:315
+#: dbaccess/inc/strings.hrc:314
msgctxt "STR_NOTABLEINFO"
msgid "Successfully connected, but information about database tables is not available."
msgstr "Yhteys on muodostettu, mutta tietokannan taulutiedot eivät ole käytettävissä."
#. uBW6C
-#: dbaccess/inc/strings.hrc:316
+#: dbaccess/inc/strings.hrc:315
msgctxt "STR_ALL_TABLES"
msgid "All tables"
msgstr "Kaikki taulut"
#. nhz6M
-#: dbaccess/inc/strings.hrc:317
+#: dbaccess/inc/strings.hrc:316
msgctxt "STR_ALL_VIEWS"
msgid "All views"
msgstr "Kaikki näkymät"
#. APBCw
-#: dbaccess/inc/strings.hrc:318
+#: dbaccess/inc/strings.hrc:317
msgctxt "STR_ALL_TABLES_AND_VIEWS"
msgid "All tables and views"
msgstr "Kaikki taulut ja näkymät"
#. 4SGBJ
-#: dbaccess/inc/strings.hrc:320
+#: dbaccess/inc/strings.hrc:319
msgctxt "STR_TABLE_PRIV_NAME"
msgid "Table name"
msgstr "Taulun nimi"
#. Nw93R
-#: dbaccess/inc/strings.hrc:321
+#: dbaccess/inc/strings.hrc:320
msgctxt "STR_TABLE_PRIV_INSERT"
msgid "Insert data"
msgstr "Lisää tietoja"
#. nLFJd
-#: dbaccess/inc/strings.hrc:322
+#: dbaccess/inc/strings.hrc:321
msgctxt "STR_TABLE_PRIV_DELETE"
msgid "Delete data"
msgstr "Poista tiedot"
#. eGEDE
-#: dbaccess/inc/strings.hrc:323
+#: dbaccess/inc/strings.hrc:322
msgctxt "STR_TABLE_PRIV_UPDATE"
msgid "Modify data"
msgstr "Muuta tietoja"
#. e2bxV
-#: dbaccess/inc/strings.hrc:324
+#: dbaccess/inc/strings.hrc:323
msgctxt "STR_TABLE_PRIV_ALTER"
msgid "Alter structure"
msgstr "Muuta rakennetta"
#. zejFA
-#: dbaccess/inc/strings.hrc:325
+#: dbaccess/inc/strings.hrc:324
msgctxt "STR_TABLE_PRIV_SELECT"
msgid "Read data"
msgstr "Lue tietoja"
#. UsMj8
-#: dbaccess/inc/strings.hrc:326
+#: dbaccess/inc/strings.hrc:325
msgctxt "STR_TABLE_PRIV_REFERENCE"
msgid "Modify references"
msgstr "Muuta viitteitä"
#. SEGp9
-#: dbaccess/inc/strings.hrc:327
+#: dbaccess/inc/strings.hrc:326
msgctxt "STR_TABLE_PRIV_DROP"
msgid "Drop structure"
msgstr "Poista rakenne"
#. BCCiv
-#: dbaccess/inc/strings.hrc:329
+#: dbaccess/inc/strings.hrc:328
msgctxt "STR_DBASE_PATH_OR_FILE"
msgid "Path to the dBASE files"
msgstr "Polku dBASE-tiedostoihin"
#. hnBFY
-#: dbaccess/inc/strings.hrc:330
+#: dbaccess/inc/strings.hrc:329
msgctxt "STR_FLAT_PATH_OR_FILE"
msgid "Path to the text files"
msgstr "Polku tekstitiedostoihin"
#. DRFyX
-#: dbaccess/inc/strings.hrc:331
+#: dbaccess/inc/strings.hrc:330
msgctxt "STR_CALC_PATH_OR_FILE"
msgid "Path to the spreadsheet document"
msgstr "Polku laskentataulukko-asiakirjaan"
#. qxbA7
-#: dbaccess/inc/strings.hrc:332
+#: dbaccess/inc/strings.hrc:331
msgctxt "STR_NAME_OF_ODBC_DATASOURCE"
msgid "Name of the ODBC data source on your system"
msgstr "ODBC -tietolähteen nimi järjestelmässäsi"
#. mGJE9
-#: dbaccess/inc/strings.hrc:333
+#: dbaccess/inc/strings.hrc:332
msgctxt "STR_WRITER_PATH_OR_FILE"
msgid "Path to the Writer document"
msgstr "Polku Writer-asiakirjaan"
#. zQxCp
-#: dbaccess/inc/strings.hrc:334
+#: dbaccess/inc/strings.hrc:333
msgctxt "STR_MYSQL_DATABASE_NAME"
msgid "Name of the MySQL database"
msgstr "MySQL -tietokannan nimi"
#. uhRMQ
-#: dbaccess/inc/strings.hrc:335
+#: dbaccess/inc/strings.hrc:334
msgctxt "STR_ORACLE_DATABASE_NAME"
msgid "Name of the Oracle database"
msgstr "Oracle -tietokannan nimi"
#. nmoae
-#: dbaccess/inc/strings.hrc:336
+#: dbaccess/inc/strings.hrc:335
msgctxt "STR_MSACCESS_MDB_FILE"
msgid "Microsoft Access database file"
msgstr "Microsoft Access -tietokantatiedosto"
#. 34zwh
-#: dbaccess/inc/strings.hrc:337
+#: dbaccess/inc/strings.hrc:336
msgctxt "STR_NO_ADDITIONAL_SETTINGS"
msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
msgstr "Enempää asetuksia ei tarvita. Napsauta '%test' -painiketta varmistaaksesi yhteyden toiminnan."
#. GAVfb
-#: dbaccess/inc/strings.hrc:338
+#: dbaccess/inc/strings.hrc:337
msgctxt "STR_COMMONURL"
msgid "Datasource URL (e.g. host=$host:$port dbname=$database)"
msgstr "Tietolähteen URL (esim. host=$host:$port dbname=$database)"
#. rKH3t
-#: dbaccess/inc/strings.hrc:339
+#: dbaccess/inc/strings.hrc:338
msgctxt "STR_HOSTNAME"
msgid "~Host name"
msgstr "Palvelimen ~nimi"
#. Gdbjz
-#: dbaccess/inc/strings.hrc:340
+#: dbaccess/inc/strings.hrc:339
msgctxt "STR_MOZILLA_PROFILE_NAME"
msgid "~Mozilla profile name"
msgstr "~Mozillan profiilin nimi"
#. A6YJb
-#: dbaccess/inc/strings.hrc:341
+#: dbaccess/inc/strings.hrc:340
msgctxt "STR_THUNDERBIRD_PROFILE_NAME"
msgid "~Thunderbird profile name"
msgstr "~Thunderbirdin profiilin nimi"
#. HnmRA
-#: dbaccess/inc/strings.hrc:342
+#: dbaccess/inc/strings.hrc:341
msgctxt "STR_ADD_TABLES"
msgid "Add Tables"
msgstr "Lisää tauluja"
#. eHahH
-#: dbaccess/inc/strings.hrc:343
+#: dbaccess/inc/strings.hrc:342
msgctxt "STR_ADD_TABLE_OR_QUERY"
msgid "Add Table or Query"
msgstr "Lisää taulu tai kysely"
#. 5dqK5
-#: dbaccess/inc/strings.hrc:345
+#: dbaccess/inc/strings.hrc:344
msgctxt "STR_WIZ_COLUMN_SELECT_TITEL"
msgid "Apply columns"
msgstr "Käytä sarakkeita"
#. nZ7x6
-#: dbaccess/inc/strings.hrc:346
+#: dbaccess/inc/strings.hrc:345
msgctxt "STR_WIZ_TYPE_SELECT_TITEL"
msgid "Type formatting"
msgstr "Tyypin muotoilu"
#. C5Zs4
-#: dbaccess/inc/strings.hrc:347
+#: dbaccess/inc/strings.hrc:346
msgctxt "STR_WIZ_NAME_ALREADY_DEFINED"
msgid ""
"Enter a unique name for the new primary key data field.\n"
@@ -1931,163 +1925,163 @@ msgstr ""
"Seuraava nimi on jo käytössä:"
#. MuQ2C
-#: dbaccess/inc/strings.hrc:348
+#: dbaccess/inc/strings.hrc:347
msgctxt "STR_WIZ_NAME_MATCHING_TITEL"
msgid "Assign columns"
msgstr "Sido sarakkeet"
#. 5vCFA
-#: dbaccess/inc/strings.hrc:349
+#: dbaccess/inc/strings.hrc:348
msgctxt "STR_WIZ_PB_PREV"
msgid "< ~Back"
msgstr "< ~Edellinen"
#. aWFVD
-#: dbaccess/inc/strings.hrc:350
+#: dbaccess/inc/strings.hrc:349
msgctxt "STR_WIZ_PB_NEXT"
msgid "~Next>"
msgstr "~Seuraava>"
#. aKHUX
-#: dbaccess/inc/strings.hrc:351
+#: dbaccess/inc/strings.hrc:350
msgctxt "STR_WIZ_PB_OK"
msgid "C~reate"
msgstr "~Luo"
#. 3XyRu
-#: dbaccess/inc/strings.hrc:352
+#: dbaccess/inc/strings.hrc:351
msgctxt "STR_WIZ_TABLE_COPY"
msgid "Copy table"
msgstr "Kopioi taulu"
#. uNGvx
-#: dbaccess/inc/strings.hrc:353
+#: dbaccess/inc/strings.hrc:352
msgctxt "STR_COPYTABLE_TITLE_COPY"
msgid "Copy table"
msgstr "Kopioi taulu"
#. xCPkD
-#: dbaccess/inc/strings.hrc:354
+#: dbaccess/inc/strings.hrc:353
msgctxt "STR_INVALID_TABLE_NAME"
msgid "This table name is not valid in the current database."
msgstr "Tämä taulun nimi ei ole kelvollinen nykyisessä tietokannassa."
#. m35Lx
-#: dbaccess/inc/strings.hrc:355
+#: dbaccess/inc/strings.hrc:354
msgctxt "STR_SUGGEST_APPEND_TABLE_DATA"
msgid "Choose the option 'Append data' on the first page to append data to an existing table."
msgstr "Tee valinta 'Lisää tiedot' ensimmäisellä sivulla lisätäksesi tiedot olemassa olevaan tauluun."
#. XbmVN
-#: dbaccess/inc/strings.hrc:356
+#: dbaccess/inc/strings.hrc:355
msgctxt "STR_INVALID_TABLE_NAME_LENGTH"
msgid "Please change the table name. It is too long."
msgstr "Muuta taulun nimi. Se on liian pitkä."
#. 55EA7
-#: dbaccess/inc/strings.hrc:358
+#: dbaccess/inc/strings.hrc:357
msgctxt "STR_DBWIZARDTITLE"
msgid "Database Wizard"
msgstr "Ohjattu tietokantamääritys"
#. p4Yy4
-#: dbaccess/inc/strings.hrc:359
+#: dbaccess/inc/strings.hrc:358
msgctxt "STR_PAGETITLE_INTROPAGE"
msgid "Select database"
msgstr "Valitse tietokanta"
#. GTpDz
-#: dbaccess/inc/strings.hrc:360
+#: dbaccess/inc/strings.hrc:359
msgctxt "STR_PAGETITLE_DBASE"
msgid "Set up dBASE connection"
msgstr "Määritä dBASE-yhteys"
#. VBaQN
-#: dbaccess/inc/strings.hrc:361
+#: dbaccess/inc/strings.hrc:360
msgctxt "STR_PAGETITLE_TEXT"
msgid "Set up a connection to text files"
msgstr "Määritä yhteys tekstitiedostoihin"
#. TiBeQ
-#: dbaccess/inc/strings.hrc:362
+#: dbaccess/inc/strings.hrc:361
msgctxt "STR_PAGETITLE_MSACCESS"
msgid "Set up Microsoft Access connection"
msgstr "Määritä Microsoft Access -yhteys"
#. XaDDh
-#: dbaccess/inc/strings.hrc:363
+#: dbaccess/inc/strings.hrc:362
msgctxt "STR_PAGETITLE_LDAP"
msgid "Set up LDAP connection"
msgstr "Määritä LDAP-yhteys"
#. WZtzU
-#: dbaccess/inc/strings.hrc:364
+#: dbaccess/inc/strings.hrc:363
msgctxt "STR_PAGETITLE_ADO"
msgid "Set up ADO connection"
msgstr "Määritä ADO-yhteys"
#. n3HgX
-#: dbaccess/inc/strings.hrc:365
+#: dbaccess/inc/strings.hrc:364
msgctxt "STR_PAGETITLE_JDBC"
msgid "Set up JDBC connection"
msgstr "Määritä JDBC-yhteys"
#. qiZT5
-#: dbaccess/inc/strings.hrc:366
+#: dbaccess/inc/strings.hrc:365
msgctxt "STR_PAGETITLE_ORACLE"
msgid "Set up Oracle database connection"
msgstr "Määritä Oracle-tietokantayhteys"
#. KbAqW
-#: dbaccess/inc/strings.hrc:367
+#: dbaccess/inc/strings.hrc:366
msgctxt "STR_PAGETITLE_MYSQL"
msgid "Set up MySQL connection"
msgstr "Määritä MySQL-yhteys"
#. uJuNs
-#: dbaccess/inc/strings.hrc:368
+#: dbaccess/inc/strings.hrc:367
msgctxt "STR_PAGETITLE_ODBC"
msgid "Set up ODBC connection"
msgstr "Määritä ODBC-yhteys"
#. ecB4x
-#: dbaccess/inc/strings.hrc:369
+#: dbaccess/inc/strings.hrc:368
msgctxt "STR_PAGETITLE_DOCUMENT_OR_SPREADSHEET"
msgid "Set up Writer Document or Spreadsheet connection"
msgstr "Määritä yhteys Writer-asiakirjaan tai laskentataulukkoon"
#. wUEMA
-#: dbaccess/inc/strings.hrc:370
+#: dbaccess/inc/strings.hrc:369
msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
msgid "Set up user authentication"
msgstr "Määritä käyttäjän tunnistaminen"
#. YgsyA
-#: dbaccess/inc/strings.hrc:371
+#: dbaccess/inc/strings.hrc:370
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
msgid "Set up MySQL server data"
msgstr "Määritä MySQL-palvelimen asetukset"
#. 6Fy7C
-#: dbaccess/inc/strings.hrc:372
+#: dbaccess/inc/strings.hrc:371
msgctxt "STR_PAGETITLE_FINAL"
msgid "Save and proceed"
msgstr "Tallenna ja etene"
#. LhDjK
-#: dbaccess/inc/strings.hrc:373
+#: dbaccess/inc/strings.hrc:372
msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
msgstr "Uusi tietokanta"
#. DoGLb
-#: dbaccess/inc/strings.hrc:374
+#: dbaccess/inc/strings.hrc:373
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
msgid "Set up connection to a MySQL database using JDBC"
msgstr "Määritä yhteys MySQL-tietokantaan käyttämällä JDBC:tä"
#. B5kEC
-#: dbaccess/inc/strings.hrc:375
+#: dbaccess/inc/strings.hrc:374
msgctxt "STR_MYSQLJDBC_HELPTEXT"
msgid ""
"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
@@ -2097,67 +2091,67 @@ msgstr ""
"Ota yhteyttä järjestelmänvalvojaan, jos et ole varma seuraavista asetuksista."
#. uGTyY
-#: dbaccess/inc/strings.hrc:376
+#: dbaccess/inc/strings.hrc:375
msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
msgid "MySQL JDBC d~river class:"
msgstr "MySQL JDBC -ajuri~luokka:"
#. cBiSe
-#: dbaccess/inc/strings.hrc:377
+#: dbaccess/inc/strings.hrc:376
msgctxt "STR_MYSQL_DEFAULT"
msgid "Default: 3306"
msgstr "Oletus: 3306"
#. zDx7G
-#: dbaccess/inc/strings.hrc:378
+#: dbaccess/inc/strings.hrc:377
msgctxt "STR_DBASE_HEADERTEXT"
msgid "Set up a connection to dBASE files"
msgstr "Määritä yhteys dBASE-tiedostoihin"
#. MXTEF
-#: dbaccess/inc/strings.hrc:379
+#: dbaccess/inc/strings.hrc:378
msgctxt "STR_DBASE_HELPTEXT"
msgid "Select the folder where the dBASE files are stored."
msgstr "Valitse kansio, minne dBASE-tiedostot on tallennettu."
#. Ke4xP
-#: dbaccess/inc/strings.hrc:380
+#: dbaccess/inc/strings.hrc:379
msgctxt "STR_TEXT_HEADERTEXT"
msgid "Set up a connection to text files"
msgstr "Määritä yhteys tekstitiedostoihin"
#. uJFWa
-#: dbaccess/inc/strings.hrc:381
+#: dbaccess/inc/strings.hrc:380
msgctxt "STR_TEXT_HELPTEXT"
msgid "Select the folder where the CSV (Comma Separated Values) text files are stored. %PRODUCTNAME Base will open these files in read-only mode."
msgstr "Valitse kansio, johon CSV (pilkuin erotetut arvot) -tekstitiedostot on tallennettu. %PRODUCTNAME Base avaa nämä tiedostot kirjoitussuojattuna."
#. chkNh
-#: dbaccess/inc/strings.hrc:382
+#: dbaccess/inc/strings.hrc:381
msgctxt "STR_TEXT_PATH_OR_FILE"
msgid "Path to text files"
msgstr "Tekstitiedostojen polku"
#. VXUEj
-#: dbaccess/inc/strings.hrc:383
+#: dbaccess/inc/strings.hrc:382
msgctxt "STR_MSACCESS_HEADERTEXT"
msgid "Set up a connection to a Microsoft Access database"
msgstr "Määritä yhteys Microsoft Access -tietokantaan"
#. rTF65
-#: dbaccess/inc/strings.hrc:384
+#: dbaccess/inc/strings.hrc:383
msgctxt "STR_MSACCESS_HELPTEXT"
msgid "Please select the Microsoft Access file you want to access."
msgstr "Valitse Microsoft Access -tiedosto, jota haluat käyttää."
#. DYcM8
-#: dbaccess/inc/strings.hrc:385
+#: dbaccess/inc/strings.hrc:384
msgctxt "STR_ADO_HEADERTEXT"
msgid "Set up a connection to an ADO database"
msgstr "Määritä yhteys ADO-tietokantaan"
#. WzZiB
-#: dbaccess/inc/strings.hrc:386
+#: dbaccess/inc/strings.hrc:385
msgctxt "STR_ADO_HELPTEXT"
msgid ""
"Please enter the URL of the ADO data source you want to connect to.\n"
@@ -2169,13 +2163,13 @@ msgstr ""
"Ota yhteyttä järjestelmänvalvojaan, jos et ole varma seuraavista asetuksista."
#. PRyfo
-#: dbaccess/inc/strings.hrc:387
+#: dbaccess/inc/strings.hrc:386
msgctxt "STR_ODBC_HEADERTEXT"
msgid "Set up a connection to an ODBC database"
msgstr "Määritä yhteys ODBC-tietokantaan"
#. CBVtz
-#: dbaccess/inc/strings.hrc:388
+#: dbaccess/inc/strings.hrc:387
msgctxt "STR_ODBC_HELPTEXT"
msgid ""
"Enter the name of the ODBC database you want to connect to.\n"
@@ -2187,13 +2181,13 @@ msgstr ""
"Ota yhteyttä järjestelmän ylläpitäjään, jos et ole varma seuraavista asetuksista."
#. dmi7n
-#: dbaccess/inc/strings.hrc:389
+#: dbaccess/inc/strings.hrc:388
msgctxt "STR_JDBC_HEADERTEXT"
msgid "Set up a connection to a JDBC database"
msgstr "Määritä yhteys JDBC-tietokantaan"
#. dYGeU
-#: dbaccess/inc/strings.hrc:390
+#: dbaccess/inc/strings.hrc:389
msgctxt "STR_JDBC_HELPTEXT"
msgid ""
"Please enter the required information to connect to a JDBC database.\n"
@@ -2203,25 +2197,25 @@ msgstr ""
"Ota yhteyttä järjestelmänvalvojaan, jos et ole varma seuraavista asetuksista."
#. DWgup
-#: dbaccess/inc/strings.hrc:391
+#: dbaccess/inc/strings.hrc:390
msgctxt "STR_ORACLE_HEADERTEXT"
msgid "Set up a connection to an Oracle database"
msgstr "Määritä yhteys Oracle-tietokantaan"
#. Z57ca
-#: dbaccess/inc/strings.hrc:392
+#: dbaccess/inc/strings.hrc:391
msgctxt "STR_ORACLE_DEFAULT"
msgid "Default: 1521"
msgstr "Oletus: 1521"
#. dnAP9
-#: dbaccess/inc/strings.hrc:393
+#: dbaccess/inc/strings.hrc:392
msgctxt "STR_ORACLE_DRIVERCLASSTEXT"
msgid "Oracle JDBC ~driver class"
msgstr "Oracle JDBC -ajuri~luokka"
#. aD8dK
-#: dbaccess/inc/strings.hrc:394
+#: dbaccess/inc/strings.hrc:393
msgctxt "STR_ORACLE_HELPTEXT"
msgid ""
"Please enter the required information to connect to an Oracle database. Note that a JDBC Driver Class must be installed on your system and registered with %PRODUCTNAME.\n"
@@ -2231,13 +2225,13 @@ msgstr ""
"Ota yhteyttä järjestelmän ylläpitäjään, jos et ole varma seuraavista asetuksista."
#. Vqjfj
-#: dbaccess/inc/strings.hrc:395
+#: dbaccess/inc/strings.hrc:394
msgctxt "STR_SPREADSHEET_HEADERTEXT"
msgid "Set up a connection to spreadsheets"
msgstr "Määritä yhteys laskentataulukoihin"
#. FnpBr
-#: dbaccess/inc/strings.hrc:396
+#: dbaccess/inc/strings.hrc:395
msgctxt "STR_SPREADSHEET_HELPTEXT"
msgid ""
"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
@@ -2247,277 +2241,277 @@ msgstr ""
"%PRODUCTNAME avaa tämän tiedoston kirjoitussuojattuna."
#. fxmJG
-#: dbaccess/inc/strings.hrc:397
+#: dbaccess/inc/strings.hrc:396
msgctxt "STR_SPREADSHEETPATH"
msgid "~Location and file name"
msgstr "Si~jainti ja tiedostonnimi"
#. og5kg
-#: dbaccess/inc/strings.hrc:399
+#: dbaccess/inc/strings.hrc:398
msgctxt "STR_COMMAND_EXECUTED_SUCCESSFULLY"
msgid "Command successfully executed."
msgstr "Käskyn suoritus onnistui."
#. BhFXv
-#: dbaccess/inc/strings.hrc:400
+#: dbaccess/inc/strings.hrc:399
msgctxt "STR_DIRECTSQL_CONNECTIONLOST"
msgid "The connection to the database has been lost. This dialog will be closed."
msgstr "Tietokantayhteys katkesi. Tämä valintaikkuna suljetaan."
#. WTysM
-#: dbaccess/inc/strings.hrc:402
+#: dbaccess/inc/strings.hrc:401
msgctxt "STR_TAB_INDEX_SORTORDER"
msgid "Sort order"
msgstr "Lajittelujärjestys"
#. 67TCR
-#: dbaccess/inc/strings.hrc:403
+#: dbaccess/inc/strings.hrc:402
msgctxt "STR_TAB_INDEX_FIELD"
msgid "Index field"
msgstr "Indeksikenttä"
#. rCZbG
-#: dbaccess/inc/strings.hrc:404
+#: dbaccess/inc/strings.hrc:403
msgctxt "STR_ORDER_ASCENDING"
msgid "Ascending"
msgstr "Nouseva"
#. zUeEN
-#: dbaccess/inc/strings.hrc:405
+#: dbaccess/inc/strings.hrc:404
msgctxt "STR_ORDER_DESCENDING"
msgid "Descending"
msgstr "Laskeva"
#. DpB67
-#: dbaccess/inc/strings.hrc:406
+#: dbaccess/inc/strings.hrc:405
msgctxt "STR_CONFIRM_DROP_INDEX"
msgid "Do you really want to delete the index '$name$'?"
msgstr "Haluatko varmasti poistaa indeksin '$name$'?"
#. 3sTLe
-#: dbaccess/inc/strings.hrc:407
+#: dbaccess/inc/strings.hrc:406
msgctxt "STR_LOGICAL_INDEX_NAME"
msgid "index"
msgstr "indeksi"
#. HFaXn
-#: dbaccess/inc/strings.hrc:408
+#: dbaccess/inc/strings.hrc:407
msgctxt "STR_NEED_INDEX_FIELDS"
msgid "The index must contain at least one field."
msgstr "Indeksissä on oltava vähintään yksi kenttä."
#. LRDDD
-#: dbaccess/inc/strings.hrc:409
+#: dbaccess/inc/strings.hrc:408
msgctxt "STR_INDEX_NAME_ALREADY_USED"
msgid "There is already another index named \"$name$\"."
msgstr "Indeksi nimeltään \"$name$\" on jo olemassa."
#. 9C3mx
-#: dbaccess/inc/strings.hrc:410
+#: dbaccess/inc/strings.hrc:409
msgctxt "STR_INDEXDESIGN_DOUBLE_COLUMN_NAME"
msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
msgstr "Taulun sarakkeet voivat esiintyä vain kertaalleen indeksin määrityksissä. Olet kuitenkin syöttänyt sarakkeen \"$name$\" kahdesti."
#. XANpc
-#: dbaccess/inc/strings.hrc:412
+#: dbaccess/inc/strings.hrc:411
msgctxt "STR_COULD_NOT_CONVERT_PARAM"
msgid "The entry could not be converted to a valid value for the \"$name$\" parameter"
msgstr "Merkintää ei voitu muuttaa parametrin \"$name$\" kelvolliseksi arvoksi"
#. FCnE3
-#: dbaccess/inc/strings.hrc:414
+#: dbaccess/inc/strings.hrc:413
msgctxt "STR_EXCEPTION_STATUS"
msgid "SQL Status"
msgstr "SQL-tila"
#. ha64T
-#: dbaccess/inc/strings.hrc:415
+#: dbaccess/inc/strings.hrc:414
msgctxt "STR_EXCEPTION_ERRORCODE"
msgid "Error code"
msgstr "Virhekoodi"
#. 9A2cX
-#: dbaccess/inc/strings.hrc:416
+#: dbaccess/inc/strings.hrc:415
msgctxt "STR_EXPLAN_STRINGCONVERSION_ERROR"
msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."
msgstr "Yleinen syy tälle virheelle on tietokannassa käytetylle kielelle soveltumaton merkistöasetus. Tarkista asetus valitsemalla Muokkaa - Tietokanta - Ominaisuudet."
#. itnjJ
-#: dbaccess/inc/strings.hrc:417
+#: dbaccess/inc/strings.hrc:416
msgctxt "STR_EXCEPTION_ERROR"
msgid "Error"
msgstr "Virhe"
#. Q4A2Y
-#: dbaccess/inc/strings.hrc:418
+#: dbaccess/inc/strings.hrc:417
msgctxt "STR_EXCEPTION_WARNING"
msgid "Warning"
msgstr "Varoitus"
#. LSBpE
-#: dbaccess/inc/strings.hrc:419
+#: dbaccess/inc/strings.hrc:418
msgctxt "STR_EXCEPTION_INFO"
msgid "Information"
msgstr "Tiedot"
#. DKRwR
-#: dbaccess/inc/strings.hrc:420
+#: dbaccess/inc/strings.hrc:419
msgctxt "STR_EXCEPTION_DETAILS"
msgid "Details"
msgstr "Tiedot"
#. Avmtu
-#: dbaccess/inc/strings.hrc:422
+#: dbaccess/inc/strings.hrc:421
msgctxt "STR_QUERY_USERADMIN_DELETE_USER"
msgid "Do you really want to delete the user?"
msgstr "Haluatko varmasti poistaa käyttäjän?"
#. yeKZF
-#: dbaccess/inc/strings.hrc:423
+#: dbaccess/inc/strings.hrc:422
msgctxt "STR_USERADMIN_NOT_AVAILABLE"
msgid "The database does not support user administration."
msgstr "Tietokanta ei tue käyttäjän hallintaa."
#. 4CVtX
-#: dbaccess/inc/strings.hrc:424
+#: dbaccess/inc/strings.hrc:423
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The passwords do not match. Please enter the password again."
msgstr "Salasanat eivät ole identtiset. Anna salasana uudestaan."
#. iu64w
-#: dbaccess/inc/strings.hrc:426
+#: dbaccess/inc/strings.hrc:425
msgctxt "STR_JOIN_TYPE_HINT"
msgid "Please note that some databases may not support this join type."
msgstr "Huomioi, että kaikki tietokannat eivät välttämättä tue tätä liitostyyppiä."
#. Khmn9
-#: dbaccess/inc/strings.hrc:427
+#: dbaccess/inc/strings.hrc:426
msgctxt "STR_QUERY_INNER_JOIN"
msgid "Includes only records for which the contents of the related fields of both tables are identical."
msgstr "Sisältää vain tietueet, joissa toisiinsa liittyvät kentät ovat identtiset molemmissa tauluissa."
#. JUyyK
-#: dbaccess/inc/strings.hrc:428
+#: dbaccess/inc/strings.hrc:427
msgctxt "STR_QUERY_LEFTRIGHT_JOIN"
msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
msgstr "Sisältää KAIKKI taulun '%1' tietueet, mutta vain sellaiset taulun '%2' tietueet, joissa ensimmäiseen tauluun liittyvien kenttien arvot ovat identtiset."
#. EdhCU
-#: dbaccess/inc/strings.hrc:429
+#: dbaccess/inc/strings.hrc:428
msgctxt "STR_QUERY_FULL_JOIN"
msgid "Contains ALL records from '%1' and from '%2'."
msgstr "Sisältää KAIKKI tietueet kohteista '%1' ja '%2'."
#. c9PsZ
-#: dbaccess/inc/strings.hrc:430
+#: dbaccess/inc/strings.hrc:429
msgctxt "STR_QUERY_CROSS_JOIN"
msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'."
msgstr "Sisältää karteesisen tulon kaikista taulujen '%1' ja '%2' tietueista."
#. KyLuN
-#: dbaccess/inc/strings.hrc:432
+#: dbaccess/inc/strings.hrc:431
msgctxt "STR_CTW_NO_VIEWS_SUPPORT"
msgid "The destination database does not support views."
msgstr "Kohdetietokanta ei tue näkymiä."
#. RaJQd
-#: dbaccess/inc/strings.hrc:433
+#: dbaccess/inc/strings.hrc:432
msgctxt "STR_CTW_NO_PRIMARY_KEY_SUPPORT"
msgid "The destination database does not support primary keys."
msgstr "Kohdetietokanta ei tue perusavaimia."
#. JBBmY
-#: dbaccess/inc/strings.hrc:434
+#: dbaccess/inc/strings.hrc:433
msgctxt "STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR"
msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
msgstr "riittävät tiedot sisältävää tietokantayhteyden alustusmäärittelyä ei löytynyt"
#. Z4JFe
-#: dbaccess/inc/strings.hrc:435
+#: dbaccess/inc/strings.hrc:434
msgctxt "STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT"
msgid "Only tables and queries are supported at the moment."
msgstr "Toistaiseksi vain taulujen ja kyselyiden käyttö on mahdollista."
#. KvUFb
-#: dbaccess/inc/strings.hrc:436
+#: dbaccess/inc/strings.hrc:435
msgctxt "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS"
msgid "The copy source's result set must support bookmarks."
msgstr "Kopion lähteen tulosjoukon on tuettava kirjanmerkkejä."
#. XVb6E
-#: dbaccess/inc/strings.hrc:437
+#: dbaccess/inc/strings.hrc:436
msgctxt "STR_CTW_UNSUPPORTED_COLUMN_TYPE"
msgid "Unsupported source column type ($type$) at column position $pos$."
msgstr "Sarakkeen $pos$ lähdesarakkeen tyyppiä ($type$) ei tueta."
#. 7pnvE
-#: dbaccess/inc/strings.hrc:438
+#: dbaccess/inc/strings.hrc:437
msgctxt "STR_CTW_ILLEGAL_PARAMETER_COUNT"
msgid "Illegal number of initialization parameters."
msgstr "Virheellinen määrä alustusparametreja."
#. z3h9J
-#: dbaccess/inc/strings.hrc:439
+#: dbaccess/inc/strings.hrc:438
msgctxt "STR_CTW_ERROR_DURING_INITIALIZATION"
msgid "An error occurred during initialization."
msgstr "Alustuksessa tapahtui virhe."
#. Qpda7
-#: dbaccess/inc/strings.hrc:440
+#: dbaccess/inc/strings.hrc:439
msgctxt "STR_CTW_ERROR_UNSUPPORTED_SETTING"
msgid "Unsupported setting in the copy source descriptor: $name$."
msgstr "Kopioinnin lähteessä on tuntematon asetus $name$."
#. BsP8j
-#: dbaccess/inc/strings.hrc:441
+#: dbaccess/inc/strings.hrc:440
msgctxt "STR_CTW_ERROR_NO_QUERY"
msgid "To copy a query, your connection must be able to provide queries."
msgstr "Kyselyjä voi kopioida vain, jos tietokantayhteys tukee niitä."
#. QYh2y
-#: dbaccess/inc/strings.hrc:442
+#: dbaccess/inc/strings.hrc:441
msgctxt "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER"
msgid "The given interaction handler is invalid."
msgstr "Annettu toimenpiteen suorittava objekti on virheellinen."
#. ixrDD
-#: dbaccess/inc/strings.hrc:444
+#: dbaccess/inc/strings.hrc:443
msgctxt "STR_QUERY_REL_EDIT_RELATION"
msgid "This relation already exists. Do you want to edit it or create a new one?"
msgstr "Relaatio on jo olemassa. Haluatko muokata sitä vai luoda uuden?"
#. nFRsS
-#: dbaccess/inc/strings.hrc:445
+#: dbaccess/inc/strings.hrc:444
msgctxt "STR_QUERY_REL_EDIT"
msgid "Edit..."
msgstr "Muokkaa..."
#. yRkFG
-#: dbaccess/inc/strings.hrc:446
+#: dbaccess/inc/strings.hrc:445
msgctxt "STR_QUERY_REL_CREATE"
msgid "Create..."
msgstr "Luo uusi..."
#. VWBJF
-#: dbaccess/inc/strings.hrc:447
+#: dbaccess/inc/strings.hrc:446
msgctxt "STR_RELATIONDESIGN"
msgid " - %PRODUCTNAME Base: Relation design"
msgstr " - %PRODUCTNAME Base: Yhteyksien suunnittelu"
#. ZCd5X
-#: dbaccess/inc/strings.hrc:448
+#: dbaccess/inc/strings.hrc:447
msgctxt "STR_RELATIONDESIGN_NOT_AVAILABLE"
msgid "The database does not support relations."
msgstr "Tietokanta ei tue yhteyksiä."
#. CG2Pd
-#: dbaccess/inc/strings.hrc:449
+#: dbaccess/inc/strings.hrc:448
msgctxt "STR_QUERY_REL_DELETE_WINDOW"
msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
msgstr "Kun poistat tämän taulun, kaikki siihen liittyvät relaatiot poistetaan myös. Jatketaanko?"
#. Wzf9T
-#: dbaccess/inc/strings.hrc:450
+#: dbaccess/inc/strings.hrc:449
msgctxt "STR_QUERY_REL_COULD_NOT_CREATE"
msgid ""
"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
@@ -2526,6 +2520,78 @@ msgstr ""
"Relaation luominen tietokantaan ei onnistunut. Mahdollisesti tämän tyyppisille tauluille ei voi tehdä viiteavaimia.\n"
"Tarkista asia tietokantaohjelmistosi ohjeista."
+#. Fsz7D
+#: dbaccess/inc/templwin.hrc:41
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Title"
+msgstr ""
+
+#. zo57j
+#: dbaccess/inc/templwin.hrc:42
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "By"
+msgstr ""
+
+#. Zh8Ni
+#: dbaccess/inc/templwin.hrc:43
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Date"
+msgstr ""
+
+#. eHFA4
+#: dbaccess/inc/templwin.hrc:44
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Keywords"
+msgstr ""
+
+#. eYGnQ
+#: dbaccess/inc/templwin.hrc:45
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Description"
+msgstr ""
+
+#. Eg2eG
+#: dbaccess/inc/templwin.hrc:46
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Type"
+msgstr ""
+
+#. hokZy
+#: dbaccess/inc/templwin.hrc:47
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Modified on"
+msgstr ""
+
+#. XMEJb
+#: dbaccess/inc/templwin.hrc:48
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Modified by"
+msgstr ""
+
+#. MWkd5
+#: dbaccess/inc/templwin.hrc:49
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Printed on"
+msgstr ""
+
+#. BBEEC
+#: dbaccess/inc/templwin.hrc:50
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Printed by"
+msgstr ""
+
+#. VCGe3
+#: dbaccess/inc/templwin.hrc:51
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Subject"
+msgstr ""
+
+#. HVYdE
+#: dbaccess/inc/templwin.hrc:52
+msgctxt "STRARY_SVT_DOCINFO"
+msgid "Size"
+msgstr ""
+
#. 4KVZn
#: dbaccess/uiconfig/ui/admindialog.ui:8
msgctxt "admindialog|AdminDialog"
@@ -2635,25 +2701,25 @@ msgid "_Save"
msgstr "Tallenna"
#. mvCb2
-#: dbaccess/uiconfig/ui/collectionviewdialog.ui:140
+#: dbaccess/uiconfig/ui/collectionviewdialog.ui:138
msgctxt "collectionviewdialog|newFolderButton|tooltip_text"
msgid "Create New Directory"
msgstr "Luo uusi hakemisto"
#. Bwm2H
-#: dbaccess/uiconfig/ui/collectionviewdialog.ui:157
+#: dbaccess/uiconfig/ui/collectionviewdialog.ui:154
msgctxt "collectionviewdialog|upButton|tooltip_text"
msgid "Up One Level"
msgstr "Tasoa ylemmäs"
#. rSTnu
-#: dbaccess/uiconfig/ui/collectionviewdialog.ui:196
+#: dbaccess/uiconfig/ui/collectionviewdialog.ui:193
msgctxt "collectionviewdialog|columntitle"
msgid "Folder Name"
msgstr "Kansion nimi"
#. G5Eev
-#: dbaccess/uiconfig/ui/collectionviewdialog.ui:224
+#: dbaccess/uiconfig/ui/collectionviewdialog.ui:221
msgctxt "collectionviewdialog|fileNameLabel"
msgid "File _name:"
msgstr "Tiedoston nimi:"
@@ -2665,17 +2731,35 @@ msgid "Column Width"
msgstr "Sarakkeen leveys"
#. AiEUA
-#: dbaccess/uiconfig/ui/colwidthdialog.ui:99
+#: dbaccess/uiconfig/ui/colwidthdialog.ui:96
msgctxt "colwidthdialog|label1"
msgid "_Width:"
msgstr "Leveys:"
+#. j9AMh
+#: dbaccess/uiconfig/ui/colwidthdialog.ui:116
+msgctxt "colwidthdialog|extended_tip|value"
+msgid "Enter the column width that you want to use."
+msgstr "Annetaan käytettävä sarakeleveys"
+
#. LtAmr
-#: dbaccess/uiconfig/ui/colwidthdialog.ui:125
+#: dbaccess/uiconfig/ui/colwidthdialog.ui:127
msgctxt "colwidthdialog|automatic"
msgid "_Automatic"
msgstr "Automaattinen"
+#. HWoLr
+#: dbaccess/uiconfig/ui/colwidthdialog.ui:136
+msgctxt "colwidthdialog|extended_tip|automatic"
+msgid "Automatically adjusts the column width based on the current font."
+msgstr "Sarakeleveys tulee vallitsevan fontin mukaan säätyväksi."
+
+#. enAfe
+#: dbaccess/uiconfig/ui/colwidthdialog.ui:167
+msgctxt "colwidthdialog|extended_tip|ColWidthDialog"
+msgid "Changes the width of the current column, or the selected columns."
+msgstr "Muutetaan sarakkeen tai valittujen sarakkeiden leveyttä."
+
#. zBVS9
#: dbaccess/uiconfig/ui/connectionpage.ui:40
msgctxt "connectionpage|browseurllabel"
@@ -3113,6 +3197,12 @@ msgctxt "fielddescpage|STR_TAB_FIELD_DATATYPE"
msgid "Field _type"
msgstr "Kentän tyyppi"
+#. dUE3D
+#: dbaccess/uiconfig/ui/fielddescpanel.ui:44
+msgctxt "designhelpbox|textview-tooltip"
+msgid "Field Properties Help"
+msgstr ""
+
#. KUVUc
#: dbaccess/uiconfig/ui/fielddialog.ui:9
msgctxt "fielddialog|FieldDialog"
@@ -3263,6 +3353,14 @@ msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Muodostaa yhteyden olemassa olevaan tietokantaan"
+#. emqeD
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:229
+msgctxt "generalpagewizard|noembeddeddbLabel"
+msgid ""
+"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
+"available in this setup."
+msgstr ""
+
#. DQvKi
#: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:42
msgctxt "generalspecialjdbcdetailspage|label2"
@@ -3445,61 +3543,61 @@ msgid "Join Properties"
msgstr "Liitoksen ominaisuudet"
#. YUCgu
-#: dbaccess/uiconfig/ui/joindialog.ui:137
+#: dbaccess/uiconfig/ui/joindialog.ui:136
msgctxt "joindialog|label1"
msgid "Tables Involved"
msgstr "Sisällytetyt taulut"
#. kbsrd
-#: dbaccess/uiconfig/ui/joindialog.ui:201
+#: dbaccess/uiconfig/ui/joindialog.ui:200
msgctxt "joindialog|label2"
msgid "Fields Involved"
msgstr "Sisällytetyt kentät"
#. C3Avj
-#: dbaccess/uiconfig/ui/joindialog.ui:236
+#: dbaccess/uiconfig/ui/joindialog.ui:235
msgctxt "joindialog|label5"
msgid "_Type:"
msgstr "Tyyppi:"
#. RAXzW
-#: dbaccess/uiconfig/ui/joindialog.ui:252
+#: dbaccess/uiconfig/ui/joindialog.ui:251
msgctxt "joindialog|liststore1"
msgid "Inner join"
msgstr "Sisäliitos"
#. ZEaHj
-#: dbaccess/uiconfig/ui/joindialog.ui:253
+#: dbaccess/uiconfig/ui/joindialog.ui:252
msgctxt "joindialog|liststore1"
msgid "Left join"
msgstr "Vasen liitos"
#. y9EMH
-#: dbaccess/uiconfig/ui/joindialog.ui:254
+#: dbaccess/uiconfig/ui/joindialog.ui:253
msgctxt "joindialog|liststore1"
msgid "Right join"
msgstr "Oikea liitos"
#. G57Ed
-#: dbaccess/uiconfig/ui/joindialog.ui:255
+#: dbaccess/uiconfig/ui/joindialog.ui:254
msgctxt "joindialog|liststore1"
msgid "Full (outer) join"
msgstr "Täysi (ulko-)liitos"
#. vwzCL
-#: dbaccess/uiconfig/ui/joindialog.ui:256
+#: dbaccess/uiconfig/ui/joindialog.ui:255
msgctxt "joindialog|liststore1"
msgid "Cross join"
msgstr "Ristiliitos"
#. GTvPb
-#: dbaccess/uiconfig/ui/joindialog.ui:266
+#: dbaccess/uiconfig/ui/joindialog.ui:265
msgctxt "joindialog|natural"
msgid "Natural"
msgstr "Luonnollinen"
#. UkuPe
-#: dbaccess/uiconfig/ui/joindialog.ui:290
+#: dbaccess/uiconfig/ui/joindialog.ui:289
msgctxt "joindialog|label6"
msgid "Options"
msgstr "Asetukset"
@@ -3835,137 +3933,209 @@ msgid "Standard Filter"
msgstr "Oletussuodatin"
#. Vj95w
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:101
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:98
msgctxt "queryfilterdialog|label2"
msgid "Operator"
msgstr "Operaattori"
#. epkLc
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:113
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:110
msgctxt "queryfilterdialog|label5"
msgid "Field name"
msgstr "Kentän nimi"
#. Y5DBo
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:124
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:121
msgctxt "queryfilterdialog|label6"
msgid "Condition"
msgstr "Ehto"
#. DdcwC
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:137
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:134
msgctxt "queryfilterdialog|field1"
msgid "- none -"
msgstr "- ei mitään -"
+#. eYDCU
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:138
+msgctxt "queryfilterdialog|extended_tip|field1"
+msgid "Specifies the field names from the current table to set them in the argument."
+msgstr ""
+
#. 57zBE
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:152
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:154
msgctxt "queryfilterdialog|cond1"
msgid "="
msgstr "="
#. GGX3G
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:153
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:155
msgctxt "queryfilterdialog|cond1"
msgid "<>"
msgstr "<>"
#. k5DCL
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:154
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:156
msgctxt "queryfilterdialog|cond1"
msgid "<"
msgstr "<"
#. FAAzh
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:155
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:157
msgctxt "queryfilterdialog|cond1"
msgid "<="
msgstr "<="
#. Qzo9n
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:156
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:158
msgctxt "queryfilterdialog|cond1"
msgid ">"
msgstr ">"
#. H4pEw
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:157
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:159
msgctxt "queryfilterdialog|cond1"
msgid ">="
msgstr ">="
#. PWqBz
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:158
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:160
msgctxt "queryfilterdialog|cond1"
msgid "like"
msgstr "kuten"
#. RDy6G
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:159
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:161
msgctxt "queryfilterdialog|cond1"
msgid "not like"
msgstr "ei kuten"
#. 2qvuA
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:160
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:162
msgctxt "queryfilterdialog|cond1"
msgid "null"
msgstr "tyhjä"
#. 4znh7
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:161
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:163
msgctxt "queryfilterdialog|cond1"
msgid "not null"
msgstr "ei tyhjä"
+#. 4qhBZ
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:167
+msgctxt "queryfilterdialog|extended_tip|cond1"
+msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
+msgstr ""
+
#. A8jis
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:175
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:182
msgctxt "queryfilterdialog|field2"
msgid "- none -"
msgstr "- ei mitään -"
+#. y2FAQ
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:186
+msgctxt "queryfilterdialog|extended_tip|field2"
+msgid "Specifies the field names from the current table to set them in the argument."
+msgstr ""
+
#. FdHSG
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:189
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:201
msgctxt "queryfilterdialog|field3"
msgid "- none -"
msgstr "- ei mitään -"
+#. FvUHF
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:205
+msgctxt "queryfilterdialog|extended_tip|field3"
+msgid "Specifies the field names from the current table to set them in the argument."
+msgstr ""
+
+#. oCJaY
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:222
+msgctxt "queryfilterdialog|extended_tip|cond2"
+msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
+msgstr ""
+
+#. rY6Pi
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:239
+msgctxt "queryfilterdialog|extended_tip|cond3"
+msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
+msgstr ""
+
#. tBd3g
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:225
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:252
msgctxt "queryfilterdialog|label7"
msgid "Value"
msgstr "Arvo"
+#. o2BNC
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:267
+msgctxt "queryfilterdialog|extended_tip|value1"
+msgid "Specifies a value to filter the field."
+msgstr ""
+
+#. w42mr
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:284
+msgctxt "queryfilterdialog|extended_tip|value2"
+msgid "Specifies a value to filter the field."
+msgstr ""
+
+#. tB93H
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:301
+msgctxt "queryfilterdialog|extended_tip|value3"
+msgid "Specifies a value to filter the field."
+msgstr ""
+
#. PFZ8z
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:274
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:316
msgctxt "queryfilterdialog|op2"
msgid "AND"
msgstr "JA"
#. pQza3
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:275
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:317
msgctxt "queryfilterdialog|op2"
msgid "OR"
msgstr "TAI"
+#. msKEj
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:321
+msgctxt "queryfilterdialog|extended_tip|op2"
+msgid "For the following arguments, you can choose between the logical operators AND / OR."
+msgstr ""
+
#. EaXyP
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:289
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:336
msgctxt "queryfilterdialog|op3"
msgid "AND"
msgstr "JA"
#. DV78L
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:290
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:337
msgctxt "queryfilterdialog|op3"
msgid "OR"
msgstr "TAI"
+#. kdWnt
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:341
+msgctxt "queryfilterdialog|extended_tip|op3"
+msgid "For the following arguments, you can choose between the logical operators AND / OR."
+msgstr ""
+
#. SESZq
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:309
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:361
msgctxt "queryfilterdialog|label1"
msgid "Criteria"
msgstr "Ehto"
+#. S22Fy
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:386
+msgctxt "queryfilterdialog|extended_tip|QueryFilterDialog"
+msgid "Allows you to set the filtering options."
+msgstr "Suodatusasetusten teko sallitaan."
+
#. jFD4L
#: dbaccess/uiconfig/ui/queryfuncmenu.ui:12
msgctxt "queryfuncmenu|functions"
@@ -3997,29 +4167,53 @@ msgid "Query Properties"
msgstr "Kyselyn ominaisuudet"
#. fyogK
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:89
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:86
msgctxt "querypropertiesdialog|limit-label"
msgid "Limit:"
msgstr "Rajattu määrä:"
#. 2D6E2
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:104
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:101
msgctxt "querypropertiesdialog|distinct"
msgid "Yes"
msgstr "Kyllä"
+#. jgttX
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:111
+msgctxt "querypropertiesdialog|extended_tip|distinct"
+msgid "Use distinct values in query."
+msgstr "Käytä erottuvia arvoja kyselyssä."
+
#. rErxt
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:121
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:123
msgctxt "querypropertiesdialog|nondistinct"
msgid "No"
msgstr "Ei"
+#. QAGhF
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:133
+msgctxt "querypropertiesdialog|extended_tip|nondistinct"
+msgid "Not use distinct values in query."
+msgstr "Ei välttämättä käytetä erottuvia arvoja kyselyssä."
+
#. P9quF
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:146
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:153
msgctxt "querypropertiesdialog|distinctvalues"
msgid "Distinct values:"
msgstr "Uniikit arvot:"
+#. asbjN
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:175
+msgctxt "querypropertiesdialog|extended_tip|limitbox"
+msgid "Adds a Limit to set the maximum number of records to return."
+msgstr ""
+
+#. GoEm9
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:203
+msgctxt "querypropertiesdialog|extended_tip|QueryPropertiesDialog"
+msgid "In the Query Properties dialog you can set two properties of the SQL Query, i.e. whether to return distinct values, and whether to limit the result set."
+msgstr ""
+
#. gLFLt
#: dbaccess/uiconfig/ui/relationdialog.ui:8
msgctxt "relationdialog|RelationDialog"
@@ -4027,103 +4221,103 @@ msgid "Relations"
msgstr "Yhteydet"
#. DEGM2
-#: dbaccess/uiconfig/ui/relationdialog.ui:137
+#: dbaccess/uiconfig/ui/relationdialog.ui:136
msgctxt "relationdialog|label1"
msgid "Tables Involved"
msgstr "Sisällytetyt taulut"
#. 87WEB
-#: dbaccess/uiconfig/ui/relationdialog.ui:175
+#: dbaccess/uiconfig/ui/relationdialog.ui:174
msgctxt "relationdialog|label2"
msgid "Fields Involved"
msgstr "Sisällytetyt kentät"
#. pf4b4
-#: dbaccess/uiconfig/ui/relationdialog.ui:213
+#: dbaccess/uiconfig/ui/relationdialog.ui:212
msgctxt "relationdialog|addaction"
msgid "_No action"
msgstr "Ei toimintoa"
#. uZGGW
-#: dbaccess/uiconfig/ui/relationdialog.ui:229
+#: dbaccess/uiconfig/ui/relationdialog.ui:228
msgctxt "relationdialog|addcascade"
msgid "_Update cascade"
msgstr "Vyörytä päivitykset"
#. PfRDx
-#: dbaccess/uiconfig/ui/relationdialog.ui:245
+#: dbaccess/uiconfig/ui/relationdialog.ui:244
msgctxt "relationdialog|addnull"
msgid "_Set NULL"
msgstr "Aseta NULL"
#. xNWHg
-#: dbaccess/uiconfig/ui/relationdialog.ui:261
+#: dbaccess/uiconfig/ui/relationdialog.ui:260
msgctxt "relationdialog|adddefault"
msgid "Set _default"
msgstr "Määritä oletusarvo"
#. SfKFG
-#: dbaccess/uiconfig/ui/relationdialog.ui:283
+#: dbaccess/uiconfig/ui/relationdialog.ui:282
msgctxt "relationdialog|label3"
msgid "Update Options"
msgstr "Päivitysasetukset"
#. wnvZa
-#: dbaccess/uiconfig/ui/relationdialog.ui:316
+#: dbaccess/uiconfig/ui/relationdialog.ui:315
msgctxt "relationdialog|delaction"
msgid "_No action"
msgstr "Ei toimintoa"
#. 3BAEe
-#: dbaccess/uiconfig/ui/relationdialog.ui:332
+#: dbaccess/uiconfig/ui/relationdialog.ui:331
msgctxt "relationdialog|delcascade"
msgid "Delete _cascade"
msgstr "Vyörytä poistot"
#. Zd5SC
-#: dbaccess/uiconfig/ui/relationdialog.ui:348
+#: dbaccess/uiconfig/ui/relationdialog.ui:347
msgctxt "relationdialog|delnull"
msgid "_Set NULL"
msgstr "Aseta NULL"
#. hZGB8
-#: dbaccess/uiconfig/ui/relationdialog.ui:364
+#: dbaccess/uiconfig/ui/relationdialog.ui:363
msgctxt "relationdialog|deldefault"
msgid "Set _default"
msgstr "Määritä oletusarvo"
#. LLcup
-#: dbaccess/uiconfig/ui/relationdialog.ui:386
+#: dbaccess/uiconfig/ui/relationdialog.ui:385
msgctxt "relationdialog|label4"
msgid "Delete Options"
msgstr "Poistoasetukset"
#. 2Cb2G
-#: dbaccess/uiconfig/ui/relationdialog.ui:439
+#: dbaccess/uiconfig/ui/relationdialog.ui:438
msgctxt "relationdialog|liststore1"
msgid "Inner join"
msgstr "Sisäliitos"
#. nhWNP
-#: dbaccess/uiconfig/ui/relationdialog.ui:443
+#: dbaccess/uiconfig/ui/relationdialog.ui:442
msgctxt "relationdialog|liststore1"
msgid "Left join"
msgstr "Vasen liitos"
#. TD2LX
-#: dbaccess/uiconfig/ui/relationdialog.ui:447
+#: dbaccess/uiconfig/ui/relationdialog.ui:446
msgctxt "relationdialog|liststore1"
msgid "Right join"
msgstr "Oikea liitos"
#. yLDPS
-#: dbaccess/uiconfig/ui/relationdialog.ui:451
+#: dbaccess/uiconfig/ui/relationdialog.ui:450
msgctxt "relationdialog|liststore1"
msgid "Full (outer) join"
msgstr "Täysi (ulko-)liitos"
#. UYDBa
-#: dbaccess/uiconfig/ui/relationdialog.ui:455
+#: dbaccess/uiconfig/ui/relationdialog.ui:454
msgctxt "relationdialog|liststore1"
msgid "Cross join"
msgstr "Ristiliitos"
@@ -4135,17 +4329,35 @@ msgid "Row Height"
msgstr "Rivin korkeus"
#. 8pFfi
-#: dbaccess/uiconfig/ui/rowheightdialog.ui:99
+#: dbaccess/uiconfig/ui/rowheightdialog.ui:96
msgctxt "rowheightdialog|label1"
msgid "_Height:"
msgstr "_Korkeus:"
+#. cZCeF
+#: dbaccess/uiconfig/ui/rowheightdialog.ui:116
+msgctxt "rowheightdialog|extended_tip|value"
+msgid "Enter the row height that you want to use."
+msgstr "Annetaan käytettävä rivikorkeus."
+
#. 4QFsD
-#: dbaccess/uiconfig/ui/rowheightdialog.ui:125
+#: dbaccess/uiconfig/ui/rowheightdialog.ui:127
msgctxt "rowheightdialog|automatic"
msgid "_Automatic"
msgstr "Automaattinen"
+#. HKRpK
+#: dbaccess/uiconfig/ui/rowheightdialog.ui:136
+msgctxt "rowheightdialog|extended_tip|automatic"
+msgid "Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents."
+msgstr "Säädetään rivikorkeus oletusmallin mukaiseksi. Olemassaoleva sisältö voi näkyä pystysuunnassa rajautuneena. Korkeus ei enää kasva lisättäessä korkeampaa sisältöä."
+
+#. qEa9T
+#: dbaccess/uiconfig/ui/rowheightdialog.ui:167
+msgctxt "rowheightdialog|extended_tip|RowHeightDialog"
+msgid "Changes the height of the current row, or the selected rows."
+msgstr "Muutetaan kohdistetun rivin tai valittujen rivien korkeutta."
+
#. SD2FQ
#: dbaccess/uiconfig/ui/savedialog.ui:8
msgctxt "savedialog|SaveDialog"
@@ -4201,77 +4413,83 @@ msgid "Sort Order"
msgstr "Lajittelujärjestys"
#. szD83
-#: dbaccess/uiconfig/ui/sortdialog.ui:102
+#: dbaccess/uiconfig/ui/sortdialog.ui:99
msgctxt "sortdialog|label2"
msgid "Operator"
msgstr "Operaattori"
#. UcmpV
-#: dbaccess/uiconfig/ui/sortdialog.ui:114
+#: dbaccess/uiconfig/ui/sortdialog.ui:111
msgctxt "sortdialog|label3"
msgid "and then"
msgstr "ja sitten"
#. u8kT2
-#: dbaccess/uiconfig/ui/sortdialog.ui:127
+#: dbaccess/uiconfig/ui/sortdialog.ui:124
msgctxt "sortdialog|label4"
msgid "and then"
msgstr "ja sitten"
#. oK7UF
-#: dbaccess/uiconfig/ui/sortdialog.ui:140
+#: dbaccess/uiconfig/ui/sortdialog.ui:137
msgctxt "sortdialog|label5"
msgid "Field name"
msgstr "Kentän nimi"
#. AVPtE
-#: dbaccess/uiconfig/ui/sortdialog.ui:152
+#: dbaccess/uiconfig/ui/sortdialog.ui:149
msgctxt "sortdialog|label6"
msgid "Order"
msgstr "Järjestys"
#. EGDpm
-#: dbaccess/uiconfig/ui/sortdialog.ui:177
+#: dbaccess/uiconfig/ui/sortdialog.ui:174
msgctxt "sortdialog|value1"
msgid "ascending"
msgstr "nouseva"
#. PGxfE
-#: dbaccess/uiconfig/ui/sortdialog.ui:178
+#: dbaccess/uiconfig/ui/sortdialog.ui:175
msgctxt "sortdialog|value1"
msgid "descending"
msgstr "laskeva"
#. FqcgB
-#: dbaccess/uiconfig/ui/sortdialog.ui:214
+#: dbaccess/uiconfig/ui/sortdialog.ui:211
msgctxt "sortdialog|value2"
msgid "ascending"
msgstr "nouseva"
#. E5DBL
-#: dbaccess/uiconfig/ui/sortdialog.ui:215
+#: dbaccess/uiconfig/ui/sortdialog.ui:212
msgctxt "sortdialog|value2"
msgid "descending"
msgstr "laskeva"
#. Fa8EC
-#: dbaccess/uiconfig/ui/sortdialog.ui:229
+#: dbaccess/uiconfig/ui/sortdialog.ui:226
msgctxt "sortdialog|value3"
msgid "ascending"
msgstr "nouseva"
#. UFZVT
-#: dbaccess/uiconfig/ui/sortdialog.ui:230
+#: dbaccess/uiconfig/ui/sortdialog.ui:227
msgctxt "sortdialog|value3"
msgid "descending"
msgstr "laskeva"
#. C6iQ6
-#: dbaccess/uiconfig/ui/sortdialog.ui:249
+#: dbaccess/uiconfig/ui/sortdialog.ui:246
msgctxt "sortdialog|label1"
msgid "Sort Order"
msgstr "Lajittelujärjestys"
+#. VCWPc
+#: dbaccess/uiconfig/ui/sortdialog.ui:271
+msgctxt "sortdialog|extended_tip|SortDialog"
+msgid "Specifies the sort criteria for the data display."
+msgstr "Määritetään esitettävän aineiston lajittelujärjestys."
+
#. CsLXB
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
msgctxt "specialjdbcconnectionpage|header"
@@ -4531,7 +4749,7 @@ msgid "Mark the tables that should be visible for the applications."
msgstr "Merkitse taulut, jotka näkyvät sovelluksille."
#. Cvzwv
-#: dbaccess/uiconfig/ui/tablesfilterpage.ui:130
+#: dbaccess/uiconfig/ui/tablesfilterpage.ui:125
msgctxt "tablesfilterpage|label1"
msgid "Tables and Table Filter"
msgstr "Taulut ja taulujen suodatin"
@@ -4560,6 +4778,12 @@ msgctxt "tablesjoindialog|alttitle"
msgid "Add Table or Query"
msgstr "Lisää taulu tai kysely"
+#. YWLXP
+#: dbaccess/uiconfig/ui/taskwindow.ui:107
+msgctxt "taskwindow|STR_DESCRIPTION"
+msgid "Description"
+msgstr "Kuvaus"
+
#. 8b2nn
#: dbaccess/uiconfig/ui/textconnectionsettings.ui:8
msgctxt "textconnectionsettings|TextConnectionSettingsDialog"
@@ -4788,8 +5012,8 @@ msgctxt "userdetailspage|charsetlabel"
msgid "_Character set:"
msgstr "Merkistö:"
-#. oaAiD
+#. 6ZS8N
#: dbaccess/uiconfig/ui/userdetailspage.ui:213
msgctxt "userdetailspage|charsetheader"
-msgid "Data conversion"
-msgstr "Tietojen muunnos"
+msgid "Data Conversion"
+msgstr ""
diff --git a/source/fi/desktop/messages.po b/source/fi/desktop/messages.po
index 93e138107ce..bd1236f6fa9 100644
--- a/source/fi/desktop/messages.po
+++ b/source/fi/desktop/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/desktopmessages/fi/>\n"
@@ -17,113 +17,119 @@ msgstr ""
"X-POOTLE-MTIME: 1563271879.000000\n"
#. v2iwK
-#: desktop/inc/strings.hrc:25
+#: desktop/inc/strings.hrc:24
msgctxt "RID_STR_COPYING_PACKAGE"
msgid "Copying: "
msgstr "Kopioidaan: "
#. 2dzDt
-#: desktop/inc/strings.hrc:26
+#: desktop/inc/strings.hrc:25
msgctxt "RID_STR_ERROR_WHILE_ADDING"
msgid "Error while adding: "
msgstr "Virhe lisättäessä: "
#. CUrtD
-#: desktop/inc/strings.hrc:27
+#: desktop/inc/strings.hrc:26
msgctxt "RID_STR_ERROR_WHILE_REMOVING"
msgid "Error while removing: "
msgstr "Virhe poistettaessa: "
#. XyESz
-#: desktop/inc/strings.hrc:28
+#: desktop/inc/strings.hrc:27
msgctxt "RID_STR_PACKAGE_ALREADY_ADDED"
msgid "Extension has already been added: "
msgstr "Lisäosa on jo lisätty: "
#. cuydq
-#: desktop/inc/strings.hrc:29
+#: desktop/inc/strings.hrc:28
msgctxt "RID_STR_NO_SUCH_PACKAGE"
msgid "There is no such extension deployed: "
msgstr "Lisäosa ei ole käytettävissä: "
#. wzGYv
-#: desktop/inc/strings.hrc:30
+#: desktop/inc/strings.hrc:29
msgctxt "RID_STR_SYNCHRONIZING_REPOSITORY"
msgid "Synchronizing repository for %NAME extensions"
msgstr "Haetaan päivitystietoja %NAME-lisäosille"
#. dp8bf
-#: desktop/inc/strings.hrc:32
+#: desktop/inc/strings.hrc:31
msgctxt "RID_STR_REGISTERING_PACKAGE"
msgid "Enabling: "
msgstr "Otetaan käyttöön: "
#. xBysg
-#: desktop/inc/strings.hrc:33
+#: desktop/inc/strings.hrc:32
msgctxt "RID_STR_REVOKING_PACKAGE"
msgid "Disabling: "
msgstr "Poistetaan käytöstä: "
#. HDgpp
-#: desktop/inc/strings.hrc:34
+#: desktop/inc/strings.hrc:33
msgctxt "RID_STR_CANNOT_DETECT_MEDIA_TYPE"
msgid "Cannot detect media-type: "
msgstr "Tuntematon tallennusvälinetyyppi: "
#. QfGM7
-#: desktop/inc/strings.hrc:35
+#: desktop/inc/strings.hrc:34
msgctxt "RID_STR_UNSUPPORTED_MEDIA_TYPE"
msgid "This media-type is not supported: "
msgstr "Tallennusvälinettä ei tueta: "
#. VHcMc
-#: desktop/inc/strings.hrc:36
+#: desktop/inc/strings.hrc:35
msgctxt "RID_STR_ERROR_WHILE_REGISTERING"
msgid "An error occurred while enabling: "
msgstr "Käyttöönotossa tapahtui virhe: "
#. BqmAM
-#: desktop/inc/strings.hrc:37
+#: desktop/inc/strings.hrc:36
msgctxt "RID_STR_ERROR_WHILE_REVOKING"
msgid "An error occurred while disabling: "
msgstr "Käytöstä poistamisessa tapahtui virhe: "
#. Avii2
-#: desktop/inc/strings.hrc:39
+#: desktop/inc/strings.hrc:38
msgctxt "RID_STR_CONF_SCHEMA"
msgid "Configuration Schema"
msgstr "Kokoonpanon rakennemääritys"
#. cL9MC
-#: desktop/inc/strings.hrc:40
+#: desktop/inc/strings.hrc:39
msgctxt "RID_STR_CONF_DATA"
msgid "Configuration Data"
msgstr "Kokoonpanotiedot"
#. S8Pj8
-#: desktop/inc/strings.hrc:42
+#: desktop/inc/strings.hrc:41
msgctxt "RID_STR_BASIC_LIB"
msgid "Basic Library"
msgstr ""
#. Tnphj
-#: desktop/inc/strings.hrc:43
+#: desktop/inc/strings.hrc:42
msgctxt "RID_STR_DIALOG_LIB"
msgid "Dialog Library"
msgstr "Valintaikkunakirjasto"
#. ThJQm
-#: desktop/inc/strings.hrc:44
+#: desktop/inc/strings.hrc:43
msgctxt "RID_STR_CANNOT_DETERMINE_LIBNAME"
msgid "The library name could not be determined."
msgstr "Kirjaston nimeä ei voitu päätellä."
#. G6SqW
-#: desktop/inc/strings.hrc:46
+#: desktop/inc/strings.hrc:45
msgctxt "RID_STR_PACKAGE_BUNDLE"
msgid "Extension"
msgstr "Lisäosa"
+#. o6NBi
+#: desktop/inc/strings.hrc:46
+msgctxt "RID_STR_PACKAGE_BUNDLE"
+msgid "All supported files"
+msgstr "Kaikki tuetut tiedostot"
+
#. 5TAZB
#: desktop/inc/strings.hrc:48
msgctxt "RID_STR_DYN_COMPONENT"
@@ -826,71 +832,131 @@ msgid "Extension Manager"
msgstr "Lisäosien hallinta"
#. gjCkd
-#: desktop/uiconfig/ui/extensionmanager.ui:87
+#: desktop/uiconfig/ui/extensionmanager.ui:84
msgctxt "extensionmanager|shared"
msgid "Installed for all users"
msgstr "Asennettu kaikille käyttäjille"
+#. pnXoG
+#: desktop/uiconfig/ui/extensionmanager.ui:94
+msgctxt "extensionmanager|extended_tip|shared"
+msgid "Filter extensions available for all users of this computer."
+msgstr ""
+
#. zhqZT
-#: desktop/uiconfig/ui/extensionmanager.ui:103
+#: desktop/uiconfig/ui/extensionmanager.ui:105
msgctxt "extensionmanager|user"
msgid "Installed for current user"
msgstr "Asennettu nykyiselle käyttäjälle"
+#. QbHCi
+#: desktop/uiconfig/ui/extensionmanager.ui:115
+msgctxt "extensionmanager|extended_tip|user"
+msgid "Filter extensions only available for the currently logged in user."
+msgstr ""
+
#. 6wBVk
-#: desktop/uiconfig/ui/extensionmanager.ui:119
+#: desktop/uiconfig/ui/extensionmanager.ui:126
msgctxt "extensionmanager|bundled"
msgid "Bundled with %PRODUCTNAME"
msgstr "Asennettu %PRODUCTNAMEn mukana"
+#. nF4rD
+#: desktop/uiconfig/ui/extensionmanager.ui:136
+msgctxt "extensionmanager|extended_tip|bundled"
+msgid "Bundled extensions are installed by the system administrator using the operating system specific installer packages. These can not be installed, updated or removed here."
+msgstr ""
+
#. T8BGR
-#: desktop/uiconfig/ui/extensionmanager.ui:141
+#: desktop/uiconfig/ui/extensionmanager.ui:153
msgctxt "extensionmanager|label1"
msgid "Display Extensions"
msgstr "Näytä lisäosat"
+#. BAVdg
+#: desktop/uiconfig/ui/extensionmanager.ui:187
+msgctxt "extensionmanager|extended_tip|extensions"
+msgid "Select the extension that you want to remove, enable, or disable. For some extensions, you can also open an Options dialog."
+msgstr ""
+
#. DLME5
-#: desktop/uiconfig/ui/extensionmanager.ui:192
+#: desktop/uiconfig/ui/extensionmanager.ui:209
msgctxt "extensionmanager|optionsbtn"
msgid "_Options"
msgstr "_Asetukset"
+#. DbuQS
+#: desktop/uiconfig/ui/extensionmanager.ui:216
+msgctxt "extensionmanager|extended_tip|optionsbtn"
+msgid "Select an installed extension, then click to open the Options dialog for the extension."
+msgstr "Valitaan asennettu lisäosa ja napsautetaan sitten painiketta Asetukset-valintaikkunan avaamiseksi ."
+
#. ieiF4
-#: desktop/uiconfig/ui/extensionmanager.ui:206
+#: desktop/uiconfig/ui/extensionmanager.ui:228
msgctxt "extensionmanager|updatebtn"
msgid "Check for _Updates"
msgstr "Tarkista päivitykset"
+#. rirpA
+#: desktop/uiconfig/ui/extensionmanager.ui:235
+msgctxt "extensionmanager|extended_tip|updatebtn"
+msgid "Click to check for online updates of all installed extensions. To check for updates of the selected extension only, choose the Update command from the context menu. The check for availability of updates starts immediately."
+msgstr ""
+
#. GehiB
-#: desktop/uiconfig/ui/extensionmanager.ui:221
+#: desktop/uiconfig/ui/extensionmanager.ui:248
msgctxt "extensionmanager|addbtn"
msgid "_Add"
msgstr "_Lisää"
+#. MuigK
+#: desktop/uiconfig/ui/extensionmanager.ui:257
+msgctxt "extensionmanager|extended_tip|addbtn"
+msgid "Click Add to add an extension."
+msgstr ""
+
#. wNCAw
-#: desktop/uiconfig/ui/extensionmanager.ui:238
+#: desktop/uiconfig/ui/extensionmanager.ui:270
msgctxt "extensionmanager|removebtn"
msgid "_Remove"
msgstr "_Poista"
+#. AGoX7
+#: desktop/uiconfig/ui/extensionmanager.ui:277
+msgctxt "extensionmanager|extended_tip|removebtn"
+msgid "Select the extension that you want to remove, and then click Remove."
+msgstr ""
+
#. qHMdq
-#: desktop/uiconfig/ui/extensionmanager.ui:253
+#: desktop/uiconfig/ui/extensionmanager.ui:290
msgctxt "extensionmanager|enablebtn"
msgid "_Enable"
msgstr "Ota käyttöön"
#. vz3Ti
-#: desktop/uiconfig/ui/extensionmanager.ui:282
+#: desktop/uiconfig/ui/extensionmanager.ui:319
msgctxt "extensionmanager|progressft"
msgid "Adding %EXTENSION_NAME"
msgstr "Lisätään %EXTENSION_NAME"
#. A33SB
-#: desktop/uiconfig/ui/extensionmanager.ui:317
+#: desktop/uiconfig/ui/extensionmanager.ui:354
msgctxt "extensionmanager|getextensions"
msgid "Get more extensions online..."
msgstr "Hae lisäosia verkosta..."
+#. FBvRd
+#: desktop/uiconfig/ui/extensionmanager.ui:362
+msgctxt "extensionmanager|extended_tip|getextensions"
+msgid "You can find a collection of extensions on the Web."
+msgstr ""
+
+#. vSiEz
+#: desktop/uiconfig/ui/extensionmanager.ui:397
+msgctxt "extensionmanager|extended_tip|ExtensionManagerDialog"
+msgid "The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions."
+msgstr ""
+
#. EGwkP
#: desktop/uiconfig/ui/installforalldialog.ui:12
msgctxt "installforalldialog|InstallForAllDialog"
@@ -969,72 +1035,96 @@ msgctxt "licensedialog|down"
msgid "_Scroll Down"
msgstr "Vieritä alas"
-#. qquCs
+#. x4PCF
#: desktop/uiconfig/ui/showlicensedialog.ui:8
+msgctxt "showlicensedialog|extended_tip|ShowLicenseDialog"
+msgid "Read the license. Click the Scroll Down button to scroll down if necessary. Click Accept to continue the installation of the extension."
+msgstr ""
+
+#. qquCs
+#: desktop/uiconfig/ui/showlicensedialog.ui:13
msgctxt "showlicensedialog|ShowLicenseDialog"
msgid "Extension Software License Agreement"
msgstr "Lisäosan ohjelmistolisenssisopimus"
#. GX3k2
-#: desktop/uiconfig/ui/updatedialog.ui:10
+#: desktop/uiconfig/ui/updatedialog.ui:24
msgctxt "updatedialog|UpdateDialog"
msgid "Extension Update"
msgstr "Lisäosan päivitys"
#. DmHy5
-#: desktop/uiconfig/ui/updatedialog.ui:44
+#: desktop/uiconfig/ui/updatedialog.ui:55
msgctxt "updatedialog|INSTALL"
msgid "_Install"
msgstr "Asenna"
#. 3bJwo
-#: desktop/uiconfig/ui/updatedialog.ui:109
+#: desktop/uiconfig/ui/updatedialog.ui:120
msgctxt "updatedialog|UPDATE_LABEL"
msgid "_Available extension updates"
msgstr "Saatavilla olevat lisäosien päivitykset"
#. 3mtLC
-#: desktop/uiconfig/ui/updatedialog.ui:122
+#: desktop/uiconfig/ui/updatedialog.ui:133
msgctxt "updatedialog|UPDATE_CHECKING"
msgid "Checking..."
msgstr "Tarkistetaan..."
#. WkYgi
-#: desktop/uiconfig/ui/updatedialog.ui:206
+#: desktop/uiconfig/ui/updatedialog.ui:217
msgctxt "updatedialog|UPDATE_ALL"
msgid "_Show all updates"
msgstr "Näytä kaikki päivitykset"
+#. ihAhY
+#: desktop/uiconfig/ui/updatedialog.ui:227
+msgctxt "updatedialog|extended_tip|UPDATE_ALL"
+msgid "By default, only the downloadable extensions are shown in the dialog. Mark Show all Updates to see also other extensions and error messages."
+msgstr "Vain ladattavissa olevat lisäosat ovat oletuksena esillä valintaikkunassa. Merkitsemällä Näytä kaikki päivitykset saadaan esille muutkin lisäosat ja virheilmoitukset."
+
#. BriDD
-#: desktop/uiconfig/ui/updatedialog.ui:240
+#: desktop/uiconfig/ui/updatedialog.ui:256
msgctxt "updatedialog|DESCRIPTION_LABEL"
msgid "Description"
msgstr "Kuvaus"
#. 7DTtA
-#: desktop/uiconfig/ui/updatedialog.ui:258
+#: desktop/uiconfig/ui/updatedialog.ui:274
msgctxt "updatedialog|PUBLISHER_LABEL"
msgid "Publisher:"
msgstr "Julkaisija:"
#. iaD89
-#: desktop/uiconfig/ui/updatedialog.ui:269
+#: desktop/uiconfig/ui/updatedialog.ui:285
msgctxt "updatedialog|PUBLISHER_LINK"
msgid "button"
msgstr "painike"
#. kgLHP
-#: desktop/uiconfig/ui/updatedialog.ui:285
+#: desktop/uiconfig/ui/updatedialog.ui:301
msgctxt "updatedialog|RELEASE_NOTES_LABEL"
msgid "What is new:"
msgstr "Muutokset:"
#. JqHGH
-#: desktop/uiconfig/ui/updatedialog.ui:296
+#: desktop/uiconfig/ui/updatedialog.ui:312
msgctxt "updatedialog|RELEASE_NOTES_LINK"
msgid "Release notes"
msgstr "Julkaisutiedot"
+#. UEHCd
+#: desktop/uiconfig/ui/updatedialog.ui:350
+msgctxt "updatedialog|extended_tip|DESCRIPTIONS"
+msgid "While checking for updates, you see a progress indicator. Wait for some messages to show up in the dialog, or click Cancel to abort the update check."
+msgstr "Kun päivitystarkistusta tehdään, nähtävissä on etenemisosoitin. Odotetaan, että valintaikkunaan tulee ilmoituksia tai painetaan Peruuta-painiketta päivitystarkistuksen lopettamiseksi."
+
+#. c5FG9
+#: desktop/uiconfig/ui/updatedialog.ui:387
+msgctxt "updatedialog|extended_tip|UpdateDialog"
+msgid "Click the Check for Updates button in the Extension Manager to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose Update."
+msgstr "Napsautetaan Lisäosien hallinnan Tarkista päivitykset -painiketta kaikkien asennettujen lisäosien verkosta saatavien päivitysten tarkistamiseksi. Vain valitun lisäosan verkkopäivityksen tarkistamiseksi kakkospainikkeella napsautetaan, niin että kohdevalikko avautuu ja valitaan sitten Päivitys."
+
#. YEhMN
#: desktop/uiconfig/ui/updateinstalldialog.ui:8
msgctxt "updateinstalldialog|UpdateInstallDialog"
@@ -1042,17 +1132,23 @@ msgid "Download and Installation"
msgstr "Lataus ja asennus"
#. t9MoN
-#: desktop/uiconfig/ui/updateinstalldialog.ui:90
+#: desktop/uiconfig/ui/updateinstalldialog.ui:87
msgctxt "updateinstalldialog|DOWNLOADING"
msgid "Downloading extensions..."
msgstr "Ladataan lisäosia..."
#. 3AFnH
-#: desktop/uiconfig/ui/updateinstalldialog.ui:128
+#: desktop/uiconfig/ui/updateinstalldialog.ui:125
msgctxt "updateinstalldialog|RESULTS"
msgid "Result"
msgstr "Tulos"
+#. Q4xyF
+#: desktop/uiconfig/ui/updateinstalldialog.ui:178
+msgctxt "updateinstalldialog|extended_tip|UpdateInstallDialog"
+msgid "Click the Check for Updates button in the Extension Manager to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose Update."
+msgstr "Napsautetaan Lisäosien hallinnan Tarkista päivitykset -painiketta kaikkien asennettujen lisäosien verkosta saatavien päivitysten tarkistamiseksi. Vain valitun lisäosan verkkopäivityksen tarkistamiseksi kakkospainikkeella napsautetaan, niin että kohdevalikko avautuu ja valitaan sitten Päivitys."
+
#. Kfhc4
#: desktop/uiconfig/ui/updaterequireddialog.ui:8
msgctxt "updaterequireddialog|UpdateRequiredDialog"
diff --git a/source/fi/editeng/messages.po b/source/fi/editeng/messages.po
index e495aa65d4a..89bda73c947 100644
--- a/source/fi/editeng/messages.po
+++ b/source/fi/editeng/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-14 19:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/editengmessages/fi/>\n"
@@ -18,83 +18,83 @@ msgstr ""
#. BHYB4
#. enum SvxCellHorJustify ----------------------------------------------------
-#: editeng/inc/strings.hrc:18
+#: editeng/inc/strings.hrc:17
#, fuzzy
msgctxt "RID_SVXITEMS_HORJUST_STANDARD"
msgid "Horizontal alignment default"
msgstr "Vaakatasaus oletuksena"
#. htWdf
-#: editeng/inc/strings.hrc:19
+#: editeng/inc/strings.hrc:18
msgctxt "RID_SVXITEMS_HORJUST_LEFT"
msgid "Align left"
msgstr "Tasaa vasemmalle"
#. icuN2
-#: editeng/inc/strings.hrc:20
+#: editeng/inc/strings.hrc:19
msgctxt "RID_SVXITEMS_HORJUST_CENTER"
msgid "Centered horizontally"
msgstr "Keskitetty vaakasuunnassa"
#. JXEo9
-#: editeng/inc/strings.hrc:21
+#: editeng/inc/strings.hrc:20
msgctxt "RID_SVXITEMS_HORJUST_RIGHT"
msgid "Align right"
msgstr "Tasaa oikealle"
#. BFCFs
-#: editeng/inc/strings.hrc:22
+#: editeng/inc/strings.hrc:21
msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
msgid "Justify horizontally"
msgstr ""
#. DVmUh
-#: editeng/inc/strings.hrc:23
+#: editeng/inc/strings.hrc:22
msgctxt "RID_SVXITEMS_HORJUST_REPEAT"
msgid "Repeat alignment"
msgstr "Toista tasaus"
#. hMaif
#. enum SvxCellVerJustify ----------------------------------------------------
-#: editeng/inc/strings.hrc:29
+#: editeng/inc/strings.hrc:28
#, fuzzy
msgctxt "RID_SVXITEMS_VERJUST_STANDARD"
msgid "Vertical alignment default"
msgstr "Pystytasaus oletuksena"
#. xy2FG
-#: editeng/inc/strings.hrc:30
+#: editeng/inc/strings.hrc:29
msgctxt "RID_SVXITEMS_VERJUST_TOP"
msgid "Align to top"
msgstr "Tasaa ylös"
#. UjmWt
-#: editeng/inc/strings.hrc:31
+#: editeng/inc/strings.hrc:30
msgctxt "RID_SVXITEMS_VERJUST_CENTER"
msgid "Centered vertically"
msgstr "Keskitetty pystysuunnassa"
#. G3X9R
-#: editeng/inc/strings.hrc:32
+#: editeng/inc/strings.hrc:31
msgctxt "RID_SVXITEMS_VERJUST_BOTTOM"
msgid "Align to bottom"
msgstr "Tasaa alareunaan"
#. 3jGFq
-#: editeng/inc/strings.hrc:33
+#: editeng/inc/strings.hrc:32
msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
msgid "Justify vertically"
msgstr ""
#. WQZvF
#. enum SvxCellJustifyMethod ----------------------------------------------------
-#: editeng/inc/strings.hrc:39
+#: editeng/inc/strings.hrc:38
msgctxt "RID_SVXITEMS_JUSTMETHOD_AUTO"
msgid "Automatic Justify"
msgstr ""
#. o9aJe
-#: editeng/inc/strings.hrc:40
+#: editeng/inc/strings.hrc:39
msgctxt "RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE"
msgid "Distributed Justify"
msgstr ""
diff --git a/source/fi/extensions/messages.po b/source/fi/extensions/messages.po
index c2ce3d1947b..b86640c711a 100644
--- a/source/fi/extensions/messages.po
+++ b/source/fi/extensions/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/extensionsmessages/fi/>\n"
@@ -3091,24 +3091,54 @@ msgctxt "datasourcepage|browse"
msgid "Browse..."
msgstr "Selaa..."
+#. apVFE
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:83
+msgctxt "datasourcepage|extended_tip|browse"
+msgid "Specifies the location using a file dialog."
+msgstr "Käytetään tiedosto-valintaikkunaa sijainnin määrittämiseen."
+
+#. 7P3GP
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:106
+msgctxt "datasourcepage|extended_tip|location"
+msgid "Specifies the location of the database file."
+msgstr "Määritetään tietokantatiedoston sijainti."
+
#. 6LtJa
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:113
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:123
msgctxt "datasourcepage|available"
msgid "Make this address book available to all modules in %PRODUCTNAME."
msgstr "Aseta tämä osoitekirja näkyviin kaikkiin %PRODUCTNAME-moduuleihin."
+#. F3UzV
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:132
+msgctxt "datasourcepage|extended_tip|available"
+msgid "Registers the newly created database file in %PRODUCTNAME. The database will then be listed in the Data sources pane (Ctrl+Shift+F4). If this check box is cleared, the database will be available only by opening the database file."
+msgstr ""
+
#. jbrum
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:148
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:163
msgctxt "datasourcepage|nameft"
msgid "Address book name"
msgstr "Osoitekirjan nimi"
+#. EhAjb
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:181
+msgctxt "datasourcepage|extended_tip|name"
+msgid "Specifies the data source name."
+msgstr "Määritellään tietolähteen nimi."
+
#. iHrkL
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:180
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:200
msgctxt "datasourcepage|warning"
msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
msgstr "Toisella tietolähteellä on jo sama nimi. Tietolähteillä on oltava yksilöivät nimet. Valitse toinen nimi."
+#. 6ZBG5
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:233
+msgctxt "datasourcepage|extended_tip|DataSourcePage"
+msgid "Specifies a location for the address book file and a name under which the data source will be listed in the data source explorer."
+msgstr "Määritetään osoitekirjatiedoston sijainti ja nimi, jolla tietolähde näkyy tietolähdepuussa."
+
#. CWNrs
#: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:18
msgctxt "defaultfieldselectionpage|label1"
@@ -3127,21 +3157,16 @@ msgctxt "defaultfieldselectionpage|defaultselectionno"
msgid "No, one particular field is not going to be selected."
msgstr "Yhtään kenttää ei valita."
-#. CiCym
+#. XXEB7
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:14
msgctxt "fieldassignpage|label2"
msgid ""
"To incorporate the address data in your templates, %PRODUCTNAME has to know which fields contain which data.\n"
"\n"
-"For instance, you could have stored the e-mail addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
+"For instance, you could have stored the email addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
"\n"
"Click the button below to open another dialog where you can enter the settings for your data source."
msgstr ""
-"Jotta osoitetietojen yhdistäminen malleihin onnistuisi, %PRODUCTNAMEn on tiedettävä, missä kentissä on mitäkin tietoa.\n"
-"\n"
-"Sähköpostiosoitteet voivat olla esimerkiksi kentässä \"sähköposti\", \"s-posti\", \"email\", tms.\n"
-"\n"
-"Avaa alla olevaa painiketta napsauttamalla toinen valintaikkuna, johon voit syöttää tietolähteen asetukset."
#. RkyNf
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:37
@@ -3149,6 +3174,18 @@ msgctxt "fieldassignpage|assign"
msgid "Field Assignment"
msgstr "Kenttämääritys"
+#. 94fxb
+#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:45
+msgctxt "fieldassignpage|extended_tip|assign"
+msgid "Opens the Templates: Address Book Assignment dialog."
+msgstr "Avataan Osoitetiedot: kenttien määritys -valintaikkuna, joka on samanlainen kuinMallit: Osoitekirjan tehtävät ."
+
+#. CuPoK
+#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:76
+msgctxt "fieldassignpage|extended_tip|FieldAssignPage"
+msgid "Opens a dialog that allows you to specify the field assignment."
+msgstr "Avataan valintaikkuna, jossa voidaan tehdä kenttämääritys."
+
#. j8AYS
#: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:17
msgctxt "fieldlinkpage|desc"
@@ -3227,11 +3264,11 @@ msgctxt "gridfieldsselectionpage|label1"
msgid "Existing fields"
msgstr "Nykyiset kentät"
-#. ToNEj
+#. PDhUx
#: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:398
msgctxt "gridfieldsselectionpage|label2"
-msgid "Table element"
-msgstr "Taulukkoelementti"
+msgid "Table Element"
+msgstr ""
#. Xk7cV
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:53
@@ -3281,11 +3318,11 @@ msgctxt "groupradioselectionpage|label1"
msgid "Which _names do you want to give the option fields?"
msgstr "Miten haluat nimetä valintakentät?"
-#. 4skyv
+#. yR2Am
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:307
msgctxt "groupradioselectionpage|label2"
-msgid "Table element"
-msgstr "Taulukkoelementti"
+msgid "Table Element"
+msgstr ""
#. 3dtcD
#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:14
@@ -3305,8 +3342,14 @@ msgctxt "invokeadminpage|settings"
msgid "Settings"
msgstr "Asetukset"
+#. GNt8z
+#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:42
+msgctxt "invokeadminpage|extended_tip|settings"
+msgid "Calls a dialog in which you can enter additional settings."
+msgstr "Avataan valintaikkuna, jossa voidaan tehdä lisäasetuksia."
+
#. CAjBt
-#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:50
+#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:55
msgctxt "invokeadminpage|warning"
msgid ""
"The connection to the data source could not be established.\n"
@@ -3315,6 +3358,12 @@ msgstr ""
"Yhteyttä tietolähteeseen ei saatu.\n"
"Tarkista tehdyt asetukset ennen jatkamista tai valitse edelliseltä sivulta toinen osoitetietolähteen tyyppi."
+#. BgCsQ
+#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:75
+msgctxt "invokeadminpage|extended_tip|InvokeAdminPage"
+msgid "Allows you to enter additional settings for LDAP address data and other external data sources."
+msgstr "Toiminto sallii LDAP-osoitetietojen ja muiden ulkoisten tietolähteiden lisäasetukset."
+
#. MdQKb
#: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:41
msgctxt "optiondbfieldpage|label1"
@@ -3373,6 +3422,18 @@ msgstr ""
"Valitsemasi ulkoinen tietolähde sisältää useita osoitekirjoja.\n"
"Valitse osoitekirja, jota pääasiassa käytät:"
+#. YkkV4
+#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:76
+msgctxt "selecttablepage|extended_tip|table"
+msgid "Specifies the table that is to serve as the address book for the %PRODUCTNAME templates."
+msgstr "Määritetään taulu, joka toimii %PRODUCTNAME-mallien osoitekirjana."
+
+#. F6ySC
+#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:89
+msgctxt "selecttablepage|extended_tip|SelectTablePage"
+msgid "Specifies a table from the Seamonkey / Netscape address book source that is used as the address book in %PRODUCTNAME."
+msgstr "Määritellään taulu Seamonkey/Netscape-osoitekirjasta, jota käytetään %PRODUCTNAMEssa osoitekirjana."
+
#. bCndk
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:14
msgctxt "selecttypepage|label2"
@@ -3391,54 +3452,108 @@ msgctxt "selecttypepage|evolution"
msgid "Evolution"
msgstr "Evolution"
+#. Xsfrc
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:50
+msgctxt "selecttypepage|extended_tip|evolution"
+msgid "Select this option if you already use an address book in Evolution."
+msgstr "Tämä vaihtoehto valitaan, jos käytössä jo on osoitekirja Evolutionissa."
+
#. F6JYD
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:56
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:61
msgctxt "selecttypepage|groupwise"
msgid "Groupwise"
msgstr "Groupwise"
+#. eB6AA
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:71
+msgctxt "selecttypepage|extended_tip|groupwise"
+msgid "Select this option if you already use an address book in Groupwise."
+msgstr "Vaihtoehto valitaan, jos käytössä jo on osoitekirja Groupwisessä."
+
#. cuXRp
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:72
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:82
msgctxt "selecttypepage|evoldap"
msgid "Evolution LDAP"
msgstr "Evolution (LDAP)"
+#. 7ZtGX
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:92
+msgctxt "selecttypepage|extended_tip|evoldap"
+msgid "Select this option if you already use an address book in Evolution LDAP."
+msgstr "Vaihtoehto valitaan, jos käytössä jo on Evolution LDAP -osoitekirja."
+
#. hMBCk
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:88
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:103
msgctxt "selecttypepage|firefox"
msgid "Firefox"
msgstr "Firefox"
+#. xHVgK
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:113
+msgctxt "selecttypepage|extended_tip|firefox"
+msgid "Select this option if you already use an address book in Firefox or Iceweasel."
+msgstr "Tämä vaihtoehto valitaan, jos käytössä jo on osoitekirja Firefoxissa tai Iceweaselissa."
+
#. C4oTw
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:104
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:124
msgctxt "selecttypepage|thunderbird"
msgid "Thunderbird"
msgstr "Thunderbird"
+#. Aq64F
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:134
+msgctxt "selecttypepage|extended_tip|thunderbird"
+msgid "Select this option if you already use an address book in Thunderbird or Icedove."
+msgstr "Vaihtoehto valitaan, jos käytössä jo on osoitekirja Thunderbirdissä tai Icedovessa."
+
#. su4jz
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:120
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:145
msgctxt "selecttypepage|kde"
msgid "KDE address book"
msgstr "KDE:n osoitekirja"
+#. X5F45
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:155
+msgctxt "selecttypepage|extended_tip|kde"
+msgid "Select this option if you already use an address book in KDE Address book."
+msgstr "Tämä vaihtoehto valitaan, jos jo käytetään KDE-osoitekirjaa."
+
#. 2Psrm
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:136
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:166
msgctxt "selecttypepage|macosx"
msgid "Mac OS X address book"
msgstr "Mac OS X:n osoitekirja"
+#. DF5Kd
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:176
+msgctxt "selecttypepage|extended_tip|macosx"
+msgid "Select this option if you already use an address book in macOS Address book."
+msgstr ""
+
#. 3EnZE
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:152
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:187
msgctxt "selecttypepage|other"
msgid "Other external data source"
msgstr "Muu ulkoinen tietolähde"
+#. xvf2d
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:197
+msgctxt "selecttypepage|extended_tip|other"
+msgid "Select this option if you want to register another data source as address book in %PRODUCTNAME."
+msgstr "Tämä vaihtoehto valitaan, kun halutaan rekisteröidä joku muu tietolähde %PRODUCTNAME-osoitekirjaksi."
+
#. HyBth
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:170
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:210
msgctxt "selecttypepage|label1"
msgid "Select the type of your external address book:"
msgstr "Valitse ulkoisen osoitekirjan tyyppi:"
+#. xdzuR
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:230
+msgctxt "selecttypepage|extended_tip|SelectTypePage"
+msgid "This wizard registers an existing address book as a data source in %PRODUCTNAME."
+msgstr "Tällä ohjatulla toiminnolla rekisteröidään olemassa oleva osoitekirja %PRODUCTNAME-tietolähteeksi."
+
#. f33Eh
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:60
msgctxt "tableselectionpage|label3"
@@ -3691,6 +3806,12 @@ msgctxt "generalpage|custom3"
msgid "User-defined field _3"
msgstr "Käyttäjän määrittämä _3"
+#. x9s9K
+#: extensions/uiconfig/sbibliography/ui/generalpage.ui:617
+msgctxt "generalpage|extended_tip|GeneralPage"
+msgid "Insert, delete, edit, and organize records in the bibliography database."
+msgstr ""
+
#. 7BG4W
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:8
msgctxt "mappingdialog|MappingDialog"
@@ -3698,197 +3819,203 @@ msgid "Column Layout for Table “%1”"
msgstr "Taulun ”%1” sarakeasettelu"
#. ZttGm
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:109
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:106
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Lyhyt nimi"
#. PcPgF
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:123
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:120
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Tekijä(t)"
#. DBBiK
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:137
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Julkaisija"
#. 4TG3U
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:151
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:148
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Luku"
#. DZwft
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:165
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:162
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Toimittaja"
#. pEBaZ
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:222
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Tyyppi"
#. TxEfY
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:239
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:236
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Vuosi"
#. qLU7E
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:253
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:250
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Otsikko"
#. F26mM
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:303
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:300
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Osoite"
#. kBvqk
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:317
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:314
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN"
#. aeCGS
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:331
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:328
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Sivua"
#. N4Cx2
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:381
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:378
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Laitos"
#. CXnVD
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:407
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:404
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Kirjan otsikko"
#. FEe9P
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:421
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:418
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Osan numero"
#. T6Eu3
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:433
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:430
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Julkaisun laji"
#. KVHpY
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:483
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:480
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organisaatio"
#. GNoEJ
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:497
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:494
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instituutio"
#. ZU7AT
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:511
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Yliopisto"
#. AeYEo
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:561
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:558
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Raportin tyyppi"
#. NaFZM
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:575
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:572
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Kuukausi"
#. EacrE
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:613
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:610
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Aikakausjulkaisu"
#. 98xrV
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:627
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:624
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Luku"
#. ssYBx
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:641
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:638
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Julkaisusarja"
#. kGM4q
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:691
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:688
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Huomautus"
#. 8xMvD
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:705
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:702
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Muistiinpano"
#. t7JGr
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:719
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:716
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL-osoite"
#. STBDL
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:767
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:764
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Käyttäjän määrittämä _1"
#. FDtfJ
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:781
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:778
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Käyttäjän määrittämä _2"
#. EPoqo
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:795
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:792
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Käyttäjän määrittämä _3"
#. LzUki
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:806
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Käyttäjän määrittämä _4"
#. jY3cj
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:823
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:820
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Käyttäjän määrittämä _5"
#. wkCw6
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1035
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1032
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Sarakkeiden nimet"
+#. B7h7G
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1057
+msgctxt "mappingdialog|extended_tip|MappingDialog"
+msgid "Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the Data Source button on the record's Object bar."
+msgstr ""
+
#. k9B7a
#: extensions/uiconfig/sbibliography/ui/querydialog.ui:30
msgctxt "querydialog|ask"
@@ -3925,6 +4052,18 @@ msgctxt "toolbar|TBC_BT_COL_ASSIGN"
msgid "Column Arrangement"
msgstr "Sarakejärjestys"
+#. DGQhT
+#: extensions/uiconfig/sbibliography/ui/toolbar.ui:114
+msgctxt "toolbar|extended_tip|TBC_BT_COL_ASSIGN"
+msgid "Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the Data Source button on the record's Object bar."
+msgstr ""
+
+#. 8s8QS
+#: extensions/uiconfig/sbibliography/ui/toolbar.ui:125
+msgctxt "toolbar|extended_tip|toolbar"
+msgid "Insert, delete, edit, and organize records in the bibliography database."
+msgstr ""
+
#. AFbU5
#: extensions/uiconfig/scanner/ui/griddialog.ui:111
msgctxt "griddialog|resetTypeCombobox"
@@ -4003,11 +4142,11 @@ msgctxt "sanedialog|label6"
msgid "_Bottom:"
msgstr "Alareuna:"
-#. rj9GD
+#. YfU4m
#: extensions/uiconfig/scanner/ui/sanedialog.ui:275
msgctxt "sanedialog|label1"
-msgid "Scan area"
-msgstr "Skannausalue"
+msgid "Scan Area"
+msgstr ""
#. FZ7Vw
#: extensions/uiconfig/scanner/ui/sanedialog.ui:334
@@ -4153,26 +4292,32 @@ msgctxt "taborder|TabOrderDialog"
msgid "Tab Order"
msgstr "Sarkainjärjestys"
+#. bdEtz
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:150
+msgctxt "taborder|extended_tip|CTRLtree"
+msgid "Lists all controls in the form. These controls can be selected with the tab key in the given order from top to bottom."
+msgstr "Luettelo esittää lomakkeen kaikki ohjausobjektit. Nämä ohjausobjektit on valittavissa Sarkaimella annetussa järjestyksessä ylhäältä alas."
+
#. WGPX4
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:168
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:170
msgctxt "taborder|upB"
msgid "_Move Up"
msgstr "Siirrä ylemmäs"
#. LNZFB
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:182
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:184
msgctxt "taborder|downB"
msgid "Move _Down"
msgstr "Siirrä alemmas"
#. zAGWY
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:196
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:198
msgctxt "taborder|autoB"
msgid "_Automatic Sort"
msgstr "Automaattinen järjestys"
#. nQDDz
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:222
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:224
msgctxt "taborder|label2"
msgid "Controls"
msgstr "Ohjausobjektit"
diff --git a/source/fi/filter/messages.po b/source/fi/filter/messages.po
index e8d41a6dbd8..6473226f134 100644
--- a/source/fi/filter/messages.po
+++ b/source/fi/filter/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/fi/>\n"
@@ -305,341 +305,484 @@ msgctxt "pdfgeneralpage|all"
msgid "_All"
msgstr "Kaikki"
+#. QMgsn
+#: filter/uiconfig/ui/pdfgeneralpage.ui:55
+msgctxt "pdfgeneralpage|extended_tip|all"
+msgid "Exports all defined print ranges. If no print range is defined, exports the entire document."
+msgstr ""
+
#. NXztB
-#: filter/uiconfig/ui/pdfgeneralpage.ui:62
+#: filter/uiconfig/ui/pdfgeneralpage.ui:67
msgctxt "pdfgeneralpage|range"
msgid "_Pages:"
msgstr "Sivut:"
+#. ZdAZ9
+#: filter/uiconfig/ui/pdfgeneralpage.ui:82
+msgctxt "pdfgeneralpage|extended_tip|range"
+msgid "Exports the pages you type in the box."
+msgstr ""
+
#. WTSeS
-#: filter/uiconfig/ui/pdfgeneralpage.ui:83
+#: filter/uiconfig/ui/pdfgeneralpage.ui:93
msgctxt "pdfgeneralpage|selection"
msgid "_Selection"
msgstr "Valinta"
+#. RQeDb
+#: filter/uiconfig/ui/pdfgeneralpage.ui:104
+msgctxt "pdfgeneralpage|extended_tip|selection"
+msgid "Exports the current selection."
+msgstr ""
+
+#. qQrdx
+#: filter/uiconfig/ui/pdfgeneralpage.ui:125
+msgctxt "pdfgeneralpage|extended_tip|pages"
+msgid "Exports the pages you type in the box."
+msgstr ""
+
#. tFeCH
-#: filter/uiconfig/ui/pdfgeneralpage.ui:119
+#: filter/uiconfig/ui/pdfgeneralpage.ui:139
msgctxt "pdfgeneralpage|slides"
msgid "Slides:"
msgstr "Diat:"
#. 9Cyn8
-#: filter/uiconfig/ui/pdfgeneralpage.ui:128
+#: filter/uiconfig/ui/pdfgeneralpage.ui:148
msgctxt "pdfgeneralpage|viewpdf"
msgid "_View PDF after export"
msgstr "Näytä PDF-tiedosto viennin jälkeen"
#. aWj7F
-#: filter/uiconfig/ui/pdfgeneralpage.ui:147
+#: filter/uiconfig/ui/pdfgeneralpage.ui:167
msgctxt "pdfgeneralpage|selectedsheets"
msgid "_Selection/Selected sheet(s)"
msgstr "Valinta / valitut taulukot"
#. MXtmZ
-#: filter/uiconfig/ui/pdfgeneralpage.ui:162
+#: filter/uiconfig/ui/pdfgeneralpage.ui:182
msgctxt "pdfgeneralpage|label1"
msgid "Range"
msgstr "Alue"
#. WbQ5j
-#: filter/uiconfig/ui/pdfgeneralpage.ui:195
+#: filter/uiconfig/ui/pdfgeneralpage.ui:215
msgctxt "pdfgeneralpage|losslesscompress"
msgid "_Lossless compression"
msgstr "Häviötön pakkaus"
+#. 9ut6Q
+#: filter/uiconfig/ui/pdfgeneralpage.ui:226
+msgctxt "pdfgeneralpage|extended_tip|losslesscompress"
+msgid "Selects a lossless compression of images. All pixels are preserved."
+msgstr ""
+
#. D6f7R
-#: filter/uiconfig/ui/pdfgeneralpage.ui:213
+#: filter/uiconfig/ui/pdfgeneralpage.ui:238
msgctxt "pdfgeneralpage|reduceresolution"
msgid "_Reduce image resolution"
msgstr "Heikennä kuvatarkkuutta"
+#. bAtCV
+#: filter/uiconfig/ui/pdfgeneralpage.ui:251
+msgctxt "pdfgeneralpage|extended_tip|reduceresolution"
+msgid "Select to resample or down-size the images to a lower number of pixels per inch."
+msgstr ""
+
#. XHeTx
-#: filter/uiconfig/ui/pdfgeneralpage.ui:236
+#: filter/uiconfig/ui/pdfgeneralpage.ui:266
msgctxt "pdfgeneralpage|resolution"
msgid "75 DPI"
msgstr "75 DPI"
#. CXj4e
-#: filter/uiconfig/ui/pdfgeneralpage.ui:237
+#: filter/uiconfig/ui/pdfgeneralpage.ui:267
msgctxt "pdfgeneralpage|resolution"
msgid "150 DPI"
msgstr "150 DPI"
#. jZKqd
-#: filter/uiconfig/ui/pdfgeneralpage.ui:238
+#: filter/uiconfig/ui/pdfgeneralpage.ui:268
msgctxt "pdfgeneralpage|resolution"
msgid "300 DPI"
msgstr "300 DPI"
#. GsMsK
-#: filter/uiconfig/ui/pdfgeneralpage.ui:239
+#: filter/uiconfig/ui/pdfgeneralpage.ui:269
msgctxt "pdfgeneralpage|resolution"
msgid "600 DPI"
msgstr "600 DPI"
#. 5yTAM
-#: filter/uiconfig/ui/pdfgeneralpage.ui:240
+#: filter/uiconfig/ui/pdfgeneralpage.ui:270
msgctxt "pdfgeneralpage|resolution"
msgid "1200 DPI"
msgstr "1200 DPI"
#. r6npH
-#: filter/uiconfig/ui/pdfgeneralpage.ui:246
+#: filter/uiconfig/ui/pdfgeneralpage.ui:276
msgctxt "pdfgeneralpage|comboboxtext-entry"
msgid "75 DPI"
msgstr "75 DPI"
+#. SkTeA
+#: filter/uiconfig/ui/pdfgeneralpage.ui:284
+msgctxt "pdfgeneralpage|extended_tip|resolution"
+msgid "Select the target resolution for the images."
+msgstr ""
+
+#. mEbKx
+#: filter/uiconfig/ui/pdfgeneralpage.ui:306
+msgctxt "pdfgeneralpage|extended_tip|quality"
+msgid "Enter the quality level for JPEG compression."
+msgstr ""
+
#. FP56V
-#: filter/uiconfig/ui/pdfgeneralpage.ui:288
+#: filter/uiconfig/ui/pdfgeneralpage.ui:328
msgctxt "pdfgeneralpage|jpegcompress"
msgid "_JPEG compression"
msgstr "JPEG-pakkaus"
+#. PZCPi
+#: filter/uiconfig/ui/pdfgeneralpage.ui:338
+msgctxt "pdfgeneralpage|extended_tip|jpegcompress"
+msgid "Select a JPEG compression level. With a high quality level, almost all pixels are preserved. With a low quality level, some pixels are lost and artifacts are introduced, but file sizes are reduced."
+msgstr ""
+
#. ST3Rc
-#: filter/uiconfig/ui/pdfgeneralpage.ui:311
+#: filter/uiconfig/ui/pdfgeneralpage.ui:356
msgctxt "pdfgeneralpage|label6"
msgid "_Quality:"
msgstr "Laatu:"
#. cFwGA
-#: filter/uiconfig/ui/pdfgeneralpage.ui:337
+#: filter/uiconfig/ui/pdfgeneralpage.ui:382
msgctxt "pdfgeneralpage|label2"
msgid "Images"
msgstr "Kuvat"
#. NwjSn
-#: filter/uiconfig/ui/pdfgeneralpage.ui:370
+#: filter/uiconfig/ui/pdfgeneralpage.ui:415
msgctxt "pdfgeneralpage|watermark"
msgid "Sign with _watermark"
msgstr "Lisää vesileima"
#. JtBsL
-#: filter/uiconfig/ui/pdfgeneralpage.ui:398
+#: filter/uiconfig/ui/pdfgeneralpage.ui:443
msgctxt "pdfgeneralpage|watermarklabel"
msgid "Text:"
msgstr "Teksti:"
#. VfFZf
-#: filter/uiconfig/ui/pdfgeneralpage.ui:419
+#: filter/uiconfig/ui/pdfgeneralpage.ui:464
msgctxt "pdfgeneralpage|label3"
msgid "Watermark"
msgstr "Vesileima"
#. 2hSjJ
-#: filter/uiconfig/ui/pdfgeneralpage.ui:463
+#: filter/uiconfig/ui/pdfgeneralpage.ui:508
msgctxt "pdfgeneralpage|embed"
msgid "Hybrid PDF (em_bed ODF file)"
msgstr "Hybridi-PDF (sisällytä ODF-tiedosto)"
#. vzxG2
-#: filter/uiconfig/ui/pdfgeneralpage.ui:467
+#: filter/uiconfig/ui/pdfgeneralpage.ui:512
msgctxt "pdfgeneralpage|embed|tooltip_text"
msgid "Creates a PDF that is easily editable in %PRODUCTNAME"
msgstr "Luo PDF-tiedoston, jota voi helposti muokata %PRODUCTNAMEssa"
+#. 3tDFv
+#: filter/uiconfig/ui/pdfgeneralpage.ui:518
+msgctxt "pdfgeneralpage|extended_tip|embed"
+msgid "This setting enables you to export the document as a .pdf file containing two file formats: PDF and ODF."
+msgstr ""
+
#. RAvA6
-#: filter/uiconfig/ui/pdfgeneralpage.ui:479
+#: filter/uiconfig/ui/pdfgeneralpage.ui:529
msgctxt "pdfgeneralpage|tagged"
msgid "_Tagged PDF (add document structure)"
msgstr "Muotoilutunnisteellinen PDF (sisältää asiakirjan rakenteen)"
#. cAm8Z
-#: filter/uiconfig/ui/pdfgeneralpage.ui:483
+#: filter/uiconfig/ui/pdfgeneralpage.ui:533
msgctxt "pdfgeneralpage|tagged|tooltip_text"
msgid "Includes a document's content structure information in a PDF"
msgstr "Sisällyttää tietoja asiakirjan rakenteesta PDF-tiedostoon"
+#. Btxot
+#: filter/uiconfig/ui/pdfgeneralpage.ui:539
+msgctxt "pdfgeneralpage|extended_tip|tagged"
+msgid "Select to write PDF tags. This can increase file size by huge amounts."
+msgstr ""
+
#. pZK6z
-#: filter/uiconfig/ui/pdfgeneralpage.ui:495
+#: filter/uiconfig/ui/pdfgeneralpage.ui:550
msgctxt "pdfgeneralpage|forms"
msgid "_Create PDF form"
msgstr "Luo PDF-lomake"
#. 3Vg8V
-#: filter/uiconfig/ui/pdfgeneralpage.ui:499
+#: filter/uiconfig/ui/pdfgeneralpage.ui:554
msgctxt "pdfgeneralpage|forms|tooltip_text"
msgid "Creates a PDF with fields that can be filled out"
msgstr "Luo PDF-tiedoston, jossa olevia kenttiä voi täyttää"
+#. hmxuq
+#: filter/uiconfig/ui/pdfgeneralpage.ui:560
+msgctxt "pdfgeneralpage|extended_tip|forms"
+msgid "Choose to create a PDF form. This can be filled out and printed by the user of the PDF document."
+msgstr ""
+
#. B7zan
-#: filter/uiconfig/ui/pdfgeneralpage.ui:522
+#: filter/uiconfig/ui/pdfgeneralpage.ui:582
msgctxt "pdfgeneralpage|allowdups"
msgid "Allow duplicate field _names"
msgstr "Salli samannimiset kentät"
+#. D4MmM
+#: filter/uiconfig/ui/pdfgeneralpage.ui:591
+msgctxt "pdfgeneralpage|extended_tip|allowdups"
+msgid "Allows you to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names."
+msgstr ""
+
#. tkPCH
-#: filter/uiconfig/ui/pdfgeneralpage.ui:541
+#: filter/uiconfig/ui/pdfgeneralpage.ui:606
msgctxt "pdfgeneralpage|format"
msgid "FDF"
msgstr "FDF"
#. rfzrh
-#: filter/uiconfig/ui/pdfgeneralpage.ui:542
+#: filter/uiconfig/ui/pdfgeneralpage.ui:607
msgctxt "pdfgeneralpage|format"
msgid "PDF"
msgstr "PDF"
#. S7caE
-#: filter/uiconfig/ui/pdfgeneralpage.ui:543
+#: filter/uiconfig/ui/pdfgeneralpage.ui:608
msgctxt "pdfgeneralpage|format"
msgid "HTML"
msgstr "HTML"
#. HUzsi
-#: filter/uiconfig/ui/pdfgeneralpage.ui:544
+#: filter/uiconfig/ui/pdfgeneralpage.ui:609
msgctxt "pdfgeneralpage|format"
msgid "XML"
msgstr "XML"
+#. xbYYC
+#: filter/uiconfig/ui/pdfgeneralpage.ui:613
+msgctxt "pdfgeneralpage|extended_tip|format"
+msgid "Select the format of submitting forms from within the PDF file."
+msgstr ""
+
#. ECLBB
-#: filter/uiconfig/ui/pdfgeneralpage.ui:565
+#: filter/uiconfig/ui/pdfgeneralpage.ui:635
msgctxt "pdfgeneralpage|label7"
msgid "Submit _format:"
msgstr "Lähetysmuoto:"
#. hedQy
-#: filter/uiconfig/ui/pdfgeneralpage.ui:597
+#: filter/uiconfig/ui/pdfgeneralpage.ui:667
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive (P_DF/A, ISO 19005)"
msgstr "Arkisto (P_DF/A, ISO 19005)"
#. qQjPA
-#: filter/uiconfig/ui/pdfgeneralpage.ui:601
+#: filter/uiconfig/ui/pdfgeneralpage.ui:671
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
msgid "Creates an ISO 19005-2 compliant PDF file, ideal for long-term document preservation"
msgstr "Luo ISO 19005-2 -yhteensopivan PDF-tiedoston, ihanteellinen pitkäaikaissäilytystä varten"
+#. Zhi5M
+#: filter/uiconfig/ui/pdfgeneralpage.ui:677
+msgctxt "pdfgeneralpage|extended_tip|pdfa"
+msgid "Converts to the PDF/A-2b or PDF/A-1b format. This is defined as an electronic document file format for long term preservation. All fonts that were used in the source document will be embedded into the generated PDF file. PDF tags will be written."
+msgstr ""
+
#. jfwKw
-#: filter/uiconfig/ui/pdfgeneralpage.ui:651
+#: filter/uiconfig/ui/pdfgeneralpage.ui:726
msgctxt "pdfgeneralpage|pdfaversion"
msgid "PDF/A _version:"
msgstr "PDF/A-versio:"
#. RHQNg
-#: filter/uiconfig/ui/pdfgeneralpage.ui:685
+#: filter/uiconfig/ui/pdfgeneralpage.ui:760
msgctxt "pdfgeneralpage|pdfua"
msgid "U_niversal Accessibility (PDF/UA)"
msgstr ""
#. 4B3FD
-#: filter/uiconfig/ui/pdfgeneralpage.ui:689
+#: filter/uiconfig/ui/pdfgeneralpage.ui:764
msgctxt "pdfgeneralpage|pdfua|tooltip_text"
msgid "Creates a universal accessibility-compliant PDF file that follows the requirements of PDF/UA (ISO 14289) specifications."
msgstr ""
#. Drqkd
-#: filter/uiconfig/ui/pdfgeneralpage.ui:707
+#: filter/uiconfig/ui/pdfgeneralpage.ui:782
msgctxt "pdfgeneralpage|label4"
msgid "General"
msgstr "Yleiset"
-#. kAAHx
-#: filter/uiconfig/ui/pdfgeneralpage.ui:739
+#. dgtJ7
+#: filter/uiconfig/ui/pdfgeneralpage.ui:814
msgctxt "pdfgeneralpage|bookmarks"
-msgid "Export _bookmarks"
-msgstr "Vie kirjanmerkit"
+msgid "Export _outlines"
+msgstr ""
+
+#. qw9My
+#: filter/uiconfig/ui/pdfgeneralpage.ui:823
+msgctxt "pdfgeneralpage|extended_tip|bookmarks"
+msgid "Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Chapter Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document."
+msgstr ""
#. kQbPh
-#: filter/uiconfig/ui/pdfgeneralpage.ui:754
+#: filter/uiconfig/ui/pdfgeneralpage.ui:834
msgctxt "pdfgeneralpage|exportplaceholders"
msgid "Expo_rt placeholders"
msgstr "Vie paikanvaraajat"
#. D4zRb
-#: filter/uiconfig/ui/pdfgeneralpage.ui:769
+#: filter/uiconfig/ui/pdfgeneralpage.ui:849
msgctxt "pdfgeneralpage|comments"
msgid "_Comments as PDF annotations"
msgstr "_Huomautukset PDF-kommentteina"
+#. SijbK
+#: filter/uiconfig/ui/pdfgeneralpage.ui:858
+msgctxt "pdfgeneralpage|extended_tip|comments"
+msgid "Select to export comments of Writer and Calc documents as PDF annotations."
+msgstr ""
+
#. y9evS
-#: filter/uiconfig/ui/pdfgeneralpage.ui:784
+#: filter/uiconfig/ui/pdfgeneralpage.ui:869
msgctxt "pdfgeneralpage|emptypages"
msgid "Exp_ort automatically inserted blank pages"
msgstr "Vie automaattisesti lisätyt tyhjät sivut"
+#. ZkGWy
+#: filter/uiconfig/ui/pdfgeneralpage.ui:878
+msgctxt "pdfgeneralpage|extended_tip|emptypages"
+msgid "If switched on, automatically inserted blank pages are exported to the PDF file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not."
+msgstr ""
+
#. sHqKP
-#: filter/uiconfig/ui/pdfgeneralpage.ui:799
+#: filter/uiconfig/ui/pdfgeneralpage.ui:889
msgctxt "pdfgeneralpage|usereferencexobject"
msgid "Use reference XObjects"
msgstr "Käytä viittaus-XObjekteja"
#. 2K2cD
-#: filter/uiconfig/ui/pdfgeneralpage.ui:814
+#: filter/uiconfig/ui/pdfgeneralpage.ui:904
msgctxt "pdfgeneralpage|hiddenpages"
msgid "Export _hidden pages"
msgstr "Vie piilotetut sivut"
#. ghuXR
-#: filter/uiconfig/ui/pdfgeneralpage.ui:829
+#: filter/uiconfig/ui/pdfgeneralpage.ui:919
msgctxt "pdfgeneralpage|notes"
msgid "Export _notes pages"
msgstr "Vie muistiinpanosivut"
#. BGvC2
-#: filter/uiconfig/ui/pdfgeneralpage.ui:849
+#: filter/uiconfig/ui/pdfgeneralpage.ui:939
msgctxt "pdfgeneralpage|onlynotes"
msgid "Export onl_y notes pages"
msgstr "Vie vain muistiinpanosivut"
#. MpRUp
-#: filter/uiconfig/ui/pdfgeneralpage.ui:866
+#: filter/uiconfig/ui/pdfgeneralpage.ui:956
msgctxt "pdfgeneralpage|singlepagesheets"
msgid "Whole sheet export"
msgstr ""
#. AcPTB
-#: filter/uiconfig/ui/pdfgeneralpage.ui:887
+#: filter/uiconfig/ui/pdfgeneralpage.ui:977
msgctxt "pdfgeneralpage|label9"
msgid "Structure"
msgstr "Rakenne"
-#. QEAua
+#. f7vgf
#: filter/uiconfig/ui/pdflinkspage.ui:32
-#, fuzzy
msgctxt "pdflinkspage|export"
-msgid "Export bookmarks as named destinations"
-msgstr "Muunna kirjanmerkit nimetyksi näkymiksi"
+msgid "Export outlines as named destinations"
+msgstr ""
+
+#. BDf69
+#: filter/uiconfig/ui/pdflinkspage.ui:42
+msgctxt "pdflinkspage|extended_tip|export"
+msgid "Exports the current file in PDF format."
+msgstr "Käsiteltävä tiedosto viedään PDF-muodossa."
#. aCCLQ
-#: filter/uiconfig/ui/pdflinkspage.ui:48
+#: filter/uiconfig/ui/pdflinkspage.ui:53
#, fuzzy
msgctxt "pdflinkspage|convert"
msgid "_Convert document references to PDF targets"
msgstr "Muunna linkit toisiin asiakirjoihin PDF-linkeiksi"
+#. FEokC
+#: filter/uiconfig/ui/pdflinkspage.ui:63
+msgctxt "pdflinkspage|extended_tip|convert"
+msgid "Enable this checkbox to convert the URLs referencing other ODF files to PDF files with the same name. In the referencing URLs the extensions .odt, .odp, .ods, .odg, and .odm are converted to the extension .pdf."
+msgstr ""
+
#. 6Lyp3
-#: filter/uiconfig/ui/pdflinkspage.ui:64
+#: filter/uiconfig/ui/pdflinkspage.ui:74
#, fuzzy
msgctxt "pdflinkspage|exporturl"
msgid "Export _URLs relative to file system"
msgstr "Suhteelliset linkit paikallisten tiedostojen välillä"
+#. RcdUF
+#: filter/uiconfig/ui/pdflinkspage.ui:84
+msgctxt "pdflinkspage|extended_tip|exporturl"
+msgid "Enable this checkbox to export URLs to other documents as relative URLs in the file system. See \"relative hyperlinks\" in the Help."
+msgstr ""
+
#. biumY
-#: filter/uiconfig/ui/pdflinkspage.ui:86
+#: filter/uiconfig/ui/pdflinkspage.ui:101
msgctxt "pdflinkspage|label1"
msgid "General"
msgstr "Yleiset"
#. mGRBH
-#: filter/uiconfig/ui/pdflinkspage.ui:118
+#: filter/uiconfig/ui/pdflinkspage.ui:133
msgctxt "pdflinkspage|default"
msgid "Default mode"
msgstr "Oletustoiminta"
+#. bcgaz
+#: filter/uiconfig/ui/pdflinkspage.ui:143
+msgctxt "pdflinkspage|extended_tip|default"
+msgid "Links from your PDF document to other documents will be handled as it is specified in your operating system."
+msgstr ""
+
#. DNRK8
-#: filter/uiconfig/ui/pdflinkspage.ui:134
+#: filter/uiconfig/ui/pdflinkspage.ui:154
msgctxt "pdflinkspage|openpdf"
msgid "Open with PDF reader application"
msgstr "Avaa PDF-tiedostojen katselusovelluksessa"
+#. gmzoA
+#: filter/uiconfig/ui/pdflinkspage.ui:164
+msgctxt "pdflinkspage|extended_tip|openpdf"
+msgid "Cross-document links are opened with the PDF reader application that currently shows the document. The PDF reader application must be able to handle the specified file type inside the hyperlink."
+msgstr ""
+
#. wPem9
-#: filter/uiconfig/ui/pdflinkspage.ui:150
+#: filter/uiconfig/ui/pdflinkspage.ui:175
msgctxt "pdflinkspage|openinternet"
msgid "Open _with Internet browser"
msgstr "Avaa WWW-selaimessa"
+#. xfRr2
+#: filter/uiconfig/ui/pdflinkspage.ui:185
+msgctxt "pdflinkspage|extended_tip|openinternet"
+msgid "Cross-document links are opened with the Internet browser. The Internet browser must be able to handle the specified file type inside the hyperlink."
+msgstr ""
+
#. B9TGg
-#: filter/uiconfig/ui/pdflinkspage.ui:172
+#: filter/uiconfig/ui/pdflinkspage.ui:202
msgctxt "pdflinkspage|label5"
msgid "Cross-document Links"
msgstr "Asiakirjojen väliset linkit"
@@ -698,155 +841,221 @@ msgctxt "pdfsecuritypage|setpassword"
msgid "Set _Passwords…"
msgstr "Aseta salasanat…"
+#. C9DhC
+#: filter/uiconfig/ui/pdfsecuritypage.ui:40
+msgctxt "pdfsecuritypage|extended_tip|setpassword"
+msgid "Click to open a dialog where you enter the passwords."
+msgstr ""
+
#. 63szB
-#: filter/uiconfig/ui/pdfsecuritypage.ui:53
+#: filter/uiconfig/ui/pdfsecuritypage.ui:58
msgctxt "pdfsecuritypage|label5"
msgid "Open password set"
msgstr "Avaussalasana on asetettu"
#. 6ktYG
-#: filter/uiconfig/ui/pdfsecuritypage.ui:65
+#: filter/uiconfig/ui/pdfsecuritypage.ui:70
msgctxt "pdfsecuritypage|label6"
msgid "PDF document will be encrypted"
msgstr "PDF-asiakirja salataan"
#. pTAZC
-#: filter/uiconfig/ui/pdfsecuritypage.ui:88
+#: filter/uiconfig/ui/pdfsecuritypage.ui:93
msgctxt "pdfsecuritypage|label7"
msgid "No open password set"
msgstr "Avaussalasanaa ei ole asetettu"
#. fp3My
-#: filter/uiconfig/ui/pdfsecuritypage.ui:100
+#: filter/uiconfig/ui/pdfsecuritypage.ui:105
msgctxt "pdfsecuritypage|label8"
msgid "PDF document will not be encrypted"
msgstr "PDF-asiakirjaa ei salata"
#. aHC6v
-#: filter/uiconfig/ui/pdfsecuritypage.ui:123
+#: filter/uiconfig/ui/pdfsecuritypage.ui:128
msgctxt "pdfsecuritypage|label30"
msgid "PDF document will not be encrypted due to PDF/A export."
msgstr "PDF-asiakirjaa ei salata PDF/A-viennissä."
#. DsALB
-#: filter/uiconfig/ui/pdfsecuritypage.ui:147
+#: filter/uiconfig/ui/pdfsecuritypage.ui:152
msgctxt "pdfsecuritypage|label9"
msgid "Permission password set"
msgstr "Oikeuksien salasana on asetettu"
#. hRJpp
-#: filter/uiconfig/ui/pdfsecuritypage.ui:159
+#: filter/uiconfig/ui/pdfsecuritypage.ui:164
#, fuzzy
msgctxt "pdfsecuritypage|label11"
msgid "PDF document will be restricted"
msgstr "PDF-asiakirjan oikeuksia rajoitetaan"
#. L3oQx
-#: filter/uiconfig/ui/pdfsecuritypage.ui:182
+#: filter/uiconfig/ui/pdfsecuritypage.ui:187
msgctxt "pdfsecuritypage|label12"
msgid "No permission password set"
msgstr "Oikeuksien salasanaa ei ole asetettu"
#. s3RBF
-#: filter/uiconfig/ui/pdfsecuritypage.ui:194
+#: filter/uiconfig/ui/pdfsecuritypage.ui:199
#, fuzzy
msgctxt "pdfsecuritypage|label13"
msgid "PDF document will be unrestricted"
msgstr "PDF-asiakirjan oikeuksia ei rajoiteta"
#. 4jwu7
-#: filter/uiconfig/ui/pdfsecuritypage.ui:217
+#: filter/uiconfig/ui/pdfsecuritypage.ui:222
#, fuzzy
msgctxt "pdfsecuritypage|label14"
msgid "PDF document will not be restricted due to PDF/A export."
msgstr "PDF-asiakirjan käsittelyä ei rajoiteta PDF/A-viennissä."
#. 9CFqB
-#: filter/uiconfig/ui/pdfsecuritypage.ui:237
+#: filter/uiconfig/ui/pdfsecuritypage.ui:242
msgctxt "pdfsecuritypage|setpasswordstitle"
msgid "Set Passwords"
msgstr "Aseta salasanat"
#. FDKJa
-#: filter/uiconfig/ui/pdfsecuritypage.ui:254
+#: filter/uiconfig/ui/pdfsecuritypage.ui:259
msgctxt "pdfsecuritypage|label2"
msgid "File Encryption and Permission"
msgstr "Tiedoston salaus ja oikeudet"
#. tWAWA
-#: filter/uiconfig/ui/pdfsecuritypage.ui:292
+#: filter/uiconfig/ui/pdfsecuritypage.ui:297
msgctxt "pdfsecuritypage|printnone"
msgid "_Not permitted"
msgstr "Ei sallittu"
+#. R3Gvm
+#: filter/uiconfig/ui/pdfsecuritypage.ui:307
+msgctxt "pdfsecuritypage|extended_tip|printnone"
+msgid "Printing the document is not permitted."
+msgstr ""
+
#. kSfrd
-#: filter/uiconfig/ui/pdfsecuritypage.ui:308
+#: filter/uiconfig/ui/pdfsecuritypage.ui:318
msgctxt "pdfsecuritypage|printlow"
msgid "_Low resolution (150 dpi)"
msgstr "Alhainen resoluutio (150 dpi)"
+#. kB7dx
+#: filter/uiconfig/ui/pdfsecuritypage.ui:328
+msgctxt "pdfsecuritypage|extended_tip|printlow"
+msgid "The document can only be printed in low resolution (150 dpi). Not all PDF readers honor this setting."
+msgstr ""
+
#. CmQzT
-#: filter/uiconfig/ui/pdfsecuritypage.ui:324
+#: filter/uiconfig/ui/pdfsecuritypage.ui:339
msgctxt "pdfsecuritypage|printhigh"
msgid "_High resolution"
msgstr "Korkea resoluutio"
+#. iBC7m
+#: filter/uiconfig/ui/pdfsecuritypage.ui:349
+msgctxt "pdfsecuritypage|extended_tip|printhigh"
+msgid "The document can be printed in high resolution."
+msgstr ""
+
#. Gjpp4
-#: filter/uiconfig/ui/pdfsecuritypage.ui:346
+#: filter/uiconfig/ui/pdfsecuritypage.ui:366
msgctxt "pdfsecuritypage|label1"
msgid "Printing"
msgstr "Tulostus"
#. C6BHs
-#: filter/uiconfig/ui/pdfsecuritypage.ui:378
+#: filter/uiconfig/ui/pdfsecuritypage.ui:398
msgctxt "pdfsecuritypage|changenone"
msgid "No_t permitted"
msgstr "Ei sallittu"
+#. McdCx
+#: filter/uiconfig/ui/pdfsecuritypage.ui:408
+msgctxt "pdfsecuritypage|extended_tip|changenone"
+msgid "No changes of the content are permitted."
+msgstr ""
+
#. Vt6Zn
-#: filter/uiconfig/ui/pdfsecuritypage.ui:394
+#: filter/uiconfig/ui/pdfsecuritypage.ui:419
msgctxt "pdfsecuritypage|changeinsdel"
msgid "_Inserting, deleting, and rotating pages"
msgstr "Sivujen lisääminen, poistaminen ja kiertäminen"
+#. bpyjZ
+#: filter/uiconfig/ui/pdfsecuritypage.ui:429
+msgctxt "pdfsecuritypage|extended_tip|changeinsdel"
+msgid "Only inserting, deleting, and rotating pages is permitted."
+msgstr ""
+
#. dAmDo
-#: filter/uiconfig/ui/pdfsecuritypage.ui:410
+#: filter/uiconfig/ui/pdfsecuritypage.ui:440
msgctxt "pdfsecuritypage|changeform"
msgid "_Filling in form fields"
msgstr "Lomakekenttien täyttö"
+#. yXs9B
+#: filter/uiconfig/ui/pdfsecuritypage.ui:450
+msgctxt "pdfsecuritypage|extended_tip|changeform"
+msgid "Only filling in form fields is permitted."
+msgstr ""
+
#. zGE7J
-#: filter/uiconfig/ui/pdfsecuritypage.ui:426
+#: filter/uiconfig/ui/pdfsecuritypage.ui:461
msgctxt "pdfsecuritypage|changecomment"
msgid "_Commenting, filling in form fields"
msgstr "Kommentointi, lomakekenttien täyttö"
+#. aeLn4
+#: filter/uiconfig/ui/pdfsecuritypage.ui:471
+msgctxt "pdfsecuritypage|extended_tip|changecomment"
+msgid "Only commenting and filling in form fields is permitted."
+msgstr ""
+
#. uP8VW
-#: filter/uiconfig/ui/pdfsecuritypage.ui:442
+#: filter/uiconfig/ui/pdfsecuritypage.ui:482
msgctxt "pdfsecuritypage|changeany"
msgid "_Any except extracting pages"
msgstr "Kaikki paitsi sivujen kopiointi"
+#. 3RDPJ
+#: filter/uiconfig/ui/pdfsecuritypage.ui:492
+msgctxt "pdfsecuritypage|extended_tip|changeany"
+msgid "All changes are permitted, except extracting pages."
+msgstr ""
+
#. vLxXJ
-#: filter/uiconfig/ui/pdfsecuritypage.ui:464
+#: filter/uiconfig/ui/pdfsecuritypage.ui:509
msgctxt "pdfsecuritypage|label3"
msgid "Changes"
msgstr "Muutokset"
#. iJHWS
-#: filter/uiconfig/ui/pdfsecuritypage.ui:496
+#: filter/uiconfig/ui/pdfsecuritypage.ui:541
msgctxt "pdfsecuritypage|enablecopy"
msgid "Ena_ble copying of content"
msgstr "Salli sisällön kopiointi"
+#. WJuNa
+#: filter/uiconfig/ui/pdfsecuritypage.ui:551
+msgctxt "pdfsecuritypage|extended_tip|enablecopy"
+msgid "Select to enable copying of content to the clipboard."
+msgstr ""
+
#. 2EMgQ
-#: filter/uiconfig/ui/pdfsecuritypage.ui:512
+#: filter/uiconfig/ui/pdfsecuritypage.ui:562
msgctxt "pdfsecuritypage|enablea11y"
msgid "Enable text access for acce_ssibility tools"
msgstr "Salli saavutettavuustyökaluille pääsy tekstiin"
+#. cQrBt
+#: filter/uiconfig/ui/pdfsecuritypage.ui:572
+msgctxt "pdfsecuritypage|extended_tip|enablea11y"
+msgid "Select to enable text access for accessibility tools."
+msgstr ""
+
#. 2hi53
-#: filter/uiconfig/ui/pdfsecuritypage.ui:534
+#: filter/uiconfig/ui/pdfsecuritypage.ui:589
msgctxt "pdfsecuritypage|label4"
msgid "Content"
msgstr "Sisältö"
@@ -857,51 +1066,87 @@ msgctxt "pdfsignpage|label2"
msgid "Use this certificate to digitally sign PDF documents:"
msgstr "Käytä tätä varmennetta PDF-asiakirjojen sähköiseen allekirjoittamiseen:"
+#. EznHF
+#: filter/uiconfig/ui/pdfsignpage.ui:55
+msgctxt "pdfsignpage|extended_tip|cert"
+msgid "Allows you to select a certificate to be used for signing this PDF export."
+msgstr ""
+
#. xgYD9
-#: filter/uiconfig/ui/pdfsignpage.ui:66
+#: filter/uiconfig/ui/pdfsignpage.ui:71
msgctxt "pdfsignpage|select"
msgid "Select..."
msgstr "Valitse..."
+#. 8iktV
+#: filter/uiconfig/ui/pdfsignpage.ui:78
+msgctxt "pdfsignpage|extended_tip|select"
+msgid "Opens the Select Certificate dialog."
+msgstr "Avataan Valitse varmenne -valintaikkuna."
+
+#. UQz9i
+#: filter/uiconfig/ui/pdfsignpage.ui:131
+msgctxt "pdfsignpage|extended_tip|password"
+msgid "Enter the password used for protecting the private key associated with the selected certificate."
+msgstr ""
+
+#. 9NEtS
+#: filter/uiconfig/ui/pdfsignpage.ui:148
+msgctxt "pdfsignpage|extended_tip|location"
+msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank."
+msgstr ""
+
+#. uVShK
+#: filter/uiconfig/ui/pdfsignpage.ui:165
+msgctxt "pdfsignpage|extended_tip|contact"
+msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank."
+msgstr ""
+
+#. 5QBRv
+#: filter/uiconfig/ui/pdfsignpage.ui:182
+msgctxt "pdfsignpage|extended_tip|reason"
+msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank."
+msgstr ""
+
#. wHqcD
-#: filter/uiconfig/ui/pdfsignpage.ui:167
+#: filter/uiconfig/ui/pdfsignpage.ui:197
msgctxt "pdfsignpage|tsa"
msgid "None"
msgstr "Ei mitään"
#. VMoF3
-#: filter/uiconfig/ui/pdfsignpage.ui:179
+#: filter/uiconfig/ui/pdfsignpage.ui:209
msgctxt "pdfsignpage|label7"
msgid "Certificate password:"
msgstr "Varmenteen salasana:"
#. Syow2
-#: filter/uiconfig/ui/pdfsignpage.ui:193
+#: filter/uiconfig/ui/pdfsignpage.ui:223
msgctxt "pdfsignpage|label12"
msgid "Location:"
msgstr "Sijainti:"
#. AQkj6
-#: filter/uiconfig/ui/pdfsignpage.ui:207
+#: filter/uiconfig/ui/pdfsignpage.ui:237
msgctxt "pdfsignpage|label13"
msgid "Contact information:"
msgstr "Yhteystiedot:"
#. mvSG8
-#: filter/uiconfig/ui/pdfsignpage.ui:221
+#: filter/uiconfig/ui/pdfsignpage.ui:251
msgctxt "pdfsignpage|label14"
msgid "Reason:"
msgstr "Syy:"
#. Bbwq2
-#: filter/uiconfig/ui/pdfsignpage.ui:235
+#: filter/uiconfig/ui/pdfsignpage.ui:265
#, fuzzy
msgctxt "pdfsignpage|label15"
msgid "Time Stamp Authority:"
msgstr "Aikaleiman vahvistaja:"
#. YeAiB
-#: filter/uiconfig/ui/pdfsignpage.ui:259
+#: filter/uiconfig/ui/pdfsignpage.ui:289
msgctxt "pdfsignpage|label1"
msgid "Certificate"
msgstr "Varmenne"
@@ -912,83 +1157,149 @@ msgctxt "pdfuserinterfacepage|center"
msgid "_Center window on screen"
msgstr "Keskitä ikkuna näytöllä"
+#. fGFCM
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:55
+msgctxt "pdfuserinterfacepage|extended_tip|center"
+msgid "Select to generate a PDF file that is shown in a reader window centered on screen."
+msgstr ""
+
#. ZEPFF
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:61
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:66
msgctxt "pdfuserinterfacepage|resize"
msgid "_Resize window to initial page"
msgstr "Sovita ikkuna aloitussivuun"
+#. 8RErB
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:76
+msgctxt "pdfuserinterfacepage|extended_tip|resize"
+msgid "Select to generate a PDF file that is shown in a window displaying the whole initial page."
+msgstr ""
+
#. crBwn
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:77
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:87
msgctxt "pdfuserinterfacepage|open"
msgid "_Open in full screen mode"
msgstr "Avaa koko näytön tilassa"
+#. oWaHS
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:97
+msgctxt "pdfuserinterfacepage|extended_tip|open"
+msgid "Select to generate a PDF file that is shown in a full screen reader window in front of all other windows."
+msgstr ""
+
#. Cvzzi
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:93
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:108
msgctxt "pdfuserinterfacepage|display"
msgid "_Display document title"
msgstr "Näytä asiakirjan otsikko"
+#. tdVmB
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:118
+msgctxt "pdfuserinterfacepage|extended_tip|display"
+msgid "Select to generate a PDF file that is shown with the document title in the reader's title bar."
+msgstr ""
+
#. BtMjV
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:115
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:135
msgctxt "pdfuserinterfacepage|label1"
msgid "Window Options"
msgstr "Ikkunavalinnat"
#. hZQVm
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:146
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:166
msgctxt "pdfuserinterfacepage|toolbar"
msgid "Hide _toolbar"
msgstr "Piilota työkalurivi"
+#. eBE9L
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:176
+msgctxt "pdfuserinterfacepage|extended_tip|toolbar"
+msgid "Select to hide the reader's toolbar when the document is active."
+msgstr ""
+
#. YLEgH
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:162
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:187
msgctxt "pdfuserinterfacepage|menubar"
msgid "Hide _menubar"
msgstr "Piilota valikkorivi"
+#. qBG8G
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:197
+msgctxt "pdfuserinterfacepage|extended_tip|menubar"
+msgid "Select to hide the reader's menu bar when the document is active."
+msgstr ""
+
#. Aw2aq
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:178
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:208
msgctxt "pdfuserinterfacepage|window"
msgid "Hide _window controls"
msgstr "Piilota ikkunanhallintapainikkeet"
+#. EhwCr
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:218
+msgctxt "pdfuserinterfacepage|extended_tip|window"
+msgid "Select to hide the reader's controls when the document is active."
+msgstr ""
+
#. xm2Lh
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:200
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:235
msgctxt "pdfuserinterfacepage|label2"
msgid "User Interface Options"
msgstr "Käyttöliittymävalinnat"
#. SwDno
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:230
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:265
msgctxt "pdfuserinterfacepage|effects"
msgid "_Use transition effects"
msgstr "Käytä siirtymätehosteita"
+#. BMEGm
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:275
+msgctxt "pdfuserinterfacepage|extended_tip|effects"
+msgid "Select to export Impress slide transition effects to respective PDF effects."
+msgstr ""
+
#. JgwC9
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:252
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:292
msgctxt "pdfuserinterfacepage|label3"
msgid "Transitions"
msgstr "Siirtymät"
-#. NWbFN
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:284
+#. sUC8i
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:324
msgctxt "pdfuserinterfacepage|allbookmarks"
-msgid "_All bookmark levels"
-msgstr "Kaikki kirjanmerkkitasot"
+msgid "Show _All"
+msgstr ""
-#. FCDSJ
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:300
+#. XLd4F
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:334
+msgctxt "pdfuserinterfacepage|extended_tip|allbookmarks"
+msgid "Select to show all bookmark levels when the reader opens the PDF file."
+msgstr ""
+
+#. WzoF3
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:345
msgctxt "pdfuserinterfacepage|visiblebookmark"
-msgid "_Visible bookmark levels:"
-msgstr "Näkyvät kirjanmerkkitasot:"
+msgid "_Visible levels:"
+msgstr ""
+
+#. FqQPa
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:359
+msgctxt "pdfuserinterfacepage|extended_tip|visiblebookmark"
+msgid "Select to show bookmark levels down to the selected level when the reader opens the PDF file."
+msgstr ""
+
+#. NEDWP
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:378
+msgctxt "pdfuserinterfacepage|extended_tip|visiblelevel"
+msgid "Select to show bookmark levels down to the selected level when the reader opens the PDF file."
+msgstr ""
-#. 5cxoc
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:343
+#. x4kjV
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:398
msgctxt "pdfuserinterfacepage|label4"
-msgid "Bookmarks"
-msgstr "Kirjanmerkit"
+msgid "Collapse Outlines"
+msgstr ""
#. ibYBv
#: filter/uiconfig/ui/pdfviewpage.ui:51
@@ -996,100 +1307,190 @@ msgctxt "pdfviewpage|pageonly"
msgid "_Page only"
msgstr "Vain sivu"
-#. gkjEH
-#: filter/uiconfig/ui/pdfviewpage.ui:67
+#. NCgWy
+#: filter/uiconfig/ui/pdfviewpage.ui:61
+msgctxt "pdfviewpage|extended_tip|pageonly"
+msgid "Select to generate a PDF file that shows only the page contents."
+msgstr ""
+
+#. BLyYd
+#: filter/uiconfig/ui/pdfviewpage.ui:72
msgctxt "pdfviewpage|outline"
-msgid "_Bookmarks and page"
-msgstr "Kirjanmerkit ja sivu"
+msgid "_Outline and page"
+msgstr ""
+
+#. JAAHm
+#: filter/uiconfig/ui/pdfviewpage.ui:82
+msgctxt "pdfviewpage|extended_tip|outline"
+msgid "Select to generate a PDF file that shows a bookmarks palette and the page contents."
+msgstr ""
#. rT8gQ
-#: filter/uiconfig/ui/pdfviewpage.ui:83
+#: filter/uiconfig/ui/pdfviewpage.ui:93
msgctxt "pdfviewpage|thumbs"
msgid "_Thumbnails and page"
msgstr "Esikatselukuvat ja sivu"
+#. gDHqJ
+#: filter/uiconfig/ui/pdfviewpage.ui:103
+msgctxt "pdfviewpage|extended_tip|thumbs"
+msgid "Select to generate a PDF file that shows a thumbnails palette and the page contents."
+msgstr ""
+
#. EgKos
-#: filter/uiconfig/ui/pdfviewpage.ui:106
+#: filter/uiconfig/ui/pdfviewpage.ui:121
msgctxt "pdfviewpage|label4"
msgid "Open on pa_ge:"
msgstr "Avaa sivulta:"
+#. QrQ84
+#: filter/uiconfig/ui/pdfviewpage.ui:139
+msgctxt "pdfviewpage|extended_tip|page"
+msgid "Select to show the given page when the reader opens the PDF file."
+msgstr ""
+
#. MxznY
-#: filter/uiconfig/ui/pdfviewpage.ui:142
+#: filter/uiconfig/ui/pdfviewpage.ui:162
msgctxt "pdfviewpage|label2"
msgid "Panes"
msgstr "Paneelit"
#. jA3LD
-#: filter/uiconfig/ui/pdfviewpage.ui:174
+#: filter/uiconfig/ui/pdfviewpage.ui:194
msgctxt "pdfviewpage|fitdefault"
msgid "_Default"
msgstr "Oletus"
+#. vQNHv
+#: filter/uiconfig/ui/pdfviewpage.ui:204
+msgctxt "pdfviewpage|extended_tip|fitdefault"
+msgid "Select to generate a PDF file that shows the page contents without zooming. If the reader software is configured to use a zoom factor by default, the page shows with that zoom factor."
+msgstr ""
+
#. kqho7
-#: filter/uiconfig/ui/pdfviewpage.ui:190
+#: filter/uiconfig/ui/pdfviewpage.ui:215
msgctxt "pdfviewpage|fitwin"
msgid "_Fit in window"
msgstr "Sovita ikkunaan"
+#. Z6P6B
+#: filter/uiconfig/ui/pdfviewpage.ui:225
+msgctxt "pdfviewpage|extended_tip|fitwin"
+msgid "Select to generate a PDF file that shows the page zoomed to fit entirely into the reader's window."
+msgstr ""
+
#. gcStc
-#: filter/uiconfig/ui/pdfviewpage.ui:206
+#: filter/uiconfig/ui/pdfviewpage.ui:236
msgctxt "pdfviewpage|fitwidth"
msgid "Fit _width"
msgstr "Sovita leveys"
+#. FkxYn
+#: filter/uiconfig/ui/pdfviewpage.ui:246
+msgctxt "pdfviewpage|extended_tip|fitwidth"
+msgid "Select to generate a PDF file that shows the page zoomed to fit the width of the reader's window."
+msgstr ""
+
#. V6kwp
-#: filter/uiconfig/ui/pdfviewpage.ui:222
+#: filter/uiconfig/ui/pdfviewpage.ui:257
#, fuzzy
msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr "Sovita näkyvä"
+#. FD8Pp
+#: filter/uiconfig/ui/pdfviewpage.ui:267
+msgctxt "pdfviewpage|extended_tip|fitvis"
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgstr ""
+
#. NGpWy
-#: filter/uiconfig/ui/pdfviewpage.ui:243
+#: filter/uiconfig/ui/pdfviewpage.ui:283
msgctxt "pdfviewpage|fitzoom"
msgid "_Zoom factor:"
msgstr "Suurennuskerroin:"
+#. nQ4Du
+#: filter/uiconfig/ui/pdfviewpage.ui:296
+msgctxt "pdfviewpage|extended_tip|fitzoom"
+msgid "Select a given zoom factor when the reader opens the PDF file."
+msgstr ""
+
+#. BBoAW
+#: filter/uiconfig/ui/pdfviewpage.ui:316
+msgctxt "pdfviewpage|extended_tip|zoom"
+msgid "Select a given zoom factor when the reader opens the PDF file."
+msgstr ""
+
#. LQKDP
-#: filter/uiconfig/ui/pdfviewpage.ui:289
+#: filter/uiconfig/ui/pdfviewpage.ui:339
msgctxt "pdfviewpage|label3"
msgid "Magnification"
msgstr "Suurennus"
#. Eegkp
-#: filter/uiconfig/ui/pdfviewpage.ui:328
+#: filter/uiconfig/ui/pdfviewpage.ui:378
msgctxt "pdfviewpage|defaultlayout"
msgid "D_efault"
msgstr "Oletus"
+#. CtGeC
+#: filter/uiconfig/ui/pdfviewpage.ui:388
+msgctxt "pdfviewpage|extended_tip|defaultlayout"
+msgid "Select to generate a PDF file that shows the pages according to the layout setting of the reader software."
+msgstr ""
+
#. QBpan
-#: filter/uiconfig/ui/pdfviewpage.ui:344
+#: filter/uiconfig/ui/pdfviewpage.ui:399
msgctxt "pdfviewpage|singlelayout"
msgid "_Single page"
msgstr "Yksi sivu"
+#. 4PuqY
+#: filter/uiconfig/ui/pdfviewpage.ui:409
+msgctxt "pdfviewpage|extended_tip|singlelayout"
+msgid "Select to generate a PDF file that shows one page at a time."
+msgstr ""
+
#. HCgtG
-#: filter/uiconfig/ui/pdfviewpage.ui:360
+#: filter/uiconfig/ui/pdfviewpage.ui:420
msgctxt "pdfviewpage|contlayout"
msgid "_Continuous"
msgstr "Jatkuva"
+#. BRxps
+#: filter/uiconfig/ui/pdfviewpage.ui:430
+msgctxt "pdfviewpage|extended_tip|contlayout"
+msgid "Select to generate a PDF file that shows pages in a continuous vertical column."
+msgstr ""
+
#. n4i66
-#: filter/uiconfig/ui/pdfviewpage.ui:376
+#: filter/uiconfig/ui/pdfviewpage.ui:441
#, fuzzy
msgctxt "pdfviewpage|contfacinglayout"
msgid "C_ontinuous facing"
msgstr "Jatkuva vastakkaiset"
+#. YyCT7
+#: filter/uiconfig/ui/pdfviewpage.ui:451
+msgctxt "pdfviewpage|extended_tip|contfacinglayout"
+msgid "Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the right."
+msgstr ""
+
#. 4DFBW
-#: filter/uiconfig/ui/pdfviewpage.ui:392
+#: filter/uiconfig/ui/pdfviewpage.ui:462
msgctxt "pdfviewpage|firstonleft"
msgid "First page is _left"
msgstr "Ensimmäinen sivu on vasen"
+#. xWdBk
+#: filter/uiconfig/ui/pdfviewpage.ui:472
+msgctxt "pdfviewpage|extended_tip|firstonleft"
+msgid "Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the left. You must enable support for complex text layout on Language settings - Languages in the Options dialog box."
+msgstr ""
+
#. sYKod
-#: filter/uiconfig/ui/pdfviewpage.ui:414
+#: filter/uiconfig/ui/pdfviewpage.ui:489
msgctxt "pdfviewpage|label1"
msgid "Page Layout"
msgstr "Sivun asettelu"
@@ -1118,60 +1519,126 @@ msgctxt "testxmlfilter|exportbrowse"
msgid "Browse..."
msgstr "Selaa..."
+#. 6ZGrB
+#: filter/uiconfig/ui/testxmlfilter.ui:120
+msgctxt "testxmlfilter|extended_tip|exportbrowse"
+msgid "Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is opened in your default XML editor after transformation."
+msgstr ""
+
#. F8CJd
-#: filter/uiconfig/ui/testxmlfilter.ui:126
+#: filter/uiconfig/ui/testxmlfilter.ui:131
msgctxt "testxmlfilter|currentdocument"
msgid "Current Document"
msgstr "Nykyinen asiakirja"
+#. GRXCc
+#: filter/uiconfig/ui/testxmlfilter.ui:137
+msgctxt "testxmlfilter|extended_tip|currentdocument"
+msgid "The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the XML Filter output window."
+msgstr ""
+
+#. EPLxG
+#: filter/uiconfig/ui/testxmlfilter.ui:153
+msgctxt "testxmlfilter|extended_tip|exportxsltfile"
+msgid "Displays the file name of the XSLT filter that you entered on the Transformation tab page."
+msgstr "Esitetään se XSLT-suodattimen tiedostonimen, joka annettiin Muunnos-välilehdellä."
+
+#. 9HnMA
+#: filter/uiconfig/ui/testxmlfilter.ui:170
+msgctxt "testxmlfilter|extended_tip|currentfilename"
+msgid "Displays the file name of the document that you want to use to test the XSLT filter."
+msgstr "Esitetään sen asiakirjan tiedostonimi, jota halutaan käyttää kokeiltaessa XSLT-suodatinta."
+
#. b7FMe
-#: filter/uiconfig/ui/testxmlfilter.ui:171
+#: filter/uiconfig/ui/testxmlfilter.ui:191
msgctxt "testxmlfilter|label1"
msgid "Export"
msgstr "Vienti"
#. ANpSQ
-#: filter/uiconfig/ui/testxmlfilter.ui:207
+#: filter/uiconfig/ui/testxmlfilter.ui:227
msgctxt "testxmlfilter|label5"
msgid "XSLT for import"
msgstr "Tuonnin XSLT-muunnin"
#. aWFtZ
-#: filter/uiconfig/ui/testxmlfilter.ui:217
+#: filter/uiconfig/ui/testxmlfilter.ui:237
msgctxt "testxmlfilter|importbrowse"
msgid "Browse..."
msgstr "Selaa..."
+#. eR68F
+#: filter/uiconfig/ui/testxmlfilter.ui:243
+msgctxt "testxmlfilter|extended_tip|importbrowse"
+msgid "Opens a file selection dialog. The selected file is opened using the current XML import filter."
+msgstr ""
+
#. RGb9P
-#: filter/uiconfig/ui/testxmlfilter.ui:229
+#: filter/uiconfig/ui/testxmlfilter.ui:254
msgctxt "testxmlfilter|recentfile"
msgid "Recent File"
msgstr "Äskettäinen tiedosto"
+#. 2vFnT
+#: filter/uiconfig/ui/testxmlfilter.ui:260
+msgctxt "testxmlfilter|extended_tip|recentfile"
+msgid "Re-opens the document that was last opened with this dialog."
+msgstr ""
+
#. WRoGk
-#: filter/uiconfig/ui/testxmlfilter.ui:244
+#: filter/uiconfig/ui/testxmlfilter.ui:274
msgctxt "testxmlfilter|templateimport"
msgid "Template for import"
msgstr "Tuonnin asiakirjamalli"
+#. 75GJD
+#: filter/uiconfig/ui/testxmlfilter.ui:289
+msgctxt "testxmlfilter|extended_tip|importxsltfile"
+msgid "Displays the file name of the XSLT filter that you entered on the Transformation tab page."
+msgstr "Esitetään se XSLT-suodattimen tiedostonimen, joka annettiin Muunnos-välilehdellä."
+
#. UAfyw
-#: filter/uiconfig/ui/testxmlfilter.ui:265
+#: filter/uiconfig/ui/testxmlfilter.ui:300
msgctxt "testxmlfilter|displaysource"
msgid "Display source"
msgstr "Näytä lähdekoodi"
+#. CdCp5
+#: filter/uiconfig/ui/testxmlfilter.ui:309
+msgctxt "testxmlfilter|extended_tip|displaysource"
+msgid "Opens the XML source of the selected document in your default XML editor after importing."
+msgstr ""
+
#. AKfAy
-#: filter/uiconfig/ui/testxmlfilter.ui:283
+#: filter/uiconfig/ui/testxmlfilter.ui:323
msgctxt "testxmlfilter|label6"
msgid "Transform file"
msgstr "Muunna tiedosto"
+#. FdiNb
+#: filter/uiconfig/ui/testxmlfilter.ui:338
+msgctxt "testxmlfilter|extended_tip|importxslttemplate"
+msgid "Displays the file name of the template that you entered on the Transformation tab page."
+msgstr ""
+
+#. RHRHL
+#: filter/uiconfig/ui/testxmlfilter.ui:355
+msgctxt "testxmlfilter|extended_tip|recentfilename"
+msgid "Re-opens the document that was last opened with this dialog."
+msgstr ""
+
#. 4MaaP
-#: filter/uiconfig/ui/testxmlfilter.ui:329
+#: filter/uiconfig/ui/testxmlfilter.ui:379
msgctxt "testxmlfilter|label2"
msgid "Import"
msgstr "Tuonti"
+#. NsJor
+#: filter/uiconfig/ui/testxmlfilter.ui:410
+msgctxt "testxmlfilter|extended_tip|TestXMLFilterDialog"
+msgid "Tests the XSLT stylesheets used by the selected XML filter."
+msgstr "Kokeillaan XSLT-tyylilomakkeita, joita käytetään valitussa XML-suodattimessa."
+
#. DEJXN
#: filter/uiconfig/ui/warnpdfdialog.ui:19
msgctxt "warnpdfdialog|WarnPDFDialog"
@@ -1190,54 +1657,114 @@ msgctxt "xmlfiltersettings|XMLFilterSettingsDialog"
msgid "XML Filter Settings"
msgstr "XML-suodattimien asetukset"
+#. x9LGg
+#: filter/uiconfig/ui/xmlfiltersettings.ui:41
+msgctxt "xmlfiltersettings|extended_tip|help"
+msgid "Displays the help page for this dialog."
+msgstr "Ohje-painikkeella näytetään valintaikkunan ohjesivu."
+
+#. CmVSC
+#: filter/uiconfig/ui/xmlfiltersettings.ui:63
+msgctxt "xmlfiltersettings|extended_tip|close"
+msgid "Closes the dialog."
+msgstr "Suljetaan valintaikkuna."
+
#. VvrGU
-#: filter/uiconfig/ui/xmlfiltersettings.ui:103
+#: filter/uiconfig/ui/xmlfiltersettings.ui:110
msgctxt "xmlfiltersettings|header_name"
msgid "Name"
msgstr "Nimi"
#. D6uZS
-#: filter/uiconfig/ui/xmlfiltersettings.ui:116
+#: filter/uiconfig/ui/xmlfiltersettings.ui:123
msgctxt "xmlfiltersettings|header_type"
msgid "Type"
msgstr "Tyyppi"
+#. A6qWH
+#: filter/uiconfig/ui/xmlfiltersettings.ui:134
+msgctxt "xmlfiltersettings|extended_tip|filterlist"
+msgid "Select one or more filters, then click one of the buttons."
+msgstr "Valitse yksi tai useampia suodattimia ja napsauta sitten yhtä painikkeista."
+
#. VcMQo
-#: filter/uiconfig/ui/xmlfiltersettings.ui:144
+#: filter/uiconfig/ui/xmlfiltersettings.ui:156
msgctxt "xmlfiltersettings|new"
msgid "_New..."
msgstr "_Uusi..."
+#. 5Enmj
+#: filter/uiconfig/ui/xmlfiltersettings.ui:163
+msgctxt "xmlfiltersettings|extended_tip|new"
+msgid "Opens a dialog with the name of a new filter."
+msgstr "Avataan valintaikkuna uuden suodattimen nimelle."
+
#. W6Ju3
-#: filter/uiconfig/ui/xmlfiltersettings.ui:158
+#: filter/uiconfig/ui/xmlfiltersettings.ui:175
msgctxt "xmlfiltersettings|edit"
msgid "_Edit..."
msgstr "_Muokkaa..."
+#. K8XRa
+#: filter/uiconfig/ui/xmlfiltersettings.ui:182
+msgctxt "xmlfiltersettings|extended_tip|edit"
+msgid "Opens a dialog with the name of the selected file."
+msgstr "Avataan valintaikkuna valitun tiedoston nimelle."
+
#. DAoSK
-#: filter/uiconfig/ui/xmlfiltersettings.ui:172
+#: filter/uiconfig/ui/xmlfiltersettings.ui:194
msgctxt "xmlfiltersettings|test"
msgid "_Test XSLTs..."
msgstr "_Testaa XSLT:tä..."
+#. zFrBM
+#: filter/uiconfig/ui/xmlfiltersettings.ui:201
+msgctxt "xmlfiltersettings|extended_tip|test"
+msgid "Opens a dialog with the name of the selected file."
+msgstr "Avataan valintaikkuna valitun tiedoston nimelle."
+
#. FE7Za
-#: filter/uiconfig/ui/xmlfiltersettings.ui:186
+#: filter/uiconfig/ui/xmlfiltersettings.ui:213
msgctxt "xmlfiltersettings|delete"
msgid "_Delete..."
msgstr "_Poista..."
+#. bDixG
+#: filter/uiconfig/ui/xmlfiltersettings.ui:220
+msgctxt "xmlfiltersettings|extended_tip|delete"
+msgid "Deletes the selected file after you confirm the dialog that follows."
+msgstr ">Poistetaan valittu tiedosto vahvistuskyselyin."
+
#. DmuTA
-#: filter/uiconfig/ui/xmlfiltersettings.ui:200
+#: filter/uiconfig/ui/xmlfiltersettings.ui:232
msgctxt "xmlfiltersettings|save"
msgid "_Save as Package..."
msgstr "Tallenna pakettina..."
+#. tPh4b
+#: filter/uiconfig/ui/xmlfiltersettings.ui:239
+msgctxt "xmlfiltersettings|extended_tip|save"
+msgid "Displays a Save as dialog to save the selected file as an XSLT filter package (*.jar)."
+msgstr "Esille tulee Tallenna nimellä -valintaikkuna valitun tiedoston tallentamiseksi XSLT-suodatinpakettina (*.jar)."
+
#. CuahL
-#: filter/uiconfig/ui/xmlfiltersettings.ui:214
+#: filter/uiconfig/ui/xmlfiltersettings.ui:251
msgctxt "xmlfiltersettings|open"
msgid "_Open Package..."
msgstr "Avaa paketti..."
+#. D3FRp
+#: filter/uiconfig/ui/xmlfiltersettings.ui:258
+msgctxt "xmlfiltersettings|extended_tip|open"
+msgid "Displays an Open dialog to open a filter from an XSLT filter package (*.jar)."
+msgstr "Esille tulee Avaa -valintaikkuna suodattimen avaamiseksi XSLT-suodatinpaketista (*.jar)."
+
+#. bC6ha
+#: filter/uiconfig/ui/xmlfiltersettings.ui:293
+msgctxt "xmlfiltersettings|extended_tip|XMLFilterSettingsDialog"
+msgid "Opens the XML Filter Settings dialog, where you can create, edit, delete, and test filters to import and to export XML files."
+msgstr ""
+
#. rLZ5z
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:22
msgctxt "xmlfiltertabpagegeneral|label2"
@@ -1268,68 +1795,164 @@ msgctxt "xmlfiltertabpagegeneral|label6"
msgid "Comment_s:"
msgstr "Huomautukset:"
+#. rYNyn
+#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:98
+msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
+msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
+msgstr "Kirjoitetaan nimi, joka tulee näkymään XML-suodattimien asetukset -valintaikkunan luetteloruudussa."
+
+#. yTwyU
+#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:116
+msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
+msgid "Enter the file extension to use when you open a file without specifying a filter. %PRODUCTNAME uses the file extension to determine which filter to use."
+msgstr "Annetaan tiedostopääte, jota käytetään, kun tiedosto avataan suodatinta määrittämättä. %PRODUCTNAME käyttää tiedostopäätteitä käytettävän suodattimen määrittämiseen."
+
+#. fZvBA
+#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:134
+msgctxt "xmlfiltertabpagegeneral|extended_tip|interfacename"
+msgid "Enter the name that you want to display in the File type box in file dialogs."
+msgstr "Annetaan nimi, joka näkyy Tiedoston tyyppi-ruudussa tiedostojen valintaikkunoissa."
+
+#. BFUsA
+#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:157
+msgctxt "xmlfiltertabpagegeneral|extended_tip|application"
+msgid "Select the application that you want to use with the filter."
+msgstr "Valitaan sovellus, jota käytetään suodattimen kanssa."
+
+#. Gfrm2
+#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:181
+msgctxt "xmlfiltertabpagegeneral|extended_tip|description"
+msgid "Enter a comment (optional)."
+msgstr "Kirjoitetaan kommentti (valinnainen)."
+
+#. G632R
+#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:201
+msgctxt "xmlfiltertabpagegeneral|extended_tip|XmlFilterTabPageGeneral"
+msgid "Enter or edit general information for an XML filter."
+msgstr "Syötetään tai muokataan XML-suodattimen yleisiä tietoja."
+
#. FhD2n
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:23
msgctxt "xmlfiltertabpagetransformation|label2"
msgid "_DocType:"
msgstr "DocType:"
+#. x2ex7
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:42
+msgctxt "xmlfiltertabpagetransformation|extended_tip|doc"
+msgid "Enter the DOCTYPE of the XML file."
+msgstr "Annetaan XML-tiedoston DOCTYPE-määrite (dokumenttityyppi)."
+
#. J5c8A
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:50
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:55
msgctxt "xmlfiltertabpagetransformation|label4"
msgid "_XSLT for export:"
msgstr "Viennin XSLT-muunnin:"
#. GwzvD
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:62
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:67
msgctxt "xmlfiltertabpagetransformation|browseexport"
msgid "Brows_e..."
msgstr "Selaa..."
+#. QLd25
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:74
+msgctxt "xmlfiltertabpagetransformation|extended_tip|browseexport"
+msgid "Opens a file selection dialog."
+msgstr ""
+
#. oZGZS
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:77
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:87
msgctxt "xmlfiltertabpagetransformation|label5"
msgid "XSLT _for import:"
msgstr "Tuonnin XSLT-muunnin:"
#. UNKTt
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:89
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:99
msgctxt "xmlfiltertabpagetransformation|browseimport"
msgid "B_rowse..."
msgstr "Selaa..."
+#. TecWL
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:106
+msgctxt "xmlfiltertabpagetransformation|extended_tip|browseimport"
+msgid "Opens a file selection dialog."
+msgstr ""
+
#. 9nV9R
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:104
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:119
msgctxt "xmlfiltertabpagetransformation|label6"
msgid "Template for _import:"
msgstr "Tuonnin asiakirjamalli:"
#. MNLtB
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:116
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:131
msgctxt "xmlfiltertabpagetransformation|browsetemp"
msgid "Browse..."
msgstr "Selaa..."
+#. Dce3n
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:137
+msgctxt "xmlfiltertabpagetransformation|extended_tip|browsetemp"
+msgid "Opens a file selection dialog."
+msgstr ""
+
+#. sjWgJ
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:159
+msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltexport"
+msgid "If this is an export filter, enter the file name of the XSLT stylesheet that you want to use for exporting."
+msgstr "Vientisuodattimen kyseessä ollen annetaan sen XSLT-tyylilomakkeen nimi, jota käytetään viennissä."
+
+#. Xgroa
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:181
+msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltimport"
+msgid "If this is an import filter, enter the file name of the XSLT stylesheet that you want to use for importing."
+msgstr "Tuontisuodattimen kyseessä ollen annetaan sen XSLT-tyylilomakkeen nimi, jota käytetään tuonnissa."
+
+#. wRFNU
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:203
+msgctxt "xmlfiltertabpagetransformation|extended_tip|tempimport"
+msgid "Enter the name of the template that you want to use for importing. In the template, styles are defined to display XML tags."
+msgstr "Annetaan sen mallin nimi, jota käytetään tuonnissa. Mallissa tyylit on määritelty esittämään XML- muotoilukoodit."
+
#. XTDex
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:189
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:224
msgctxt "xmlfiltertabpagetransformation|filtercb"
msgid "The filter needs XSLT 2.0 processor"
msgstr "Tämä suodatin vaatii XSLT 2.0 -käsittelijän"
+#. hDv78
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:240
+msgctxt "xmlfiltertabpagetransformation|extended_tip|XmlFilterTabPageTransformation"
+msgid "Enter or edit file information for an XML filter."
+msgstr "Syötetään tai muokataan XML-suodattimen tiedostotietoja."
+
#. MCfGg
#: filter/uiconfig/ui/xsltfilterdialog.ui:8
msgctxt "xsltfilterdialog|XSLTFilterDialog"
msgid "XML Filter: %s"
msgstr "XML-suodatin: %s"
+#. bCZh2
+#: filter/uiconfig/ui/xsltfilterdialog.ui:62
+msgctxt "xsltfilterdialog|extended_tip|help"
+msgid "Displays the help page for this dialog."
+msgstr "Ohje-painikkeella näytetään valintaikkunan ohjesivu."
+
#. Cvy2d
-#: filter/uiconfig/ui/xsltfilterdialog.ui:121
+#: filter/uiconfig/ui/xsltfilterdialog.ui:126
msgctxt "xsltfilterdialog|general"
msgid "General"
msgstr "Yleistä"
#. peR3F
-#: filter/uiconfig/ui/xsltfilterdialog.ui:167
+#: filter/uiconfig/ui/xsltfilterdialog.ui:172
msgctxt "xsltfilterdialog|transformation"
msgid "Transformation"
msgstr "Muunnos"
+
+#. ocohs
+#: filter/uiconfig/ui/xsltfilterdialog.ui:198
+msgctxt "xsltfilterdialog|extended_tip|XSLTFilterDialog"
+msgid "Opens a dialog with the name of a new filter."
+msgstr "Avataan valintaikkuna uuden suodattimen nimelle."
diff --git a/source/fi/formula/messages.po b/source/fi/formula/messages.po
index 3d25c21a84e..6babc0595e9 100644
--- a/source/fi/formula/messages.po
+++ b/source/fi/formula/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-07-18 07:05+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/formulamessages/fi/>\n"
@@ -2627,56 +2627,104 @@ msgctxt "functionpage|label_search"
msgid "_Search"
msgstr "_Etsi"
+#. Pc52A
+#: formula/uiconfig/ui/functionpage.ui:44
+msgctxt "functionpage|extended_tip|search"
+msgid "Search for a part of the function name."
+msgstr ""
+
#. MbTAL
-#: formula/uiconfig/ui/functionpage.ui:54
+#: formula/uiconfig/ui/functionpage.ui:59
msgctxt "functionpage|label1"
msgid "_Category"
msgstr "Luokka"
#. WQC5A
-#: formula/uiconfig/ui/functionpage.ui:69
+#: formula/uiconfig/ui/functionpage.ui:74
msgctxt "functionpage|category"
msgid "Last Used"
msgstr "Viimeksi käytetty"
#. 6uomB
-#: formula/uiconfig/ui/functionpage.ui:70
+#: formula/uiconfig/ui/functionpage.ui:75
msgctxt "functionpage|category"
msgid "All"
msgstr "Kaikki"
+#. UX9BD
+#: formula/uiconfig/ui/functionpage.ui:79
+msgctxt "functionpage|extended_tip|category"
+msgid "Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below."
+msgstr ""
+
#. 7FZAh
-#: formula/uiconfig/ui/functionpage.ui:84
+#: formula/uiconfig/ui/functionpage.ui:94
msgctxt "functionpage|label2"
msgid "_Function"
msgstr "Funktio"
+#. TSCPY
+#: formula/uiconfig/ui/functionpage.ui:141
+msgctxt "functionpage|extended_tip|function"
+msgid "Displays the functions found under the selected category. Double-click to select a function."
+msgstr ""
+
+#. jY887
+#: formula/uiconfig/ui/functionpage.ui:155
+msgctxt "functionpage|extended_tip|FunctionPage"
+msgid "Opens the Function Wizard, which helps you to interactively create formulas."
+msgstr ""
+
#. GCYUY
#: formula/uiconfig/ui/parameter.ui:27
msgctxt "parameter|editdesc"
msgid "Function not known"
msgstr "Tuntematon funktio"
+#. CUAGC
+#: formula/uiconfig/ui/parameter.ui:219
+msgctxt "parameter|extended_tip|FX1"
+msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
+msgstr ""
+
+#. u3Zoo
+#: formula/uiconfig/ui/parameter.ui:235
+msgctxt "parameter|extended_tip|FX2"
+msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
+msgstr ""
+
+#. noEab
+#: formula/uiconfig/ui/parameter.ui:251
+msgctxt "parameter|extended_tip|FX3"
+msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
+msgstr ""
+
+#. M3LSb
+#: formula/uiconfig/ui/parameter.ui:267
+msgctxt "parameter|extended_tip|FX4"
+msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
+msgstr ""
+
#. 6GD3i
-#: formula/uiconfig/ui/parameter.ui:261
+#: formula/uiconfig/ui/parameter.ui:281
msgctxt "parameter|RB_ARG1|tooltip_text"
msgid "Select"
msgstr "Valitse"
#. YPW6d
-#: formula/uiconfig/ui/parameter.ui:273
+#: formula/uiconfig/ui/parameter.ui:293
msgctxt "parameter|RB_ARG2|tooltip_text"
msgid "Select"
msgstr "Valitse"
#. JDDDE
-#: formula/uiconfig/ui/parameter.ui:285
+#: formula/uiconfig/ui/parameter.ui:305
msgctxt "parameter|RB_ARG3|tooltip_text"
msgid "Select"
msgstr "Valitse"
#. ScEBw
-#: formula/uiconfig/ui/parameter.ui:297
+#: formula/uiconfig/ui/parameter.ui:317
msgctxt "parameter|RB_ARG4|tooltip_text"
msgid "Select"
msgstr "Valitse"
@@ -2686,3 +2734,9 @@ msgstr "Valitse"
msgctxt "structpage|label1"
msgid "_Structure"
msgstr "Rakenne"
+
+#. KGSPW
+#: formula/uiconfig/ui/structpage.ui:77
+msgctxt "structpage|extended_tip|struct"
+msgid "Displays a hierarchical representation of the current function."
+msgstr ""
diff --git a/source/fi/fpicker/messages.po b/source/fi/fpicker/messages.po
index 5e89eac26f6..75749fa4cb1 100644
--- a/source/fi/fpicker/messages.po
+++ b/source/fi/fpicker/messages.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-01-22 12:05+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/fpickermessages/fi/>\n"
@@ -91,103 +91,103 @@ msgstr ""
"Varmista, että se on kunnolla kiinnitetty ja yritä uudelleen."
#. D3iME
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:131
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:128
msgctxt "explorerfiledialog|connect_to_server"
msgid "Servers..."
msgstr "Palvelimet..."
#. ZqDfr
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:135
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:132
msgctxt "explorerfiledialog|connect_to_server|tooltip_text"
msgid "Connect To Server"
msgstr "Muodosta yhteys palvelimeen"
#. kaDnz
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:139
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:136
msgctxt "explorerfiledialog|connect_to_server-atkobject"
msgid "Connect To Server"
msgstr "Muodosta yhteys palvelimeen"
#. e8DSB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:196
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:193
msgctxt "explorerfiledialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr "Luo uusi kansio"
#. Lyb7g
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:202
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:199
msgctxt "explorerfiledialog|new_folder-atkobject"
msgid "Create New Folder"
msgstr "Luo uusi kansio"
#. X5SYh
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:264
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:261
msgctxt "explorerfiledialog|places"
msgid "Places"
msgstr "Sijainnit"
#. Upnsg
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:366
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:363
msgctxt "explorerfiledialog|name"
msgid "Name"
msgstr "Nimi"
#. CGq9e
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:386
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:383
msgctxt "explorerfiledialog|type"
msgid "Type"
msgstr "Tyyppi"
#. wDiXd
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:400
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:397
msgctxt "explorerfiledialog|size"
msgid "Size"
msgstr "Koko"
#. CDqza
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:414
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:411
msgctxt "explorerfiledialog|date"
msgid "Date modified"
msgstr "Muokattu"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:583
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Tiedoston nimi:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:612
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:609
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "Tiedoston tyyppi:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:674
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:671
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Kirjoitussuojattu"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:697
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:694
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Tallenna salasanalla"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:711
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:708
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "Automaattinen tiedoston tunniste"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:725
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:722
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Muokkaa suodattimen asetuksia"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:751
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Salaa GPG-avaimella"
diff --git a/source/fi/helpcontent2/source/text/sbasic/python.po b/source/fi/helpcontent2/source/text/sbasic/python.po
index 48f37bc311e..82bb276453b 100644
--- a/source/fi/helpcontent2/source/text/sbasic/python.po
+++ b/source/fi/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: 2020-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1831,13 +1831,13 @@ msgctxt ""
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."
msgstr ""
-#. DmmbY
+#. Dd2YW
#: python_listener.xhp
msgctxt ""
"python_listener.xhp\n"
"N0388\n"
"help.text"
-msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behaviour. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls."
+msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behavior. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls."
msgstr ""
#. UVzsE
diff --git a/source/fi/helpcontent2/source/text/sbasic/shared.po b/source/fi/helpcontent2/source/text/sbasic/shared.po
index a1984e95013..8abc9604e59 100644
--- a/source/fi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fi/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-14 20:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/fi/>\n"
@@ -529,6 +529,15 @@ msgctxt ""
msgid "Transparent white"
msgstr "läpikuultavan valkoinen"
+#. sdV2V
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id631529990528928\n"
+"help.text"
+msgid "Open <item type=\"menuitem\">Tools - Macros - Organize dialogs...</item> and select <item type=\"menuitem\">%PRODUCTNAME Dialogs</item> container."
+msgstr ""
+
#. C3yvQ
#: 00000003.xhp
msgctxt ""
@@ -601,6 +610,15 @@ msgctxt ""
msgid "<variable id=\"functexample\">Example:</variable>"
msgstr ""
+#. TV2YL
+#: 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>"
+msgstr ""
+
#. CGSvh
#: 00000003.xhp
msgctxt ""
@@ -2410,14 +2428,23 @@ msgctxt ""
msgid "String Variables"
msgstr "Merkkijonomuuttujat"
-#. ft56J
+#. zes9e
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id3151393\n"
"help.text"
-msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
-msgstr "Merkkijonomuuttujissa (String) voi olla enintään 65 535 merkkiä pitkiä merkkijonoja. Jokainen merkki on tallennettu sitä vastaavana Unicode-arvona. Merkkijonomuuttujat ovat sopivia tekstinkäsittelyyn ohjelmissa ja tilapäisiksi varastoiksi tulostumattomille merkeille aina 64 kt jonoihin asti. String-muuttujien muistin tarve on riippuvainen merkkijonon pituudesta. Tyypin määritysmerkkinä on \"$\"."
+msgid "String variables can hold character strings with up to 2,147,483,648 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 2 Gbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+msgstr ""
+
+#. RBcLt
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id381599081637549\n"
+"help.text"
+msgid "In BASIC String functions, the first character of the string has index 1."
+msgstr ""
#. wDbuF
#: 01020100.xhp
@@ -3166,14 +3193,14 @@ msgctxt ""
msgid "Modules"
msgstr "Moduulit"
-#. RxyG8
+#. FFvGa
#: 01020500.xhp
msgctxt ""
"01020500.xhp\n"
"par_id3156441\n"
"help.text"
-msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
-msgstr "Moduulissa on SUB- ja FUNCTION-rutiinit sekä muuttujien määrittelyt. Yhteen moduuliin tallennettavan ohjelman enimmäispituuden rajana on 64 KiB. Jos tilaa tarvitaan enemmän, $[officename] Basic-projekti voidaan jakaa useiden moduulien kesken ja sitten tallentaa ne yhteen kirjastoon."
+msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 kB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
+msgstr ""
#. oo2bB
#: 01020500.xhp
@@ -3310,14 +3337,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>tallennus;Basic-koodi</bookmark_value><bookmark_value>lataus;Basic-koodi</bookmark_value><bookmark_value>Basic-muokkain</bookmark_value><bookmark_value>navigointi;Basic-projekteissa</bookmark_value><bookmark_value>pitkät rivit;Basic-muokkaimessa</bookmark_value><bookmark_value>tekstirivit;Basic-muokkaimessa</bookmark_value><bookmark_value>jatkaminen;pitkät rivit muokkaimessa</bookmark_value>"
-#. r7hMB
+#. jdhKC
#: 01030200.xhp
msgctxt ""
"01030200.xhp\n"
"hd_id3147264\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
-msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">Basic-muokkain</link>"
+msgid "<variable id=\"thebasiceditorh1\"><link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link></variable>"
+msgstr ""
#. dSemx
#: 01030200.xhp
@@ -4282,50 +4309,50 @@ msgctxt ""
msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
msgstr "Moduuli tai valintaikkuna siirtämiseksi toiseen asiakirjaan napsauta vastaavaa objektia luettelossa ja vedä se tarkoitettuun paikkaan. Vaakaviiva osoittaa nykyisen objektin kohdesijaintia vedettäessä. Painamalla <switchinline select=\"sys\"><caseinline select=\"MAC\">Komento</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-näppäintä vedettäessä objekti tulee kopioiduksi siirtämisen asemesta."
-#. FiYz2
+#. 8AfAv
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"tit\n"
"help.text"
-msgid "Event-Driven Macros"
-msgstr "Tapahtumaohjatut makrot"
+msgid "Document Event-Driven Macros"
+msgstr ""
-#. BHSko
+#. mRxGZ
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"bm_id3154581\n"
"help.text"
-msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
-msgstr "<bookmark_value>poistaminen; makrojen kytkeminen tapahtumiin</bookmark_value> <bookmark_value>makrot; kytkeminen tapahtumiin</bookmark_value> <bookmark_value>kytkeminen tapahtumiin, makrot</bookmark_value> <bookmark_value>tapahtumat; makrojen kytkeminen</bookmark_value>"
+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>API; XDocumentEventListener</bookmark_value>"
+msgstr ""
-#. ZYLfF
+#. 7uCwS
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"hd_id3147348\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
-msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Tapahtumaohjatut makrot</link>"
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Document Event-Driven Macros</link>"
+msgstr ""
-#. CNDe6
+#. LRvA8
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "This section describes how to assign Basic programs to program events."
-msgstr "Lyhyesti: tässä osiossa kuvataan, miten kytketään Basic-ohjelmia (sovellus)ohjelman tapahtumiin."
+msgid "This section describes how to assign scripts to application, document or form events."
+msgstr ""
-#. SDAQu
+#. 3G8fP
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3149263\n"
"help.text"
-msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
-msgstr "Makro voi käynnistyä tietyn ohjelmistotapahtuman ilmentyessä liittämällä eli kytkemällä tarkoitettu makro tapahtumaan. Oheinen taulukko antaa tiivistelmän ohjelmatapahtumista ja siitä, missä vaiheessa liitetty makro suoritetaan."
+msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of document events and at what point an assigned macro is executed."
+msgstr ""
#. zBhWV
#: 01040000.xhp
@@ -4345,32 +4372,41 @@ msgctxt ""
msgid "An assigned macro is executed..."
msgstr "Kytketty makro suoritetaan ..."
-#. PFpKw
+#. e4Pjb
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145809\n"
+"help.text"
+msgid "routine"
+msgstr ""
+
+#. WtaR8
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3149379\n"
"help.text"
-msgid "Program Start"
-msgstr "Sovelluksen käynnistys"
+msgid "Start Application"
+msgstr ""
-#. WGtYg
+#. otwcA
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "... after a $[officename] application is started."
-msgstr "... $[officename]-sovelluksen käynnistymisen jälkeen."
+msgid "...after a $[officename] application is started."
+msgstr ""
-#. zvpGy
+#. zjA7c
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3146914\n"
"help.text"
-msgid "Program End"
-msgstr "Sovelluksen sulkeminen"
+msgid "Close Application"
+msgstr ""
#. iwsSq
#: 01040000.xhp
@@ -4381,14 +4417,32 @@ msgctxt ""
msgid "...before a $[officename] application is terminated."
msgstr "...ennen $[officename]-sovelluksen päättymistä."
-#. FGd5M
+#. DZHzW
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id151599831705811\n"
+"help.text"
+msgid "Document created"
+msgstr ""
+
+#. KAZDF
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id501599831822339\n"
+"help.text"
+msgid "...New document created with <emph>File - New</emph> or with the <emph>New</emph> icon. Note that this event also fires when Basic IDE opens."
+msgstr ""
+
+#. HBjid
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3145150\n"
"help.text"
-msgid "Create Document"
-msgstr "Asiakirjan luominen"
+msgid "New Document"
+msgstr ""
#. fkuXY
#: 01040000.xhp
@@ -4399,6 +4453,24 @@ msgctxt ""
msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
msgstr "...sen jälkeen, kun asiakirja on luotu <emph>Tiedosto - Uusi</emph> -komennolla tai <emph>Uusi</emph>-kuvakkeella."
+#. BYGJY
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id161599836960401\n"
+"help.text"
+msgid "Document loading finished"
+msgstr ""
+
+#. jCGwP
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id721599836993145\n"
+"help.text"
+msgid "...before a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+msgstr ""
+
#. F352r
#: 01040000.xhp
msgctxt ""
@@ -4417,41 +4489,140 @@ msgctxt ""
msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
msgstr "...sen jälkeen, kun asiakirja on avattu <emph>Tiedosto - Avaa</emph> -komennolla tai <emph>Avaa</emph> -kuvakkeella."
-#. VUPBD
+#. H2Uom
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3153266\n"
+"par_id3159171\n"
"help.text"
-msgid "Save Document As"
-msgstr "Tallenna asiakirja nimellä"
+msgid "Document is going to be closed"
+msgstr ""
-#. qMrvw
+#. CvPgm
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3150208\n"
+"par_id3146868\n"
"help.text"
-msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
-msgstr "...ennen kuin asiakirja on tallennettu määrätyllä nimellä (komennoilla <emph>Tiedosto - Tallenna nimellä</emph> tai <emph>Tiedosto - Tallenna</emph> tai sitten <emph>Tallenna</emph>-kuvakkeella, jos asiakirjaa ei ole vielä nimetty)."
+msgid "...before a document is closed."
+msgstr "...ennen kuin asiakirja suljetaan."
-#. wacHA
+#. kLQvC
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3158215\n"
+"par_id3159097\n"
"help.text"
-msgid "Document has been saved as"
-msgstr "Asiakirja on tallennettu nimellä"
+msgid "Document closed"
+msgstr "Asiakirja suljettu"
-#. G2CqP
+#. DNYcy
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3150980\n"
+"par_id3148606\n"
"help.text"
-msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
-msgstr "... sen jälkeen kun asiakirja on tallennettu määrätyllä nimellä (komennoilla <emph>Tiedosto - Tallenna nimellä</emph> tai <emph>Tiedosto - Tallenna</emph> tai sitten <emph>Tallenna</emph>-kuvakkeella, jos asiakirjaa ei ole vielä nimetty)."
+msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
+msgstr "...asiakirjan sulkemisen jälkeen. \"Tallenna asiakirja\" -tapahtuma voi esiintyä myös, kun asiakirja tallennetaan ennen sulkemista!"
+
+#. iMPCi
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id391600157320922\n"
+"help.text"
+msgid "-no UI-"
+msgstr ""
+
+#. F46jE
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id981599837681979\n"
+"help.text"
+msgid "View created"
+msgstr ""
+
+#. 77CWX
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id281599838210270\n"
+"help.text"
+msgid "Document is displayed. Note that this event also happens when a document is duplicated."
+msgstr ""
+
+#. CDwGy
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id511599837683562\n"
+"help.text"
+msgid "View is going to be closed"
+msgstr ""
+
+#. EtV6o
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id331599838046012\n"
+"help.text"
+msgid "Document layout is getting removed."
+msgstr ""
+
+#. 7FemV
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id951599837684882\n"
+"help.text"
+msgid "View closed"
+msgstr ""
+
+#. qGdPR
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id51599837816122\n"
+"help.text"
+msgid "Document layout is cleared prior to the document closure."
+msgstr ""
+
+#. eovzZ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3144772\n"
+"help.text"
+msgid "Activate Document"
+msgstr "Asiakirjan käyttöönotto"
+
+#. w5v7V
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149442\n"
+"help.text"
+msgid "...after a document is brought to the foreground."
+msgstr "...sen jälkeen kun asiakirja on otettu työstettäväksi."
+
+#. t2QSQ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150888\n"
+"help.text"
+msgid "Deactivate Document"
+msgstr "Poista asiakirja käytöstä"
+
+#. guqXK
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154060\n"
+"help.text"
+msgid "...after another document is brought to the foreground."
+msgstr "...sen jälkeen kun toinen asiakirja on otettu työstettäväksi"
#. MvDXG
#: 01040000.xhp
@@ -4489,131 +4660,329 @@ msgctxt ""
msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
msgstr "...sen jälkeen kun asiakirja on tallennettu <emph>Tiedosto - Tallenna</emph> -komennolla tai <emph>Tallenna</emph>-kuvakkeella, edellyttäen, että asiakirjalla on jo tiedostonimi."
-#. prVye
+#. 7FEpD
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3159171\n"
+"par_id161599838976700\n"
"help.text"
-msgid "Document is closing"
-msgstr "Asiakirjaa ollaan sulkemassa"
+msgid "Saving of document failed"
+msgstr ""
-#. CvPgm
+#. FnDEp
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3146868\n"
+"par_id391599838979652\n"
"help.text"
-msgid "...before a document is closed."
-msgstr "...ennen kuin asiakirja suljetaan."
+msgid "Document could not be saved."
+msgstr ""
-#. kLQvC
+#. VUPBD
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3159097\n"
+"par_id3153266\n"
"help.text"
-msgid "Document closed"
-msgstr "Asiakirja suljettu"
+msgid "Save Document As"
+msgstr "Tallenna asiakirja nimellä"
-#. DNYcy
+#. qMrvw
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3148606\n"
+"par_id3150208\n"
"help.text"
-msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
-msgstr "...asiakirjan sulkemisen jälkeen. \"Tallenna asiakirja\" -tapahtuma voi esiintyä myös, kun asiakirja tallennetaan ennen sulkemista!"
+msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "...ennen kuin asiakirja on tallennettu määrätyllä nimellä (komennoilla <emph>Tiedosto - Tallenna nimellä</emph> tai <emph>Tiedosto - Tallenna</emph> tai sitten <emph>Tallenna</emph>-kuvakkeella, jos asiakirjaa ei ole vielä nimetty)."
-#. eovzZ
+#. wacHA
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3144772\n"
+"par_id3158215\n"
"help.text"
-msgid "Activate Document"
-msgstr "Asiakirjan käyttöönotto"
+msgid "Document has been saved as"
+msgstr "Asiakirja on tallennettu nimellä"
-#. w5v7V
+#. G2CqP
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3149442\n"
+"par_id3150980\n"
"help.text"
-msgid "...after a document is brought to the foreground."
-msgstr "...sen jälkeen kun asiakirja on otettu työstettäväksi."
+msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr "... sen jälkeen kun asiakirja on tallennettu määrätyllä nimellä (komennoilla <emph>Tiedosto - Tallenna nimellä</emph> tai <emph>Tiedosto - Tallenna</emph> tai sitten <emph>Tallenna</emph>-kuvakkeella, jos asiakirjaa ei ole vielä nimetty)."
-#. t2QSQ
+#. 7BDQa
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3150888\n"
+"par_id561599839702598\n"
"help.text"
-msgid "Deactivate Document"
-msgstr "Poista asiakirja käytöstä"
+msgid "'Save As' has failed"
+msgstr ""
-#. guqXK
+#. FGnZt
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3154060\n"
+"par_id951599840240048\n"
"help.text"
-msgid "...after another document is brought to the foreground."
-msgstr "...sen jälkeen kun toinen asiakirja on otettu työstettäväksi"
+msgid "Document could not be saved."
+msgstr ""
-#. xAAJD
+#. 9PEDi
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3152384\n"
+"par_id851599839190548\n"
"help.text"
-msgid "Print Document"
-msgstr "Asiakirjan tulostaminen"
+msgid "-no UI-"
+msgstr ""
-#. KHDSZ
+#. FsrLe
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3152873\n"
+"par_id961599839198859\n"
"help.text"
-msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
-msgstr "...<emph>Tulosta</emph>-valintaikkunan sulkemisen jälkeen, mutta ennen kuin varsinainen tulostusprosessi alkaa."
+msgid "When the document disk location has changed, for example after a <emph>File - Save As...</emph> action."
+msgstr ""
-#. 7fBrq
+#. n5TCf
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3159227\n"
+"par_id501600150804809\n"
"help.text"
-msgid "JavaScript run-time error"
-msgstr "JavaScriptin ajonaikainen virhe"
+msgid "Storing or exporting copy of document"
+msgstr ""
-#. aHrNm
+#. wP2PH
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3145362\n"
+"par_id471610080505705\n"
"help.text"
-msgid "...when a JavaScript run-time error occurs."
-msgstr "...kun JavaScriptissä tapahtuu ajonaikainen virhe."
+msgid "...before a document is saved with <menuitem>File - Save a Copy</menuitem>, <menuitem>File - Export</menuitem>, <menuitem>File - Export as PDF</menuitem> or the <menuitem>Save</menuitem> icons."
+msgstr ""
-#. rG4ED
+#. ECboz
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3154767\n"
+"par_id502600180504809\n"
+"help.text"
+msgid "Document copy has been created"
+msgstr ""
+
+#. gF2u2
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id471601180505705\n"
+"help.text"
+msgid "...after a document is saved with <menuitem>File - Save a Copy</menuitem>, <menuitem>File - Export</menuitem>, <menuitem>File - Export as PDF</menuitem> or the <menuitem>Save</menuitem> icons."
+msgstr ""
+
+#. uAeBw
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id501006180504809\n"
"help.text"
-msgid "Print Mail Merge"
-msgstr "Joukkokirjeen tulostus"
+msgid "Creating of document copy failed"
+msgstr ""
-#. 8dDPL
+#. dFCuE
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3153555\n"
+"par_id471600081505705\n"
"help.text"
-msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
-msgstr "...<emph>Tulosta</emph>-valintaikkunan sulkemisen jälkeen, mutta ennen kuin varsinainen tulostusprosessi alkaa. Tämä tapahtuma esiintyy jokaiselle kopion tulostukselle."
+msgid "Document could not be copied or exported."
+msgstr ""
+
+#. qDSzB
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id501600180504809\n"
+"help.text"
+msgid "Print document"
+msgstr ""
+
+#. kDap2
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id471600180505705\n"
+"help.text"
+msgid "...after the Print dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
+msgstr ""
+
+#. KNASw
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id371600180345993\n"
+"help.text"
+msgid "-no UI-"
+msgstr ""
+
+#. fNkWD
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id851600180346872\n"
+"help.text"
+msgid "...after document security settings have changed."
+msgstr ""
+
+#. 5Cfig
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id921600180238854\n"
+"help.text"
+msgid "'Modified' status was changed"
+msgstr ""
+
+#. vVXPg
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id321600180239944\n"
+"help.text"
+msgid "Modified state of a document has changed."
+msgstr ""
+
+#. po5DD
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id741600180121445\n"
+"help.text"
+msgid "Document title changed"
+msgstr ""
+
+#. KjqSB
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id801600180122852\n"
+"help.text"
+msgid "When the document title gets updated."
+msgstr ""
+
+#. AkeoE
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id641600180121445\n"
+"help.text"
+msgid "Loaded a sub component"
+msgstr ""
+
+#. Vq5NQ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id701600180122852\n"
+"help.text"
+msgid "...after a database form has been opened."
+msgstr ""
+
+#. 7zuFb
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id641700180131445\n"
+"help.text"
+msgid "Closed a sub component"
+msgstr ""
+
+#. Gzmes
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id701600290122852\n"
+"help.text"
+msgid "...after a database form has been closed."
+msgstr ""
+
+#. KHhEE
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id421600097736759\n"
+"help.text"
+msgid "Printing of form letters started"
+msgstr ""
+
+#. AAYeB
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id411600097854273\n"
+"help.text"
+msgid "...before printing form letters using <emph>File - Print</emph> or <emph>Tools - Mail Merge Wizard</emph> menus."
+msgstr ""
+
+#. vDckq
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id41600097737991\n"
+"help.text"
+msgid "Printing of form letters finished"
+msgstr ""
+
+#. Wp5ff
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id451600097862282\n"
+"help.text"
+msgid "...after printing of form letters using <emph>File - Print</emph> or <emph>Tools - Mail Merge Wizard</emph> menus."
+msgstr ""
+
+#. RpMCy
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id641600160655602\n"
+"help.text"
+msgid "Printing of form fields started"
+msgstr ""
+
+#. NDjvr
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id331600160656617\n"
+"help.text"
+msgid "...before printing form fields."
+msgstr ""
+
+#. pMuA3
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id801600160725659\n"
+"help.text"
+msgid "Printing of form fields finished"
+msgstr ""
+
+#. 7GYKZ
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id961600160726645\n"
+"help.text"
+msgid "...after printing form fields."
+msgstr ""
#. esqcH
#: 01040000.xhp
@@ -4624,32 +4993,32 @@ msgctxt ""
msgid "Change of the page count"
msgstr "Sivumäärän muutos"
-#. QhSjh
+#. hAoeW
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3154627\n"
"help.text"
-msgid "...when the page count changes."
-msgstr "...kun sivujen lukumäärä muuttuu."
+msgid "When the page count changes."
+msgstr ""
-#. ShGUB
+#. XQXbJ
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3154737\n"
+"par_id131600158369191\n"
"help.text"
-msgid "Message received"
-msgstr "Viestin vastaanotto"
+msgid "Most events relate to documents, except <literal>OnStartApp</literal>, <literal>OnCloseApp</literal>, <literal>OnCreate</literal> and <literal>OnLoadFinished</literal> that occur at application level. <literal>OnSubComponentOpened</literal>, and <literal>OnSubComponentClosed</literal> events are fired by database's forms."
+msgstr ""
-#. qRVBA
+#. e6gAF
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3150952\n"
+"par_id321600158566782\n"
"help.text"
-msgid "...if a message was received."
-msgstr "jos viesti on vastaanotettu."
+msgid "Writer documents are triggering those specific events: <literal>OnLayoutFinished</literal>, <literal>OnMailMerge</literal>, <literal>OnMailMergeFinished</literal>, <literal>OnFieldMerge</literal>, <literal>OnFieldMergeFinished</literal> and <literal>OnPageCountChanged</literal>."
+msgstr ""
#. 7xyqi
#: 01040000.xhp
@@ -4768,6 +5137,15 @@ msgctxt ""
msgid "Click <emph>OK</emph> to close the dialog."
msgstr "Napsauttamalla <emph>OK</emph> suljetaan valintaikkuna."
+#. ruyPz
+#: 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."
+msgstr ""
+
#. XcdRk
#: 01050000.xhp
msgctxt ""
@@ -8157,13 +8535,13 @@ msgctxt ""
msgid "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYCANCEL, \"Dialog title\")"
msgstr ""
-#. xrb4U
+#. BaStC
#: 03010103.xhp
msgctxt ""
"03010103.xhp\n"
"tit\n"
"help.text"
-msgid "Print Statement"
+msgid "Print# Statement"
msgstr ""
#. addUg
@@ -8175,23 +8553,32 @@ 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 ""
-#. 4jt8D
+#. ARzns
#: 03010103.xhp
msgctxt ""
"03010103.xhp\n"
"hd_id3147230\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement\">Print Statement</link>"
+msgid "<variable id=\"Print_h1\"><link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print# Statement\">Print# Statement</link></variable>"
msgstr ""
-#. AGxsw
+#. ZDGAu
#: 03010103.xhp
msgctxt ""
"03010103.xhp\n"
"par_id3156281\n"
"help.text"
-msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
-msgstr "Tulostetaan määrätty merkkijono tai numeerinen lauseke valintaikkunaan tai tiedostoon."
+msgid "Outputs the specified strings or numeric expressions to the screen or to a sequential file."
+msgstr ""
+
+#. xCJRj
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id461596463969009\n"
+"help.text"
+msgid "Use <link href=\"text/sbasic/shared/03020201.xhp\">Put#</link> statement to write data to a binary or a random file. Use <link href=\"text/sbasic/shared/03020205.xhp\">Write#</link> statement to write data to a sequential text file with delimiting characters."
+msgstr ""
#. AhB82
#: 03010103.xhp
@@ -9426,13 +9813,13 @@ msgctxt ""
msgid "<bookmark_value>Close statement</bookmark_value>"
msgstr "<bookmark_value>Close-lause</bookmark_value>"
-#. 332GE
+#. GPAtd
#: 03020101.xhp
msgctxt ""
"03020101.xhp\n"
"hd_id3157896\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement\">Close Statement</link>"
+msgid "<variable id=\"Close_h1\"><link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement\">Close Statement</link></variable>"
msgstr ""
#. UxFz9
@@ -9444,67 +9831,31 @@ msgctxt ""
msgid "Closes a specified file that was opened with the Open statement."
msgstr "Suljetaan määrätty tiedosto, joka on avattu Open-lauseella."
-#. vh7Bh
+#. KDbMZ
#: 03020101.xhp
msgctxt ""
"03020101.xhp\n"
-"hd_id3156344\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "<image src=\"media/helpimg/sbasic/Close_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Close Statement diagram</alt></image>"
+msgstr ""
-#. ECPY4
+#. FEDAa
#: 03020101.xhp
msgctxt ""
"03020101.xhp\n"
"par_id3147265\n"
"help.text"
-msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
-msgstr "Close tiedostonro_1 As Integer[, tiedostonro_2 As Integer[,...]]"
-
-#. tNdJ2
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153379\n"
-"help.text"
-msgid "Parameters:"
+msgid "Close [[#]fileNum [, [#]fileNum2 [,...]]]"
msgstr ""
-#. TV3Dk
+#. gdqMu
#: 03020101.xhp
msgctxt ""
"03020101.xhp\n"
"par_id3150791\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
-msgstr "<emph>Tiedostonro_n:</emph> mikä tahansa kokonaislukulauseke, joka määrittää numeron tietokanavalle, joka on avattu <emph>Open</emph>-lauseella."
-
-#. ACdz7
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"hd_id3153192\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
-#. TE4uc
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3153727\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr ""
-
-#. uW8gF
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147350\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
+msgid "<emph>fileNum:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
msgstr ""
#. uP5nk
@@ -9633,13 +9984,13 @@ msgctxt ""
msgid "<bookmark_value>Open statement</bookmark_value>"
msgstr "<bookmark_value>Open-lause</bookmark_value>"
-#. cuJif
+#. CRFKQ
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"hd_id3150791\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement\">Open Statement</link>"
+msgid "<variable id=\"Open_h1\"><link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement\">Open Statement</link></variable>"
msgstr ""
#. Etqck
@@ -9651,59 +10002,86 @@ msgctxt ""
msgid "Opens a data channel."
msgstr "Avataan tietokanava."
-#. cEADt
+#. x26NA
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id971587473488701\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Open_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Open Statement diagram</alt></image>"
+msgstr ""
+
+#. CRDEh
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id971587473488702\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/access_fragment.svg\" id=\"img_id4156296484515\"><alt id=\"alt_id15152796484515\">access fragment diagram</alt></image>"
+msgstr ""
+
+#. N3tit
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id971587473488703\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/locking_fragment.svg\" id=\"img_id4156296484516\"><alt id=\"alt_id15152796484516\">locking fragment diagram</alt></image>"
+msgstr ""
+
+#. dbM7e
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3155132\n"
"help.text"
-msgid "<emph>FileName: </emph>Name and path of the file to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
+msgid "<emph>pathname: </emph>Path and name of the file to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
msgstr ""
-#. om94e
+#. XqfP8
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3149262\n"
"help.text"
-msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
-msgstr "<emph>Tapa1:</emph> avainsana, joka määrittää tiedoston käyttötavan. Kelvolliset arvot: Append (lisätään peräkkäistiedoston loppuun), Binary (tietoa voidaan hakea tavuina Get- ja Put-lauseilla), Input (tietokanava avataan lukua varten), Output (tietokanava avataan kirjoittamista varten) ja Random (muokataan \"suhteellisia\" suorasaantitiedostoja)."
+msgid "<emph>mode:</emph> Keyword that specifies the file mode. Valid values: <literal>Append</literal> (append to sequential file), <literal>Binary</literal> (data can be accessed by bytes using Get and Put), <literal>Input</literal> (opens data channel for reading), <literal>Output</literal> (opens data channel for writing), and <literal>Random</literal> (edits relative files)."
+msgstr ""
-#. 6uwt6
+#. 3983q
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3154014\n"
"help.text"
-msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
-msgstr "<emph>Saanti1:</emph> avainsana, joka määrittää tiedoston käsittelytyypin. Kelvolliset arvot: Read (kirjoitussuojattu luku), Write (vain kirjoitus), Read Write (luku ja kirjoitus)."
+msgid "<emph>io:</emph> Keyword that defines the access type. Valid values: <literal>Read</literal> (read-only), <literal>Write</literal> (write-only), <literal>Read Write</literal> (both)."
+msgstr ""
-#. hHLFb
+#. kzzkr
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
-msgstr "<emph>Suojattu1:</emph> avainsana, jolla määritetään tietoturvan taso ( muiden sovellusten suhteen) tiedoston avauksen jälkeen. Kelvolliset arvot: Shared (tiedosto on avattavissa muillakin sovelluksilla), Lock Read (tiedosto on lukusuojattu), Lock Write (tiedosto on kirjoitussuojattu), Lock Read Write (tiedoston saanti on estetty)."
+msgid "<emph>locking:</emph> Keyword that defines the security status of a file after opening. Valid values: <literal>Shared</literal> (file may be opened by other applications), <literal>Lock Read</literal> (file is protected against reading), <literal>Lock Write</literal> (file is protected against writing), <literal>Lock Read Write</literal> (denies file access)."
+msgstr ""
-#. FroB8
+#. D2D4q
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3153190\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
-msgstr "<emph>Tiedostonro1:</emph> mikä tahansa kokonaislukulauseke 0...511, joka osoittaa vapaan tietokanavan numeron. Tämä tekee mahdolliseksi tiedoston käsittelykomennot tietokanavan numerolla. Tiedostonumero pitää määrittää FreeFile-funktiolla välittömästi ennen Open-lausetta."
+msgid "<emph>filenum:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
+msgstr ""
-#. 3wp3F
+#. LgCLi
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3151115\n"
"help.text"
-msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
-msgstr "<emph>Tietuepituus1:</emph> asettaa suorasaantitiedostoille (tapa1=Random) tietuepituuden."
+msgid "<emph>recLen:</emph> For <literal>Random</literal> access files, set the length of the records."
+msgstr ""
#. mvgxB
#: 03020103.xhp
@@ -9750,13 +10128,13 @@ msgctxt ""
msgid "<bookmark_value>Reset statement</bookmark_value>"
msgstr "<bookmark_value>Reset-lause</bookmark_value>"
-#. drRvG
+#. aCi6f
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"hd_id3154141\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement</link>"
+msgid "<variable id=\"Reset_h1\"><link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement</link></variable>"
msgstr ""
#. iLCKn
@@ -9768,23 +10146,14 @@ msgctxt ""
msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
msgstr "Kaikki avoimet tiedostot suljetaan ja kaikkien tiedostopuskureiden sisällöt kirjoitetaan tallennusvälineelle (esimerkiksi kovalevylle)."
-#. nTNj2
+#. jEQ3F
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
-"hd_id3154124\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. TufHR
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3161831\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
+msgid "<image src=\"media/helpimg/sbasic/Reset_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Reset Statement diagram</alt></image>"
+msgstr ""
#. BXAjN
#: 03020104.xhp
@@ -9840,13 +10209,13 @@ msgctxt ""
msgid "<bookmark_value>Get statement</bookmark_value>"
msgstr "<bookmark_value>Get-lause</bookmark_value>"
-#. Voqjr
+#. BpFbE
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"hd_id3154927\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement</link>"
+msgid "<variable id=\"Get_h1\"><link href=\"text/sbasic/shared/03020201.xhp\">Get Statement</link></variable>"
msgstr ""
#. cpLtG
@@ -9867,86 +10236,68 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
msgstr "Katso myös: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> -lause"
-#. CJAMj
+#. UqKMH
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
-"hd_id3150358\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "<image src=\"media/helpimg/sbasic/Get_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Get Statement diagram</alt></image>"
+msgstr ""
-#. wcrTG
+#. xBhKA
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150792\n"
"help.text"
-msgid "Get [#] FileNumber As Integer, [Position], Variable"
-msgstr "Get [#] tiedostonro1 As Integer, [sijainti1], muuttuja_1"
-
-#. pdTMQ
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3154138\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "Get [#]fileNum, [recordNum|filePos], variable"
+msgstr ""
-#. qDu7V
+#. UM9CG
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150448\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
-msgstr "<emph>Tiedostonro1:</emph> mikä tahansa kokonaislukulauseke, joka määrittää tiedostonumeron."
+msgid "<emph>fileNum:</emph> Any integer expression that determines the file number."
+msgstr ""
-#. rQHwc
+#. khxG7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3154684\n"
"help.text"
-msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
-msgstr "<emph>Sijainti1:</emph> Tiedostoille, jotka avataan suorasaantiseen Random-tilaan, <emph>sijainti1</emph> on sen tietueen numero, joka aiotaan lukea."
+msgid "<emph>recordNum:</emph> For files opened in Random mode, <emph>recordNum</emph> is the number of the record that you want to read."
+msgstr ""
-#. dtVKC
+#. 3w9MJ
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153768\n"
"help.text"
-msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
-msgstr "Tiedostoille, jotka avataan peräkkäin käsiteltävään Binary-tilaan, <emph>sijainti1</emph> on sen tavun sijainti tiedostossa, josta lukeminen aloitetaan."
+msgid "For files opened in Binary mode, <emph>filePos</emph> is the byte position in the file where the reading starts."
+msgstr ""
-#. HcCrg
+#. NvcjF
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3147319\n"
"help.text"
-msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
-msgstr "Jos <emph>sijainti1</emph> jätetään pois, käytetään nykyistä sijoitusta tiedostossa tai tiedoston nykyistä tietuetta."
+msgid "If <emph>recordNum</emph> and <emph>filePos</emph> are omitted, the current position or the current data record of the file is used."
+msgstr ""
-#. CPBoN
+#. GZcaW
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3149484\n"
"help.text"
-msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
-msgstr "Muuttuja_1: Sen muuttujan nimi, johon tiedot luetaan. Poikkeuksena objektimuuttujat, kaikkia muuttujien tietotyyppejä voi käyttää."
-
-#. NikE3
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3153144\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
+msgid "<emph>variable:</emph> Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgstr ""
#. PQRf6
#: 03020201.xhp
@@ -10047,50 +10398,41 @@ msgctxt ""
msgid "Reads data from an open sequential file."
msgstr "Luetaan tietoja avoimesta peräkkäistiedostosta."
-#. 7DMCx
+#. mNkEN
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
-"hd_id3125863\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "<image src=\"media/helpimg/sbasic/Input_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Input Statement diagram</alt></image>"
+msgstr ""
-#. eEsn3
+#. NqnvX
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"par_id3150440\n"
"help.text"
-msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
-msgstr "Input #tiedostonro1 As Integer; muuttuja_1[,muuttuja_2[, muuttuja_3[,...]]]"
-
-#. 4bQRN
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3146121\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "Input #fileNum {,|;} var1 [, var2 [, ...]]"
+msgstr ""
-#. emXUX
+#. EUrQA
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"par_id3145749\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
-msgstr "<emph>Tiedostonro1:</emph> sen tiedoston numero, josta tietoa luetaan. Tiedosto pitää olla avattu Open-lauseella avainsanaa INPUT käyttäen."
+msgid "<emph>fileNum</emph>: Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
+msgstr ""
-#. 75Dav
+#. kJyKM
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
-msgstr "<emph>Muuttuja_n:</emph> numeerinen tai merkkijonomuuttuja, johon tiedostosta luettavat arvot sijoitetaan."
+msgid "<emph>var</emph>: A numeric or string variable that you assign the values read from the opened file to."
+msgstr ""
#. 23Pzt
#: 03020202.xhp
@@ -10128,15 +10470,6 @@ msgctxt ""
msgid "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
msgstr "Jos tiedoston loppu saavutetaan luettaessa tietoelementtiä, tapahtuu virhe ja prosessi keskeytetään."
-#. 3xUNX
-#: 03020202.xhp
-msgctxt ""
-"03020202.xhp\n"
-"hd_id3152578\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. xqNBb
#: 03020202.xhp
msgctxt ""
@@ -10155,13 +10488,13 @@ msgctxt ""
msgid "' Read data file using Input"
msgstr "'Lue tiedosto Input-komennolla"
-#. JiWcR
+#. ASL6h
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"tit\n"
"help.text"
-msgid "Line Input # Statement"
+msgid "Line Input# Statement"
msgstr ""
#. CCEuD
@@ -10173,68 +10506,50 @@ msgctxt ""
msgid "<bookmark_value>Line Input statement</bookmark_value>"
msgstr "<bookmark_value>Line Input -lause</bookmark_value>"
-#. rG2am
+#. DBAiv
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"hd_id3153361\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input # Statement\">Line Input # Statement</link>"
+msgid "<variable id=\"LineInput_h1\"><link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input# Statement\">Line Input# Statement</link></variable>"
msgstr ""
-#. QbTVA
+#. 5FZ8D
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"par_id3156280\n"
"help.text"
-msgid "Reads strings from a sequential file into a variable."
-msgstr "Luetaan muuttujaan merkkijonoja peräkkäistiedostosta."
-
-#. NSBkr
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3150447\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. jCyHM
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3147229\n"
-"help.text"
-msgid "Line Input #FileNumber As Integer, Var As String"
-msgstr "Line Input #tiedostonro1 As Integer, muuttuja_1 As String"
+msgid "Reads a line from a sequential file into a variable."
+msgstr ""
-#. h3tyw
+#. enCkE
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
-"hd_id3145173\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "<image src=\"media/helpimg/sbasic/Line-Input_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Line Input Statement diagram</alt></image>"
+msgstr ""
-#. ARTNC
+#. wrpF7
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"par_id3161832\n"
"help.text"
-msgid "<emph>FileNumber: </emph>Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
-msgstr "<emph>Tiedostonro1: </emph>sen tiedoston numero, jonka tietoja aiotaan lukea. Tiedosto pitää olla jo avattu Open-lauseella avainsanaa INPUT käyttäen."
+msgid "<emph>fileNum</emph>: Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
+msgstr ""
-#. KUGEc
+#. qAR2M
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"par_id3151119\n"
"help.text"
-msgid "<emph>var:</emph> The name of the variable that stores the result."
-msgstr "<emph>Muuttuja_1:</emph> sen muuttujan nimi, johon tiedot tallennetaan."
+msgid "<emph>variable</emph>: The name of the variable that stores the result."
+msgstr ""
#. foxtA
#: 03020203.xhp
@@ -10245,40 +10560,13 @@ msgctxt ""
msgid "With the <emph>Line Input#</emph> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string."
msgstr "<emph>Line Input#</emph> -lauseella luetaan merkkijonoja avoimesta tiedostosta muuttujaan. Merkkijonomuuttujat luetaan rivi kerrallaan ensimmäiseen telanpalautukseen (CR, Asc=13) tai rivin siirtoon (LF, Asc=10). Rivin lopetusmerkit eivät tule merkkijonoon."
-#. NjeFe
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"hd_id3163711\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
-#. Uxyyc
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3147124\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Print #iNumber, \"Tämä on tekstirivi.\""
-
-#. iFP3f
-#: 03020203.xhp
-msgctxt ""
-"03020203.xhp\n"
-"par_id3153415\n"
-"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr "Print #iNumber, \"Tässä on toinen rivi tekstiä\""
-
-#. NKDq4
+#. fhFEa
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"tit\n"
"help.text"
-msgid "Put Statement"
+msgid "Put# Statement"
msgstr ""
#. psWQE
@@ -10290,13 +10578,13 @@ msgctxt ""
msgid "<bookmark_value>Put statement</bookmark_value>"
msgstr "<bookmark_value>Put-lause</bookmark_value>"
-#. KHtmv
+#. bD34J
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"hd_id3150360\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement\">Put Statement</link>"
+msgid "<variable id=\"Put_h1\"><link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement\">Put# Statement</link></variable>"
msgstr ""
#. e8rUp
@@ -10308,59 +10596,50 @@ msgctxt ""
msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
msgstr "Put-lauseella kirjoitetaan tietue suhteelliseen tiedostoon tai peräkkäisiä tavuja binääritiedostoon."
-#. 7iAkD
+#. EEnDK
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
-"par_id3156281\n"
+"par_id461596463969009\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
-msgstr "Katso myös: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> -lause"
+msgid "Use <link href=\"text/sbasic/shared/03010103.xhp\">Print#</link> statement to print data to a sequential text file. Use <link href=\"text/sbasic/shared/03020205.xhp\">Write#</link> statement to write data to a sequential text file with delimiting characters."
+msgstr ""
-#. 9BMWu
+#. 9HgEG
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
-"hd_id3125863\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "<image src=\"media/helpimg/sbasic/Put_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Put Statement diagram</alt></image>"
+msgstr ""
-#. peCza
+#. RBpeh
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"par_id3155132\n"
"help.text"
-msgid "Put [#] FileNumber As Integer, [position], Variable"
-msgstr "Put [#] tiedostonro1 As Integer, [sijainti1], muuttuja_1"
-
-#. CJNhF
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3153190\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "Put [#]fileNum, [recordNum|filePos], variable"
+msgstr ""
-#. AgaBs
+#. bSFd2
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
-msgstr "<emph>Tiedostonro1:</emph> mikä tahansa kokonaislukulauseke, joka määrittää tiedoston, johon aiotaan kirjoittaa."
+msgid "<emph>fileNum</emph>: Any integer expression that defines the file that you want to write to."
+msgstr ""
-#. Jf6hw
+#. AiZUD
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"par_id3155411\n"
"help.text"
-msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
-msgstr "<emph>Sijainti1:</emph> Suhteellisille tiedostoille (suorasaantitiedostot) numero on sen tietueen numero, johon aiotaan kirjoittaa."
+msgid "<emph>recordNum, filePos</emph>: For relative files (random access files), the number of the record that you want to write."
+msgstr ""
#. dUyzK
#: 03020204.xhp
@@ -10371,14 +10650,14 @@ msgctxt ""
msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
msgstr "Binäärisille tiedostoille ( peräkkäiskäsittely) kyse on sen tavun sijainnista tiedostossa, josta kirjoittaminen aloitetaan."
-#. pfzL3
+#. iGF9L
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"par_id3153729\n"
"help.text"
-msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
-msgstr "<emph>Muuttuja_1:</emph> Sen muuttujan nimi, jonka tiedot kirjoitetaan tiedostoon."
+msgid "<emph>variable</emph>: Name of the variable that you want to write to the file."
+msgstr ""
#. yyf95
#: 03020204.xhp
@@ -10398,78 +10677,6 @@ msgctxt ""
msgid "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
msgstr "Binäärisissä tiedostoissa: Muuttujien sisältö kirjoitetaan määrättyyn kohtaan ja tiedosto-osoitin siirretään välittömästi viimeisen tavun jälkeen. Tietueiden väliin ei jää tyhjää tilaa."
-#. RbBPk
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"hd_id3154491\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
-#. zJjTB
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154729\n"
-"help.text"
-msgid "Dim sText As Variant ' Must be a variant type"
-msgstr "Dim sText As Variant ' Täytyy olla variant-(yleis)tyyppiä"
-
-#. 3rrxn
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3156278\n"
-"help.text"
-msgid "Seek #iNumber,1 ' Position To start writing"
-msgstr "Seek #iNumber,1 ' Sijainti, josta kirjoittaminen aloitetaan"
-
-#. 3KrYs
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3153711\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Tämä on ensimmäinen rivi tekstiä\" ' Täytetään rivi tekstillä"
-
-#. DRAfy
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3155446\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Tämä on toinen tekstirivi\""
-
-#. fnJbV
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154255\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Kolmas rivi tekstiä\""
-
-#. 4GkxW
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3150940\n"
-"help.text"
-msgid "Put #iNumber,,\"This is new text\""
-msgstr "Put #iNumber,,\"Tämä on uusi teksti\""
-
-#. 7LFxv
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3159102\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Tämä on teksti tietueessa 20\""
-
#. BTr9L
#: 03020205.xhp
msgctxt ""
@@ -10488,68 +10695,59 @@ msgctxt ""
msgid "<bookmark_value>Write statement</bookmark_value>"
msgstr "<bookmark_value>Write-lause</bookmark_value>"
-#. DBBvs
+#. xn3Ji
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
"hd_id3147229\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement\">Write Statement</link>"
+msgid "<variable id=\"Write_h1\"><link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write# Statement\">Write# Statement</link></variable>"
msgstr ""
-#. CMSkU
+#. G4X6k
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
"par_id3154685\n"
"help.text"
-msgid "Writes data to a sequential file."
-msgstr "Kirjoittaa tietoa peräkkäistiedostoon."
-
-#. eoeBE
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3150449\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "Writes data to a sequential text file with delimiting characters."
+msgstr ""
-#. jxyZn
+#. fB8hV
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
-"par_id3145785\n"
+"par_id461596463969009\n"
"help.text"
-msgid "Write [#FileName], [Expressionlist]"
-msgstr "Write [#tiedostonro1], [lausekeluettelo]"
+msgid "Use <link href=\"text/sbasic/shared/03010103.xhp\">Print#</link> statement to print data to a sequential text file. Use <link href=\"text/sbasic/shared/03020201.xhp\">Put#</link> statement to write data to a binary or a random file."
+msgstr ""
-#. ceFn6
+#. WxpRu
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
-"hd_id3151116\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "<image src=\"media/helpimg/sbasic/Write_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Write Statement diagram</alt></image>"
+msgstr ""
-#. RsZEE
+#. xEMDC
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
"par_id3153728\n"
"help.text"
-msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
-msgstr "<emph>Tiedostonro1:</emph> Mikä tahansa numeerinen lauseke, jossa on tiedostonumero, joka on asetettu Open-lauseella vastaavalle tiedostolle."
+msgid "<emph>fileNum</emph>: Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr ""
-#. aCyvx
+#. TwHF7
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
-msgstr "<emph>Lausekeluettelo:</emph> muuttujia tai lausekkeita, jotka syötetään tiedostoon, pilkuilla eroteltuina."
+msgid "<emph>expression</emph> list: Variables or expressions that you want to enter in a file, separated by commas."
+msgstr ""
#. RERPn
#: 03020205.xhp
@@ -10596,15 +10794,6 @@ msgctxt ""
msgid "Numbers with decimal delimiters are converted according to the locale settings."
msgstr "Luvut, joissa on desimaalierottimia, muunnetaan maa-asetusten mukaisesti."
-#. Xhb5c
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3151073\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. ejANh
#: 03020301.xhp
msgctxt ""
@@ -11127,13 +11316,13 @@ msgctxt ""
msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
msgstr "<emph>Tiedostonro1:</emph> Open-lauseen käyttämä tietokanavan numero."
-#. ybPDP
+#. MbdMB
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
"tit\n"
"help.text"
-msgid "Seek Statement"
+msgid "Seek# Statement"
msgstr ""
#. vLW2K
@@ -11145,13 +11334,13 @@ msgctxt ""
msgid "<bookmark_value>Seek statement</bookmark_value>"
msgstr "<bookmark_value>Seek-lause</bookmark_value>"
-#. PpSRU
+#. 9HcVZ
#: 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\" name=\"Seek# Statement\">Seek Statement</link>"
msgstr ""
#. RBPKW
@@ -11181,59 +11370,59 @@ msgctxt ""
msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
msgstr "Kaikilla muilla tiedostoilla Seek-lause asettaa tiedosto-osoittimen sen tavun kohdalle, mistä alkaen seuraava toiminto on tapahtuva."
-#. wYVfB
+#. sbuDC
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"par_id3156280\n"
+"par_id971587473488701\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-msgstr "Katso myös: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link> ja <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
+msgid "<image src=\"media/helpimg/sbasic/Seek_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Seek Statement diagram</alt></image>"
+msgstr ""
-#. yVEYG
+#. PjcAp
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"hd_id3145785\n"
+"par_id3145273\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "Seek [#]filePos, {filePos|recordNum}"
+msgstr ""
-#. 7M3ws
+#. vwzuK
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"par_id3145273\n"
+"hd_id3153379\n"
"help.text"
-msgid "Seek[#FileNumber], Position (As Long)"
-msgstr "Seek[#tiedostonro1], sijainti1 (As Long)"
+msgid "Parameters:"
+msgstr ""
-#. nRRME
+#. x86KJ
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"hd_id3154321\n"
+"par_id3153952\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "<emph>fileNum</emph>: The data channel number used in the Open statement."
+msgstr ""
-#. ySD8U
+#. FrYvd
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"par_id3153952\n"
+"par_id3145366\n"
"help.text"
-msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
-msgstr "<emph>Tiedostonro1: </emph>Open-lauseen käyttämä tietokanavan numero."
+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 ""
-#. Jf97B
+#. 5LDFE
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"par_id3145366\n"
+"par_id491596468328575\n"
"help.text"
-msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
-msgstr "<emph>Sijainti1: </emph>seuraavan kirjoittamisen tai lukemisen (tiedosto-osoittimen) sijainti. Sijainti1 voi olla luku välittä 1 ... 2 147 483 647. Tiedostotyypin mukaisesti sijainti ilmaisee tietueen numeron (Random-tavalla käytettävät tiedostot) tai tavusijainnin ( Binary-, Output-, Append- tai Input-tapa). Tiedoston ensimmäisen tavun sijainti on 1, seuraavan tavun sijainti 2 ja niin edelleen."
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link> function"
+msgstr ""
#. Nwouh
#: 03020400.xhp
@@ -16734,86 +16923,41 @@ msgctxt ""
msgid "The following functions and statements set or return the system date and time."
msgstr "Oheiset funktion ja lauseet palauttavat tai asettavat järjestelmäkellon päivämäärän ja kellonajan."
-#. YWfEf
+#. wJjQV
#: 03030301.xhp
msgctxt ""
"03030301.xhp\n"
"tit\n"
"help.text"
-msgid "Date Statement"
+msgid "Date Function"
msgstr ""
-#. xpFBx
+#. HEEFx
#: 03030301.xhp
msgctxt ""
"03030301.xhp\n"
"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Date statement</bookmark_value>"
-msgstr "<bookmark_value>Date-lause</bookmark_value>"
+msgid "<bookmark_value>Date function</bookmark_value>"
+msgstr ""
-#. vDWSN
+#. u9AkG
#: 03030301.xhp
msgctxt ""
"03030301.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement\">Date Statement</link>"
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Function\">Date Function</link>"
msgstr ""
-#. GMwEL
+#. AaA3G
#: 03030301.xhp
msgctxt ""
"03030301.xhp\n"
"par_id3147291\n"
"help.text"
-msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
-msgstr "Date-lause palauttaa senhetkisen käyttöjärjestelmän päivämäärän merkkijonona tai asettaa uuden päivämäärän. Päivämäärän muoto on maa-asetuksista riippuvainen."
-
-#. CUY3q
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3148686\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. QoCJW
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"par_id3146794\n"
-"help.text"
-msgid "Date ; Date = Text As String"
-msgstr "Date ; Date = teksti1 As String"
-
-#. 8QFeW
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3154347\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
-#. 57eNx
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"par_id3145069\n"
-"help.text"
-msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
-msgstr "<emph>Teksti1:</emph> on tarpeen vain asetettaessa järjestelmäaikaa. Tässä tapauksessa merkkijonolausekkeen pitää vastata paikallisten asetusten mukaista päivämäärämuotoa."
-
-#. waEYM
-#: 03030301.xhp
-msgctxt ""
-"03030301.xhp\n"
-"hd_id3150793\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
+msgid "Returns the current system date as a string, or date variant."
+msgstr ""
#. BUc3C
#: 03030301.xhp
@@ -16824,31 +16968,31 @@ msgctxt ""
msgid "MsgBox \"The date is \" & Date"
msgstr "msgbox \"Järjestelmän päivämäärä on \" & Date"
-#. CCirC
+#. W99bB
#: 03030302.xhp
msgctxt ""
"03030302.xhp\n"
"tit\n"
"help.text"
-msgid "Time Statement"
+msgid "Time Function"
msgstr ""
-#. Ypbnk
+#. peCLU
#: 03030302.xhp
msgctxt ""
"03030302.xhp\n"
"bm_id3145090\n"
"help.text"
-msgid "<bookmark_value>Time statement</bookmark_value>"
-msgstr "<bookmark_value>Time-lause</bookmark_value>"
+msgid "<bookmark_value>Time function</bookmark_value>"
+msgstr ""
-#. xLpG8
+#. tBoRS
#: 03030302.xhp
msgctxt ""
"03030302.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030302.xhp\">Time Statement</link>"
+msgid "<link href=\"text/sbasic/shared/03030302.xhp\" name=\"Time Function\">Time Function</link>"
msgstr ""
#. FHKSk
@@ -16860,42 +17004,6 @@ msgctxt ""
msgid "This function returns the current system time as a string in the format \"HH:MM:SS\"."
msgstr "Time-lause palauttaa senhetkisen järjestelmäajan merkkijonona, joka on muotoa \"HH:MM:SS\"."
-#. G29nS
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3154346\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. rG5UZ
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3150792\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
-#. 6LxaE
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"par_id3149656\n"
-"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the new time in the format \"HH:MM:SS\"."
-msgstr "<emph>Teksti1:</emph> merkkijonolause, jossa on määrittelee kellonajan muodossa \"HH:MM:SS\"."
-
-#. psu4B
-#: 03030302.xhp
-msgctxt ""
-"03030302.xhp\n"
-"hd_id3145173\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. Aguz5
#: 03030302.xhp
msgctxt ""
@@ -17823,14 +17931,14 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/On-Error_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">On Error Statement diagram</alt></image>"
msgstr ""
-#. 7FXhq
+#. CKJJr
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3145173\n"
"help.text"
-msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
-msgstr "On {[Local] Error GoTo rivitunnus1 | GoTo 0 | Resume Next}"
+msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr ""
#. EBAKU
#: 03050500.xhp
@@ -22080,77 +22188,86 @@ msgctxt ""
msgid "If...Then...Else Statement"
msgstr ""
-#. C5KRD
+#. 2tiGA
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"bm_id3154422\n"
"help.text"
-msgid "<bookmark_value>If statement</bookmark_value>"
-msgstr "<bookmark_value>If-lause</bookmark_value>"
+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 ""
-#. NPPep
+#. iGHxs
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
-"hd_id3154422\n"
+"hd_id81592320644826\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement\">If...Then...Else Statement</link>"
msgstr ""
-#. pGNqu
+#. aPd9F
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"par_id3155555\n"
"help.text"
-msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
-msgstr "Lause määrittelee yhden tai useamman lauselohkon, jotka on tarkoitus suorittaa vain, jos annettu ehto täyttyy."
+msgid "Defines one or more statement blocks that you only want to execute if a given condition or expression is <literal>True</literal>."
+msgstr ""
-#. 9w2wm
+#. udXzN
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
-"hd_id3146957\n"
+"par_id311592320434736\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "<image src=\"media/helpimg/sbasic/If_statement.svg\" id=\"img_id601592320434736\"><alt id=\"alt_id551592320434736\">If...EndIf statement</alt></image>"
+msgstr ""
-#. yeLUr
+#. cWAi6
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
-"par_id3153126\n"
+"par_id591592320435808\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/ElseIf_fragment.svg\" id=\"img_id691592320435808\"><alt id=\"alt_id341592320435808\">ElseIf fragment</alt></image>"
+msgstr ""
+
+#. 9oiMB
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"par_id221592320436632\n"
"help.text"
-msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
-msgstr "If ehto_1=true Then lauselohko_1 [ElseIf ehto_m=true Then] lauselohko_m [Else] lauselohko_n EndIf"
+msgid "<image src=\"media/helpimg/sbasic/Else_fragment.svg\" id=\"img_id81592320436632\"><alt id=\"alt_id391592320436632\">Else fragment</alt></image>"
+msgstr ""
-#. aXATA
+#. DQy4R
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"par_id3123476\n"
"help.text"
-msgid "Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
-msgstr "Else If voidaan kirjoittaa ElseIf ja End If voidaan kirjoittaa EndIf."
+msgid "Instead of <emph>Else If</emph> you can write <emph>ElseIf</emph>, instead of <emph>End If</emph> you can write <emph>EndIf</emph>."
+msgstr ""
-#. FFDsF
+#. AXTiW
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
-"hd_id3155419\n"
+"par_id631592322239043\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "<emph>If</emph> statements can be shortened to one line when using single statement blocks."
+msgstr ""
-#. ERvpY
+#. VDj9r
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"par_id3153062\n"
"help.text"
-msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
-msgstr "<emph>If...Then</emph> -lause suorittaa ohjelmalohkoja annettujen ehtojen mukaisesti. Kun $[officename] Basic tulkitsee <emph>If</emph> lauseen, ehto_1 testataan. Jos ehto_1:n totuusarvo on True (tosi), kaikki seuraavat lauseet suoritetaan seuraavaan <emph>Else</emph>- tai <emph>ElseIf</emph>-lauseeseen asti. Jos ehto_1:n arvo on False (epätosi) ja <emph>ElseIf</emph>-lause seuraa, $[officename] Basic testaa seuraavan ehdon ja suorittaa seuraavat lauseet, jos ehto on arvoltaan True. Jos arvo on False, ohjelma jatkaa seuraavasta <emph>ElseIf</emph>- tai <emph>Else</emph>-lauseesta. <emph>Else</emph>-osan lauseet suoritetaan vain, jos mikään edellisistä testeistä ei ole tuottanut arvoa True. Kun kaikki ehdot on arvioitu ja niitä vastaavat rivit suoritettu, ohjelma jatkuu <emph>EndIf</emph>-rivin jälkeisestä lauseesta."
+msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When %PRODUCTNAME Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is <literal>True</literal>, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is <literal>False</literal>, and an <emph>ElseIf</emph> statement follows, %PRODUCTNAME Basic tests the next expression and executes the following statements if the condition is <literal>True</literal>. If <literal>False</literal>, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were <literal>True</literal>. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+msgstr ""
#. NKDQG
#: 03090101.xhp
@@ -22188,15 +22305,6 @@ msgctxt ""
msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
msgstr "Seuraavassa esimerkissä on mahdollista syöttää tuotteen vanhentumispäivä ja määrittää, onko vanhentumispäivä jo ohitettu."
-#. TZWBx
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"hd_id3152576\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. gDmAx
#: 03090101.xhp
msgctxt ""
@@ -22233,6 +22341,24 @@ msgctxt ""
msgid "MsgBox \"The expiration date is today\""
msgstr "MsgBox \"Vanhentumispäivä on tänään\""
+#. 7qi2i
+#: 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"
+msgstr ""
+
+#. W4Sgi
+#: 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"
+msgstr ""
+
#. ArPEq
#: 03090102.xhp
msgctxt ""
@@ -22278,31 +22404,94 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Select-Case_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Select Case syntax</alt></image>"
msgstr ""
-#. jsSZ5
+#. TJu4u
#: 03090102.xhp
msgctxt ""
"03090102.xhp\n"
-"par_id3150400\n"
+"bas_id251592381900645\n"
+"help.text"
+msgid "Select Case expression"
+msgstr ""
+
+#. XrXnH
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id321592381903509\n"
+"help.text"
+msgid "Case values"
+msgstr ""
+
+#. DCDEC
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id231592381903973\n"
"help.text"
-msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
-msgstr "Select Case ehto Case lauseke1 lauselohko1 [Case lauseke_m lauselohko_m][Case Else] lauselohko_n End Select"
+msgid "Statement Block"
+msgstr ""
-#. yuqsv
+#. 9KDPg
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id361592381904372\n"
+"help.text"
+msgid "[ Case values2"
+msgstr ""
+
+#. jSGvu
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id421592382002520\n"
+"help.text"
+msgid "Statement Block]"
+msgstr ""
+
+#. NcGYQ
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id161592382004496\n"
+"help.text"
+msgid "[ Case Else"
+msgstr ""
+
+#. FkAUG
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id681592382005351\n"
+"help.text"
+msgid "Statement Block]"
+msgstr ""
+
+#. MmACE
+#: 03090102.xhp
+msgctxt ""
+"03090102.xhp\n"
+"bas_id831592381905293\n"
+"help.text"
+msgid "End Select"
+msgstr ""
+
+#. HLsCW
#: 03090102.xhp
msgctxt ""
"03090102.xhp\n"
"par_id3156281\n"
"help.text"
-msgid "<emph>condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
+msgid "<emph>expression:</emph> Any expression that controls if the statement block that follows the respective <literal>Case</literal> clause is executed."
msgstr ""
-#. DoPTj
+#. F88YW
#: 03090102.xhp
msgctxt ""
"03090102.xhp\n"
"par_id3150448\n"
"help.text"
-msgid "<emph>expression:</emph> Any expression that is compatible with the condition type expression. The statement block that follows the <literal>Case</literal> clause is executed if <emph>condition</emph> matches <emph>expression</emph>."
+msgid "<emph>values:</emph> Any value list that is compatible with the expression. The statement block that follows the <literal>Case</literal> clause is executed if <emph>expression</emph> matches <emph>values</emph>."
msgstr ""
#. oCrpX
@@ -22341,31 +22530,49 @@ msgctxt ""
msgid "Print \"Out of range 1 to 10\""
msgstr "Print \"Välin 1...10 ulkopuolella\""
-#. WfFsT
+#. UtJXY
+#: 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"
+msgstr ""
+
+#. mqu6n
+#: 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"
+msgstr ""
+
+#. pm7E8
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
"tit\n"
"help.text"
-msgid "IIf Statement"
+msgid "IIf Function"
msgstr ""
-#. WcDhC
+#. G8vo7
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
"bm_id3155420\n"
"help.text"
-msgid "<bookmark_value>IIf statement</bookmark_value>"
-msgstr "<bookmark_value>Iif-lause</bookmark_value>"
+msgid "<bookmark_value>IIf function</bookmark_value>"
+msgstr ""
-#. HvJuA
+#. ZvPAM
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
"hd_id3155420\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement\">IIf Statement</link>"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Function\">IIf Function</link>"
msgstr ""
#. nYxhE
@@ -22377,15 +22584,6 @@ msgctxt ""
msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
msgstr "Iif palauttaa toisen kahdesta funktion tulosvaihtoehdostaan, riippuen tulkitun lausekkeen totuusarvosta."
-#. DMbgx
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"hd_id3159413\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. dDDFQ
#: 03090103.xhp
msgctxt ""
@@ -22395,15 +22593,6 @@ msgctxt ""
msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
msgstr "Iif (lauseke1, lauseke_on_True, lauseke_on_False)"
-#. Jr9BS
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"hd_id3150541\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. TXHsN
#: 03090103.xhp
msgctxt ""
@@ -22422,6 +22611,51 @@ msgctxt ""
msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
msgstr "<emph>Lauseke_on_True, lauseke_on_False:</emph> mitä tahansa lausekkeita, joista toinen palautetaan iif-funktion tuloksena, riippuen lauseke1:n arvioidusta totuusarvosta."
+#. iEQga
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id541598638231139\n"
+"help.text"
+msgid "IIf evaluates both <literal>ExpressionTrue</literal> and <literal>ExpressionFalse</literal> even if it returns only one of them. If one of the expressions results in error, the function returns the error. For example, do not use IIF to bypass a possible division by zero result."
+msgstr ""
+
+#. vGAma
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id1001598638460925\n"
+"help.text"
+msgid "REM Returns the maximum of 3 values"
+msgstr ""
+
+#. 9JAJ5
+#: 03090103.xhp
+msgctxt ""
+"03090103.xhp\n"
+"par_id161598638840133\n"
+"help.text"
+msgid "REM Bad usage of function IIf"
+msgstr ""
+
+#. dNxFE
+#: 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"
+msgstr ""
+
+#. DjnF7
+#: 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"
+msgstr ""
+
#. RKALL
#: 03090200.xhp
msgctxt ""
@@ -22476,311 +22710,95 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement\">Do...Loop Statement</link>"
msgstr ""
-#. xyfDP
+#. iC6SG
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
"par_id3109850\n"
"help.text"
-msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
-msgstr "Toistetaan Do- ja Loop-lauseiden välisiä lauseita niin kauan kuin ehto on tosi tai kunnes ehto tulee tosi-arvoksi."
-
-#. caSom
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax"
-msgstr "Syntaksi"
-
-#. 3K2PH
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155150\n"
-"help.text"
-msgid "Do [{While | Until} condition = True]"
-msgstr "Do [{While | Until} ehto = True]"
-
-#. UwrEt
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154422\n"
-"help.text"
-msgid "statement block"
-msgstr "lauselohko1"
-
-#. JsBm9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150789\n"
-"help.text"
-msgid "[Exit Do]"
-msgstr "[Exit Do]"
-
-#. rP8AT
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155805\n"
-"help.text"
-msgid "statement block"
-msgstr "lauselohko1"
-
-#. AWeCW
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145090\n"
-"help.text"
-msgid "Loop"
-msgstr "Loop"
+msgid "Repeats the statements between the <emph>Do</emph> and the <emph>Loop</emph> statement while the condition is <literal>True</literal> or until the condition becomes <literal>True</literal>."
+msgstr ""
-#. 9Cv7B
+#. aiGhW
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3154749\n"
+"par_id311592320434736\n"
"help.text"
-msgid "or"
-msgstr "tai"
+msgid "<image src=\"media/helpimg/sbasic/Do_statement.svg\" id=\"img_id601592320434736\"><alt id=\"alt_id551592320434736\">Do statement</alt></image>"
+msgstr ""
-#. Aj9kr
+#. Ebajb
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3150503\n"
+"bas_id171592386317704\n"
"help.text"
-msgid "Do"
-msgstr "Do"
+msgid "' Do While: The statement block is repeated as long as the condition is true"
+msgstr ""
-#. yGEJd
+#. VDEWA
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3149762\n"
+"bas_id11592386319239\n"
"help.text"
-msgid "statement block"
-msgstr "lauselohko1"
+msgid "' Do Until: The statement block is repeated as long as the condition is false"
+msgstr ""
-#. 93KEy
+#. Dsqzg
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3150984\n"
+"par_id591592320435808\n"
"help.text"
-msgid "[Exit Do]"
-msgstr "[Exit Do]"
+msgid "<image src=\"media/helpimg/sbasic/Do-Loop_statement.svg\" id=\"img_id691592320435808\"><alt id=\"alt_id341592320435808\">Do...Loop statement</alt></image>"
+msgstr ""
-#. o2rc9
+#. VVtxi
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3143228\n"
+"bas_id911592386676044\n"
"help.text"
-msgid "statement block"
-msgstr "lauselohko1"
+msgid "' Loop While: The statement block repeats as long as the condition is true"
+msgstr ""
-#. 8qghf
+#. 92FMy
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3149235\n"
+"bas_id971592386677004\n"
"help.text"
-msgid "Loop [{While | Until} condition = True]"
-msgstr "Loop [{While | Until} ehto = True]"
+msgid "' Loop Until: The statement block repeats until the condition is true"
+msgstr ""
-#. 2AEDG
+#. YFnQL
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"hd_id3156024\n"
+"par_id3150791\n"
"help.text"
-msgid "Parameters/Elements"
-msgstr "Parametrit/osatekijät"
+msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is <literal>True</literal>. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The above examples are valid combinations."
+msgstr ""
-#. qkEcG
+#. 8QxEA
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
-msgstr "<emph>Ehto:</emph> vertailu-, numeerinen tai merkkijonolauseke, joka saa arvon True tai False."
+msgid "<emph>condition:</emph> A comparison, numeric or Basic expression, that evaluates to either <literal>True</literal> or <literal>False</literal>."
+msgstr ""
-#. jLqcT
+#. C6QdX
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
"par_id3149669\n"
"help.text"
-msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
-msgstr "<emph>Lauselohko:</emph> lauseet, jotka toistetaan niin kauan (while) tai kunnes (until) ehto on True."
-
-#. PdzkX
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150791\n"
-"help.text"
-msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
-msgstr "<emph>Do...Loop</emph>-lausetta suoritetaan silmukassa niin kauan kuin tietty ehto on tosi, tai siihen saakka kun ehto tulee todeksi (True). Silmukasta poistumisehdon pitää seurata <emph>Do</emph> -lausetta ennen <emph>Loop</emph> -lausetta. Seuraavassa on esitetty kelvolliset vaihtoehdot:"
-
-#. uYAtt
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3154366\n"
-"help.text"
-msgid "Syntax"
-msgstr "Syntaksi"
-
-#. kfmWR
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3145171\n"
-"help.text"
-msgid "Do While condition = True"
-msgstr "Do While ehto = True"
-
-#. f6vGS
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149203\n"
-"help.text"
-msgid "...statement block"
-msgstr "...lauselohko"
-
-#. bERMk
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3125864\n"
-"help.text"
-msgid "Loop"
-msgstr "Loop"
-
-#. NzaK9
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154124\n"
-"help.text"
-msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
-msgstr "Lauselohkoa, joka on Do While ja Loop-lauseiden välissä, toistetaan niin kauan kuin ehto on tosi (True)."
-
-#. uFfcD
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153968\n"
-"help.text"
-msgid "Do Until condition = True"
-msgstr "Do Until ehto = True"
-
-#. CC8GU
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154909\n"
-"help.text"
-msgid "...statement block"
-msgstr "...lauselohko"
-
-#. KrHxA
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159151\n"
-"help.text"
-msgid "Loop"
-msgstr "Loop"
-
-#. 29fJ2
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150440\n"
-"help.text"
-msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
-msgstr "Do Until ja Loop-lauseiden välistä lauselohkoa toistetaan niin kauan kuin ehto säilyy epätotena (False)."
-
-#. HYDHM
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153952\n"
-"help.text"
-msgid "Do"
-msgstr "Do"
-
-#. QRBVd
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3147349\n"
-"help.text"
-msgid "...statement block"
-msgstr "...lauselohko"
-
-#. DCBsg
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3159153\n"
-"help.text"
-msgid "Loop While condition = True"
-msgstr "Loop While ehto = True"
-
-#. BuEGy
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3146985\n"
-"help.text"
-msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
-msgstr "Do- ja Loop-lauseiden välistä lauselohkoa toistetaan niin kauan kuin ehto säilyy totena (True)."
-
-#. NPwEx
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150488\n"
-"help.text"
-msgid "Do"
-msgstr "Do"
-
-#. wutQ5
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153189\n"
-"help.text"
-msgid "...statement block"
-msgstr "...lauselohko"
-
-#. LRGmB
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3155411\n"
-"help.text"
-msgid "Loop Until condition = True"
-msgstr "Loop Until ehto = True"
-
-#. NeasA
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3151117\n"
-"help.text"
-msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
-msgstr "Do- ja Loop-lauseiden välistä lauselohkoa toistetaan kunnes ehto on tosi (True)."
+msgid "<emph>statements:</emph> Statements that you want to repeat while or until a condition is <literal>True</literal>."
+msgstr ""
#. iXQfC
#: 03090201.xhp
@@ -22791,58 +22809,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 "<emph>Exit Do</emph>-lausetta käytetään ehdottomaan silmukasta poistumiseen. Lauseen voi lisätä mihin vain lauseiden <emph>Do</emph>...<emph>Loop</emph> välille. Poistumisehdon voi määrittää myös käyttämällä <emph>If...Then</emph> -rakennetta seuraavaan tapaan:"
-#. 5DPqL
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3149262\n"
-"help.text"
-msgid "Do..."
-msgstr "Do..."
-
-#. KS9Nc
+#. pGFcg
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3149298\n"
+"par_id161588865796615\n"
"help.text"
-msgid "statements"
+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"
msgstr ""
-#. zBAab
+#. NEcfM
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3145646\n"
-"help.text"
-msgid "If condition = True Then Exit Do"
-msgstr "If ehto = True Then Exit Do"
-
-#. 6AC2Y
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3154490\n"
-"help.text"
-msgid "statements"
-msgstr "lauseet"
-
-#. F23Fn
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3153159\n"
-"help.text"
-msgid "Loop..."
-msgstr "Loop..."
-
-#. o6GUo
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"hd_id3147396\n"
+"par_id281588865818334\n"
"help.text"
-msgid "Example"
+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"
msgstr ""
#. QECNJ
@@ -22854,13 +22836,13 @@ msgctxt ""
msgid "For...Next Statement"
msgstr ""
-#. Byex6
+#. TvxZC
#: 03090202.xhp
msgctxt ""
"03090202.xhp\n"
"bm_id3149205\n"
"help.text"
-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> <bookmark_value>Step keyword</bookmark_value>"
+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
@@ -23160,14 +23142,14 @@ msgctxt ""
msgid "While...Wend Statement"
msgstr ""
-#. 8FsGX
+#. MB6No
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"bm_id3150400\n"
"help.text"
-msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
-msgstr "<bookmark_value>While;While...Wend -silmukka</bookmark_value>"
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value> <bookmark_value>While;While Wend loop</bookmark_value>"
+msgstr ""
#. 4Gx4Q
#: 03090203.xhp
@@ -23178,149 +23160,77 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement\">While...Wend Statement</link>"
msgstr ""
-#. dQPTn
+#. QMYRt
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id3151211\n"
"help.text"
-msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
-msgstr "Kun ohjelma tulee While-lauseeseen, ehto testataan. Jos ehto on False (epätosi), ohjelma hyppää suoraan Wend-lausetta seuraavalle riville. Jos ehto on True (tosi), silmukkaa suoritetaan, kunnes tullaan Wend-lauseeseen. Tästä hypätään takaisin <emph> While</emph>-lauseeseen. Jos ehto on yhä True, silmukka suoritetaan jälleen."
+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 ""
-#. 2Xbwe
+#. 2WnLN
#: 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 While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
-msgstr "Toisin kuin <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> -lauseesta, <emph>While...Wend</emph> -silmukasta ei voi poistua <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>-lauseella. While...Wend -silmukasta ei pidä myöskään poistua <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>-lauseella, koska tästä voi seurata ajonaikainen virhe."
+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."
+msgstr ""
-#. AatCY
+#. s8j22
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id3145172\n"
"help.text"
-msgid "A Do...Loop is more flexible than a While...Wend."
-msgstr "Do...Loop -rakenne on joustavampi kuin While...Wend."
-
-#. pWv5M
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"hd_id3155133\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. BCMGD
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3147288\n"
-"help.text"
-msgid "While Condition [Statement] Wend"
-msgstr "While ehto1 [lauselohko] Wend"
-
-#. 7ApBj
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"hd_id3153139\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
-#. TYEgW
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3159153\n"
-"help.text"
-msgid "Sub ExampleWhileWend"
-msgstr "Sub ExampleWhileWend"
-
-#. AosNw
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3151114\n"
-"help.text"
-msgid "Dim stext As String"
-msgstr "Dim stext As String"
+msgid "A <literal>Do...Loop</literal> is more flexible than a <literal>While...Wend.</literal>"
+msgstr ""
-#. jKvee
+#. DB6ZD
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
-"par_id3153143\n"
+"par_id831588865616326\n"
"help.text"
-msgid "Dim iRun As Integer"
-msgstr "Dim iRun As Integer"
+msgid "<image src=\"media/helpimg/sbasic/While_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">While syntax</alt></image>"
+msgstr ""
-#. FBRFy
+#. DZ929
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id3155306\n"
"help.text"
-msgid "sText =\"This Is a short text\""
-msgstr "sText =\"Tämä on lyhyt teksti\""
-
-#. 2bjBx
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3154011\n"
-"help.text"
-msgid "iRun = 1"
-msgstr "iRun = 1"
-
-#. tCNtB
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3147215\n"
-"help.text"
-msgid "While iRun < Len(sText)"
-msgstr "While iRun < Len(sText)"
-
-#. CBNWG
-#: 03090203.xhp
-msgctxt ""
-"03090203.xhp\n"
-"par_id3147427\n"
-"help.text"
-msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
-msgstr "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
+msgid "sText =\"This is a short text\""
+msgstr ""
-#. HGfLz
+#. ATdAF
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
-"par_id3149665\n"
+"par_id3153189\n"
"help.text"
-msgid "iRun = iRun + 1"
-msgstr "iRun = iRun + 1"
+msgid "MsgBox sText,0,\"Text encoded\""
+msgstr "MsgBox sText,0,\"Teksti koodattu\""
-#. Ga2Lj
+#. iADnG
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
-"par_id3152939\n"
+"par_id161588865796615\n"
"help.text"
-msgid "Wend"
-msgstr "Wend"
+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"
+msgstr ""
-#. ATdAF
+#. JAoLW
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
-"par_id3153189\n"
+"par_id281588865818334\n"
"help.text"
-msgid "MsgBox sText,0,\"Text encoded\""
-msgstr "MsgBox sText,0,\"Teksti koodattu\""
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit statement\">Exit</link> statement"
+msgstr ""
#. kSjtx
#: 03090300.xhp
@@ -23547,22 +23457,22 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parametrit:"
-#. KaSma
+#. AoFVn
#: 03090302.xhp
msgctxt ""
"03090302.xhp\n"
"par_id471588670859073\n"
"help.text"
-msgid "<emph>label: </emph>A line identifier indicating where to continue execution. The scope of a label in that of the routine it belongs to."
+msgid "<emph>label: </emph>A line identifier indicating where to continue execution. The scope of a label is that of the routine it belongs to."
msgstr ""
-#. YxYq5
+#. ocGjF
#: 03090302.xhp
msgctxt ""
"03090302.xhp\n"
"par_id3152596\n"
"help.text"
-msgid "Use the <literal>GoTo</literal> statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
+msgid "Use the <literal>GoTo</literal> statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and end it with a colon (\":\")."
msgstr ""
#. 8o2aP
@@ -24474,13 +24384,13 @@ msgctxt ""
msgid "Defines a subroutine that can be used as an expression to determine a return type."
msgstr "Function-lauseella määritellään aliohjelma, jota voidaan käyttää lausekkeena, joka määrittää palautusarvon tyyppeineen."
-#. PfUxE
+#. qCx4G
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"par_id661588586825434\n"
"help.text"
-msgid "<literal>Sub</literal> or <literal>Function</literal> statements are similar methods, without distinction. They receive parameters by reference allowing them to be modified. %PRODUCTNAME Basic compiler accepts their respective syntax to be used interchangeably."
+msgid "<literal>Sub</literal>, <literal>Function</literal> or <literal>Property</literal> statements are similar methods, without distinction. They receive parameters by reference allowing them to be modified in return. %PRODUCTNAME Basic compiler accepts their respective argument syntax to be used interchangeably."
msgstr ""
#. zFnQ7
@@ -24735,13 +24645,13 @@ msgctxt ""
msgid "<bookmark_value>Sub statement</bookmark_value>"
msgstr "<bookmark_value>Sub-lause</bookmark_value>"
-#. iyuLQ
+#. ZjnGN
#: 03090409.xhp
msgctxt ""
"03090409.xhp\n"
"hd_id3147226\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement\">Sub Statement</link>"
+msgid "<variable id=\"Sub_h1\"><link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement\">Sub Statement</link></variable>"
msgstr ""
#. YELg8
@@ -26211,95 +26121,167 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement\">Const Statement</link>"
msgstr ""
-#. AASbb
+#. xPBxj
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
"par_id3154143\n"
"help.text"
-msgid "Defines a string as a constant."
-msgstr "Const-lause määrittelee merkkijonon vakioksi."
+msgid "Defines one or more identifiers as constants."
+msgstr ""
-#. KAtyB
+#. 4sYHn
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"hd_id3150670\n"
+"par_id3147264\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified."
+msgstr ""
-#. bvD2M
+#. ucqd6
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_id3150984\n"
+"par_id831588865616326\n"
"help.text"
-msgid "Const Text = Expression"
-msgstr "Const teksti1 = lauseke1"
+msgid "<image src=\"media/helpimg/sbasic/Const_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Const syntax</alt></image>"
+msgstr ""
-#. zwnoG
+#. QZJkC
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"hd_id3147530\n"
+"par_id3150984\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "[Global|Private|Public] Const name = expression[, ...]"
+msgstr ""
-#. oJbVy
+#. 8cNC9
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
"par_id3153897\n"
"help.text"
-msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
-msgstr "<emph>Teksti1:</emph> mikä tahansa muuttujien nimeämissääntöjä noudattava nimi, joka annetaan vakiolle."
+msgid "<emph>name:</emph> Any identifier that follows the standard variable naming conventions."
+msgstr ""
-#. CBCHY
+#. MYNoo
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_id3147264\n"
+"par_id791593689338208\n"
"help.text"
-msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:"
-msgstr "Vakio on muuttuja, jolla on tarkoitus parantaa ohjelman luettavuutta. Vakioita ei määritetä mihinkään erityiseen muuttujatyyppiin, vaan ne toimivat paremminkin paikanvaraajina koodissa. Kukin vakio voidaan määrittää vain kerran, eikä sitä voida muuttaa. Seuraavaa lausetta voi soveltaa vakion määrittämiseen:"
+msgid "<emph>expression:</emph> Any literal expression."
+msgstr ""
-#. XCQgM
+#. C8b4Z
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_id3150542\n"
+"par_id3150400\n"
"help.text"
-msgid "CONST ConstName=Expression"
-msgstr "CONST vakion_nimi=lauseke"
+msgid "The data type must be omitted. When a library gets loaded in memory, %PRODUCTNAME Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
+msgstr ""
-#. 7tqgF
+#. fYdeb
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_id3150400\n"
+"hd_id51593690561479\n"
"help.text"
-msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
-msgstr "Lausekkeen tyypillä ei ole merkitystä. Kun ohjelma käynnistetään, $[officename] Basic muuntaa ohjelmakoodin sisäisesti niin, että joka kerta kun vakiota käytetään, määritetty lauseke korvaa sen."
+msgid "Scope"
+msgstr ""
-#. yKGrA
+#. QwPhy
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"hd_id3154366\n"
+"par_id431593690612961\n"
"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
+msgid "By default constants are defined as private in modules and routines. Constants can be made public or global in order to be used from all modules, from all Basic libraries."
+msgstr ""
-#. VBDYG
+#. EAL5T
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_id3153969\n"
+"par_id241593693307830\n"
+"help.text"
+msgid "<literal>Global</literal>, <literal>Private</literal> and <literal>Public</literal> specifiers can only be used for module constants."
+msgstr ""
+
+#. 7HRGK
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"bas_id911593692598060\n"
+"help.text"
+msgid "Const EARTH = \"♁\" ' module scope"
+msgstr ""
+
+#. pCVMW
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"bas_id441593692601125\n"
+"help.text"
+msgid "Private Const MOON = \"☾\" ' module scope"
+msgstr ""
+
+#. xjhjq
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"bas_id161593692601597\n"
+"help.text"
+msgid "Public Const VENUS=\"♀\", MARS=\"♂\" ' general scope"
+msgstr ""
+
+#. 6LzLX
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"bas_id581593692602046\n"
+"help.text"
+msgid "Global Const SUN = \"☉\", STAR = \"☆\" ' general scope"
+msgstr ""
+
+#. aFEH7
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_idm1341160752\n"
+"help.text"
+msgid "Const SUN = 3 * 1.456 / 56 ' SUN is local"
+msgstr ""
+
+#. 5ZVn4
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_idm1341159520\n"
+"help.text"
+msgid "MsgBox SUN,, MOON ' SUN global constant is unchanged"
+msgstr ""
+
+#. e9BxY
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id111593694878677\n"
"help.text"
-msgid "Const sVar = \"Program\", dVar As Double = 1.00"
-msgstr "Const sVar = \"Ohjelma\", dVar As Double = 1.00"
+msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum\">Enum</link> statement"
+msgstr ""
+
+#. ZYFUV
+#: 03100700.xhp
+msgctxt ""
+"03100700.xhp\n"
+"par_id111953694878677\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Enum\">Type</link> statement"
+msgstr ""
#. FmimE
#: 03100900.xhp
@@ -26643,95 +26625,59 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
msgstr "Jos tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty, DefBool-lause asettaa muuttujan oletustietotyypin alkukirjainten perusteella."
-#. dvmLf
+#. SZ3Ak
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
-"hd_id3149495\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. Vapap
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150682\n"
+"par_id971587473488701\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx kirjainalue1[, kirjainalue2[,...]]"
+msgid "<image src=\"media/helpimg/sbasic/Defxxx_statements.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">DefType statements diagram</alt></image>"
+msgstr ""
-#. wg6zG
+#. NFRzL
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
-"hd_id3159201\n"
+"par_id3147336\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "<emph>char:</emph> Letter prefix that specifies default data type for variables."
+msgstr ""
-#. AFhFa
+#. CBqSz
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
"par_id3147226\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Kirjainalue:</emph> kirjaimet, jotka määrittävät alkukirjaimina joukon muuttujia, joille asetetaan oletustietotyyppi."
-
-#. jhcfS
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3149178\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> avainsana, joka määrittää oletusmuuttujatyypin:"
-
-#. 2Tv76
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150669\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Avainsana:</emph> oletusmuuttujatyyppi"
-
-#. wRGMS
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3149233\n"
-"help.text"
-msgid "<emph>DefBool:</emph> Boolean"
-msgstr "<emph>DefBool:</emph> Boolen"
+msgid "<emph>char-char:</emph> Letter range prefixes that specify default data type for variables."
+msgstr ""
-#. NRAAt
+#. 9vqSg
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
-"hd_id3149762\n"
+"par_id3156152\n"
"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
+msgid "' Prefix definitions for variable types:"
+msgstr ""
-#. AhnXE
+#. QC5gr
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
-"par_id3156152\n"
+"par_id3152481\n"
"help.text"
-msgid "' Prefix definition for variable types:"
-msgstr "' Etuliitteen määrittämät muuttujatyypit:"
+msgid "Print TypeName(Boole), VarType(Babbage), bitcoin ' Displays: Boolean 11 False"
+msgstr ""
-#. BLc3G
+#. i5aFp
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
"par_id3151381\n"
"help.text"
-msgid "bOK=TRUE ' bOK is an implicit boolean variable"
-msgstr "bOK=TRUE ' bOK on oletuksellisesti Boolen muuttuja"
+msgid "bOK=True ' bOK is an implicit boolean variable"
+msgstr ""
#. zabpF
#: 03101110.xhp
@@ -26769,14 +26715,14 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
msgstr "DefCur-lause asettaa muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. sqyeC
+#. UJUeE
#: 03101110.xhp
msgctxt ""
"03101110.xhp\n"
-"par_idN105B0\n"
+"par_idN105D8\n"
"help.text"
-msgid "<emph>DefCur:</emph> Currency"
-msgstr "<emph>DefCur:</emph> valuutta"
+msgid "Print liquid, Typename(coinbit), VarType(money) ' Result is: 0.0000 Currency 6"
+msgstr ""
#. uA7E4
#: 03101110.xhp
@@ -26823,15 +26769,6 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
msgstr "DefErr-lause asettaa muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. SPBLB
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefErr:</emph> Error"
-msgstr "<emph>DefErr:</emph> Error"
-
#. b8Tvs
#: 03101120.xhp
msgctxt ""
@@ -26877,23 +26814,23 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
msgstr "DefSng-lause asettaa muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. UBc9R
+#. FEQfu
#: 03101130.xhp
msgctxt ""
"03101130.xhp\n"
-"par_idN105AA\n"
+"par_idN105D3\n"
"help.text"
-msgid "<emph>DefSng:</emph> Single"
-msgstr "<emph>DefSng:</emph> perustarkkuuden liukuluku"
+msgid "wSng=Single ' wSng is an implicit single variable"
+msgstr ""
-#. VsSH4
+#. B2kjC
#: 03101130.xhp
msgctxt ""
"03101130.xhp\n"
-"par_idN105D3\n"
+"par_idN105D4\n"
"help.text"
-msgid "sSng=Single ' sSng is an implicit single variable"
-msgstr "sSng=Single ' sSng on oletuksellisesti perustarkkuuden liukulukumuuttuja"
+msgid "Print afloat, Typename(Word), VarType(anyNum) ' Result is : 0 single 4"
+msgstr ""
#. zfvWo
#: 03101140.xhp
@@ -26931,23 +26868,23 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
msgstr "DefStr-lause asettaa muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. 6GXn9
+#. LCyE8
#: 03101140.xhp
msgctxt ""
"03101140.xhp\n"
-"par_idN105AA\n"
+"par_idN105D3\n"
"help.text"
-msgid "<emph>DefStr:</emph> String"
-msgstr "<emph>DefStr:</emph> merkkijono"
+msgid "sStr=String ' sStr is an implicit string variable"
+msgstr "sStr=String ' sStr on oletuksellisesti merkkijono-muuttuja"
-#. LCyE8
+#. pVAGJ
#: 03101140.xhp
msgctxt ""
"03101140.xhp\n"
-"par_idN105D3\n"
+"par_idN105D4\n"
"help.text"
-msgid "sStr=String ' sStr is an implicit string variable"
-msgstr "sStr=String ' sStr on oletuksellisesti merkkijono-muuttuja"
+msgid "Print VarType(slice), strng, TypeName(sheet) ' Result is: 8 \"\" String"
+msgstr ""
#. E5nXi
#: 03101300.xhp
@@ -26985,23 +26922,23 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
msgstr "DefDate-lause asettaa muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. 7bqLD
+#. sGAWV
#: 03101300.xhp
msgctxt ""
"03101300.xhp\n"
-"par_id3150767\n"
+"par_id3152462\n"
"help.text"
-msgid "<emph>DefDate:</emph> Date"
-msgstr "<emph>DefDate:</emph> päivämäärä"
+msgid "tDate=Date ' tDate is an implicit date variable"
+msgstr "tDate=Date ' tDate on oletuksellisesti päivämäärämuuttuja"
-#. sGAWV
+#. kEsRX
#: 03101300.xhp
msgctxt ""
"03101300.xhp\n"
-"par_id3152462\n"
+"par_id3153562\n"
"help.text"
-msgid "tDate=Date ' tDate is an implicit date variable"
-msgstr "tDate=Date ' tDate on oletuksellisesti päivämäärämuuttuja"
+msgid "Print VarType(tea), train, TypeName(timedate), IsDate(tick) ' Displays: 7 00:00:00 Date True"
+msgstr ""
#. c8vDs
#: 03101400.xhp
@@ -27039,23 +26976,23 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr "Asetetaan muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. ctoJu
+#. oWGT8
#: 03101400.xhp
msgctxt ""
"03101400.xhp\n"
-"par_id3154123\n"
+"par_id3154244\n"
"help.text"
-msgid "<emph>DefDbl:</emph> Double"
-msgstr "<emph>DefDbl:</emph> kaksoistarkkuuden liukuluku"
+msgid "fValue=1.23e43 ' fValue is an implicit double variable type"
+msgstr ""
-#. 2f3z3
+#. DcRHT
#: 03101400.xhp
msgctxt ""
"03101400.xhp\n"
"par_id3153144\n"
"help.text"
-msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
-msgstr "dValue=1.23e43 ' dValue on oletuksellisesti kaksoistarkkuuden liukulukumuuttuja"
+msgid "Print Typename(float), VarType(fire), factory ' Result is: Double 5 0"
+msgstr ""
#. mcUhD
#: 03101500.xhp
@@ -27093,23 +27030,23 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr "Asetetaan muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. WgpHG
+#. zxFQy
#: 03101500.xhp
msgctxt ""
"03101500.xhp\n"
-"par_id3125863\n"
+"par_id3164728\n"
"help.text"
-msgid "<emph>DefInt:</emph> Integer"
-msgstr "<emph>DefInt:</emph> kokonaisluku"
+msgid "iCount=200 ' iCount is an implicit integer variable"
+msgstr ""
-#. 7H7tx
+#. kXjfq
#: 03101500.xhp
msgctxt ""
"03101500.xhp\n"
"par_id3153728\n"
"help.text"
-msgid "iCount=200 ' iCount is an implicit integer variable"
-msgstr "iCount=200 ' iCount on oletuksellisesti kokonaislukumuuttuja"
+msgid "Print kilos, Typename(number), VarType(Java) ' Result is: 0 Integer 2"
+msgstr ""
#. kK2Aw
#: 03101600.xhp
@@ -27147,23 +27084,23 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr "Asetetaan muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. sLCx9
+#. Dn2Xk
#: 03101600.xhp
msgctxt ""
"03101600.xhp\n"
-"par_id3154686\n"
+"par_id3145273\n"
"help.text"
-msgid "<emph>DefLng:</emph> Long"
-msgstr "<emph>DefLng:</emph> pitkä kokonaisluku"
+msgid "xCount=123456789 ' xCount is an implicit long integer variable"
+msgstr ""
-#. WPTCA
+#. Pg49N
#: 03101600.xhp
msgctxt ""
"03101600.xhp\n"
-"par_id3145273\n"
+"par_id3255273\n"
"help.text"
-msgid "lCount=123456789 ' lCount is an implicit long integer variable"
-msgstr "lCount=123456789 ' lCount on oletuksellisesti pitkä kokonaislukumuuttuja"
+msgid "Print VarType(Yes), zinc, Typename(Max) ' Result is: 3 0 Long"
+msgstr ""
#. k5A5k
#: 03101700.xhp
@@ -27201,14 +27138,14 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr "Asetetaan muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. DTNnj
+#. Ds9qa
#: 03101700.xhp
msgctxt ""
"03101700.xhp\n"
-"par_id3150769\n"
+"par_id3255273\n"
"help.text"
-msgid "<emph>DefObj:</emph> Object"
-msgstr "<emph>DefObj:</emph> objekti"
+msgid "Print Typename(properties), VarType(ordinal), IsNull(unique), IsObject(org)' Result is: Object 9 True False"
+msgstr ""
#. oaF9W
#: 03102000.xhp
@@ -27246,87 +27183,6 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr "Asetetaan muuttujan tietotyyppi kirjainalueen mukaiseksi, mikäli tyypin määrittävää kirjainta tai avainsanaa ei ole käytetty."
-#. QntwN
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3154143\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. FACB3
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3149514\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr "Defxxx kirjainalue1[, kirjainalue2[,...]]"
-
-#. giJy9
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3156024\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
-#. tAPGo
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3147560\n"
-"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr "<emph>Kirjainalue:</emph> kirjaimet, jotka määrittävät alkukirjaimina joukon muuttujia, joille asetetaan oletustietotyyppi."
-
-#. rG9MV
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3148552\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr "<emph>xxx:</emph> avainsana, joka määrittää oletusmuuttujatyypin:"
-
-#. uEmwr
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3153524\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "<emph>Avainsana:</emph> oletusmuuttujatyyppi"
-
-#. C78EJ
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3150767\n"
-"help.text"
-msgid "<emph>DefVar:</emph> Variant"
-msgstr "<emph>DefVar:</emph> variant-tyypin yleismuuttuja"
-
-#. ZDBBg
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3151041\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
-#. QEkeu
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3156214\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr "' Etuliitteen määrittämät muuttujatyypit:"
-
#. TJouG
#: 03102000.xhp
msgctxt ""
@@ -27336,14 +27192,23 @@ msgctxt ""
msgid "vDiv=99 ' vDiv is an implicit variant"
msgstr "vDiv=99 ' vDiv on oletuksellisesti variant-tyyppiä"
-#. zCdB9
+#. 7BG6Y
#: 03102000.xhp
msgctxt ""
"03102000.xhp\n"
"par_id3146121\n"
"help.text"
-msgid "vDiv=\"Hello world\""
-msgstr "vDiv=\"Terve, maailma!\""
+msgid "values=\"Hello world\""
+msgstr ""
+
+#. BoCFz
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3147221\n"
+"help.text"
+msgid "Print Typename(glob), VarType(values), IsEmpty(vOffer) ' Displays: Empty 8 True"
+msgstr ""
#. 2jpst
#: 03102100.xhp
@@ -31773,13 +31638,13 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. gunCB
+#. nYDuW
#: 03120201.xhp
msgctxt ""
"03120201.xhp\n"
"par_id3143228\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of <emph>n</emph> is 65535."
+msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of <emph>n</emph> is 2,147,483,648."
msgstr ""
#. xfAcE
@@ -31827,15 +31692,6 @@ msgctxt ""
msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
msgstr "String luo merkkijonon tiettyä merkkiä toistaen tai ensimmäisestä merkkijonolausekkeen merkistä, joka välitetään funktiolle."
-#. YEQWe
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3149516\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. EVKUs
#: 03120202.xhp
msgctxt ""
@@ -31845,15 +31701,6 @@ msgctxt ""
msgid "String (n As Long, {expression As Integer | character As String})"
msgstr "String (n As Long, {lauseke1 As Integer | merkki1 As String})"
-#. Uaxak
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3143270\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. GfqGg
#: 03120202.xhp
msgctxt ""
@@ -31863,23 +31710,14 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. 5gnCP
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3154923\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
-#. xvDy5
+#. FTqT4
#: 03120202.xhp
msgctxt ""
"03120202.xhp\n"
"par_id3154347\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
-msgstr "<emph>N:</emph> numeerinen lauseke, joka osoittaa palautettavien merkkien määrän. Suurin sallittu n:n arvo on 65535."
+msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 2,147,483,648."
+msgstr ""
#. uARjD
#: 03120202.xhp
@@ -31899,15 +31737,6 @@ msgctxt ""
msgid "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
msgstr "<emph>Merkki1:</emph> mikä tahansa yksittäinen merkki, josta rakennetaan palautettava merkkijono tai mikä tahansa merkkijono, josta vain ensimmäistä merkkiä käytetään."
-#. iApAt
-#: 03120202.xhp
-msgctxt ""
-"03120202.xhp\n"
-"hd_id3152920\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. avFC9
#: 03120300.xhp
msgctxt ""
@@ -31980,15 +31809,6 @@ msgctxt ""
msgid "Converts a number to a string, and then formats it according to the format that you specify."
msgstr "Format muuntaa luvun merkkijonoksi ja sitten muotoilee sen määrätyn muotoilun mukaisesti."
-#. ESujY
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3145090\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. wp4Ae
#: 03120301.xhp
msgctxt ""
@@ -31998,15 +31818,6 @@ msgctxt ""
msgid "Format (Number [, Format As String])"
msgstr "Format (luku1 [, muotoilu1 As String])"
-#. SrkYm
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149178\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. gddga
#: 03120301.xhp
msgctxt ""
@@ -32016,15 +31827,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. WGjGQ
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3159176\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. 6Dyxg
#: 03120301.xhp
msgctxt ""
@@ -32304,15 +32106,6 @@ msgctxt ""
msgid "A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers."
msgstr "Muotoilukoodi on jaettavissa kolmeen osaan, jotka erotellaan toisistaan puolipistein. Ensimmäinen osa muotoilee positiiviset luvut, toinen osa on negatiivisille luvuille ja kolmas nollalle. Jos määritellään vain yksi muotoilukoodi, sitä käytetään kaikkiin lukuihin."
-#. GXmDT
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149019\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. ZsNPC
#: 03120301.xhp
msgctxt ""
@@ -32466,15 +32259,6 @@ msgctxt ""
msgid "Returns the number of leftmost characters that you specify of a string expression."
msgstr "Left palauttaa määritellyn määrän merkkijonolausekkeen merkkejä vasemmalta lukien."
-#. UF45c
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"hd_id3156153\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. H2Ftq
#: 03120303.xhp
msgctxt ""
@@ -32484,15 +32268,6 @@ msgctxt ""
msgid "Left (Text As String, n As Long)"
msgstr "Left (teksti1 As String, n As Long)"
-#. 48Gmp
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"hd_id3153824\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. to74m
#: 03120303.xhp
msgctxt ""
@@ -32502,15 +32277,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. ZJXfA
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"hd_id3148946\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. hRWZH
#: 03120303.xhp
msgctxt ""
@@ -32520,14 +32286,14 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
msgstr "<emph>Teksti1:</emph> Mikä tahansa merkkijonolauseke, josta palautetaan merkkejä vasemmalta lukien."
-#. jVzCK
+#. BPXpD
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
"par_id3149456\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
-msgstr "<emph>N:</emph> numeerinen lauseke, joka määrittää kuinka monta merkkiä halutaan palauttaa. Jos <emph>n</emph> = 0, palautetaan merkkijono, jonka pituus on nolla. Suurin sallittu arvo on 65535."
+msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
+msgstr ""
#. FPXvk
#: 03120303.xhp
@@ -32538,15 +32304,6 @@ msgctxt ""
msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
msgstr "Seuraava esimerkki muuntaa päivämäärän muodosta VVVV.KK.PP muotoon MM/DD/YYYY."
-#. YQQDH
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"hd_id3125863\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. TJBfC
#: 03120303.xhp
msgctxt ""
@@ -32592,15 +32349,6 @@ msgctxt ""
msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
msgstr "Lset-lause kohdistaa merkkijonon vasemmalle merkkijonomuuttujassa tai kopioi käyttäjän määrittämän muuttujan toiseen käyttäjän määrittämään muuttujaan."
-#. wKtHD
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3145317\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. tFaav
#: 03120304.xhp
msgctxt ""
@@ -32610,15 +32358,6 @@ msgctxt ""
msgid "LSet Var As String = Text or LSet Var1 = Var2"
msgstr "LSet muuttuja1 As String = teksti1 tai LSet muuttuja2 = muuttuja3"
-#. 2vzrB
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3143271\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. M99uG
#: 03120304.xhp
msgctxt ""
@@ -32664,15 +32403,6 @@ msgctxt ""
msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
msgstr "Jos teksti1 on lyhyempi kuin muuttuja1, <emph>LSet</emph> kohdistaa teksti1:n vasemmalle muuttuja1:een. Jäljelle jäävä tila täytetään välilyönneillä. Jos merkkijono on pitempi kuin merkkijonomuuttuja, merkit kopioidaan vasemmalta alkaen vain muuttujan pituuteen asti. <emph>LSet</emph>-lauseella voidaan kopioida myös käyttäjän määrittämää tyyppiä oleva muuttuja toiseen samanlaiseen."
-#. BQw4P
-#: 03120304.xhp
-msgctxt ""
-"03120304.xhp\n"
-"hd_id3156282\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. jJepi
#: 03120304.xhp
msgctxt ""
@@ -32736,15 +32466,6 @@ msgctxt ""
msgid "Removes all leading spaces at the start of a string expression."
msgstr "LTrim poistaa välilyönnit merkkijonon alusta."
-#. vG8YP
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3154924\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. cepxM
#: 03120305.xhp
msgctxt ""
@@ -32754,15 +32475,6 @@ msgctxt ""
msgid "LTrim (Text As String)"
msgstr "LTrim (teksti1 As String)"
-#. KzzDh
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3156344\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. LyUCE
#: 03120305.xhp
msgctxt ""
@@ -32772,15 +32484,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. 8hNZD
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3150543\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. x85WJ
#: 03120305.xhp
msgctxt ""
@@ -32799,15 +32502,6 @@ msgctxt ""
msgid "Use this function to remove spaces at the beginning of a string expression."
msgstr "Tätä funktiota käytetään merkkijonon alussa olevien välilyöntien poistamiseen."
-#. FExzu
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"hd_id3145419\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. Afrvq
#: 03120306.xhp
msgctxt ""
@@ -32844,15 +32538,6 @@ msgctxt ""
msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
msgstr "<emph>Mid-funktio</emph> palauttaa määrätyn osan merkkijonolausekkeesta. <emph>Mid-lause</emph> korvaa osan merkkijonosta toisella merkkijonolla."
-#. ye7Tj
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3154285\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. 32BvU
#: 03120306.xhp
msgctxt ""
@@ -32862,15 +32547,6 @@ msgctxt ""
msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
msgstr "Mid (teksti1 As String, alku1 As Long [, pituus1 As Long]) tai Mid (teksti1 As String, alku1 As Long , pituus1 As Long, teksti2 As String)"
-#. Bw3Yb
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3145068\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. 5MG4F
#: 03120306.xhp
msgctxt ""
@@ -32880,15 +32556,6 @@ msgctxt ""
msgid "String (only by Function)"
msgstr "merkkijono (String, vain funktiolla)"
-#. rLmbA
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3154347\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. hRXCE
#: 03120306.xhp
msgctxt ""
@@ -32898,23 +32565,23 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to modify."
msgstr "<emph>Teksti1:</emph> mikä tahansa muutettava merkkijonolauseke."
-#. MkjPp
+#. DGPaB
#: 03120306.xhp
msgctxt ""
"03120306.xhp\n"
"par_id3150359\n"
"help.text"
-msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The maximum allowed value is 65535."
-msgstr "<emph>Alku1: </emph>numeerinen lauseke, joka osoittaa merkin sijainnin merkkijonossa, josta alkaen korvataan tai luetaan palautettavaksi. Suurin sallittu arvo on 65535."
+msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648."
+msgstr ""
-#. 49ArA
+#. dtyT5
#: 03120306.xhp
msgctxt ""
"03120306.xhp\n"
"par_id3148451\n"
"help.text"
-msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
-msgstr "<emph>Pituus1:</emph> numeerinen lauseke, joka määrittää sen merkkien lukumäärän, joka korvataan tai palautetaan. Suurin sallittu arvo on 65535."
+msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 2,147,483,648."
+msgstr ""
#. Cw9Ts
#: 03120306.xhp
@@ -32943,15 +32610,6 @@ msgctxt ""
msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
msgstr "<emph>Teksti2:</emph> merkkijono, joka korvaa osan teksti1:stä (<emph>Mid-lauseessa</emph>)."
-#. jK3U3
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"hd_id3149560\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. NFDUA
#: 03120306.xhp
msgctxt ""
@@ -33006,15 +32664,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
msgstr "Katso myös: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">funktio Left</link>."
-#. Xy4Fw
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145315\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. A3Rzn
#: 03120307.xhp
msgctxt ""
@@ -33024,15 +32673,6 @@ msgctxt ""
msgid "Right (Text As String, n As Long)"
msgstr "Right (teksti1 As String, n As Long)"
-#. 8sZ7E
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145068\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. SKQUo
#: 03120307.xhp
msgctxt ""
@@ -33042,15 +32682,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. CyX7H
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3146795\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. hErZb
#: 03120307.xhp
msgctxt ""
@@ -33060,14 +32691,14 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
msgstr "<emph>Teksti1:</emph> Mikä tahansa merkkijonolauseke, josta palautetaan merkkejä oikealta lukien."
-#. D8HQ5
+#. NwQkG
#: 03120307.xhp
msgctxt ""
"03120307.xhp\n"
"par_id3151211\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
-msgstr "<emph>N:</emph> numeerinen lauseke, joka määrittää kuinka monta merkkiä halutaan palauttaa. Jos <emph>n</emph> = 0, palautetaan merkkijono, jonka pituus on nolla. Suurin sallittu arvo on 65535."
+msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
+msgstr ""
#. ezXrq
#: 03120307.xhp
@@ -33078,15 +32709,6 @@ msgctxt ""
msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
msgstr "Seuraava esimerkkiohjelma muuntaa päivämäärän muodosta YYYY-MM-DD US-päivämäärämuotoon (MM/DD/YYYY)."
-#. wgEnG
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3156212\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. ZbKt5
#: 03120307.xhp
msgctxt ""
@@ -33132,15 +32754,6 @@ msgctxt ""
msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
msgstr "Rset-lause kohdistaa merkkijonon oikealle merkkijonomuuttujassa tai kopioi käyttäjän määrittämän muuttujan toiseen."
-#. aHsZH
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3149234\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. uDqvq
#: 03120308.xhp
msgctxt ""
@@ -33150,15 +32763,6 @@ msgctxt ""
msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
msgstr "RSet teksti1 As String = teksti2 tai LSet muuttuja1 = muuttuja2"
-#. tpDDD
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3156024\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. YfmCj
#: 03120308.xhp
msgctxt ""
@@ -33222,15 +32826,6 @@ msgctxt ""
msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
msgstr "Seuraavassa esimerkissä käytetään <emph>RSet</emph>- ja <emph>LSet</emph>-lauseita merkkijonon vasemmalle ja oikealle kohdistukseen."
-#. BdFxA
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3154909\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. u4Dwb
#: 03120308.xhp
msgctxt ""
@@ -33303,15 +32898,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
msgstr "Katso myös: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">Funktio LTrim</link>"
-#. z57JG
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3154924\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. 3KFbV
#: 03120309.xhp
msgctxt ""
@@ -33321,15 +32907,6 @@ msgctxt ""
msgid "RTrim (Text As String)"
msgstr "RTrim (teksti1 As String)"
-#. qfPg6
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3149457\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. awasf
#: 03120309.xhp
msgctxt ""
@@ -33339,15 +32916,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. p2Uwz
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3148798\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. UW5Fx
#: 03120309.xhp
msgctxt ""
@@ -33357,15 +32925,6 @@ msgctxt ""
msgid "<emph>Text: </emph>Any string expression."
msgstr "<emph>Teksti1: </emph>mikä tahansa merkkijonolauseke."
-#. Tq2QX
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"hd_id3151041\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. qdGRW
#: 03120310.xhp
msgctxt ""
@@ -33492,15 +33051,6 @@ msgctxt ""
msgid "Removes all leading and trailing spaces from a string expression."
msgstr "Trim poistaa välilyönnit merkkijonon alusta ja lopusta."
-#. xTgNw
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3159157\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. EEu5H
#: 03120311.xhp
msgctxt ""
@@ -33510,15 +33060,6 @@ msgctxt ""
msgid "Trim( Text As String )"
msgstr "Trim( teksti1 As String )"
-#. ZUuwF
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3155388\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. f9pGG
#: 03120311.xhp
msgctxt ""
@@ -33528,15 +33069,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. VwME3
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3145609\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. kLdYS
#: 03120311.xhp
msgctxt ""
@@ -33546,15 +33078,6 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression."
msgstr "<emph>Teksti1:</emph> mikä tahansa merkkijonolauseke."
-#. 3GonF
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3148663\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. ZBDyG
#: 03120312.xhp
msgctxt ""
@@ -33591,15 +33114,6 @@ msgctxt ""
msgid "Converts a system file name to a file URL."
msgstr "ConvertToURL muuntaa järjestelmän tiedostonimen tiedosto-URL:äksi."
-#. 7EFtr
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3150669\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. zU9U9
#: 03120312.xhp
msgctxt ""
@@ -33609,15 +33123,6 @@ msgctxt ""
msgid "ConvertToURL(filename)"
msgstr "ConvertToURL(tiedostonimi1)"
-#. eq2Gx
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3150984\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. V6WhB
#: 03120312.xhp
msgctxt ""
@@ -33627,15 +33132,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. m42nR
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3148550\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. Dka3U
#: 03120312.xhp
msgctxt ""
@@ -33645,15 +33141,6 @@ msgctxt ""
msgid "<emph>Filename:</emph> A file name as string."
msgstr "<emph>Tiedostonimi1:</emph> tiedoston nimi merkkijonona."
-#. iFPRX
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"hd_id3153361\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. AHBLc
#: 03120312.xhp
msgctxt ""
@@ -33699,15 +33186,6 @@ msgctxt ""
msgid "Converts a file URL to a system file name."
msgstr "ConvertFromURL muuntaa tiedosto-URL:än järjestelmän tiedostonimeksi."
-#. Gyuop
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3143267\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. i96Ej
#: 03120313.xhp
msgctxt ""
@@ -33717,15 +33195,6 @@ msgctxt ""
msgid "ConvertFromURL(filename)"
msgstr "ConvertFromURL(tiedostonimi1)"
-#. wq6Jz
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3159157\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. ESx7C
#: 03120313.xhp
msgctxt ""
@@ -33735,15 +33204,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. GmBuj
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"hd_id3143270\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. 8R25b
#: 03120313.xhp
msgctxt ""
@@ -33789,15 +33249,6 @@ msgctxt ""
msgid "Returns an array of substrings from a string expression."
msgstr "Split palauttaa merkkijonotaulukon merkkijonolausekkeesta."
-#. fqDbn
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149177\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. FGCEc
#: 03120314.xhp
msgctxt ""
@@ -33807,15 +33258,6 @@ msgctxt ""
msgid "Split (Text As String, delimiter, number)"
msgstr "Split (teksti1 As String[, erotin1][, luku1])"
-#. XdWY5
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149763\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. BNdCD
#: 03120314.xhp
msgctxt ""
@@ -33825,15 +33267,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. G7w77
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3145315\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. PRupM
#: 03120314.xhp
msgctxt ""
@@ -33861,15 +33294,6 @@ msgctxt ""
msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
msgstr "<emph>Luku1 (valinnainen):</emph> niiden merkkijonojen lukumäärä, jotka halutaan palauttaa."
-#. XZAoD
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3150398\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. 9qGtg
#: 03120315.xhp
msgctxt ""
@@ -33906,15 +33330,6 @@ msgctxt ""
msgid "Returns a string from a number of substrings in a string array."
msgstr "Join palauttaa yhdistetyn merkkijonon merkkijonotaulukon merkkijonoista."
-#. Tavaa
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3159414\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. FrGPB
#: 03120315.xhp
msgctxt ""
@@ -33924,15 +33339,6 @@ msgctxt ""
msgid "Join (Text As String Array, delimiter)"
msgstr "Join (teksti1 As String Array, erotin1)"
-#. zKGLo
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3150400\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. Sx96w
#: 03120315.xhp
msgctxt ""
@@ -33942,15 +33348,6 @@ msgctxt ""
msgid "String"
msgstr "merkkijono (String)"
-#. uMb7W
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3148798\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. sEXB3
#: 03120315.xhp
msgctxt ""
@@ -33969,15 +33366,6 @@ msgctxt ""
msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
msgstr "<emph>Erotin1 (valinnainen):</emph> merkki, jota käytetään tuloksen osamerkkijonojen erottimena. Oletuksena on välilyöntimerkki. Jos erottimen pituus on nolla \"\", osamerkkijonot liitetään ilman erotinta."
-#. rYFAB
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"hd_id3154218\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. u25ah
#: 03120400.xhp
msgctxt ""
@@ -34095,14 +33483,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parametrit:"
-#. jDRQw
+#. KqLff
#: 03120401.xhp
msgctxt ""
"03120401.xhp\n"
"par_id3153126\n"
"help.text"
-msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
-msgstr "<emph>Alku1: </emph> numeerinen lauseke, joka tarkoittaa sitä sijaintia merkkijonossa, josta määrätyn osamerkkijonon etsintä aloitetaan. Jos parametri jätetään pois, etsintä alkaa merkkijonon ensimmäisestä merkistä. Suurin sallittu arvo on 65535."
+msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648."
+msgstr ""
#. SnP3c
#: 03120401.xhp
@@ -39342,6 +38730,96 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Valitaan kytkettävä makro.</ahelp>"
+#. Ug7AF
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"tit\n"
+"help.text"
+msgid "Compiler Options"
+msgstr ""
+
+#. 4BZ89
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"bm_id681592403821304\n"
+"help.text"
+msgid "<bookmark_value>Compiler Options</bookmark_value> <bookmark_value>Runtime conditions</bookmark_value>"
+msgstr ""
+
+#. xtwLp
+#: 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>"
+msgstr ""
+
+#. PEuT6
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"N0084\n"
+"help.text"
+msgid "Compiler options specified at the module level affect %PRODUCTNAME <emph>Basic compiler checks</emph> and error messages. Basic syntax as well as Basic set of instructions can be different according to the options that are in use. The less <literal>Option</literal>, the easiest and tolerant %PRODUCTNAME Basic language is. The more <literal>Option</literal>, the richer and controlled Basic language gets."
+msgstr ""
+
+#. auPDi
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"par_id141592406254504\n"
+"help.text"
+msgid "Compiler options must be specified before the executable program code in a module."
+msgstr ""
+
+#. U5B8L
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"par_id491585753339474\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/Option_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Option Statement diagram</alt></image>"
+msgstr ""
+
+#. AXgWX
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"hd_id331592403410631\n"
+"help.text"
+msgid "Option Private Module"
+msgstr ""
+
+#. DeBTh
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"par_id161592405163812\n"
+"help.text"
+msgid "Specifies that the scope of the module is that of the Basic library it belongs to."
+msgstr ""
+
+#. 4fh7R
+#: Compiler_options.xhp
+msgctxt ""
+"Compiler_options.xhp\n"
+"par_id141592408035462\n"
+"help.text"
+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
+#: 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>"
+msgstr ""
+
#. ZbXw2
#: ErrVBA.xhp
msgctxt ""
@@ -39423,13 +38901,13 @@ msgctxt ""
msgid "to describe the error and possible solutions"
msgstr ""
-#. AbB9s
+#. QaZUT
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0017\n"
"help.text"
-msgid "VBA <literal>Err</literal> object has the following properties and methods:"
+msgid "The VBA <literal>Err</literal> object has the following properties and methods:"
msgstr ""
#. ivkYo
@@ -39441,22 +38919,22 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. FSwVh
+#. FtD5A
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0020\n"
"help.text"
-msgid "<emph>Description</emph> property gives the nature of the error. It details the various reasons that may cause the error. Ideally, it provides the multiple course of actions to help solve the issue and prevent its reoccurrence. Its alias is Basic <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\" name=\"Error function\">Error</link> function for %PRODUCTNAME predefined errors."
msgstr ""
-#. PjWUG
+#. jfSHu
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0022\n"
"help.text"
-msgid "This the error code associated with the error. <literal>Err</literal> object default property is <emph>Number</emph>. Its alias is %PRODUCTNAME Basic <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\" name=\"Err\">Err</link> function."
msgstr ""
#. NJEmn
@@ -39477,22 +38955,22 @@ msgctxt ""
msgid "Methods"
msgstr ""
-#. 8sWBq
+#. y5Ne4
#: 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. Its alias is %PRODUCTNAME Basic <link href=\"text/sbasic/shared/03050500.xhp\" name=\"Resume statement\">Resume</link> statement."
+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."
msgstr ""
-#. UEGkA
+#. jnyJG
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0029\n"
"help.text"
-msgid "Throws user-defined errors or predefined errors. Its alias is %PRODUCTNAME Basic <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\" name=\"Error statement\">Error</link> statement."
msgstr ""
#. EyCJv
@@ -39504,13 +38982,13 @@ msgctxt ""
msgid "Parameters"
msgstr ""
-#. 6Rdnc
+#. 9a9P9
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0031\n"
"help.text"
-msgid "<emph>Number</emph> A user-defined or predefined error code to be raised."
+msgid "<emph>Number</emph>: A user-defined or predefined error code to be raised."
msgstr ""
#. DoFG8
@@ -39522,31 +39000,31 @@ msgctxt ""
msgid "Error code range 0-2000 is reserved for %PRODUCTNAME Basic. User-defined errors may start from higher values in order to prevent collision with %PRODUCTNAME Basic future developments."
msgstr ""
-#. qoAQE
+#. VAmhX
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0033\n"
"help.text"
-msgid "<emph>Source</emph> The name of the routine raising the error. A name in the form of \"myLibrary.myModule.myProc\" is recommended."
+msgid "<emph>Source</emph>: The name of the routine raising the error. A name in the form of \"myLibrary.myModule.myProc\" is recommended."
msgstr ""
-#. kukgW
+#. wFqtB
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0034\n"
"help.text"
-msgid "<emph>Description</emph> A description of the problem leading to stop the running process, accompanied with the various reasons that may cause it. A detailed list of the possible course of actions that may help solve the problem is recommended."
+msgid "<emph>Description</emph>: A description of the problem leading to stop the running process, accompanied with the various reasons that may cause it. A detailed list of the possible course of actions that may help solve the problem is recommended."
msgstr ""
-#. 3XjnB
+#. q9uAh
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0041\n"
"help.text"
-msgid "Err.Raise 2020, Description:=\"This is an intented user-defined error …\""
+msgid "Err.Raise 2020, Description:=\"This is an intended user-defined error …\""
msgstr ""
#. vuP6g
@@ -39765,13 +39243,13 @@ msgctxt ""
msgid "<literal>0</literal>: Resets error information and re-executes the instruction that caused the error. <literal>0</literal> is optional."
msgstr ""
-#. uukh4
+#. fakJ2
#: Resume.xhp
msgctxt ""
"Resume.xhp\n"
"par_id331586090532804\n"
"help.text"
-msgid "<emph>label: </emph>: Resets error information and resumes execution at the specified label of the current subroutine."
+msgid "<emph>label</emph>: Resets error information and resumes execution at the specified label of the current subroutine."
msgstr ""
#. 7NaeS
@@ -39882,13 +39360,13 @@ msgctxt ""
msgid "Use <literal>Resume Next</literal>, for example, when reporting anomalies encountered for an iterating process that must not be interrupted. In which case multiple handling routines may be required."
msgstr ""
-#. 4NKFt
+#. AeVfB
#: Resume.xhp
msgctxt ""
"Resume.xhp\n"
"par_id461586091018138\n"
"help.text"
-msgid "Using <literal>Resume</literal> without parameters to re-execute the faulty instruction can fit certain situations. However that may cause a neverending loop."
+msgid "Using <literal>Resume</literal> without parameters to re-execute the faulty instruction can fit certain situations. However that may cause a never ending loop."
msgstr ""
#. t97uD
@@ -39981,24 +39459,6 @@ msgctxt ""
msgid "Function MySQRTPI(arg as double) as double"
msgstr ""
-#. LxEYt
-#: calc_functions.xhp
-msgctxt ""
-"calc_functions.xhp\n"
-"bas_id731592358361242\n"
-"help.text"
-msgid "Dim oService as Object"
-msgstr ""
-
-#. GszLy
-#: calc_functions.xhp
-msgctxt ""
-"calc_functions.xhp\n"
-"bas_id971592358368906\n"
-"help.text"
-msgid "oService = createUNOService(\"com.sun.star.sheet.addin.Analysis\")"
-msgstr ""
-
#. HHyMW
#: calc_functions.xhp
msgctxt ""
@@ -40008,15 +39468,6 @@ msgctxt ""
msgid "MySQRTPI = oService.getSqrtPi(arg)"
msgstr ""
-#. AByBR
-#: calc_functions.xhp
-msgctxt ""
-"calc_functions.xhp\n"
-"bas_id451592358385346\n"
-"help.text"
-msgid "End Function"
-msgstr ""
-
#. emGWD
#: calc_functions.xhp
msgctxt ""
@@ -40557,13 +40008,13 @@ msgctxt ""
msgid "IMSECH"
msgstr ""
-#. DL5Fs
+#. 8Dtdh
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id871592355721957\n"
"help.text"
-msgid "Imsin"
+msgid "IMSIN"
msgstr ""
#. LnpEu
@@ -41151,13 +40602,13 @@ msgctxt ""
msgid "Running <literal>RmDir</literal> command in VBA mode. In VBA only empty directories are removed by <literal>RmDir</literal> while %PRODUCTNAME Basic removes a directory recursively."
msgstr ""
-#. 5GFEr
+#. KLkKY
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"N0125\n"
"help.text"
-msgid "Changing behaviour 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."
+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 ""
#. piCTC
@@ -41394,6 +40845,204 @@ msgctxt ""
msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for class module examples, or <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link> for other class examples making use of <literal>Option Compatible</literal> compiler mode."
msgstr ""
+#. QF4Ds
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"tit\n"
+"help.text"
+msgid "Syntax Diagrams"
+msgstr ""
+
+#. CkdjC
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"bm_id861593777289558\n"
+"help.text"
+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
+#: 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>"
+msgstr ""
+
+#. jJGWn
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id601593699108443\n"
+"help.text"
+msgid "%PRODUCTNAME Basic statements use syntax diagrams and textual conventions that follow these typographical rules:"
+msgstr ""
+
+#. ZnMxE
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id158193699546735\n"
+"help.text"
+msgid "%PRODUCTNAME Basic keywords or functions use proper casing: Call, DimArray, InputBox, Property."
+msgstr ""
+
+#. ny9xr
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id711593699548486\n"
+"help.text"
+msgid "Lowercase characters indicate information to supply: end, expression, start, variable."
+msgstr ""
+
+#. 6cDAC
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id881593760345504\n"
+"help.text"
+msgid "The syntax of a %PRODUCTNAME Basic one line statement is illustrated herewith:"
+msgstr ""
+
+#. 8Co5j
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"hd_id871593700670279\n"
+"help.text"
+msgid "Diagram example"
+msgstr ""
+
+#. 5AfpR
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id181593699574635\n"
+"help.text"
+msgid "Basic statement diagrams start and end with double vertical bars,"
+msgstr ""
+
+#. oNAUQ
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id711596399548486\n"
+"help.text"
+msgid "Loops indicate a possible repetition, an optional separator may be present,"
+msgstr ""
+
+#. qBArU
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id541593706654897\n"
+"help.text"
+msgid "Rectangles denote subsequent diagram fragments,"
+msgstr ""
+
+#. MgRRZ
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id251593706717957\n"
+"help.text"
+msgid "Diagram fragments extremities exhibit single vertical bars."
+msgstr ""
+
+#. 2ERcw
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id831588865616326\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/a_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">syntax of a statement</alt></image>"
+msgstr ""
+
+#. QDyRr
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id411579301639711\n"
+"help.text"
+msgid "A set of %PRODUCTNAME Basic statements - with optional labels - is using a colon <literal>:</literal> sign to separate them, it can be terminated with an optional comment. <literal>REM</literal> or an apostrophe sign introduce a comment."
+msgstr ""
+
+#. fR7p7
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id931593707147102\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sbasic/comment_fragment.svg\" id=\"img_id191593707147102\"><alt id=\"alt_id111593707147102\">diagram fragment</alt></image>"
+msgstr ""
+
+#. tMPo2
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"hd_id71593700691968\n"
+"help.text"
+msgid "Textual example"
+msgstr ""
+
+#. vtggd
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id181593700546735\n"
+"help.text"
+msgid "<emph>[opt1|opt2|opt3]</emph> Items inside brackets are optional, alternatives are indicated with a vertical bar,"
+msgstr ""
+
+#. ap6xE
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id181593699546735\n"
+"help.text"
+msgid "<emph>case[[sep]…]</emph> An ellipsis indicates a possible repetition, an optional separator may be specified,"
+msgstr ""
+
+#. FEGF3
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id712593699548486\n"
+"help.text"
+msgid "<emph>{choice1|choice2}</emph> Items inside curly braces are compulsory, alternatives are indicated with a vertical bar."
+msgstr ""
+
+#. VFKcU
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"par_id411593701639711\n"
+"help.text"
+msgid "A set of %PRODUCTNAME Basic statements - with optional labels - is using a colon <literal>:</literal> sign to separate them, it can be terminated with an optional comment. <literal>REM</literal> or an apostrophe sign introduce a comment."
+msgstr ""
+
+#. RUhNn
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"N0018\n"
+"help.text"
+msgid "GoTo there ' skip first statement"
+msgstr ""
+
+#. oCE77
+#: conventions.xhp
+msgctxt ""
+"conventions.xhp\n"
+"N0019\n"
+"help.text"
+msgid "here: Print 1, : there: Print 2 REM explanatory text here"
+msgstr ""
+
#. 7pf8S
#: enum.xhp
msgctxt ""
@@ -41547,13 +41196,13 @@ msgctxt ""
msgid "%PRODUCTNAME Basic syntax fragments."
msgstr ""
-#. ChERt
+#. 4eH7M
#: 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\"/></variable>argument fragment"
+msgid "<variable id=\"argumenth2\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"arguments in Function, Sub and Property statements\"/>argument fragment</variable>"
msgstr ""
#. pfHq8
@@ -41709,13 +41358,13 @@ msgctxt ""
msgid "Multiple dimensions for an array are denoted using comma (<emph>,</emph>) sign."
msgstr ""
-#. DeXti
+#. E9UTU
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"hd_id231587046013458\n"
"help.text"
-msgid "<variable id=\"typenameh4\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"data types fragment\">typename fragment</link></variable>"
+msgid "<variable id=\"typenameh4\">typename fragment</variable>"
msgstr ""
#. AqfYj
@@ -41727,13 +41376,13 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/typename_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484515\">primitive data types fragment</alt></image>"
msgstr ""
-#. dM8Yg
+#. BSD4e
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"hd_id231587046013459\n"
"help.text"
-msgid "<variable id=\"charh4\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"type declaration characters fragment\">char fragment</link></variable>"
+msgid "<variable id=\"charh4\">char fragment</variable>"
msgstr ""
#. JFwPg
@@ -42204,13 +41853,13 @@ msgctxt ""
msgid "Property Statement"
msgstr ""
-#. 4vJCy
+#. CxW74
#: property.xhp
msgctxt ""
"property.xhp\n"
"N0183\n"
"help.text"
-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 dependant routines. Using <emph>Get</emph>, <emph>Let</emph> or <emph>Set</emph> accessers enforces properties' consistency when necessary."
+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
diff --git a/source/fi/helpcontent2/source/text/sbasic/shared/03.po b/source/fi/helpcontent2/source/text/sbasic/shared/03.po
index 5f8013c43cc..14712155b24 100644
--- a/source/fi/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/fi/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: 2020-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2018-07-12 14:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -61,6 +61,69 @@ msgctxt ""
msgid "<bookmark_value>BASIC Euro library</bookmark_value>"
msgstr ""
+#. 9edb6
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"hd_id841593518085848\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. DkBkc
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id921593518140986\n"
+"help.text"
+msgid "The <emph>Euro</emph> library is used by the <emph>Euro converter…</emph> wizard."
+msgstr ""
+
+#. uAg7T
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id481593518247400\n"
+"help.text"
+msgid "Its entry points are:"
+msgstr ""
+
+#. SBNCb
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id381593519742529\n"
+"help.text"
+msgid "Selecting the <emph>Euro Converter…</emph> wizard loads the following libraries in memory:"
+msgstr ""
+
+#. TGAHA
+#: lib_euro.xhp
+msgctxt ""
+"lib_euro.xhp\n"
+"par_id691593519646426\n"
+"help.text"
+msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
+msgstr ""
+
+#. 5NFbA
+#: 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"
+msgstr ""
+
+#. JbBaB
+#: 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."
+msgstr ""
+
#. G8mp2
#: lib_formwizard.xhp
msgctxt ""
@@ -106,6 +169,96 @@ msgctxt ""
msgid "<bookmark_value>BASIC Gimmicks library</bookmark_value>"
msgstr ""
+#. EwqqW
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"tit\n"
+"help.text"
+msgid "ImportWizard Library"
+msgstr ""
+
+#. stDZt
+#: 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>"
+msgstr ""
+
+#. pbesX
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"bm_id231529070133574\n"
+"help.text"
+msgid "<bookmark_value>BASIC ImportWizard library</bookmark_value>"
+msgstr ""
+
+#. GFoap
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"hd_id841593518085848\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. asxd6
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id921593518140986\n"
+"help.text"
+msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document converter...</emph> wizard."
+msgstr ""
+
+#. FaGZt
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id481593518247400\n"
+"help.text"
+msgid "Its entry point is:"
+msgstr ""
+
+#. EyBsL
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id381593519742529\n"
+"help.text"
+msgid "Selecting the <emph>Document Converter...</emph> wizard loads the following libraries in memory:"
+msgstr ""
+
+#. vV4TD
+#: lib_importwiz.xhp
+msgctxt ""
+"lib_importwiz.xhp\n"
+"par_id691593519646426\n"
+"help.text"
+msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
+msgstr ""
+
+#. ZCH7G
+#: 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"
+msgstr ""
+
+#. ZT5z9
+#: 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."
+msgstr ""
+
#. UWzWk
#: lib_schedule.xhp
msgctxt ""
@@ -160,6 +313,60 @@ msgctxt ""
msgid "<bookmark_value>BASIC ScriptBindingLibrary library</bookmark_value>"
msgstr ""
+#. Z7iSC
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"hd_id841593518085848\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. nnxNN
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"par_id921593518140986\n"
+"help.text"
+msgid "The <emph>ScriptBindingLibrary</emph> library only contains dialogs, it is used by <emph>Highlight</emph> %PRODUCTNAME example scripts. Its dialogs are shared by Beanshell, Java and JavaScript example scripts."
+msgstr ""
+
+#. JdxBj
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"par_id381593519742529\n"
+"help.text"
+msgid "Running any <emph>Highlight</emph> example script loads the <emph>ScriptBindingLibrary</emph> library in memory."
+msgstr ""
+
+#. 9CZwi
+#: lib_script.xhp
+msgctxt ""
+"lib_script.xhp\n"
+"par_id131593538122154\n"
+"help.text"
+msgid "This library is not used by %PRODUCTNAME Basic."
+msgstr ""
+
+#. Qh7KM
+#: 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>"
+msgstr ""
+
+#. wJqFF
+#: 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>"
+msgstr ""
+
#. QZNvL
#: lib_template.xhp
msgctxt ""
@@ -447,3 +654,57 @@ msgctxt ""
"help.text"
msgid "<emph>Universal Content Broker</emph> functions and subroutines."
msgstr ""
+
+#. LsR47
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"tit\n"
+"help.text"
+msgid "WikiEditor Library"
+msgstr ""
+
+#. QDwwy
+#: 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>"
+msgstr ""
+
+#. mBGxx
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"bm_id231529070133574\n"
+"help.text"
+msgid "<bookmark_value>BASIC WikiEditor library</bookmark_value>"
+msgstr ""
+
+#. qGFuz
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"hd_id841593518085848\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. MdATA
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"par_id921593518140986\n"
+"help.text"
+msgid "The <emph>WikiEditor</emph> library only contains dialogs, it is used by <emph>Wiki Publisher</emph> bundled Java extension."
+msgstr ""
+
+#. k2E85
+#: lib_wikieditor.xhp
+msgctxt ""
+"lib_wikieditor.xhp\n"
+"par_id131593538122154\n"
+"help.text"
+msgid "This library is not used by %PRODUCTNAME Basic."
+msgstr ""
diff --git a/source/fi/helpcontent2/source/text/scalc.po b/source/fi/helpcontent2/source/text/scalc.po
index 70719eb7dce..d5fb2623126 100644
--- a/source/fi/helpcontent2/source/text/scalc.po
+++ b/source/fi/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2019-07-16 16:13+0000\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -151,15 +151,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Linkit</link>"
-#. A9QFv
-#: main0102.xhp
-msgctxt ""
-"main0102.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\">Kuvakartta</link>"
-
#. pFCu3
#: main0102.xhp
msgctxt ""
@@ -421,14 +412,14 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Muotoilu</link>"
-#. AHPAK
+#. vqHQK
#: 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#objekt\" name=\"objects\">objects</link>, and cell contents in your document.</ahelp>"
-msgstr "<ahelp hid=\".\"><emph>Muotoilu</emph>-valikossa vaikutetaan asiakirjan valittujen solujen, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objektit\">objektien</link> ja solujen sisältöjen ominaisuuksiin, kuten kokoon tai väriin.</ahelp>"
+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 ""
#. Ly37n
#: main0105.xhp
@@ -547,6 +538,15 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Automaattisen korjauksen asetukset\">Automaattisen korjauksen asetukset</link>"
+#. eAavz
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3148488\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr ""
+
#. ToZU6
#: main0106.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/scalc/00.po b/source/fi/helpcontent2/source/text/scalc/00.po
index 7f6a91faaab..4ee6d10093e 100644
--- a/source/fi/helpcontent2/source/text/scalc/00.po
+++ b/source/fi/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2018-11-14 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -664,13 +664,22 @@ msgctxt ""
msgid "Format Menu"
msgstr "Muotoilu-valikko"
-#. HP9LA
+#. TmWCz
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154685\n"
"help.text"
-msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph>.</variable>"
+msgid "Choose <menuitem>Format - Cells</menuitem>."
+msgstr ""
+
+#. DEPHV
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id61593556839601\n"
+"help.text"
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+1</keycode>."
msgstr ""
#. HR2kd
@@ -1933,6 +1942,15 @@ msgctxt ""
msgid "This function is available since %PRODUCTNAME 7.0."
msgstr ""
+#. 3FGD2
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id651551401041666\n"
+"help.text"
+msgid "This function is available since %PRODUCTNAME 7.1."
+msgstr ""
+
#. LSPBz
#: sheet_menu.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/scalc/01.po b/source/fi/helpcontent2/source/text/scalc/01.po
index 5a2f1739725..873cc73edf4 100644
--- a/source/fi/helpcontent2/source/text/scalc/01.po
+++ b/source/fi/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: 2020-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/fi/>\n"
@@ -12589,13 +12589,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
msgstr ""
-#. ShWCR
+#. uDAq7
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3144732\n"
"help.text"
-msgid "LOG(Number[; Base])"
+msgid "LOG(Number [; Base])"
msgstr ""
#. Eiqiq
@@ -12841,6 +12841,15 @@ msgctxt ""
msgid "<item type=\"literal\">Base^Exponent</item>"
msgstr ""
+#. dRQh7
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id241599040594931\n"
+"help.text"
+msgid "<literal>=POWER(0,0)</literal> returns 1."
+msgstr ""
+
#. D3Ghv
#: 04060106.xhp
msgctxt ""
@@ -13246,13 +13255,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
msgstr ""
-#. p64i9
+#. kj4B7
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3158182\n"
"help.text"
-msgid "ROUND(Number[; Count])"
+msgid "ROUND(Number [; Count])"
msgstr ""
#. yE5Jb
@@ -13345,13 +13354,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
msgstr ""
-#. uqe8Y
+#. MnKJo
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3146051\n"
"help.text"
-msgid "ROUNDDOWN(Number[; Count])"
+msgid "ROUNDDOWN(Number [; Count])"
msgstr ""
#. EXn4P
@@ -13435,13 +13444,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
msgstr ""
-#. smgCC
+#. Gz3SM
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3163328\n"
"help.text"
-msgid "ROUNDUP(Number[; Count])"
+msgid "ROUNDUP(Number [; Count])"
msgstr ""
#. x59Ls
@@ -13912,13 +13921,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
msgstr ""
-#. PcPNo
+#. KsFtX
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3152028\n"
"help.text"
-msgid "SUMIF(Range; Criteria[; SumRange])"
+msgid "SUMIF(Range; Criteria [; SumRange])"
msgstr ""
#. rYzXG
@@ -14434,13 +14443,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
msgstr ""
-#. qh8S5
+#. G7CMF
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3143748\n"
"help.text"
-msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\"[; full_precision][; triangulation_precision])"
+msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\" [; full_precision [; triangulation_precision]])"
msgstr ""
#. 4KJUc
@@ -14542,13 +14551,13 @@ msgctxt ""
msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
msgstr ""
-#. GhdsH
+#. o7nsC
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id0908200902131191\n"
"help.text"
-msgid "CONVERT_OOO(value;\"text\";\"text\")"
+msgid "CONVERT_OOO(value; \"text\"; \"text\")"
msgstr ""
#. egbGd
@@ -17224,13 +17233,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_VARIATION\">Calculates the points of an exponential trend in an array.</ahelp>"
msgstr ""
-#. 8VMBq
+#. GMVAK
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id3166377\n"
"help.text"
-msgid "GROWTH(DataY [; DataX [; NewDataX [; FunctionType]]])"
+msgid "GROWTH(DataY [; [ DataX ] [; [ NewDataX ] [; FunctionType ] ] ])"
msgstr ""
#. CA3qD
@@ -18979,31 +18988,31 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
msgstr ""
-#. r7bDk
+#. V8cAu
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3155425\n"
"help.text"
-msgid "CHOOSE(Index; Value1 [; Value2 [; ... [; Value254]]])"
+msgid "CHOOSE(Index; Value 1 [; Value 2 [; ... [; Value 30]]])"
msgstr ""
-#. dt8SY
+#. CNK7e
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3144755\n"
"help.text"
-msgid "<emph>Index</emph> is a reference or number between 1 and 254 indicating which value is to be taken from the list."
+msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
msgstr ""
-#. nR3mX
+#. GGWDt
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3149939\n"
"help.text"
-msgid "<emph>Value1, Value2, ..., Value254</emph> is the list of values entered as a reference to a cell or as individual values."
+msgid "<emph>Value 1, Value 2, ..., Value 30</emph> is the list of values entered as a reference to a cell or as individual values."
msgstr ""
#. s64Du
@@ -27961,13 +27970,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
msgstr ""
-#. DSd3v
+#. pUVVr
#: 04060118.xhp
msgctxt ""
"04060118.xhp\n"
"par_id3149025\n"
"help.text"
-msgid "VDB(Cost; Salvage; Life; S; End [; Factor [; NoSwitch]])"
+msgid "VDB(Cost; Salvage; Life; Start; End [; Factor [; NoSwitch]])"
msgstr ""
#. zGhDb
@@ -42262,6 +42271,15 @@ msgctxt ""
msgid "Name"
msgstr ""
+#. 3juWm
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id401599494815994\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
#. PcMRq
#: 04060199.xhp
msgctxt ""
@@ -42487,6 +42505,15 @@ msgctxt ""
msgid "Name"
msgstr ""
+#. CCsqC
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id201599495083374\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
#. AdNBV
#: 04060199.xhp
msgctxt ""
@@ -42685,6 +42712,15 @@ msgctxt ""
msgid "Name"
msgstr ""
+#. Y4cRR
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id201599494708332\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
#. s2CGS
#: 04060199.xhp
msgctxt ""
@@ -42766,6 +42802,15 @@ msgctxt ""
msgid "Name"
msgstr ""
+#. tfD9G
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id521599494740206\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
#. 52L2C
#: 04060199.xhp
msgctxt ""
@@ -43783,24 +43828,6 @@ msgctxt ""
msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
msgstr ""
-#. C3jH9
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3145785\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr ""
-
-#. ZgrYD
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3146119\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr ""
-
#. BW9bs
#: 05020600.xhp
msgctxt ""
@@ -44638,6 +44665,15 @@ msgctxt ""
msgid "Page Style"
msgstr ""
+#. vEZHA
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"bm_id651593596384469\n"
+"help.text"
+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 ""
+
#. YjqDi
#: 05070000.xhp
msgctxt ""
@@ -45367,31 +45403,31 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
msgstr ""
-#. fcvcu
+#. U9JPr
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"tit\n"
"help.text"
-msgid "Styles"
+msgid "Styles in Calc"
msgstr ""
-#. 3fyBn
+#. rJpRh
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"bm_id3150447\n"
"help.text"
-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>"
+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
+#. WerNG
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"hd_id3150447\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles\">Styles</link>"
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles\">Styles in Calc</link>"
msgstr ""
#. bBG57
@@ -45439,22 +45475,13 @@ msgctxt ""
msgid "Double-click the style in the Styles window."
msgstr ""
-#. DCJfB
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3153877\n"
-"help.text"
-msgid "Cell Styles"
-msgstr ""
-
-#. DAX9B
+#. SbgEE
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3145801\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the list of the available Cell Styles.</ahelp>"
msgstr ""
#. JcMEc
@@ -45475,22 +45502,22 @@ msgctxt ""
msgid "Cell Styles"
msgstr ""
-#. hkDXo
+#. 7FwJf
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
-"hd_id3153963\n"
+"hd_id171593598056580\n"
"help.text"
-msgid "Page Styles"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"page styles\">Page Styles</link>"
msgstr ""
-#. DxrsL
+#. 4XFww
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3147003\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the Page Styles available for indirect page formatting.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the Page Styles available.</ahelp>"
msgstr ""
#. cM9f4
@@ -52162,6 +52189,15 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hierarchy\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
msgstr ""
+#. ZjDq9
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_id681598453957935\n"
+"help.text"
+msgid "Calc does not provide multiple hierarchies for a single field and so this option is normally grayed. If you use a pivot table data source extension, that extension could define multiple hierarchies for some fields and then the option could become available. See the documentation supplied with that extension for more details\"."
+msgstr ""
+
#. B9FE5
#: 12090200.xhp
msgctxt ""
@@ -53152,6 +53188,15 @@ msgctxt ""
msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.2. (ISO/IEC 26300:2-2015)"
msgstr ""
+#. BFcB6
+#: ODFF.xhp
+msgctxt ""
+"ODFF.xhp\n"
+"hd_id1000013\n"
+"help.text"
+msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.3."
+msgstr ""
+
#. SGHPh
#: calculate.xhp
msgctxt ""
@@ -53179,6 +53224,24 @@ msgctxt ""
msgid "<ahelp hid=\".\">Commands to calculate formula cells.</ahelp>"
msgstr ""
+#. J8xZD
+#: cell_styles.xhp
+msgctxt ""
+"cell_styles.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cell Styles"
+msgstr ""
+
+#. 8o4Ez
+#: 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 ""
+
#. AZNrM
#: common_func.xhp
msgctxt ""
@@ -54529,6 +54592,15 @@ msgctxt ""
msgid "<emph>Reference 1, Reference 2, … ,Reference 255</emph> are references to cells."
msgstr ""
+#. 4BGvn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id1001601332672155\n"
+"help.text"
+msgid "This function is always recalculated whenever a recalculation occurs."
+msgstr ""
+
#. 8DbP2
#: func_aggregate.xhp
msgctxt ""
@@ -55168,15 +55240,6 @@ msgctxt ""
msgid "If a cell in a range of values for calculating the mean is empty or contains text, function AVERAGEIF ignores this cell.<br/>If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error."
msgstr ""
-#. HSE9d
-#: func_averageif.xhp
-msgctxt ""
-"func_averageif.xhp\n"
-"par_id38832436828097\n"
-"help.text"
-msgid "In all calculations below, range for average calculation contains the row #6, but it is ignored, because it contains text."
-msgstr ""
-
#. u7E4B
#: func_averageif.xhp
msgctxt ""
@@ -64366,6 +64429,15 @@ msgctxt ""
msgid "Calculation"
msgstr ""
+#. Q8ewH
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"par_id3154502\n"
+"help.text"
+msgid "0 or missing"
+msgstr ""
+
#. CkPny
#: func_yearfrac.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/scalc/05.po b/source/fi/helpcontent2/source/text/scalc/05.po
index f97b3d39327..483eaa8cf1d 100644
--- a/source/fi/helpcontent2/source/text/scalc/05.po
+++ b/source/fi/helpcontent2/source/text/scalc/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-03-31 10:35+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2018-09-03 12:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -322,14 +322,14 @@ msgctxt ""
msgid "String overflow"
msgstr "liian pitkä merkkijono"
-#. h9Kok
+#. XbagT
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3145635\n"
"help.text"
-msgid "<emph>Compiler:</emph> an identifier in the formula exceeds 64 KB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 KB in size."
-msgstr "<emph>Kääntäjä:</emph> kaavassa esiintyvä pitkä nimi vaatii yli 64 KiB tilaa. <emph>Tulkki:</emph> merkkijono-operaation tulos ylittää kooltaan 64 KiB."
+msgid "<emph>Compiler:</emph> an identifier in the formula exceeds 64 kB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 kB in size."
+msgstr ""
#. E7ohJ
#: 02140000.xhp
diff --git a/source/fi/helpcontent2/source/text/scalc/guide.po b/source/fi/helpcontent2/source/text/scalc/guide.po
index c78a66bdd9e..bc3a815c1f7 100644
--- a/source/fi/helpcontent2/source/text/scalc/guide.po
+++ b/source/fi/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/fi/>\n"
@@ -583,23 +583,23 @@ msgctxt ""
msgid "Defining Background Colors or Background Graphics"
msgstr "Taustavärin tai -kuvan määrääminen"
-#. g2JnS
+#. PE8wQ
#: background.xhp
msgctxt ""
"background.xhp\n"
"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
-msgstr "<bookmark_value>laskentataulukot;taustat</bookmark_value><bookmark_value>taustat;solualueet</bookmark_value><bookmark_value>taulukot; taustat</bookmark_value><bookmark_value>solut; taustat</bookmark_value><bookmark_value>rivit; katso myös solut</bookmark_value><bookmark_value>sarakkeet; katso myös solut</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value><bookmark_value>backgrounds;cell ranges</bookmark_value><bookmark_value>tables; backgrounds</bookmark_value><bookmark_value>cells; backgrounds</bookmark_value><bookmark_value>rows, see also cells</bookmark_value><bookmark_value>columns, see also cells</bookmark_value>"
+msgstr ""
-#. CqqcG
+#. tMFWU
#: 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>"
-msgstr "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Taustavärin tai -kuvan määrääminen\">Taustavärin tai -kuvan määrääminen</link> </variable>"
+msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link> </variable>"
+msgstr ""
#. gwwiM
#: background.xhp
@@ -673,14 +673,14 @@ msgctxt ""
msgid "Select the graphic and click <emph>Open</emph>."
msgstr "Valitse kuva ja napsauta <emph>Avaa</emph>."
-#. SDYSQ
+#. 2BGVn
#: 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 <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
-msgstr "Kuva ankkuroidaan kohdistettuun soluun. Kuvaa voidaan skaalata ja siirtää mieleisellä tavalla. Kohdevalikosta voidaan käyttää <emph>Järjestä - Taustalle</emph> -komentoa kuvan sijoittamiseksi taustaksi. Taustakuvan valitsemiseksi käytetään <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Rakenneselain\">rakenneselainta</link> </caseinline><defaultinline>rakenneselainta</defaultinline></switchinline>."
+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>."
+msgstr ""
#. vTxFX
#: background.xhp
@@ -691,14 +691,14 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
msgstr "<link href=\"text/shared/guide/background.xhp\">Vesileimat</link>"
-#. jQFQC
+#. R8Ctk
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3156180\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Tausta-välilehti\"><emph>Tausta</emph>-välilehti</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
+msgstr ""
#. owozX
#: background.xhp
@@ -5686,14 +5686,14 @@ msgctxt ""
msgid "With \"Values\" you will find the results of the calculations."
msgstr "\"Arvot\"-valinnalla etsitään laskentatuloksista."
-#. xQ5ou
+#. FMaXJ
#: finding.xhp
msgctxt ""
"finding.xhp\n"
"par_id3163853\n"
"help.text"
-msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. You see the currency symbol in the cell, but you cannot search for it."
-msgstr "Solujen sisällöt voivat olla muotoiltuja monin eri tavoin. Esimerkiksi luku voi olla muotoiltu valuutaksi, jolloin se esitetään valuuttasymbolin kera. Valuuttasymboli näkyy solussa, mutta haulla sitä ei löydy."
+msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. These symbols are included in searches when the Formatted Display search option is activated."
+msgstr ""
#. Z4ABm
#: finding.xhp
diff --git a/source/fi/helpcontent2/source/text/schart/01.po b/source/fi/helpcontent2/source/text/schart/01.po
index ff8e1e0cfef..5dcf992a6d1 100644
--- a/source/fi/helpcontent2/source/text/schart/01.po
+++ b/source/fi/helpcontent2/source/text/schart/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-03-27 22:16+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textschart01/fi/>\n"
@@ -3077,15 +3077,6 @@ msgctxt ""
msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Muokataan valitun otsikon ominaisuuksia.</ahelp></variable>"
-#. tyEBL
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3149378\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Merkit</link>"
-
#. LUkDN
#: 05020101.xhp
msgctxt ""
@@ -3167,15 +3158,6 @@ msgctxt ""
msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Muokataan joko valitun otsikon tai kaikkien otsikoiden ominaisuuksia.</ahelp></variable>"
-#. XkwBi
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"hd_id3152596\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Merkit</link>"
-
#. 872FB
#: 05020201.xhp
msgctxt ""
@@ -3527,15 +3509,6 @@ msgctxt ""
msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Määritetään reunat, alue ja merkkimääreet kaavioselitteelle.</ahelp></variable>"
-#. N9rEe
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3145232\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Merkit</link>"
-
#. 73CU8
#: 05030000.xhp
msgctxt ""
@@ -3707,15 +3680,6 @@ msgctxt ""
msgid "Scaling the X axis is only possible in the X-Y chart type."
msgstr "X-akselin asteikko on käytössä vain XY -kaaviotyypeillä."
-#. 3reGb
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3145230\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Merkit</link>"
-
#. Gf2gJ
#: 05040200.xhp
msgctxt ""
@@ -3752,24 +3716,6 @@ msgctxt ""
msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
msgstr "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Avataan<emph> Y-akseli </emph>-valintaikkuna ja muutetaan y-akselin ominaisuuksia.</ahelp></variable>"
-#. TgqBL
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3145171\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Merkit</link>"
-
-#. DZeAQ
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3146119\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Luku</link>"
-
#. JGn49
#: 05040201.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/sdatabase.po b/source/fi/helpcontent2/source/text/sdatabase.po
index 3817e04378c..76772a98e12 100644
--- a/source/fi/helpcontent2/source/text/sdatabase.po
+++ b/source/fi/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: 2020-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,6 +13,2787 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+#. ugSgG
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Queries"
+msgstr ""
+
+#. nuBLG
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"bm_id3150445\n"
+"help.text"
+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 ""
+
+#. g7gAN
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3150445\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/02000000.xhp\" name=\"Queries\">Queries</link>"
+msgstr ""
+
+#. KaF9w
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3150499\n"
+"help.text"
+msgid "A \"query\" is a special view of a table. A query can display chosen records or chosen fields within records; it can also sort those records. A query can apply to one table or to multiple tables, if they are linked by common data fields."
+msgstr ""
+
+#. FG8C9
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3147399\n"
+"help.text"
+msgid "Use queries to find records from data tables based on certain criteria. All queries created for a database are listed under the <emph>Queries</emph> entry. Since this entry contains the database queries, it is also called the \"query container\"."
+msgstr ""
+
+#. AuJW3
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3153750\n"
+"help.text"
+msgid "Printing Queries"
+msgstr ""
+
+#. BVVMe
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3149183\n"
+"help.text"
+msgid "To print a query or table:"
+msgstr ""
+
+#. zDMbu
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3156426\n"
+"help.text"
+msgid "Open a text document (or a spreadsheet document if you prefer the specific printing functions of this type of document)."
+msgstr ""
+
+#. KFWTE
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3149827\n"
+"help.text"
+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 ""
+
+#. 9ZPFm
+#: 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 ""
+
+#. m5TnG
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3150443\n"
+"help.text"
+msgid "Decide which columns = data fields you want to include. You can also click the <emph>AutoFormat</emph> button and select a corresponding formatting type. Close the dialog."
+msgstr ""
+
+#. AAQ4y
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3153561\n"
+"help.text"
+msgid "The query or table will be inserted into your document."
+msgstr ""
+
+#. XDLzM
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3150503\n"
+"help.text"
+msgid "Print the document by choosing <emph>File - Print</emph>."
+msgstr ""
+
+#. Kh9NG
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3153146\n"
+"help.text"
+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 ""
+
+#. PJjKX
+#: 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 ""
+
+#. ERCGr
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3149655\n"
+"help.text"
+msgid "Allows you to sort and filter the data in a query table."
+msgstr ""
+
+#. XpUzN
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3153379\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Query Design</link>"
+msgstr ""
+
+#. 3JCfK
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3151211\n"
+"help.text"
+msgid "With the <emph>Query Design</emph>, you can create and edit a query or view."
+msgstr ""
+
+#. q79aD
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3153968\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Through Several Tables\">Query Through Several Tables</link>"
+msgstr ""
+
+#. ASeVi
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3151043\n"
+"help.text"
+msgid "The query result can contain data from several tables if these are linked to each other by suitable data fields."
+msgstr ""
+
+#. uBo2H
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3159149\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Formulating Query Criteria\">Formulating Query Criteria</link>"
+msgstr ""
+
+#. JTXBF
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "You can find out which operators and commands can be used to formulate the filter conditions for a query."
+msgstr ""
+
+#. uCGCF
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3156212\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Executing Functions\">Executing Functions</link>"
+msgstr ""
+
+#. FWCVa
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3144762\n"
+"help.text"
+msgid "You can perform calculations with the data of a table and store the results as a query result."
+msgstr ""
+
+#. BncmA
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Missing Element"
+msgstr ""
+
+#. noWgR
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"bm_id3150445\n"
+"help.text"
+msgid "<bookmark_value>queries; missing elements (Base)</bookmark_value>"
+msgstr ""
+
+#. EoEQz
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3150445\n"
+"help.text"
+msgid "Missing Element"
+msgstr ""
+
+#. X2NF9
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3150247\n"
+"help.text"
+msgid "If a query in which tables or fields no longer exist is opened, the<emph> Missing Element </emph>dialog appears. This dialog names the missing table or the field which cannot be interpreted and allows you to decide how to continue with the procedure."
+msgstr ""
+
+#. fBc3m
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3145072\n"
+"help.text"
+msgid "How to continue?"
+msgstr ""
+
+#. wV7Bh
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3149177\n"
+"help.text"
+msgid "There are three options available for answering this question:"
+msgstr ""
+
+#. nwD7D
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3147576\n"
+"help.text"
+msgid "Do you really want to open the query in the graphic view?"
+msgstr ""
+
+#. 2DqMn
+#: 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 ""
+
+#. DX2vA
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3153031\n"
+"help.text"
+msgid "The query is opened in the Design View (the graphical interface). Missing tables appear blank and invalid fields appear with their (invalid) names in the list of fields. This lets you work with exactly those fields that caused the error."
+msgstr ""
+
+#. 477G3
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3149578\n"
+"help.text"
+msgid "Open the query in the SQL View"
+msgstr ""
+
+#. Axfxy
+#: 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 ""
+
+#. 2N4uG
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3150984\n"
+"help.text"
+msgid "Do not open the query"
+msgstr ""
+
+#. 9hCbd
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3156329\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows you to cancel the procedure and specify that the query should not be opened.</ahelp> This option corresponds to the function of the <emph>Cancel</emph> dialog button."
+msgstr ""
+
+#. 4QDUr
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3148492\n"
+"help.text"
+msgid "Also ignore similar errors"
+msgstr ""
+
+#. tv3MZ
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3154285\n"
+"help.text"
+msgid "<ahelp hid=\".\">If you selected the first option, but you still want to open the query in the graphics view in spite of missing elements, you can specify whether other errors are ignored.</ahelp> Therefore, in the current opening process, no error message will be displayed if the query can not be correctly interpreted."
+msgstr ""
+
+#. E3MVS
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Design"
+msgstr ""
+
+#. Ys2sC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"bm_id3153323\n"
+"help.text"
+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 ""
+
+#. fmcBY
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153394\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Query Design</link>"
+msgstr ""
+
+#. GU8Jd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156411\n"
+"help.text"
+msgid "<ahelp hid=\".\">The <emph>Query Design View </emph>allows you to create and edit a database query.</ahelp>"
+msgstr ""
+
+#. vGBE5
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id7024140\n"
+"help.text"
+msgid "Most databases use queries to filter or to sort database tables to display records on your computer. Views offer the same functionality as queries, but on the server side. If your database is on a server that supports views, you can use views to filter the records on the server to speed up the display time."
+msgstr ""
+
+#. WZcUE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159176\n"
+"help.text"
+msgid "Selecting the <emph>Create View</emph> command from the <emph>Tables</emph> tab page of a database document, you see the <emph>View Design</emph> window that resembles the <emph>Query Design</emph> window described here."
+msgstr ""
+
+#. JMyC7
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id8307138\n"
+"help.text"
+msgid "The Query Design window layout is stored with a created query, but cannot be stored with a created view."
+msgstr ""
+
+#. TEBj6
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3149233\n"
+"help.text"
+msgid "The Design View"
+msgstr ""
+
+#. zkTQc
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145673\n"
+"help.text"
+msgid "To create a query, click the <emph>Queries</emph> icon in a database document, then click <emph>Create Query in Design View</emph>."
+msgstr ""
+
+#. EN5uU
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150255\n"
+"help.text"
+msgid "The lower pane of the Design View is where you <link href=\"text/sdatabase/020010100.xhp\" name=\"define\">define</link> the query. To define a query, specify the database <link href=\"text/sdatabase/020010100.xhp\" name=\"field names\">field names</link> to include and the <link href=\"text/sdatabase/020010100.xhp\" name=\"criteria\">criteria</link> 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
+#: 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 ""
+
+#. hYsxY
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147559\n"
+"help.text"
+msgid "If you want to test a query, double-click the query name in the database document. The query result is displayed in a table similar to the Data Source View. Note: the table displayed is only temporary."
+msgstr ""
+
+#. B4HEH
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id8226264\n"
+"help.text"
+msgid "Keys in Query Design View"
+msgstr ""
+
+#. Cvd4o
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id2341074\n"
+"help.text"
+msgid "Key"
+msgstr ""
+
+#. mCy9S
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id4384289\n"
+"help.text"
+msgid "Function"
+msgstr ""
+
+#. yybiC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id5839106\n"
+"help.text"
+msgid "F4"
+msgstr ""
+
+#. FMTZD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id8554338\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. YQhGF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id1254921\n"
+"help.text"
+msgid "F5"
+msgstr ""
+
+#. C9yhE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id7636646\n"
+"help.text"
+msgid "Run Query"
+msgstr ""
+
+#. jdEeJ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id8579363\n"
+"help.text"
+msgid "F7"
+msgstr ""
+
+#. 6Y6Uw
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3227942\n"
+"help.text"
+msgid "Add Table or Query"
+msgstr ""
+
+#. WN7wR
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154939\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. 5y4VZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148799\n"
+"help.text"
+msgid "When you open the query design for the first time, you see a dialog in which you must first select the table or query that will be the basis for your new query."
+msgstr ""
+
+#. FBQA9
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3144762\n"
+"help.text"
+msgid "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Double-click fields to add them to the query. Drag-and-drop to define relations.</ahelp>"
+msgstr ""
+
+#. eG8FD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157894\n"
+"help.text"
+msgid "While designing a query, you cannot modify the selected tables."
+msgstr ""
+
+#. NLywF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3149562\n"
+"help.text"
+msgid "Remove tables"
+msgstr ""
+
+#. TbQzA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150685\n"
+"help.text"
+msgid "To remove the table from Design View, click the upper border of the table window and display the context menu. You can use the <emph>Delete</emph> command to remove the table from the Design View. Another option is to press the Delete key."
+msgstr ""
+
+#. VLTKB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3150012\n"
+"help.text"
+msgid "Move table and modify table size"
+msgstr ""
+
+#. amBsQ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146922\n"
+"help.text"
+msgid "You can resize and arrange the tables according to your preferences. To move tables, drag the upper border to the desired position. Enlarge or reduce the size in which the table is displayed by positioning the mouse cursor on a border or on a corner and dragging the table until it is the desired size."
+msgstr ""
+
+#. UoCRG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145365\n"
+"help.text"
+msgid "Table Relations"
+msgstr ""
+
+#. BFCxB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154145\n"
+"help.text"
+msgid "If there are data relations between a field name in one table and a field name in another table, you can use these relations for your query."
+msgstr ""
+
+#. jcLbE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152577\n"
+"help.text"
+msgid "If, for example, you have a spreadsheet for articles identified by an article number, and a spreadsheet for customers in which you record all articles that a customer orders using the corresponding article numbers, then there is a relationship between the two \"article number\" data fields. If you now want to create a query that returns all articles that a customer has ordered, you must retrieve data from two spreadsheets. To do this, you must inform $[officename] about the relationship which exists between the data in the two spreadsheets."
+msgstr ""
+
+#. FspJi
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155302\n"
+"help.text"
+msgid "To do this, click a field name in a table (for example, the field name \"Item-Number\" from the Customer table), hold down the mouse button and then drag the field name to the field name of the other table (\"Item-Number\" from the Item table). When you release the mouse button, a line connecting the two fields between the two table windows appears. The corresponding condition that the content of the two field names must be identical is entered in the resulting SQL query."
+msgstr ""
+
+#. FmAaU
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153876\n"
+"help.text"
+msgid "The creation of a query that is based on several related sheets is only possible if you use $[officename] as the interface for a relational database."
+msgstr ""
+
+#. N2f8q
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145646\n"
+"help.text"
+msgid "You cannot access tables from different databases in a query. Queries involving multiple tables can only be created within one database."
+msgstr ""
+
+#. nLSiq
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153279\n"
+"help.text"
+msgid "Specifying the relation type"
+msgstr ""
+
+#. zkKD5
+#: 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 ""
+
+#. rAkmw
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150094\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QUERY_EDIT_JOINCONNECTION\" visibility=\"hidden\">Edit Join Properties.</ahelp> Alternatively, press Tab until the line is selected, then press Shift+F10 to display the context menu and there choose the command <emph>Edit</emph>. Some databases support only a subset of the possible join types."
+msgstr ""
+
+#. n3PMB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3155851\n"
+"help.text"
+msgid "Deleting relations"
+msgstr ""
+
+#. jCb4H
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156178\n"
+"help.text"
+msgid "To delete a relation between two tables, click the connection line and then press the Delete key."
+msgstr ""
+
+#. 3UCig
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150715\n"
+"help.text"
+msgid "Alternatively, delete the respective entries in <emph>Fields involved </emph>in the <emph>Relations</emph> dialog. Or press Tab until the connecting vector is displayed highlighted, then press Shift+F10 to open the context menu and select <emph>Delete </emph>command."
+msgstr ""
+
+#. pBybB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3151208\n"
+"help.text"
+msgid "Defining the query"
+msgstr ""
+
+#. yGfhU
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3158416\n"
+"help.text"
+msgid "<ahelp hid=\"HID_CTL_QRYDGNCRIT\">Select conditions to define the query.</ahelp> Each column of the design table accepts a data field for the query. The conditions in one row are linked with a Boolean AND."
+msgstr ""
+
+#. UB5nG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154161\n"
+"help.text"
+msgid "Specifying field names"
+msgstr ""
+
+#. jyKMG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146791\n"
+"help.text"
+msgid "First, select all field names from the tables that you want to add to the query. You can do this either by drag-and-drop or by double-clicking a field name in the table window. With the drag-and-drop method, use the mouse to drag a field name from the table window into the lower area of the query design window. As you do this, you can decide which column in the query design window will receive the selected field. A field name can also be selected by double-clicking. It will then be added to the next free column in the query design window."
+msgstr ""
+
+#. 66Dcr
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3150750\n"
+"help.text"
+msgid "Deleting field names"
+msgstr ""
+
+#. AbhrW
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154479\n"
+"help.text"
+msgid "To remove a field name from the query, click the column header of the field and choose the <emph>Delete</emph> command on the context menu for the column."
+msgstr ""
+
+#. V92gB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3155764\n"
+"help.text"
+msgid "Saving the query"
+msgstr ""
+
+#. 2kWoA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148481\n"
+"help.text"
+msgid "Use the <emph>Save</emph> icon on the Standard toolbar to save the query. You will see a dialog that asks you to enter a name for the query. If the database supports schemas, you can also enter a schema name."
+msgstr ""
+
+#. M9UQL
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154362\n"
+"help.text"
+msgid "Schema"
+msgstr ""
+
+#. 4Jwm3
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154754\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/savedialog/schema\">Enter the name of the schema that is assigned to the query or table view.</ahelp>"
+msgstr ""
+
+#. 6Q72c
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3156717\n"
+"help.text"
+msgid "Query name or table view name"
+msgstr ""
+
+#. Cw73K
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154253\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/savedialog/title\">Enter the name of the query or table view.</ahelp>"
+msgstr ""
+
+#. qgbNu
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3163805\n"
+"help.text"
+msgid "Filtering data"
+msgstr ""
+
+#. Q9pG5
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154964\n"
+"help.text"
+msgid "To filter data for the query, set the desired criteria in the lower area of the query design window. The following options are available:"
+msgstr ""
+
+#. xxoMA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3146916\n"
+"help.text"
+msgid "Field"
+msgstr ""
+
+#. 4KDzZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156372\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FIELD\">Enter the name of the data field that is referred to in the Query. All settings made in the filter option rows refer to this field.</ahelp> If you activate a cell here with a mouse click you'll see an arrow button, which enables you to select a field. The \"Table name.*\" option selects all data fields with the effect that the specified criteria will be applied to all table fields."
+msgstr ""
+
+#. Z3pwF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145150\n"
+"help.text"
+msgid "Alias"
+msgstr ""
+
+#. EDa3A
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146315\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_ALIAS\">Specifies an alias. This alias will be listed in the query instead of the field name. This makes it possible to use user-defined column labels.</ahelp> For example, if the data field is named PtNo and, instead of that name, you would like to have PartNum appear in the query, enter PartNum as the alias."
+msgstr ""
+
+#. vvWbt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155959\n"
+"help.text"
+msgid "In a SQL statement, aliases are defined as follows:"
+msgstr ""
+
+#. CGsBz
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149922\n"
+"help.text"
+msgid "SELECT column AS alias FROM table."
+msgstr ""
+
+#. TWexq
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159335\n"
+"help.text"
+msgid "For example:"
+msgstr ""
+
+#. ynSGq
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148478\n"
+"help.text"
+msgid "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\""
+msgstr ""
+
+#. roTzi
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3148485\n"
+"help.text"
+msgid "Table"
+msgstr ""
+
+#. GM9Sp
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3163665\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_TABLE\">The corresponding database table of the selected data field is listed here.</ahelp> If you activate this cell with a mouse click, an arrow will appear which enables you to select a different table for the current query."
+msgstr ""
+
+#. JGcfa
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154207\n"
+"help.text"
+msgid "Sort"
+msgstr ""
+
+#. uXuDt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150979\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_ORDER\">If you click on this cell, you can choose a sort option: ascending, descending and unsorted.</ahelp> Text fields will be sorted alphabetically and numerical fields numerically. For most databases, administrators can set the sorting options at the database level."
+msgstr ""
+
+#. XsqW8
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3150384\n"
+"help.text"
+msgid "Visible"
+msgstr ""
+
+#. AAZfA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146133\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_VISIBLE\">If you mark the <emph>Visible</emph> property for a data field, that field will be visibly displayed in the resulting query</ahelp>. If you are only using a data field to formulate a condition or make a calculation, you do not necessarily need to display it."
+msgstr ""
+
+#. eQFRR
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154714\n"
+"help.text"
+msgid "Criteria"
+msgstr ""
+
+#. f3DvJ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145134\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Specifies a first <link href=\"text/sdatabase/020010100.xhp\" name=\"criteria \">criteria </link>by which the content of the data field is to be filtered.</ahelp>"
+msgstr ""
+
+#. qpADC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3152477\n"
+"help.text"
+msgid "or"
+msgstr ""
+
+#. KFVy8
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154585\n"
+"help.text"
+msgid "Here you can enter one additional filter criterion for each line. Multiple criteria in a single column will be interpreted as boolean OR."
+msgstr ""
+
+#. eXvp7
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148800\n"
+"help.text"
+msgid "You can also use the context menu of the line headers in the lower area of the query design window to insert a filter based on a function:"
+msgstr ""
+
+#. 5x8LE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3148419\n"
+"help.text"
+msgid "Functions"
+msgstr ""
+
+#. Cxhjn
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153233\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\" visibility=\"hidden\">Select a function to run in the query.</ahelp> The functions which are available here depend on those provided by the database engine."
+msgstr ""
+
+#. qFuqw
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id8760818\n"
+"help.text"
+msgid "If you are working with the embedded HSQL database, the list box in the <emph>Function</emph> row offers you the following options:"
+msgstr ""
+
+#. 9tdDn
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150307\n"
+"help.text"
+msgid "Option"
+msgstr ""
+
+#. kBvXF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152993\n"
+"help.text"
+msgid "Effect"
+msgstr ""
+
+#. zCunm
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155377\n"
+"help.text"
+msgid "No function"
+msgstr ""
+
+#. kZMTN
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155533\n"
+"help.text"
+msgid "No function will be executed."
+msgstr ""
+
+#. 6dWZZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3166420\n"
+"help.text"
+msgid "Average"
+msgstr ""
+
+#. NfRNs
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154486\n"
+"help.text"
+msgid "Calculates the arithmetic mean of a field."
+msgstr ""
+
+#. 6z2Kj
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149979\n"
+"help.text"
+msgid "Count"
+msgstr ""
+
+#. rvWA5
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155810\n"
+"help.text"
+msgid "Determines the number of records in the table. Empty fields can either be counted (a) or excluded (b)."
+msgstr ""
+
+#. UyAx2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151333\n"
+"help.text"
+msgid "a) COUNT(*): Passing an asterisk as the argument counts all records in the table."
+msgstr ""
+
+#. FNCC8
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152889\n"
+"help.text"
+msgid "b) COUNT(column): Passing a field name as an argument counts only the records in which the specified field contains a value. Records in which the field has a Null value (i.e. contains no textual or numeric value) will not be counted."
+msgstr ""
+
+#. 2ubvb
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153067\n"
+"help.text"
+msgid "Maximum"
+msgstr ""
+
+#. ds4ey
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159221\n"
+"help.text"
+msgid "Determines the highest value of a record for that field."
+msgstr ""
+
+#. EhSWy
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146866\n"
+"help.text"
+msgid "Minimum"
+msgstr ""
+
+#. VxmeB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157982\n"
+"help.text"
+msgid "Determines the lowest value of a record for that field."
+msgstr ""
+
+#. CvkuF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154828\n"
+"help.text"
+msgid "Sum"
+msgstr ""
+
+#. 82gAC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154536\n"
+"help.text"
+msgid "Calculates the sum of the values of records for the associated fields."
+msgstr ""
+
+#. zCzVC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148820\n"
+"help.text"
+msgid "Group"
+msgstr ""
+
+#. tSPNG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149438\n"
+"help.text"
+msgid "Groups query data according to the selected field name. Functions are executed according to the specified groups. In SQL, this option corresponds to the GROUP BY clause. If a criterion is added, this entry appears in the SQL HAVING sub-clause."
+msgstr ""
+
+#. qHfpD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156038\n"
+"help.text"
+msgid "You can also enter function calls directly into the SQL statement. The syntax is:"
+msgstr ""
+
+#. Qg6Ue
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156340\n"
+"help.text"
+msgid "SELECT FUNCTION(column) FROM table."
+msgstr ""
+
+#. qAAoF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155075\n"
+"help.text"
+msgid "For example, the function call in SQL for calculating a sum is:"
+msgstr ""
+
+#. VrHLf
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154591\n"
+"help.text"
+msgid "SELECT SUM(\"Price\") FROM \"Article\"."
+msgstr ""
+
+#. dABCo
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159205\n"
+"help.text"
+msgid "Except for the <emph>Group</emph> function, the above functions are called Aggregate functions. These are functions that calculate data to create summaries from the results. Additional functions that are not listed in the list box might be also possible. These depend on the specific database engine in use and on the current functionality provided by the Base driver used to connect to that database engine."
+msgstr ""
+
+#. BVC6J
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148651\n"
+"help.text"
+msgid "To use other functions not listed in the list box, you must enter them manually under <emph>Field</emph>."
+msgstr ""
+
+#. WkboS
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155098\n"
+"help.text"
+msgid "You can also assign aliases to function calls. If you do not want to display the query string in the column header, enter a desired substitute name under <emph>Alias</emph>."
+msgstr ""
+
+#. 98GCC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155539\n"
+"help.text"
+msgid "The corresponding function in an SQL statement is:"
+msgstr ""
+
+#. WACG9
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149425\n"
+"help.text"
+msgid "SELECT FUNCTION() AS alias FROM table"
+msgstr ""
+
+#. EjzuD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3144431\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. G9URE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154614\n"
+"help.text"
+msgid "SELECT COUNT(*) AS count FROM \"Item\""
+msgstr ""
+
+#. xiNnR
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154610\n"
+"help.text"
+msgid "If you run such a function, you cannot insert any additional columns for the query other than as an argument in a \"Group\" function."
+msgstr ""
+
+#. EHACK
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154644\n"
+"help.text"
+msgid "<emph>Examples</emph>"
+msgstr ""
+
+#. N5CBE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151120\n"
+"help.text"
+msgid "In the following example, a query is run through two tables: an \"Item\" table with the \"Item_No\" field and a \"Suppliers\" table with the \"Supplier_Name\" field. In addition, both tables have a common field name \"Supplier_No.\""
+msgstr ""
+
+#. P5hJD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155144\n"
+"help.text"
+msgid "The following steps are required to create a query containing all suppliers who deliver more than three items."
+msgstr ""
+
+#. ZhRQD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153240\n"
+"help.text"
+msgid "Insert the \"Item\" and \"Suppliers\" tables into the query design."
+msgstr ""
+
+#. LMRUV
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148807\n"
+"help.text"
+msgid "Link the \"Supplier_No\" fields of the two tables if there is not already a relation of this type."
+msgstr ""
+
+#. qWhFA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3161652\n"
+"help.text"
+msgid "Double-click on the \"Item_No\" field from the \"Item\" table. Display the <emph>Function</emph> line using the context menu and select the Count function."
+msgstr ""
+
+#. TgPA2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151009\n"
+"help.text"
+msgid "Enter >3 as a criterion and disable the Visible field."
+msgstr ""
+
+#. VwEhF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145601\n"
+"help.text"
+msgid "Double-click the \"Supplier_Name\" field in the \"Suppliers\" table and choose the Group function."
+msgstr ""
+
+#. zsjaa
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147512\n"
+"help.text"
+msgid "Run the query."
+msgstr ""
+
+#. EzQsj
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148638\n"
+"help.text"
+msgid "If the \"price\" (for the individual price of an article) and \"Supplier_No\" (for the supplier of the article) fields exist in the \"Item\" table, you can obtain the average price of the item that a supplier provides with the following query:"
+msgstr ""
+
+#. qAByp
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153045\n"
+"help.text"
+msgid "Insert the \"Item\" table into the query design."
+msgstr ""
+
+#. tjfuE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149802\n"
+"help.text"
+msgid "Double-click the \"Price\" and \"Supplier_No\" fields."
+msgstr ""
+
+#. 6dBkt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153554\n"
+"help.text"
+msgid "Enable the <emph>Function</emph> line and select the Average function from the \"Price\" field."
+msgstr ""
+
+#. x8JB3
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155597\n"
+"help.text"
+msgid "You can also enter \"Average\" in the line for the alias name (without quotation marks)."
+msgstr ""
+
+#. D4A9u
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151191\n"
+"help.text"
+msgid "Choose Group for the \"Supplier_No\" field."
+msgstr ""
+
+#. BUYS9
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155547\n"
+"help.text"
+msgid "Run the query."
+msgstr ""
+
+#. EkHzB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147549\n"
+"help.text"
+msgid "The following context menu commands and symbols are available:"
+msgstr ""
+
+#. PesFs
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154172\n"
+"help.text"
+msgid "Functions"
+msgstr ""
+
+#. BchuJ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150414\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides a row for the selection of functions.</ahelp>"
+msgstr ""
+
+#. yx5XE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3149872\n"
+"help.text"
+msgid "Table Name"
+msgstr ""
+
+#. ELTGJ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147246\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the table name.</ahelp>"
+msgstr ""
+
+#. DDFEA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145117\n"
+"help.text"
+msgid "Alias Name"
+msgstr ""
+
+#. LDFZB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155754\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the alias name.</ahelp>"
+msgstr ""
+
+#. wnNhq
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153298\n"
+"help.text"
+msgid "Distinct Values"
+msgstr ""
+
+#. 23sAF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147500\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Retrieves only distinct values from the query.</ahelp> This applies to multiple records that might contain several repeating occurrences of data in the selected fields. If the <emph>Distinct Values</emph> command is active, you should only see one record in the query (DISTINCT). Otherwise, you will see all records corresponding to the query criteria (ALL)."
+msgstr ""
+
+#. RZED7
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150436\n"
+"help.text"
+msgid "For example, if the name \"Smith\" occurs several times in your address database, you can choose the<emph> Distinct Values</emph> command to specify in the query that the name \"Smith\" will occur only once."
+msgstr ""
+
+#. 2GvRf
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152352\n"
+"help.text"
+msgid "For a query involving several fields, the combination of values from all fields must be unique so that the result can be formed from a specific record. For example, you have \"Smith in Chicago\" once in your address book and \"Smith in London\" twice. With the<emph> Distinct Values</emph> command, the query will use the two fields \"last name\" and \"city\" and return the query result \"Smith in Chicago\" once and \"Smith in London\" once."
+msgstr ""
+
+#. m5UcG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149825\n"
+"help.text"
+msgid "In SQL, this command corresponds to the DISTINCT predicate."
+msgstr ""
+
+#. GHsJd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153290\n"
+"help.text"
+msgid "Limit"
+msgstr ""
+
+#. MijJg
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147501\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Allows you to limit the maximum number of records returned by a query.</ahelp>"
+msgstr ""
+
+#. B6S5f
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152350\n"
+"help.text"
+msgid "If a <emph>Limit</emph> construction is added, you will get at most as many rows as the number you specify. Otherwise, you will see all records corresponding to the query criteria."
+msgstr ""
+
+#. MGqK3
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3148926\n"
+"help.text"
+msgid "Formulating filter conditions"
+msgstr ""
+
+#. iFSpm
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153162\n"
+"help.text"
+msgid "When formulating filter conditions, various operators and commands are available to you. Apart from the relational operators, there are SQL-specific commands that query the content of database fields. If you use these commands in the $[officename] syntax, $[officename] automatically converts these into the corresponding SQL syntax via an internal parser. You can also enter the SQL command directly and bypass the internal parser. The following tables give an overview of the operators and commands:"
+msgstr ""
+
+#. fXeDd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149044\n"
+"help.text"
+msgid "Operator"
+msgstr ""
+
+#. mfdEx
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152471\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. mBZgC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147407\n"
+"help.text"
+msgid "Condition is satisfied if..."
+msgstr ""
+
+#. gqkRK
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153026\n"
+"help.text"
+msgid "equal to"
+msgstr ""
+
+#. hw7KZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148895\n"
+"help.text"
+msgid "... the content of the field is identical to the indicated expression."
+msgstr ""
+
+#. A8XJU
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153120\n"
+"help.text"
+msgid "The operator = will not be displayed in the query fields. If you enter a value without any operator, the = operator is automatically assumed."
+msgstr ""
+
+#. mWwUE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145223\n"
+"help.text"
+msgid "not equal to"
+msgstr ""
+
+#. Db7BG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145635\n"
+"help.text"
+msgid "... the content of the field does not correspond to the specified expression."
+msgstr ""
+
+#. dtjkU
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146815\n"
+"help.text"
+msgid "greater than"
+msgstr ""
+
+#. gCWug
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149150\n"
+"help.text"
+msgid "... the content of the field is greater than the specified expression."
+msgstr ""
+
+#. QkAKk
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147379\n"
+"help.text"
+msgid "less than"
+msgstr ""
+
+#. xxPdk
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150375\n"
+"help.text"
+msgid "... the content of the field is less than the specified expression."
+msgstr ""
+
+#. 4aJjX
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150636\n"
+"help.text"
+msgid "greater than or equal to"
+msgstr ""
+
+#. 2rwQm
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154584\n"
+"help.text"
+msgid "... the content of the field is greater than or equal to the specified expression."
+msgstr ""
+
+#. ADRZk
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154052\n"
+"help.text"
+msgid "less than or equal to"
+msgstr ""
+
+#. 9KtmZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157902\n"
+"help.text"
+msgid "... the content of the field is less than or equal to the specified expression."
+msgstr ""
+
+#. DBXG9
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154630\n"
+"help.text"
+msgid "$[officename] command"
+msgstr ""
+
+#. Yo7MG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150484\n"
+"help.text"
+msgid "SQL command"
+msgstr ""
+
+#. pJay6
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154158\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. qmaX5
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149433\n"
+"help.text"
+msgid "Condition is satisfied if..."
+msgstr ""
+
+#. do6XQ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3143236\n"
+"help.text"
+msgid "is null"
+msgstr ""
+
+#. NPqBL
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154744\n"
+"help.text"
+msgid "... the field contains no data. For Yes/No fields with three possible states, this command automatically queries the undetermined state (neither Yes nor No)."
+msgstr ""
+
+#. 7Rfbd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151229\n"
+"help.text"
+msgid "is not empty"
+msgstr ""
+
+#. w3Tva
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145304\n"
+"help.text"
+msgid "... the field is not empty, i.e it contains data."
+msgstr ""
+
+#. GGKUH
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153891\n"
+"help.text"
+msgid "placeholder (*) for any number of characters"
+msgstr ""
+
+#. gbEWB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148887\n"
+"help.text"
+msgid "placeholder (?) for exactly one character"
+msgstr ""
+
+#. tBQfA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"bm_id3157985\n"
+"help.text"
+msgid "<bookmark_value>placeholders; in SQL queries</bookmark_value>"
+msgstr ""
+
+#. agxhB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157985\n"
+"help.text"
+msgid "placeholder (%) for any number of characters"
+msgstr ""
+
+#. EE9ii
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147422\n"
+"help.text"
+msgid "Placeholder (_) for exactly one character"
+msgstr ""
+
+#. za5g2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154845\n"
+"help.text"
+msgid "is an element of"
+msgstr ""
+
+#. 2Y3zW
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156130\n"
+"help.text"
+msgid "... the data field contains the indicated expression. The (*) placeholder indicates whether the expression x occurs at the beginning of (x*), at the end of (*x) or inside the field content (*x*). You can enter as a placeholder in SQL queries either the SQL % character or the familiar (*) file system placeholder in the %PRODUCTNAME interface."
+msgstr ""
+
+#. CPJyr
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150271\n"
+"help.text"
+msgid "The (*) or (%) placeholder stands for any number of characters. The question mark (?) in the $[officename] interface or the underscore (_) in SQL queries is used to represent exactly one character."
+msgstr ""
+
+#. AAEXi
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159141\n"
+"help.text"
+msgid "Is not an element of"
+msgstr ""
+
+#. 9vFBZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3161664\n"
+"help.text"
+msgid "... the field does not contain data having the specified expression."
+msgstr ""
+
+#. CD2Ra
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159184\n"
+"help.text"
+msgid "falls within the interval [x,y]"
+msgstr ""
+
+#. cDe2u
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154395\n"
+"help.text"
+msgid "... the field contains a data value that lies between the two values x and y."
+msgstr ""
+
+#. KYAXv
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155498\n"
+"help.text"
+msgid "Does not fall within the interval [x,y]"
+msgstr ""
+
+#. cVfAF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148992\n"
+"help.text"
+msgid "... the field contains a data value that does not lie between the two values x and y."
+msgstr ""
+
+#. DBBQE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159167\n"
+"help.text"
+msgid "Note that semicolons are used as separators in all value lists!"
+msgstr ""
+
+#. evEuh
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154809\n"
+"help.text"
+msgid "contains a, b, c..."
+msgstr ""
+
+#. eeFC2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148399\n"
+"help.text"
+msgid "... the field name contains one of the specified expressions a, b, c,... Any number of expressions can be specified, and the result of the query is determined by a boolean OR operator. The expressions a, b, c... can be either numbers or characters"
+msgstr ""
+
+#. JXq76
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150679\n"
+"help.text"
+msgid "does not contain a, b, c..."
+msgstr ""
+
+#. U5doB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3158439\n"
+"help.text"
+msgid "... the field does not contain one of the specified expressions a, b, c,..."
+msgstr ""
+
+#. cECKt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149248\n"
+"help.text"
+msgid "has the value True"
+msgstr ""
+
+#. fbgDt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148524\n"
+"help.text"
+msgid "... the field name has the value True."
+msgstr ""
+
+#. 39zcD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149955\n"
+"help.text"
+msgid "has the value false"
+msgstr ""
+
+#. fGHY6
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146850\n"
+"help.text"
+msgid "... the field data value is set to false."
+msgstr ""
+
+#. qQETa
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3155954\n"
+"help.text"
+msgid "Examples"
+msgstr ""
+
+#. LuvGC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153792\n"
+"help.text"
+msgid "='Ms.'"
+msgstr ""
+
+#. 8GaiA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150948\n"
+"help.text"
+msgid "returns field names with the field content \"Ms.\""
+msgstr ""
+
+#. C3BDE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id315094A\n"
+"help.text"
+msgid "returns dates that occurred before January 10, 2001"
+msgstr ""
+
+#. mnGgM
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150333\n"
+"help.text"
+msgid "LIKE 'g?ve'"
+msgstr ""
+
+#. T7ZhS
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147332\n"
+"help.text"
+msgid "returns records with field content such as \"give\" and \"gave\"."
+msgstr ""
+
+#. f6T3F
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155350\n"
+"help.text"
+msgid "returns records with field contents such as \"Sun\"."
+msgstr ""
+
+#. AvbKu
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159406\n"
+"help.text"
+msgid "returns records with field content between the values 10 and 20. (The fields can be either text fields or number fields)."
+msgstr ""
+
+#. 3tymM
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149712\n"
+"help.text"
+msgid "returns records with the values 1, 3, 5, 7. If the field name contains an item number, for example, you can create a query that returns the item having the specified number."
+msgstr ""
+
+#. cBAnB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152948\n"
+"help.text"
+msgid "NOT IN ('Smith')"
+msgstr ""
+
+#. uusce
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147279\n"
+"help.text"
+msgid "returns records that do not contain \"Smith\"."
+msgstr ""
+
+#. AJ8Xo
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146073\n"
+"help.text"
+msgid "<emph>Like </emph>Escape Sequence: {escape 'escape-character'}"
+msgstr ""
+
+#. Cy7Cc
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150661\n"
+"help.text"
+msgid "Example: select * from Item where ItemName like 'The *%' {escape '*'}"
+msgstr ""
+
+#. newGb
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148541\n"
+"help.text"
+msgid "The example will give you all of the entries where the item name begins with 'The *'. This means that you can also search for characters that would otherwise be interpreted as placeholders, such as *, ?, _, % or the period."
+msgstr ""
+
+#. bAP3N
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150572\n"
+"help.text"
+msgid "<emph>Outer Join</emph> Escape Sequence: {oj outer-join}"
+msgstr ""
+
+#. VnKGf
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156052\n"
+"help.text"
+msgid "Example: select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}"
+msgstr ""
+
+#. mWG9p
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153674\n"
+"help.text"
+msgid "Querying text fields"
+msgstr ""
+
+#. sxYQF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149134\n"
+"help.text"
+msgid "To query the content of a text field, you must put the expression between single quotes. The distinction between uppercase and lowercase letters depends on the database in use. LIKE, by definition, is case-sensitive (though some databases don't interpret this strictly)."
+msgstr ""
+
+#. BEp4G
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3149302\n"
+"help.text"
+msgid "Querying date fields"
+msgstr ""
+
+#. D5mjw
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157998\n"
+"help.text"
+msgid "<emph>Date fields</emph> are represented as #Date# to clearly identify them as dates. Date, time and date/time constants (literals) used in conditions can be of either the SQL Escape Syntax type, or default SQL2 syntax."
+msgstr ""
+
+#. Zzuo6
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31537341\n"
+"help.text"
+msgid "Date Type Element"
+msgstr ""
+
+#. JKys2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31537342\n"
+"help.text"
+msgid "SQL Escape syntax #1 - may be obsolete"
+msgstr ""
+
+#. AzkWz
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31537343\n"
+"help.text"
+msgid "SQL Escape syntax #2"
+msgstr ""
+
+#. UJ6VA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31537344\n"
+"help.text"
+msgid "SQL2 syntax"
+msgstr ""
+
+#. 9V3Ky
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id315913111\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. YNF3S
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31559471\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. ssX5b
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31509641\n"
+"help.text"
+msgid "DateTime"
+msgstr ""
+
+#. FqZXM
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149539\n"
+"help.text"
+msgid "Example: select {d '1999-12-31'} from world.years"
+msgstr ""
+
+#. WJ4YB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149540\n"
+"help.text"
+msgid "Example: select * from mytable where years='1999-12-31'"
+msgstr ""
+
+#. CZdA4
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150510\n"
+"help.text"
+msgid "All date expressions (date literals) must be enclosed with single quotation marks. (Consult the reference for the particular database and connector you are using for more details.)"
+msgstr ""
+
+#. HXdKT
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3150427\n"
+"help.text"
+msgid "Querying Yes/No fields"
+msgstr ""
+
+#. xWzix
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149523\n"
+"help.text"
+msgid "To query Yes/No fields, use the following syntax for dBASE tables:"
+msgstr ""
+
+#. A4Uh7
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153180\n"
+"help.text"
+msgid "Status"
+msgstr ""
+
+#. FnXiE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147481\n"
+"help.text"
+msgid "Query criterion"
+msgstr ""
+
+#. e6DJr
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155187\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
+#. Guy7d
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156092\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. p9WTn
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152414\n"
+"help.text"
+msgid "for dBASE tables: not equal to any given value"
+msgstr ""
+
+#. RFrvz
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151265\n"
+"help.text"
+msgid "=1 returns all records where the Yes/No field has the status \"Yes\" or \"On\" (selected in black),"
+msgstr ""
+
+#. 3P4ZB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152450\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. BzBAa
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150997\n"
+"help.text"
+msgid "."
+msgstr ""
+
+#. TFsQG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155331\n"
+"help.text"
+msgid "=0 returns all records for which the Yes/No field has the status \"No\" or \"Off\" (no selection)."
+msgstr ""
+
+#. 9KXzK
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154179\n"
+"help.text"
+msgid "Null"
+msgstr ""
+
+#. CwGZv
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147035\n"
+"help.text"
+msgid "IS NULL"
+msgstr ""
+
+#. dyXYc
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159385\n"
+"help.text"
+msgid "IS NULL returns all records for which the Yes/No field has neither of the states Yes or No (selected in gray)."
+msgstr ""
+
+#. YWk5J
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157888\n"
+"help.text"
+msgid "The syntax depends on the database system used. You should also note that Yes/No fields can be defined differently (only 2 states instead of 3)."
+msgstr ""
+
+#. mmVa8
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145772\n"
+"help.text"
+msgid "Parameter queries"
+msgstr ""
+
+#. ND7xd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151905346795\n"
+"help.text"
+msgid "Parameter queries allow the user to input values at run-time. These values are used within the criteria for selecting the records to be displayed. Each such value has a parameter name associated with it, which is used to prompt the user when the query is run."
+msgstr ""
+
+#. Be7XG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151905439551\n"
+"help.text"
+msgid "Parameter names are preceded by a colon in both the Design and SQL views of a query. This can be used wherever a value can appear. If the same value is to appear more than once in the query, the same parameter name is used."
+msgstr ""
+
+#. 57vjv
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151905518123\n"
+"help.text"
+msgid "In the simplest case, where the user enters a value which is matched for equality, the parameter name with its preceding colon is simply entered in the Criterion row. In <link href=\"text/sdatabase/020010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">WHERE \"Field\" = :Parameter_name</item>"
+msgstr ""
+
+#. DZCXm
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151905584287\n"
+"help.text"
+msgid "Parameter names may not contain any of the characters <item type=\"input\"><space>`!\"$%^*()+={}[]@'~#<>?/,</item>. They may not be the same as field names or SQL reserved words. They may be the same as aliases."
+msgstr ""
+
+#. bGnxL
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151931441881\n"
+"help.text"
+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/020010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">LOWER ( \"Field_Name\" ) LIKE LOWER ( '%' || :Part_of_field || '%' )</item>."
+msgstr ""
+
+#. sSSB9
+#: 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 ""
+
+#. DRj78
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3151035\n"
+"help.text"
+msgid "Parameter Input"
+msgstr ""
+
+#. BisCF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153596\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">The <emph>Parameter Input</emph> dialog asks the user to enter the parameter values. Enter a value for each query parameter and confirm by clicking <emph>OK</emph> or typing <emph>Enter</emph>.</ahelp>"
+msgstr ""
+
+#. eGETM
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151924165870\n"
+"help.text"
+msgid "The values entered by the user may consist of any characters which are allowable for the SQL for the relevant criterion; this may depend on the underlying database system."
+msgstr ""
+
+#. seFhG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151939594217\n"
+"help.text"
+msgid "The user can use the SQL wild-card characters \"%\" (arbitrary string) or \"_\" (arbitrary single character) as part of the value to retrieve records with more complex criteria."
+msgstr ""
+
+#. wRe6v
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145181\n"
+"help.text"
+msgid "SQL Mode"
+msgstr ""
+
+#. 5avVu
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147013\n"
+"help.text"
+msgid "SQL stands for \"Structured Query Language\" and describes instructions for updating and administering relational databases."
+msgstr ""
+
+#. wDAAY
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152570\n"
+"help.text"
+msgid "In $[officename] you do not need any knowledge of SQL for most queries, since you do not have to enter the SQL code. If you create a query in the query designer, $[officename] automatically converts your instructions into the corresponding SQL syntax. If, with the help of the <emph>Switch Design View On/Off </emph>button, you change to the SQL view, you can see the SQL commands for a query that has already been created."
+msgstr ""
+
+#. hBQFv
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152412\n"
+"help.text"
+msgid "You can formulate your query directly in SQL code. Note, however, that the special syntax is dependent upon the database system that you use."
+msgstr ""
+
+#. kkuBG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146842\n"
+"help.text"
+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 ""
+
+#. cBY6B
+#: 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 ""
+
+#. fKBDD
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"tit\n"
+"help.text"
+msgid "Join Properties"
+msgstr ""
+
+#. TTCNB
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"bm_id3154015\n"
+"help.text"
+msgid "<bookmark_value>links;relational databases (Base)</bookmark_value> <bookmark_value>inner joins (Base)</bookmark_value> <bookmark_value>joins in databases (Base)</bookmark_value> <bookmark_value>left joins (Base)</bookmark_value> <bookmark_value>right joins (Base)</bookmark_value> <bookmark_value>full joins (Base)</bookmark_value>"
+msgstr ""
+
+#. DG7RD
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3154015\n"
+"help.text"
+msgid "Join Properties"
+msgstr ""
+
+#. MzpBt
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3151205\n"
+"help.text"
+msgid "If you double-click a connection between two linked fields in the query design, or if you choose <emph>Insert - New Relation</emph>, the <emph>Join Properties</emph> dialog appears. These properties will be used in all queries created in the future."
+msgstr ""
+
+#. oszEF
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3155066\n"
+"help.text"
+msgid "Tables involved"
+msgstr ""
+
+#. 2AkcB
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3153924\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/table2\">Specifies two different tables that you want to join.</ahelp>"
+msgstr ""
+
+#. X6wkD
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3155766\n"
+"help.text"
+msgid "Fields involved"
+msgstr ""
+
+#. 8bYEZ
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3148994\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies two data fields that will be joined by a relation.</ahelp>"
+msgstr ""
+
+#. R8CbB
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3159267\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. MRJCp
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3147340\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. rxAGo
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3152482\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">Specifies the join type of the selected join.</ahelp> Some databases support only a subset of the various possible types."
+msgstr ""
+
+#. ngfse
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3155334\n"
+"help.text"
+msgid "Inner Join"
+msgstr ""
+
+#. 356Dv
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3155936\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In an inner join, the results table contains only those records for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link is created by a corresponding WHERE clause."
+msgstr ""
+
+#. XYKGT
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3156372\n"
+"help.text"
+msgid "Left Join"
+msgstr ""
+
+#. dRFux
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3166450\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a left join, the results table contains all records of the queried fields from the left table and only those records of the queried fields from the right table for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link corresponds to the LEFT OUTER JOIN command."
+msgstr ""
+
+#. DxGWD
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3155607\n"
+"help.text"
+msgid "Right Join"
+msgstr ""
+
+#. 9eD8R
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3150647\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a right join, the results table contains all records of the queried fields from the right table and only those records of the queried fields from the left table for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link corresponds to the RIGHT OUTER JOIN command."
+msgstr ""
+
+#. wcFAd
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3158215\n"
+"help.text"
+msgid "Full Join"
+msgstr ""
+
+#. wAFid
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3163665\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a full join, the results table contains all records of the queried fields from the left and right tables.</ahelp> In the SQL of $[officename] this type of link corresponds to the FULL OUTER JOIN command."
+msgstr ""
+
+#. gYRyC
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id0305200912031976\n"
+"help.text"
+msgid "Natural"
+msgstr ""
+
+#. 44FEn
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id0305200912031977\n"
+"help.text"
+msgid "<ahelp hid=\".\">In a natural join, the keyword NATURAL in inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns.</ahelp>"
+msgstr ""
+
#. cLmBi
#: main.xhp
msgctxt ""
@@ -138,3 +2919,354 @@ msgctxt ""
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link>"
msgstr ""
+
+#. PAxTq
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"tit\n"
+"help.text"
+msgid "Toolbars"
+msgstr ""
+
+#. Tzgdb
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<variable id=\"toolbars\"><link href=\"text/sdatabase/toolbars.xhp\">Toolbars</link></variable>"
+msgstr ""
+
+#. B3mEW
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10545\n"
+"help.text"
+msgid "In a database file window, you can see the following toolbars."
+msgstr ""
+
+#. ZNxCw
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "Table"
+msgstr ""
+
+#. JWHfj
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10554\n"
+"help.text"
+msgid "Open database object"
+msgstr ""
+
+#. 4fvFG
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected table so you can enter, edit, or delete records.</ahelp>"
+msgstr ""
+
+#. LFKBo
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "Edit"
+msgstr ""
+
+#. tLLAy
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected table so you can change the structure.</ahelp>"
+msgstr ""
+
+#. FEBzp
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1058A\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. PDZsk
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1058E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
+msgstr ""
+
+#. m7BX3
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105A5\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
+#. B596w
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105A9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected table.</ahelp>"
+msgstr ""
+
+#. LEWCs
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105B8\n"
+"help.text"
+msgid "Query"
+msgstr ""
+
+#. VT3EG
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105C4\n"
+"help.text"
+msgid "Open database object"
+msgstr ""
+
+#. 2cEFv
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105C8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected query so you can enter, edit, or delete records.</ahelp>"
+msgstr ""
+
+#. yVNxZ
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105DF\n"
+"help.text"
+msgid "Edit"
+msgstr ""
+
+#. kGSTA
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105E3\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected query so you can change the structure.</ahelp>"
+msgstr ""
+
+#. W75xu
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105FA\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. XJQBJ
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105FE\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected query.</ahelp>"
+msgstr ""
+
+#. bC56u
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10615\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
+#. GDAZR
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10619\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected query.</ahelp>"
+msgstr ""
+
+#. mzY5g
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10628\n"
+"help.text"
+msgid "Form"
+msgstr ""
+
+#. BXrRw
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10634\n"
+"help.text"
+msgid "Open database object"
+msgstr ""
+
+#. GJDxB
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected form so you can enter, edit, or delete records.</ahelp>"
+msgstr ""
+
+#. 7f3E9
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1064F\n"
+"help.text"
+msgid "Edit"
+msgstr ""
+
+#. ZmiNz
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10653\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected form so you can change the layout.</ahelp>"
+msgstr ""
+
+#. xCBQ3
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1066A\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. p5bD4
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1066E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected form.</ahelp>"
+msgstr ""
+
+#. Jrqh7
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10685\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
+#. CLTV2
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10689\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected form.</ahelp>"
+msgstr ""
+
+#. tkXGC
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10698\n"
+"help.text"
+msgid "Report"
+msgstr ""
+
+#. GMWLb
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106A4\n"
+"help.text"
+msgid "Open database object"
+msgstr ""
+
+#. BzwcK
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106A8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected report so you can enter, edit, or delete records.</ahelp>"
+msgstr ""
+
+#. sLPTD
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106BF\n"
+"help.text"
+msgid "Edit"
+msgstr ""
+
+#. DF32e
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106C3\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected report so you can change the layout.</ahelp>"
+msgstr ""
+
+#. FGuUB
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106DA\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. xikUv
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106DE\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected report.</ahelp>"
+msgstr ""
+
+#. kmUBC
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106F5\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
+#. CgE7D
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106F9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected report.</ahelp>"
+msgstr ""
diff --git a/source/fi/helpcontent2/source/text/sdraw/01.po b/source/fi/helpcontent2/source/text/sdraw/01.po
index adc44ccbabc..d1e5a37d73f 100644
--- a/source/fi/helpcontent2/source/text/sdraw/01.po
+++ b/source/fi/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: 2020-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2017-05-09 22:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -574,6 +574,42 @@ msgctxt ""
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/name\">Enter a name for the new layer.</ahelp>"
msgstr ""
+#. ADN49
+#: insert_layer.xhp
+msgctxt ""
+"insert_layer.xhp\n"
+"hd_id641596204028276\n"
+"help.text"
+msgid "Title"
+msgstr ""
+
+#. waSME
+#: insert_layer.xhp
+msgctxt ""
+"insert_layer.xhp\n"
+"par_id271596204273624\n"
+"help.text"
+msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/title\">Enter the title of the layer.</ahelp>"
+msgstr ""
+
+#. GGy5s
+#: insert_layer.xhp
+msgctxt ""
+"insert_layer.xhp\n"
+"hd_id791596204033460\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. q5F9X
+#: insert_layer.xhp
+msgctxt ""
+"insert_layer.xhp\n"
+"par_id471596204283656\n"
+"help.text"
+msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/textview\">Enter a description of the layer.</ahelp>"
+msgstr ""
+
#. WFSEL
#: insert_layer.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/shared.po b/source/fi/helpcontent2/source/text/shared.po
index 2d21c5cdc46..8febadefe15 100644
--- a/source/fi/helpcontent2/source/text/shared.po
+++ b/source/fi/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: 2020-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2018-11-14 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1996,6 +1996,132 @@ msgctxt ""
msgid "This help page needs further work for correctness and completion. Please join the LibreOffice project and help us out to write the missing information. Visit our <link href=\"https://documentation.libreoffice.org/en/join-community/update-help-contents\"><emph>web page on writing Help contents</emph></link>."
msgstr ""
+#. fGrZx
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"tit\n"
+"help.text"
+msgid "Spacing"
+msgstr ""
+
+#. yQezt
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id411816022675979\n"
+"help.text"
+msgid "<link href=\"text/shared/submenu_spacing.xhp\">Spacing</link>"
+msgstr ""
+
+#. 22dPh
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id398855439580084\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a submenu where you can choose text spacing commands.</ahelp>"
+msgstr ""
+
+#. 7Sh42
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3154944\n"
+"help.text"
+msgid "Line Spacing: 1"
+msgstr ""
+
+#. xxnjH
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3146969\n"
+"help.text"
+msgid "Line Spacing: 1.5"
+msgstr ""
+
+#. acjb4
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3153711\n"
+"help.text"
+msgid "Line Spacing: 2"
+msgstr ""
+
+#. 44Px9
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3147573\n"
+"help.text"
+msgid "Increase Paragraph Spacing"
+msgstr ""
+
+#. zhqwZ
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id3150695\n"
+"help.text"
+msgid "Increases the paragraph spacing above the selected paragraph."
+msgstr ""
+
+#. XCZUT
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3147574\n"
+"help.text"
+msgid "Decrease Paragraph Spacing"
+msgstr ""
+
+#. EVYri
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id3150696\n"
+"help.text"
+msgid "Decreases the paragraph spacing above the selected paragraph."
+msgstr ""
+
+#. EsHFP
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3147575\n"
+"help.text"
+msgid "Increase Indent"
+msgstr ""
+
+#. BU6i9
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id3150697\n"
+"help.text"
+msgid "Increases the left indent of the current paragraph or cell content and sets it to the next default tab position. If several paragraphs are selected, the indentation of all selected paragraphs is increased."
+msgstr ""
+
+#. YA8bT
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3147576\n"
+"help.text"
+msgid "Decrease Indent"
+msgstr ""
+
+#. zVFFG
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id3150698\n"
+"help.text"
+msgid "Decreases the left indent of the current paragraph or cell content and sets it to the previous default tab position. If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs."
+msgstr ""
+
#. MVHBc
#: submenu_text.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/shared/00.po b/source/fi/helpcontent2/source/text/shared/00.po
index 1e5bfade0a7..15e6aba4191 100644
--- a/source/fi/helpcontent2/source/text/shared/00.po
+++ b/source/fi/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-12 13:06+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/fi/>\n"
@@ -673,6 +673,24 @@ msgctxt ""
msgid "Close the Options dialog and discard all changes done."
msgstr ""
+#. EFDpM
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id321597440555403\n"
+"help.text"
+msgid "Apply"
+msgstr "Käytä"
+
+#. yJtrx
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id51597440622057\n"
+"help.text"
+msgid "Applies the modified or selected values without closing the Options dialog."
+msgstr ""
+
#. BRStA
#: 00000001.xhp
msgctxt ""
@@ -709,13 +727,13 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
msgstr ""
-#. 7Qeri
+#. aj3Pk
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3155577\n"
"help.text"
-msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
+msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, email, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
msgstr ""
#. 3Sv9k
@@ -1231,13 +1249,13 @@ msgctxt ""
msgid "URL"
msgstr ""
-#. CLTAn
+#. 3b3CF
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3152931\n"
"help.text"
-msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address."
+msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an email address."
msgstr ""
#. qAvon
@@ -3355,13 +3373,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 ""
-#. CPvXB
+#. kEb5n
#: 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, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
+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."
msgstr ""
#. XP7i4
@@ -3391,31 +3409,31 @@ msgctxt ""
msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
msgstr "\"Font: 10pt\" kytkee käyttöön 10 pisteen fontin, ilman lihavointia, kursivointia tai KAPITEELIa."
-#. iSvxV
+#. sx5EP
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3155135\n"
"help.text"
-msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
-msgstr "Jos vientivaihtoehdoksi valitaan MS Internet Explorer tai $[officename] Writer, niiden sisäisten marginaalien koko viedään tyylinä (tulostusmuotoilut). CSS1:n koko-ominaisuudet perustuvat \"width\"- ja \"height\"-arvoihin. \"Margin\"-ominaisuutta käytetään tuottamaan sama marginaali kaikille sivun reunoille. Erisuuret marginaalit saadaan käyttämällä \"Margin-Left\"-, \"Margin-Right\"-, \"Margin-Top\"- ja \"Margin-Bottom\"-ominaisuuksia."
+msgid "If $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
+msgstr ""
-#. wiSGK
+#. ujGz3
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
-msgstr "Kuvien ja lisäosien etäisyyttä sisällöstä voidaan asetella yksilöllisesti vietäessä ohjelmiin $[officename] Writer ja MS Internet Explorer. Jos ylä- ja alamarginaali tai oikea ja vasen marginaali ovat aseteltu eri tavoin, etäisyydet viedään vastaavan muotoilukoodin \"STYLE\" -määritteellä kuten CSS1:n koko-ominaisuudet \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" ja \"Margin-Right\"."
+msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
+msgstr ""
-#. xGAve
+#. JxdSw
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3144510\n"
"help.text"
-msgid "Frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Mozilla Firefox, MS Internet Explorer, and $[officename] Writer. Frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
+msgid "Frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Mozilla Firefox and $[officename] Writer. Frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
msgstr ""
#. Vym4j
@@ -3616,13 +3634,13 @@ msgctxt ""
msgid "Importing and Exporting Numbering"
msgstr "Luettelonumerointien tuonti ja vienti"
-#. jfj5X
+#. GFHgr
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3145591\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>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
+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>, the export option \"$[officename] Writer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
msgstr ""
#. ayGUf
@@ -6064,13 +6082,13 @@ msgctxt ""
msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph>.</variable>"
msgstr ""
-#. hM2wE
+#. iYQ6G
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3154812\n"
"help.text"
-msgid "Choose <emph>File - New</emph>."
+msgid "Choose <menuitem>File - New</menuitem>."
msgstr ""
#. 4rLdL
@@ -6100,32 +6118,32 @@ msgctxt ""
msgid "New"
msgstr "Uusi"
-#. ANLEZ
+#. aqshc
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3154894\n"
"help.text"
-msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-msgstr "Paina <switchinline select=\"sys\"><caseinline select=\"MAC\">Komento</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+N</keycode>"
+msgstr ""
-#. 9fNTA
+#. TkkUE
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3157898\n"
"help.text"
-msgid "Menu <emph>File - New - Templates</emph>."
+msgid "Menu <menuitem>File - New - Templates</menuitem>."
msgstr ""
-#. V46qt
+#. x6c5g
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3149140\n"
"help.text"
-msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-msgstr "Paina Vaihto+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komento</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgid "Key <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+N</keycode>"
+msgstr ""
#. chsce
#: 00000401.xhp
@@ -6136,13 +6154,13 @@ msgctxt ""
msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph>.</variable>"
msgstr ""
-#. QjdPv
+#. VEpf3
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3147226\n"
"help.text"
-msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab.</variable>"
+msgid "<variable id=\"etikettenein\">Choose <menuitem>File - New - Labels - Labels</menuitem> tab.</variable>"
msgstr ""
#. aFjHG
@@ -6649,14 +6667,14 @@ msgctxt ""
msgid "Choose <emph>File - Save</emph>."
msgstr ""
-#. yPf68
+#. BiNBE
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3147533\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
-msgstr "Paina <switchinline select=\"sys\"><caseinline select=\"MAC\">Komento</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+S</keycode>"
+msgstr ""
#. 8UBzJ
#: 00000401.xhp
@@ -6802,58 +6820,67 @@ msgctxt ""
msgid "Choose <emph>File - Reload</emph>."
msgstr ""
-#. nQxCe
+#. qdS25
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3166425\n"
"help.text"
-msgid "<variable id=\"info1\">Choose <emph>File - Properties</emph>.</variable>"
+msgid "<variable id=\"info1\">Choose <menuitem>File - Properties</menuitem>.</variable>"
msgstr ""
-#. yBbTG
+#. HCGtN
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3150381\n"
"help.text"
-msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab.</variable>"
+msgid "<variable id=\"info2\">Choose <menuitem>File - Properties - General</menuitem> tab.</variable>"
msgstr ""
-#. 9Dio9
+#. btEP2
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id181526424294565\n"
"help.text"
-msgid "Choose <emph>File - Digital Signatures - Sign Existing PDF</emph>."
+msgid "Choose <menuitem>File - Digital Signatures - Sign Existing PDF</menuitem>."
+msgstr ""
+
+#. BT3B5
+#: 00000401.xhp
+msgctxt ""
+"00000401.xhp\n"
+"par_id971594767600402\n"
+"help.text"
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Security</menuitem> and in <emph>Certificate Path</emph> area click <menuitem>Certificate</menuitem>."
msgstr ""
-#. BDjhC
+#. bjtF6
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_idN11163\n"
"help.text"
-msgid "Choose <emph>File - Digital Signatures - Digital Signatures</emph>."
+msgid "<variable id=\"digitalsigs\">Choose <menuitem>File - Digital Signatures - Digital Signatures</menuitem>.</variable>"
msgstr ""
-#. zZVDg
+#. QA6UC
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_idN11168\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Digital Signature</emph>."
+msgid "Choose <menuitem>Tools - Macros - Digital Signature</menuitem>."
msgstr ""
-#. uLs85
+#. u6Rcy
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_idN11156\n"
"help.text"
-msgid "Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button."
+msgid "Choose <menuitem>File - Properties - General</menuitem> tab, click <emph>Digital Signatures</emph> button."
msgstr ""
#. G3b6A
@@ -6865,76 +6892,76 @@ msgctxt ""
msgid "Double-click or right-click the <emph>Signature</emph> field on the <emph>Status</emph> bar."
msgstr ""
-#. wBuuE
+#. oUEEy
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_idN11173\n"
"help.text"
-msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, press <emph>Digital Signatures</emph> button, then press <emph>Sign Document</emph> button.</variable>"
+msgid "<variable id=\"digitalsigsel\">Choose <menuitem>File - Properties - General</menuitem> tab, press <emph>Digital Signatures</emph> button, then click <emph>Sign Document</emph> button.</variable>"
msgstr ""
-#. VC4bt
+#. EpJQ7
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3150662\n"
"help.text"
-msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab.</variable>"
+msgid "<variable id=\"info3\">Choose <menuitem>File - Properties - Description</menuitem> tab.</variable>"
msgstr ""
-#. 3vtEX
+#. GjKt9
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3153792\n"
"help.text"
-msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab.</variable>"
+msgid "<variable id=\"info4\">Choose <menuitem>File - Properties - Custom Properties</menuitem> tab.</variable>"
msgstr ""
-#. DNuSj
+#. U55Xg
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3153701\n"
"help.text"
-msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab.</variable>"
+msgid "<variable id=\"info5\">Choose <menuitem>File - Properties - Statistics</menuitem> tab.</variable>"
msgstr ""
-#. NQSSJ
+#. zpMha
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id315370199\n"
"help.text"
-msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab.</variable>"
+msgid "<variable id=\"infosec\">Choose <menuitem>File - Properties - Security</menuitem> tab.</variable>"
msgstr ""
-#. Saqnw
+#. pSZak
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3149570\n"
"help.text"
-msgid "<variable id=\"info6\">Choose <emph>File - Properties - CMIS Properties</emph> tab.</variable>"
+msgid "<variable id=\"info6\">Choose <menuitem>File - Properties - CMIS Properties</menuitem> tab.</variable>"
msgstr ""
-#. LyvFc
+#. EdFtp
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3150382\n"
"help.text"
-msgid "<variable id=\"info7\">Choose <emph>File - Properties - Font</emph> tab.</variable>"
+msgid "<variable id=\"info7\">Choose <menuitem>File - Properties - Font</menuitem> tab.</variable>"
msgstr ""
-#. DXLxP
+#. FJjaY
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3154930\n"
"help.text"
-msgid "Menu <emph>File - Print Preview</emph>."
+msgid "Menu <menuitem>File - Print Preview</menuitem>."
msgstr ""
#. PEGNP
@@ -6955,31 +6982,31 @@ msgctxt ""
msgid "Print Preview"
msgstr "Tulostuksen esikatselu"
-#. kndVP
+#. fQAMY
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3163722\n"
"help.text"
-msgid "Choose <emph>File - Printer Settings</emph>."
+msgid "Choose <menuitem>File - Printer Settings</menuitem>."
msgstr ""
-#. 4g6sk
+#. Dpv6i
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3155529\n"
"help.text"
-msgid "<variable id=\"senden\">Menu <emph>File - Send</emph>.</variable>"
+msgid "<variable id=\"senden\">Menu <menuitem>File - Send</menuitem>.</variable>"
msgstr ""
-#. E3vhr
+#. 9pQyS
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3145386\n"
"help.text"
-msgid "Choose <emph>File - Send - Email Document</emph>."
+msgid "Choose <menuitem>File - Send - Email Document</menuitem>."
msgstr ""
#. ZaENF
@@ -6991,14 +7018,14 @@ msgctxt ""
msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icon</alt></image>"
msgstr "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Sähköpostin lähetys -kuvake, jossa kirjekuoresta nuoli oikealle</alt></image>"
-#. 2mB8o
+#. iYxXg
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_idN113C8\n"
"help.text"
-msgid "E-mail Document"
-msgstr "Lähetä asiakirja sähköpostina"
+msgid "Email Document"
+msgstr ""
#. QF5Dw
#: 00000401.xhp
@@ -7117,13 +7144,13 @@ msgctxt ""
msgid "Export Directly as PDF"
msgstr "Vie heti PDF:änä"
-#. 75GDs
+#. NCJGr
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3145410\n"
"help.text"
-msgid "Choose <emph>File - Send - E-mail as PDF</emph>."
+msgid "Choose <emph>File - Send - Email as PDF</emph>."
msgstr ""
#. rZpZc
@@ -7207,23 +7234,23 @@ msgctxt ""
msgid "Print Page Preview"
msgstr "Esikatselu"
-#. njLkF
+#. tWQsB
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3155869\n"
"help.text"
-msgid "Choose <emph>File - Exit</emph>."
+msgid "Choose <menuitem>File - Exit %PRODUCTNAME</menuitem>."
msgstr ""
-#. KtqDj
+#. DjhX3
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3152382\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
-msgstr "Paina <switchinline select=\"sys\"><caseinline select=\"MAC\">Komento</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Q</keycode>"
+msgstr ""
#. DGbyA
#: 00000401.xhp
@@ -7999,14 +8026,14 @@ msgctxt ""
msgid "Basic Shapes"
msgstr "Peruskuviot"
-#. LKQPo
+#. PZB3N
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_idN10EEE\n"
"help.text"
-msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
-msgstr "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Kuvake</alt></image>"
+msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_\">Icon Symbol Shapes</alt></image>"
+msgstr ""
#. raBMx
#: 00000404.xhp
@@ -8638,6 +8665,24 @@ msgctxt ""
msgid "Choose <emph>Tools - AutoText - Path</emph>."
msgstr ""
+#. uSkyB
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3156091\n"
+"help.text"
+msgid "<variable id=\"imagemap\">Choose <menuitem>Tools - ImageMap</menuitem>.</variable>"
+msgstr ""
+
+#. q5E7e
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id3155936\n"
+"help.text"
+msgid "<variable id=\"imagemap_desc\">Choose <menuitem>Tools - ImageMap</menuitem>, then select a section of the ImageMap and click <menuitem>Properties - Description</menuitem>.</variable>"
+msgstr ""
+
#. AMRtZ
#: 00000406.xhp
msgctxt ""
@@ -8908,13 +8953,13 @@ msgctxt ""
msgid "<variable id=\"laden\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph>.</variable>"
msgstr ""
-#. 2Fvii
+#. 8QqgR
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_idN10F2F\n"
"help.text"
-msgid "<variable id=\"mailmergeemail\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Mail Merge E-mail</emph>.</variable>"
+msgid "<variable id=\"mailmergeemail\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Mail Merge Email</emph>.</variable>"
msgstr ""
#. T5u9S
@@ -9772,13 +9817,13 @@ msgctxt ""
msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
msgstr ""
-#. KFCKR
+#. rxcvE
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148998\n"
"help.text"
-msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154894\">Icon Character</alt></image>"
+msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154894\">Icon Character</alt></image>"
msgstr ""
#. AdBzN
@@ -9853,13 +9898,13 @@ msgctxt ""
msgid "Choose <emph>Format - Cells - Font</emph> tab (spreadsheets)."
msgstr ""
-#. VUPNE
+#. EpBDi
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156306\n"
"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)."
+msgid "Menu <menuitem>Format - Page - Header/Footer</menuitem> - <emph>Edit</emph> button (spreadsheets)."
msgstr ""
#. f7aHb
@@ -9988,13 +10033,13 @@ msgctxt ""
msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
msgstr "<emph>Tekstin muotoilu</emph> -palkissa (kohdistin objektissa) napsauta"
-#. Kobha
+#. rQ9Bt
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3155995\n"
"help.text"
-msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150495\">Icon Paragraph</alt></image>"
+msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150495\">Icon Paragraph</alt></image>"
msgstr ""
#. E7XoA
@@ -10159,22 +10204,22 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. NVSGu
+#. 93Zxq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3155915\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab - <emph>Padding</emph>.</caseinline></switchinline>"
+msgid "Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab - <emph>Padding</emph>."
msgstr ""
-#. dCnPy
+#. krmqa
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3159130\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu <emph>Format - Page - Border - Padding</emph>.</caseinline></switchinline>"
+msgid "Menu <emph>Format - Page - Border - Padding</emph>."
msgstr ""
#. PGrMv
@@ -10186,13 +10231,13 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Background</emph> tab."
msgstr ""
-#. S9R9E
+#. kfo3L
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3147330\n"
"help.text"
-msgid "Choose <emph>Format - Character - Background</emph> tab."
+msgid "Choose <emph>Format - Character - Highlighting</emph> tab."
msgstr ""
#. nd9vD
@@ -10339,49 +10384,67 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. Tv5B3
+#. nMbj6
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - open context menu of an entry and choose <menuitem>Modify/New - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>Modify/New - Organizer</menuitem> tab."
msgstr ""
-#. a85dA
+#. eEUQg
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3153357\n"
+"par_id3149323\n"
"help.text"
-msgid "Choose <menuitem>Format - Page - Page</menuitem> tab."
+msgid "Choose <menuitem>Slide - Properties - Slide</menuitem> tab"
msgstr ""
-#. RWWCj
+#. 8xjGD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3149323\n"
+"par_id3154972\n"
"help.text"
-msgid "Choose <menuitem>Slide - Properties - Page</menuitem> tab (in $[officename] Impress)."
+msgid "Choose <menuitem>Page - Properties - Page</menuitem> tab."
msgstr ""
-#. 9mYb4
+#. sZU8Q
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3154972\n"
+"par_id731601602622257\n"
"help.text"
-msgid "Choose <menuitem>Page - Properties - Page</menuitem> tab (in $[officename] Draw)."
+msgid "Choose <menuitem>Format - Page - Page</menuitem> tab."
msgstr ""
-#. Qk9bQ
+#. gMqXo
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154362\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of a page style entry and choose <emph>Modify/New - Page</emph> tab."
+msgstr ""
+
+#. cgX2W
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3153357\n"
+"help.text"
+msgid "Choose <menuitem>Format - Page Style - Page</menuitem> tab."
+msgstr ""
+
+#. GF8Ps
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id31543624680\n"
+"help.text"
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of a page style entry and choose <emph>Modify/New - Page</emph> tab."
msgstr ""
#. w3yEG
@@ -10483,13 +10546,13 @@ msgctxt ""
msgid "On <emph>Formatting</emph> bar, click"
msgstr ""
-#. raTBP
+#. xHqEM
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148533\n"
"help.text"
-msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149568\">Icon Styles</alt></image>"
+msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149568\">Icon Styles</alt></image>"
msgstr ""
#. GGmAC
@@ -10501,13 +10564,13 @@ msgctxt ""
msgid "Styles"
msgstr ""
-#. fVFNF
+#. CBSYY
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3159313\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
+msgid "On the <emph>Drawing</emph> bar, click"
msgstr ""
#. GtJbA
@@ -10609,31 +10672,31 @@ msgctxt ""
msgid "Bullets On/Off"
msgstr "Luettelomerkit käytössä / poissa käytöstä"
-#. EkNbw
+#. XAbBj
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149735\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page."
+msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem>. <switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Customize</emph> tab page.</caseinline></switchinline>"
msgstr ""
-#. ko4it
+#. y4rGF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3150785\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
+msgid "Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>."
msgstr ""
-#. MH7Cp
+#. pC5yB
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148420\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
+msgid "Open <menuitem>Styles - List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Modify</menuitem>."
msgstr ""
#. Mx4EM
@@ -10645,22 +10708,22 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab."
msgstr ""
-#. MEePu
+#. bYrZa
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149917\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
+msgid "Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>."
msgstr ""
-#. DHxR8
+#. ZPMxH
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154930\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
+msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
msgstr ""
#. ZD5up
@@ -10726,13 +10789,22 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
msgstr ""
-#. WCC8T
+#. BQqBM
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3154931\n"
+"help.text"
+msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
+msgstr ""
+
+#. TDV7t
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153812\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>View - Styles</menuitem> (F11) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab.</caseinline></switchinline>"
+msgid "Choose <menuitem>View - Styles</menuitem> (F11) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
msgstr ""
#. gfMdA
@@ -10744,40 +10816,40 @@ msgctxt ""
msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
msgstr ""
-#. QJzFj
+#. t8uTF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153899\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>Styles - Manage Styles</menuitem> - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab.</caseinline></switchinline>"
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
msgstr ""
-#. SZuQU
+#. DEQfE
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>Tools - Chapter Numbering - Position</menuitem> tab.</caseinline></switchinline>"
+msgid "Choose <menuitem>Tools - Chapter Numbering - Position</menuitem> tab."
msgstr ""
-#. agBgR
+#. 8AtZC
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3151332\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Image - Properties - Crop</emph> tab.</caseinline></switchinline>"
+msgid "Menu <emph>Format - Image - Properties - Crop</emph> tab."
msgstr ""
-#. 4o7EQ
+#. eREMF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
+msgid "Icon on the <emph>Image</emph> toolbar:"
msgstr ""
#. YKAFD
@@ -10807,6 +10879,15 @@ msgctxt ""
msgid "Choose <menuitem>Format - Text</menuitem>."
msgstr ""
+#. CHNi9
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3151255\n"
+"help.text"
+msgid "Choose <menuitem>Format - Spacing</menuitem>."
+msgstr ""
+
#. suPn7
#: 00040500.xhp
msgctxt ""
@@ -10915,14 +10996,14 @@ msgctxt ""
msgid "Open <emph>Toolbox</emph> bar in Basic dialog editor, click"
msgstr "Avaa Basicin valintaikkunamuokkaimessa <emph>Työkalulaatikko</emph>-palkki, napsauta"
-#. ZCEGK
+#. JESNd
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3151054\n"
"help.text"
-msgid "<image id=\"img_id3150865\" src=\"cmd/sc_showpropbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150865\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150865\" src=\"cmd/sc_showpropbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150865\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3150865\" src=\"cmd/sc_showpropbrowser.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150865\">Icon Properties</alt></image>"
+msgstr ""
#. 89DTS
#: 00040501.xhp
@@ -10942,14 +11023,14 @@ msgctxt ""
msgid "Open context menu of a selected form element - choose <emph>Form</emph>."
msgstr ""
-#. w3xKU
+#. CMsFE
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3152933\n"
"help.text"
-msgid "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3148676\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3148676\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148676\">Icon Form</alt></image>"
+msgstr ""
#. F5LMe
#: 00040501.xhp
@@ -11041,14 +11122,14 @@ msgctxt ""
msgid "Open context menu of a selected form element - choose <emph>Control</emph>."
msgstr ""
-#. iGEwF
+#. z6tko
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3153953\n"
"help.text"
-msgid "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149064\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149064\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149064\">Icon Control</alt></image>"
+msgstr ""
#. ADmRP
#: 00040501.xhp
@@ -11122,14 +11203,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. 9rRZS
+#. EJCyJ
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3157874\n"
"help.text"
-msgid "<image id=\"img_id3159345\" src=\"cmd/sc_tabdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159345\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159345\" src=\"cmd/sc_tabdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159345\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3159345\" src=\"cmd/sc_tabdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159345\">Icon Activation Order</alt></image>"
+msgstr ""
#. BmMW5
#: 00040501.xhp
@@ -11149,14 +11230,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. BtzB4
+#. pNmAg
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3156439\n"
"help.text"
-msgid "<image id=\"img_id3153530\" src=\"cmd/sc_addfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153530\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153530\" src=\"cmd/sc_addfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153530\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3153530\" src=\"cmd/sc_addfield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153530\">Icon Add Field</alt></image>"
+msgstr ""
#. iQFBK
#: 00040501.xhp
@@ -11176,14 +11257,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. C8Cfx
+#. hgCuD
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3150749\n"
"help.text"
-msgid "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157869\">Icon</alt></image>"
-msgstr "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157869\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157869\">Icon Form Navigator</alt></image>"
+msgstr ""
#. QEjGP
#: 00040501.xhp
@@ -11203,14 +11284,14 @@ msgctxt ""
msgid "On <emph>Form Controls</emph> toolbar or <emph>Form Design</emph> bar, click"
msgstr ""
-#. GGJgP
+#. YgQWC
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3156056\n"
"help.text"
-msgid "<image id=\"img_id3154508\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3154508\" src=\"cmd/sc_testmode.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154508\">Icon Design Mode</alt></image>"
+msgstr ""
#. AATfh
#: 00040501.xhp
@@ -11239,14 +11320,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. wzVK9
+#. iGE3k
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3149822\n"
"help.text"
-msgid "<image id=\"img_id3151189\" src=\"cmd/sc_openreadonly.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151189\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_openreadonly.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151189\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3151189\" src=\"cmd/sc_openreadonly.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151189\">Icon Open in Design Mode</alt></image>"
+msgstr ""
#. UqdMN
#: 00040501.xhp
@@ -11266,14 +11347,14 @@ msgctxt ""
msgid "On <emph>Form Control</emph> toolbar, click"
msgstr ""
-#. 9EbHS
+#. msyNv
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3152948\n"
"help.text"
-msgid "<image id=\"img_id3156375\" src=\"cmd/sc_usewizards.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156375\" src=\"cmd/sc_usewizards.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3156375\" src=\"cmd/sc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156375\">Icon Wizard</alt></image>"
+msgstr ""
#. o64U6
#: 00040501.xhp
@@ -11311,14 +11392,14 @@ msgctxt ""
msgid "Choose <emph>Shape - Arrange</emph> ($[officename] Draw)."
msgstr ""
-#. p4AFF
+#. gqcDq
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3155578\n"
"help.text"
-msgid "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3109842\">Icon</alt></image>"
-msgstr "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3109842\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3109842\">Icon Arrange</alt></image>"
+msgstr ""
#. jwdWP
#: 00040501.xhp
@@ -11365,14 +11446,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Arrange - Bring to Front</emph> ($[officename] Impress)."
msgstr ""
-#. hMKdo
+#. HPFLD
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3151213\n"
"help.text"
-msgid "<image id=\"img_id3145220\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145220\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145220\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145220\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3145220\" src=\"cmd/sc_bringtofront.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145220\">Icon Bring to Front</alt></image>"
+msgstr ""
#. sBuGt
#: 00040501.xhp
@@ -11419,14 +11500,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Arrange - Bring Forward</emph> ($[officename] Impress)."
msgstr ""
-#. hcf4a
+#. TSeCV
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3159121\n"
"help.text"
-msgid "<image id=\"img_id3156142\" src=\"cmd/sc_forward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156142\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156142\" src=\"cmd/sc_forward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156142\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3156142\" src=\"cmd/sc_forward.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156142\">Icon Bring Forward</alt></image>"
+msgstr ""
#. P9V6A
#: 00040501.xhp
@@ -11473,14 +11554,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Arrange - Send Backward</emph> ($[officename] Impress)."
msgstr ""
-#. wCFzs
+#. BQhNe
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3152994\n"
"help.text"
-msgid "<image id=\"img_id3163723\" src=\"cmd/sc_backward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163723\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163723\" src=\"cmd/sc_backward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163723\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3163723\" src=\"cmd/sc_backward.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3163723\">Icon Send Backward</alt></image>"
+msgstr ""
#. WKKNG
#: 00040501.xhp
@@ -11527,14 +11608,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Arrange - Send to Back</emph> ($[officename] Impress)."
msgstr ""
-#. wN6km
+#. A873M
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153813\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153813\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153813\">Icon Send to Back</alt></image>"
+msgstr ""
#. mH2tS
#: 00040501.xhp
@@ -11554,14 +11635,14 @@ msgctxt ""
msgid "Choose <emph>Format - Arrange - To Foreground</emph>."
msgstr ""
-#. niZ3f
+#. G2AjB
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3149408\n"
"help.text"
-msgid "<image id=\"img_id3155129\" src=\"cmd/sc_setobjecttoforeground.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155129\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155129\" src=\"cmd/sc_setobjecttoforeground.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155129\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3155129\" src=\"cmd/sc_setobjecttoforeground.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155129\">Icon To Foreground</alt></image>"
+msgstr ""
#. 4ahEr
#: 00040501.xhp
@@ -11581,14 +11662,14 @@ msgctxt ""
msgid "Choose <emph>Format - Arrange - To Background</emph>."
msgstr ""
-#. kAYhN
+#. FQRn8
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3153815\n"
"help.text"
-msgid "<image id=\"img_id3154954\" src=\"cmd/sc_setobjecttobackground.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154954\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154954\" src=\"cmd/sc_setobjecttobackground.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154954\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3154954\" src=\"cmd/sc_setobjecttobackground.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154954\">Icon To Background</alt></image>"
+msgstr ""
#. rCVpM
#: 00040501.xhp
@@ -11662,14 +11743,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. ANyzk
+#. Po4LF
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3153373\n"
"help.text"
-msgid "<image id=\"img_id3159209\" src=\"cmd/sc_objectalign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159209\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159209\" src=\"cmd/sc_objectalign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159209\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3159209\" src=\"cmd/sc_objectalign.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159209\">Icon Left</alt></image>"
+msgstr ""
#. 3u7D2
#: 00040501.xhp
@@ -11707,14 +11788,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. FqkBw
+#. mbnDh
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3149519\n"
"help.text"
-msgid "<image id=\"img_id3143222\" src=\"cmd/sc_alignmiddle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143222\">Icon</alt></image>"
-msgstr "<image id=\"img_id3143222\" src=\"cmd/sc_alignmiddle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143222\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3143222\" src=\"cmd/sc_alignmiddle.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143222\">Icon Centered</alt></image>"
+msgstr ""
#. fawoM
#: 00040501.xhp
@@ -11752,14 +11833,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. C2eCp
+#. EDVzM
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3155436\n"
"help.text"
-msgid "<image id=\"img_id3153283\" src=\"cmd/sc_objectalignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153283\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153283\" src=\"cmd/sc_objectalignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153283\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3153283\" src=\"cmd/sc_objectalignright.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153283\">Icon Right</alt></image>"
+msgstr ""
#. mF7W6
#: 00040501.xhp
@@ -11806,14 +11887,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. Zx8CA
+#. eYWWR
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3155386\n"
"help.text"
-msgid "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155542\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155542\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155542\">Icon Top</alt></image>"
+msgstr ""
#. WFtRg
#: 00040501.xhp
@@ -11860,14 +11941,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. BBURn
+#. RgieQ
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3145755\n"
"help.text"
-msgid "<image id=\"img_id3146776\" src=\"cmd/sc_aligncenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146776\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146776\" src=\"cmd/sc_aligncenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146776\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3146776\" src=\"cmd/sc_aligncenter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146776\">Icon Centered</alt></image>"
+msgstr ""
#. NYgDY
#: 00040501.xhp
@@ -11905,14 +11986,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. xNAAU
+#. DcDSM
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3154057\n"
"help.text"
-msgid "<image id=\"img_id3147267\" src=\"cmd/sc_aligndown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147267\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147267\" src=\"cmd/sc_aligndown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147267\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3147267\" src=\"cmd/sc_aligndown.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147267\">Icon Bottom</alt></image>"
+msgstr ""
#. rkNkG
#: 00040501.xhp
@@ -11941,14 +12022,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. mExvf
+#. DcsgR
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3151122\n"
"help.text"
-msgid "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145357\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145357\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145357\">Icon Anchor</alt></image>"
+msgstr ""
#. s4iPa
#: 00040501.xhp
@@ -12031,31 +12112,31 @@ msgctxt ""
msgid "Format Menu"
msgstr "Muotoilu-valikko"
-#. EBgra
+#. dPY5J
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146857\n"
"help.text"
-msgid "Choose <emph>Format - Line</emph> (Impress and Draw)."
+msgid "Choose <menuitem>Format - Line</menuitem> (Impress and Draw)."
msgstr ""
-#. GD7zT
+#. yDiGN
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id366527\n"
"help.text"
-msgid "Choose <emph>Format - Text Box and Shape - Line</emph> (Writer)."
+msgid "Choose <menuitem>Format - Text Box and Shape - Line</menuitem> (Writer)."
msgstr ""
-#. opFQF
+#. oRRBE
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3835261\n"
"help.text"
-msgid "Choose <emph>Format - Object - Line</emph> (Calc)."
+msgid "Choose <menuitem>Format - Object - Line</menuitem> (Calc)."
msgstr ""
#. KVd3h
@@ -12067,14 +12148,14 @@ msgctxt ""
msgid "On <emph>Line and Filling</emph> bar, click"
msgstr ""
-#. XkgtK
+#. wRABY
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3148889\n"
"help.text"
-msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Viivakuvake, jossa mustekynän kärki</alt></image>"
+msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150669\">Icon Line</alt></image>"
+msgstr ""
#. acBGp
#: 00040502.xhp
@@ -12085,112 +12166,112 @@ msgctxt ""
msgid "Line"
msgstr "Viiva"
-#. fGXJt
+#. h7mxS
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154285\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph></caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Line</emph> tab."
+msgid "Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem></caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Line - Line</menuitem> tab."
msgstr ""
-#. E5bGr
+#. DYuKv
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147335\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu and choose <menuitem>Modify/New - Line</menuitem> tab (presentation documents)."
msgstr ""
-#. CGjv9
+#. AAT9i
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156023\n"
"help.text"
-msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)."
+msgid "Choose <menuitem>Format - Title - Borders</menuitem> tab (charts)."
msgstr ""
-#. emX6H
+#. knxFR
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153061\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)."
+msgid "Choose <menuitem>Format - Legend - Borders</menuitem> tab (charts)."
msgstr ""
-#. wz4kM
+#. F6966
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155922\n"
"help.text"
-msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)."
+msgid "Choose <menuitem>Format - Axis - Line</menuitem> tab (charts)."
msgstr ""
-#. P6EZT
+#. yFq4k
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147559\n"
"help.text"
-msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)."
+msgid "Choose <menuitem>Format - Grid - Line</menuitem> tab (charts)."
msgstr ""
-#. NiUXL
+#. nNAkS
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154758\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)."
+msgid "Choose <menuitem>Format - Chart Wall - Borders</menuitem> tab (charts)."
msgstr ""
-#. MFyeh
+#. Aedak
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153960\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)."
+msgid "Choose <menuitem>Format - Chart Floor - Borders</menuitem> tab (charts)."
msgstr ""
-#. BPSMn
+#. Ujfzj
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154939\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Borders</emph> tab (charts)."
+msgid "Choose <menuitem>Format - Chart Area - Borders</menuitem> tab (charts)."
msgstr ""
-#. QFQbV
+#. r2Bvs
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab.</variable>"
+msgid "<variable id=\"linienstile\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Line - Line Styles</menuitem> tab.</variable>"
msgstr ""
-#. wpcTd
+#. PgQAh
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab.</variable>"
+msgid "<variable id=\"linienenden\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Line - Arrow Styles</menuitem> tab.</variable>"
msgstr ""
-#. v7ZFw
+#. 9zBMS
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156082\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area</emph>."
+msgid "Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Area</menuitem>."
msgstr ""
#. EAChU
@@ -12202,14 +12283,14 @@ msgctxt ""
msgid "On <emph>Line and Filling</emph> bar, click"
msgstr ""
-#. eeYjd
+#. HBmFB
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156424\n"
"help.text"
-msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Aluekuvake, jossa maalikannu</alt></image>"
+msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150868\">Icon Area</alt></image>"
+msgstr ""
#. tdHtP
#: 00040502.xhp
@@ -12220,22 +12301,22 @@ msgctxt ""
msgid "Area"
msgstr "Alue"
-#. dXFUA
+#. 324Fr
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3145607\n"
+"par_id511592159765396\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> - choose <switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraph, Frame or Page</caseinline></switchinline> style - open context menu - choose <menuitem>Modify/New - </menuitem><switchinline select=\"appl\"><caseinline select=\"CALC\"><menuitem>Background</menuitem></caseinline><defaultinline><menuitem>Area</menuitem></defaultinline></switchinline> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Paragraph, Frame or Page style - open context menu - choose <menuitem>Modify/New - Area</menuitem> tab."
msgstr ""
-#. TGDHe
+#. sV6fD
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id841527083135387\n"
"help.text"
-msgid "Choose <menuitem>Table - Properties - Background</menuitem> tab."
+msgid "Choose <menuitem>Table - Properties - Background</menuitem> tab. Select the table object - Cell, Row or Table - which background area is to be filled."
msgstr ""
#. DhLwG
@@ -12247,13 +12328,31 @@ msgctxt ""
msgid "Choose <menuitem>Format - Page Style - Area</menuitem> tab."
msgstr ""
-#. hu68D
+#. GQb6M
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3149664\n"
+"par_id901592158395353\n"
+"help.text"
+msgid "Choose <menuitem>Format - Text Box and Shape - Area - Area</menuitem>"
+msgstr ""
+
+#. vAmBH
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id1001592157774069\n"
"help.text"
-msgid "Choose <menuitem>Slide - Properties - Background</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Cell or Page style - open context menu - choose <menuitem>Modify/New - Background</menuitem> tab."
+msgstr ""
+
+#. LzEQU
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id771592156369992\n"
+"help.text"
+msgid "Choose <menuitem>Format - Page - Background</menuitem> tab"
msgstr ""
#. NP4xZ
@@ -12265,6 +12364,69 @@ msgctxt ""
msgid "Choose <menuitem>Format - Cells - Background</menuitem> tab"
msgstr ""
+#. LVAwN
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id881592158156157\n"
+"help.text"
+msgid "Choose <menuitem>Format - Object - Area - Area</menuitem> tab."
+msgstr ""
+
+#. uQS9p
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id951592158682096\n"
+"help.text"
+msgid "Choose <menuitem>Format - Style - Edit Style - Area</menuitem> tab"
+msgstr ""
+
+#. vKEWq
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id11592158856626\n"
+"help.text"
+msgid "Choose <menuitem>Slide - Properties - Background</menuitem> tab"
+msgstr ""
+
+#. Hb7gT
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id891592159117695\n"
+"help.text"
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), choose Drawing or Presentation style - open context menu - choose <menuitem>Modify/New - Area</menuitem> tab."
+msgstr ""
+
+#. 8f2xv
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id741592159264211\n"
+"help.text"
+msgid "Choose <menuitem>Format - Object and Shape - Area - Area</menuitem> tab"
+msgstr ""
+
+#. GN2Rd
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id271592159552714\n"
+"help.text"
+msgid "Choose <menuitem>Format - Style - Edit Style - Area</menuitem> tab"
+msgstr ""
+
+#. LcgxB
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id161592159449638\n"
+"help.text"
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), choose Drawing style - open context menu - choose <menuitem>Modify/New - Area</menuitem> tab."
+msgstr ""
+
#. 8Ac8B
#: 00040502.xhp
msgctxt ""
@@ -12274,211 +12436,238 @@ msgctxt ""
msgid "Choose <menuitem>Page - Properties - Background</menuitem> tab."
msgstr ""
-#. BNF8c
+#. DkwpP
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3154948\n"
+"par_id471592158481451\n"
"help.text"
-msgid "Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Object and Shape - </menuitem></caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgid "Choose <menuitem>Format - Area - Area</menuitem> tab"
msgstr ""
-#. CQaYm
+#. 8CDNt
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <menuitem>Format - Title - Area</menuitem> tab (chart documents)."
+msgid "Choose <menuitem>Format - Title - Area</menuitem> tab."
msgstr ""
-#. dCqeB
+#. TRyTB
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <menuitem>Format - Legend - Area</menuitem> tab (chart documents)."
+msgid "Choose <menuitem>Format - Legend - Area</menuitem> tab."
msgstr ""
-#. KcL9w
+#. A6CBn
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <menuitem>Format - Chart Wall - Area</menuitem> tab (chart documents)."
+msgid "Choose <menuitem>Format - Chart Wall - Area</menuitem> tab."
msgstr ""
-#. ijD7Y
+#. jFmfH
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <menuitem>Format - Chart Floor - Area</menuitem> tab (chart documents)."
+msgid "Choose <menuitem>Format - Chart Floor - Area</menuitem>."
msgstr ""
-#. Zuv4t
+#. Pz9P5
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <menuitem>Format - Chart Area - Area</menuitem> tab (chart documents)."
+msgid "Choose <menuitem>Format - Chart Area - Area</menuitem>."
msgstr ""
-#. MBrCE
+#. 9F87x
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id901592160809757\n"
+"help.text"
+msgid "When editing a form:"
+msgstr ""
+
+#. oABmb
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id201592161190323\n"
+"help.text"
+msgid "When editing a report:"
+msgstr ""
+
+#. VBYSN
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id591592161180508\n"
+"help.text"
+msgid "Choose <menuitem>Format - Page - Background</menuitem> tab."
+msgstr ""
+
+#. Y8S4k
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154985\n"
"help.text"
-msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)."
+msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (drawing documents)."
msgstr ""
-#. AgjKh
+#. ABvKj
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145365\n"
"help.text"
-msgid "Choose <emph>Format - Area - Transparency</emph> tab (presentation documents)."
+msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (presentation documents)."
msgstr ""
-#. XoSaF
+#. KXq32
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151117\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)."
+msgid "Choose <menuitem>Format - Chart Wall - Transparency</menuitem> tab (chart documents)."
msgstr ""
-#. aSAEM
+#. T7mFT
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147326\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)."
+msgid "Choose <menuitem>Format - Chart Area - Transparency</menuitem> tab (chart documents)."
msgstr ""
-#. YAJEU
+#. NADFJ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154920\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)."
+msgid "Choose <menuitem>Format - Chart Floor - Transparency</menuitem> tab (chart documents)."
msgstr ""
-#. fcfS8
+#. G8nHA
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145591\n"
"help.text"
-msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)."
+msgid "Choose <menuitem>Format - Title - All Titles - Transparency</menuitem> tab (chart documents)."
msgstr ""
-#. HF8ZD
+#. a8e56
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145750\n"
"help.text"
-msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)."
+msgid "Choose <menuitem>Format - Title - Main Title - Transparency </menuitem>tab (chart documents)."
msgstr ""
-#. X5BtP
+#. emJAB
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3148556\n"
"help.text"
-msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)."
+msgid "Choose <menuitem>Format - Title - Subtitle - Transparency</menuitem> tab (chart documents)."
msgstr ""
-#. GcWxD
+#. HJA39
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (X Axis) - Transparency</emph> tab (chart documents)."
+msgid "Choose <menuitem>Format - Title - Title (X Axis) - Transparency</menuitem> tab (chart documents)."
msgstr ""
-#. 72W76
+#. tcLoj
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150487\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (Y Axis) - Transparency</emph> tab (chart documents)."
+msgid "Choose <menuitem>Format - Title - Title (Y Axis) - Transparency</menuitem> tab (chart documents)."
msgstr ""
-#. bbiVt
+#. Eurkn
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154320\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (Z Axis) - Transparency</emph> tab (chart documents)"
-msgstr "Valitse <emph>Muotoilu - Otsikko - Z-akselin otsikko - Läpinäkyvyys</emph>-välilehti (kaaviot)"
+msgid "Choose <menuitem>Format - Title - Title (Z Axis) - Transparency</menuitem> tab (chart documents)"
+msgstr ""
-#. ytfAu
+#. Z3NRm
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151113\n"
"help.text"
-msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)."
+msgid "Choose <menuitem>Format - Object Properties - Data Point - Transparency</menuitem> - tab (chart documents)."
msgstr ""
-#. LnEDG
+#. ageEB
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149266\n"
"help.text"
-msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)."
+msgid "Choose <menuitem>Format - Object Properties - Data Series - Transparency</menuitem> tab (chart documents)."
msgstr ""
-#. pwXzp
+#. KrDZ5
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147189\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Transparency</emph> tab."
+msgid "Choose <menuitem>Format - Paragraph - Transparency</menuitem> tab."
msgstr ""
-#. GBRys
+#. YAhWh
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144352\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Transparency</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>Modify/New - Transparency</menuitem> tab."
msgstr ""
-#. JHYnk
+#. poxAS
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab.</variable>"
+msgid "<variable id=\"schatte\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Area - Shadow</menuitem> tab.</variable>"
msgstr ""
-#. Ua396
+#. GKhM7
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab.</variable>"
+msgid "<variable id=\"verlauf\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Area - Gradients</menuitem> tab.</variable>"
msgstr ""
#. Vez5y
@@ -12499,68 +12688,68 @@ msgctxt ""
msgid "<variable id=\"page_hatch\"> <switchinline select=\"appl\"> <caseinline select=\"WRITER\">Choose <menuitem>Format - Page Style - Area</menuitem></caseinline> <caseinline select=\"DRAW\">Choose <menuitem>Page - Properties - Background</menuitem></caseinline> <caseinline select=\"IMPRESS\">Choose <menuitem>Slide - Properties - Background</menuitem></caseinline> </switchinline> <emph> - Hatch</emph> tab. </variable>"
msgstr ""
-#. J5DJs
+#. cGik7
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab.</variable>"
+msgid "<variable id=\"bitmap\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Area - Bitmaps</menuitem> tab.</variable>"
msgstr ""
-#. GkPGG
+#. VRoLs
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145251\n"
"help.text"
-msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text - </emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline>.</variable>"
+msgid "<variable id=\"formattext\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - Text Attributes</menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - Text - </menuitem></caseinline><defaultinline><menuitem>Text</menuitem></defaultinline></switchinline>.</variable>"
msgstr ""
-#. vAF3U
+#. gXjCD
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152810\n"
"help.text"
-msgid "<variable id=\"text\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - Text Attributes</menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Object and Shape</menuitem></caseinline><defaultinline><menuitem>Text</menuitem></defaultinline></switchinline><emph> - Text</emph> tab.</variable>"
+msgid "<variable id=\"text\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - Text Attributes</menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Object and Shape</menuitem></caseinline><defaultinline><menuitem>Text</menuitem></defaultinline></switchinline><menuitem> - Text</menuitem> tab.</variable>"
msgstr ""
-#. D7D2C
+#. oZMeq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151060\n"
"help.text"
-msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab.</variable>"
+msgid "<variable id=\"laufext\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - Text Attributes </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - Text</menuitem></caseinline><defaultinline><menuitem>Text</menuitem></defaultinline></switchinline><menuitem> - Text Animation</menuitem> tab.</variable>"
msgstr ""
-#. rArNQ
+#. FNvDY
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149911\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size</emph>."
+msgid "Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Position and Size</menuitem>."
msgstr ""
-#. NFaPH
+#. tEB7C
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>F4</emph> key</caseinline><caseinline select=\"IMPRESS\"><emph>F4</emph> key</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><keycode>F4</keycode> key</caseinline><caseinline select=\"IMPRESS\"><keycode>F4</keycode> key</caseinline></switchinline>"
msgstr ""
-#. WyEg2
+#. fevBK
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153052\n"
"help.text"
-msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150965\">Icon Position and Size</alt></image>"
+msgstr ""
#. yL3FJ
#: 00040502.xhp
@@ -12571,50 +12760,95 @@ msgctxt ""
msgid "Position and Size"
msgstr "Sijainti ja koko"
-#. wuEY4
+#. VwBTn
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3148833\n"
"help.text"
-msgid "Open the context menu for the object - choose <emph>Name</emph>."
+msgid "Open the context menu for the object - choose <menuitem>Name</menuitem>."
msgstr ""
-#. EC9Zk
+#. xBha8
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id411999\n"
"help.text"
-msgid "Open the context menu for the object - choose <emph>Description</emph>."
+msgid "Open the context menu for the object - choose <menuitem>Description</menuitem>."
+msgstr ""
+
+#. Bhmkm
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id921602059453828\n"
+"help.text"
+msgid "Click on textbox or shape to select, then..."
msgstr ""
-#. ayEnF
+#. 8aZmk
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab.</variable>"
+msgid "<variable id=\"position2\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"> <caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem></caseinline> <caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline> <caseinline select=\"IMPRESS\"><menuitem>Object and Shape - </menuitem> </caseinline></switchinline> <menuitem>Position and Size - Position and Size</menuitem> tab.</variable>"
+msgstr ""
+
+#. etEap
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id361602065556003\n"
+"help.text"
+msgid "Open context menu for selected object - choose <menuitem>Position and Size</menuitem> - <emph>Position and Size</emph> tab."
+msgstr ""
+
+#. FTEHw
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id371602337542349\n"
+"help.text"
+msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150965\">Icon Position and Size</alt></image>"
+msgstr ""
+
+#. 38DDB
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841602337832667\n"
+"help.text"
+msgid "Position and Size menu icon"
+msgstr ""
+
+#. rjLHN
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id971602065138382\n"
+"help.text"
+msgid "Press <keycode>F4</keycode> after selection to open the tab directly."
msgstr ""
-#. kALDW
+#. qaXaJ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152973\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab."
+msgid "Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Position and Size - Rotation</menuitem> tab."
msgstr ""
-#. ENbvX
+#. BESGV
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3148495\n"
"help.text"
-msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Kiertokuvake, jossa alakaarinuoli vastapäivään</alt></image>"
+msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146898\">Icon Rotate</alt></image>"
+msgstr ""
#. raRWH
#: 00040502.xhp
@@ -12625,59 +12859,59 @@ msgctxt ""
msgid "Rotate"
msgstr "Kierrä"
-#. ScNrs
+#. DSAJV
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab.</variable>"
+msgid "<variable id=\"ecke\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Position and Size - Slant & Corner Radius</menuitem> tab.</variable>"
msgstr ""
-#. iGtYd
+#. he3t3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab. This is only available for textbox callouts, not for custom shapes callouts.</variable>"
+msgid "<variable id=\"legende\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Position and Size - Callout</menuitem> tab. This is only available for textbox callouts, not for custom shapes callouts.</variable>"
msgstr ""
-#. 7fLz8
+#. CgG8j
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3083283\n"
"help.text"
-msgid "Choose <emph>Edit - Points</emph>."
+msgid "Choose <menuitem>Edit - Points</menuitem>."
msgstr ""
-#. MAE5C
+#. pzsDV
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145642\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph>. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <menuitem>Edit Points</menuitem>. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <menuitem>Edit Points</menuitem>.</caseinline></switchinline>"
msgstr ""
-#. U2ZEM
+#. SAxEg
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>F8</emph> key</caseinline><caseinline select=\"IMPRESS\"><emph>F8</emph> key</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><keycode>F8</keycode> key</caseinline><caseinline select=\"IMPRESS\"><keycode>F8</keycode> key</caseinline></switchinline>"
msgstr ""
-#. oqKG2
+#. m9Ntk
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150044\n"
"help.text"
-msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Kuvake, jossa yhdistettyjen pisteiden kehä</alt></image>"
+msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147100\">Icon Edit Points</alt></image>"
+msgstr ""
#. AMJ2m
#: 00040502.xhp
@@ -12688,59 +12922,59 @@ msgctxt ""
msgid "Edit Points"
msgstr "Muokkaa pisteitä"
-#. AXPr6
+#. HcdJF
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151248\n"
"help.text"
-msgid "Choose <emph>Format - Character</emph> (drawing functions)."
+msgid "Choose <menuitem>Format - Character</menuitem> (drawing functions)."
msgstr ""
-#. ZaGmi
+#. fitoG
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145229\n"
"help.text"
-msgid "Open context menu - choose <emph>Character</emph>."
+msgid "Open context menu - choose <menuitem>Character</menuitem>."
msgstr ""
-#. FRcWg
+#. wSA5e
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151342\n"
"help.text"
-msgid "Open context menu - choose <emph>Size</emph>."
+msgid "Open context menu - choose <menuitem>Size</menuitem>."
msgstr ""
-#. csc8R
+#. FNawj
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149255\n"
"help.text"
-msgid "Open context menu - choose <emph>Style</emph>."
+msgid "Open context menu - choose <menuitem>Style</menuitem>."
msgstr ""
-#. BEvtS
+#. C4ZrM
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155177\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Bold</emph>."
+msgid "Open context menu - choose <menuitem>Style - Bold</menuitem>."
msgstr ""
-#. G36Eg
+#. Ue6Ng
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145766\n"
"help.text"
-msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Lihavointikuvake, jossa paksu B</alt></image>"
+msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.svg\" width=\"1cm\" height=\"1cm\" localize=\"true\"><alt id=\"alt_id3156558\">Icon Bold</alt></image>"
+msgstr ""
#. pQRTJ
#: 00040502.xhp
@@ -12751,23 +12985,23 @@ msgctxt ""
msgid "Bold"
msgstr "Lihavointi"
-#. YPFYs
+#. kJVd4
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151276\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Italic</emph>."
+msgid "Open context menu - choose <menuitem>Style - Italic</menuitem>."
msgstr ""
-#. AJBGa
+#. D9EAq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3159091\n"
"help.text"
-msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Kursivointikuvake, jossa kallistettu I</alt></image>"
+msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.svg\" width=\"1cm\" height=\"1cm\" localize=\"true\"><alt id=\"alt_id3155578\">Icon Italic</alt></image>"
+msgstr ""
#. cggpG
#: 00040502.xhp
@@ -12787,14 +13021,14 @@ msgctxt ""
msgid "Open the menu <menuitem>Format - Text</menuitem> and choose <menuitem>Single Underline</menuitem> or <menuitem>Double Underline</menuitem>."
msgstr ""
-#. ibTke
+#. x8omF
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145223\n"
"help.text"
-msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Alleviivauskuvake, jossa U ja viiva alla</alt></image>"
+msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.svg\" width=\"1cm\" height=\"1cm\" localize=\"true\"><alt id=\"alt_id3151068\">Icon Underline</alt></image>"
+msgstr ""
#. Bfqx8
#: 00040502.xhp
@@ -12805,113 +13039,113 @@ msgctxt ""
msgid "Underline"
msgstr "Alleviivaus"
-#. ZKnpY
+#. cX2yE
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145131\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Strikethrough</emph>."
+msgid "Open context menu - choose <menuitem>Style - Strikethrough</menuitem>."
msgstr ""
-#. e7TJW
+#. GUjSt
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3158214\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Shadow</emph>."
+msgid "Open context menu - choose <menuitem>Style - Shadow</menuitem>."
msgstr ""
-#. DXtLv
+#. 6q5PX
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150207\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Contour</emph>."
+msgid "Open context menu - choose <menuitem>Style - Contour</menuitem>."
msgstr ""
-#. HNgQB
+#. CaimB
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154383\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Superscript</emph>."
+msgid "Open context menu - choose <menuitem>Style - Superscript</menuitem>."
msgstr ""
-#. 6CmM8
+#. FrAHo
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152767\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Subscript</emph>."
+msgid "Open context menu - choose <menuitem>Style - Subscript</menuitem>."
msgstr ""
-#. 4Etzw
+#. ATNzQ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155377\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing</emph>."
+msgid "Open context menu - choose <menuitem>Line Spacing</menuitem>."
msgstr ""
-#. 96Roc
+#. zWwjF
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154475\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - Single</emph>."
+msgid "Open context menu - choose <menuitem>Line Spacing - Single</menuitem>."
msgstr ""
-#. tJ7wn
+#. GdBSL
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150478\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>."
+msgid "Open context menu - choose <menuitem>Line Spacing - 1.5 Lines</menuitem>."
msgstr ""
-#. 2AThZ
+#. pNDFU
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147167\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - Double</emph>."
+msgid "Open context menu - choose <menuitem>Line Spacing - Double</menuitem>."
msgstr ""
-#. sDSCG
+#. 4TwEA
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146978\n"
"help.text"
-msgid "Choose <emph>Format - Align - Left</emph> (drawing functions)."
+msgid "Choose <menuitem>Format - Align - Left</menuitem> (drawing functions)."
msgstr ""
-#. Si7HZ
+#. reirq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153009\n"
"help.text"
-msgid "Open context menu - choose <emph>Align - Left</emph>."
+msgid "Open context menu - choose <menuitem>Align - Left</menuitem>."
msgstr ""
-#. TyqyJ
+#. hUH97
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147310\n"
"help.text"
-msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Tasauskuvake, jossa rivit vasemmalta tasan</alt></image>"
+msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155370\">Icon Align Left</alt></image>"
+msgstr ""
#. okQkj
#: 00040502.xhp
@@ -12922,32 +13156,32 @@ msgctxt ""
msgid "Align Left"
msgstr "Tasaus vasemmalle"
-#. FBdBL
+#. 4wBza
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155823\n"
"help.text"
-msgid "Choose <emph>Format - Align - Right</emph> (drawing functions)."
+msgid "Choose <menuitem>Format - Align - Right</menuitem> (drawing functions)."
msgstr ""
-#. 9Dnyv
+#. 2MorN
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155762\n"
"help.text"
-msgid "Open context menu - choose <emph>Align - Right</emph>."
+msgid "Open context menu - choose <menuitem>Align - Right</menuitem>."
msgstr ""
-#. NmexZ
+#. jddUQ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149408\n"
"help.text"
-msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Tasauskuvake, jossa rivit oikealta tasan</alt></image>"
+msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154421\">Icon Align Right</alt></image>"
+msgstr ""
#. XnJxD
#: 00040502.xhp
@@ -12958,32 +13192,32 @@ msgctxt ""
msgid "Align Right"
msgstr "Tasaus oikealle"
-#. yrLtq
+#. ZvaaQ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149189\n"
"help.text"
-msgid "Choose <emph>Format - Align - Centered</emph> (drawing functions)."
+msgid "Choose <menuitem>Format - Align - Centered</menuitem> (drawing functions)."
msgstr ""
-#. gqMJr
+#. YutM3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154624\n"
"help.text"
-msgid "Open context menu - choose <emph>Align - Center</emph>."
+msgid "Open context menu - choose <menuitem>Align - Center</menuitem>."
msgstr ""
-#. 7PVck
+#. kZk7u
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153815\n"
"help.text"
-msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Tasauskuvake, jossa rivit keskitetty</alt></image>"
+msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149757\">Icon Centered</alt></image>"
+msgstr ""
#. CQD3j
#: 00040502.xhp
@@ -12994,32 +13228,32 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
-#. QXsim
+#. FiPMC
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146151\n"
"help.text"
-msgid "Choose <emph>Format - Align - Justified</emph> (drawing functions)."
+msgid "Choose <menuitem>Format - Align - Justified</menuitem> (drawing functions)."
msgstr ""
-#. wVGGW
+#. Mj8VD
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3168612\n"
"help.text"
-msgid "Open context menu - choose <emph>Align - Justified</emph>."
+msgid "Open context menu - choose <menuitem>Align - Justified</menuitem>."
msgstr ""
-#. WQNsi
+#. jfsgi
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156189\n"
"help.text"
-msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Tasauskuvake, jossa rivit tasan molemmista päistään</alt></image>"
+msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145308\">Icon Justified</alt></image>"
+msgstr ""
#. YBkwj
#: 00040502.xhp
@@ -13039,59 +13273,59 @@ msgctxt ""
msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar.</variable>"
msgstr ""
-#. TGA3G
+#. EMj96
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144503\n"
"help.text"
-msgid "Choose <emph>Format - Group</emph>."
+msgid "Choose <menuitem>Format - Group</menuitem>."
msgstr ""
-#. 8zJTz
+#. YJ3t9
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154854\n"
"help.text"
-msgid "Open context menu - choose <emph>Group</emph>."
+msgid "Open context menu - choose <menuitem>Group</menuitem>."
msgstr ""
-#. 62oK7
+#. 3AJkC
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157985\n"
"help.text"
-msgid "Choose <emph>Format - Group - Group</emph> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Format - Group - Group</menuitem> (text documents, spreadsheets)."
msgstr ""
-#. jEUkS
+#. bdCDb
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157980\n"
"help.text"
-msgid "Choose <emph>Shape - Group - Group</emph> (drawing documents)."
+msgid "Choose <menuitem>Shape - Group - Group</menuitem> (drawing documents)."
msgstr ""
-#. HA8Pg
+#. RvPBU
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149508\n"
"help.text"
-msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)."
+msgid "Open context menu - choose <menuitem>Group - Group</menuitem> (form objects)."
msgstr ""
-#. ezVbQ
+#. ibZAV
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146858\n"
"help.text"
-msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Ryhmittelykuvake, jossa katkoviivakehystetyt kuviot</alt></image>"
+msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon Group</alt></image>"
+msgstr ""
#. DVEkd
#: 00040502.xhp
@@ -13102,41 +13336,41 @@ msgctxt ""
msgid "Group"
msgstr "Ryhmittele"
-#. 4eaR4
+#. GuQA3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153023\n"
"help.text"
-msgid "Choose <emph>Format - Group - Ungroup</emph> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Format - Group - Ungroup</menuitem> (text documents, spreadsheets)."
msgstr ""
-#. KGonz
+#. WFDj3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3163378\n"
"help.text"
-msgid "Choose <emph>Shape - Group - Ungroup</emph> (drawing documents)."
+msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem> (drawing documents)."
msgstr ""
-#. GvD2N
+#. 9k3ef
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156038\n"
"help.text"
-msgid "Open context menu - choose <emph>Ungroup</emph>."
+msgid "Open context menu - choose <menuitem>Ungroup</menuitem>."
msgstr ""
-#. PgcjD
+#. zcmBV
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151300\n"
"help.text"
-msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Ryhmittelykuvake, jossa punaisella katkoviivalla kehystetyt kuviot</alt></image>"
+msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150831\">Icon Ungroup</alt></image>"
+msgstr ""
#. DGWSV
#: 00040502.xhp
@@ -13147,41 +13381,41 @@ msgctxt ""
msgid "Ungroup"
msgstr "Pura ryhmitys"
-#. jZaMo
+#. cdsaS
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153109\n"
"help.text"
-msgid "Choose <emph>Format - Group - Exit Group</emph> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Format - Group - Exit Group</menuitem> (text documents, spreadsheets)."
msgstr ""
-#. tg4GL
+#. P2Xae
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145678\n"
"help.text"
-msgid "Choose <emph>Shape - Group - Exit Group</emph> (drawing documents)."
+msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem> (drawing documents)."
msgstr ""
-#. QSHwt
+#. Bszjv
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152367\n"
"help.text"
-msgid "Open context menu - choose <emph>Exit Group</emph>."
+msgid "Open context menu - choose <menuitem>Exit Group</menuitem>."
msgstr ""
-#. 55jie
+#. BBvnq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3158402\n"
"help.text"
-msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Ryhmittelykuvake, jossa nuoli ulos kuvioiden kehyksestä</alt></image>"
+msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149422\">Icon Exit Group</alt></image>"
+msgstr ""
#. ndpeo
#: 00040502.xhp
@@ -13192,41 +13426,41 @@ msgctxt ""
msgid "Exit Group"
msgstr "Poistu ryhmästä"
-#. F4osV
+#. Cx3Zj
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149129\n"
"help.text"
-msgid "Choose <emph>Format - Group - Enter Group</emph> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Format - Group - Enter Group</menuitem> (text documents, spreadsheets)."
msgstr ""
-#. EuhKC
+#. hn7Hv
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145354\n"
"help.text"
-msgid "Choose <emph>Shape - Group - Enter Group</emph> (drawing documents)."
+msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem> (drawing documents)."
msgstr ""
-#. LENMB
+#. 4rTmw
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149946\n"
"help.text"
-msgid "Open context menu - choose <emph>Enter Group</emph>."
+msgid "Open context menu - choose <menuitem>Enter Group</menuitem>."
msgstr ""
-#. kvzhG
+#. oDBK3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152388\n"
"help.text"
-msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Ryhmittelykuvake, jossa nuoli kehystettyihin kuvioihin</alt></image>"
+msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149900\">Icon Enter Group</alt></image>"
+msgstr ""
#. yXmKi
#: 00040502.xhp
@@ -13480,22 +13714,31 @@ msgctxt ""
msgid "Right-click a selected object - choose <emph>Flip - Horizontally</emph> ($[officename] Impress)."
msgstr ""
-#. 3LBoK
+#. yZ2Pt
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id271601643965354\n"
+"help.text"
+msgid "Select three or more objects and"
+msgstr ""
+
+#. Dvy8S
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
"par_id3147318\n"
"help.text"
-msgid "Choose <emph>Shape - Distribution</emph> ($[officename] Draw)."
+msgid "Choose <menuitem>Shape - Distribute Selection</menuitem> ($[officename] Draw)."
msgstr ""
-#. iAAAo
+#. GfMJu
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
"par_id3149064\n"
"help.text"
-msgid "Open context menu - choose <emph>Distribution</emph> ($[officename] Impress)."
+msgid "Open context menu - choose <menuitem>Distribute Selection</menuitem> ($[officename] Impress)."
msgstr ""
#. q4uTc
@@ -13831,22 +14074,22 @@ msgctxt ""
msgid "Edit Menu"
msgstr ""
-#. LTGgo
+#. 9zEzn
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3085157\n"
"help.text"
-msgid "Choose <emph>Edit - Undo</emph>."
+msgid "Choose <menuitem>Edit - Undo</menuitem>."
msgstr ""
-#. 7JARX
+#. AA56D
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3145160\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Z</keycode>"
msgstr ""
#. LW82F
@@ -13858,13 +14101,13 @@ msgctxt ""
msgid "On the <emph>Standard</emph> bar or <emph>Table Data</emph> bar, click"
msgstr ""
-#. WZewE
+#. EZEUn
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3155449\n"
"help.text"
-msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
+msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155577\">Icon</alt></image>"
msgstr ""
#. QzA62
@@ -13876,13 +14119,13 @@ msgctxt ""
msgid "Undo"
msgstr ""
-#. LNi3D
+#. CRhMd
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "Choose <emph>Edit - Redo</emph>."
+msgid "Choose <menuitem>Edit - Redo</menuitem>."
msgstr ""
#. VgWZG
@@ -13894,13 +14137,13 @@ msgctxt ""
msgid "On the <emph>Standard</emph> bar, click"
msgstr ""
-#. HGqAc
+#. GpeZx
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154938\n"
"help.text"
-msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
+msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150358\">Icon</alt></image>"
msgstr ""
#. F99gF
@@ -13912,31 +14155,31 @@ msgctxt ""
msgid "Redo"
msgstr ""
-#. yt7GK
+#. VqzCC
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154365\n"
"help.text"
-msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph>.</variable>"
+msgid "<variable id=\"letzter\">Choose <menuitem>Edit - Repeat</menuitem>.</variable>"
msgstr ""
-#. Jx4pN
+#. DyHWB
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149765\n"
"help.text"
-msgid "Choose <emph>Edit - Cut</emph>."
+msgid "Choose <menuitem>Edit - Cut</menuitem>."
msgstr ""
-#. xHH38
+#. siZcT
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3144762\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+X</keycode>"
msgstr ""
#. YEYM4
@@ -13948,13 +14191,13 @@ msgctxt ""
msgid "On the <emph>Standard</emph> bar, click"
msgstr ""
-#. rLi5W
+#. zH2jz
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3145173\n"
"help.text"
-msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
+msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145744\">Icon</alt></image>"
msgstr ""
#. b2BCg
@@ -13966,22 +14209,22 @@ msgctxt ""
msgid "Cut"
msgstr ""
-#. Z8QDn
+#. 75bkj
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3150742\n"
"help.text"
-msgid "Choose <emph>Edit - Copy</emph>."
+msgid "Choose <menuitem>Edit - Copy</menuitem>."
msgstr ""
-#. MaAhm
+#. dqu5U
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148923\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+C</keycode>"
msgstr ""
#. ENXCh
@@ -13993,13 +14236,13 @@ msgctxt ""
msgid "On the <emph>Standard</emph> bar, click"
msgstr ""
-#. AHgpb
+#. GNpF7
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154985\n"
"help.text"
-msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156441\">Icon</alt></image>"
msgstr ""
#. Ezjwz
@@ -14011,22 +14254,22 @@ msgctxt ""
msgid "Copy"
msgstr ""
-#. BNDeG
+#. zsvyg
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3159153\n"
"help.text"
-msgid "Choose <emph>Edit - Paste</emph>."
+msgid "Choose <menuitem>Edit - Paste</menuitem>."
msgstr ""
-#. 7sAaC
+#. 2JEAF
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3155860\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+V</keycode>"
msgstr ""
#. wDTHt
@@ -14038,13 +14281,13 @@ msgctxt ""
msgid "On the <emph>Standard</emph> bar, click"
msgstr ""
-#. aSbU2
+#. 4ZWcQ
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3156106\n"
"help.text"
-msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
+msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159196\">Icon</alt></image>"
msgstr ""
#. ZtHb2
@@ -14155,31 +14398,31 @@ msgctxt ""
msgid "Right-click on the target table cell to open the context menu and choose <menuitem>Paste Special - Columns Before</menuitem>."
msgstr ""
-#. RPFZr
+#. eCfyi
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148555\n"
"help.text"
-msgid "Choose <emph>Edit - Select All</emph>."
+msgid "Choose <menuitem>Edit - Select All</menuitem>."
msgstr ""
-#. 9tSrD
+#. 9GGrc
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3152417\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode><keycode/>"
msgstr ""
-#. jgURb
+#. Fmcad
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3145748\n"
"help.text"
-msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
+msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153095\">Icon</alt></image>"
msgstr ""
#. 8xMiC
@@ -14191,22 +14434,22 @@ msgctxt ""
msgid "Select All"
msgstr ""
-#. upgTD
+#. Tb8Mu
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3145251\n"
"help.text"
-msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Track Changes</emph>.</variable>"
+msgid "<variable id=\"aenderungen\">Choose <menuitem>Edit - Track Changes</menuitem>.</variable>"
msgstr ""
-#. GoHSF
+#. FtngJ
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3153336\n"
"help.text"
-msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Track Changes - Record</emph>.</variable>"
+msgid "<variable id=\"aufzeichnen\">Choose <menuitem>Edit - Track Changes - Record</menuitem>.</variable>"
msgstr ""
#. eaiZ6
@@ -14218,85 +14461,85 @@ msgctxt ""
msgid "<variable id=\"anzeigen\">Choose <menuitem>Edit - Track Changes - Show</menuitem>.</variable>"
msgstr ""
-#. WNZgt
+#. CXjc8
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3153845\n"
"help.text"
-msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Track Changes - Manage</emph>.</variable>"
+msgid "<variable id=\"rotlinie\">Choose <menuitem>Edit - Track Changes - Manage</menuitem>.</variable>"
msgstr ""
-#. JE8RB
+#. RLwDH
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148587\n"
"help.text"
-msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab."
+msgid "Choose <menuitem>Edit - Track Changes - Manage - List</menuitem> tab."
msgstr ""
-#. ibxmB
+#. KKGxQ
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3150396\n"
"help.text"
-msgid "Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>. The <emph>AutoCorrect</emph> dialog appears.<br/>Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
+msgid "Choose <menuitem>Tools - AutoCorrect - Apply and Edit Changes</menuitem>. The <emph>AutoCorrect</emph> dialog appears.<br/>Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
msgstr ""
-#. AYu7X
+#. DRyHd
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3153878\n"
"help.text"
-msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Track Changes - Manage - Filter</emph> tab.</variable>"
+msgid "<variable id=\"rotliniefilter\">Choose <menuitem>Edit - Track Changes - Manage - Filter</menuitem> tab.</variable>"
msgstr ""
-#. V49NX
+#. XycHj
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3151281\n"
"help.text"
-msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Track Changes - Merge Document</emph>.</variable>"
+msgid "<variable id=\"einfuegen\">Choose <menuitem>Edit - Track Changes - Merge Document</menuitem>.</variable>"
msgstr ""
-#. PCbpk
+#. DLA3A
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3153224\n"
"help.text"
-msgid "<variable id=\"dvergl\">Choose <emph>Edit - Track Changes - Compare Document</emph>.</variable>"
+msgid "<variable id=\"dvergl\">Choose <menuitem>Edit - Track Changes - Compare Document</menuitem>.</variable>"
msgstr ""
-#. r6h5B
+#. DrLSp
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148773\n"
"help.text"
-msgid "Choose <emph>Edit - Track Changes - Comment</emph>."
+msgid "Choose <menuitem>Edit - Track Changes - Comment</menuitem>."
msgstr ""
-#. ZjBok
+#. BuLKS
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149488\n"
"help.text"
-msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab.<br/>Click an entry in the list and open the context menu.<br/>Choose <emph>Edit Comment</emph>."
+msgid "Choose <menuitem>Edit - Track Changes - Manage - List</menuitem> tab.<br/>Click an entry in the list and open the context menu.<br/>Choose <emph>Edit Comment</emph>."
msgstr ""
-#. ZCyHL
+#. oGZeX
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id31562971\n"
"help.text"
-msgid "Choose <emph>Edit - Find</emph>."
+msgid "Choose <menuitem>Edit - Find</menuitem>."
msgstr ""
#. VbXVd
@@ -14308,22 +14551,22 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F"
msgstr ""
-#. Tdp3L
+#. f4EM6
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3156297\n"
"help.text"
-msgid "Choose <emph>Edit - Find & Replace</emph>."
+msgid "Choose <menuitem>Edit - Find & Replace</menuitem>."
msgstr ""
-#. jkkFa
+#. 4pWKe
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154503\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+H</keycode>"
msgstr ""
#. UPprs
@@ -14335,13 +14578,13 @@ msgctxt ""
msgid "On the <emph>Standard</emph> bar, click"
msgstr ""
-#. QvErv
+#. BdmCn
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3150020\n"
"help.text"
-msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
+msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149121\">Icon</alt></image>"
msgstr ""
#. jRcHP
@@ -14353,58 +14596,76 @@ msgctxt ""
msgid "Find & Replace"
msgstr ""
-#. ffHRa
+#. EtPCq
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3156357\n"
"help.text"
-msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph>.</variable>"
+msgid "<variable id=\"suchenattribute\">Choose <menuitem>Edit - Find & Replace - Attributes</menuitem>.</variable>"
msgstr ""
-#. yjXrm
+#. DCnDy
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3153840\n"
"help.text"
-msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button.</variable>"
+msgid "<variable id=\"suchenformat\">Choose <menuitem>Edit - Find & Replace - Format</menuitem> button.</variable>"
msgstr ""
-#. gZyCv
+#. 6929F
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
-"par_id3146971\n"
+"par_id781602175775847\n"
"help.text"
-msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box, then click the <emph>Similarities</emph> button."
+msgid "<image id=\"img_id314249\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id314249\">Search Icon</alt></image> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F</keycode>"
msgstr ""
-#. C6kEr
+#. CNnsD
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3153709\n"
"help.text"
-msgid "On the <emph>Table Data</emph> bar, click <emph>Find</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (database table view)."
+msgid "On the <emph>Table Data</emph> bar, click <emph>Find</emph> icon, then <emph>Similarity search</emph> check box, then click the <emph>Similarities</emph> button (database table view)."
+msgstr ""
+
+#. PGzfH
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id551602176159965\n"
+"help.text"
+msgid "<image id=\"img_id314249\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id314249\">Search Icon</alt></image>"
msgstr ""
-#. 44DSw
+#. 8FD2j
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3150749\n"
"help.text"
-msgid "On the <emph>Form Design</emph> bar, click <emph>Record Search</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (form view)."
+msgid "On the <emph>Form Navigation</emph> bar, click <emph>Record Search</emph> icon, then <emph>Similarity search</emph> check box, then click the <emph>Similarities</emph> button (database form view)."
msgstr ""
-#. DFYxg
+#. 4NRpt
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id3146971\n"
+"help.text"
+msgid "Choose <menuitem>Edit - Find & Replace - Similarity search</menuitem> check box, then click the <emph>Similarities</emph> button."
+msgstr ""
+
+#. mMAVy
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3152960\n"
"help.text"
-msgid "Choose <emph>View - Navigator</emph>."
+msgid "Choose <menuitem>View - Navigator</menuitem>."
msgstr ""
#. mXj7f
@@ -14416,13 +14677,13 @@ msgctxt ""
msgid "On the <emph>Standard</emph> bar, click"
msgstr ""
-#. 4icDv
+#. QfrGQ
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3159183\n"
"help.text"
-msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
+msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154508\">Icon</alt></image>"
msgstr ""
#. DFjLG
@@ -14434,94 +14695,76 @@ msgctxt ""
msgid "Navigator On/Off"
msgstr ""
-#. CVFbE
+#. XgQEb
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3147338\n"
"help.text"
-msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph>.</variable>"
+msgid "<variable id=\"litdat\">Choose <menuitem>Tools - Bibliography Database</menuitem>.</variable>"
msgstr ""
-#. iCYAE
+#. EfGRn
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149281\n"
"help.text"
-msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph>.</variable>"
+msgid "<variable id=\"link\">Choose <menuitem>Edit - Links</menuitem>.</variable>"
msgstr ""
-#. eDEA6
+#. ARRG5
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3159339\n"
"help.text"
-msgid "<variable id=\"linkae\">Choose <emph>Edit - Links to External Files - Modify...</emph> (DDE links only).</variable>"
+msgid "<variable id=\"linkae\">Choose <menuitem>Edit - Links to External Files - Modify...</menuitem> (DDE links only).</variable>"
msgstr ""
-#. UbEQ7
+#. qo8gR
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148927\n"
"help.text"
-msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>."
+msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
msgstr ""
-#. vEEaa
+#. cDcix
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3156315\n"
"help.text"
-msgid "Open context menu of selected frame, choose <emph>Properties</emph>."
-msgstr ""
-
-#. uGqZD
-#: edit_menu.xhp
-msgctxt ""
-"edit_menu.xhp\n"
-"par_id3156091\n"
-"help.text"
-msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw.</variable>"
-msgstr ""
-
-#. XmBGV
-#: edit_menu.xhp
-msgctxt ""
-"edit_menu.xhp\n"
-"par_id3155936\n"
-"help.text"
-msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw,<br/>then select a section of the ImageMap and click <emph>Properties - Description</emph>.</variable>"
+msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
msgstr ""
-#. hfZ8h
+#. jmnro
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149259\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph>.</variable>"
+msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
msgstr ""
-#. ZuFLY
+#. XAqNW
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154966\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object.</variable>"
+msgid "<variable id=\"edit2\">Choose <menuitem>Edit - Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
msgstr ""
-#. qzAL5
+#. sA6YF
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149565\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph>.</variable>"
+msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
msgstr ""
#. PNGYK
diff --git a/source/fi/helpcontent2/source/text/shared/01.po b/source/fi/helpcontent2/source/text/shared/01.po
index d437088a5bc..78787acb8e7 100644
--- a/source/fi/helpcontent2/source/text/shared/01.po
+++ b/source/fi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-09-15 19:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/fi/>\n"
@@ -1942,13 +1942,13 @@ msgctxt ""
msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Open</menuitem> command."
msgstr ""
-#. sB6Fp
+#. Q9Cu5
#: 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#vorlagen\" 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\" name=\"special rules\">special rules</link> apply."
msgstr ""
#. CCRFi
@@ -2545,13 +2545,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:CloseDoc\">Closes the current document without exiting the program.</ahelp>"
msgstr "<ahelp hid=\".uno:CloseDoc\">Suljetaan avoin asiakirja poistumatta sovelluksesta.</ahelp>"
-#. EQVyu
+#. VD6W6
#: 01050000.xhp
msgctxt ""
"01050000.xhp\n"
"par_id3149095\n"
"help.text"
-msgid "The <emph>Close</emph> command closes all of the open windows for the current document."
+msgid "The <emph>Close</emph> command closes all open windows of the current document."
msgstr ""
#. jSMdE
@@ -3166,23 +3166,23 @@ msgctxt ""
msgid "Export the entire document using your default EPUB settings."
msgstr ""
-#. 9NFQ4
+#. jFEDD
#: 01100000.xhp
msgctxt ""
"01100000.xhp\n"
"tit\n"
"help.text"
-msgid "Document Properties"
-msgstr "Asiakirjan ominaisuudet"
+msgid "Properties"
+msgstr ""
-#. FBLob
+#. CNQGc
#: 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\">Document Properties</link></variable>"
-msgstr "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Document Properties\">Asiakirjan ominaisuudet</link></variable>"
+msgid "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Document Properties\">Properties</link></variable>"
+msgstr ""
#. W4uvS
#: 01100000.xhp
@@ -3211,14 +3211,14 @@ msgctxt ""
msgid "Depending on your access rights to the file, you might not see all of the tabs in the <emph>Properties</emph> dialog."
msgstr "Käyttöoikeuksista riippuen kaikki <emph>Ominaisuudet</emph>-valintaikkunan välilehdet eivät saata olla käyttäjälle näkyviä."
-#. ukwQv
+#. tAhw5
#: 01100100.xhp
msgctxt ""
"01100100.xhp\n"
"tit\n"
"help.text"
-msgid "Description"
-msgstr "Kuvaus"
+msgid "Description (File Properties)"
+msgstr ""
#. LaoBx
#: 01100100.xhp
@@ -3310,14 +3310,23 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/comments\">Enter comments to help identify the document.</ahelp>"
msgstr "<ahelp hid=\"sfx/ui/descriptioninfopage/comments\">Kirjoitetaan kommentteja, jotka voivat auttaa asiakirjan tunnistuksessa.</ahelp>"
-#. cULsU
+#. DB262
+#: 01100100.xhp
+msgctxt ""
+"01100100.xhp\n"
+"par_id581602083308804\n"
+"help.text"
+msgid "<emph>Title</emph>, <emph>Subject</emph>, and <emph>Keywords</emph> are exported to PDF files as PDF Document Properties. Entered values are exported and will appear in the corresponding fields in the PDF Document Properties Description."
+msgstr ""
+
+#. 63szi
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"tit\n"
"help.text"
-msgid "General"
-msgstr "Yleistä"
+msgid "General (File properties)"
+msgstr ""
#. 2UBSe
#: 01100200.xhp
@@ -3364,14 +3373,14 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/documentinfopage/nameed\">Displays the file name.</ahelp>"
msgstr "<ahelp hid=\"sfx/ui/documentinfopage/nameed\">Kentässä näkyy tiedoston nimi.</ahelp>"
-#. BVnzQ
+#. BQZz4
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3156136\n"
"help.text"
-msgid "Type:"
-msgstr "Tyyppi:"
+msgid "Type"
+msgstr ""
#. dfTZu
#: 01100200.xhp
@@ -3382,14 +3391,14 @@ msgctxt ""
msgid "Displays the file type for the current document."
msgstr "Rivillä näkyy tiedoston tyyppi."
-#. 6xGRB
+#. JmzjQ
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3145314\n"
"help.text"
-msgid "Location:"
-msgstr "Sijainti:"
+msgid "Location"
+msgstr ""
#. sqRnK
#: 01100200.xhp
@@ -3400,14 +3409,14 @@ msgctxt ""
msgid "Displays the path and the name of the directory where the file is stored."
msgstr "Rivillä näkyy tiedoston polku ja tallennuskansion nimi."
-#. CSFUt
+#. 36kzQ
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3155892\n"
"help.text"
-msgid "Size:"
-msgstr "Koko:"
+msgid "Size"
+msgstr ""
#. b5fx8
#: 01100200.xhp
@@ -3418,14 +3427,14 @@ msgctxt ""
msgid "Displays the size of the current document in bytes."
msgstr "Rivillä näkyy tiedoston koko tavuina."
-#. jE3zv
+#. J2u8L
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3149178\n"
"help.text"
-msgid "Created:"
-msgstr "Luotu:"
+msgid "Created"
+msgstr ""
#. AYhBx
#: 01100200.xhp
@@ -3436,14 +3445,14 @@ msgctxt ""
msgid "Displays the date and time and author when the file was first saved."
msgstr "Rivillä näkyy tiedoston ensimmäisen tallennuksen päivämäärä, kellonaika ja tekijän nimi."
-#. AwQ9Q
+#. uEcbQ
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3149182\n"
"help.text"
-msgid "Modified:"
-msgstr "Muokattu:"
+msgid "Modified"
+msgstr ""
#. g5sGH
#: 01100200.xhp
@@ -3454,13 +3463,13 @@ msgctxt ""
msgid "Displays the date and time and author when the file was last saved in a $[officename] file format."
msgstr "Rivillä näkyy tiedoston viimeisimmän $[officename]-tiedostomuotoon tallennuksen päivämäärä, kellonaika ja käyttäjän nimi."
-#. u6PCD
+#. Hf7Rc
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3149576\n"
"help.text"
-msgid "Template:"
+msgid "Template"
msgstr ""
#. dKF56
@@ -3472,14 +3481,14 @@ msgctxt ""
msgid "Displays the template that was used to create the file."
msgstr ""
-#. mCUc2
+#. qeduw
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"par_idN106C5\n"
"help.text"
-msgid "Digitally signed:"
-msgstr "Digitaalisesti allekirjoitettu:"
+msgid "Digitally signed"
+msgstr ""
#. kLqNh
#: 01100200.xhp
@@ -3490,14 +3499,14 @@ msgctxt ""
msgid "Displays the date and the time when the file was last signed as well as the name of the author who signed the document."
msgstr "Rivillä näkyy asiakirjan viimeisimmän digitaalisen allekirjoituksen päivämäärä, kellonaika ja allekirjoittajan nimi."
-#. Rn3MJ
+#. 47hFM
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"par_idN106CC\n"
"help.text"
-msgid "Digital Signature"
-msgstr "Digitaalinen allekirjoitus"
+msgid "Digital Signatures"
+msgstr ""
#. EdEtn
#: 01100200.xhp
@@ -3508,14 +3517,14 @@ msgctxt ""
msgid "Opens the <link href=\"text/shared/01/digitalsignatures.xhp\"><emph>Digital Signatures</emph></link> dialog where you can manage digital signatures for the current document."
msgstr ""
-#. BBgQY
+#. snQSF
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3156346\n"
"help.text"
-msgid "Last printed:"
-msgstr "Tulostettu:"
+msgid "Last printed"
+msgstr ""
#. BunTF
#: 01100200.xhp
@@ -3526,13 +3535,13 @@ msgctxt ""
msgid "Displays the date and time and user name when the file was last printed."
msgstr "Rivillä näkyy tiedoston viimeisimmän tulostuskerran päivämäärä, kellonaika ja käyttäjän nimi."
-#. wt4qw
+#. mD6yU
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3155342\n"
"help.text"
-msgid "Total editing time:"
+msgid "Total editing time"
msgstr ""
#. pg3gJ
@@ -3544,14 +3553,14 @@ msgctxt ""
msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file."
msgstr ""
-#. 7sAEq
+#. 9hpT9
#: 01100200.xhp
msgctxt ""
"01100200.xhp\n"
"hd_id3153252\n"
"help.text"
-msgid "Revision number:"
-msgstr "Muokkauskertoja:"
+msgid "Revision number"
+msgstr ""
#. FPbiF
#: 01100200.xhp
@@ -3598,6 +3607,15 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/documentinfopage/reset\">Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted.</ahelp>"
msgstr "<ahelp hid=\"sfx/ui/documentinfopage/reset\">Asetetaan muokkausaika nollaksi, luomispäiväys nykyhetkeksi ja versionumero 1:ksi. Myös muokkaus- ja tulostuspäivämäärät poistetaan.</ahelp>"
+#. mhWFZ
+#: 01100200.xhp
+msgctxt ""
+"01100200.xhp\n"
+"hd_id101602069139228\n"
+"help.text"
+msgid "Save preview image with this document"
+msgstr ""
+
#. ibdbD
#: 01100300.xhp
msgctxt ""
@@ -5371,14 +5389,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sends a copy of the current document to different applications.</ahelp>"
msgstr "<ahelp hid=\".\">Lähetetään kopio avoimesta asiakirjasta erilaisiin sovelluksiin.</ahelp>"
-#. TN979
+#. BJir9
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id3154398\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as E-mail\">E-mail Document</link>"
-msgstr "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as E-mail\">Lähetä asiakirja sähköpostina</link>"
+msgid "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as Email\">Email Document</link>"
+msgstr ""
#. Q86XQ
#: 01160000.xhp
@@ -5398,14 +5416,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a new window in your default email program with the current document as an attachment. The Microsoft file format is used.</ahelp>"
msgstr ""
-#. EyYsF
+#. E7FtX
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id8111514\n"
"help.text"
-msgid "E-mail as OpenDocument Spreadsheet"
-msgstr "Sähköposti OpenDocument-laskentataulukkona"
+msgid "Email as OpenDocument Spreadsheet"
+msgstr ""
#. ewW2i
#: 01160000.xhp
@@ -5416,14 +5434,14 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used."
msgstr ""
-#. FXCR6
+#. yrGWK
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id5112460\n"
"help.text"
-msgid "E-mail as Microsoft Excel"
-msgstr "Sähköposti Microsoft Excel -laskentataulukkona"
+msgid "Email as Microsoft Excel"
+msgstr ""
#. pLjdc
#: 01160000.xhp
@@ -5434,14 +5452,14 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft Excel file format is used."
msgstr ""
-#. UrGaf
+#. DBfk7
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id6694540\n"
"help.text"
-msgid "E-mail as OpenDocument Presentation"
-msgstr "Sähköposti OpenDocument-esityksenä"
+msgid "Email as OpenDocument Presentation"
+msgstr ""
#. Ai2i2
#: 01160000.xhp
@@ -5452,14 +5470,14 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used."
msgstr ""
-#. vtewB
+#. q3LCG
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id2099063\n"
"help.text"
-msgid "E-mail as Microsoft PowerPoint Presentation"
-msgstr "Sähköposti Microsoft PowerPoint -esityksenä"
+msgid "Email as Microsoft PowerPoint Presentation"
+msgstr ""
#. uDGxn
#: 01160000.xhp
@@ -5470,14 +5488,14 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft PowerPoint file format is used."
msgstr ""
-#. XFixi
+#. Vjqvr
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id9657277\n"
"help.text"
-msgid "E-mail as OpenDocument Text"
-msgstr "Sähköposti OpenDocument-tekstiasiakirjana"
+msgid "Email as OpenDocument Text"
+msgstr ""
#. Aewp6
#: 01160000.xhp
@@ -5488,14 +5506,14 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used."
msgstr ""
-#. c9WaG
+#. TH4Pg
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id7941831\n"
"help.text"
-msgid "E-mail as Microsoft Word"
-msgstr "Sähköposti Microsoft Word -asiakirjana"
+msgid "Email as Microsoft Word"
+msgstr ""
#. dcXm5
#: 01160000.xhp
@@ -5533,23 +5551,23 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01160300.xhp\" name=\"Create AutoAbstract\">Create AutoAbstract</link>"
msgstr "<link href=\"text/swriter/01/01160300.xhp\" name=\"Luo automaattinen tiivistelmä\">Luo automaattinen tiivistelmä</link>"
-#. BZfjH
+#. sFe9G
#: 01160200.xhp
msgctxt ""
"01160200.xhp\n"
"tit\n"
"help.text"
-msgid "E-mail Document"
-msgstr "Lähetä asiakirja sähköpostina"
+msgid "Email Document"
+msgstr ""
-#. qAUyE
+#. cpCsu
#: 01160200.xhp
msgctxt ""
"01160200.xhp\n"
"hd_id3150702\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160200.xhp\">E-mail Document</link>"
-msgstr "<link href=\"text/shared/01/01160200.xhp\">Lähetä asiakirja sähköpostina</link>"
+msgid "<link href=\"text/shared/01/01160200.xhp\">Email Document</link>"
+msgstr ""
#. 8prjP
#: 01160200.xhp
@@ -5560,13 +5578,13 @@ msgctxt ""
msgid "<variable id=\"versendentext\"><ahelp hid=\".uno:SendMail\">Opens a new window in your default email program with the current document as an attachment. The current file format is used.</ahelp></variable> If the document is new and unsaved, the format specified in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - General</emph> is used."
msgstr ""
-#. w48Rf
+#. EAoDd
#: 01160200.xhp
msgctxt ""
"01160200.xhp\n"
"par_id0807200809553672\n"
"help.text"
-msgid "If the document is in HTML format, any embedded or linked images will <emph>not</emph> be sent with the e-mail."
+msgid "If the document is in HTML format, any embedded or linked images will <emph>not</emph> be sent with the email."
msgstr ""
#. E5hZ4
@@ -5668,22 +5686,22 @@ msgctxt ""
msgid "<bookmark_value>exiting;$[officename]</bookmark_value>"
msgstr "<bookmark_value>Lopettaminen;$[officename]</bookmark_value>"
-#. JheBs
+#. QEpYh
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"hd_id3154545\n"
"help.text"
-msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit\">Exit</link>"
-msgstr "<link href=\"text/shared/01/01170000.xhp\" name=\"Lopeta\">Lopeta</link>"
+msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit\">Exit %PRODUCTNAME</link>"
+msgstr ""
-#. qttvF
+#. Dtb5G
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3151299\n"
"help.text"
-msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> This command does not exist on macOS systems."
+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
@@ -6811,13 +6829,13 @@ msgctxt ""
msgid "Link"
msgstr ""
-#. ss8BJ
+#. HCLBh
#: 02070000.xhp
msgctxt ""
"02070000.xhp\n"
"par_id3146969\n"
"help.text"
-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 \"Insert All\" option is also selected. </ahelp>"
+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
@@ -7666,13 +7684,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in values and in the results of formulas.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Etsitään merkkejä, joita esiintyy arvoissa ja lausekkeiden tuloksissa.</ahelp>"
-#. eyn9j
+#. Hxei2
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
"hd_id3145650\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Notes</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
msgstr ""
#. MTECk
@@ -8161,13 +8179,13 @@ msgctxt ""
msgid "Represents an uppercase character if <emph>Match case</emph> is selected in <emph>Options</emph>."
msgstr ""
-#. iArH4
+#. 3VCa9
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id5311440\n"
"help.text"
-msgid "For a full list of supported metacharacters and syntax, see <link href=\"http://userguide.icu-project.org/strings/regexp\" 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\" name=\"ICU Regular Expressions documentation\">ICU Regular Expressions documentation</link>"
msgstr ""
#. HBqoH
@@ -8485,23 +8503,14 @@ msgctxt ""
msgid "For example, a similarity search can find words that differ from the <emph>Find</emph> text by two characters."
msgstr ""
-#. BX4Fz
-#: 02100100.xhp
-msgctxt ""
-"02100100.xhp\n"
-"hd_id3154621\n"
-"help.text"
-msgid "Similarities"
-msgstr ""
-
-#. sBjNi
+#. k8vBh
#: 02100100.xhp
msgctxt ""
"02100100.xhp\n"
"par_id3145629\n"
"help.text"
-msgid "<ahelp hid=\"svx/ui/findreplacedialog/similaritybtn\">Set the options for the similarity search.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/findreplacedialog/similaritybtn\">Asetetaan vastaavuushaun ehtoja.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/similaritybtn\" visibility=\"hidden\">Set the options for the similarity search.</ahelp>"
+msgstr ""
#. FLKW6
#: 02100100.xhp
@@ -8593,6 +8602,33 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/relaxbox\">Searches for a term that matches any combination of the similarity search settings.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/relaxbox\">Osumaksi hyväksytään minkä tahansa ehtojen yhdistelmän täyttävä sana.</ahelp>"
+#. CwBCG
+#: 02100100.xhp
+msgctxt ""
+"02100100.xhp\n"
+"par_id491602292458634\n"
+"help.text"
+msgid "Using Combine better meets a user's expectations from looking at the settings, but may return false positives. Not using Combine may match less than expected, but does not return false positives."
+msgstr ""
+
+#. 9xE34
+#: 02100100.xhp
+msgctxt ""
+"02100100.xhp\n"
+"par_id401602236795437\n"
+"help.text"
+msgid "A Weighted Levenshtein Distance (WLD) algorithm is used. If Combine is not checked, then settings are treated as an exclusive-OR (strict WLD).If Combine is checked, then settings are treated as an inclusive-OR (relaxed WLD)."
+msgstr ""
+
+#. eZ2dA
+#: 02100100.xhp
+msgctxt ""
+"02100100.xhp\n"
+"par_id371602294412458\n"
+"help.text"
+msgid "Be careful when using <emph>Replace All</emph> with Similarity Search. Best to be certain first about what will be found."
+msgstr ""
+
#. Fvuvx
#: 02100200.xhp
msgctxt ""
@@ -10096,13 +10132,13 @@ msgctxt ""
msgid "File"
msgstr ""
-#. pJqem
+#. JooHu
#: 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#speichern\" 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\" name=\"Relative paths\">Relative paths</link> must be expressed by full URI, for example, with <emph>file://</emph>.</ahelp>"
msgstr ""
#. eEnmT
@@ -13453,14 +13489,14 @@ msgctxt ""
msgid "<bookmark_value>comments;inserting/editing/deleting/printing/resolving</bookmark_value> <bookmark_value>comments;hide resolved</bookmark_value> <bookmark_value>comments;resolve in text documents</bookmark_value> <bookmark_value>inserting; comments</bookmark_value> <bookmark_value>editing; comments</bookmark_value> <bookmark_value>deleting;comments</bookmark_value> <bookmark_value>Navigator;comments</bookmark_value> <bookmark_value>printing;comments</bookmark_value> <bookmark_value>resolving;comments</bookmark_value> <bookmark_value>records; inserting comments </bookmark_value> <bookmark_value>remarks, see also comments</bookmark_value>"
msgstr ""
-#. t88DQ
+#. zNaVC
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
"hd_id3154100\n"
"help.text"
-msgid "<link href=\"text/shared/01/04050000.xhp\">Comments</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/04050000.xhp\">Comment</link>"
+msgstr "<link href=\"text/shared/01/06010500.xhp\">Kieli</link>"
#. B5Lac
#: 04050000.xhp
@@ -13633,13 +13669,13 @@ msgctxt ""
msgid "Inserting Comments in Text Documents"
msgstr ""
-#. 8b7rZ
+#. CigQE
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
"par_id1830500\n"
"help.text"
-msgid "Use the command <menuitem>Insert - Comment</menuitem> or the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph>+<emph>Option</emph></caseinline><defaultinline><emph>Ctrl</emph>+<emph>Alt</emph></defaultinline></switchinline>+<emph>C</emph> key combination to insert a comment anchor at the current cursor position. A colored comment box is shown at the page margin, to enter the text of the comment. A line connects the anchor to the comment box. If a text range is selected, the comment is attached to the text range. The commented text range is shadowed."
+msgid "Use the command <menuitem>Insert - Comment</menuitem> or the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode>+<keycode>Option</keycode></caseinline><defaultinline><keycode>Ctrl</keycode>+<keycode>Alt</keycode></defaultinline></switchinline>+<keycode>C</keycode> key combination to insert a comment anchor at the current cursor position. A colored comment box is shown at the page margin, to enter the text of the comment. A line connects the anchor to the comment box. If a text range is selected, the comment is attached to the text range. The commented text range is shadowed."
msgstr ""
#. ro9G3
@@ -13660,14 +13696,14 @@ msgctxt ""
msgid "Editing comments"
msgstr "Huomautusten muokkaaminen"
-#. 97Bdy
+#. WjcPZ
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
"par_id5201879\n"
"help.text"
-msgid "Every user with write permission to the document can edit and delete comments of all authors."
-msgstr "Jokainen käyttäjä, jolla on käyttöoikeus tekstiasiakirjaan, voi muokata ja poistaa toisten kirjoittajien huomautuksia."
+msgid "Every user with write permission to the document can edit and delete comments of all authors. You can use the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode>+<keycode>Option</keycode></caseinline><defaultinline><keycode>Ctrl</keycode>+<keycode>Alt</keycode></defaultinline></switchinline>+<keycode>C</keycode> key combination to edit a comment at the current cursor position."
+msgstr ""
#. qJE7L
#: 04050000.xhp
@@ -13741,13 +13777,13 @@ msgctxt ""
msgid "When the cursor is inside a comment, you can press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph>+<emph>Option</emph></caseinline><defaultinline><emph>Ctrl</emph>+<emph>Alt</emph></defaultinline></switchinline>+<emph>Page Down</emph> to jump to the next comment, or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph>+<emph>Option</emph></caseinline><defaultinline><emph>Ctrl</emph>+<emph>Alt</emph></defaultinline></switchinline>+<emph>Page Up</emph> to jump to the previous comment."
msgstr ""
-#. Fkxgn
+#. asYhr
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
"par_id2116153\n"
"help.text"
-msgid "When the cursor is inside the normal text, press the above mentioned keys to jump to the next or previous comment anchor. You can also use the small <emph>Navigation</emph> window below the vertical scrollbar to jump from one comment anchor to the next comment anchor."
+msgid "When the cursor is inside the normal text, press the above mentioned keys to jump to the next or previous comment anchor."
msgstr ""
#. yCdcN
@@ -14650,13 +14686,13 @@ msgctxt ""
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=\"Clear Direct Formatting\">Poista suora muotoilu</link>"
-#. uB2DG
+#. 25NkJ
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"par_id3145829\n"
"help.text"
-msgid "<ahelp hid=\".\">Removes direct formatting and formatting by character styles from the selection.</ahelp>"
+msgid "<ahelp hid=\".\">Removes direct formatting from the selection.</ahelp>"
msgstr ""
#. LYtxB
@@ -14668,6 +14704,15 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Direct formatting is formatting that you applied without using styles, such as setting bold typeface by clicking the <emph>Bold</emph> icon.</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Suora muotoilu on muotoilua, joka tehdään ilman tyylien käyttöä, kuten lihavoinnin asettaminen napsauttaen <emph>Lihavointi</emph>-kuvaketta.</defaultinline></switchinline>"
+#. KAK6k
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"par_id671594846326658\n"
+"help.text"
+msgid "Applied character styles will not be affected by Clear Direct Formatting, only direct formatting applied on top of the character styles. To remove formatting applied by a character style, reapply the <emph>Default</emph> character style."
+msgstr ""
+
#. h42SA
#: 05010000.xhp
msgctxt ""
@@ -14704,23 +14749,14 @@ 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\">Vaihdetaan valittujen merkkien fonttia ja fontin muotoilua.</ahelp></variable>"
-#. ZvERE
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3149988\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Fontti\">Fontti</link>"
-
-#. 2422m
+#. Ycmxn
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlinkki\">Hyperlinkki</link></caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgstr ""
#. ruEdb
#: 05020100.xhp
@@ -15469,31 +15505,40 @@ 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>muotoilut; luku- ja valuuttalukumuodot</bookmark_value><bookmark_value>lukumuodot; muotoilut</bookmark_value><bookmark_value>valuutat;muotoilukoodit</bookmark_value><bookmark_value>oletukset; lukumuodot</bookmark_value>"
-#. 28pR2
+#. fXs76
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
-"hd_id3152942\n"
+"hd_id3162942\n"
"help.text"
-msgid "Numbers / Format"
-msgstr "Luku / Muotoilu"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr ""
-#. CNMbg
+#. z8GFZ
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
-"par_id3145086\n"
+"par_id3145071\n"
"help.text"
-msgid "Specify the formatting option for the selected variable."
+msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp></variable>"
msgstr ""
-#. z8GFZ
+#. E2nXs
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
-"par_id3145071\n"
+"hd_id3152942\n"
"help.text"
-msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp></variable>"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers/Format\">Numbers / Format</link>"
+msgstr ""
+
+#. CNMbg
+#: 05020300.xhp
+msgctxt ""
+"05020300.xhp\n"
+"par_id3145086\n"
+"help.text"
+msgid "Specify the formatting option for the selected variable."
msgstr ""
#. KqXXP
@@ -15577,13 +15622,13 @@ msgctxt ""
msgid "Language"
msgstr "Kieli"
-#. wCJKH
+#. akNwB
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingformatpage/languagelb\"> <switchinline select=\"appl\"> <caseinline select=\"WRITER\"> Select any language to fix the settings for the selected fields. With the language set to <emph>Automatic</emph>, $[officename] automatically applies the number formats associated with the system default language. Select any language to fix the settings for the selected fields. </caseinline> <caseinline select=\"CALC\"> Specifies the language setting for the selected cells. Select any language to fix the settings for the selected cells. </caseinline> <defaultinline>Specifies the language setting for the selected field. Select any language to fix the settings for the selected fields.</defaultinline> </switchinline> </ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingformatpage/languagelb\"> <switchinline select=\"appl\"> <caseinline select=\"WRITER\"> Specifies the language setting for the selected fields. With the language set to <emph>Default</emph>, $[officename] automatically applies the number formats associated with the system default language. </caseinline> <caseinline select=\"CALC\"> Specifies the language setting for the selected cells. </caseinline> <defaultinline>Specifies the language setting for the selected field.</defaultinline> </switchinline> </ahelp>"
msgstr ""
#. K29ZG
@@ -20437,13 +20482,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 ""
-#. bfSQ5
+#. WTG9S
#: 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\" name=\"Styles\">Styles window</link>.</caseinline></switchinline>"
msgstr ""
#. 3xcFE
@@ -21571,303 +21616,6 @@ msgctxt ""
msgid "The rules can be condensed to the statement that the stronger attribute wins. If, for example, one cell has a red border of 2 point width, and the adjacent cell has a blue border of 3 point width, then the common border between these two cells will be blue with 3 point width."
msgstr "Säännöt voidaan tiivistää lauseeseen, että vahvempi määre voittaa. Jos esimerkiksi yhdessä solussa on leveydeltään 2 pisteen punainen reuna ja viereisessä solussa on leveydeltään kolmen pisteen sininen reuna, näiden kahden solun välinen reuna on leveydeltään 3 pisteen sininen reuna."
-#. utSoU
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Background"
-msgstr "Tausta"
-
-#. L5HEe
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"bm_id3151097\n"
-"help.text"
-msgid "<bookmark_value>frames; backgrounds</bookmark_value><bookmark_value>backgrounds; frames/sections/indexes</bookmark_value><bookmark_value>sections; backgrounds</bookmark_value><bookmark_value>indexes; backgrounds</bookmark_value><bookmark_value>footers;backgrounds</bookmark_value><bookmark_value>headers;backgrounds</bookmark_value>"
-msgstr "<bookmark_value>kehykset; taustat</bookmark_value><bookmark_value>taustat; kehykset/osat/hakemistot</bookmark_value><bookmark_value>osat; taustat</bookmark_value><bookmark_value>hakemistot; taustat</bookmark_value><bookmark_value>alatunnisteet;taustat</bookmark_value><bookmark_value>ylätunnisteet;taustat</bookmark_value>"
-
-#. aEEtK
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3151097\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background\">Area</link>"
-msgstr ""
-
-#. wVwj8
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3153748\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/backgroundpage/BackgroundPage\">Set the background color or graphic.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/BackgroundPage\">Asetetaan taustaväri tai taustakuva.</ahelp>"
-
-#. cfKE8
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3147653\n"
-"help.text"
-msgid "You can specify the background for <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraphs, pages, headers, footers, frames, tables, table cells, sections, and indexes.</caseinline><caseinline select=\"CALC\">cells and pages.</caseinline></switchinline>"
-msgstr ""
-
-#. WUJz3
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3154514\n"
-"help.text"
-msgid "As"
-msgstr "Täyttö"
-
-#. KGbQM
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3154380\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/backgroundpage/selectlb\">Select the type of background that you want to apply.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/selectlb\">Valitaan käytettävän taustan tyyppi.</ahelp>"
-
-#. NByTA
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3151245\n"
-"help.text"
-msgid "Using a Color as a Background"
-msgstr "Värin käyttö taustana"
-
-#. nfABt
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3148946\n"
-"help.text"
-msgid "Color Background"
-msgstr "Taustaväri"
-
-#. Bqxh3
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3152361\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/backgroundpage/backgroundcolorset\">Click the color that you want to use as a background. To remove a background color, click <emph>No Fill</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/backgroundcolorset\">Napsautetaan taustana käytettävää väriä. Taustavärin poistamiseksi napsautetaan <emph>Ei täyttöä</emph> -valintaa.</ahelp>"
-
-#. Hk3yg
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3154216\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">For</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Kohde</caseinline></switchinline>"
-
-#. 3xKHG
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3145419\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/tablelb\">Select the area that you want to apply the background color to.</ahelp> For example, when you define the background color for a table, you can choose to apply it to the table, the active cell, the row, or the column.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/tablelb\">Valitaan alue, johon taustaväriä käytetään.</ahelp> Esimerkiksi määritettäessä taulukon taustaväriä voidaan valita sitä käytettäväksi taulukkoon, aktiiviseen soluun, riviin tai sarakkeeseen.</caseinline></switchinline>"
-
-#. CVRaQ
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3150497\n"
-"help.text"
-msgid "This option is only available when you edit the background of a table or a paragraph style."
-msgstr "Asetus on saatavilla vain, kun muokataan taulukon tai kappaletyylin taustaa."
-
-#. qdBoG
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3153056\n"
-"help.text"
-msgid "Using a Graphic as a Background"
-msgstr "Kuvan käyttö taustana"
-
-#. WyEiZ
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3149983\n"
-"help.text"
-msgid "File"
-msgstr "Tiedosto"
-
-#. 2aeNe
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3152462\n"
-"help.text"
-msgid "Contains information about the graphic file."
-msgstr "Sisältää tietoja kuvatiedostosta."
-
-#. cxVFJ
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3145592\n"
-"help.text"
-msgid "Display field"
-msgstr "Näyttökenttä"
-
-#. 2GUUE
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3154920\n"
-"help.text"
-msgid "Shows the path for the graphic file."
-msgstr "Esitetään kuvatiedoston polku."
-
-#. FEGBw
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3145272\n"
-"help.text"
-msgid "Link"
-msgstr "Linkitä"
-
-#. 8xzGd
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3154150\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/backgroundpage/link\">Links to or embeds the graphic file in the current file.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/link\">Linkitetään (rasti) tai upotetaan (ei rastia) kuvatiedosto työstettävään tiedostoon.</ahelp>"
-
-#. 8JaXm
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3155366\n"
-"help.text"
-msgid "Preview"
-msgstr "Esikatselu"
-
-#. 2q65e
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3147426\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/backgroundpage/showpreview\">Displays or hides a preview of the selected graphic.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/showpreview\">Esitetään tai piilotetaan valitun kuvan ennakkoesitys.</ahelp>"
-
-#. ZYK3H
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3154472\n"
-"help.text"
-msgid "Browse"
-msgstr "Selaa"
-
-#. CV8je
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3153951\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/backgroundpage/browse\">Locate the graphic file that you want to use as a background, and then click <emph>Open</emph>.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/browse\">Paikallistetaan taustaksi käytettävä kuvatiedosto ja napsautetaan sitten <emph>Avaa</emph>-painiketta.</ahelp>"
-
-#. KYFry
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3153726\n"
-"help.text"
-msgid "Type"
-msgstr "Tyyppi"
-
-#. 83qqt
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3147442\n"
-"help.text"
-msgid "Specify the way that you want to display the background graphic."
-msgstr "Määritetään taustakuvan esitystapa."
-
-#. hiDAM
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3153366\n"
-"help.text"
-msgid "Position"
-msgstr "Sijainti"
-
-#. B22EE
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3153741\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/backgroundpage/positionrb\">Select this option, and then click a location in the position grid.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/positionrb\">Valitaan tämä vaihtoehto ja napsautetaan sitten paikkaa kohdistusruudukossa.</ahelp>"
-
-#. mGSC9
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3156005\n"
-"help.text"
-msgid "Area"
-msgstr "Alue"
-
-#. BFBbE
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3152596\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/backgroundpage/arearb\">Stretches the graphic to fill the entire background of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/arearb\">Kuvaa venytetään täyttämään kokonaan valitun kohteen tausta.</ahelp>"
-
-#. 556to
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3145663\n"
-"help.text"
-msgid "Tile"
-msgstr "Vierekkäin"
-
-#. iBkjp
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3149481\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/backgroundpage/tilerb\">Repeats the graphic so that it covers the entire background of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/backgroundpage/tilerb\">Kuvaa toistetaan peittämään kokonaan valitun kohteen tausta.</ahelp>"
-
-#. ZNNNW
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"par_id3151114\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a color. Click No Fill to remove a background or highlighting color. Click Automatic to reset a font color.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Napsautetaan väriä. Napsautetaan Ei täyttöä -ruutua tausta- tai korostusvärin poistamiseksi. Napsautetaan Automaattinen-ruutua fontin oletusvärin palauttamiseksi.</ahelp>"
-
#. iXWcd
#: 05030700.xhp
msgctxt ""
@@ -22399,14 +22147,14 @@ msgctxt ""
msgid "Organizer"
msgstr "Järjestelytyökalu"
-#. QZBEH
+#. HAEfy
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"bm_id3153383\n"
"help.text"
-msgid "<bookmark_value>organizing; styles</bookmark_value> <bookmark_value>styles; organizing</bookmark_value>"
-msgstr "<bookmark_value>järjesteleminen; tyylit</bookmark_value><bookmark_value>tyylit; järjesteleminen</bookmark_value>"
+msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
+msgstr ""
#. SZdCB
#: 05040100.xhp
@@ -22444,23 +22192,23 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/managestylepage/name\">Displays the name of the selected style. If you are creating or modifying a custom style, enter a name for the style. You cannot change the name of a predefined style.</ahelp>"
msgstr ""
-#. NRACR
+#. xEE52
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153750\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoUpdate</caseinline></switchinline>"
+msgid "AutoUpdate"
msgstr ""
-#. vexD3
+#. 7yXws
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"par_id3153749\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"sfx/ui/managestylepage/autoupdate\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"sfx/ui/managestylepage/autoupdate\">Päivitetään tyyli käytettäessä kappaleeseen suoraa muotoilua tällä tyylillä asiakirjassa. Kaikki muotoilut kaikissa kappaleissa, jotka käyttävät tätä tyyliä, päivittyvät samalla.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/autoupdate\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp>"
+msgstr ""
#. N5rDR
#: 05040100.xhp
@@ -22687,6 +22435,24 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/pageformatpage/spinHeight\">Displays the height of the selected paper format. To define a custom format, enter a height here.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinHeight\">Ruudussa näkyy valitun arkin korkeus. Mukautettua arkkikokoa määritettäessä korkeus syötetään kenttään.</ahelp>"
+#. 4pxpW
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id901601605927805\n"
+"help.text"
+msgid "Orientation"
+msgstr ""
+
+#. tDiD9
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id791601605959021\n"
+"help.text"
+msgid "Select paper orientation for display and print."
+msgstr ""
+
#. DMJ89
#: 05040200.xhp
msgctxt ""
@@ -22741,6 +22507,15 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/pageformatpage/comboTextFlowBox\">Select the text direction that you want to use in your document.</ahelp> The \"right-to-left (vertical)\" text flow direction rotates all layout settings to the right by 90 degrees, except for the header and footer."
msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboTextFlowBox\">Valitaan asiakirjassa käytettävä kirjoitussuunta.</ahelp> \"Oikealta vasemmalle (pysty)\" -tekstin suunta kiertää koko asettelun 90 astetta oikealle ylä- ja alatunnistetta lukuun ottamatta."
+#. nT3AJ
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id91601733418064\n"
+"help.text"
+msgid "<emph>Text direction</emph> only appears if <emph>Asian</emph> or <emph>Complex text layout</emph> is set in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Setting - Languages</menuitem>."
+msgstr ""
+
#. MR8zP
#: 05040200.xhp
msgctxt ""
@@ -22777,41 +22552,41 @@ msgctxt ""
msgid "Specify the amount of space to leave between the edges of the page and the document text."
msgstr "Määrittää sen välin suuruuden, joka jää sivun marginaalien ja asiakirjan tekstin väliin."
-#. SBbfu
+#. D2mZT
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"hd_id3153061\n"
"help.text"
-msgid "Left / Inner"
-msgstr "Vasen / Sisempi"
+msgid "Left <switchinline select=\"appl\"><caseinline select=\"DRAW\"/><caseinline select=\"IMPRESS\"/><defaultinline>/ Inner</defaultinline></switchinline>"
+msgstr ""
-#. Daqzy
+#. 2FbPb
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"par_id3151384\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargLeft\">Enter the amount of space to leave between the left edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the inner text margin and the inner edge of the page.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinMargLeft\">Annetaan sivun vasemman reunan ja asiakirjan tekstin välin suuruus. Jos käytetään sivun <emph>Peilattu</emph>-asettelua, annetaan etäisyys, joka jää sisemmän tekstimarginaalin ja sivun sisäreunan väliin.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargLeft\">Enter the amount of space to leave between the left edge of the page and the document text. <switchinline select=\"appl\"><caseinline select=\"DRAW\"/><caseinline select=\"IMPRESS\"/><defaultinline>If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the inner text margin and the inner edge of the page.</defaultinline></switchinline></ahelp>"
+msgstr ""
-#. TtyDc
+#. GvkRk
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"hd_id3154923\n"
"help.text"
-msgid "Right / Outer"
-msgstr "Oikea / Ulompi"
+msgid "Right <switchinline select=\"appl\"><caseinline select=\"DRAW\"/><caseinline select=\"IMPRESS\"/><defaultinline>/ Outer</defaultinline></switchinline>"
+msgstr ""
-#. uiu7A
+#. Pgp68
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"par_id3147304\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargRight\">Enter the amount of space to leave between the right edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the outer text margin and the outer edge of the page.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinMargRight\">Annetaan sivun oikean reunan ja asiakirjan tekstin välin suuruus. Jos käytetään sivun <emph>Peilattu</emph>-asettelua, annetaan etäisyys, joka jää ulomman tekstimarginaalin ja sivun ulkoreunan väliin.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargRight\">Enter the amount of space to leave between the right edge of the page and the document text. <switchinline select=\"appl\"><caseinline select=\"DRAW\"/><caseinline select=\"IMPRESS\"/><defaultinline>If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the outer text margin and the outer edge of the page.</defaultinline></switchinline></ahelp>"
+msgstr ""
#. EPeDb
#: 05040200.xhp
@@ -22984,13 +22759,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/pageformatpage/comboLayoutFormat\">Select the page numbering format that you want to use for the current page style.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboLayoutFormat\">Valitaan sivujen numerointitapa, jota käytetään työstettävässä sivutyylissä.</ahelp>"
-#. z6iVY
+#. Sppvi
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"hd_id3150488\n"
"help.text"
-msgid "Register-true"
+msgid "Follow line spacing"
msgstr ""
#. xRZFb
@@ -23101,13 +22876,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/pageformatpage/checkbuttonVert\">Centers the cells vertically on the printed page.</ahelp>"
msgstr ""
-#. uCEW9
+#. 4eiX9
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"hd_id3151318\n"
"help.text"
-msgid "Fit object to page format"
+msgid "Fit object to paper format"
msgstr ""
#. AEasi
@@ -23128,14 +22903,14 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
msgstr ""
-#. HJtby
+#. Hut8s
#: 05040200.xhp
msgctxt ""
"05040200.xhp\n"
"par_id3153730\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Writing Register-true</link>"
-msgstr "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Läpirekisteritulostus\">Läpirekisteritulostus</link>"
+msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Page line spacing (register-true)</link>"
+msgstr ""
#. 8CcQd
#: 05040300.xhp
@@ -23452,14 +23227,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Reunat\">Reunat</link>"
-#. wECro
+#. mctak
#: 05040300.xhp
msgctxt ""
"05040300.xhp\n"
"par_id3147326\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Taustat\">Taustat</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Backgrounds\">Area</link>"
+msgstr ""
#. 7xtR7
#: 05040400.xhp
@@ -23497,14 +23272,14 @@ msgctxt ""
msgid "If you want, you can also add borders or a background fill to a footer."
msgstr "Tarvittaessa alatunnisteelle voi lisätä reunat tai taustatäytön."
-#. vks8A
+#. 5nvHF
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"par_id3155339\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To insert a footer into the current document, select <emph>Footer on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Alatunnisteen lisäämiseksi käsiteltävään asiakirjaan, valitaan <emph>Alatunniste käytössä</emph> ja hyväksytään <emph>OK</emph>:lla. </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To insert a footer into the current document, select <emph>Footer on</emph>, and then click <emph>OK</emph>.</caseinline></switchinline>"
+msgstr ""
#. DAGaz
#: 05040400.xhp
@@ -23569,13 +23344,13 @@ msgctxt ""
msgid "Same content left/right"
msgstr "Sama sisältö vasemmalla ja oikealla"
-#. wr3Gk
+#. KTdzy
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"par_id3149575\n"
"help.text"
-msgid "<ahelp hid=\"SVX_HID_FOOTER_CHECKSAMELR\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different footer to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
+msgid "<ahelp hid=\"SVX_HID_FOOTER_CHECKSAMELR\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different footer to even and odd pages, clear this option, and then click <emph>Edit</emph>.</caseinline></switchinline></ahelp>"
msgstr ""
#. cL398
@@ -23722,14 +23497,14 @@ msgctxt ""
msgid "<ahelp hid=\"SVX_HID_FOOTER_BUTTONMORE\">Defines a border, a background color, or a background pattern for the footer.</ahelp>"
msgstr ""
-#. a9sG2
+#. VcmMZ
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"hd_id3157892\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Muokkaa </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit</caseinline></switchinline>"
+msgstr ""
#. 2HTzq
#: 05040400.xhp
@@ -23776,14 +23551,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
msgstr "<link href=\"text/shared/01/05030500.xhp\" name=\"Reunat\">Reunat</link>"
-#. w2QJP
+#. 4DfxW
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"par_id3152791\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Taustat\">Taustat</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Backgrounds\">Area</link>"
+msgstr ""
#. CgGUH
#: 05060000.xhp
@@ -26089,32 +25864,14 @@ msgctxt ""
msgid "Add"
msgstr "Lisää"
-#. sqyhp
+#. 5xkB3
#: 05200200.xhp
msgctxt ""
"05200200.xhp\n"
"par_id3149827\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/linestyletabpage/BTN_ADD\">Creates a new line style using the current settings.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/linestyletabpage/BTN_ADD\">Luodaan vallitseviin asetuksiin perustuva uusi, nimetty viivatyyli.</ahelp>"
-
-#. T2pNA
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"hd_id3155338\n"
-"help.text"
-msgid "Name"
-msgstr "Nimi"
-
-#. 4phXf
-#: 05200200.xhp
-msgctxt ""
-"05200200.xhp\n"
-"par_id3153681\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter a name.</ahelp>"
-msgstr "<ahelp hid=\".\">Syötä nimi.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/linestyletabpage/BTN_ADD\">Creates a new line style using the current settings.</ahelp> Enter a name for the new line style."
+msgstr ""
#. 6Yvch
#: 05200200.xhp
@@ -26359,32 +26116,32 @@ msgctxt ""
msgid "Area tab"
msgstr ""
-#. M6zvc
+#. yN2qC
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"bm_id3149999\n"
"help.text"
-msgid "<bookmark_value>areas; styles</bookmark_value><bookmark_value>fill patterns for areas</bookmark_value><bookmark_value>fill colors for areas</bookmark_value><bookmark_value>invisible areas</bookmark_value>"
-msgstr "<bookmark_value>alueet; tyylit</bookmark_value><bookmark_value>täyttökuviot alueille</bookmark_value><bookmark_value>täyttövärit alueille</bookmark_value><bookmark_value>näkymättömät alueet</bookmark_value>"
+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 ""
-#. Y4ktT
+#. 3fEfw
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"hd_id3145759\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area\">Area</link>"
-msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Alue\">Alue</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Background</caseinline><defaultinline>Area</defaultinline></switchinline></link>"
+msgstr ""
-#. tcPKP
+#. ubruG
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"par_id3149748\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/areatabpage/AreaTabPage\">Set the fill options for the selected drawing object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/areatabpage/AreaTabPage\">Tehdään valitun piirrosobjektin täyttöasetukset.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/areatabpage/AreaTabPage\">Set the fill options for the selected drawing object or document element.</ahelp>"
+msgstr ""
#. eE2Fr
#: 05210100.xhp
@@ -26395,24 +26152,6 @@ msgctxt ""
msgid "You can add custom colors, gradients, hatchings, two color patterns and bitmap patterns to the default lists for later use."
msgstr ""
-#. 5n3AA
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id471527077476052\n"
-"help.text"
-msgid "Cell, Row or Table background selector"
-msgstr ""
-
-#. 8UdBz
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id661527077493366\n"
-"help.text"
-msgid "Select the table object which background area is to be filled."
-msgstr ""
-
#. CGbA3
#: 05210100.xhp
msgctxt ""
@@ -26449,42 +26188,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/btngradient\">Fills the object with a gradient selected on this page.</ahelp>"
msgstr ""
-#. BtYSN
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3150771\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210500.xhp#bitmapmuster\" name=\"Bitmap\">Bitmap</link>"
-msgstr ""
-
-#. qBkq4
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3149762\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/areatabpage/btnbitmap\">Fills the object with a bitmap pattern selected on this page.</ahelp> To add a bitmap to the list, open this dialog, click the <emph>Bitmaps </emph>tab, and then click <emph>Add / Import</emph>."
-msgstr ""
-
-#. EAYEg
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"hd_id3150504\n"
-"help.text"
-msgid "Pattern"
-msgstr ""
-
-#. Z5Fcf
-#: 05210100.xhp
-msgctxt ""
-"05210100.xhp\n"
-"par_id3153626\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Fills the object with a simple two color pattern selected on this page.</ahelp>"
-msgstr ""
-
#. ydNTt
#: 05210100.xhp
msgctxt ""
@@ -27205,14 +26908,14 @@ msgctxt ""
msgid "Bitmap"
msgstr "Bittikartta"
-#. HFJGN
+#. DL8RS
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"bm_id3155619\n"
"help.text"
-msgid "<bookmark_value>bitmaps; patterns</bookmark_value><bookmark_value>areas; bitmap patterns</bookmark_value><bookmark_value>pixel patterns</bookmark_value><bookmark_value>pixel editor</bookmark_value><bookmark_value>pattern editor</bookmark_value>"
-msgstr "<bookmark_value>bittikartat; kuviot</bookmark_value><bookmark_value>alueet; bittikarttakuviot</bookmark_value><bookmark_value>kuvapistekuviot</bookmark_value><bookmark_value>kuvapistemuokkain</bookmark_value><bookmark_value>kuviomuokkain</bookmark_value>"
+msgid "<bookmark_value>bitmaps; areas</bookmark_value><bookmark_value>areas; bitmap</bookmark_value>"
+msgstr ""
#. 2jwXu
#: 05210500.xhp
@@ -27223,68 +26926,221 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210500.xhp\" name=\"Bitmap\">Bitmap</link>"
msgstr "<link href=\"text/shared/01/05210500.xhp\" name=\"Bittikartta\">Bittikartta</link>"
-#. yFYuj
+#. Xc6qZ
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"par_id3149495\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BitmapTabPage\">Select a bitmap that you want to use as a fill pattern, or create your own pixel pattern. You can also import bitmaps, and save or load bitmap lists.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/BitmapTabPage\">Valitaan täyttökuviona käytettävä bittikartta tai luodaan oma kuvapistekuvio. Bittikarttoja voidaan myös tuoda ja tallentaa tai ladata bittikarttaluetteloita.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BitmapTabPage\">Select a bitmap that you want to use as a fill image, or add your own bitmap pattern.</ahelp>"
+msgstr ""
-#. FvnTh
+#. wEhVG
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"hd_id3148585\n"
"help.text"
-msgid "Pattern Editor"
-msgstr "Kuvioeditori"
+msgid "Bitmap"
+msgstr ""
-#. aqBHc
+#. 8ZuCa
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"par_id3147226\n"
"help.text"
-msgid "Use this editor to create a simple, two-color, 8x8 pixel bitmap pattern."
-msgstr "Tätä muokkainta käytetään yksinkertaisten, kaksiväristen, 8x8 kuvapisteen bittikarttakuvioiden laatimiseen."
+msgid "Lists the available bitmaps. You can also import bitmaps."
+msgstr ""
+
+#. eCeUD
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id501592872056000\n"
+"help.text"
+msgid "To rename a bitmap, select the bitmap, right-click and choose <menuitem>Rename</menuitem>. To delete a bitmap, select the bitmap, right-click and choose <menuitem>Delete</menuitem>."
+msgstr ""
+
+#. MqVdD
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id71592866308524\n"
+"help.text"
+msgid "Add/Import"
+msgstr ""
+
+#. SGKZW
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3148473\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_IMPORT\">Locate the bitmap that you want to import, and then click <emph>Open</emph>. The bitmap is added to the end of the list of available bitmaps.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_IMPORT\">Paikallistetaan tuotava bittikartta ja sitten napsautetaan <emph>Avaa</emph>. Bittikartta lisätään saatavilla olevien bittikarttojen luettelon loppuun.</ahelp>"
+
+#. EBwza
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id301592866270627\n"
+"help.text"
+msgid "Imported bitmaps are saved in your user profile and can be used in other documents."
+msgstr ""
-#. C9Reo
+#. pC4QD
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"hd_id3145669\n"
"help.text"
-msgid "Grid"
+msgid "Options"
msgstr ""
-#. N9L3c
+#. smwef
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
-"par_id3150774\n"
+"hd_id251592868388253\n"
"help.text"
-msgid "To enable this editor, select the <emph>Blank</emph> bitmap in the bitmap list."
-msgstr "Muokkaimen käyttämiseksi valitaan <emph>tyhjä</emph> bittikartta bittikarttaluettelosta."
+msgid "Style"
+msgstr ""
-#. BJwLt
+#. GnwjN
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
-"hd_id3149516\n"
+"par_id241592868416096\n"
"help.text"
-msgid "Import"
+msgid "<emph>Tiled</emph>: Fill the area with the bitmap as tiles."
msgstr ""
-#. SGKZW
+#. gCgdA
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
-"par_id3148473\n"
+"par_id161592868421600\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_IMPORT\">Locate the bitmap that you want to import, and then click <emph>Open</emph>. The bitmap is added to the end of the list of available bitmaps.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_IMPORT\">Paikallistetaan tuotava bittikartta ja sitten napsautetaan <emph>Avaa</emph>. Bittikartta lisätään saatavilla olevien bittikarttojen luettelon loppuun.</ahelp>"
+msgid "<emph>Stretched</emph>: Stretch the image to fit the object area."
+msgstr ""
+
+#. Fi4Fj
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id651592868426975\n"
+"help.text"
+msgid "<emph>Custom position/size</emph>: Set a custom size and position of the bitmap in the object area."
+msgstr ""
+
+#. sAiUV
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id151592868900345\n"
+"help.text"
+msgid "Size"
+msgstr ""
+
+#. TeFTN
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id321592869205683\n"
+"help.text"
+msgid "Size of the tiles and the custom size."
+msgstr ""
+
+#. rTjAd
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id951592869294738\n"
+"help.text"
+msgid "<emph>Width</emph>: Set the width of the tile or custom size."
+msgstr ""
+
+#. RQFrq
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id171592869301228\n"
+"help.text"
+msgid "<emph>Height</emph>: Set the height of the tile or custom size."
+msgstr ""
+
+#. twwdD
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id351592869651411\n"
+"help.text"
+msgid "<emph>Scale</emph>: Mark to turn the height and width settings relative to original size."
+msgstr ""
+
+#. QEYV9
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id201592869695805\n"
+"help.text"
+msgid "Position"
+msgstr ""
+
+#. 8qFYv
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id321592869780471\n"
+"help.text"
+msgid "Select the anchoring position of the bitmap image inside the object area."
+msgstr ""
+
+#. WKmCj
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id791592870139336\n"
+"help.text"
+msgid "Tiling Position"
+msgstr ""
+
+#. 286Bv
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id811592870169715\n"
+"help.text"
+msgid "<emph>X-Offset</emph>: Set the horizontal bitmap offset value with respect to the anchoring position."
+msgstr ""
+
+#. w8e6v
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id41592870267463\n"
+"help.text"
+msgid "<emph>Y-Offset</emph>: Set the vertical bitmap offset value with respect to the anchoring position."
+msgstr ""
+
+#. FeN7H
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id631592870132856\n"
+"help.text"
+msgid "Tiling Offset"
+msgstr ""
+
+#. ogBQB
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id111592870375812\n"
+"help.text"
+msgid "Select the tiles offset in rows or columns. Use the spin button to specify the offset value."
+msgstr ""
#. wAHtP
#: 05210600.xhp
@@ -27448,14 +27304,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FillShadow\">Adds a shadow to the selected object. If the object already has a shadow, the shadow is removed. If you click this icon when no object is selected, the shadow is added to the next object that you draw.</ahelp>"
msgstr "<ahelp hid=\".uno:FillShadow\">Lisätään valittuun objektiin varjo. Jos objektissa on jo varjo, varjo poistetaan. Jos kuvaketta napsautetaan, kun yhtään objektia ei ole valittuna, varjo lisätään seuraavaan piirrettävään objektiin.</ahelp>"
-#. DK9fc
+#. gjXA8
#: 05210600.xhp
msgctxt ""
"05210600.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149045\">Icon Add Shadow</alt></image>"
+msgstr ""
#. 6XJUi
#: 05210600.xhp
@@ -27736,6 +27592,177 @@ msgctxt ""
msgid "Use the preview to view your changes before you apply the transparency effect to the color fill of the selected object."
msgstr "Esikatselunäkymässä tarkastellaan muutosta ennen läpinäkyvyystehosteen lopullista käyttämistä valitun objektin täyteväriin."
+#. UE76G
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"tit\n"
+"help.text"
+msgid "Pattern"
+msgstr ""
+
+#. 5FVqC
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"bm_id431592861834899\n"
+"help.text"
+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
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"hd_id801592861657875\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210800.xhp\" name=\"pattern\">Pattern</link>"
+msgstr ""
+
+#. qLwKU
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"par_id3153626\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Fills the object with a simple two color pattern selected on this page.</ahelp>"
+msgstr ""
+
+#. p5uGC
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"hd_id3159147\n"
+"help.text"
+msgid "Pattern"
+msgstr ""
+
+#. KW3Ah
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"par_id3149955\n"
+"help.text"
+msgid "Lists the available patterns. You can also modify or create your own pattern."
+msgstr ""
+
+#. rpQaV
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"par_id161584528499683\n"
+"help.text"
+msgid "To rename a pattern, select the pattern, right-click and choose <menuitem>Rename</menuitem>. To delete a pattern, select the pattern, right-click and choose <menuitem>Delete</menuitem>."
+msgstr ""
+
+#. VrE5t
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"hd_id3153823\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. 8fyh4
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"par_id3148924\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_ADD\">Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button.</ahelp>"
+msgstr ""
+
+#. 5waZ4
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"hd_id3147620\n"
+"help.text"
+msgid "Modify"
+msgstr ""
+
+#. BSeBy
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"par_id3156023\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_MODIFY\">Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name.</ahelp>"
+msgstr ""
+
+#. WCFwi
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"hd_id3156042\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. CVD9L
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"par_id3147291\n"
+"help.text"
+msgid "Draw or modify a pattern."
+msgstr ""
+
+#. ruCpD
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"hd_id3147834\n"
+"help.text"
+msgid "Pattern Editor"
+msgstr ""
+
+#. rFfJm
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"par_id3147010\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/patterntabpage/CTL_PIXEL\">Draw the pattern in the 8 x 8 pixel board. Click on a pattern pixel to activate it, click again to deactivate it.</ahelp>"
+msgstr ""
+
+#. hNAPN
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"hd_id3155355\n"
+"help.text"
+msgid "Foreground Color"
+msgstr ""
+
+#. sHjjw
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"par_id3156410\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/patterntabpage/LB_COLOR\">Set the color of the activated pattern pixels.</ahelp>"
+msgstr ""
+
+#. nh8wk
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"hd_id3155449\n"
+"help.text"
+msgid "Background Color"
+msgstr ""
+
+#. JqSDi
+#: 05210800.xhp
+msgctxt ""
+"05210800.xhp\n"
+"par_id3152909\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/patterntabpage/LB_BACKGROUND_COLOR\">Set the color of the deactivated pattern pixels.</ahelp>"
+msgstr ""
+
#. fZrDg
#: 05220000.xhp
msgctxt ""
@@ -28078,14 +28105,14 @@ msgctxt ""
msgid "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">Resizes, moves, rotates, or slants the selected object.</ahelp></variable>"
msgstr "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">Valittua objektia muutetaan kooltaan, siirretään, kierretään tai kallistetaan.</ahelp></variable>"
-#. iCG88
+#. cCmAB
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"tit\n"
"help.text"
-msgid "Position and Size"
-msgstr "Sijainti ja koko"
+msgid "Position and Size (Text Box and Shape)"
+msgstr ""
#. rrFri
#: 05230100.xhp
@@ -28132,6 +28159,33 @@ msgctxt ""
msgid "Specify the location of the selected object on the page."
msgstr "Määritetään valitun objektin sijainti sivulla."
+#. d3DpU
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id891602774200160\n"
+"help.text"
+msgid "Coordinate axes start at column A - row 1."
+msgstr ""
+
+#. TZgsN
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id711602774229336\n"
+"help.text"
+msgid "X-coordinates are negative in a \"right-to-left\" table."
+msgstr ""
+
+#. FkhZd
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id491602774311111\n"
+"help.text"
+msgid "Coordinates are relative to the origin. Left/top corner of the page content area is the initial default."
+msgstr ""
+
#. Snfmr
#: 05230100.xhp
msgctxt ""
@@ -28141,14 +28195,14 @@ msgctxt ""
msgid "Position X"
msgstr "Sijainti X"
-#. tATRR
+#. Tjtwk
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id3155616\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_X\">Enter the horizontal distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_X\">Annetaan objektin kohdistusruudukosta valitun peruspisteen ja sivun alkupisteen vaakaetäisyys.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_X\">Enter the horizontal coordinate where the selected base point should be placed.</ahelp>"
+msgstr ""
#. qHcAA
#: 05230100.xhp
@@ -28159,14 +28213,14 @@ msgctxt ""
msgid "Position Y"
msgstr "Sijainti Y"
-#. FQeFo
+#. XK2NJ
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id3147373\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_Y\">Enter the vertical distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_Y\">Annetaan objektin kohdistusruudukosta valitun peruspisteen ja sivun alkupisteen pystyetäisyys.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_Y\">Enter the vertical coordinate where the selected base point should be placed.</ahelp>"
+msgstr ""
#. AWT9v
#: 05230100.xhp
@@ -28177,14 +28231,23 @@ msgctxt ""
msgid "Base point"
msgstr "Peruspiste"
-#. KshEF
+#. aDpsB
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/possizetabpage/CTL_POSRECT\">Click a base point in the grid, and then enter the amount that you want to shift the object relative to the base point that you selected in the <emph>Position Y</emph> and <emph>Position X</emph> boxes. The base points correspond to the selection handles on an object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/possizetabpage/CTL_POSRECT\">Napsautetaan ensin peruspistettä kohdistusruudukossa ja annetaan sitten sille etäisyys suhteessa sivun alkupisteeseen syöttämällä arvot <emph>Sijainti Y</emph> ja <emph>Sijainti X</emph> -ruutuihin. Peruspisteet vastaavat objektin kahvoja.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/possizetabpage/CTL_POSRECT\">The selected base point will be moved to the specified <emph>Position Y</emph> and <emph>Position X</emph>.</ahelp>"
+msgstr ""
+
+#. cE49F
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id61602773901231\n"
+"help.text"
+msgid "The base point always returns to the left/top corner on reopening the dialog."
+msgstr ""
#. 2qMEV
#: 05230100.xhp
@@ -28195,14 +28258,23 @@ msgctxt ""
msgid "Size"
msgstr "Koko"
-#. ktfq3
+#. TQVAT
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id31507749753\n"
+"help.text"
+msgid "Specify the size of the selected object."
+msgstr ""
+
+#. oaVxX
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id3150774\n"
"help.text"
-msgid "Specify the amount by which you want to resize the selected object with respect to the selected base point ."
-msgstr "Annetaan valitun objektin uudet mitat ja määritetään objektin paikallaan pysyvä peruspiste ."
+msgid "Resize the selected object to the chosen width and height relative to the selected base point."
+msgstr ""
#. gfmHb
#: 05230100.xhp
@@ -28249,14 +28321,41 @@ msgctxt ""
msgid "Keep ratio"
msgstr "Säilytä mittasuhteet"
-#. yFc8B
+#. LGisF
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id3155341\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/possizetabpage/CBX_SCALE\">Maintains proportions when you resize the selected object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/possizetabpage/CBX_SCALE\">Valitun objektin kokoa muutettaessa sen suhteet säilytetään.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/possizetabpage/CBX_SCALE\">Maintains the width and height ratio when changing the width or height setting in the dialog box.</ahelp>"
+msgstr ""
+
+#. RS3Rj
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id501602631263504\n"
+"help.text"
+msgid "Only for shapes."
+msgstr ""
+
+#. D3kAe
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"hd_id731601417097805\n"
+"help.text"
+msgid "To frame"
+msgstr ""
+
+#. WRzKk
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id181601417265098\n"
+"help.text"
+msgid "<ahelp hid=\".\">Anchors the selection to the surrounding frame.</ahelp>"
+msgstr ""
#. uREAs
#: 05230100.xhp
@@ -28276,6 +28375,15 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/possizetabpage/CTL_SIZERECT\">Click a base point in the grid, and then enter the new size dimensions for the selected object in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/possizetabpage/CTL_SIZERECT\">Valitaan ensin paikallaan pysyvä objektin peruspiste ja annetaan sitten valitun objektin uudet mitat <emph>Leveys</emph>- ja <emph>Korkeus</emph>-kenttiin.</ahelp>"
+#. UvHvA
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id501602631133297\n"
+"help.text"
+msgid "The selected base point remains fixed in the grid. The object is resized relative to that point."
+msgstr ""
+
#. J2shX
#: 05230100.xhp
msgctxt ""
@@ -28294,14 +28402,14 @@ msgctxt ""
msgid "Position"
msgstr "Sijainti"
-#. m6gAx
+#. bGw8F
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id3149784\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/possizetabpage/TSB_POSPROTECT\">Prevents changes to the position or the size of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/possizetabpage/TSB_POSPROTECT\">Estetään valitun objektin sijainnin tai koon muuttaminen.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/possizetabpage/TSB_POSPROTECT\">Prevents changes to the position and size of the selected object.</ahelp>"
+msgstr ""
#. jqJ6D
#: 05230100.xhp
@@ -28375,14 +28483,50 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/possizetabpage/TSB_AUTOGROW_HEIGHT\">Expands the height of the object to the height of the text, if the object is smaller than the text.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/possizetabpage/TSB_AUTOGROW_HEIGHT\">Laajennetaan objektin korkeutta tekstin korkuiseksi, jos objekti on tekstiä pienempi.</ahelp>"
-#. zVoLa
+#. tVSpE
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id841603276770477\n"
+"help.text"
+msgid "<variable id=\"AdaptNote\">Adapt is only available for Text Boxes. To adapt Shapes to text, use</variable> <menuitem>Format - Object - Text</menuitem>."
+msgstr ""
+
+#. fqg3X
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id591602522244128\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/01/05230100.xhp#AdaptNote\"/> <menuitem>Format - Text</menuitem>."
+msgstr ""
+
+#. F5Va7
#: 05230100.xhp
msgctxt ""
"05230100.xhp\n"
"par_id3145606\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Anchor types\">Anchor types</link>"
-msgstr "<link href=\"text/shared/01/05260000.xhp\" name=\"Ankkurityypit\">Ankkurityypit</link>"
+msgid "<link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Anchor types\">Positioning Objects</link>"
+msgstr ""
+
+#. jswWJ
+#: 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>"
+msgstr ""
+
+#. NxdaT
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id3145624967\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05230300.xhp\" name=\"Rotation\">Rotation</link>"
+msgstr ""
#. UuCyG
#: 05230300.xhp
@@ -28411,14 +28555,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/Rotation\">Rotates the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/Rotation\">Valittua objektia kierretään.</ahelp>"
-#. kEn4i
+#. pB7Dj
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3148983\n"
"help.text"
-msgid "Pivot point"
-msgstr "Keskipiste"
+msgid "Pivot Point"
+msgstr ""
#. Zzs3U
#: 05230300.xhp
@@ -28438,14 +28582,14 @@ msgctxt ""
msgid "If you set a pivot point too far outside of the object boundaries, the object could be rotated off of the page."
msgstr "Jos kierron keskipiste asetetaan liian kauas objektin rajojen ulkopuolelle, objekti voi kiertyä pois sivulta."
-#. aFBHq
+#. FRRzG
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3145382\n"
"help.text"
-msgid "X Position"
-msgstr "Sijainti X"
+msgid "Position X"
+msgstr ""
#. yxcU2
#: 05230300.xhp
@@ -28456,14 +28600,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/MTR_FLD_POS_X\">Enter the horizontal distance from the left edge of the page to the pivot point.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/MTR_FLD_POS_X\">Annetaan vaakaetäisyys sivun vasemmasta reunasta kiertoakseliin.</ahelp>"
-#. BWKfU
+#. RMUdu
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3155323\n"
"help.text"
-msgid "Y Position"
-msgstr "Sijainti Y"
+msgid "Position Y"
+msgstr ""
#. oRJxp
#: 05230300.xhp
@@ -28474,13 +28618,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/MTR_FLD_POS_Y\">Enter the vertical distance from the top edge of the page to the pivot point.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/MTR_FLD_POS_Y\">Annetaan pystyetäisyys sivun yläreunasta kiertoakseliin.</ahelp>"
-#. pFK39
+#. wMC2g
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3153332\n"
"help.text"
-msgid "Defaults"
+msgid "Default settings"
msgstr ""
#. icmC7
@@ -28492,13 +28636,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/CTL_RECT\">Click where you want to place the pivot point.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/CTL_RECT\">Napsautetaan siellä, minne keskipiste halutaan.</ahelp>"
-#. HEbt4
+#. D9Mc3
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3146847\n"
"help.text"
-msgid "Rotation angle"
+msgid "Rotation Angle"
msgstr ""
#. owCBC
@@ -28528,14 +28672,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/NF_ANGLE\">Enter the number of degrees that you want to rotate the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/NF_ANGLE\">Annetaan astemäärä valitun objektin kiertämiselle.</ahelp>"
-#. ECUGH
+#. fnugw
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3148474\n"
"help.text"
-msgid "Defaults"
-msgstr "Oletusasetukset"
+msgid "Default settings"
+msgstr ""
#. EvNrr
#: 05230300.xhp
@@ -28555,14 +28699,14 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr "Kallistus- ja kulmasäde"
-#. JuafH
+#. FKWxd
#: 05230400.xhp
msgctxt ""
"05230400.xhp\n"
"bm_id3149988\n"
"help.text"
-msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value>"
-msgstr "<bookmark_value>kallistus piirrosobjekteille</bookmark_value><bookmark_value>piirrokset; kallistus</bookmark_value><bookmark_value>alueet; kallistus</bookmark_value>"
+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
#: 05230400.xhp
@@ -28645,14 +28789,50 @@ msgctxt ""
msgid "Angle"
msgstr "Kulma"
-#. RZJiu
+#. wuSBC
#: 05230400.xhp
msgctxt ""
"05230400.xhp\n"
"par_id3153683\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/slantcornertabpage/MTR_FLD_ANGLE\">Enter the angle of the slant axis.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/slantcornertabpage/MTR_FLD_ANGLE\">Annetaan kallistusakselin kulma.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/slantcornertabpage/MTR_FLD_ANGLE\">Enter the angle of the slant axis.</ahelp>. The slant angle relates to how much an object inclines or slants from its normal vertical position."
+msgstr ""
+
+#. cCmPK
+#: 05230400.xhp
+msgctxt ""
+"05230400.xhp\n"
+"hd_id621600964074859\n"
+"help.text"
+msgid "Control points 1 and 2"
+msgstr ""
+
+#. XXRdh
+#: 05230400.xhp
+msgctxt ""
+"05230400.xhp\n"
+"par_id551600994115345\n"
+"help.text"
+msgid "Some shapes have a special handle which you can drag to change the properties of the shape. The mouse pointer changes to a hand symbol over these special handles. The control points refers to the X and Y coordinates of the position of these handles. When the object has no handle, the values in these boxes are zero. When the shape has one control point, the coordinates of the other control point are zero."
+msgstr ""
+
+#. fbzxN
+#: 05230400.xhp
+msgctxt ""
+"05230400.xhp\n"
+"par_id841600966950007\n"
+"help.text"
+msgid "Enter a value to set the X and Y coordinates of the control points of the object."
+msgstr ""
+
+#. wGED2
+#: 05230400.xhp
+msgctxt ""
+"05230400.xhp\n"
+"par_id911600993420542\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sdraw/control_points.png\" id=\"img_id691600993420543\"><alt id=\"alt_id651600993420544\">Control points in a shape</alt></image>"
+msgstr ""
#. m8GMy
#: 05230500.xhp
@@ -32020,15 +32200,6 @@ msgctxt ""
msgid "<variable id=\"spaltformtext\"><ahelp hid=\"HID_BROWSER_COLUMNFORMAT\" visibility=\"visible\">Formats the selected column(s).</ahelp></variable>"
msgstr "<variable id=\"spaltformtext\"><ahelp hid=\"HID_BROWSER_COLUMNFORMAT\" visibility=\"visible\">Muotoillaan valittuja sarakkeita.</ahelp></variable>"
-#. MdMcn
-#: 05340405.xhp
-msgctxt ""
-"05340405.xhp\n"
-"hd_id3150620\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format\">Format</link>"
-msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Muotoilu\">Muotoilu</link>"
-
#. B5CTG
#: 05340500.xhp
msgctxt ""
@@ -33856,32 +34027,41 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/docking3deffects/intensity\">Enter the intensity of the specular effect.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/docking3deffects/intensity\">Annetaan peiliheijastuksen voimakkuus.</ahelp>"
-#. 6Aadk
+#. K5YP7
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"tit\n"
"help.text"
-msgid "Distribution"
-msgstr "Jakauma"
+msgid "Distribute"
+msgstr ""
+
+#. Wmrwt
+#: 05360000.xhp
+msgctxt ""
+"05360000.xhp\n"
+"bm_id21601641916305\n"
+"help.text"
+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 ""
-#. FwmnE
+#. suNMy
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"hd_id3154812\n"
"help.text"
-msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribution</link>"
-msgstr "<link href=\"text/shared/01/05360000.xhp\" name=\"Välien tasaus\">Välien tasaus</link>"
+msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribute Selection</link>"
+msgstr ""
-#. D3A3r
+#. qsB33
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"par_id3149119\n"
"help.text"
-msgid "<variable id=\"verteilungtext\"><ahelp hid=\".uno:DistributeSelection\">Distributes three or more selected objects evenly along the horizontal axis or the vertical axis. You can also evenly distribute the spacing between objects.</ahelp></variable>"
-msgstr "<variable id=\"verteilungtext\"><ahelp hid=\".uno:DistributeSelection\">Jaetaan kolme tai useampia objekteja tasaisesti vaaka-akselin tai pysty-akselin suuntaisesti. Myös objektien välit voidaan tasata.</ahelp></variable>"
+msgid "<ahelp hid=\".uno:DistributeSelection\">Distributes three or more selected objects evenly along the horizontal axis or the vertical axis. You can also evenly distribute the spacing between objects.</ahelp>"
+msgstr ""
#. Zydiv
#: 05360000.xhp
@@ -33892,6 +34072,15 @@ msgctxt ""
msgid "Objects are distributed with respect to the outermost objects in the selection."
msgstr "Objektien välit tasataan suhteessa valinnan ulommaisimpiin objekteihin."
+#. ywEpj
+#: 05360000.xhp
+msgctxt ""
+"05360000.xhp\n"
+"par_id311601648361449\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sdraw/distribute-orig.svg\" id=\"img_id11601648361449\" width=\"416px\" height=\"300px\"><alt id=\"alt_id791601648361450\">Original object distribution</alt></image>"
+msgstr ""
+
#. 3h7pC
#: 05360000.xhp
msgctxt ""
@@ -33910,95 +34099,113 @@ msgctxt ""
msgid "Specify the horizontal distribution for the selected objects."
msgstr "Määritetään valittujen objektien välien vaakatasaus."
-#. qg3rz
+#. 8acTp
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"hd_id3149276\n"
+"hd_id3148990\n"
"help.text"
-msgid "None"
-msgstr "Ei mitään"
+msgid "Horizontally Left"
+msgstr ""
-#. ndZ6W
+#. wkTTC
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"par_id3147618\n"
+"par_id3159269\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/hornone\">Does not distribute the objects horizontally.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/hornone\">Objektien välejä ei tasataan vaakasuunnassa.</ahelp>"
+msgid "<ahelp hid=\".uno:DistributeHorzLeft\">Distributes the selected objects, so that the left edges of the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
-#. UJ5Ai
+#. hQpFA
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"hd_id3148990\n"
+"par_id381601648619454\n"
"help.text"
-msgid "Left"
-msgstr "Vasen"
+msgid "<image src=\"media/helpimg/sdraw/distribute-HL.svg\" id=\"img_id131601648619455\" width=\"416px\" height=\"300px\"><alt id=\"alt_id551601648619456\">Object distribution horizontally left</alt></image>"
+msgstr ""
-#. QpZ8C
+#. cT8gY
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"par_id3159269\n"
+"hd_id3150130\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/horleft\">Distributes the selected objects, so that the left edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/horleft\">Tasataan valittujen objektien välit, niin että objektien vasemmat reunat ovat tasavälein.</ahelp>"
+msgid "Horizontally Center"
+msgstr ""
-#. KpvCK
+#. JWvSE
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"hd_id3150130\n"
+"par_id3153146\n"
"help.text"
-msgid "Center"
-msgstr "Keskitä"
+msgid "<ahelp hid=\".uno:DistributeHorzCenter\">Distributes the selected objects, so that the horizontal centers of the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
-#. JDS9Q
+#. 8jGYq
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"par_id3153146\n"
+"par_id861601648972377\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/horcenter\">Distributes the selected objects, so that the horizontal centers of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/horcenter\">Jaetaan valitut objektit, niin että objektien keskikohdat ovat vaakasuunnassa tasavälein.</ahelp>"
+msgid "<image src=\"media/helpimg/sdraw/distribute-HC.svg\" id=\"img_id101601648972378\" width=\"416px\" height=\"300px\"><alt id=\"alt_id321601648972379\">Object distribution horizontally center</alt></image>"
+msgstr ""
-#. toVEx
+#. ZdBdK
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"hd_id3147574\n"
"help.text"
-msgid "Spacing"
-msgstr "Välistys"
+msgid "Horizontally Spacing"
+msgstr ""
-#. mhBQg
+#. 6iCwM
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"par_id3148924\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/hordistance\">Distributes the selected objects horizontally, so that the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/hordistance\">Tasataan valittujen objektien välit vaakasuunnassa, niin että objektit ovat tasavälein.</ahelp>"
+msgid "<ahelp hid=\".uno:DistributeHorzDistance\">Distributes the selected objects horizontally, so that the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
+
+#. UpymG
+#: 05360000.xhp
+msgctxt ""
+"05360000.xhp\n"
+"par_id821601649033088\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sdraw/distribute-HS.svg\" id=\"img_id411601649033089\" width=\"416px\" height=\"300px\"><alt id=\"alt_id651601649033090\">Object distribution horizontally spaced evenly</alt></image>"
+msgstr ""
-#. BDQF5
+#. xjBSF
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"hd_id3155390\n"
"help.text"
-msgid "Right"
-msgstr "Oikea"
+msgid "Horizontally Right"
+msgstr ""
-#. arrPo
+#. FTkZn
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"par_id3153252\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/horright\">Distributes the selected objects, so that the right edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/horright\">Tasataan valittujen objektien välit, niin että objektien oikeat reunat ovat tasavälein.</ahelp>"
+msgid "<ahelp hid=\".uno:DistributeHorzRight\">Distributes the selected objects, so that the right edges of the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
+
+#. 4fC4G
+#: 05360000.xhp
+msgctxt ""
+"05360000.xhp\n"
+"par_id541601649087591\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sdraw/distribute-HR.svg\" id=\"img_id321601649087592\" width=\"416px\" height=\"300px\"><alt id=\"alt_id811601649087593\">Object distribution horizontally right</alt></image>"
+msgstr ""
#. ppAtV
#: 05360000.xhp
@@ -34018,95 +34225,113 @@ msgctxt ""
msgid "Specify the vertical distribution for the selected objects."
msgstr "Määritetään valittujen objektien välien pystytasaus."
-#. BAFcq
+#. 8FGye
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"hd_id3148563\n"
+"hd_id3153626\n"
"help.text"
-msgid "None"
-msgstr "Ei mitään"
+msgid "Vertically Top"
+msgstr ""
-#. UVTpA
+#. Jnbia
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"par_id3155922\n"
+"par_id3152361\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/vernone\">Does not distribute the objects vertically.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/vernone\">Objektien välejä ei tasataan pystysuunnassa.</ahelp>"
+msgid "<ahelp hid=\".uno:DistributeVertTop\">Distributes the selected objects, so that the top edges of the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
-#. kDTHw
+#. FRub3
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"hd_id3153626\n"
+"par_id901601655277555\n"
"help.text"
-msgid "Top"
-msgstr "Yläreuna"
+msgid "<image src=\"media/helpimg/sdraw/distribute-VT.svg\" id=\"img_id81601655277556\" width=\"416px\" height=\"300px\"><alt id=\"alt_id671601655277557\">Distribute objects vertically top</alt></image>"
+msgstr ""
-#. PGR8o
+#. t6Fxc
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"par_id3152361\n"
+"hd_id3147264\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/vertop\">Distributes the selected objects, so that the top edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/vertop\">Tasataan valittujen objektien välit, niin että objektien yläreunat ovat tasavälein.</ahelp>"
+msgid "Vertically Center"
+msgstr ""
-#. EDPmA
+#. iJ5uJ
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"hd_id3147264\n"
+"par_id3161656\n"
"help.text"
-msgid "Center"
-msgstr "Keskitä"
+msgid "<ahelp hid=\".uno:DistributeVertCenter\">Distributes the selected objects, so that the vertical centers of the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
-#. 7AkGA
+#. kjsCh
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
-"par_id3161656\n"
+"par_id561601655348463\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/vercenter\">Distributes the selected objects, so that the vertical centers of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/vercenter\">Jaetaan valitut objektit, niin että objektien keskikohdat ovat pystysuunnassa tasavälein.</ahelp>"
+msgid "<image src=\"media/helpimg/sdraw/distribute-VC.svg\" id=\"img_id911601655348464\" width=\"416px\" height=\"300px\"><alt id=\"alt_id71601655348465\">Distribute objects vertically center</alt></image>"
+msgstr ""
-#. SKWXt
+#. eenms
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"hd_id3150865\n"
"help.text"
-msgid "Spacing"
-msgstr "Välistys"
+msgid "Vertically Spacing"
+msgstr ""
-#. CSipY
+#. ZdQ2J
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"par_id3153360\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/verdistance\">Distributes the selected objects vertically, so that the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/verdistance\">Tasataan valittujen objektien välit pystysuunnassa, niin että objektit ovat tasavälein.</ahelp>"
+msgid "<ahelp hid=\".uno:DistributeVertDistance\">Distributes the selected objects vertically, so that the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
+
+#. 6mwyB
+#: 05360000.xhp
+msgctxt ""
+"05360000.xhp\n"
+"par_id121601655395816\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sdraw/distribute-VS.svg\" id=\"img_id711601655395817\" width=\"416px\" height=\"300px\"><alt id=\"alt_id711601655395818\">Object distribution horizontally spaced evenly</alt></image>"
+msgstr ""
-#. rJFFG
+#. 6WiKJ
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"hd_id3154071\n"
"help.text"
-msgid "Bottom"
-msgstr "Alareuna"
+msgid "Vertically Bottom"
+msgstr ""
-#. fCnfk
+#. GsJmx
#: 05360000.xhp
msgctxt ""
"05360000.xhp\n"
"par_id3152771\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/distributionpage/verbottom\">Distributes the selected objects, so that the bottom edges of the objects are evenly spaced from one another.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/distributionpage/verbottom\">Tasataan valittujen objektien välit, niin että objektien alareunat ovat tasavälein.</ahelp>"
+msgid "<ahelp hid=\".uno:DistributeVertBottom\">Distributes the selected objects, so that the bottom edges of the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
+
+#. rSLFJ
+#: 05360000.xhp
+msgctxt ""
+"05360000.xhp\n"
+"par_id891601655444280\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sdraw/distribute-VB.svg\" id=\"img_id931601655444281\" width=\"416px\" height=\"300px\"><alt id=\"alt_id191601655444282\">Distribute objects vertically bottom</alt></image>"
+msgstr ""
#. NLPgX
#: 05990000.xhp
@@ -37429,14 +37654,14 @@ msgctxt ""
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=\"Asetukset-välilehti (Luettelomerkit ja numerointi -valintaikkuna)\">Asetukset-välilehti (Luettelomerkit ja numerointi -valintaikkuna)</link>"
-#. H4VB2
+#. MZF62
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Asetukset"
+msgid "Customize (Bullets and Numbering)"
+msgstr ""
#. QChMa
#: 06050500.xhp
@@ -43018,13 +43243,13 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
msgstr ""
-#. AgbBh
+#. YbTJd
#: addsignatureline.xhp
msgctxt ""
"addsignatureline.xhp\n"
"par_id651526423393786\n"
"help.text"
-msgid "The signature line displays an horizontal line, a location mark, the name, title and e-mail of signer."
+msgid "The signature line displays an horizontal line, a location mark, the name, title and email of signer."
msgstr ""
#. auwte
@@ -43072,13 +43297,13 @@ msgctxt ""
msgid "Email"
msgstr ""
-#. EnpJD
+#. jr5gQ
#: addsignatureline.xhp
msgctxt ""
"addsignatureline.xhp\n"
"par_id111526467993387\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the e-mail of the signer. The email is not displayed in the signature line graphic box, and is be used for the digital signature.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the email of the signer. The email is not displayed in the signature line graphic box, but is used for the digital signature.</ahelp>"
msgstr ""
#. EpDAG
@@ -43135,6 +43360,78 @@ msgctxt ""
msgid "<ahelp hid=\".\">Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature.</ahelp>"
msgstr ""
+#. LjM7Z
+#: certificatepath.xhp
+msgctxt ""
+"certificatepath.xhp\n"
+"tit\n"
+"help.text"
+msgid "Certificate Paths"
+msgstr ""
+
+#. FBox6
+#: certificatepath.xhp
+msgctxt ""
+"certificatepath.xhp\n"
+"bm_id211594767045571\n"
+"help.text"
+msgid "<bookmark_value>digital signatures;certificate path</bookmark_value> <bookmark_value>certificate path</bookmark_value>"
+msgstr ""
+
+#. MhnU5
+#: 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>"
+msgstr ""
+
+#. BuRGD
+#: certificatepath.xhp
+msgctxt ""
+"certificatepath.xhp\n"
+"par_id841594763815175\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/certdialog/CertDialog\">Select or add the correct Network Security Services Certificate directory to use for digital signatures.</ahelp>"
+msgstr ""
+
+#. vCwDA
+#: certificatepath.xhp
+msgctxt ""
+"certificatepath.xhp\n"
+"hd_id511594765946403\n"
+"help.text"
+msgid "Available Certificate Paths"
+msgstr ""
+
+#. NK4GB
+#: certificatepath.xhp
+msgctxt ""
+"certificatepath.xhp\n"
+"par_id981594766097073\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/certdialog/CertDialog/liststore1\">Shows the list of Network Security Services Certificate directory to use for digital signatures.</ahelp>"
+msgstr ""
+
+#. DABZF
+#: certificatepath.xhp
+msgctxt ""
+"certificatepath.xhp\n"
+"hd_id741594764591263\n"
+"help.text"
+msgid "Select NSS path"
+msgstr ""
+
+#. 8gaEP
+#: certificatepath.xhp
+msgctxt ""
+"certificatepath.xhp\n"
+"par_id851594766090600\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/certdialog/CertDialog/add\">Opens a file picker dialog to add a new Network Security Services Certificate directory to the list.</ahelp>"
+msgstr ""
+
#. ViF5g
#: digitalsignatures.xhp
msgctxt ""
@@ -47230,13 +47527,13 @@ msgctxt ""
msgid "PDF Export Digital Signature"
msgstr ""
-#. yMdYf
+#. 9FdeP
#: ref_pdf_export_digital_signature.xhp
msgctxt ""
"ref_pdf_export_digital_signature.xhp\n"
"bm_id761574111929927\n"
"help.text"
-msgid "<bookmark_value>PDF export;digital signature</bookmark_value><bookmark_value>PDF export;sign PDF document</bookmark_value>"
+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
@@ -47419,24 +47716,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank.</ahelp>"
msgstr ""
-#. dDtVb
-#: ref_pdf_export_digital_signature.xhp
-msgctxt ""
-"ref_pdf_export_digital_signature.xhp\n"
-"hd_id14661702\n"
-"help.text"
-msgid "Time Stamp Authority"
-msgstr ""
-
-#. MUvFG
-#: ref_pdf_export_digital_signature.xhp
-msgctxt ""
-"ref_pdf_export_digital_signature.xhp\n"
-"par_id17868892\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows you to optionally select a Time Stamping Authority (TSA) URL. </ahelp>"
-msgstr ""
-
#. Po9jA
#: ref_pdf_export_digital_signature.xhp
msgctxt ""
@@ -47446,15 +47725,6 @@ msgctxt ""
msgid "During the PDF signing process, the TSA will be used to obtain a digitally signed timestamp that is then embedded in the signature. This (RFC 3161) timestamp will allow anyone viewing the PDF to verify when the document was signed."
msgstr ""
-#. aTCsU
-#: ref_pdf_export_digital_signature.xhp
-msgctxt ""
-"ref_pdf_export_digital_signature.xhp\n"
-"par_id39089022\n"
-"help.text"
-msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
-
#. Gnocd
#: ref_pdf_export_digital_signature.xhp
msgctxt ""
@@ -47617,15 +47887,6 @@ msgctxt ""
msgid "Sets the PDF export options for images inside your document."
msgstr ""
-#. eMHjG
-#: ref_pdf_export_general.xhp
-msgctxt ""
-"ref_pdf_export_general.xhp\n"
-"par_idN1071B\n"
-"help.text"
-msgid "EPS images with embedded previews are exported only as previews. EPS images without embedded previews are exported as empty placeholders."
-msgstr ""
-
#. ZszgA
#: ref_pdf_export_general.xhp
msgctxt ""
@@ -47707,6 +47968,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select the target resolution for the images.</ahelp>"
msgstr ""
+#. eMHjG
+#: ref_pdf_export_general.xhp
+msgctxt ""
+"ref_pdf_export_general.xhp\n"
+"par_idN1071B\n"
+"help.text"
+msgid "EPS images with embedded previews are exported only as previews. EPS images without embedded previews are exported as empty placeholders."
+msgstr ""
+
#. ZmGtx
#: ref_pdf_export_general.xhp
msgctxt ""
@@ -47806,22 +48076,31 @@ msgctxt ""
msgid "<ahelp hid=\".\">This setting enables you to export the document as a .pdf file containing two file formats: PDF and ODF.</ahelp> In PDF viewers it behaves like a normal .pdf file and it remains fully editable in %PRODUCTNAME."
msgstr ""
-#. ioGVp
+#. Gdn5A
#: ref_pdf_export_general.xhp
msgctxt ""
"ref_pdf_export_general.xhp\n"
"hd_id2796411\n"
"help.text"
-msgid "Archive (PDF/A ISO 19005)"
+msgid "Archive (PDF/A, ISO 19005)"
msgstr ""
-#. EZ8fR
+#. ELsXa
#: ref_pdf_export_general.xhp
msgctxt ""
"ref_pdf_export_general.xhp\n"
"par_id5016327\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts to the PDF/A-2b or PDF/A-1b format. This is defined as an electronic document file format for long term preservation. All fonts that were used in the source document will be embedded into the generated PDF file. PDF tags will be written.</ahelp>"
+msgid "<ahelp hid=\".\">Converts to the PDF/A-1b, PDF/A-2b, or PDF/A-3b format. All fonts used in the source document are embedded in the generated PDF file, and PDF tags are written. The primary purpose is to create an electronic document whose appearance is device and application independent, making it suitable for long term preservation.</ahelp>"
+msgstr ""
+
+#. RyRdK
+#: ref_pdf_export_general.xhp
+msgctxt ""
+"ref_pdf_export_general.xhp\n"
+"par_id301602634061241\n"
+"help.text"
+msgid "PDF/A-2b is recommended for most users, because it allows for layers and transparency with shapes and images. It also compresses better (JPEG 2000) than PDF/A-1b, usually producing smaller files. PDF/A-3b is identical to PDF/A-2b, but also accepts embedding of other file formats."
msgstr ""
#. UTPZ7
@@ -47923,22 +48202,49 @@ msgctxt ""
msgid "<ahelp hid=\".\">Allows you to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names.</ahelp>"
msgstr ""
-#. JCBTD
+#. 4EM34
+#: ref_pdf_export_general.xhp
+msgctxt ""
+"ref_pdf_export_general.xhp\n"
+"hd_id671602451425200\n"
+"help.text"
+msgid "Structure"
+msgstr ""
+
+#. FWYXV
+#: ref_pdf_export_general.xhp
+msgctxt ""
+"ref_pdf_export_general.xhp\n"
+"par_id51602451783950\n"
+"help.text"
+msgid "Sets options for diverse features such as bookmarks, comments, page layout."
+msgstr ""
+
+#. ZbwvD
#: ref_pdf_export_general.xhp
msgctxt ""
"ref_pdf_export_general.xhp\n"
"hd_id8257087\n"
"help.text"
-msgid "Export bookmarks"
+msgid "Export outlines"
msgstr ""
-#. ne8RR
+#. 72zLQ
#: ref_pdf_export_general.xhp
msgctxt ""
"ref_pdf_export_general.xhp\n"
"par_id3479415\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<item type=\"menuitem\">Tools - Chapter Numbering</item>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (<menuitem>Tools - Chapter Numbering</menuitem>) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
+msgstr ""
+
+#. iTBMB
+#: ref_pdf_export_general.xhp
+msgctxt ""
+"ref_pdf_export_general.xhp\n"
+"par_id71603283849925\n"
+"help.text"
+msgid "Only paragraphs with Outline level 1 - 10 will be exported. The name of the Paragraph Style is irrelevant. For example, the default version of Paragraph Style <emph>Title</emph> is not exported when its Outline level is <emph>Text Body</emph>. To see a paragraph’s Outline level, choose <menuitem>Format - Paragraph</menuitem> <emph> - Outline & Numbering</emph> tab."
msgstr ""
#. PejFz
@@ -48139,13 +48445,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select to generate a PDF file that shows only the page contents.</ahelp>"
msgstr ""
-#. 4ByUi
+#. JjGcM
#: ref_pdf_export_initial_view.xhp
msgctxt ""
"ref_pdf_export_initial_view.xhp\n"
"hd_id7464217\n"
"help.text"
-msgid "Bookmarks and page"
+msgid "Outlines and page"
msgstr ""
#. 8e4Tz
@@ -48418,13 +48724,13 @@ msgctxt ""
msgid "<variable id=\"pdfexportlinksh1\"><link href=\"text/shared/01/ref_pdf_export_links.xhp\" name=\"Links tab\">Links</link></variable>"
msgstr ""
-#. sEKFT
+#. hBEgz
#: ref_pdf_export_links.xhp
msgctxt ""
"ref_pdf_export_links.xhp\n"
"par_id9302346\n"
"help.text"
-msgid "Specify how to export bookmarks and hyperlinks in your document."
+msgid "Specify how to export outlines and hyperlinks in your document."
msgstr ""
#. CDBGh
@@ -48436,13 +48742,13 @@ msgctxt ""
msgid "General"
msgstr ""
-#. GKCBf
+#. zCCpF
#: ref_pdf_export_links.xhp
msgctxt ""
"ref_pdf_export_links.xhp\n"
"hd_id8296151\n"
"help.text"
-msgid "Export bookmarks as named destinations"
+msgid "Export outlines as named destinations"
msgstr ""
#. YmVwd
@@ -48832,6 +49138,177 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select to enable text access for accessibility tools.</ahelp>"
msgstr ""
+#. Eazks
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"tit\n"
+"help.text"
+msgid "Universal Accessibility (PDF Export)"
+msgstr ""
+
+#. 9h83z
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"bm_id791603045631184\n"
+"help.text"
+msgid "<bookmark_value>PDF export;Universal Accessibility</bookmark_value>"
+msgstr ""
+
+#. EJegu
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"hd_id711602623643384\n"
+"help.text"
+msgid "<link href=\"text/shared/01/ref_pdf_export_universal_accessibility.xhp\">Universal Accessibility (PDF/UA)</link>"
+msgstr ""
+
+#. 5iM7L
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id221602623934399\n"
+"help.text"
+msgid "Creates a universal accessibility-complaint PDF file that follows the requirements of PDF/UA (ISO 14289) specifications."
+msgstr ""
+
+#. tLYwU
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id891603046173838\n"
+"help.text"
+msgid "then choose Universal Accessibility (PDF/UA)."
+msgstr ""
+
+#. zBYd6
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id151603044639549\n"
+"help.text"
+msgid "The specification defines the required structure and formatting of a document and PDF features that are better suited for accessibility. This specification can also be used to produce documents that achieve W3C's Web Content Accessibility Guidelines 2.0 (WCAG 2.0)."
+msgstr ""
+
+#. V8cE4
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id701603046818148\n"
+"help.text"
+msgid "The present implementation (January 2020) checks the following:"
+msgstr ""
+
+#. 2EEdB
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id601603042936801\n"
+"help.text"
+msgid "Document title is set."
+msgstr ""
+
+#. QsPya
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id951603042978520\n"
+"help.text"
+msgid "Document language is set, or that all styles in use, have the language set."
+msgstr ""
+
+#. oJPrg
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id951603042984032\n"
+"help.text"
+msgid "All images, graphics, OLE objects have an \"alt\" text (or title in some objects)."
+msgstr ""
+
+#. LNFSf
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id341603042991177\n"
+"help.text"
+msgid "Tables do not include splits or merges."
+msgstr ""
+
+#. SJ8Kd
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id481603043007920\n"
+"help.text"
+msgid "Only integrated numbering is used. No manual numbering (e.g., writing \"1.\" \"2.\" \"3.\" at the beginning of paragraphs."
+msgstr ""
+
+#. ADFrw
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id521603043012471\n"
+"help.text"
+msgid "Hyperlink text is not a hyperlink itself, and hyperlink is described."
+msgstr ""
+
+#. CK2CF
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id521603043019328\n"
+"help.text"
+msgid "Contrast between text and background meets the WCAG specification."
+msgstr ""
+
+#. SFkn5
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id71603043022999\n"
+"help.text"
+msgid "No blinking text."
+msgstr ""
+
+#. NojG4
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id251603043029601\n"
+"help.text"
+msgid "No footnotes and endnotes."
+msgstr ""
+
+#. EMMCG
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id101603043034257\n"
+"help.text"
+msgid "Headings must increase incrementally with no skips (e.g., cannot have Heading 1 to Heading 3, skipping Heading 2)."
+msgstr ""
+
+#. vfTEE
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id281603043041040\n"
+"help.text"
+msgid "Text does not convey additional meaning with (direct) formatting."
+msgstr ""
+
+#. V7hAY
+#: ref_pdf_export_universal_accessibility.xhp
+msgctxt ""
+"ref_pdf_export_universal_accessibility.xhp\n"
+"par_id311603047235460\n"
+"help.text"
+msgid "Check Accessibility before trying to export with <menuitem>Tools - Check Accessibility</menuitem>"
+msgstr ""
+
#. ihxeF
#: ref_pdf_export_user_interface.xhp
msgctxt ""
@@ -49039,77 +49516,77 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select to export Impress slide transition effects to respective PDF effects.</ahelp>"
msgstr ""
-#. QnGof
+#. JqXEP
#: ref_pdf_export_user_interface.xhp
msgctxt ""
"ref_pdf_export_user_interface.xhp\n"
"hd_id9053926\n"
"help.text"
-msgid "Bookmarks"
+msgid "Collapse Outlines"
msgstr ""
-#. jtoVv
+#. cKYhi
#: ref_pdf_export_user_interface.xhp
msgctxt ""
"ref_pdf_export_user_interface.xhp\n"
"hd_id1941892\n"
"help.text"
-msgid "All bookmark levels"
+msgid "Show All"
msgstr ""
-#. 8tTN6
+#. m3Aft
#: ref_pdf_export_user_interface.xhp
msgctxt ""
"ref_pdf_export_user_interface.xhp\n"
"par_id341807\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to show all bookmark levels when the reader opens the PDF file.</ahelp>"
+msgid "<ahelp hid=\".\">Select to show all outline levels as bookmarks when the reader opens the PDF file.</ahelp>"
msgstr ""
-#. VcrQh
+#. MtH4p
#: ref_pdf_export_user_interface.xhp
msgctxt ""
"ref_pdf_export_user_interface.xhp\n"
"hd_id486770\n"
"help.text"
-msgid "Visible bookmark levels"
+msgid "Visible levels"
msgstr ""
-#. ZoAs9
+#. r8MX6
#: ref_pdf_export_user_interface.xhp
msgctxt ""
"ref_pdf_export_user_interface.xhp\n"
"par_id4850001\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to show bookmark levels down to the selected level when the reader opens the PDF file.</ahelp>"
+msgid "<ahelp hid=\".\">Select to show bookmarks down to the selected level when the reader opens the PDF file.</ahelp>"
msgstr ""
-#. HUGki
+#. 5AeZF
#: ref_pdf_send_as.xhp
msgctxt ""
"ref_pdf_send_as.xhp\n"
"tit\n"
"help.text"
-msgid "E-mail as PDF"
-msgstr "Sähköposti PDF:änä"
+msgid "Email as PDF"
+msgstr ""
-#. GJcvX
+#. rAFEF
#: 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=\"E-mail as PDF\">E-mail as PDF</link></variable>"
-msgstr "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"Sähköposti PDF:änä\">Sähköposti PDF:änä</link></variable>"
+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>"
+msgstr ""
-#. CB95G
+#. 7Uvgd
#: ref_pdf_send_as.xhp
msgctxt ""
"ref_pdf_send_as.xhp\n"
"par_id3150756\n"
"help.text"
-msgid "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an e-mail sending window with the PDF as an attachment.</ahelp></variable>"
-msgstr "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Esitetään PDF-asetukset -valintaikkuna, josta käsiteltävä asiakirja viedään PDF-tiedostoksi ja sitten avataan sähköpostin lähetysikkuna PDF-tiedosto liitteenä.</ahelp></variable>"
+msgid "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an email sending window with the PDF as an attachment.</ahelp></variable>"
+msgstr ""
#. wTQMX
#: securitywarning.xhp
@@ -49327,13 +49804,13 @@ msgctxt ""
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
msgstr ""
-#. zBtBC
+#. ohSz3
#: signexistingpdf.xhp
msgctxt ""
"signexistingpdf.xhp\n"
"hd_id201526432498222\n"
"help.text"
-msgid "<variable id=\"signexisitingpdf\"><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\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
msgstr ""
#. RM32g
@@ -49516,6 +49993,114 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
msgstr ""
+#. qMNEB
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"tit\n"
+"help.text"
+msgid "Time Stamp Authorities for Digital Signatures"
+msgstr ""
+
+#. HgFt5
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"bm_id371597437796483\n"
+"help.text"
+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
+#: 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>"
+msgstr ""
+
+#. L47NV
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"par_id961597433114070\n"
+"help.text"
+msgid "Time Stamp Authorities (TSA) issue digitally signed timestamps (RFC 3161) that are optionally used during signed PDF export."
+msgstr ""
+
+#. jcBGy
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"par_id571597434502189\n"
+"help.text"
+msgid "Adding a trusted timestamp to an electronic signature provides a digital seal of data integrity and a trusted date and time of when the transaction took place. Recipients of documents with a trusted timestamp can verify when the document was digitally or electronically signed, as well as verify that the document was not altered after the date the timestamp vouches for."
+msgstr ""
+
+#. HP6fQ
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"par_id721597436315261\n"
+"help.text"
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Security - TSAs</menuitem>"
+msgstr ""
+
+#. n27rF
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"hd_id281597438357127\n"
+"help.text"
+msgid "List of Time Stamp Authorities"
+msgstr ""
+
+#. Msech
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"par_id701597438367251\n"
+"help.text"
+msgid "Display the list of existing TSAs."
+msgstr ""
+
+#. 2TESq
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"par_idN106871\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. vZdyd
+#: 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."
+msgstr ""
+
+#. stnAc
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"hd_id251597435168013\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. PPq6D
+#: timestampauth.xhp
+msgctxt ""
+"timestampauth.xhp\n"
+"par_id381597435161810\n"
+"help.text"
+msgid "Deletes the selected entry in the list. Deletion is immediate and does not display a confirmation dialog."
+msgstr ""
+
#. m3D8J
#: webhtml.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/shared/02.po b/source/fi/helpcontent2/source/text/shared/02.po
index fd3d10dd4a6..11781b77319 100644
--- a/source/fi/helpcontent2/source/text/shared/02.po
+++ b/source/fi/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-09-24 21:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/fi/>\n"
@@ -664,14 +664,14 @@ msgctxt ""
msgid "<variable id=\"formulartext\"><ahelp hid=\".uno:Config\">The <emph>Form Controls</emph> toolbar or sub-menu contains tools that you need to create an interactive form.</ahelp></variable> You can use the toolbar or sub-menu to add controls to a form in a text, drawing, spreadsheet, presentation, or HTML document, for example a button that runs a macro."
msgstr ""
-#. EiFpa
+#. Z7evv
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id1027200809391346\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Toolbars - Form Controls</item>."
-msgstr "Valitse <item type=\"menuitem\">Näytä - Työkalurivit - Lomakkeen ohjausobjektit</item>."
+msgid "Choose <menuitem>View - Toolbars - Form Controls</menuitem>."
+msgstr ""
#. XcM3i
#: 01170000.xhp
@@ -727,15 +727,6 @@ msgctxt ""
msgid "When you create a form in an HTML document, you can use the form to send data over the Internet."
msgstr "Kun lomake luodaan HTML-asiakirjaan, lomaketta voi käyttää tietojen lähettämiseen Internetin kautta."
-#. fqYMr
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_id3145171\n"
-"help.text"
-msgid "%PRODUCTNAME only exports the form properties that are supported by the HTML version that you export to. To specify the HTML version, 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>."
-msgstr "%PRODUCTNAME vie vain ne lomakkeen ominaisuudet, joita tuetaan HTML-versiossa, johon viedään. HTML-version määrittämiseksi valitaan <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Asetukset</caseinline><defaultinline>Työkalut - Asetukset</defaultinline></switchinline> - Lataus ja tallennus - HTML-yhteensopivuus</emph>- sivu."
-
#. pFHQM
#: 01170000.xhp
msgctxt ""
@@ -754,31 +745,31 @@ msgctxt ""
msgid "On the <emph>Form Controls</emph> toolbar, click the icon of the control that you want to add."
msgstr ""
-#. WQiHx
+#. hFmck
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_idN10C4D\n"
"help.text"
-msgid "In the document, drag to create the control."
-msgstr "Luo ohjausobjekti asiakirjassa vetämällä."
+msgid "Then click in the document, and drag to create the control."
+msgstr ""
-#. apLtS
+#. DZxBa
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_idN10C50\n"
"help.text"
-msgid "To create a square control field, hold down the <emph>Shift</emph> key while you drag."
+msgid "To create a square control field, hold down the <keycode>Shift</keycode> key while you drag."
msgstr ""
-#. TFtDC
+#. muefe
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3154127\n"
"help.text"
-msgid "To add a field from the field list of a table or query to a form, drag a cell into the form. In a text document, you can also drag a column header to add a field to a form. To include a label for the field, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Shift</emph> key down when you drag a column head."
+msgid "To add a field from the field list of a table or query to a form, drag a cell into the form. In a text document, you can also drag a column header to add a field to a form. To include a label for the field, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>Shift</keycode> when you drag a column head."
msgstr ""
#. sak4W
@@ -826,14 +817,14 @@ msgctxt ""
msgid "Select"
msgstr "Valitse"
-#. WfRkw
+#. RGwii
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3156106\n"
"help.text"
-msgid "<image id=\"img_id3153516\" src=\"cmd/sc_drawselect.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153516\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153516\" src=\"cmd/sc_drawselect.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153516\">Kuvake, jossa kohdistinnuoli</alt></image>"
+msgid "<image id=\"img_id3153516\" src=\"cmd/sc_drawselect.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153516\">Icon</alt></image>"
+msgstr ""
#. G4itx
#: 01170000.xhp
@@ -7918,41 +7909,41 @@ msgctxt ""
msgid "From the table control, the individual columns are always transmitted. The name of the control, the name of the column, and the value of the column are sent. Using the Get method with URL encoding, the transmission is done in the form <Name of the table control>.<Name of the column>=<Value>, for example, with the value being dependent on the column."
msgstr "Taulukon ohjausobjektista yksittäiset sarakkeet siirretään aina. Ohjausobjektin nimi, sarakkeen nimi ja sarakkeen arvo lähetetään. Käyttämällä Get-metodia URL-koodauksen kera lähetys tapahtuu muodossa <taulukon ohjausobjektin nimi>.<sarakkeen nimi>=<Value> esimerkiksi arvolle, joka on sarakkeesta riippuvainen."
-#. 3aweP
+#. GGH2R
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"tit\n"
"help.text"
-msgid "Events"
-msgstr "Tapahtumat"
+msgid "Database Form Events"
+msgstr ""
-#. LUpWm
+#. 67JbJ
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>forms; events</bookmark_value> <bookmark_value>events;in forms</bookmark_value>"
-msgstr "<bookmark_value>lomakkeet; tapahtumat</bookmark_value><bookmark_value>tapahtumat;lomakkeilla</bookmark_value>"
+msgid "<bookmark_value>forms; events</bookmark_value> <bookmark_value>events;in database forms</bookmark_value> <bookmark_value>forms;database events</bookmark_value>"
+msgstr ""
-#. DVQeL
+#. 4UQe2
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170202.xhp\" name=\"Events\">Events</link>"
-msgstr "<link href=\"text/shared/02/01170202.xhp\" name=\"Tapahtumat\">Tapahtumat</link>"
+msgid "<link href=\"text/shared/02/01170202.xhp\" name=\"Events\">Database Form Events</link>"
+msgstr ""
-#. chAmC
+#. UDFJU
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"par_id3147043\n"
"help.text"
-msgid "The<emph> Events </emph>tab page, allows you to assign a macro to certain events which occur in a form."
-msgstr "<emph> Tapahtumat</emph>-välilehdellä on mahdollista kytkeä makro tiettyihin lomakkeella sattuviin tapahtumiin."
+msgid "The<emph> Events </emph>tab page, allows you to assign a macro to certain events which occur in a database form."
+msgstr ""
#. Tw8Ez
#: 01170202.xhp
@@ -8017,14 +8008,14 @@ msgctxt ""
msgid "For example, you can issue a \"confirm deletion\" request such as \"Really delete customer xyz?\" when deleting a data record."
msgstr "Esimeriksi voidaan ottaa käyttöön \"poiston vahvistus\" -pyyntö, sellainen kuin \"Poistatko asiakkaan xyz?\", kun tietue poistetaan."
-#. EXfcq
+#. EC2ht
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"par_id0409200920562590\n"
"help.text"
-msgid "The events that are shown in the Events dialog cannot be edited directly. You can delete an event from the list by pressing the Del key."
-msgstr "Tapahtumat-valintaikkunan sivulla näkyviä tapahtumia ei voi muokata suoraan. Tapahtuman voi poistaa luettelosta painamalla Del-näppäintä."
+msgid "The events that are shown in the Events dialog cannot be edited directly. You can remove an event from the list by pressing the Del key."
+msgstr ""
#. zFnar
#: 01170202.xhp
@@ -8035,6 +8026,15 @@ msgctxt ""
msgid "The following lists and describes all events in a form that can be linked to a macro:"
msgstr "Alla kuvaillaan luettelomaisesti kaikki lomakkeen tapahtumat, joihin voidaan kytkeä makro."
+#. VVFeU
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"bm_id311600955182139\n"
+"help.text"
+msgid "<bookmark_value>API;XUpdateListener</bookmark_value>"
+msgstr ""
+
#. PAUWN
#: 01170202.xhp
msgctxt ""
@@ -8044,13 +8044,13 @@ msgctxt ""
msgid "Before update"
msgstr "Ennen päivitystä"
-#. CvkBT
+#. cnQdn
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"par_id3149669\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Before update</emph> event occurs before the control content changed by the user is written into the data source.</ahelp> The linked macro can, for example, prevent this action by returning \"FALSE\"."
+msgid "<ahelp hid=\".\">The <emph>Before update</emph> event occurs before the control content changed by the user is written into the data source.</ahelp> The linked macro can, for example, prevent this action by returning <literal>FALSE</literal>."
msgstr ""
#. CF9MK
@@ -8071,6 +8071,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">The <emph>After update</emph> event occurs after the control content changed by the user has been written into the data source.</ahelp>"
msgstr ""
+#. sbEB8
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"bm_id601600955240219\n"
+"help.text"
+msgid "<bookmark_value>API;XResetListener</bookmark_value>"
+msgstr ""
+
#. vXXSb
#: 01170202.xhp
msgctxt ""
@@ -8080,13 +8089,13 @@ msgctxt ""
msgid "Prior to reset"
msgstr "Ennen palauttamista"
-#. jgBA2
+#. 7bVCy
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"par_id3155390\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Prior to reset </emph>event occurs before a form is reset.</ahelp> The linked macro can, for example, prevent this action by returning \"FALSE\"."
+msgid "<ahelp hid=\".\">The <emph>Prior to reset</emph> event occurs before a form is reset.</ahelp> Returning <literal>True</literal> approves the reset, returning <literal>False</literal> cancels the operation."
msgstr ""
#. 6sgdu
@@ -8134,6 +8143,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">The<emph> After resetting </emph>event occurs after a form has been reset.</ahelp>"
msgstr ""
+#. vDRh6
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"bm_id361600961200031\n"
+"help.text"
+msgid "<bookmark_value>API;XSubmitListener</bookmark_value> <bookmark_value>API;XSubmissionVetoListener</bookmark_value>"
+msgstr ""
+
#. UXPzb
#: 01170202.xhp
msgctxt ""
@@ -8143,13 +8161,22 @@ msgctxt ""
msgid "Before submitting"
msgstr "Ennen lähettämistä"
-#. UeQfT
+#. qZFdo
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"par_id3159152\n"
"help.text"
-msgid "<ahelp hid=\".\">The<emph> Before submitting </emph>event occurs before the form data is sent.</ahelp>"
+msgid "<ahelp hid=\".\">The<emph> Before submitting</emph> event occurs before the form data is sent.</ahelp> Returning <literal>True</literal> approves the submission, <literal>False</literal> stops it."
+msgstr ""
+
+#. uF4JK
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"bm_id472600961200142\n"
+"help.text"
+msgid "<bookmark_value>API;XLoadListener</bookmark_value>"
msgstr ""
#. jBWf3
@@ -8242,6 +8269,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">The<emph> When unloading </emph>event occurs directly after the form has been unloaded; that is, separated from its data source.</ahelp>"
msgstr ""
+#. BgDFy
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"bm_id351600961291078\n"
+"help.text"
+msgid "<bookmark_value>API;XConfirmDeleteListener</bookmark_value>"
+msgstr ""
+
#. a9qCx
#: 01170202.xhp
msgctxt ""
@@ -8251,13 +8287,22 @@ msgctxt ""
msgid "Confirm deletion"
msgstr "Vahvista poistaminen"
-#. KGqga
+#. WqY9V
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"par_id3154988\n"
"help.text"
-msgid "<ahelp hid=\".\">The<emph> Confirm deletion </emph>event occurs as soon as data has been deleted from the form.</ahelp> For example, the linked macro can request confirmation in a dialog."
+msgid "<ahelp hid=\".\">The<emph> Confirm deletion </emph>event occurs as soon as data has been deleted from the form.</ahelp> Return <literal>True</literal> to allow row deletion, <literal>False</literal> otherwise. For example, the linked macro can request confirmation in a dialog."
+msgstr ""
+
+#. wEtEF
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"bm_id411600961384949\n"
+"help.text"
+msgid "<bookmark_value>API;XRowSetApproveListener</bookmark_value>"
msgstr ""
#. qqitd
@@ -8269,13 +8314,22 @@ msgctxt ""
msgid "Before record action"
msgstr "Ennen tietuetoimintoa"
-#. 2kJpN
+#. V5TuU
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"par_id3156007\n"
"help.text"
-msgid "<ahelp hid=\".\">The<emph> Before record action </emph>event occurs before the current record is changed.</ahelp> For example, the linked macro can request confirmation in a dialog."
+msgid "<ahelp hid=\".\">The<emph> Before record action </emph>event occurs before the current record or record set are changed.</ahelp> Return <literal>True</literal> when changing is allowed, otherwise <literal>False</literal>. For example, the linked macro can request confirmation in a dialog."
+msgstr ""
+
+#. qsaCS
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"bm_id361601071200031\n"
+"help.text"
+msgid "<bookmark_value>API;XRowSetListener</bookmark_value>"
msgstr ""
#. FgLFD
@@ -8305,13 +8359,13 @@ msgctxt ""
msgid "Before record change"
msgstr "Ennen tietueen muuttamista"
-#. TH25D
+#. EjmXM
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "<ahelp hid=\".\">The<emph> Before record change </emph>event occurs before the current record pointer is changed.</ahelp> For example, the linked macro can prevent this action by returning \"FALSE\"."
+msgid "<ahelp hid=\".\">The<emph> Before record change </emph>event occurs before the current record pointer - SQL cursor - is changed.</ahelp> Return <literal>True</literal> when moving is allowed, otherwise <literal>False</literal>."
msgstr ""
#. vrG8D
@@ -8332,6 +8386,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">The<emph> After record change </emph>event occurs directly after the current record pointer has been changed.</ahelp>"
msgstr ""
+#. NGbSF
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"bm_id881600961491605\n"
+"help.text"
+msgid "<bookmark_value>API;XDatabaseParameterListener</bookmark_value>"
+msgstr ""
+
#. nmEEy
#: 01170202.xhp
msgctxt ""
@@ -8359,14 +8422,23 @@ msgctxt ""
msgid "<literal>SELECT * FROM address WHERE name=:name</literal>"
msgstr ""
-#. kXPjp
+#. HzPmk
#: 01170202.xhp
msgctxt ""
"01170202.xhp\n"
"par_id3149581\n"
"help.text"
-msgid "Here :name is a parameter that must be filled out when loading. The parameter is automatically filled out from the parent form if possible. If the parameter cannot be filled out, this event is called and a linked macro can fill out the parameter."
-msgstr "Tässä :nimi on parametri, joka pitää täyttää ladattaessa. Ohjelma täyttää parametrin isälomakkeesta, jos mahdollista. Jos parametriä ei voi täyttää näin, tämä tapahtuma kutsutaan ja kytketty makro voi täyttää parametrin."
+msgid "Here :name is a parameter that must be filled out when loading. The parameter is automatically filled out from the parent form if possible. If the parameter cannot be filled out, this event is called and a linked macro can fill out the parameter. Return <literal>True</literal> when the execution of the parametrized statement should continue, <literal>False</literal> otherwise."
+msgstr ""
+
+#. 78nYk
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"bm_id372700961200031\n"
+"help.text"
+msgid "<bookmark_value>API;XSQLErrorListener</bookmark_value>"
+msgstr ""
#. qbwER
#: 01170202.xhp
@@ -8386,6 +8458,78 @@ msgctxt ""
msgid "<ahelp hid=\".\">The<emph> Error occurred </emph>event is activated if an error occurs when accessing the data source.</ahelp> This applies to forms, list boxes and combo boxes."
msgstr ""
+#. X78w6
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"hd_id351601902633144\n"
+"help.text"
+msgid "Vetoable events"
+msgstr ""
+
+#. ZLgBH
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"par_id311600962806301\n"
+"help.text"
+msgid "Macros can interrupt event execution when they return a boolean value: <literal>True</literal> allows the execution of the event to continue and <literal>False</literal> stops the event execution."
+msgstr ""
+
+#. vMAAY
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"par_id881601902428903\n"
+"help.text"
+msgid "The following events are interruptable by returning <literal>False</literal>:"
+msgstr ""
+
+#. vZERE
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"par_id441601902102235\n"
+"help.text"
+msgid "Before record action"
+msgstr ""
+
+#. DWmSK
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"par_id51601902106123\n"
+"help.text"
+msgid "Before record change"
+msgstr ""
+
+#. kwyVg
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"par_id451601902107636\n"
+"help.text"
+msgid "Before submitting"
+msgstr ""
+
+#. dtBgY
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"par_id821601902108413\n"
+"help.text"
+msgid "Before update"
+msgstr ""
+
+#. DfeUE
+#: 01170202.xhp
+msgctxt ""
+"01170202.xhp\n"
+"par_id81601902108958\n"
+"help.text"
+msgid "Fill parameters"
+msgstr ""
+
#. Jj9wR
#: 01170203.xhp
msgctxt ""
@@ -8809,14 +8953,14 @@ msgctxt ""
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."
msgstr ""
-#. FRDC5
+#. BB25h
#: 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/shared/explorer/database/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."
-msgstr "Alilomake perustuu <link href=\"text/shared/00/00000005.xhp#sql\" name=\"SQL\">SQL</link>-kyselyyn, tarkemmin <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Parametrikysely\">Parametrikyselyyn</link>. Jos kentän nimi syötetään <emph>Linkitä pääkentät</emph> ruutuun, tämän päälomakkeen kentän sisältämä aineisto luetaan muuttujaan, joka pitää syöttää <emph>Linkitä alisteiset kentät</emph>. Sopivalla SQL-lauseella tätä muuttujaa verrataan niihin taulukon tietoihin, joihin alilomake viittaa. Vaihtoehtoisesti voidaan sarakkeen nimi syöttää <emph>Linkitä pääkentät</emph> -ruutuun."
+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."
+msgstr ""
#. KAQ4c
#: 01170203.xhp
@@ -10528,14 +10672,14 @@ msgctxt ""
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 ""
-#. qTFgZ
+#. VmzDY
#: 01230000.xhp
msgctxt ""
"01230000.xhp\n"
"par_id3143267\n"
"help.text"
-msgid "<image id=\"img_id3149999\" src=\"cmd/sc_designerdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149999\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149999\" src=\"cmd/sc_designerdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149999\">Kuvake, jossa taivutettu arkki ja liukusäädin</alt></image>"
+msgid "<image id=\"img_id3149999\" src=\"cmd/sc_designerdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149999\">Icon Styles</alt></image>"
+msgstr ""
#. Cwybn
#: 01230000.xhp
@@ -11122,32 +11266,59 @@ msgctxt ""
msgid "Highlight Color"
msgstr ""
-#. EjB2o
+#. 5GRDP
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Highlight Color</link>"
-msgstr "<link href=\"text/shared/02/02160000.xhp\" name=\"Korostaminen\">Korostus</link>"
+msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Highlighting</link>"
+msgstr ""
-#. aDVdx
+#. TLSg8
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Applies the current highlight color to the background of a text selection. If no text is selected, click the <emph>Highlight Color</emph> icon, select the text that you want to highlight, and then click the <emph>Highlight Color</emph> icon again. To change the highlight color, click the arrow next to the <emph>Highlight Color</emph> icon, and then click the color that you want.</ahelp></variable>"
-msgstr "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Käytetään nykyistä korostusväriä valitun tekstin taustaan. Jos tekstiä ei ole valittuna, napsautetaan <emph>Korostus</emph>-kuvaketta, valitaan korostettava teksti ja napsautetaan uudestaan <emph>Korostus</emph>-kuvaketta. Korostusväri vaihdetaan napsauttamalla <emph>Korostus</emph>-kuvakkeen viereistä nuolivalitsinta ja sitten napsauttamalla aiottua väriä.</ahelp></variable>"
+msgid "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Applies the current highlight color to the background of a character style or text selection.</ahelp></variable>"
+msgstr ""
+
+#. E9d9L
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id871592838003088\n"
+"help.text"
+msgid "If no text is selected, click the <emph>Highlight Color</emph> icon, select the text that you want to highlight, and then click the <emph>Highlight Color</emph> icon again. To change the highlight color, click the arrow next to the <emph>Highlight Color</emph> icon, and then click the color that you want."
+msgstr ""
+
+#. KrAa6
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id3147330\n"
+"help.text"
+msgid "Choose <menuitem>Format - Character - Highlighting</menuitem> tab."
+msgstr ""
+
+#. 6YA7C
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id61592838932801\n"
+"help.text"
+msgid "When editing a character style, choose <emph>Highlighting</emph> tab."
+msgstr ""
-#. jDQTx
+#. AkVGB
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3152551\n"
"help.text"
-msgid "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149177\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149177\">Korostus-kuvake, jossa punainen viiva ja kynä</alt></image>"
+msgid "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149177\">Icon Highlighting</alt></image>"
+msgstr ""
#. gZTBs
#: 02160000.xhp
@@ -11734,14 +11905,14 @@ msgctxt ""
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 "<emph>Nuolen tyyli</emph>-kuvake on näkyvissä vain kun piirretään piirrostoimintoja käyttäen. Lisätietoja varten, katso ohjeiden <link href=\"text/shared/01/05200300.xhp\" name=\"Viivatyylit\"><emph>Viivatyylit</emph></link>-osiota."
-#. iZS9C
+#. MeQRj
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"par_id3148548\n"
"help.text"
-msgid "<image id=\"img_id3145090\" src=\"cmd/sc_lineendstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145090\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145090\" src=\"cmd/sc_lineendstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145090\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3145090\" src=\"cmd/sc_lineendstyle.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145090\">Icon Line Ends</alt></image>"
+msgstr ""
#. RuXvo
#: 05020000.xhp
@@ -12265,58 +12436,58 @@ msgctxt ""
msgid "Edit File"
msgstr "Muokkaa tiedostoa"
-#. o8Fkd
+#. A7NJF
#: 07070000.xhp
msgctxt ""
"07070000.xhp\n"
"bm_id3153089\n"
"help.text"
-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 File icon</bookmark_value>"
-msgstr "<bookmark_value>kirjoitussuojaus käytössä/poissa käytöstä</bookmark_value><bookmark_value>suojatut asiakirjat</bookmark_value><bookmark_value>asiakirjat; kirjoitussuojatut</bookmark_value><bookmark_value>kirjoitussuojatut asiakirjat; muokkaaminen</bookmark_value><bookmark_value>kohdistin;kirjoitussuojatussa tekstissä</bookmark_value><bookmark_value>kirjoitussuojatut asiakirjat;kohdistin</bookmark_value><bookmark_value>muokkaa tiedostoa -kuvake</bookmark_value>"
+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 ""
-#. Bc2wJ
+#. cQEWf
#: 07070000.xhp
msgctxt ""
"07070000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/07070000.xhp\" name=\"Edit File\">Edit File</link>"
-msgstr "<link href=\"text/shared/02/07070000.xhp\" name=\"Muokkaa tiedostoa\">Muokkaa tiedostoa</link>"
+msgid "<link href=\"text/shared/02/07070000.xhp\" name=\"Edit File\">Edit Mode</link>"
+msgstr ""
-#. F7LFh
+#. B9CS6
#: 07070000.xhp
msgctxt ""
"07070000.xhp\n"
"par_id3153089\n"
"help.text"
-msgid "<ahelp hid=\".uno:EditDoc\" visibility=\"hidden\">Enables you to edit a read-only document or database table.</ahelp> Use the<emph> Edit File</emph> icon to activate or deactivate the edit mode."
-msgstr "<ahelp hid=\".uno:EditDoc\" visibility=\"hidden\">Sallitaan muokattavan asiakirjan tai tietokannan taulun kirjoitussuojaus tai puretaan suojaus.</ahelp> <emph>Muokkaa tiedostoa</emph> -kuvaketta käytetään muokkaustilan käyttöön ottamiseen ja käytöstä poistamiseen."
+msgid "<ahelp hid=\".uno:EditDoc\" visibility=\"hidden\">Enables you to edit a read-only document or database table.</ahelp> Use the<emph> Edit Mode</emph> icon to activate or deactivate the edit mode."
+msgstr ""
-#. CEMEU
+#. HpbAm
#: 07070000.xhp
msgctxt ""
"07070000.xhp\n"
"par_id3145090\n"
"help.text"
-msgid "<image id=\"img_id3154751\" src=\"cmd/sc_editdoc.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154751\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154751\" src=\"cmd/sc_editdoc.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154751\">Muokkauskuvake, jossa arkki ja kynä</alt></image>"
+msgid "<image id=\"img_id3154751\" src=\"cmd/sc_editdoc.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3154751\">Edit Mode Icon</alt></image>"
+msgstr ""
-#. Bcghe
+#. BeKLH
#: 07070000.xhp
msgctxt ""
"07070000.xhp\n"
"par_id3150694\n"
"help.text"
-msgid "Edit File"
-msgstr "Muokkaa tiedostoa"
+msgid "Edit Mode"
+msgstr ""
-#. qqFEP
+#. 2GUFC
#: 07070000.xhp
msgctxt ""
"07070000.xhp\n"
"par_id3147576\n"
"help.text"
-msgid "<ahelp hid=\".\">You can enable a selection cursor in a read-only text document or in the Help. Choose <emph>Edit - Select Text</emph> or open the context menu of a read-only document and choose <emph>Select Text</emph>. The selection cursor does not blink.</ahelp>"
+msgid "<ahelp hid=\".\">You can enable a selection cursor in a read-only text document or in the Help. Choose <menuitem>Edit - Select Text</menuitem> or open the context menu of a read-only document and choose <menuitem>Select Text</menuitem>. The selection cursor does not blink.</ahelp>"
msgstr ""
#. hGeVC
@@ -13003,13 +13174,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/09070200.xhp\" name=\"Mail\">Mail</link>"
msgstr ""
-#. RPDBm
+#. BBHET
#: 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 e-mail addresses.</ahelp>"
+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>"
msgstr ""
#. mDsga
@@ -13030,13 +13201,13 @@ msgctxt ""
msgid "Recipient"
msgstr "Vastaanottaja"
-#. mCiGb
+#. DWmiF
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"
"par_id3166460\n"
"help.text"
-msgid "<ahelp hid=\".\">Assigns the specified <emph>e-mail address</emph> to the hyperlink.</ahelp> Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the <emph>Recipient</emph> field."
+msgid "<ahelp hid=\".\">Assigns the specified <emph>email address</emph> to the hyperlink.</ahelp> Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the <emph>Recipient</emph> field."
msgstr ""
#. Hop8w
@@ -13048,13 +13219,13 @@ msgctxt ""
msgid "Data Sources"
msgstr "Tietolähteet"
-#. qd5fY
+#. xhxGP
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"
"par_id3149514\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/hyperlinkmailpage/adressbook\">Hides or shows the <emph>data source</emph> browser.</ahelp> Drag the receiver's <emph>E-mail</emph> data field from the data source browser into the <emph>Recipient</emph> text field."
+msgid "<ahelp hid=\"cui/ui/hyperlinkmailpage/adressbook\">Hides or shows the <emph>data source</emph> browser.</ahelp> Drag the receiver's <emph>Email</emph> data field from the data source browser into the <emph>Recipient</emph> text field."
msgstr ""
#. AMsuz
@@ -15343,14 +15514,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/fmsearchdialog/rbSearchForText\">Enter the search term in the box or select it from the list.</ahelp> The text under the cursor is already copied into the <emph>Text</emph> combo box. Note that while running a search in a form, tabs and line breaks cannot be processed."
msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/rbSearchForText\">Hakutermi kirjoitetaan ruutuun tai valitaan luettelosta.</ahelp> Teksti, joka on ollut tietolähteessä kohdistettuna, on valmiiksi kopioitu <emph>Teksti</emph>-yhdistelmäruutuun. Kun haku tehdään lomakkeessa, sarkaimia tai rivinvaihtoja ei voida käsitellä!"
-#. 2U9yt
+#. 7YYGz
#: 12100200.xhp
msgctxt ""
"12100200.xhp\n"
"par_id3148539\n"
"help.text"
-msgid "Your search terms will be saved as long as the table or the formula document is open. If you are running more than one search and you would like to repeat the search term, you can select a previously used search term from the combo box."
-msgstr "Hakutermit tallennetaan siihen saakka, kun taulu tai kaava-asiakirja on auki. Jos suoritetaan useampia hakuja ja halutaan käyttää samaa hakutermiä, aiemmin käytetty hakutermi voidaan valita yhdistelmäruudusta."
+msgid "Your search terms will be saved as long as the table or the form document is open. If you are running more than one search and you would like to repeat the search term, you can select a previously used search term from the combo box."
+msgstr ""
#. GkrL9
#: 12100200.xhp
@@ -16999,13 +17170,13 @@ msgctxt ""
msgid "Run SQL command directly"
msgstr "Suorita SQL-komento suoraan"
-#. KmBRr
+#. 2GZmA
#: 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/shared/explorer/database/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\" name=\"New Query Design\"><emph>New Query Design</emph></link> are synchronized with the permitted changes through SQL."
msgstr ""
#. tTG7m
@@ -17026,13 +17197,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/14040000.xhp\" name=\"Functions\">Functions</link>"
msgstr "<link href=\"text/shared/02/14040000.xhp\" name=\"Funktiot\">Funktiot</link>"
-#. JisGv
+#. LfbjB
#: 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/shared/explorer/database/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\" name=\"Query Design\"><emph>Query Design</emph></link> window.</ahelp>"
msgstr ""
#. iGFfH
@@ -17071,13 +17242,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/14050000.xhp\" name=\"Table Name\">Table Name</link>"
msgstr "<link href=\"text/shared/02/14050000.xhp\" name=\"Taulun nimi\">Taulun nimi</link>"
-#. ZZDpV
+#. vEiiV
#: 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/shared/explorer/database/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\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
msgstr ""
#. t48DA
@@ -17116,13 +17287,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/14060000.xhp\" name=\"Alias\">Alias</link>"
msgstr "<link href=\"text/shared/02/14060000.xhp\" name=\"Tunnus\">Tunnus</link>"
-#. jd5Ew
+#. tE9CF
#: 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/shared/explorer/database/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\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
msgstr ""
#. CcbaZ
@@ -17170,13 +17341,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/14070000.xhp\" name=\"Distinct Values\">Distinct Values</link>"
msgstr "<link href=\"text/shared/02/14070000.xhp\" name=\"Erityisarvot\">Erityisarvot</link>"
-#. dwMdA
+#. MhStz
#: 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/shared/explorer/database/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\" 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."
msgstr ""
#. EXAFG
@@ -19213,14 +19384,41 @@ msgctxt ""
msgid "Limit"
msgstr "Raja-arvo"
-#. bXFUp
+#. SWTG4
#: limit.xhp
msgctxt ""
"limit.xhp\n"
"par_id3154894\n"
"help.text"
-msgid "<ahelp hid=\".\">Expands the created select statement of the <link href=\"text/shared/explorer/database/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."
-msgstr "<ahelp hid=\".\">Laajennetaan luotua <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\">SQL-kyselyn</link> valintalausetta LIMIT X -komennolla</ahelp>. Tätä voi käyttää SQL-kyselyn tuloksen rajoittamiseen ensimmäisiin X:ään tapaukseen."
+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."
+msgstr ""
+
+#. bbAX7
+#: namedialog.xhp
+msgctxt ""
+"namedialog.xhp\n"
+"tit\n"
+"help.text"
+msgid "Enter Name"
+msgstr ""
+
+#. pymwL
+#: 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>"
+msgstr ""
+
+#. edfxG
+#: namedialog.xhp
+msgctxt ""
+"namedialog.xhp\n"
+"par_id3153681\n"
+"help.text"
+msgid "Enter a name or any requested text on the label."
+msgstr ""
#. Ae3Qb
#: paintbrush.xhp
@@ -19464,3 +19662,12 @@ msgctxt ""
"help.text"
msgid "Some shapes have a special handle which you can drag to change the properties of the shape. The mouse pointer changes to a hand symbol over these special handles."
msgstr "Joissakin kuvioissa on kahvat, joista vetämällä kuvion ominaisuudet muuttuvat. Hiiren osoitin vaihtuu käsisymboliksi näiden erikoiskahvojen päällä."
+
+#. Ju4Wr
+#: symbolshapes.xhp
+msgctxt ""
+"symbolshapes.xhp\n"
+"par_id911600993420542\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sdraw/control_points.png\" id=\"img_id691600993420543\"><alt id=\"alt_id651600993420544\">Control points in a shape</alt></image>"
+msgstr ""
diff --git a/source/fi/helpcontent2/source/text/shared/04.po b/source/fi/helpcontent2/source/text/shared/04.po
index e26c6482995..e6ca11bdb0b 100644
--- a/source/fi/helpcontent2/source/text/shared/04.po
+++ b/source/fi/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: 2020-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-04-16 16:16+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared04/fi/>\n"
@@ -1169,13 +1169,13 @@ msgctxt ""
msgid "The \"Underlined\" attribute is applied to the selected area. If the cursor is positioned in a word, this word is also underlined."
msgstr ""
-#. E6c39
+#. EVCzG
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"par_idN10BC0\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌃M</caseinline><defaultinline>Ctrl+M</defaultinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+M"
msgstr ""
#. xoBua
diff --git a/source/fi/helpcontent2/source/text/shared/05.po b/source/fi/helpcontent2/source/text/shared/05.po
index f3d1b0e46b4..a6c4b247257 100644
--- a/source/fi/helpcontent2/source/text/shared/05.po
+++ b/source/fi/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: 2020-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-07-28 14:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared05/fi/>\n"
@@ -124,13 +124,13 @@ msgctxt ""
msgid "Security"
msgstr "Tietoturva"
-#. GqtZB
+#. 4QHHk
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id0804200803314235\n"
"help.text"
-msgid "In case you are concerned about any security issue with using this software, you can contact the developers on the <link href=\"https://lists.freedesktop.org/mailman/listinfo/libreoffice\">public mailing list</link>. If you want to discuss any issue with other users, send an email to the public mailing list <literal>users@libreoffice.org</literal>."
+msgid "In case you are concerned about any security issue with using this software, you can contact the developers on the <link href=\"https://lists.freedesktop.org/mailman/listinfo/libreoffice\">public mailing list</link>. If you want to discuss any issue with other users, send an email to the public mailing list <literal>users@global.libreoffice.org</literal>."
msgstr ""
#. tEPqi
@@ -1262,50 +1262,68 @@ msgctxt ""
msgid "Help Page Not Found"
msgstr "Ohjesivua ei löydy"
-#. YCEdQ
+#. NedCe
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
"hd_id3146957\n"
"help.text"
-msgid "Could not find Help page."
-msgstr "Ohjesivua ei löytynyt."
+msgid "Could not find Help page (404)."
+msgstr ""
-#. JcRCV
+#. YF3vS
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "Unfortunately the Help page you selected was not found. The following data could be helpful in locating the error:"
-msgstr "Valitettavasti valitsemaasi ohjesivua ei löytynyt. Seuraavat tiedot voivat olla avuksi virheen paikantamisessa:"
+msgid "That is an error. Possible causes are:"
+msgstr ""
-#. Eekrb
+#. afzNC
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
-"par_id3143268\n"
+"par_id131592238966436\n"
"help.text"
-msgid "Help ID: <emph><help-id-missing/></emph>"
-msgstr "Help ID: <emph><help-id-missing/></emph>"
+msgid "The page does not exist and must be created."
+msgstr ""
-#. wgFpy
+#. wBHiJ
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
-"par_idN10681\n"
+"par_id201592238985883\n"
"help.text"
-msgid "You can install missing Help modules using the <emph>Setup</emph> application."
+msgid "The page exists, but the Help ID is wrong or missing."
msgstr ""
-#. vYGeB
+#. Bbuu2
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
-"par_id3150541\n"
+"par_id761592239118086\n"
"help.text"
-msgid "Click <image id=\"img_id3148946\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148946\">Icon</alt></image><emph>Back</emph> to return to the previous page."
-msgstr "Napsauta <image id=\"img_id3148946\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148946\">Kuvake</alt></image><emph>Edellinen</emph>-painiketta siirtyäksesi edelliselle sivulle."
+msgid "Use the Module, Contents, Index and Search selectors to find the right page."
+msgstr ""
+
+#. aKd5h
+#: err_html.xhp
+msgctxt ""
+"err_html.xhp\n"
+"par_id971592240070356\n"
+"help.text"
+msgid "The following data could be helpful in locating the error:"
+msgstr ""
+
+#. Eekrb
+#: err_html.xhp
+msgctxt ""
+"err_html.xhp\n"
+"par_id3143268\n"
+"help.text"
+msgid "Help ID: <emph><help-id-missing/></emph>"
+msgstr "Help ID: <emph><help-id-missing/></emph>"
#. UsFJF
#: new_help.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/06.po b/source/fi/helpcontent2/source/text/shared/06.po
index ea568e854da..37aa753e456 100644
--- a/source/fi/helpcontent2/source/text/shared/06.po
+++ b/source/fi/helpcontent2/source/text/shared/06.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2018-09-03 12:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -196,13 +196,13 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/optgeneralpage/OptGeneralPage.png\" id=\"img_id11572514566037\"><alt id=\"alt_id41572514566038\">Options General Dialog Image</alt></image>"
msgstr ""
-#. ofEA4
+#. 3B3a3
#: sc_screenshots.xhp
msgctxt ""
"sc_screenshots.xhp\n"
"tit\n"
"help.text"
-msgid "page_title"
+msgid "Calc Screenshots"
msgstr ""
#. QaaKZ
@@ -295,6 +295,15 @@ msgctxt ""
msgid "<image id=\"img_id090120160131201466\" src=\"media/screenshots/cui/ui/pageformatpage/PageFormatPage.png\"><alt id=\"alt_id090120160131201466\">Page format tab page</alt></image>"
msgstr ""
+#. ZKaCs
+#: shared_cui_screenshots.xhp
+msgctxt ""
+"shared_cui_screenshots.xhp\n"
+"par_id521601001943409\n"
+"help.text"
+msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
+msgstr ""
+
#. agtWk
#: simpress_screenshots.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/shared/autopi.po b/source/fi/helpcontent2/source/text/shared/autopi.po
index f7a4226c4bc..cd1ab707b72 100644
--- a/source/fi/helpcontent2/source/text/shared/autopi.po
+++ b/source/fi/helpcontent2/source/text/shared/autopi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedautopi/fi/>\n"
@@ -5722,23 +5722,23 @@ msgctxt ""
msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/authorEntry\">Specifies the name of the publication's author.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/authorEntry\">Määritetään julkaisun tekijän nimi.</ahelp>"
-#. f8b7F
+#. DcYxq
#: 01110400.xhp
msgctxt ""
"01110400.xhp\n"
"hd_id3147089\n"
"help.text"
-msgid "E-mail address"
-msgstr "Sähköpostiosoite"
+msgid "Email address"
+msgstr ""
-#. xxDYV
+#. Bm9Gp
#: 01110400.xhp
msgctxt ""
"01110400.xhp\n"
"par_id3166460\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/emailEntry\">Specifies the e-mail address.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/emailEntry\">Määritetään sähköpostiosoite.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/emailEntry\">Specifies the email address.</ahelp>"
+msgstr ""
#. VhjgN
#: 01110400.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/explorer/database.po b/source/fi/helpcontent2/source/text/shared/explorer/database.po
index 881714472ad..a52dd0ace46 100644
--- a/source/fi/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/fi/helpcontent2/source/text/shared/explorer/database.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-01 18:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/fi/>\n"
@@ -16,2760 +16,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565339115.000000\n"
-#. ugSgG
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Queries"
-msgstr ""
-
-#. nuBLG
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"bm_id3150445\n"
-"help.text"
-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>kyselyt;yleisesitys (Base)</bookmark_value><bookmark_value>taulut tietokannoissa; kyselyiden tulostus (Base)</bookmark_value><bookmark_value>tulostus; kyselyt (Base)</bookmark_value><bookmark_value>kyselyt; tulostus (Base)</bookmark_value>"
-
-#. ABqD3
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3150445\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/02000000.xhp\" name=\"Queries\">Queries</link>"
-msgstr "<link href=\"text/shared/explorer/database/02000000.xhp\" name=\"Kyselyt\">Kyselyt</link>"
-
-#. KaF9w
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3150499\n"
-"help.text"
-msgid "A \"query\" is a special view of a table. A query can display chosen records or chosen fields within records; it can also sort those records. A query can apply to one table or to multiple tables, if they are linked by common data fields."
-msgstr ""
-
-#. FG8C9
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3147399\n"
-"help.text"
-msgid "Use queries to find records from data tables based on certain criteria. All queries created for a database are listed under the <emph>Queries</emph> entry. Since this entry contains the database queries, it is also called the \"query container\"."
-msgstr "Kyselyjä käytetään tiettyjen ehtojen mukaisten tietueiden hakemiseen tauluista. Kaikki tietokannalle luodut kyselyt luetellaan <emph>Kyselyt</emph>-alueella. Koska tällä alueella on tietokannan kyselyt, kutsutaan sitä myös \"kyselysäilöksi\"."
-
-#. AuJW3
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3153750\n"
-"help.text"
-msgid "Printing Queries"
-msgstr "Kyselyjen tulostaminen"
-
-#. BVVMe
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3149183\n"
-"help.text"
-msgid "To print a query or table:"
-msgstr "Kyselyn tai taulun tulostamiseksi:"
-
-#. zDMbu
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3156426\n"
-"help.text"
-msgid "Open a text document (or a spreadsheet document if you prefer the specific printing functions of this type of document)."
-msgstr "Avaa tekstiasiakirja (tai taulukkolaskennan asiakirja, jos arvostetaan tämän asiakirjatyypin erityisiä tulostustoimintoja)."
-
-#. KFWTE
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3149827\n"
-"help.text"
-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 "Avaa tietokantatiedosto ja napsauta Taulu-kuvaketta, jos haluat tulostaa taulun, tai napsauta Kysely-kuvaketta, jos tulostat kyselyn."
-
-#. 9ZPFm
-#: 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 "Vedä taulun tai kyselyn nimi avattuun tekstiasiakirjaan tai laskentataulukkoon. Valintaikkuna <link href=\"text/shared/02/12070000.xhp\" name=\"Lisää tietokantasarakkeet\">Lisää tietokantasarakkeet</link> avautuu."
-
-#. m5TnG
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3150443\n"
-"help.text"
-msgid "Decide which columns = data fields you want to include. You can also click the <emph>AutoFormat</emph> button and select a corresponding formatting type. Close the dialog."
-msgstr "Päätä mitkä sarakkeet = tietokentät tulevat mukaan. Voit myös napsauttaa <emph>Autom. muotoilu</emph> -painiketta ja valita vastaava muotoilutyypin. Sulje valintaikkuna."
-
-#. AAQ4y
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3153561\n"
-"help.text"
-msgid "The query or table will be inserted into your document."
-msgstr "Kysely tai taulu lisätään asiakirjaan."
-
-#. XDLzM
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3150503\n"
-"help.text"
-msgid "Print the document by choosing <emph>File - Print</emph>."
-msgstr "Tulosta asiakirja <emph>Tiedosto - Tulosta</emph> -valikkokomennolla."
-
-#. Kh9NG
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3153146\n"
-"help.text"
-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 ""
-
-#. PJjKX
-#: 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=\"Aineiston lajittelu ja suodatus\">Aineiston lajittelu ja suodatus</link>"
-
-#. ERCGr
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3149655\n"
-"help.text"
-msgid "Allows you to sort and filter the data in a query table."
-msgstr "Kyselytaulun aineistoa pääsee lajittelemaan ja suodattamaan."
-
-#. EUECa
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3153379\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
-
-#. 3JCfK
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3151211\n"
-"help.text"
-msgid "With the <emph>Query Design</emph>, you can create and edit a query or view."
-msgstr "<emph>Kyselyn suunnittelussa</emph> voidaan luoda ja muokata kyselyjä ja näkymiä."
-
-#. 343AB
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3153968\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Through Several Tables\">Query Through Several Tables</link>"
-msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Kysely useista tauluista\">Kysely useista tauluista</link>"
-
-#. ASeVi
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3151043\n"
-"help.text"
-msgid "The query result can contain data from several tables if these are linked to each other by suitable data fields."
-msgstr "Kyselyn tulos voi pitää sisällään aineistoa useista tauluista, jos nämä on linkitetty keskenään sopivista tietokentistä."
-
-#. xGFWG
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3159149\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Formulating Query Criteria\">Formulating Query Criteria</link>"
-msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Formulating Query Criteria\">Kyselyn ehtojen muotoilu</link>"
-
-#. JTXBF
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3154910\n"
-"help.text"
-msgid "You can find out which operators and commands can be used to formulate the filter conditions for a query."
-msgstr "Selvitetään kyselyn suodatusehdoissa käytettävissä olevat operaattorit ja käskyt."
-
-#. haGR4
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3156212\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Executing Functions\">Executing Functions</link>"
-msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Executing Functions\">Funktioiden suorittaminen</link>"
-
-#. FWCVa
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3144762\n"
-"help.text"
-msgid "You can perform calculations with the data of a table and store the results as a query result."
-msgstr "Taulun aineistolla voidaan suorittaa laskutoimintoja ja sijoittaa tulokset kyselyn tulokseen."
-
-#. BncmA
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "Missing Element"
-msgstr "Puuttuva elementti"
-
-#. noWgR
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"bm_id3150445\n"
-"help.text"
-msgid "<bookmark_value>queries; missing elements (Base)</bookmark_value>"
-msgstr "<bookmark_value>kyselyt;puuttuvat osatekijät (Base)</bookmark_value>"
-
-#. EoEQz
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3150445\n"
-"help.text"
-msgid "Missing Element"
-msgstr "Puuttuva elementti"
-
-#. X2NF9
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3150247\n"
-"help.text"
-msgid "If a query in which tables or fields no longer exist is opened, the<emph> Missing Element </emph>dialog appears. This dialog names the missing table or the field which cannot be interpreted and allows you to decide how to continue with the procedure."
-msgstr "Jos avataan kysely, jonka tauluja tai kenttiä ei enää ole, <emph> Puuttuva elementti </emph>-valintaikkuna tulee näkyviin. Tämä valintaikkuna nimeää puuttuvan taulun tai kentän, jota ei enää voida tulkita ja sallii käyttäjän päättää jatkotoimista."
-
-#. fBc3m
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3145072\n"
-"help.text"
-msgid "How to continue?"
-msgstr "Miten jatketaan?"
-
-#. wV7Bh
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3149177\n"
-"help.text"
-msgid "There are three options available for answering this question:"
-msgstr "Kolme vaihtoehtoa on käytettävissä kysymykseen vastaamiseen:"
-
-#. nwD7D
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3147576\n"
-"help.text"
-msgid "Do you really want to open the query in the graphic view?"
-msgstr "Haluatko todella avata kyselyn graafiseen näkymään?"
-
-#. hLDZm
-#: 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/shared/explorer/database/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=\".\">Käyttäjän sallitaan avata kysely <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"suunnittelunäkymä\">suunnittelunäkymässä</link> puuttuvista osatekijöistä huolimatta.</ahelp> Tämä vaihtoehto sallii myös muiden virheiden ohittamisen tarvittaessa."
-
-#. DX2vA
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3153031\n"
-"help.text"
-msgid "The query is opened in the Design View (the graphical interface). Missing tables appear blank and invalid fields appear with their (invalid) names in the list of fields. This lets you work with exactly those fields that caused the error."
-msgstr "Kysely avautuu rakennenäkymään (graafiseen käyttöliittymään). Puuttuvat taulut esitetään tyhjinä ja epäkelvot kentät näkyvät (virheellisillä) nimillään kenttien luettelossa. Tämä tekee mahdolliseksi juuri virheen tuottaneiden kenttien työstämisen."
-
-#. 477G3
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3149578\n"
-"help.text"
-msgid "Open the query in the SQL View"
-msgstr "Avataan kysely SQL-näkymässä"
-
-#. FRNyg
-#: 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/shared/explorer/database/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=\".\">Valinta sallii kyselyn suunnittelun avaamisen <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL-tila\">SQL-tilassa</link> ja kysely tulkitaan <link href=\"text/shared/02/14030000.xhp\" name=\"suora SQL\">suorana SQL:änä</link>.</ahelp> Suorasta SQL-tilasta voi poistua vain, kun $[officename]-lause on tulkittu valmiiksi (mahdollista vain, mikäli kyselyssä käytetyt taulut ja kentät ovat todella olevassa)."
-
-#. 2N4uG
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3150984\n"
-"help.text"
-msgid "Do not open the query"
-msgstr "Älä avaa kyselyä"
-
-#. 9hCbd
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3156329\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows you to cancel the procedure and specify that the query should not be opened.</ahelp> This option corresponds to the function of the <emph>Cancel</emph> dialog button."
-msgstr "<ahelp hid=\".\">Valinta sallii toiminnan peruuttamisen ja määrittää, ettei kyselyä pidä avata.</ahelp> Tämä vaihtoehto vastaa <emph>Peruuta</emph>-painikkeen toimintoa valintaikkunassa."
-
-#. 4QDUr
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3148492\n"
-"help.text"
-msgid "Also ignore similar errors"
-msgstr "Ohitetaan myös samanlaiset virheet"
-
-#. tv3MZ
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3154285\n"
-"help.text"
-msgid "<ahelp hid=\".\">If you selected the first option, but you still want to open the query in the graphics view in spite of missing elements, you can specify whether other errors are ignored.</ahelp> Therefore, in the current opening process, no error message will be displayed if the query can not be correctly interpreted."
-msgstr "<ahelp hid=\".\">Jos ensimmäinen vaihtoehto on valittu, mutta silti halutaan avata kysely graafiseen näkymään puuttuvista osatekijöistä huolimatta, voidaan määrittää, ohitetaanko muut virheet.</ahelp> Siksi, nykyisessä avaamisprosessissa, virheilmoituksia ei esitetä, jos kyselyä ei voida tulkita oikein."
-
-#. E3MVS
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Design"
-msgstr "Kyselyn suunnittelu"
-
-#. Ys2sC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"bm_id3153323\n"
-"help.text"
-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>näkymät; tietokantanäkymien luominen (Base)</bookmark_value><bookmark_value>kyselyt; suunnittelunäkymässä luominen (Base)</bookmark_value><bookmark_value>suunnittelu; kyselyt (Base)</bookmark_value><bookmark_value>suunnittelunäkymä; kyselyt/näkymät (Base)</bookmark_value><bookmark_value>liittäminen;taulut (Base)</bookmark_value><bookmark_value>taulut tietokannoissa; kyselyiden liittäminen (Base)</bookmark_value><bookmark_value>kyselyt; taulujen liittäminen (Base)</bookmark_value><bookmark_value>taulujen liittäminen; suhteet (Base)</bookmark_value><bookmark_value>suhteet; taulujen liittäminen (Base)</bookmark_value><bookmark_value>kyselyt; taululinkkien poistaminen(Base)</bookmark_value><bookmark_value>ehdot kyselyn suunnittelussa (Base)</bookmark_value><bookmark_value>kyselyt; suodatusehtojen muotoilu (Base)</bookmark_value><bookmark_value>suodatusehdot;kyselyissä (Base)</bookmark_value><bookmark_value>parametrit; kyselyt (Base)</bookmark_value><bookmark_value>kyselyt; parametrikyselyt (Base)</bookmark_value><bookmark_value>SQL; kyselyt (Base)</bookmark_value><bookmark_value>suora SQL (Base)</bookmark_value>"
-
-#. T4W7n
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153394\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Kyselyn suunnittelu\">Kyselyn suunnittelu</link>"
-
-#. GU8Jd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156411\n"
-"help.text"
-msgid "<ahelp hid=\".\">The <emph>Query Design View </emph>allows you to create and edit a database query.</ahelp>"
-msgstr "<ahelp hid=\".\"><emph>Kyselyn suunnittelunäkymässä </emph>luodaan ja muokataan tietokantakyselyjä.</ahelp>"
-
-#. vGBE5
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id7024140\n"
-"help.text"
-msgid "Most databases use queries to filter or to sort database tables to display records on your computer. Views offer the same functionality as queries, but on the server side. If your database is on a server that supports views, you can use views to filter the records on the server to speed up the display time."
-msgstr ""
-
-#. WZcUE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159176\n"
-"help.text"
-msgid "Selecting the <emph>Create View</emph> command from the <emph>Tables</emph> tab page of a database document, you see the <emph>View Design</emph> window that resembles the <emph>Query Design</emph> window described here."
-msgstr "Valitsemalla <emph>Luo näkymä</emph> -komento <emph> tietokanta-asiakirjan Taulut</emph>-välilehdeltä saadaan esille <emph>Näkymän suunnittelu</emph> -ikkuna, joka muistuttaa <emph>Kyselyn suunnittelu</emph> -ikkunaa, jota tässä kuvataan."
-
-#. JMyC7
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id8307138\n"
-"help.text"
-msgid "The Query Design window layout is stored with a created query, but cannot be stored with a created view."
-msgstr "Kyselyn suunnittelun ikkunan asettelu tallennetaan luotavan kyselyn kera, mutta asettelua ei voi tallentaa luotavaan näkymään."
-
-#. TEBj6
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3149233\n"
-"help.text"
-msgid "The Design View"
-msgstr "Suunnittelu-näkymä"
-
-#. zkTQc
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145673\n"
-"help.text"
-msgid "To create a query, click the <emph>Queries</emph> icon in a database document, then click <emph>Create Query in Design View</emph>."
-msgstr "Kyselyn luominen aloitetaan napsauttamalla <emph>Kyselyt</emph>-kuvaketta tietokanta-asiakirjassa ja napsauttamalla sitten <emph>Luo kysely rakennenäkymässä</emph> -valintaa."
-
-#. MAraF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150255\n"
-"help.text"
-msgid "The lower pane of the Design View is where you <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"define\">define</link> the query. To define a query, specify the database <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"field names\">field names</link> to include and the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria\">criteria</link> 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
-#: 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 "Kyselyn suunnittelun ikkunan yläosassa on näkyvissä <emph>Kysely</emph>- ja <emph>Suunnittelu</emph>-palkin <link href=\"text/shared/main0214.xhp\" name=\"kuvakkeet\">kuvakkeet</link>."
-
-#. hYsxY
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147559\n"
-"help.text"
-msgid "If you want to test a query, double-click the query name in the database document. The query result is displayed in a table similar to the Data Source View. Note: the table displayed is only temporary."
-msgstr "Kun kyselyä halutaan testata, kaksoisnapsautetaan kyselyn nimeä tietokanta-asiakirjassa. Kyselyn tulokset esitetään tietolähdenäkymän tapaan. Esitetty taulu on vain tilapäinen."
-
-#. B4HEH
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id8226264\n"
-"help.text"
-msgid "Keys in Query Design View"
-msgstr "Kyselyn suunnittelunäkymän näppäimet"
-
-#. Cvd4o
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id2341074\n"
-"help.text"
-msgid "Key"
-msgstr "Näppäin"
-
-#. mCy9S
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id4384289\n"
-"help.text"
-msgid "Function"
-msgstr "Toiminto"
-
-#. yybiC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id5839106\n"
-"help.text"
-msgid "F4"
-msgstr "F4"
-
-#. FMTZD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id8554338\n"
-"help.text"
-msgid "Preview"
-msgstr ""
-
-#. YQhGF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id1254921\n"
-"help.text"
-msgid "F5"
-msgstr "F5"
-
-#. C9yhE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id7636646\n"
-"help.text"
-msgid "Run Query"
-msgstr "Kysely suoritus"
-
-#. jdEeJ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id8579363\n"
-"help.text"
-msgid "F7"
-msgstr "F7"
-
-#. 6Y6Uw
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3227942\n"
-"help.text"
-msgid "Add Table or Query"
-msgstr "Taulun tai kyselyn lisäys"
-
-#. WN7wR
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154939\n"
-"help.text"
-msgid "Browse"
-msgstr ""
-
-#. 5y4VZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148799\n"
-"help.text"
-msgid "When you open the query design for the first time, you see a dialog in which you must first select the table or query that will be the basis for your new query."
-msgstr ""
-
-#. FBQA9
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3144762\n"
-"help.text"
-msgid "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Double-click fields to add them to the query. Drag-and-drop to define relations.</ahelp>"
-msgstr "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Kenttä lisätään kyselyyn kaksoisnapsauttamalla. Taulujen välinen suhde määritellään vetämällä ja pudottamalla.</ahelp>"
-
-#. eG8FD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157894\n"
-"help.text"
-msgid "While designing a query, you cannot modify the selected tables."
-msgstr "Kyselyä suunniteltaessa ei voi muuttaa valittuja tauluja."
-
-#. NLywF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3149562\n"
-"help.text"
-msgid "Remove tables"
-msgstr "Taulujen poisto"
-
-#. TbQzA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150685\n"
-"help.text"
-msgid "To remove the table from Design View, click the upper border of the table window and display the context menu. You can use the <emph>Delete</emph> command to remove the table from the Design View. Another option is to press the Delete key."
-msgstr "Taulu poistetaan suunnittelunäkymästä siten, että napsautetaan tauluikkunan yläreunaa ja sitten otetaan esille kohdevalikko (kakkospainikkeella). <emph>Poista</emph>-komennolla poistetaan taulu suunnittelunäkymästä. Toinen vaihtoehto on painaa Delete-näppäintä kohdistetussa tauluikkunassa."
-
-#. VLTKB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3150012\n"
-"help.text"
-msgid "Move table and modify table size"
-msgstr "Tauluikkunan siirto ja koon muuttaminen"
-
-#. amBsQ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146922\n"
-"help.text"
-msgid "You can resize and arrange the tables according to your preferences. To move tables, drag the upper border to the desired position. Enlarge or reduce the size in which the table is displayed by positioning the mouse cursor on a border or on a corner and dragging the table until it is the desired size."
-msgstr "Tauluikkunat ovat kooltaan muuteltavissa ja järjesteltävissä työtilaan tarpeen mukaan. Taulu siirretään uuteen paikkaan vetämällä hiirellä yläreunasta. Tauluikkunan kokoa muutetaan sijoittamalla hiiri ikkunan reunaan tai nurkkaan ja vetämällä se tarvittavaan kokoon."
-
-#. UoCRG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145365\n"
-"help.text"
-msgid "Table Relations"
-msgstr "Taulujen suhteet"
-
-#. BFCxB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154145\n"
-"help.text"
-msgid "If there are data relations between a field name in one table and a field name in another table, you can use these relations for your query."
-msgstr "Jos yhden taulun kenttänimen ja toisen taulun kenttänimen välillä on suhde, näitä suhteita eli yhteyksiä voidaan käyttää kyselyssä."
-
-#. jcLbE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152577\n"
-"help.text"
-msgid "If, for example, you have a spreadsheet for articles identified by an article number, and a spreadsheet for customers in which you record all articles that a customer orders using the corresponding article numbers, then there is a relationship between the two \"article number\" data fields. If you now want to create a query that returns all articles that a customer has ordered, you must retrieve data from two spreadsheets. To do this, you must inform $[officename] about the relationship which exists between the data in the two spreadsheets."
-msgstr ""
-
-#. FspJi
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155302\n"
-"help.text"
-msgid "To do this, click a field name in a table (for example, the field name \"Item-Number\" from the Customer table), hold down the mouse button and then drag the field name to the field name of the other table (\"Item-Number\" from the Item table). When you release the mouse button, a line connecting the two fields between the two table windows appears. The corresponding condition that the content of the two field names must be identical is entered in the resulting SQL query."
-msgstr ""
-
-#. FmAaU
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153876\n"
-"help.text"
-msgid "The creation of a query that is based on several related sheets is only possible if you use $[officename] as the interface for a relational database."
-msgstr "Useisiin taulukoihin perustuvan kyselyn luominen on mahdollista vain, jos $[officename]a käytetään relaatiotietokannan käyttöliittymänä."
-
-#. N2f8q
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145646\n"
-"help.text"
-msgid "You cannot access tables from different databases in a query. Queries involving multiple tables can only be created within one database."
-msgstr "Kyselyllä ei pääse käsiksi eri tietokantojen tauluihin. Useita tauluja käsittelevät kyselyt voidaan luoda vain yhdelle tietokannalle."
-
-#. nLSiq
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153279\n"
-"help.text"
-msgid "Specifying the relation type"
-msgstr ""
-
-#. kDhFD
-#: 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/shared/explorer/database/02010101.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr ""
-
-#. rAkmw
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150094\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QUERY_EDIT_JOINCONNECTION\" visibility=\"hidden\">Edit Join Properties.</ahelp> Alternatively, press Tab until the line is selected, then press Shift+F10 to display the context menu and there choose the command <emph>Edit</emph>. Some databases support only a subset of the possible join types."
-msgstr "<ahelp hid=\"HID_QUERY_EDIT_JOINCONNECTION\" visibility=\"hidden\">Muokkaa liitoksen ominaisuuksia.</ahelp> Vaihtoehtoisesti painellaan Sarkainta kunnes viiva tulee valituksi ja sitten painetaan Vaihto+F10 kohdevalikon esille saamiseksi. Siitä valitaan <emph>Muokkaa</emph>. Joissakin tietokannoissa tuetaan vain mahdollisten liitostyyppien osajoukkoa."
-
-#. n3PMB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3155851\n"
-"help.text"
-msgid "Deleting relations"
-msgstr "Suhteiden poisto"
-
-#. jCb4H
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156178\n"
-"help.text"
-msgid "To delete a relation between two tables, click the connection line and then press the Delete key."
-msgstr "Kahden taulun välisen suhde poistetaan napsauttamalla liitosviivaa ja painamalla sitten Delete-näppäintä."
-
-#. 3UCig
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150715\n"
-"help.text"
-msgid "Alternatively, delete the respective entries in <emph>Fields involved </emph>in the <emph>Relations</emph> dialog. Or press Tab until the connecting vector is displayed highlighted, then press Shift+F10 to open the context menu and select <emph>Delete </emph>command."
-msgstr "Vaihtoehtoisesti poistetaan vastaavat merkinnät <emph>Sisällytettävät kentät </emph> -alueelta <emph>Liitoksen ominaisuudet</emph>-valintaikkunassa. Tai painellaan Sarkainta kunnes yhdistysviiva tulee korostetuksi ja painetaan sitten Vaihto+F10 kohdevalikon avaamiseksi. Lopuksi valitaan <emph>Poista</emph>-komento."
-
-#. pBybB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3151208\n"
-"help.text"
-msgid "Defining the query"
-msgstr ""
-
-#. yGfhU
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3158416\n"
-"help.text"
-msgid "<ahelp hid=\"HID_CTL_QRYDGNCRIT\">Select conditions to define the query.</ahelp> Each column of the design table accepts a data field for the query. The conditions in one row are linked with a Boolean AND."
-msgstr "<ahelp hid=\"HID_CTL_QRYDGNCRIT\">Valitaan kyselyn määrittelyn ehdot.</ahelp> Jokainen suunnittelutaulukon sarake lisää yhden tietokentän kyselyyn. Yhden rivin ehdot yhdistetään Boolen AND-operaattorilla (JA)."
-
-#. UB5nG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154161\n"
-"help.text"
-msgid "Specifying field names"
-msgstr ""
-
-#. jyKMG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146791\n"
-"help.text"
-msgid "First, select all field names from the tables that you want to add to the query. You can do this either by drag-and-drop or by double-clicking a field name in the table window. With the drag-and-drop method, use the mouse to drag a field name from the table window into the lower area of the query design window. As you do this, you can decide which column in the query design window will receive the selected field. A field name can also be selected by double-clicking. It will then be added to the next free column in the query design window."
-msgstr ""
-
-#. 66Dcr
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3150750\n"
-"help.text"
-msgid "Deleting field names"
-msgstr "Kenttänimien poistaminen"
-
-#. AbhrW
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154479\n"
-"help.text"
-msgid "To remove a field name from the query, click the column header of the field and choose the <emph>Delete</emph> command on the context menu for the column."
-msgstr "Kenttänimen poistamiseksi kyselystä napsautetaan kakkospainikkeella kentän sarakeotsikkoa ja valitaan <emph>Poista</emph>-komento sarakkeen kohdevalikosta."
-
-#. V92gB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3155764\n"
-"help.text"
-msgid "Saving the query"
-msgstr ""
-
-#. 2kWoA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148481\n"
-"help.text"
-msgid "Use the <emph>Save</emph> icon on the Standard toolbar to save the query. You will see a dialog that asks you to enter a name for the query. If the database supports schemas, you can also enter a schema name."
-msgstr ""
-
-#. M9UQL
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154362\n"
-"help.text"
-msgid "Schema"
-msgstr "Kaavio"
-
-#. 4Jwm3
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154754\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/savedialog/schema\">Enter the name of the schema that is assigned to the query or table view.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/savedialog/schema\">Nimetään kyselylle tai taulun näkymälle määrätty kaavio.</ahelp>"
-
-#. 6Q72c
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3156717\n"
-"help.text"
-msgid "Query name or table view name"
-msgstr "Kyselyn nimi tai näkymän nimi"
-
-#. Cw73K
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154253\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/savedialog/title\">Enter the name of the query or table view.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/savedialog/title\">Nimetään kysely tai taulun näkymä.</ahelp>"
-
-#. qgbNu
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3163805\n"
-"help.text"
-msgid "Filtering data"
-msgstr "Tietojen suodatus"
-
-#. Q9pG5
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154964\n"
-"help.text"
-msgid "To filter data for the query, set the desired criteria in the lower area of the query design window. The following options are available:"
-msgstr ""
-
-#. xxoMA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3146916\n"
-"help.text"
-msgid "Field"
-msgstr ""
-
-#. 4KDzZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156372\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FIELD\">Enter the name of the data field that is referred to in the Query. All settings made in the filter option rows refer to this field.</ahelp> If you activate a cell here with a mouse click you'll see an arrow button, which enables you to select a field. The \"Table name.*\" option selects all data fields with the effect that the specified criteria will be applied to all table fields."
-msgstr ""
-
-#. Z3pwF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145150\n"
-"help.text"
-msgid "Alias"
-msgstr ""
-
-#. EDa3A
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146315\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_ALIAS\">Specifies an alias. This alias will be listed in the query instead of the field name. This makes it possible to use user-defined column labels.</ahelp> For example, if the data field is named PtNo and, instead of that name, you would like to have PartNum appear in the query, enter PartNum as the alias."
-msgstr ""
-
-#. vvWbt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155959\n"
-"help.text"
-msgid "In a SQL statement, aliases are defined as follows:"
-msgstr ""
-
-#. CGsBz
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149922\n"
-"help.text"
-msgid "SELECT column AS alias FROM table."
-msgstr "SELECT sarake AS tunnus FROM taulu."
-
-#. TWexq
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159335\n"
-"help.text"
-msgid "For example:"
-msgstr "Esimerkiksi:"
-
-#. ynSGq
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148478\n"
-"help.text"
-msgid "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\""
-msgstr "SELECT \"PtNo\" AS \"Osanumero\" FROM \"Parts\""
-
-#. roTzi
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3148485\n"
-"help.text"
-msgid "Table"
-msgstr ""
-
-#. GM9Sp
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3163665\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_TABLE\">The corresponding database table of the selected data field is listed here.</ahelp> If you activate this cell with a mouse click, an arrow will appear which enables you to select a different table for the current query."
-msgstr ""
-
-#. JGcfa
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154207\n"
-"help.text"
-msgid "Sort"
-msgstr ""
-
-#. uXuDt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150979\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_ORDER\">If you click on this cell, you can choose a sort option: ascending, descending and unsorted.</ahelp> Text fields will be sorted alphabetically and numerical fields numerically. For most databases, administrators can set the sorting options at the database level."
-msgstr ""
-
-#. XsqW8
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3150384\n"
-"help.text"
-msgid "Visible"
-msgstr "Näkyvissä"
-
-#. AAZfA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146133\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_VISIBLE\">If you mark the <emph>Visible</emph> property for a data field, that field will be visibly displayed in the resulting query</ahelp>. If you are only using a data field to formulate a condition or make a calculation, you do not necessarily need to display it."
-msgstr ""
-
-#. eQFRR
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154714\n"
-"help.text"
-msgid "Criteria"
-msgstr "Ehto"
-
-#. JdqLq
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145134\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Specifies a first <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria \">criteria </link>by which the content of the data field is to be filtered.</ahelp>"
-msgstr ""
-
-#. qpADC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3152477\n"
-"help.text"
-msgid "or"
-msgstr "tai"
-
-#. KFVy8
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154585\n"
-"help.text"
-msgid "Here you can enter one additional filter criterion for each line. Multiple criteria in a single column will be interpreted as boolean OR."
-msgstr ""
-
-#. eXvp7
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148800\n"
-"help.text"
-msgid "You can also use the context menu of the line headers in the lower area of the query design window to insert a filter based on a function:"
-msgstr ""
-
-#. 5x8LE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3148419\n"
-"help.text"
-msgid "Functions"
-msgstr "Toiminnot"
-
-#. Cxhjn
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153233\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\" visibility=\"hidden\">Select a function to run in the query.</ahelp> The functions which are available here depend on those provided by the database engine."
-msgstr ""
-
-#. qFuqw
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id8760818\n"
-"help.text"
-msgid "If you are working with the embedded HSQL database, the list box in the <emph>Function</emph> row offers you the following options:"
-msgstr ""
-
-#. 9tdDn
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150307\n"
-"help.text"
-msgid "Option"
-msgstr "Asetus"
-
-#. kBvXF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152993\n"
-"help.text"
-msgid "Effect"
-msgstr "Tulos"
-
-#. zCunm
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155377\n"
-"help.text"
-msgid "No function"
-msgstr "Ei funktiota"
-
-#. kZMTN
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155533\n"
-"help.text"
-msgid "No function will be executed."
-msgstr "Mitään toimintoa ei suoriteta."
-
-#. 6dWZZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3166420\n"
-"help.text"
-msgid "Average"
-msgstr "Keskiarvo"
-
-#. NfRNs
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154486\n"
-"help.text"
-msgid "Calculates the arithmetic mean of a field."
-msgstr "Lasketaan kentän aritmeettinen keskiarvo."
-
-#. 6z2Kj
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149979\n"
-"help.text"
-msgid "Count"
-msgstr "Lukumäärä"
-
-#. rvWA5
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155810\n"
-"help.text"
-msgid "Determines the number of records in the table. Empty fields can either be counted (a) or excluded (b)."
-msgstr ""
-
-#. UyAx2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151333\n"
-"help.text"
-msgid "a) COUNT(*): Passing an asterisk as the argument counts all records in the table."
-msgstr "a) COUNT(*): välitettäessä asteriski argumenttina taulun kaikki tietueet otetaan lukuun."
-
-#. FNCC8
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152889\n"
-"help.text"
-msgid "b) COUNT(column): Passing a field name as an argument counts only the records in which the specified field contains a value. Records in which the field has a Null value (i.e. contains no textual or numeric value) will not be counted."
-msgstr ""
-
-#. 2ubvb
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153067\n"
-"help.text"
-msgid "Maximum"
-msgstr "Enintään"
-
-#. ds4ey
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159221\n"
-"help.text"
-msgid "Determines the highest value of a record for that field."
-msgstr ""
-
-#. EhSWy
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146866\n"
-"help.text"
-msgid "Minimum"
-msgstr "Vähintään"
-
-#. VxmeB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157982\n"
-"help.text"
-msgid "Determines the lowest value of a record for that field."
-msgstr ""
-
-#. CvkuF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154828\n"
-"help.text"
-msgid "Sum"
-msgstr "Summa"
-
-#. 82gAC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154536\n"
-"help.text"
-msgid "Calculates the sum of the values of records for the associated fields."
-msgstr ""
-
-#. zCzVC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148820\n"
-"help.text"
-msgid "Group"
-msgstr "Ryhmittele"
-
-#. tSPNG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149438\n"
-"help.text"
-msgid "Groups query data according to the selected field name. Functions are executed according to the specified groups. In SQL, this option corresponds to the GROUP BY clause. If a criterion is added, this entry appears in the SQL HAVING sub-clause."
-msgstr ""
-
-#. qHfpD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156038\n"
-"help.text"
-msgid "You can also enter function calls directly into the SQL statement. The syntax is:"
-msgstr "Funktiokutsu voidaan kirjoittaa myös suoraan SQL-lauseeseen. Syntaksi on:"
-
-#. Qg6Ue
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156340\n"
-"help.text"
-msgid "SELECT FUNCTION(column) FROM table."
-msgstr "SELECT FUNCTION(sarake) FROM taulu."
-
-#. qAAoF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155075\n"
-"help.text"
-msgid "For example, the function call in SQL for calculating a sum is:"
-msgstr "Esimerkiksi SQL:än summan laskemisen funktiokutsu on:"
-
-#. VrHLf
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154591\n"
-"help.text"
-msgid "SELECT SUM(\"Price\") FROM \"Article\"."
-msgstr "SELECT SUM(\"yksikkoHinta\") FROM \"Tuotteet\"."
-
-#. dABCo
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159205\n"
-"help.text"
-msgid "Except for the <emph>Group</emph> function, the above functions are called Aggregate functions. These are functions that calculate data to create summaries from the results. Additional functions that are not listed in the list box might be also possible. These depend on the specific database engine in use and on the current functionality provided by the Base driver used to connect to that database engine."
-msgstr ""
-
-#. BVC6J
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148651\n"
-"help.text"
-msgid "To use other functions not listed in the list box, you must enter them manually under <emph>Field</emph>."
-msgstr ""
-
-#. WkboS
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155098\n"
-"help.text"
-msgid "You can also assign aliases to function calls. If you do not want to display the query string in the column header, enter a desired substitute name under <emph>Alias</emph>."
-msgstr ""
-
-#. 98GCC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155539\n"
-"help.text"
-msgid "The corresponding function in an SQL statement is:"
-msgstr "Vastaava funktio SQL-lauseessa on:"
-
-#. WACG9
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149425\n"
-"help.text"
-msgid "SELECT FUNCTION() AS alias FROM table"
-msgstr "SELECT FUNCTION() AS tunnus FROM taulu"
-
-#. EjzuD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3144431\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. G9URE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154614\n"
-"help.text"
-msgid "SELECT COUNT(*) AS count FROM \"Item\""
-msgstr "SELECT COUNT( * ) AS \"Lukumäärä\" FROM \"Tuotteet\""
-
-#. xiNnR
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154610\n"
-"help.text"
-msgid "If you run such a function, you cannot insert any additional columns for the query other than as an argument in a \"Group\" function."
-msgstr ""
-
-#. EHACK
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154644\n"
-"help.text"
-msgid "<emph>Examples</emph>"
-msgstr "<emph>Esimerkkejä</emph>"
-
-#. N5CBE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151120\n"
-"help.text"
-msgid "In the following example, a query is run through two tables: an \"Item\" table with the \"Item_No\" field and a \"Suppliers\" table with the \"Supplier_Name\" field. In addition, both tables have a common field name \"Supplier_No.\""
-msgstr "Alla olevassa esimerkissä kysely suoritetaan kahdesta taulusta: \"Tuotteet\"-taulusta \"tuoteTunnus\"-kentän kera ja \"Toimittajat\"-taulusta \"toimittajaNimi\"-kentän kera. Lisäksi molemmissa tauluissa on yhteinen kenttä, nimeltään \"toimittajaTunnus\"."
-
-#. P5hJD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155144\n"
-"help.text"
-msgid "The following steps are required to create a query containing all suppliers who deliver more than three items."
-msgstr "Seuraavat vaiheet on tarvitaan, että saadaan luotua kysely, jossa on kaikki ne toimittajat, jotka toimittavat useampaa kuin kolmea tuotetta."
-
-#. ZhRQD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153240\n"
-"help.text"
-msgid "Insert the \"Item\" and \"Suppliers\" tables into the query design."
-msgstr "Lisää \"Tuotteet\"- ja \"Toimittajat\"-taulut kyselyn suunnitteluun."
-
-#. LMRUV
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148807\n"
-"help.text"
-msgid "Link the \"Supplier_No\" fields of the two tables if there is not already a relation of this type."
-msgstr "Liitä kummankin taulun \"toimittajaTunnus\" -kentät, jos niiden välillä ei vielä ole suhdetta."
-
-#. qWhFA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3161652\n"
-"help.text"
-msgid "Double-click on the \"Item_No\" field from the \"Item\" table. Display the <emph>Function</emph> line using the context menu and select the Count function."
-msgstr ""
-
-#. TgPA2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151009\n"
-"help.text"
-msgid "Enter >3 as a criterion and disable the Visible field."
-msgstr "Syötä ehdoksi >3 ja tyhjennä Näkyvissä-ruutu."
-
-#. VwEhF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145601\n"
-"help.text"
-msgid "Double-click the \"Supplier_Name\" field in the \"Suppliers\" table and choose the Group function."
-msgstr "Kaksoisnapsauta \"toimittajaNimi\"-kenttää \"Toimittajat\"-taulussa ja valitse Ryhmä-funktio."
-
-#. zsjaa
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147512\n"
-"help.text"
-msgid "Run the query."
-msgstr "Suorita kysely."
-
-#. EzQsj
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148638\n"
-"help.text"
-msgid "If the \"price\" (for the individual price of an article) and \"Supplier_No\" (for the supplier of the article) fields exist in the \"Item\" table, you can obtain the average price of the item that a supplier provides with the following query:"
-msgstr "Jos \"Tuotteet\"-taulussa on kentät \"yksikkoHinta\" (yhden artikkelin hinnalle) ja \"toimittajaTunnus\" (artikkelin toimittajalle), toimittajalta saatujen tuotteiden keskihinnan saa selville seuraavalla kyselyllä:"
-
-#. qAByp
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153045\n"
-"help.text"
-msgid "Insert the \"Item\" table into the query design."
-msgstr "Lisää \"Tuotteet\"-taulu kyselyn suunnitteluun."
-
-#. tjfuE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149802\n"
-"help.text"
-msgid "Double-click the \"Price\" and \"Supplier_No\" fields."
-msgstr "Kaksoisnapsauta \"yksikkoHinta\"- ja \"toimittajaTunnus\"-kenttiä."
-
-#. 6dBkt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153554\n"
-"help.text"
-msgid "Enable the <emph>Function</emph> line and select the Average function from the \"Price\" field."
-msgstr "Ota käyttöön <emph>Funktio</emph>-rivi ja valitse Average-funktio \"yksikkoHinta\"-kentälle."
-
-#. x8JB3
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155597\n"
-"help.text"
-msgid "You can also enter \"Average\" in the line for the alias name (without quotation marks)."
-msgstr "\"Average\" voidaan syöttää myös tunnusriville (lainausmerkeittä)."
-
-#. D4A9u
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151191\n"
-"help.text"
-msgid "Choose Group for the \"Supplier_No\" field."
-msgstr "Valitse Ryhmä-funktio \"toimittajaTunnus\"-kentälle."
-
-#. BUYS9
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155547\n"
-"help.text"
-msgid "Run the query."
-msgstr "Suorita kysely."
-
-#. EkHzB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147549\n"
-"help.text"
-msgid "The following context menu commands and symbols are available:"
-msgstr "Seuraavat kohdevalikon komennot ja symbolit ovat saatavilla:"
-
-#. PesFs
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154172\n"
-"help.text"
-msgid "Functions"
-msgstr "Toiminnot"
-
-#. BchuJ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150414\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides a row for the selection of functions.</ahelp>"
-msgstr ""
-
-#. yx5XE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3149872\n"
-"help.text"
-msgid "Table Name"
-msgstr "Taulun nimi"
-
-#. ELTGJ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147246\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the table name.</ahelp>"
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Esitetään tai piilotetaan taulun nimen rivi.</ahelp>"
-
-#. DDFEA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145117\n"
-"help.text"
-msgid "Alias Name"
-msgstr "Alias-tunnus"
-
-#. LDFZB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155754\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the alias name.</ahelp>"
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Esitetään tai piilotetaan tunnusnimen rivi.</ahelp>"
-
-#. wnNhq
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153298\n"
-"help.text"
-msgid "Distinct Values"
-msgstr "Erityisarvot"
-
-#. 23sAF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147500\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Retrieves only distinct values from the query.</ahelp> This applies to multiple records that might contain several repeating occurrences of data in the selected fields. If the <emph>Distinct Values</emph> command is active, you should only see one record in the query (DISTINCT). Otherwise, you will see all records corresponding to the query criteria (ALL)."
-msgstr ""
-
-#. RZED7
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150436\n"
-"help.text"
-msgid "For example, if the name \"Smith\" occurs several times in your address database, you can choose the<emph> Distinct Values</emph> command to specify in the query that the name \"Smith\" will occur only once."
-msgstr "Esimerkiksi, jos nimi \"Smith\" esiintyy useita kertoja osoitetietokannassa, voidaan valita <emph> Erityisarvot</emph>-komento, joka määrittää kyselyn niin, että nimi \"Smith\" esiintyy vain kerran."
-
-#. 2GvRf
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152352\n"
-"help.text"
-msgid "For a query involving several fields, the combination of values from all fields must be unique so that the result can be formed from a specific record. For example, you have \"Smith in Chicago\" once in your address book and \"Smith in London\" twice. With the<emph> Distinct Values</emph> command, the query will use the two fields \"last name\" and \"city\" and return the query result \"Smith in Chicago\" once and \"Smith in London\" once."
-msgstr "Useita kenttiä kattavissa kyselyissä kaikkien kenttien yhdistelmän tulee olla yksilöllinen, jotta kyseisen tietueen tulos esitetään. Esimerkiksi \"Smith Chicagosta\" esiintyy kerran osoitekirjassa ja \"Smith Lontoosta\" kahdesti. Kysely<emph> Erityisarvot</emph>-komennoin käyttää sekä \"sukunimi\"- että \"kaupunki\"-kenttää ja palauttaa kyselyn tuloksessa \"Smithin Chicagosta\" kerran ja \"Smithin Lontoosta\" kerran."
-
-#. m5UcG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149825\n"
-"help.text"
-msgid "In SQL, this command corresponds to the DISTINCT predicate."
-msgstr "SQL:äsä tämä komento vastaa DISTINCT-predikaattia."
-
-#. GHsJd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153290\n"
-"help.text"
-msgid "Limit"
-msgstr "Raja-arvo"
-
-#. MijJg
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147501\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Allows you to limit the maximum number of records returned by a query.</ahelp>"
-msgstr ""
-
-#. B6S5f
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152350\n"
-"help.text"
-msgid "If a <emph>Limit</emph> construction is added, you will get at most as many rows as the number you specify. Otherwise, you will see all records corresponding to the query criteria."
-msgstr ""
-
-#. MGqK3
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3148926\n"
-"help.text"
-msgid "Formulating filter conditions"
-msgstr "Muodostetaan suodatusehdot"
-
-#. iFSpm
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153162\n"
-"help.text"
-msgid "When formulating filter conditions, various operators and commands are available to you. Apart from the relational operators, there are SQL-specific commands that query the content of database fields. If you use these commands in the $[officename] syntax, $[officename] automatically converts these into the corresponding SQL syntax via an internal parser. You can also enter the SQL command directly and bypass the internal parser. The following tables give an overview of the operators and commands:"
-msgstr ""
-
-#. fXeDd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149044\n"
-"help.text"
-msgid "Operator"
-msgstr "Operaattori"
-
-#. mfdEx
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152471\n"
-"help.text"
-msgid "Meaning"
-msgstr "Selite"
-
-#. mBZgC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147407\n"
-"help.text"
-msgid "Condition is satisfied if..."
-msgstr "Ehto täyttyy, jos ..."
-
-#. gqkRK
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153026\n"
-"help.text"
-msgid "equal to"
-msgstr "yhtä suuri kuin"
-
-#. hw7KZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148895\n"
-"help.text"
-msgid "... the content of the field is identical to the indicated expression."
-msgstr "... kentän sisältö vastaa täysin ilmoitettua lauseketta."
-
-#. A8XJU
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153120\n"
-"help.text"
-msgid "The operator = will not be displayed in the query fields. If you enter a value without any operator, the = operator is automatically assumed."
-msgstr ""
-
-#. mWwUE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145223\n"
-"help.text"
-msgid "not equal to"
-msgstr "eri suuri kuin"
-
-#. Db7BG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145635\n"
-"help.text"
-msgid "... the content of the field does not correspond to the specified expression."
-msgstr "... kentän sisältö ei vastaa määritettyä lauseketta."
-
-#. dtjkU
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146815\n"
-"help.text"
-msgid "greater than"
-msgstr "suurempi kuin"
-
-#. gCWug
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149150\n"
-"help.text"
-msgid "... the content of the field is greater than the specified expression."
-msgstr "... kentän sisältö on suurempi kuin määritetty lauseke."
-
-#. QkAKk
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147379\n"
-"help.text"
-msgid "less than"
-msgstr "pienempi kuin"
-
-#. xxPdk
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150375\n"
-"help.text"
-msgid "... the content of the field is less than the specified expression."
-msgstr "... kentän sisältö on pienempi kuin määritetty lauseke."
-
-#. 4aJjX
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150636\n"
-"help.text"
-msgid "greater than or equal to"
-msgstr "suurempi tai yhtä suuri kuin"
-
-#. 2rwQm
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154584\n"
-"help.text"
-msgid "... the content of the field is greater than or equal to the specified expression."
-msgstr "... kentän sisältö on suurempi tai yhtä suuri kuin määritetty lauseke."
-
-#. ADRZk
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154052\n"
-"help.text"
-msgid "less than or equal to"
-msgstr "pienempi tai yhtä suuri kuin"
-
-#. 9KtmZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157902\n"
-"help.text"
-msgid "... the content of the field is less than or equal to the specified expression."
-msgstr "... kentän sisältö on pienempi tai yhtä suuri kuin määritetty lauseke."
-
-#. DBXG9
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154630\n"
-"help.text"
-msgid "$[officename] command"
-msgstr "$[officename]-komento"
-
-#. Yo7MG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150484\n"
-"help.text"
-msgid "SQL command"
-msgstr "SQL-lause"
-
-#. pJay6
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154158\n"
-"help.text"
-msgid "Meaning"
-msgstr "Selite"
-
-#. qmaX5
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149433\n"
-"help.text"
-msgid "Condition is satisfied if..."
-msgstr "Ehto täyttyy, jos ..."
-
-#. do6XQ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3143236\n"
-"help.text"
-msgid "is null"
-msgstr "on tyhjä"
-
-#. NPqBL
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154744\n"
-"help.text"
-msgid "... the field contains no data. For Yes/No fields with three possible states, this command automatically queries the undetermined state (neither Yes nor No)."
-msgstr ""
-
-#. 7Rfbd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151229\n"
-"help.text"
-msgid "is not empty"
-msgstr "ei ole tyhjä"
-
-#. w3Tva
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145304\n"
-"help.text"
-msgid "... the field is not empty, i.e it contains data."
-msgstr ""
-
-#. GGKUH
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153891\n"
-"help.text"
-msgid "placeholder (*) for any number of characters"
-msgstr ""
-
-#. gbEWB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148887\n"
-"help.text"
-msgid "placeholder (?) for exactly one character"
-msgstr ""
-
-#. tBQfA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"bm_id3157985\n"
-"help.text"
-msgid "<bookmark_value>placeholders; in SQL queries</bookmark_value>"
-msgstr "<bookmark_value>paikkamerkit; SQL-kyselyissä</bookmark_value>"
-
-#. agxhB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157985\n"
-"help.text"
-msgid "placeholder (%) for any number of characters"
-msgstr ""
-
-#. EE9ii
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147422\n"
-"help.text"
-msgid "Placeholder (_) for exactly one character"
-msgstr ""
-
-#. za5g2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154845\n"
-"help.text"
-msgid "is an element of"
-msgstr "on alkiona"
-
-#. 2Y3zW
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156130\n"
-"help.text"
-msgid "... the data field contains the indicated expression. The (*) placeholder indicates whether the expression x occurs at the beginning of (x*), at the end of (*x) or inside the field content (*x*). You can enter as a placeholder in SQL queries either the SQL % character or the familiar (*) file system placeholder in the %PRODUCTNAME interface."
-msgstr ""
-
-#. CPJyr
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150271\n"
-"help.text"
-msgid "The (*) or (%) placeholder stands for any number of characters. The question mark (?) in the $[officename] interface or the underscore (_) in SQL queries is used to represent exactly one character."
-msgstr ""
-
-#. AAEXi
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159141\n"
-"help.text"
-msgid "Is not an element of"
-msgstr "ei ole alkiona"
-
-#. 9vFBZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3161664\n"
-"help.text"
-msgid "... the field does not contain data having the specified expression."
-msgstr ""
-
-#. CD2Ra
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159184\n"
-"help.text"
-msgid "falls within the interval [x,y]"
-msgstr "kuuluu suljettuun väliin [x,y]"
-
-#. cDe2u
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154395\n"
-"help.text"
-msgid "... the field contains a data value that lies between the two values x and y."
-msgstr ""
-
-#. KYAXv
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155498\n"
-"help.text"
-msgid "Does not fall within the interval [x,y]"
-msgstr "ei osu välille [x,y]"
-
-#. cVfAF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148992\n"
-"help.text"
-msgid "... the field contains a data value that does not lie between the two values x and y."
-msgstr ""
-
-#. DBBQE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159167\n"
-"help.text"
-msgid "Note that semicolons are used as separators in all value lists!"
-msgstr ""
-
-#. evEuh
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154809\n"
-"help.text"
-msgid "contains a, b, c..."
-msgstr "sisältää a, b, c..."
-
-#. eeFC2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148399\n"
-"help.text"
-msgid "... the field name contains one of the specified expressions a, b, c,... Any number of expressions can be specified, and the result of the query is determined by a boolean OR operator. The expressions a, b, c... can be either numbers or characters"
-msgstr ""
-
-#. JXq76
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150679\n"
-"help.text"
-msgid "does not contain a, b, c..."
-msgstr "ei sisällä a, b, c..."
-
-#. U5doB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3158439\n"
-"help.text"
-msgid "... the field does not contain one of the specified expressions a, b, c,..."
-msgstr ""
-
-#. cECKt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149248\n"
-"help.text"
-msgid "has the value True"
-msgstr "arvona on TRUE"
-
-#. fbgDt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148524\n"
-"help.text"
-msgid "... the field name has the value True."
-msgstr "... kentän arvo on TRUE."
-
-#. 39zcD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149955\n"
-"help.text"
-msgid "has the value false"
-msgstr "arvona on FALSE"
-
-#. fGHY6
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146850\n"
-"help.text"
-msgid "... the field data value is set to false."
-msgstr ""
-
-#. qQETa
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3155954\n"
-"help.text"
-msgid "Examples"
-msgstr "Esimerkkejä"
-
-#. 8GaiA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150948\n"
-"help.text"
-msgid "returns field names with the field content \"Ms.\""
-msgstr "tuloksena on kentät, joissa kentän sisältö on \"Ms.\""
-
-#. C3BDE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id315094A\n"
-"help.text"
-msgid "returns dates that occurred before January 10, 2001"
-msgstr "palauttaa päivät, jotka olivat ennen tammikuun 10. päivää 2001"
-
-#. T7ZhS
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147332\n"
-"help.text"
-msgid "returns records with field content such as \"give\" and \"gave\"."
-msgstr ""
-
-#. f6T3F
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155350\n"
-"help.text"
-msgid "returns records with field contents such as \"Sun\"."
-msgstr ""
-
-#. AvbKu
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159406\n"
-"help.text"
-msgid "returns records with field content between the values 10 and 20. (The fields can be either text fields or number fields)."
-msgstr ""
-
-#. 3tymM
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149712\n"
-"help.text"
-msgid "returns records with the values 1, 3, 5, 7. If the field name contains an item number, for example, you can create a query that returns the item having the specified number."
-msgstr ""
-
-#. uusce
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147279\n"
-"help.text"
-msgid "returns records that do not contain \"Smith\"."
-msgstr ""
-
-#. AJ8Xo
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146073\n"
-"help.text"
-msgid "<emph>Like </emph>Escape Sequence: {escape 'escape-character'}"
-msgstr "<emph>Like</emph>-ohjausmerkkisarja: {escape 'ohjausmerkki'}"
-
-#. Cy7Cc
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150661\n"
-"help.text"
-msgid "Example: select * from Item where ItemName like 'The *%' {escape '*'}"
-msgstr "Esimerkki: SELECT * FROM Tuotteet WHERE tuoteNimi LIKE 'The *%' {escape '*'}"
-
-#. newGb
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148541\n"
-"help.text"
-msgid "The example will give you all of the entries where the item name begins with 'The *'. This means that you can also search for characters that would otherwise be interpreted as placeholders, such as *, ?, _, % or the period."
-msgstr "Esimerkki antaa tulokseksi kaikki merkinnät, joissa tuote alkaa 'The *'. Tämä tarkoittaa, että voidaan hakea myös merkeillä, jotka muuten tulkittaisiin paikkamerkeiksi, kuten *, ?, _, % tai piste."
-
-#. bAP3N
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150572\n"
-"help.text"
-msgid "<emph>Outer Join</emph> Escape Sequence: {oj outer-join}"
-msgstr "<emph>Outer Join</emph> -ohjausmerkkisarja: {oj ulkoliitos}"
-
-#. VnKGf
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156052\n"
-"help.text"
-msgid "Example: select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}"
-msgstr "Esimerkki: SELECT Tuotteet.* FROM {oj Tuotteet LEFT OUTER JOIN tilausRivit ON tuoteTunnus=tilausRivit.tuoteTunnus}"
-
-#. mWG9p
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153674\n"
-"help.text"
-msgid "Querying text fields"
-msgstr "Tekstikenttien kysely"
-
-#. sxYQF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149134\n"
-"help.text"
-msgid "To query the content of a text field, you must put the expression between single quotes. The distinction between uppercase and lowercase letters depends on the database in use. LIKE, by definition, is case-sensitive (though some databases don't interpret this strictly)."
-msgstr ""
-
-#. BEp4G
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3149302\n"
-"help.text"
-msgid "Querying date fields"
-msgstr "Päivämääräkenttien kysely"
-
-#. D5mjw
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157998\n"
-"help.text"
-msgid "<emph>Date fields</emph> are represented as #Date# to clearly identify them as dates. Date, time and date/time constants (literals) used in conditions can be of either the SQL Escape Syntax type, or default SQL2 syntax."
-msgstr "<emph>Päivämääräkentät</emph> esitetään merkinnällä #Päivämäärä#, jotta ne selvästi erottuvat päivämääriksi. Ehtolausekkeissa käytettävät päivämäärä-, kellonaika- ja aikaleimavakiot voivat olla joko SQL Escape -syntaksin mukaisia tai SQL2-syntaksin mukaisia."
-
-#. Zzuo6
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31537341\n"
-"help.text"
-msgid "Date Type Element"
-msgstr "Päivämäärätyyppi"
-
-#. JKys2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31537342\n"
-"help.text"
-msgid "SQL Escape syntax #1 - may be obsolete"
-msgstr "SQL Escape -syntaksi #1 - voi olla vanhentunut"
-
-#. AzkWz
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31537343\n"
-"help.text"
-msgid "SQL Escape syntax #2"
-msgstr "SQL Escape -syntaksi #2"
-
-#. UJ6VA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31537344\n"
-"help.text"
-msgid "SQL2 syntax"
-msgstr "SQL2-syntaksi"
-
-#. 9V3Ky
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id315913111\n"
-"help.text"
-msgid "Date"
-msgstr "Päivämäärä"
-
-#. YNF3S
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31559471\n"
-"help.text"
-msgid "Time"
-msgstr "Aika"
-
-#. ssX5b
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31509641\n"
-"help.text"
-msgid "DateTime"
-msgstr "Aikaleima"
-
-#. FqZXM
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149539\n"
-"help.text"
-msgid "Example: select {d '1999-12-31'} from world.years"
-msgstr "Esimerkki: SELECT {d '1999-12-31'} FROM world.years"
-
-#. WJ4YB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149540\n"
-"help.text"
-msgid "Example: select * from mytable where years='1999-12-31'"
-msgstr "Esimerkki: select * from mytable where years='1999-12-31'"
-
-#. CZdA4
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150510\n"
-"help.text"
-msgid "All date expressions (date literals) must be enclosed with single quotation marks. (Consult the reference for the particular database and connector you are using for more details.)"
-msgstr ""
-
-#. HXdKT
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3150427\n"
-"help.text"
-msgid "Querying Yes/No fields"
-msgstr "Kysely Kyllä/Ei -kentissä"
-
-#. xWzix
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149523\n"
-"help.text"
-msgid "To query Yes/No fields, use the following syntax for dBASE tables:"
-msgstr "Kyseltäessä Kyllä/Ei-kentistä dBASE-tauluille käytetään oheista syntaksia:"
-
-#. A4Uh7
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153180\n"
-"help.text"
-msgid "Status"
-msgstr ""
-
-#. FnXiE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147481\n"
-"help.text"
-msgid "Query criterion"
-msgstr "Kyselyn ehto"
-
-#. e6DJr
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155187\n"
-"help.text"
-msgid "Example"
-msgstr "Esimerkki"
-
-#. Guy7d
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156092\n"
-"help.text"
-msgid "Yes"
-msgstr "Kyllä"
-
-#. p9WTn
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152414\n"
-"help.text"
-msgid "for dBASE tables: not equal to any given value"
-msgstr "dBASE-tauluille: ei yhtä suuri kuin joku annetuista arvoista"
-
-#. RFrvz
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151265\n"
-"help.text"
-msgid "=1 returns all records where the Yes/No field has the status \"Yes\" or \"On\" (selected in black),"
-msgstr "=1 antaa tulokseksi kaikki tietueet, joissa Kyllä/Ei-kentässä on tilana \"Kyllä\" tai \"Käytössä\" (valittuna mustana),"
-
-#. 3P4ZB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152450\n"
-"help.text"
-msgid "No"
-msgstr "Ei"
-
-#. BzBAa
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150997\n"
-"help.text"
-msgid "."
-msgstr "."
-
-#. TFsQG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155331\n"
-"help.text"
-msgid "=0 returns all records for which the Yes/No field has the status \"No\" or \"Off\" (no selection)."
-msgstr "=0 antaa tulokseksi kaikki tietueet, joissa Kyllä/Ei-kentässä on tilana \"Ei\" tai \"Ei käytössä\" (ei valittuna)."
-
-#. 9KXzK
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154179\n"
-"help.text"
-msgid "Null"
-msgstr "tyhjä"
-
-#. CwGZv
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147035\n"
-"help.text"
-msgid "IS NULL"
-msgstr "IS NULL"
-
-#. dyXYc
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159385\n"
-"help.text"
-msgid "IS NULL returns all records for which the Yes/No field has neither of the states Yes or No (selected in gray)."
-msgstr "IS NULL antaa tulokseksi kaikki tietueet, joissa Kyllä/Ei-kentässä ei ole tilana Kyllä eikä Ei (valittuna harmaana)"
-
-#. YWk5J
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157888\n"
-"help.text"
-msgid "The syntax depends on the database system used. You should also note that Yes/No fields can be defined differently (only 2 states instead of 3)."
-msgstr "Syntaksi on käytetystä tietokannasta riippuva. Kyllä/Ei-kenttä voidaan myös määritellä eri tavalla (vain 2 tilaa 3 asemesta)."
-
-#. mmVa8
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145772\n"
-"help.text"
-msgid "Parameter queries"
-msgstr "Parametrikyselyt"
-
-#. ND7xd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151905346795\n"
-"help.text"
-msgid "Parameter queries allow the user to input values at run-time. These values are used within the criteria for selecting the records to be displayed. Each such value has a parameter name associated with it, which is used to prompt the user when the query is run."
-msgstr ""
-
-#. Be7XG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151905439551\n"
-"help.text"
-msgid "Parameter names are preceded by a colon in both the Design and SQL views of a query. This can be used wherever a value can appear. If the same value is to appear more than once in the query, the same parameter name is used."
-msgstr ""
-
-#. rSkkZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151905518123\n"
-"help.text"
-msgid "In the simplest case, where the user enters a value which is matched for equality, the parameter name with its preceding colon is simply entered in the Criterion row. In <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">WHERE \"Field\" = :Parameter_name</item>"
-msgstr ""
-
-#. DZCXm
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151905584287\n"
-"help.text"
-msgid "Parameter names may not contain any of the characters <item type=\"input\"><space>`!\"$%^*()+={}[]@'~#<>?/,</item>. They may not be the same as field names or SQL reserved words. They may be the same as aliases."
-msgstr ""
-
-#. AY8e3
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151931441881\n"
-"help.text"
-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/shared/explorer/database/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
-#: 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 ""
-
-#. DRj78
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3151035\n"
-"help.text"
-msgid "Parameter Input"
-msgstr "Parametrin syöttö"
-
-#. BisCF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153596\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">The <emph>Parameter Input</emph> dialog asks the user to enter the parameter values. Enter a value for each query parameter and confirm by clicking <emph>OK</emph> or typing <emph>Enter</emph>.</ahelp>"
-msgstr ""
-
-#. eGETM
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151924165870\n"
-"help.text"
-msgid "The values entered by the user may consist of any characters which are allowable for the SQL for the relevant criterion; this may depend on the underlying database system."
-msgstr ""
-
-#. seFhG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151939594217\n"
-"help.text"
-msgid "The user can use the SQL wild-card characters \"%\" (arbitrary string) or \"_\" (arbitrary single character) as part of the value to retrieve records with more complex criteria."
-msgstr ""
-
-#. wRe6v
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145181\n"
-"help.text"
-msgid "SQL Mode"
-msgstr "SQL-tila"
-
-#. 5avVu
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147013\n"
-"help.text"
-msgid "SQL stands for \"Structured Query Language\" and describes instructions for updating and administering relational databases."
-msgstr "SQL on lyhenne sanoista \"Structured Query Language\" (rakenteellinen kyselykieli) ja se sisältää relaatiotietokantojen päivittämiseen ja hallinnointiin tarvittavat käskyt."
-
-#. wDAAY
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152570\n"
-"help.text"
-msgid "In $[officename] you do not need any knowledge of SQL for most queries, since you do not have to enter the SQL code. If you create a query in the query designer, $[officename] automatically converts your instructions into the corresponding SQL syntax. If, with the help of the <emph>Switch Design View On/Off </emph>button, you change to the SQL view, you can see the SQL commands for a query that has already been created."
-msgstr ""
-
-#. hBQFv
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152412\n"
-"help.text"
-msgid "You can formulate your query directly in SQL code. Note, however, that the special syntax is dependent upon the database system that you use."
-msgstr ""
-
-#. kkuBG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146842\n"
-"help.text"
-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 ""
-
-#. cBY6B
-#: 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 ""
-
-#. fKBDD
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Join Properties"
-msgstr "Liitoksen ominaisuudet"
-
-#. TTCNB
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"bm_id3154015\n"
-"help.text"
-msgid "<bookmark_value>links;relational databases (Base)</bookmark_value> <bookmark_value>inner joins (Base)</bookmark_value> <bookmark_value>joins in databases (Base)</bookmark_value> <bookmark_value>left joins (Base)</bookmark_value> <bookmark_value>right joins (Base)</bookmark_value> <bookmark_value>full joins (Base)</bookmark_value>"
-msgstr "<bookmark_value>linkit;relaatiotietokannat (Base)</bookmark_value><bookmark_value>sisäliitokset (Base)</bookmark_value><bookmark_value>liitokset tietokannoissa (Base)</bookmark_value><bookmark_value>vasemmat liitokset (Base)</bookmark_value><bookmark_value>oikeat liitokset (Base)</bookmark_value><bookmark_value>täydet liitokset (Base)</bookmark_value>"
-
-#. DG7RD
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3154015\n"
-"help.text"
-msgid "Join Properties"
-msgstr "Liitoksen ominaisuudet"
-
-#. MzpBt
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3151205\n"
-"help.text"
-msgid "If you double-click a connection between two linked fields in the query design, or if you choose <emph>Insert - New Relation</emph>, the <emph>Join Properties</emph> dialog appears. These properties will be used in all queries created in the future."
-msgstr "Jos kyselyn suunnittelussa kaksoisnapsautetaan kahden kentän tai taulun liitosviivaa, tai jos valitaan <emph>Lisää - Uusi relaatio</emph>, esille saadaan <emph>Liitoksen ominaisuudet</emph> -valintaikkuna. Näitä ominaisuuksia käytetään kaikissa tulevaisuudessa luotavissa kyselyissä."
-
-#. oszEF
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3155066\n"
-"help.text"
-msgid "Tables involved"
-msgstr "Sisällytetyt taulut"
-
-#. 2AkcB
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3153924\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/table2\">Specifies two different tables that you want to join.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/joindialog/table2\">Määritetään liitettävät kaksi eri taulua.</ahelp>"
-
-#. X6wkD
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3155766\n"
-"help.text"
-msgid "Fields involved"
-msgstr "Sisällytetyt kentät"
-
-#. 8bYEZ
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3148994\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies two data fields that will be joined by a relation.</ahelp>"
-msgstr "<ahelp hid=\".\">Määritetään kaksi tietokenttää, jotka yhdistetään suhteella.</ahelp>"
-
-#. R8CbB
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3159267\n"
-"help.text"
-msgid "Options"
-msgstr ""
-
-#. MRJCp
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3147340\n"
-"help.text"
-msgid "Type"
-msgstr ""
-
-#. rxAGo
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3152482\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">Specifies the join type of the selected join.</ahelp> Some databases support only a subset of the various possible types."
-msgstr ""
-
-#. ngfse
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3155334\n"
-"help.text"
-msgid "Inner Join"
-msgstr "Sisäliitos"
-
-#. 356Dv
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3155936\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In an inner join, the results table contains only those records for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link is created by a corresponding WHERE clause."
-msgstr ""
-
-#. XYKGT
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3156372\n"
-"help.text"
-msgid "Left Join"
-msgstr "Vasen liitos"
-
-#. dRFux
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3166450\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a left join, the results table contains all records of the queried fields from the left table and only those records of the queried fields from the right table for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link corresponds to the LEFT OUTER JOIN command."
-msgstr ""
-
-#. DxGWD
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3155607\n"
-"help.text"
-msgid "Right Join"
-msgstr "Oikea liitos"
-
-#. 9eD8R
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3150647\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a right join, the results table contains all records of the queried fields from the right table and only those records of the queried fields from the left table for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link corresponds to the RIGHT OUTER JOIN command."
-msgstr ""
-
-#. wcFAd
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3158215\n"
-"help.text"
-msgid "Full Join"
-msgstr "Täysi (ulko-)liitos"
-
-#. wAFid
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3163665\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a full join, the results table contains all records of the queried fields from the left and right tables.</ahelp> In the SQL of $[officename] this type of link corresponds to the FULL OUTER JOIN command."
-msgstr ""
-
-#. gYRyC
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id0305200912031976\n"
-"help.text"
-msgid "Natural"
-msgstr "Natural"
-
-#. 44FEn
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id0305200912031977\n"
-"help.text"
-msgid "<ahelp hid=\".\">In a natural join, the keyword NATURAL in inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns.</ahelp>"
-msgstr ""
-
#. pK6MV
#: 04000000.xhp
msgctxt ""
@@ -5842,14 +3088,14 @@ 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 "Tässä valintaikkunassa voidaan antaa vain hallinnollisia komentoja, kuten GRANT, CREATE TABLE tai DROP TABLE, eikä suodatuskomentoja. Annettavissa olevat komennot riippuvat tietolähteestä. Esimerkiksi dBASE voi suorittaa vain osan tässä luetelluista SQL-komennoista."
-#. zMG8X
+#. JZmCZ
#: 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/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design View</link>."
-msgstr "SQL-kyselyn suorittamiseksi tai aineiston suodattamiseen käytetään <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Kyselyn suunnittelu\">kyselyn suunnittelunäkymää</link>."
+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>."
+msgstr ""
#. Ck9G4
#: 11080000.xhp
@@ -10036,41 +7282,41 @@ msgctxt ""
msgid "Opens a submenu."
msgstr ""
-#. ffiWu
+#. EAusx
#: menufile.xhp
msgctxt ""
"menufile.xhp\n"
"par_idN105F8\n"
"help.text"
-msgid "E-mail Document"
-msgstr "Lähetä asiakirja sähköpostina"
+msgid "Email Document"
+msgstr ""
-#. XHCkB
+#. Qxg2W
#: menufile.xhp
msgctxt ""
"menufile.xhp\n"
"par_idN105FC\n"
"help.text"
-msgid "Opens the default e-mail application to send a new e-mail. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body."
+msgid "Opens the default email application to send a new email. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body."
msgstr ""
-#. sbEoh
+#. 9WihT
#: menufile.xhp
msgctxt ""
"menufile.xhp\n"
"par_idN105FF\n"
"help.text"
-msgid "Report as E-mail"
-msgstr "Raportti sähköpostina"
+msgid "Report as Email"
+msgstr ""
-#. CrSUL
+#. XWAoV
#: menufile.xhp
msgctxt ""
"menufile.xhp\n"
"par_idN10603\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the default e-mail application to send a new e-mail. The selected report is appended as an attachment. You can enter the subject, the recipients and a mail body. A dynamic report is exported as a copy of the database contents at the time of export.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan oletussähköpostiohjelma uuden viestin lähettämiseen. Valittu raportti on lisätty liitteeksi. Käyttäjä voi kirjoittaa otsikon, vastaanottajien nimet ja viestin tekstin. Dynaaminen raportti lähetetään tietokannan sisällön vientihetkeä vastaavana kopiona.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the default email application to send a new email. The selected report is appended as an attachment. You can enter the subject, the recipients and a mail body. A dynamic report is exported as a copy of the database contents at the time of export.</ahelp>"
+msgstr ""
#. 9cSVg
#: menufile.xhp
@@ -14319,354 +11565,3 @@ msgctxt ""
"help.text"
msgid "<link href=\"text/shared/explorer/database/tablewizard00.xhp\" name=\"Table Wizard\">Table Wizard</link>"
msgstr "<link href=\"text/shared/explorer/database/tablewizard00.xhp\" name=\"Ohjattu taulun luonti\">Ohjattu taulun luonti</link>"
-
-#. PAxTq
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"tit\n"
-"help.text"
-msgid "Toolbars"
-msgstr "Työkalurivit"
-
-#. BJ5pd
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<variable id=\"toolbars\"><link href=\"text/shared/explorer/database/toolbars.xhp\">Toolbars</link></variable>"
-msgstr "<variable id=\"toolbars\"><link href=\"text/shared/explorer/database/toolbars.xhp\">Työkalurivit</link></variable>"
-
-#. B3mEW
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10545\n"
-"help.text"
-msgid "In a database file window, you can see the following toolbars."
-msgstr "Tietokannan tiedostoikkunassa näkyvät seuraavat työkalupalkit."
-
-#. ZNxCw
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "Table"
-msgstr "Taulu"
-
-#. JWHfj
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10554\n"
-"help.text"
-msgid "Open database object"
-msgstr "Avaa tietokanta objekti"
-
-#. 4fvFG
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected table so you can enter, edit, or delete records.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan valittu taulu, niin että tietueita voidaan lisätä, muokata tai poistaa.</ahelp>"
-
-#. LFKBo
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "Edit"
-msgstr "Muokkaa"
-
-#. tLLAy
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10573\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected table so you can change the structure.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan valittu taulu, niin että rakennetta voidaan muuttaa.</ahelp>"
-
-#. FEBzp
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Delete"
-msgstr "Poista"
-
-#. PDZsk
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
-msgstr "<ahelp hid=\".\">Valittu taulu poistetaan.</ahelp>"
-
-#. m7BX3
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105A5\n"
-"help.text"
-msgid "Rename"
-msgstr "Nimeä uudelleen"
-
-#. B596w
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<ahelp hid=\".\">Renames the selected table.</ahelp>"
-msgstr "<ahelp hid=\".\">Valittu taulu nimetään uudestaan.</ahelp>"
-
-#. LEWCs
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105B8\n"
-"help.text"
-msgid "Query"
-msgstr "Kysely"
-
-#. VT3EG
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105C4\n"
-"help.text"
-msgid "Open database object"
-msgstr "Avaa tietokanta objekti"
-
-#. 2cEFv
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105C8\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected query so you can enter, edit, or delete records.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan valittu kysely, niin että tietueita voidaan lisätä, muokata tai poistaa.</ahelp>"
-
-#. yVNxZ
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105DF\n"
-"help.text"
-msgid "Edit"
-msgstr "Muokkaa"
-
-#. kGSTA
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105E3\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected query so you can change the structure.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan valittu kysely, niin että rakennetta voidaan muuttaa.</ahelp>"
-
-#. W75xu
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105FA\n"
-"help.text"
-msgid "Delete"
-msgstr "Poista"
-
-#. XJQBJ
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105FE\n"
-"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected query.</ahelp>"
-msgstr "<ahelp hid=\".\">Valittu kysely poistetaan.</ahelp>"
-
-#. bC56u
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10615\n"
-"help.text"
-msgid "Rename"
-msgstr "Nimeä uudelleen"
-
-#. GDAZR
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10619\n"
-"help.text"
-msgid "<ahelp hid=\".\">Renames the selected query.</ahelp>"
-msgstr "<ahelp hid=\".\">Valittu kysely nimetään uudestaan.</ahelp>"
-
-#. mzY5g
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10628\n"
-"help.text"
-msgid "Form"
-msgstr "Lomake"
-
-#. BXrRw
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10634\n"
-"help.text"
-msgid "Open database object"
-msgstr "Avaa tietokanta objekti"
-
-#. GJDxB
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected form so you can enter, edit, or delete records.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan valittu lomake, niin että tietueita voidaan lisätä, muokata tai poistaa.</ahelp>"
-
-#. 7f3E9
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1064F\n"
-"help.text"
-msgid "Edit"
-msgstr "Muokkaa"
-
-#. ZmiNz
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10653\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected form so you can change the layout.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan valittu lomake, niin että asettelua voidaan muuttaa.</ahelp>"
-
-#. xCBQ3
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "Delete"
-msgstr "Poista"
-
-#. p5bD4
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1066E\n"
-"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected form.</ahelp>"
-msgstr "<ahelp hid=\".\">Valittu lomake poistetaan.</ahelp>"
-
-#. Jrqh7
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10685\n"
-"help.text"
-msgid "Rename"
-msgstr "Nimeä uudelleen"
-
-#. CLTV2
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10689\n"
-"help.text"
-msgid "<ahelp hid=\".\">Renames the selected form.</ahelp>"
-msgstr "<ahelp hid=\".\">Valittu lomake nimetään uudestaan.</ahelp>"
-
-#. tkXGC
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10698\n"
-"help.text"
-msgid "Report"
-msgstr "Raportti"
-
-#. GMWLb
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106A4\n"
-"help.text"
-msgid "Open database object"
-msgstr "Avaa tietokanta objekti"
-
-#. BzwcK
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106A8\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected report so you can enter, edit, or delete records.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan valittu raportti, niin että tietueita voidaan lisätä, muokata tai poistaa.</ahelp>"
-
-#. sLPTD
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106BF\n"
-"help.text"
-msgid "Edit"
-msgstr "Muokkaa"
-
-#. DF32e
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106C3\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected report so you can change the layout.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan valittu raportti, niin että asettelua voidaan muuttaa.</ahelp>"
-
-#. FGuUB
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106DA\n"
-"help.text"
-msgid "Delete"
-msgstr "Poista"
-
-#. xikUv
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106DE\n"
-"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected report.</ahelp>"
-msgstr "<ahelp hid=\".\">Valittu raportti poistetaan.</ahelp>"
-
-#. kmUBC
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106F5\n"
-"help.text"
-msgid "Rename"
-msgstr "Nimeä uudelleen"
-
-#. CgE7D
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106F9\n"
-"help.text"
-msgid "<ahelp hid=\".\">Renames the selected report.</ahelp>"
-msgstr "<ahelp hid=\".\">Valittu raportti nimetään uudestaan.</ahelp>"
diff --git a/source/fi/helpcontent2/source/text/shared/guide.po b/source/fi/helpcontent2/source/text/shared/guide.po
index ba56e46714c..2d5f5471abc 100644
--- a/source/fi/helpcontent2/source/text/shared/guide.po
+++ b/source/fi/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/fi/>\n"
@@ -907,32 +907,32 @@ 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>taustat; värien tai kuvien määrääminen</bookmark_value><bookmark_value>värit; taustat</bookmark_value><bookmark_value>kuvat; taustat</bookmark_value><bookmark_value>sivut; taustat kaikissa sovelluksissa</bookmark_value><bookmark_value>vesileimat</bookmark_value><bookmark_value>teksti, katso myös tekstiasiakirjat, kappaleet ja merkit</bookmark_value>"
-#. zLwi7
+#. C7HBu
#: 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>"
-msgstr "<variable id=\"background\"><link href=\"text/shared/guide/background.xhp\" name=\"Sivun taustavärin tai -kuvan määrääminen (vesileima)\">Sivun taustavärin tai -kuvan määrääminen (vesileima)</link> </variable>"
+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>"
+msgstr ""
-#. S9E8h
+#. Fa7Pn
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3153878\n"
"help.text"
-msgid "Choose <emph>Format - Page</emph>."
-msgstr "Valitse <emph>Muotoilu - Sivu</emph>"
+msgid "Choose <menuitem>Format - Page Style</menuitem>."
+msgstr ""
-#. XDxkU
+#. DjYpm
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3149581\n"
"help.text"
-msgid "On the <emph>Background</emph> tab page, select a background color or a background graphic."
-msgstr "<emph>Tausta</emph>-välilehdeltä valitaan taustaväri tai taustakuva."
+msgid "On the <emph>Area</emph> tab page, select a background color or a background graphic."
+msgstr ""
#. WCBmU
#: background.xhp
@@ -943,14 +943,14 @@ msgctxt ""
msgid "In spreadsheets this background appears only in the print behind the cells not formatted elsewhere."
msgstr "Laskentataulukoissa tämä tausta näkyy vain tulosteessa solujen takana, ei muualla muotoiltuna."
-#. jQFQC
+#. v5EAG
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3156180\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Tausta-välilehti\"><emph>Tausta</emph>-välilehti</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\"><emph>Area</emph> tab page</link>"
+msgstr ""
#. BDPLL
#: background.xhp
@@ -2752,13 +2752,13 @@ msgctxt ""
msgid "If the file is not stored in a CMIS server, choose <item type=\"menuitem\">File - Save Remote</item> or long-click the <emph>Save</emph> icon and select <emph>Save Remote File</emph>."
msgstr ""
-#. ryFLE
+#. DaEPC
#: cmis-remote-files.xhp
msgctxt ""
"cmis-remote-files.xhp\n"
"par_id170820161605428591\n"
"help.text"
-msgid "The <emph>Remote files</emph> dialog appears"
+msgid "The <emph>Remote files</emph> dialog appears. Select the remote file server."
msgstr ""
#. wQjzG
@@ -6523,14 +6523,14 @@ 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 "Napsauta <emph>Tallenna</emph>- tai <emph>Tallenna nimellä</emph> -kuvaketta <image id=\"img_id3153159\" src=\"cmd/sc_save.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153159\">Kuvake, jossa levyke</alt></image> kyselyn tallettamiseksi."
-#. WiVpi
+#. CFL3H
#: data_enter_sql.xhp
msgctxt ""
"data_enter_sql.xhp\n"
"par_id3153223\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Kyselyn suunnittelu\">Kyselyn suunnittelu</link>"
+msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>"
+msgstr ""
#. 2ArGc
#: data_forms.xhp
@@ -7081,14 +7081,14 @@ msgctxt ""
msgid "Click <emph>Create Query in Design View</emph>."
msgstr "Napsauta <emph>Luo kysely rakennenäkymässä</emph>."
-#. 9nBBo
+#. xkwQQ
#: data_queries.xhp
msgctxt ""
"data_queries.xhp\n"
"par_idN1065F\n"
"help.text"
-msgid "You see the <link href=\"text/shared/explorer/database/02010100.xhp\">Query Design window</link>."
-msgstr "Esille tulee <link href=\"text/shared/explorer/database/02010100.xhp\">Kyselyn suunnittelun ikkuna</link>."
+msgid "You see the <link href=\"text/sdatabase/02010100.xhp\">Query Design window</link>."
+msgstr ""
#. xGFGr
#: data_register.xhp
@@ -7747,14 +7747,14 @@ 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 "Anna suodatusehdot yhteen tai useampaan kenttään. Kun suodatusehdot asetetaan moneen kenttään, kaikkien annettujen ehtojen pitää täyttyä (Boolen AND)."
-#. FjhEB
+#. sNJBm
#: 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/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>."
-msgstr "Lisätietoja korvausmerkeistä ja operaattoreista on löydettävissä <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Kyselyn suunnittelu\">Kyselyn suunnittelusta</link>."
+msgid "More information about wildcards and operators can be found in <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>."
+msgstr ""
#. cEDEo
#: data_search2.xhp
@@ -7873,14 +7873,14 @@ msgctxt ""
msgid "In the next cell to the right, define the <emph>Field Type</emph>. When you click in the cell, you can select a field type in the combo box."
msgstr "Määritä <emph>Kenttätyyppi</emph> seuraavassa solussa oikealla. Napsauttamalla solua voit valita kentän tyypin yhdistelmäruudusta."
-#. FEJTg
+#. eaki2
#: data_tabledefine.xhp
msgctxt ""
"data_tabledefine.xhp\n"
"par_id3154760\n"
"help.text"
-msgid "Each field can only accept data corresponding to the specified field type. For example, it is not possible to enter text in a number field. Memo fields in dBASE III format are references to internally-managed text files which can hold up to 64KB text."
-msgstr "Kukin kenttä hyväksyy vain määrättyä kentän tyyppiä vastaavan aineiston. Esimerkiksi tekstiä ei voi syöttää numerokenttään. dBASE III -muodon muistio-kentät viittaavat sisäisesti käsiteltyihin tekstitiedostoihin, joissa voi olla enintään 64 kt tekstiä."
+msgid "Each field can only accept data corresponding to the specified field type. For example, it is not possible to enter text in a number field. Memo fields in dBASE III format are references to internally-managed text files which can hold up to 64 kB text."
+msgstr ""
#. oApsQ
#: data_tabledefine.xhp
@@ -7963,14 +7963,14 @@ msgctxt ""
msgid "<variable id=\"data_tables\"><link href=\"text/shared/guide/data_tables.xhp\">Working with Tables</link></variable>"
msgstr "<variable id=\"data_tables\"><link href=\"text/shared/guide/data_tables.xhp\">Taulujen käyttö</link></variable>"
-#. xEHUC
+#. A5KzF
#: data_tables.xhp
msgctxt ""
"data_tables.xhp\n"
"par_idN10617\n"
"help.text"
-msgid "Data is stored in tables. As an example, your system address book that you use for your e-mail addresses is a table of the address book database. Each address is a data record, presented as a row in that table. The data records consist of data fields, for example the first and the last name fields and the e-mail field."
-msgstr "Aineisto on talletettu tauluihin. Esimerkiksi järjestelmän osoitekirja, jota käytetään sähköpostiosoitteille, on osoitekirjatietokannan yksi taulu. Kukin osoite on tietue, joka esitetään taulun rivinä. Tietueet koostuvat tietokentistä, esimerkiksi etu- ja sukunimikentästä ja sähköpostikentästä."
+msgid "Data is stored in tables. As an example, your system address book that you use for your email addresses is a table of the address book database. Each address is a data record, presented as a row in that table. The data records consist of data fields, for example the first and the last name fields and the email field."
+msgstr ""
#. No5nx
#: data_tables.xhp
@@ -8107,14 +8107,14 @@ msgctxt ""
msgid "Click <emph>Create Table View</emph>."
msgstr "Napsauta <emph>Luo näkymä</emph>."
-#. oUbtR
+#. QEHKK
#: data_tables.xhp
msgctxt ""
"data_tables.xhp\n"
"par_idN10795\n"
"help.text"
-msgid "You see the View Design window, which is almost the same as the <link href=\"text/shared/explorer/database/02010100.xhp\">Query Design window</link>."
-msgstr "Näkyvissä on näkymän suunnittelun ikkuna, joka on miltei sama kuin <link href=\"text/shared/explorer/database/02010100.xhp\">Kyselyn suunnittelun ikkuna</link>."
+msgid "You see the View Design window, which is almost the same as the <link href=\"text/sdatabase/020010100.xhp\">Query Design window</link>."
+msgstr ""
#. bTx8G
#: data_view.xhp
@@ -8332,14 +8332,14 @@ msgctxt ""
msgid "Queries"
msgstr "Kyselyt"
-#. jQrME
+#. DwEUz
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3125864\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/02000000.xhp\" name=\"Create new query or table view, edit query structure\">Create new query or table view, edit query structure</link>"
-msgstr "<link href=\"text/shared/explorer/database/02000000.xhp\" name=\"Kyselyn tai näkymän luonti tahi kyselyn rakennemuokkaus\">Kyselyn tai näkymän luonti tahi kyselyn rakennemuokkaus</link>"
+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>"
+msgstr ""
#. A3f6p
#: database_main.xhp
@@ -8683,14 +8683,14 @@ msgctxt ""
msgid "When you receive a signed document, and the software reports that the signature is valid, this does not mean that you can be absolutely sure that the document is the same that the sender has sent. Signing documents with software certificates is not a perfectly secure method. Numerous ways are possible to circumvent the security features."
msgstr "Kun vastaanotetaan allekirjoitettu asiakirja ja ohjelma raportoi, että allekirjoitus on kelvollinen, se ei tarkoita, että voisi olla täysin varma, että asiakirja on sama, minkä lähettäjän lähetti. Asiakirjan allekirjoitus ohjelmallisin varmentein ei ole täysin varma menetelmä. On lukuisia tapoja kiertää suojauspiirteet."
-#. cMAMH
+#. HbiMb
#: digital_signatures.xhp
msgctxt ""
"digital_signatures.xhp\n"
"par_id7953123\n"
"help.text"
-msgid "Example: Think about someone who wants to camouflage his identity to be a sender from your bank. He can easily get a certificate using a false name, then send you any signed e-mail pretending he is working for your bank. You will get that e-mail, and the e-mail or the document within has the \"valid signed\" icon."
-msgstr "Esimerkki: ajatellaan, että joku haluaa teeskennellä olevansa pankissasi toimiva lähettäjä. Hän voi saada varmenteen käyttäen väärää nimeä ja sitten lähettää allekirjoitetun sähköpostin esiintyen pankin edustajana. Saat sähköpostiviestin ja viesti tai liitteenä oleva asiakirjassa on \"kelvollisesti allekirjoitettu\"-kuvake."
+msgid "Example: Think about someone who wants to camouflage his identity to be a sender from your bank. He can easily get a certificate using a false name, then send you any signed email pretending he is working for your bank. You will get that email, and the email or the document within has the \"valid signed\" icon."
+msgstr ""
#. DGz9C
#: digital_signatures.xhp
@@ -10627,41 +10627,41 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Hyväksy <emph>OK</emph>:lla."
-#. EtTc9
+#. Kw8ax
#: email.xhp
msgctxt ""
"email.xhp\n"
"tit\n"
"help.text"
-msgid "Sending Documents as E-mail"
-msgstr "Asiakirjojen lähettäminen sähköpostina"
+msgid "Sending Documents as Email"
+msgstr ""
-#. vsHuY
+#. noFBE
#: email.xhp
msgctxt ""
"email.xhp\n"
"bm_id3153345\n"
"help.text"
-msgid "<bookmark_value>documents; sending as e-mail</bookmark_value><bookmark_value>sending; documents as e-mail</bookmark_value><bookmark_value>e-mail attachments</bookmark_value><bookmark_value>files; sending as e-mail</bookmark_value><bookmark_value>text documents;sending as e-mail</bookmark_value><bookmark_value>spreadsheets; sending as e-mail</bookmark_value><bookmark_value>drawings; sending as e-mail</bookmark_value><bookmark_value>presentations; sending as e-mail</bookmark_value><bookmark_value>attachments in e-mails</bookmark_value>"
-msgstr "<bookmark_value>asiakirjat; lähettäminen sähköpostina</bookmark_value><bookmark_value>lähettäminen; asiakirjat sähköpostina</bookmark_value><bookmark_value>sähköpostin liitteet</bookmark_value><bookmark_value>tiedostot; lähettäminen sähköpostina</bookmark_value><bookmark_value>tekstiasiakirjat;lähettäminen sähköpostina</bookmark_value><bookmark_value>laskentataulukot; lähettäminen sähköpostina</bookmark_value><bookmark_value>piirrokset; lähettäminen sähköpostina</bookmark_value><bookmark_value>esitykset; lähettäminen sähköpostina</bookmark_value><bookmark_value>liitteet sähköpostissa</bookmark_value>"
+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 ""
-#. YbCCD
+#. CU2Ym
#: 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 E-mail\">Sending Documents as E-mail</link></variable>"
-msgstr "<variable id=\"email\"><link href=\"text/shared/guide/email.xhp\" name=\"Asiakirjojen lähettäminen sähköpostina\">Asiakirjojen lähettäminen sähköpostina</link></variable>"
+msgid "<variable id=\"email\"><link href=\"text/shared/guide/email.xhp\" name=\"Sending Documents as Email\">Sending Documents as Email</link></variable>"
+msgstr ""
-#. dsSbC
+#. Z3E7r
#: email.xhp
msgctxt ""
"email.xhp\n"
"par_id3154897\n"
"help.text"
-msgid "Working in $[officename], you can send the current document as an e-mail attachment."
-msgstr "Käytettäessä $[officename]a käsiteltävä asiakirja voidaan lähettää sähköpostin liitteenä."
+msgid "Working in $[officename], you can send the current document as an email attachment."
+msgstr ""
#. 8jsBd
#: email.xhp
@@ -10681,23 +10681,23 @@ msgctxt ""
msgid "$[officename] opens your default email program.<switchinline select=\"sys\"><caseinline select=\"UNIX\"> If you want to send the current document with another email program, you can select the program to use with <emph>Internet - Email</emph> in the Options dialog box.</caseinline></switchinline>"
msgstr ""
-#. 3vDxY
+#. maP2B
#: email.xhp
msgctxt ""
"email.xhp\n"
"par_id3150986\n"
"help.text"
-msgid "In your e-mail program, enter the recipient, subject and any text you want to add, then send the e-mail."
-msgstr "Sähköpostiohjelmassasi kirjoita vastaanottaja, aihe ja haluamasi viestiteksti ja lähetä sitten sähköpostiviesti."
+msgid "In your email program, enter the recipient, subject and any text you want to add, then send the email."
+msgstr ""
-#. 2WZb7
+#. XdVXq
#: email.xhp
msgctxt ""
"email.xhp\n"
"par_id3595385\n"
"help.text"
-msgid "In case you want to send the e-mail to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - E-mail as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - E-mail as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - E-mail as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - E-mail as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
-msgstr "Siinä tapauksessa, että lähetät sähköpostiviestin vastaanottajalle, jolla on vain ohjelmisto, joka ei kykene lukemaan OpenDocument-tiedostomuotoa, voit lähettää käsiteltävän asiakirjan yleisesti käytetyssä suljetussa tiedostomuodossa.<br/>Valitse tekstiasiakirjoille <item type=\"menuitem\">Tiedosto - Lähetä - Sähköposti Microsoft Word -asiakirjana</item> -komento. Valitse laskentataulukolle <item type=\"menuitem\">Tiedosto - Lähetä - Sähköposti Microsoft Excel -laskentataulukkona</item> -komento. Ja esityksille valitse <item type=\"menuitem\">Tiedosto - Lähetä - Sähköposti Microsoft PowerPoint -esityksenä</item> -komento. <br/>Jos haluat lähettää asiakirjan kirjoitussuojattuna, valitse <item type=\"menuitem\">Tiedosto - Lähetä - Sähköposti PDF:änä</item> -komento.<br/>Nämä komennot eivät muuta käsiteltävää asiakirjaa. Vain tilapäinen kopio luodaan ja lähetetään."
+msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
+msgstr ""
#. J84BK
#: error_report.xhp
@@ -10807,14 +10807,14 @@ msgctxt ""
msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
msgstr "Virheraporttiin ei tule ohjeistavaa vastausta. Mikäli käyttäjä tarvitsee tukea, käytettävissä on <link href=\"text/shared/main0108.xhp\">tukifoorumit</link> Internetissä."
-#. kz5CY
+#. yhvCf
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153526\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by e-mail, should additional information be required. By default this box is not marked, so you will not get any e-mail."
-msgstr "Käyttäjän valittavissa on vastata mahdollisiin kehittäjien kysymyksiin raportoidusta virheestä. Merkitsemällä valintaruudun käyttäjä sallii yhteydenoton sähköpostilla, mikäli lisätietoja tarvitaan. Oletuksena ruutu on rastiton, joten mitään sähköpostiviestejä ei lähetetä käyttäjälle."
+msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
+msgstr ""
#. C7FWC
#: error_report.xhp
@@ -12778,14 +12778,14 @@ 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 "Hyperlinkkejä käytettäessä huomioidaan kaksi tekijää: asetetaanko hyperlinkit suhteellisiksi vai absoluuttisiksi tallennettaessa ja onko linkitetty tiedosto läsnä vai ei."
-#. swmJ3
+#. KFh7J
#: 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#speichern\" 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."
-msgstr "Valitaan <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Asetukset</caseinline><defaultinline>Työkalut - Asetukset</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Lataus ja tallennus - Yleistä\"><emph>Lataus ja tallennus - Yleistä</emph></link> ja määritetään <emph>URL-osoitteen tallennus suhteessa</emph> -kentässä, luoko $[officename] <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"suhteelliset tai absoluuttiset hyperlinkit\">suhteelliset vai absoluuttiset hyperlinkit</link>. Suhteellinen linkittäminen on mahdollista vain, kun työstettävä asiakirja ja linkin kohde on samalla asemalla."
+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."
+msgstr ""
#. Ue6zh
#: hyperlink_rel_abs.xhp
@@ -13651,13 +13651,13 @@ msgctxt ""
msgid "This function allows you to insert special characters, such as check marks, boxes, and telephone symbols, into your text."
msgstr "Toiminnolla lisätään tekstiin erikoismerkkejä, kuten pukkimerkit, ruudut ja puhelinsymbolit."
-#. N5gfA
+#. oBfFd
#: insert_specialchar.xhp
msgctxt ""
"insert_specialchar.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "To view a selection of all characters, choose <menuitem>Insert - Special Character</menuitem>."
+msgid "To view a repertoire of all characters, choose <menuitem>Insert - Special Character</menuitem>."
msgstr ""
#. fFAT9
@@ -20077,13 +20077,13 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/qrcode.xhp\" name=\"QR Code\">QR Code</link>"
msgstr ""
-#. Q8ujF
+#. YdWKF
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id381566315781439\n"
"help.text"
-msgid "<ahelp hid=\".\">Generate QR Code for any text or URL.</ahelp>"
+msgid "Generate QR Code for any text or URL."
msgstr ""
#. SzeNM
@@ -20113,13 +20113,13 @@ msgctxt ""
msgid "URL or Text"
msgstr ""
-#. CxDiM
+#. ikC8E
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id251566316519649\n"
"help.text"
-msgid "<ahelp hid=\".\">The text from which to generate the QR code.</ahelp>"
+msgid "The text from which to generate the QR code."
msgstr ""
#. 6mj5K
@@ -20149,40 +20149,40 @@ msgctxt ""
msgid "There are four standard error correction values."
msgstr ""
-#. B7CfZ
+#. LdLRP
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id271566316757549\n"
"help.text"
-msgid "<emph>Low</emph>: <ahelp hid=\".\">7% of codewords can be restored.</ahelp>"
+msgid "<emph>Low</emph>: 7% of codewords can be restored."
msgstr ""
-#. Tp5Fa
+#. gNLdh
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id751566316834436\n"
"help.text"
-msgid "<emph>Medium</emph>: <ahelp hid=\".\">15% of codewords can be restored.</ahelp>"
+msgid "<emph>Medium</emph>: 15% of codewords can be restored."
msgstr ""
-#. 45uQ6
+#. GQtTJ
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id481566316843503\n"
"help.text"
-msgid "<emph>Quartile</emph>: <ahelp hid=\".\">25% of codewords can be restored.</ahelp>"
+msgid "<emph>Quartile</emph>: 25% of codewords can be restored."
msgstr ""
-#. sP2BA
+#. QBceY
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id641566316849901\n"
"help.text"
-msgid "<emph>High</emph>: <ahelp hid=\".\">30% of codewords can be restored.</ahelp>"
+msgid "<emph>High</emph>: 30% of codewords can be restored."
msgstr ""
#. F32vf
@@ -20194,13 +20194,13 @@ msgctxt ""
msgid "Border"
msgstr ""
-#. jzJW7
+#. wz9kT
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id981566316947064\n"
"help.text"
-msgid "<ahelp hid=\".\">The width in dots of the border surrounding the QR code.</ahelp>"
+msgid "The width in dots of the border surrounding the QR code."
msgstr ""
#. kZPNW
@@ -20401,22 +20401,22 @@ msgctxt ""
msgid "The <emph>Redacted Export</emph> button box has two options:"
msgstr ""
-#. pBqFG
+#. iFMK3
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"par_id551562796791417\n"
"help.text"
-msgid "<emph>Redacted Export (Black)</emph>: finalize your document by converting the semitransparent redaction shapes to opaque black and export as a pixellized PDF file."
+msgid "<emph>Redacted Export (Black)</emph>: finalize your document by converting the semitransparent redaction shapes to opaque black and export as pixels in the PDF file."
msgstr ""
-#. Z5u4M
+#. HSvWX
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"par_id191562796822685\n"
"help.text"
-msgid "<emph>Redacted Export (White)</emph>: finalize your document by converting the semitransparent redaction shapes to opaque white shapes, and export as a pixellized PDF file."
+msgid "<emph>Redacted Export (White)</emph>: finalize your document by converting the semitransparent redaction shapes to opaque white shapes, and export as pixels in the PDF file."
msgstr ""
#. 2w5mE
@@ -20500,14 +20500,14 @@ msgctxt ""
msgid "The edited document comes back to you, and you can incorporate or ignore the suggestions of the two reviewers."
msgstr "Muokattu asiakirja tulee takaisin sinulle ja voit joko ottaa mukaan tai ohittaa tarkastajien ehdotukset."
-#. SJz3q
+#. QC87c
#: redlining.xhp
msgctxt ""
"redlining.xhp\n"
"par_id3146957\n"
"help.text"
-msgid "Let's say you also e-mailed a copy of the report to a good friend and colleague who has done research on a similar topic in the past. You asked for a few suggestions, and the document is now returned by e-mail with your colleague's suggestions."
-msgstr "Oletetaan vielä, että lähetit kopion reportaasistasi hyvälle ystävällesi ja kollegallesi, joka on tehnyt tutkimusta samanlaisen aiheen parissa aiemmin. Pyysit joitakin kommentteja ja asiakirja on nyt tullut takaisin sähköpostilla kollegasi kommentein."
+msgid "Let's say you also emailed a copy of the report to a good friend and colleague who has done research on a similar topic in the past. You asked for a few suggestions, and the document is now returned by email with your colleague's suggestions."
+msgstr ""
#. CoW6n
#: redlining.xhp
@@ -21058,14 +21058,14 @@ 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>muutokset; suojaaminen</bookmark_value><bookmark_value>suojaaminen; nauhoitetut muutokset</bookmark_value><bookmark_value>nauhoitukset; suojaaminen</bookmark_value><bookmark_value>tarkastustoiminto;nauhoituksien suojaaminen</bookmark_value>"
-#. 4cTt7
+#. Tj23h
#: 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>"
-msgstr "<variable id=\"redlining_protect\"><link href=\"text/shared/guide/redlining_protect.xhp\" name=\"Protecting Changes\">Muutoshistorian suojaaminen</link> </variable>"
+msgid "<variable id=\"redlining_protect\"><link href=\"text/shared/guide/redlining_protect.xhp\" name=\"Protecting Changes\">Protecting Changes</link></variable>"
+msgstr ""
#. jVeUw
#: redlining_protect.xhp
@@ -24361,23 +24361,23 @@ msgctxt ""
msgid "Switching Between Insert Mode and Overwrite Mode"
msgstr "Lisäystilan ja päällekirjoitustilan vuorottelu"
-#. BzPEA
+#. FrywY
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"bm_id3159233\n"
"help.text"
-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 "<bookmark_value>teksti; päällekirjoitus tai lisääminen</bookmark_value><bookmark_value>päällekirjoitustila</bookmark_value><bookmark_value>lisäystila tekstiä syötettäessä</bookmark_value>"
+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 ""
-#. 7ST7D
+#. AWrGk
#: 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>"
-msgstr "<variable id=\"textmode_change\"><link href=\"text/shared/guide/textmode_change.xhp\" name=\"Switching Between Insert Mode and Overwrite Mode\">Lisäystilan ja päällekirjoitustilan vuorottelu</link></variable>"
+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>"
+msgstr ""
#. qhFEZ
#: textmode_change.xhp
@@ -24388,14 +24388,14 @@ msgctxt ""
msgid "With the keyboard:"
msgstr "Näppäimistöllä:"
-#. 3GsGt
+#. beikb
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3153031\n"
"help.text"
-msgid "Press Insert to toggle between overwrite mode and insert mode. The current mode is displayed on the Status Bar.<switchinline select=\"appl\"><caseinline select=\"CALC\"> The text cursor must be enabled in the cell or in the input line. </caseinline></switchinline>"
-msgstr "Painelemalla Insert-näppäintä päällekirjoitustila ja lisäystila vaihtelevat. Vallitseva tila näkyy tilarivillä. <switchinline select=\"appl\"><caseinline select=\"CALC\"> Tekstikohdistin pitää olla käytettävissä solussa tai syöttörivillä. </caseinline></switchinline>"
+msgid "Press <keycode>Insert</keycode> to toggle between overwrite mode and insert mode. The current mode is displayed on the Status Bar. <switchinline select=\"appl\"><caseinline select=\"CALC\"> The text cursor must be enabled in the cell or in the input line.</caseinline></switchinline>"
+msgstr ""
#. Hd4Vg
#: textmode_change.xhp
@@ -24415,41 +24415,41 @@ msgctxt ""
msgid "On the Status Bar, click on the area indicating the current mode in order to switch to the other mode:"
msgstr "Tilarivillä napsautetaan vallitsevaa kirjoitustilaa osoittavaa kenttää, jolloin tila vaihtuu:"
-#. XAHAp
+#. DG4fD
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3145673\n"
"help.text"
-msgid "<emph>INSRT</emph>"
-msgstr "<emph>LIS</emph>"
+msgid "<emph>Insert</emph>"
+msgstr ""
-#. ZLXCM
+#. DjbYz
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3154307\n"
"help.text"
-msgid "Insert mode is enabled. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The text cursor is a blinking vertical line. </caseinline></switchinline>Click on the area to enable the overwrite mode."
-msgstr "Lisäystila on käytössä. <switchinline select=\"appl\"><caseinline select=\"WRITER\">Tekstikohdistin on vilkkuva pystyviiva. </caseinline></switchinline>Napsauttamalla kenttää vaihdetaan päällekirjoitustilaan."
+msgid "<switchinline select=\"sys\"> <caseinline select=\"MAC\">Insert mode is active.</caseinline> <defaultinline>The area in the status bar is blank, when Insert mode is active.</defaultinline> </switchinline> The text cursor is a blinking vertical line. Click on the area to activate the overwrite mode."
+msgstr ""
-#. n8G6G
+#. XFgYi
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3150984\n"
"help.text"
-msgid "<emph>OVER</emph>"
-msgstr "<emph>KORV</emph>"
+msgid "<emph>Overwrite</emph>"
+msgstr ""
-#. YQKDi
+#. idAmv
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3148491\n"
"help.text"
-msgid "The overwrite mode is enabled. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The text cursor is a blinking block. </caseinline></switchinline>Click on the area to enable insert mode."
-msgstr "Korvaus- eli päällekirjoitustila on käytössä. <switchinline select=\"appl\"><caseinline select=\"WRITER\">Tekstikohdistin on vilkkuva lohko. </caseinline></switchinline>Napsauttamalla kenttää vaihdetaan lisäystilaan."
+msgid "The overwrite mode is active. The text cursor is a blinking block. Click on the area to activate insert mode."
+msgstr ""
#. tHRqe
#: textmode_change.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/help.po b/source/fi/helpcontent2/source/text/shared/help.po
index f276d27b22e..eb0c9d3cfa1 100644
--- a/source/fi/helpcontent2/source/text/shared/help.po
+++ b/source/fi/helpcontent2/source/text/shared/help.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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-06-02 11:50+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedhelp/fi/>\n"
@@ -133,6 +133,15 @@ msgctxt ""
msgid "<variable id=\"searchhelpcontents\">Search help contents</variable>"
msgstr ""
+#. ucD7E
+#: browserhelp.xhp
+msgctxt ""
+"browserhelp.xhp\n"
+"par_id211591971675557\n"
+"help.text"
+msgid "<variable id=\"noscriptmsg\">Enable JavaScript in the browser to display %PRODUCTNAME Help pages.</variable>"
+msgstr ""
+
#. DXqYQ
#: browserhelp.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/shared/optionen.po b/source/fi/helpcontent2/source/text/shared/optionen.po
index f7fcbcfe69c..05d494ad007 100644
--- a/source/fi/helpcontent2/source/text/shared/optionen.po
+++ b/source/fi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-23 11:48+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/fi/>\n"
@@ -61,14 +61,14 @@ msgctxt ""
msgid "All your settings are saved automatically. To expand an entry either double click this entry or click the plus sign. To collapse the entry, click the minus sign or double click the entry."
msgstr "Kaikki asetukset tallentuvat ohjelmallisesti. Hakemiston rivin saa laajennettua joko kaksoisnapsauttamalla riviä tai plus-merkkiä napsauttaen. Laajennetun hakemiston rivin saa kutistettua miinus-merkkiä napsauttaen tai kaksoisnapsauttamalla riviä."
-#. Dn9AL
+#. HMSEY
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"par_idN10607\n"
"help.text"
-msgid "You see only the entries that are applicable to the current document. If the current document is a text document, you see the %PRODUCTNAME Writer entry, and so on for all modules of %PRODUCTNAME. %PRODUCTNAME Impress and %PRODUCTNAME Draw are treated as the same in this dialog. The common entries are always visible."
-msgstr "Esillä on vain aktiiviseen asiakirjaan soveltuvat asetuskohdat. Jos aktiivinen asiakirja on tekstidokumentti, nähtävissä on %PRODUCTNAME Writerin rivit ja samoin muissakin %PRODUCTNAME-moduuleissa. %PRODUCTNAME Impress ja %PRODUCTNAME Draw käsitellään yhdessä tässä valintaikkunassa. Yhteiset asiat ovat aina näkyvissä."
+msgid "You see only the entries that are applicable to the current document. If the current document is a text document, you see the %PRODUCTNAME Writer entry, and so on for all modules of %PRODUCTNAME."
+msgstr ""
#. uYcBu
#: 01000000.xhp
@@ -79,13 +79,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_OFADLG_TREELISTBOX\" visibility=\"hidden\">Select an entry to edit.</ahelp>"
msgstr "<ahelp hid=\"HID_OFADLG_TREELISTBOX\" visibility=\"hidden\">Valitaan muutettavien tietojen otsikkorivi</ahelp>"
-#. qV89h
+#. cLKW2
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"par_id1013200911280529\n"
+"par_id61597440155071\n"
"help.text"
-msgid "Note for macOS users: The Help mentions the menu path Tools - Options at numerous places. Replace this path with %PRODUCTNAME - Preferences on your macOS main menu. Both menu entries open the Options dialog box."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline>"
msgstr ""
#. WS53M
@@ -556,22 +556,22 @@ msgctxt ""
msgid "<ahelp hid=\".\">Type your fax number in this field.</ahelp>"
msgstr ""
-#. SbdwC
+#. rioqH
#: 01010100.xhp
msgctxt ""
"01010100.xhp\n"
"hd_id3150592\n"
"help.text"
-msgid "E-mail"
-msgstr "Sähköposti"
+msgid "Email"
+msgstr ""
-#. g5uYB
+#. FNyZE
#: 01010100.xhp
msgctxt ""
"01010100.xhp\n"
"par_id3154942\n"
"help.text"
-msgid "<ahelp hid=\".\">Type your e-mail address.</ahelp> For example, my.name@my.provider.com"
+msgid "<ahelp hid=\".\">Type your email address.</ahelp> For example, my.name@my.provider.com"
msgstr ""
#. DA4Z7
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Save URLs relative to file system"
msgstr "URL-osoitteen tallennus suhteessa tiedostojärjestelmään"
-#. Dwh8W
+#. URbep
#: 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#speichern\" 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\" 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."
msgstr ""
#. jDPKd
@@ -1033,13 +1033,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 "Ohjevihjeet esittävät aina absoluuttisen polun. Kuitenkin, jos asiakirja on tallennettu HTML-muotoon, <item type=\"productname\">%PRODUCTNAME</item> antaa suhteellisen polun, jos asiaan liittyvä valintaruutu on merkitty."
-#. tDU47
+#. 2sqRz
#: 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#speichern\" 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\" name=\"relative saving\"><emph>relative saving</emph></link> of URLs in the file system.</ahelp>"
msgstr ""
#. x9sAv
@@ -1051,13 +1051,13 @@ msgctxt ""
msgid "Save URLs relative to internet"
msgstr "URL-osoitteen tallennus suhteessa internetiin"
-#. HfnEy
+#. UHaGc
#: 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#speichern\" 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\" name=\"relative saving\"><emph>relative saving</emph></link> of URLs to the Internet.</ahelp>"
msgstr ""
#. Ymh8t
@@ -4876,50 +4876,50 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optproxypage/ftpport\">Type the port for the corresponding proxy server.</ahelp> The maximum value of a port number is fixed at 65535."
msgstr "<ahelp hid=\"cui/ui/optproxypage/ftpport\">Kirjoitetaan portti, joka vastaa välityspalvelinta.</ahelp> Porttinumeron suurin mahdollinen arvo on 65535."
-#. CvGfQ
+#. 7oGRX
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"tit\n"
"help.text"
-msgid "E-mail"
-msgstr "Sähköposti"
+msgid "Email"
+msgstr ""
-#. bFEGY
+#. 8iAf5
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN1054D\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01020300.xhp\">E-mail</link>"
-msgstr "<link href=\"text/shared/optionen/01020300.xhp\">Sähköposti</link>"
+msgid "<link href=\"text/shared/optionen/01020300.xhp\">Email</link>"
+msgstr ""
-#. ADUFe
+#. zqXGG
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN1056B\n"
"help.text"
-msgid "On UNIX systems, specifies the e-mail program to use when you send the current document as e-mail."
-msgstr "UNIX-järjestelmissä, määritetään käytettävä sähköpostiohjelma, kun käsiteltävä asiakirja lähetetään sähköpostiviestinä."
+msgid "On UNIX systems, specifies the email program to use when you send the current document as email."
+msgstr ""
-#. rBUxL
+#. DFhk6
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN10576\n"
"help.text"
-msgid "E-mail program"
-msgstr "Sähköpostiohjelma"
+msgid "Email program"
+msgstr ""
-#. cXMGv
+#. KBusD
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN1057A\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optemailpage/url\">Enter the e-mail program path and name.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optemailpage/url\">Kirjoitetaan sähköpostiohjelman polku ja tiedostonimi.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optemailpage/url\">Enter the email program path and name.</ahelp>"
+msgstr ""
#. aP7pK
#: 01020300.xhp
@@ -4930,14 +4930,14 @@ msgctxt ""
msgid "Browse"
msgstr "Selaa"
-#. QDZFn
+#. DAjWA
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN10595\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optemailpage/browse\">Opens a file dialog to select the e-mail program.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optemailpage/browse\">Avataan tiedostoikkuna sähköpostiohjelman valintaan.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optemailpage/browse\">Opens a file dialog to select the email program.</ahelp>"
+msgstr ""
#. KhbuR
#: 01030000.xhp
@@ -5245,42 +5245,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optsecuritypage/cert\">Opens the <emph>Certificate Path</emph> dialog.</ahelp>"
msgstr ""
-#. yZc9g
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"par_idN106871\n"
-"help.text"
-msgid "TSAs"
-msgstr "TSA:t"
-
-#. yxkXg
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"par_idN1068B1\n"
-"help.text"
-msgid "Allows you to maintain a list of Time Stamping Authority (TSA) URLs. TSAs issue digitally signed timestamps (RFC 3161) that are optionally used during signed PDF export."
-msgstr "Mahdollistaa aikaleimapalvelimien (TSA) luettelon ylläpidon. TSA:t tarjoavat sähköisesti allekirjoitettuja aikaleimoja (RFC 3161), joita voidaan haluttaessa käyttää PDF-tiedostojen allekirjoittamisen yhteydessä."
-
-#. LBhZv
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"par_idN1068E1\n"
-"help.text"
-msgid "TSAs"
-msgstr "TSA:t"
-
-#. 3GGAj
-#: 01030300.xhp
-msgctxt ""
-"01030300.xhp\n"
-"par_idN106921\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/optsecuritypage/tsas\">Opens the <emph>Time Stamping Authority URLs</emph> dialog.</ahelp>"
-msgstr ""
-
#. tY5b3
#: 01030500.xhp
msgctxt ""
@@ -5831,13 +5795,13 @@ msgctxt ""
msgid "Hidden paragraphs"
msgstr ""
-#. AjSy3
+#. nH86m
#: 01040200.xhp
msgctxt ""
"01040200.xhp\n"
"par_id3149418\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddenparafield\">If you have inserted text using the <emph>Hidden Paragraph</emph> field, specifies whether to display the hidden paragraph.</ahelp> This option has the same function as the menu commands <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/03140000.xhp\" name=\"View - Hidden Paragraphs\">View - Hidden Paragraphs</link></caseinline><defaultinline>View - Hidden Paragraphs</defaultinline></switchinline> available in open text documents."
+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>."
msgstr ""
#. 5TDVz
@@ -6155,14 +6119,14 @@ msgctxt ""
msgid "Change default template"
msgstr "Oletusmallia muutetaan"
-#. shHgd
+#. Ni7Vy
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"tit\n"
"help.text"
-msgid "Print"
-msgstr "Tulostus"
+msgid "Print (Options)"
+msgstr ""
#. xqTJ6
#: 01040400.xhp
@@ -6191,14 +6155,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">Specifies print settings within a text or HTML document.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">Määritetään teksti- tai HTML-asiakirjan tulostusasetukset.</ahelp>"
-#. 3ga6h
+#. m2BYE
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"par_id3153542\n"
"help.text"
-msgid "The print settings defined on this tab page apply to all subsequent print jobs, until you change the settings again. If you want to change the settings for the current print job only, use the <emph>File - Print</emph> dialog."
-msgstr "Tämän välilehden tulostusasetukset ovat voimassa kaikille myöhemmille asiakirjoille. Jos on tarve muuttaa vain käsiteltävän tulostustyön asetuksia, käytetään <emph>Tiedosto - Tulosta</emph> -valintaikkunaa."
+msgid "The print settings defined on this tab page apply to all subsequent print jobs, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
+msgstr ""
#. kHkS3
#: 01040400.xhp
@@ -6218,14 +6182,14 @@ msgctxt ""
msgid "Specifies which document contents are to be printed."
msgstr "Määritetään asiakirjan tulostettavat sisällön osat."
-#. dR5Jq
+#. y2E9m
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"hd_id3156156\n"
"help.text"
-msgid "Pictures and objects"
-msgstr "Kuvat ja objektit"
+msgid "Images and objects"
+msgstr ""
#. kgtQG
#: 01040400.xhp
@@ -6272,14 +6236,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document.</ahelp>"
msgstr "<ahelp hid=\".\">Merkinnällä määrätään, että sivun taustaan lisätyt värit ja objektit (Muotoilu - Sivu - Tausta) sisältyvät tulostettuun asiakirjaan.</ahelp>"
-#. bQyBE
+#. UFYzB
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"hd_id3150868\n"
"help.text"
-msgid "Print black"
-msgstr "Tulosta mustana"
+msgid "Print text in black"
+msgstr ""
#. txERh
#: 01040400.xhp
@@ -6425,23 +6389,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Check to print the pages of the brochure in the correct order for a right-to-left script.</ahelp>"
msgstr "<ahelp hid=\".\">Merkitsemällä määrätään esitteet sivut tulostettaviksi oikeassa järjestyksessä oikealta vasemmalle kirjoitettavilla kielillä.</ahelp>"
-#. fD3Cv
-#: 01040400.xhp
-msgctxt ""
-"01040400.xhp\n"
-"hd_id3149300\n"
-"help.text"
-msgid "Comments"
-msgstr "Huomautukset"
-
-#. Pkyu4
+#. YCF2u
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
-"par_id3151320\n"
+"par_id251602857011343\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies whether comments in your document are printed.</ahelp>"
-msgstr "<ahelp hid=\".\">Määritetään asiakirjan huomautuksien tulostusta.</ahelp>"
+msgid "This control appears only if <emph>Complex text layout</emph> is set in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>."
+msgstr ""
#. ap5FC
#: 01040400.xhp
@@ -6506,6 +6461,24 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/fax\">If you have installed fax software on your computer and wish to fax directly from the text document, select the desired fax machine.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/fax\">Jos tietokoneelle on asennettu faksiohjelma ja tekstiasiakirja halutaan lähettää suoraan faksina, valitaan tarvittava faksilaite.</ahelp>"
+#. fD3Cv
+#: 01040400.xhp
+msgctxt ""
+"01040400.xhp\n"
+"hd_id3149300\n"
+"help.text"
+msgid "Comments"
+msgstr "Huomautukset"
+
+#. Pkyu4
+#: 01040400.xhp
+msgctxt ""
+"01040400.xhp\n"
+"par_id3151320\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies whether comments in your document are printed.</ahelp>"
+msgstr "<ahelp hid=\".\">Määritetään asiakirjan huomautuksien tulostusta.</ahelp>"
+
#. TUSby
#: 01040500.xhp
msgctxt ""
@@ -7523,6 +7496,168 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/optredlinepage/markcolor\">Specifies the color for highlighting the changed lines in the text.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/optredlinepage/markcolor\">Määritetään muutettujen rivien korostusväri tekstissä.</ahelp>"
+#. BANMp
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"tit\n"
+"help.text"
+msgid "Comparison Options"
+msgstr ""
+
+#. E6UnW
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"bm_id481597340419434\n"
+"help.text"
+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
+#: 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>"
+msgstr ""
+
+#. DRYng
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id761597320214148\n"
+"help.text"
+msgid "Defines the comparison options for the document."
+msgstr ""
+
+#. vgLbk
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id101597332748471\n"
+"help.text"
+msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Writer - Comparison</menuitem>."
+msgstr ""
+
+#. mjJDZ
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"hd_id421597320817511\n"
+"help.text"
+msgid "Compare documents"
+msgstr ""
+
+#. uKiJe
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id821597320851919\n"
+"help.text"
+msgid "<emph>Automatic</emph>: Uses traditional algorithm for document comparison (default)."
+msgstr ""
+
+#. sG9SF
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id771597320878668\n"
+"help.text"
+msgid "<emph>By word</emph>: compares documents segmenting contents word by word."
+msgstr ""
+
+#. BRvm7
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id431597320905536\n"
+"help.text"
+msgid "<emph>By characters</emph>: compares documents segmenting contents character by character. You can define the minimal number of character for the comparison."
+msgstr ""
+
+#. 8Pb46
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"hd_id521597320824763\n"
+"help.text"
+msgid "Random Number to improve accuracy of document comparison"
+msgstr ""
+
+#. CVid8
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id411597332706569\n"
+"help.text"
+msgid "Introduce an identifier to improve accuracy of document comparison when done by word or by characters."
+msgstr ""
+
+#. SBPxy
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id631597333767341\n"
+"help.text"
+msgid "These options are enabled when the Compare documents options are by words or by characters."
+msgstr ""
+
+#. D8X8F
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"hd_id601597323591520\n"
+"help.text"
+msgid "Take it into account when comparing"
+msgstr ""
+
+#. AzAaF
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id191597335836486\n"
+"help.text"
+msgid "Activates the document comparison using By word and By character options."
+msgstr ""
+
+#. BRybW
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"hd_id1001597323596761\n"
+"help.text"
+msgid "Ignore pieces of length"
+msgstr ""
+
+#. jrR5L
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id751597333853235\n"
+"help.text"
+msgid "Set the minimum number of characters to trigger a valid comparison."
+msgstr ""
+
+#. hZ7bt
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"hd_id291597323603653\n"
+"help.text"
+msgid "Store it when changing the document"
+msgstr ""
+
+#. GgGrD
+#: 01040800.xhp
+msgctxt ""
+"01040800.xhp\n"
+"par_id421597332757267\n"
+"help.text"
+msgid "Stores the random number in the document."
+msgstr ""
+
#. CxgNP
#: 01040900.xhp
msgctxt ""
@@ -7957,6 +8092,42 @@ msgctxt ""
msgid "Specifies the characters that are considered as word separators when counting words, in addition to spaces, tabs and line and paragraph breaks."
msgstr "Sanamäärää laskettaessa näitä merkkejä pidetään sanojen välisinä erotinmerkkeinä välilyöntien, sarkainmerkkien, rivivaihtomerkkien ja kappalevaihtomerkkien lisäksi."
+#. LBDBF
+#: 01040900.xhp
+msgctxt ""
+"01040900.xhp\n"
+"hd_id691599000315902\n"
+"help.text"
+msgid "Show standardized page count"
+msgstr ""
+
+#. 67L2A
+#: 01040900.xhp
+msgctxt ""
+"01040900.xhp\n"
+"par_id581599002628645\n"
+"help.text"
+msgid "Editors and publishers often define a “standard” page as containing a specified number of characters or words. Mark this field to allows quick calculation of the number of these pages."
+msgstr ""
+
+#. eQjAd
+#: 01040900.xhp
+msgctxt ""
+"01040900.xhp\n"
+"hd_id511599000321915\n"
+"help.text"
+msgid "Characters per standardized page"
+msgstr ""
+
+#. AFkck
+#: 01040900.xhp
+msgctxt ""
+"01040900.xhp\n"
+"par_id271599002636069\n"
+"help.text"
+msgid "Set the number of characters for the standardized page."
+msgstr ""
+
#. RPuAH
#: 01041000.xhp
msgctxt ""
@@ -8974,14 +9145,14 @@ msgctxt ""
msgid "Specifies the background for HTML documents. The background is valid for both new HTML documents and for those that you load, as long as these have not defined their own background."
msgstr ""
-#. 3SbXD
+#. mASX2
#: 01050300.xhp
msgctxt ""
"01050300.xhp\n"
-"par_id3156156\n"
+"par_id3151114\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Further information\">Further information</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Lisätietoja\">Lisätietoja</link>"
+msgid "<ahelp hid=\".\">Click a color. Click No Fill to remove a background or highlighting color.</ahelp>"
+msgstr ""
#. YvDPU
#: 01060000.xhp
@@ -15256,13 +15427,13 @@ msgctxt ""
msgid "Expert Configuration"
msgstr ""
-#. YGAEk
+#. rmYbp
#: expertconfig.xhp
msgctxt ""
"expertconfig.xhp\n"
"par_id0609201521430059\n"
"help.text"
-msgid "Choose <emph>Tools – Options – %PRODUCTNAME – Advanced – Expert Configuration</emph>"
+msgid "Choose <menuitem>Tools - Options - %PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
msgstr ""
#. 7CGay
@@ -15472,13 +15643,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/aboutconfigdialog/edit\">Opens a dialog to edit the preference.</ahelp>"
msgstr ""
-#. tLoDF
+#. aZSk8
#: expertconfig.xhp
msgctxt ""
"expertconfig.xhp\n"
"par_id0609201523043085\n"
"help.text"
-msgid "You can double click in the preference row to edit the current value of the property."
+msgid "Double-click in the preference row to edit current string and long values or toggle boolean types."
msgstr ""
#. HGh4N
@@ -15580,6 +15751,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optadvancedpage/javas\">Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart %PRODUCTNAME to use your changed setting.</ahelp> The path to the JRE is displayed beneath the list box."
msgstr "<ahelp hid=\"cui/ui/optadvancedpage/javas\">Valitaan käytettävä JRE. Joissakin järjestelmissä on odotettava minuutin verran, että luettelo tulee valmiiksi. Joissakin järjestelmissä %PRODUCTNAME on käynnistettävä uudestaan, jotta asetukset tulevat voimaan.</ahelp> JRE:n polku näkyy luetteloruudun alapuolella."
+#. BEsVP
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id431600889434242\n"
+"help.text"
+msgid "You can override the default JRE of the operating system with one of the following alternatives:"
+msgstr ""
+
+#. Skrxp
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id191600889458048\n"
+"help.text"
+msgid "By setting the environment variable <literal>JAVA_HOME</literal>,"
+msgstr ""
+
+#. Z6Vzz
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id131600889466713\n"
+"help.text"
+msgid "By adding a JRE to the <literal>$PATH</literal> variable,"
+msgstr ""
+
+#. CFjhz
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id501600889473339\n"
+"help.text"
+msgid "By providing the configuration file <switchinline select=\"sys\"> <caseinline select=\"MAC\"><literal>javasettings_macOS_X86_64.xml</literal></caseinline> <caseinline select=\"WIN\"><literal>javasettings_Windows_X86_64.xml</literal></caseinline> <caseinline select=\"UNIX\"><literal>javasettings_Linux_X86_64.xml</literal></caseinline> <defaultinline><literal>javasettings_${_OS}_${_ARCH}.xml</literal></defaultinline> </switchinline> in the folder <literal><instdir>/presets/config</literal>."
+msgstr ""
+
#. UM9FC
#: java.xhp
msgctxt ""
@@ -16291,31 +16498,31 @@ msgctxt ""
msgid "<ahelp hid=\".\">Removes the selected folder from the list of trusted file locations.</ahelp>"
msgstr "<ahelp hid=\".\">Valittu kansio poistetaan luotettujen tiedostosijaintien luettelosta.</ahelp>"
-#. yyWAP
+#. jPwp4
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"tit\n"
"help.text"
-msgid "Mail Merge E-mail"
-msgstr "Joukkokirje-sähköposti"
+msgid "Mail Merge Email"
+msgstr ""
-#. FyzTB
+#. DzJfg
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN10554\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/mailmerge.xhp\">Mail Merge E-mail</link>"
-msgstr "<link href=\"text/shared/optionen/mailmerge.xhp\">Joukkokirje-sähköposti</link>"
+msgid "<link href=\"text/shared/optionen/mailmerge.xhp\">Mail Merge Email</link>"
+msgstr ""
-#. rSTkd
+#. tXuUS
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN10564\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the user information and server settings for when you send form letters as e-mail messages.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the user information and server settings for when you send form letters as email messages.</ahelp>"
msgstr ""
#. vYkrk
@@ -16327,14 +16534,14 @@ msgctxt ""
msgid "User information"
msgstr "Käyttäjätiedot"
-#. rHEhA
+#. QRRdv
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN1057F\n"
"help.text"
-msgid "Enter the user information to use when you send e-mail."
-msgstr "Annetaan käyttäjätiedot, joita käytetään sähköpostia lähetettäessä."
+msgid "Enter the user information to use when you send email."
+msgstr ""
#. CZo2m
#: mailmerge.xhp
@@ -16354,41 +16561,41 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter your name.</ahelp>"
msgstr "<ahelp hid=\".\">Kirjoita oma nimesi.</ahelp>"
-#. 9FWED
+#. pVBDV
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105A5\n"
"help.text"
-msgid "E-mail address"
-msgstr "Sähköpostiosoite"
+msgid "Email address"
+msgstr ""
-#. Eh9MR
+#. 6fFPM
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105A9\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter your e-mail address for replies.</ahelp>"
-msgstr "<ahelp hid=\".\">Kirjoita vastauksille käytettävä sähköpostiosoitteesi.</ahelp>"
+msgid "<ahelp hid=\".\">Enter your email address for replies.</ahelp>"
+msgstr ""
-#. KPwBG
+#. EpoB6
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105C0\n"
"help.text"
-msgid "Send replies to different e-mail address"
-msgstr "Lähetä vastaukset eri osoitteeseen"
+msgid "Send replies to different email address"
+msgstr ""
-#. C9eSe
+#. jgiMB
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105C4\n"
"help.text"
-msgid "<ahelp hid=\".\">Uses the e-mail address that you enter in the Reply address text box as the reply-to e-mail address.</ahelp>"
-msgstr "<ahelp hid=\".\">Tähän kirjoitettavaa sähköpostiosoitetta käytetään vastausosoitteena viestissä.</ahelp>"
+msgid "<ahelp hid=\".\">Uses the email address that you enter in the Reply address text box as the reply-to email address.</ahelp>"
+msgstr ""
#. EbiSo
#: mailmerge.xhp
@@ -16399,14 +16606,14 @@ msgctxt ""
msgid "Reply address"
msgstr "Vastausosoite"
-#. R5G9w
+#. MzZzQ
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105DF\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the address to use for e-mail replies.</ahelp>"
-msgstr "<ahelp hid=\".\">Syötetään vastauksille käytettävä sähköpostiosoite.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the address to use for email replies.</ahelp>"
+msgstr ""
#. KxDNm
#: mailmerge.xhp
@@ -16417,14 +16624,14 @@ msgctxt ""
msgid "Outgoing server (SMTP) settings"
msgstr "Lähettävän sähköpostipalvelimen (SMTP) asetukset"
-#. fEnNg
+#. Q8Wj3
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105F2\n"
"help.text"
-msgid "Specify the server settings for outgoing e-mails."
-msgstr "Määritellään lähtevien sähköpostiviestien palvelinasetukset."
+msgid "Specify the server settings for outgoing emails."
+msgstr ""
#. MGAFY
#: mailmerge.xhp
@@ -16471,14 +16678,14 @@ msgctxt ""
msgid "Use secure connection"
msgstr "Käytä suojattua yhteyttä"
-#. uasTc
+#. QWtkz
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN10637\n"
"help.text"
-msgid "<ahelp hid=\".\">When available, uses a secure connection to send e-mails.</ahelp>"
-msgstr "<ahelp hid=\".\">Mikäli saatavilla, käytetään suojattua yhteyttä sähköpostissa.</ahelp>"
+msgid "<ahelp hid=\".\">When available, uses a secure connection to send emails.</ahelp>"
+msgstr ""
#. xN8RP
#: mailmerge.xhp
@@ -16489,14 +16696,14 @@ msgctxt ""
msgid "Server Authentication"
msgstr "Palvelimelle tunnistautuminen"
-#. aACLS
+#. qp3FK
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN10652\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/serverauthentication.xhp\">Server Authentication</link> dialog where you can specify the server authentication settings for secure e-mail.</ahelp>"
-msgstr "<ahelp hid=\".\">Avataan <link href=\"text/shared/optionen/serverauthentication.xhp\">Palvelimelle tunnistautuminen</link> -valintaikkuna, jossa voidaan määrittää suojatun sähköpostin tunnistautumisasetukset.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/serverauthentication.xhp\">Server Authentication</link> dialog where you can specify the server authentication settings for secure email.</ahelp>"
+msgstr ""
#. AnELG
#: mailmerge.xhp
@@ -16750,40 +16957,40 @@ msgctxt ""
msgid "Enable the check to send information about your %PRODUCTNAME version, operating system and basic hardware. This information is used to optimize the download."
msgstr ""
-#. uDvTG
+#. AN7zk
#: opencl.xhp
msgctxt ""
"opencl.xhp\n"
"tit_opencl\n"
"help.text"
-msgid "Open CL"
+msgid "OpenCL"
msgstr ""
-#. enEVC
+#. sDXCB
#: opencl.xhp
msgctxt ""
"opencl.xhp\n"
"bm_id4077578\n"
"help.text"
-msgid "<bookmark_value>Open CL;setting options</bookmark_value><bookmark_value>setting options;Open CL</bookmark_value>"
+msgid "<bookmark_value>OpenCL;setting options</bookmark_value><bookmark_value>setting options;OpenCL</bookmark_value>"
msgstr ""
-#. bVCo8
+#. RAY7n
#: opencl.xhp
msgctxt ""
"opencl.xhp\n"
"par_idN10558\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/opencl.xhp\">Open CL</link>"
-msgstr "<link href=\"text/shared/optionen/java.xhp\">Lisäasetukset</link>"
+msgid "<link href=\"text/shared/optionen/opencl.xhp\">OpenCL</link>"
+msgstr ""
-#. wKxGg
+#. KoASK
#: opencl.xhp
msgctxt ""
"opencl.xhp\n"
"par_idN10568\n"
"help.text"
-msgid "Open CL is a technology to speed up calculation on large spreadsheets."
+msgid "OpenCL is a technology to speed up calculation on large spreadsheets."
msgstr ""
#. ddvkj
@@ -17020,14 +17227,14 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/serverauthentication.xhp\">Server Authentication</link>"
msgstr "<link href=\"text/shared/optionen/serverauthentication.xhp\">Palvelimelle tunnistautuminen</link>"
-#. 8PBab
+#. iHmg5
#: serverauthentication.xhp
msgctxt ""
"serverauthentication.xhp\n"
"par_idN1054E\n"
"help.text"
-msgid "On the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge E-mail</link> tab page, click the <emph>Server Authentication</emph> button to specify the server security settings."
-msgstr "Napsautetaan <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Asetukset</caseinline><defaultinline>Työkalut - Asetukset</defaultinline> - </switchinline><link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Joukkokirje-sähköposti</link>-lehdellä <emph>Palvelimen tunnistus</emph> -painiketta palvelimen suojausasetusten tekemiseksi."
+msgid "On the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge Email</link> tab page, click the <emph>Server Authentication</emph> button to specify the server security settings."
+msgstr ""
#. QEP5M
#: serverauthentication.xhp
@@ -17038,14 +17245,14 @@ msgctxt ""
msgid "The outgoing mail server (SMTP) requires authentication"
msgstr "Lähettävä palvelin (SMTP) vaatii erillisen tunnistautumisen"
-#. yXJzw
+#. QzCt7
#: serverauthentication.xhp
msgctxt ""
"serverauthentication.xhp\n"
"par_idN105BE\n"
"help.text"
-msgid "<ahelp hid=\".\">Enables the authentication that is required to send e-mail by SMTP.</ahelp>"
-msgstr "<ahelp hid=\".\">Sallitaan SMTP-sähköpostilähetysten vaatima tunnistautuminen.</ahelp>"
+msgid "<ahelp hid=\".\">Enables the authentication that is required to send email by SMTP.</ahelp>"
+msgstr ""
#. JEin8
#: serverauthentication.xhp
@@ -17110,14 +17317,14 @@ msgctxt ""
msgid "The outgoing mail server uses the same authentication as the incoming mail server."
msgstr "Lähettävä sähköpostipalvelin käyttää samaa tunnistamista kuin vastaanottava sähköpostipalvelin."
-#. GaABU
+#. 9vFtZ
#: serverauthentication.xhp
msgctxt ""
"serverauthentication.xhp\n"
"par_idN1061A\n"
"help.text"
-msgid "<ahelp hid=\".\">Select if you are required to first read your e-mail before you can send e-mail.</ahelp> This method is also called \"SMTP after POP3\"."
-msgstr "<ahelp hid=\".\">Valitaan tämä vaihtoehto, jos vaatimuksena on, että sähköposti pitää ensin lukea, ennen kuin voi lähettää sähköpostia.</ahelp> Tätä nimitetään myös \"SMTP POP3:n jälkeen\" -menetelmäksi."
+msgid "<ahelp hid=\".\">Select if you are required to first read your email before you can send email.</ahelp> This method is also called \"SMTP after POP3\"."
+msgstr ""
#. GtmDj
#: serverauthentication.xhp
@@ -17245,14 +17452,14 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/testaccount.xhp\">Test Account Settings</link>"
msgstr "<link href=\"text/shared/optionen/testaccount.xhp\">Testaa tunnuksen asetuksia</link>"
-#. R3dUn
+#. AEDCa
#: testaccount.xhp
msgctxt ""
"testaccount.xhp\n"
"par_idN10557\n"
"help.text"
-msgid "When you enter settings on the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge E-mail</link> tab page, you can click the <emph>Test Settings</emph> button to test your settings."
-msgstr "Kun tehdään asetukset <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Asetukset</caseinline><defaultinline>Työkalut - Asetukset</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Joukkokirje-sähköposti</link>-välilehdellä, voidaan napsauttaa <emph>Kokeile asetuksia</emph> -painiketta asetuksien testaamiseksi."
+msgid "When you enter settings on the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge Email</link> tab page, you can click the <emph>Test Settings</emph> button to test your settings."
+msgstr ""
#. 4AK5G
#: testaccount.xhp
diff --git a/source/fi/helpcontent2/source/text/simpress.po b/source/fi/helpcontent2/source/text/simpress.po
index 738bd1ea257..049dc636908 100644
--- a/source/fi/helpcontent2/source/text/simpress.po
+++ b/source/fi/helpcontent2/source/text/simpress.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-09-18 18:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress/fi/>\n"
@@ -394,15 +394,6 @@ msgctxt ""
msgid "Rotates the selected object(s)."
msgstr "Kierretään valittua objektia."
-#. maks9
-#: main0113.xhp
-msgctxt ""
-"main0113.xhp\n"
-"hd_id3149019\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribution</link>"
-msgstr "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Välien tasaus</link>"
-
#. Vn3aa
#: main0113.xhp
msgctxt ""
@@ -601,15 +592,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Alueen tyyli / täyttö</link>"
-#. nn7rV
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3150048\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
-msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Varjo</link>"
-
#. qXLpG
#: main0203.xhp
msgctxt ""
@@ -1600,13 +1582,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Luettelomerkit ja numerointi</link>"
-#. o7wfa
+#. TVJ8F
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
"hd_id3149499\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
+msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Object and Shape</link>"
msgstr ""
#. XrW2e
diff --git a/source/fi/helpcontent2/source/text/simpress/00.po b/source/fi/helpcontent2/source/text/simpress/00.po
index 2dfc16366f4..238bb5b1b7a 100644
--- a/source/fi/helpcontent2/source/text/simpress/00.po
+++ b/source/fi/helpcontent2/source/text/simpress/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: 2020-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2018-04-17 15:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -403,14 +403,14 @@ msgctxt ""
msgid "Choose <emph>View - Normal</emph>"
msgstr "Valitse <emph>Näytä - Normaali</emph>"
-#. usm8x
+#. qm8qt
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3151264\n"
"help.text"
-msgid "Choose <emph>View - Master</emph>"
-msgstr "Valitse <emph>Näytä - Pohja</emph>"
+msgid "Choose <emph>View - Master Slide</emph>"
+msgstr ""
#. DxBby
#: 00000403.xhp
diff --git a/source/fi/helpcontent2/source/text/simpress/01.po b/source/fi/helpcontent2/source/text/simpress/01.po
index e7bae244e5c..a613231576d 100644
--- a/source/fi/helpcontent2/source/text/simpress/01.po
+++ b/source/fi/helpcontent2/source/text/simpress/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress01/fi/>\n"
@@ -3580,15 +3580,6 @@ msgctxt ""
msgid "On the Table Bar, click <emph>Table Properties</emph>."
msgstr "Taulukko -palkissa napsauta <emph>Taulukon ominaisuudet</emph>."
-#. 2uf2C
-#: 05090000m.xhp
-msgctxt ""
-"05090000m.xhp\n"
-"hd_id3146119\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Fontti</link>"
-
#. fcvcu
#: 05100000.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/simpress/guide.po b/source/fi/helpcontent2/source/text/simpress/guide.po
index ffbd2a1ec0b..137f6a5195c 100644
--- a/source/fi/helpcontent2/source/text/simpress/guide.po
+++ b/source/fi/helpcontent2/source/text/simpress/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpressguide/fi/>\n"
@@ -1348,14 +1348,14 @@ 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 ""
-#. GP8y3
+#. CP4C8
#: 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>"
-msgstr "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Ylä- tai alatunnisteen lisääminen joka dialle\">Ylä- tai alatunnisteen lisääminen joka dialle</link> </variable>"
+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>"
+msgstr ""
#. fRX2a
#: footer.xhp
@@ -1528,6 +1528,15 @@ msgctxt ""
msgid "Click the Date Area and move the time and date field. Select the <date/time> field and apply some formatting to change the format for the date and time on all slides. The same applies to the Footer Area and the Slide Number Area."
msgstr "Napsauta päivämäärän aluetta ja siirrä päivämäärän ja ajan kenttää. Valitse <päivämäärä/kellonaika> -kenttä ja käytä muotoilua muuttaaksesi kaikkien diojen päivämäärän ja ajan muotoilun. Sama soveltuu alatunnisteen ja dianumeron alueisiin."
+#. DhBjE
+#: footer.xhp
+msgctxt ""
+"footer.xhp\n"
+"par_id171597939732335\n"
+"help.text"
+msgid "Normally the predefined elements of the master slide are set to visible in the presentation. You can control the visibility of the predefined elements by choosing <menuitem>Slide - Master Elements</menuitem>."
+msgstr ""
+
#. MhrkU
#: footer.xhp
msgctxt ""
@@ -1555,14 +1564,14 @@ msgctxt ""
msgid "Choose <emph>View - Master Slide</emph>."
msgstr ""
-#. mkgvD
+#. ABnCF
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id3147295\n"
"help.text"
-msgid "On the <emph>Drawing</emph> bar, select the <emph>Text</emph> icon <image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Icon</alt></image>."
-msgstr "Valitse <emph>Piirros</emph>-palkista <emph>Teksti</emph>-kuvake <image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Teksti-kuvake, jossa iso T</alt></image>."
+msgid "On the <emph>Drawing</emph> bar, select the <emph>Text</emph> icon<image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Icon</alt></image>."
+msgstr ""
#. pV2Dh
#: footer.xhp
diff --git a/source/fi/helpcontent2/source/text/smath/01.po b/source/fi/helpcontent2/source/text/smath/01.po
index 5a7bfe1962d..95536f06a83 100644
--- a/source/fi/helpcontent2/source/text/smath/01.po
+++ b/source/fi/helpcontent2/source/text/smath/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/fi/>\n"
@@ -4607,13 +4607,13 @@ 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 "Huomaa, että eräät merkinnät vaativat välilyöntejä. Tämä on erityisen tärkeää, kun kyse on kiinteistä arvoista eikä paikanvaraajista."
-#. RXMei
+#. mPEEx
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "For more information about formatting in <emph>%PRODUCTNAME</emph> <emph>Math</emph>, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link>."
+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 ""
#. 5WAfz
diff --git a/source/fi/helpcontent2/source/text/swriter.po b/source/fi/helpcontent2/source/text/swriter.po
index 0590212ff5c..3fcc4f0dfe4 100644
--- a/source/fi/helpcontent2/source/text/swriter.po
+++ b/source/fi/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/fi/>\n"
@@ -655,24 +655,6 @@ msgctxt ""
msgid "<link href=\"text/shared/02/07070000.xhp\" name=\"Select Text\">Select Text</link>"
msgstr "<link href=\"text/shared/02/07070000.xhp\" name=\"Select Text\">Valitse teksti</link>"
-#. NnPuy
-#: 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 ""
-
-#. 96mxR
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id102920150120459176\n"
-"help.text"
-msgid "Allows a user to click at the beginning, middle, or end of any possible text line on a page and then begin typing."
-msgstr "Mahdollistaa vasemmalle, keskelle tai oikealle tasatun tekstirivin aloittamisen napsauttamalla sivua mistä tahansa kohdasta."
-
#. Hug2v
#: main0102.xhp
msgctxt ""
@@ -682,41 +664,32 @@ msgctxt ""
msgid "Go to Page"
msgstr "Siirry sivulle"
-#. jFEMN
+#. GjSQM
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"par_id102920150120456660\n"
"help.text"
-msgid "Opens the <emph>Navigator</emph> window on the <emph>Page Number</emph> spin button, so you can enter in a page number."
-msgstr "Avaa <emph>Rakenneselain</emph>-ikkunan ja valitsee <emph>Sivunumero</emph>-kentän, johon voi syöttää sivun numeron."
-
-#. tBDS3
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3147302\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/02150000.xhp\" name=\"Footnotes\">Footnote or Endnote</link>"
-msgstr "<link href=\"text/swriter/01/02150000.xhp\" name=\"Ala- tai loppuviite\">Ala- tai loppuviite</link>"
+msgid "Opens a dialog box to enter which page number should be shown. (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+G</keycode>)"
+msgstr ""
-#. GEPqm
+#. xFstf
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
-"hd_id3147327\n"
+"hd_id11603124968334\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02160000.xhp\" name=\"Index Entry\">Index Entry</link>"
-msgstr "<link href=\"text/swriter/01/02160000.xhp\" name=\"Index Entry\">Hakemistomerkintä</link>"
+msgid "Comment"
+msgstr ""
-#. MFcC9
+#. LCQEA
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
-"hd_id3147352\n"
+"par_id941603125587454\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Bibliography Entry</link>"
-msgstr "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Lähdeviite</link>"
+msgid "Shows submenu that gives options to reply, resolve and delete comments."
+msgstr ""
#. DNBDk
#: main0102.xhp
@@ -727,32 +700,41 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/02140000.xhp\" name=\"Fields\">Fields</link>"
msgstr "<link href=\"text/swriter/01/02140000.xhp\" name=\"Fields\">Kenttä</link>"
-#. j82UF
+#. XGXq3
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
"hd_id0914201501170171\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Linkit</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links to External Files</link>"
+msgstr ""
-#. C22bV
+#. pFCu3
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
-"hd_id3156150\n"
+"hd_id0914201502131542\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\">Kuvakartta</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Objekti\">Objekti</link>"
-#. pFCu3
+#. NnPuy
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
-"hd_id0914201502131542\n"
+"hd_id102920150120456626\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Objekti\">Objekti</link>"
+msgid "<link href=\"text/swriter/02/18130000.xhp\" name=\"Direct Cursor Mode\">Direct Cursor Mode</link>"
+msgstr ""
+
+#. 96mxR
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"par_id102920150120459176\n"
+"help.text"
+msgid "Allows a user to click at the beginning, middle, or end of any possible text line on a page and then begin typing."
+msgstr "Mahdollistaa vasemmalle, keskelle tai oikealle tasatun tekstirivin aloittamisen napsauttamalla sivua mistä tahansa kohdasta."
#. zRW8E
#: main0103.xhp
@@ -979,23 +961,32 @@ 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 ""
-#. AiHET
+#. 4B4rE
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
-"hd_id3155376\n"
+"hd_id3158442\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
-msgstr "<link href=\"text/swriter/01/04010000.xhp\" name=\"Manual Break\">Pakotettu vaihto</link>"
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"Image\">Image</link>"
+msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Kuva</link>"
-#. 4B4rE
+#. xiCSu
#: main0104.xhp
msgctxt ""
"main0104.xhp\n"
-"hd_id3158442\n"
+"hd_id3147788\n"
"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"Image\">Image</link>"
-msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Kuva</link>"
+msgid "<link href=\"text/swriter/01/04020000.xhp\" name=\"Section\">Section</link>"
+msgstr "<link href=\"text/swriter/01/04020000.xhp\" name=\"Section\">Osa</link>"
+
+#. qjyHA
+#: 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>"
+msgstr ""
#. PCTGV
#: main0104.xhp
@@ -1033,15 +1024,6 @@ msgctxt ""
msgid "Inserts a horizontal line at the current cursor position."
msgstr ""
-#. xiCSu
-#: 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=\"Section\">Osa</link>"
-
#. Ee8Dk
#: main0104.xhp
msgctxt ""
@@ -1051,24 +1033,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/04070000.xhp\" name=\"Envelope\">Envelope</link>"
msgstr "<link href=\"text/swriter/01/04070000.xhp\" name=\"Envelope\">Kirjekuori</link>"
-#. qjyHA
-#: 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>"
-msgstr ""
-
-#. RFwdc
-#: main0104.xhp
-msgctxt ""
-"main0104.xhp\n"
-"hd_id3147595\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/04200000.xhp\" name=\"Script\">Script</link>"
-msgstr "<link href=\"text/swriter/01/04200000.xhp\" name=\"Script\">Komentosarja</link>"
-
#. JP4tR
#: main0105.xhp
msgctxt ""
@@ -1096,6 +1060,42 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr "<ahelp hid=\".uno:FormatMenu\">Valikossa muutetaan asiakirjan taittoa ja sisältöä muun muassa värin ja koon suhteen.</ahelp>"
+#. dWAnk
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id551602974854459\n"
+"help.text"
+msgid "Align"
+msgstr ""
+
+#. 7FD3V
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"par_id741602974888780\n"
+"help.text"
+msgid "Opens a submenu where you can align text and objects."
+msgstr ""
+
+#. 7iyia
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id951602975070826\n"
+"help.text"
+msgid "Lists"
+msgstr ""
+
+#. SkZuS
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"par_id461602975083850\n"
+"help.text"
+msgid "Opens a submenu where you can modify the structure of numbered and bulleted paragraphs."
+msgstr ""
+
#. 5EJHh
#: main0105.xhp
msgctxt ""
@@ -1123,6 +1123,42 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Luettelomerkit ja numeroinnit</link>"
+#. E6Eut
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id871602976197055\n"
+"help.text"
+msgid "Title Page"
+msgstr ""
+
+#. DyKLQ
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"par_id471602976213270\n"
+"help.text"
+msgid "Opens submenu where you can design a title page."
+msgstr ""
+
+#. QKypm
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id201602976343046\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. ercCs
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"par_id61602976356685\n"
+"help.text"
+msgid "When comments are present, the character dialog is presented. Changes to font and font formatting are applied to all comments."
+msgstr ""
+
#. Sib7N
#: main0105.xhp
msgctxt ""
@@ -1132,23 +1168,23 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>"
msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Palstat</link>"
-#. QSMBC
+#. JThwL
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3145717\n"
+"hd_id11602979335965\n"
"help.text"
-msgid "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Sections</link>"
-msgstr "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Osat</link>"
+msgid "Watermark"
+msgstr ""
-#. BEcpk
+#. QSMBC
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3149910\n"
+"hd_id3145717\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04130000.xhp\" name=\"Frame\">Frame</link>"
-msgstr "<link href=\"text/swriter/01/04130000.xhp\" name=\"Frame\">Kehys</link>"
+msgid "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Sections</link>"
+msgstr "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Osat</link>"
#. yGb79
#: main0105.xhp
@@ -1159,6 +1195,60 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Image</link>"
msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Kuva</link>"
+#. fqUFz
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id881602977324204\n"
+"help.text"
+msgid "Text Box and Shape"
+msgstr ""
+
+#. 5XtDF
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"par_id451602977343955\n"
+"help.text"
+msgid "Opens a submenu to modify, position, shape, line, area, text attributes, and fontwork for a selected textbox or shape."
+msgstr ""
+
+#. FUiBn
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id881602977719329\n"
+"help.text"
+msgid "Frame and Object"
+msgstr ""
+
+#. hLVBp
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"par_id951602977746649\n"
+"help.text"
+msgid "Opens a submenu to link and unlink frames, and edit properties of a selected frame."
+msgstr ""
+
+#. JWALC
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"hd_id871602978482880\n"
+"help.text"
+msgid "Rotate or Flip"
+msgstr ""
+
+#. BpkEj
+#: main0105.xhp
+msgctxt ""
+"main0105.xhp\n"
+"par_id561602978499640\n"
+"help.text"
+msgid "Opens a submenu where you can rotate or and flip a selected shape or image. Text boxes can only be rotated."
+msgstr ""
+
#. r9nLs
#: main0106.xhp
msgctxt ""
@@ -1231,6 +1321,15 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Automaattinen korjaus\">Automaattisen korjauksen asetukset</link>"
+#. qKqMR
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3156150\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr ""
+
#. VY3FE
#: main0106.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/swriter/00.po b/source/fi/helpcontent2/source/text/swriter/00.po
index 60248a24949..750db25e2b2 100644
--- a/source/fi/helpcontent2/source/text/swriter/00.po
+++ b/source/fi/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2018-11-14 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -394,76 +394,76 @@ msgctxt ""
msgid "View Menu"
msgstr "Näytä-valikko"
-#. mMSDJ
+#. mQeVy
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3149502\n"
"help.text"
-msgid "<variable id=\"lineal\">Choose <emph>View - Rulers - Rulers</emph> </variable>"
-msgstr "<variable id=\"lineal\">Valitse <emph>Näytä - Viivaimet</emph></variable>"
+msgid "<variable id=\"lineal\">Choose <menuitem>View - Rulers - Rulers</menuitem> </variable>"
+msgstr ""
-#. 8zXhi
+#. 6RRMA
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3148871\n"
"help.text"
-msgid "<variable id=\"textbegrenzungen\">Choose <emph>View - Text Boundaries</emph> </variable>"
-msgstr "<variable id=\"textbegrenzungen\">Valitse <emph>Näytä - Tekstin rajat</emph></variable>"
+msgid "<variable id=\"textbegrenzungen\">Choose <menuitem>View - Text Boundaries</menuitem> </variable>"
+msgstr ""
-#. UomAh
+#. nnySY
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3153248\n"
"help.text"
-msgid "Choose <emph>View - Field Shadings</emph>"
-msgstr "Valitse <emph>Näytä - Kentän varjostus</emph>"
+msgid "Choose <menuitem>View - Field Shadings</menuitem>"
+msgstr ""
-#. 7zbQ6
+#. JRFUp
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3154763\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F8"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>"
msgstr ""
-#. kAvaF
+#. wYngB
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3149052\n"
"help.text"
-msgid "Choose <emph>View - Field Names</emph>"
-msgstr "Valitse <emph>Näytä - Kenttien nimet</emph>"
+msgid "Choose <menuitem>View - Field Names</menuitem>"
+msgstr ""
-#. xEYKW
+#. krDbj
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3151387\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F9</keycode>"
msgstr ""
-#. 6YKx6
+#. VgPmS
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3155625\n"
"help.text"
-msgid "Choose <emph>View - Formatting Marks</emph>"
+msgid "Choose <menuitem>View - Formatting Marks</menuitem>"
msgstr ""
-#. 7XsL6
+#. ZPf6L
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3145823\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F10"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F10</keycode>"
msgstr ""
#. jRY7j
@@ -493,14 +493,14 @@ msgctxt ""
msgid "Formatting Marks"
msgstr ""
-#. fSKqF
+#. PM6tg
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3149712\n"
"help.text"
-msgid "Choose <emph>View - Web</emph>"
-msgstr "Valitse <emph>Näytä - Web-asettelu</emph>"
+msgid "Choose <menuitem>View - Web</menuitem>"
+msgstr ""
#. owBsk
#: 00000403.xhp
@@ -529,23 +529,23 @@ msgctxt ""
msgid "Web"
msgstr ""
-#. rVNpz
+#. TZuSD
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3151176\n"
"help.text"
-msgid "Choose <emph>View - Normal</emph>"
-msgstr "Valitse <emph>Näytä - Web-asettelu</emph>"
+msgid "Choose <menuitem>View - Normal</menuitem>"
+msgstr ""
-#. QRamf
+#. xjXHF
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3149808\n"
"help.text"
-msgid "<variable id=\"versteckteabs\">Choose <emph>View - Hidden Paragraphs</emph> </variable>"
-msgstr "<variable id=\"versteckteabs\">Valitse <emph>Näytä - Piilotetut kappaleet</emph></variable>"
+msgid "<variable id=\"hidden_para\">Choose <menuitem>View - Hidden Paragraphs</menuitem> </variable>"
+msgstr ""
#. yDXA6
#: 00000404.xhp
@@ -565,14 +565,23 @@ msgctxt ""
msgid "Insert Menu"
msgstr "Lisää-valikko"
-#. ZGnFD
+#. UsDBD
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3149130\n"
"help.text"
-msgid "<variable id=\"manuellerumbruch\">Choose <emph>Insert - Manual Break</emph></variable>"
-msgstr "<variable id=\"manuellerumbruch\">Valitse <emph>Lisää - Pakotettu vaihto</emph></variable>"
+msgid "<variable id=\"ManualBreak\">Choose <menuitem>Insert - More Breaks - Manual Break</menuitem></variable>"
+msgstr ""
+
+#. qv3kV
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id281601655468613\n"
+"help.text"
+msgid "<variable id=\"morebreaks\">Choose <menuitem>Insert - More Breaks</menuitem></variable>"
+msgstr ""
#. HX3xL
#: 00000404.xhp
@@ -781,14 +790,14 @@ msgctxt ""
msgid "Open <emph>Insert</emph> toolbar, click"
msgstr "Avaa <emph>Lisää</emph>-palkki ja napsauta"
-#. d8Cn4
+#. WgGL9
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3154569\n"
"help.text"
-msgid "<image id=\"img_id3152952\" src=\"cmd/sc_insertsection.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152952\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152952\" src=\"cmd/sc_insertsection.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152952\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3152952\" src=\"cmd/sc_insertsection.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152952\">Icon Section</alt></image>"
+msgstr ""
#. YVzDx
#: 00000404.xhp
@@ -1276,14 +1285,14 @@ msgctxt ""
msgid "Open <emph>Insert</emph> toolbar, click"
msgstr "Avaa <emph>Lisää</emph>-palkki ja napsauta"
-#. QFRDY
+#. 8jBbi
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3149372\n"
"help.text"
-msgid "<image id=\"img_id3149379\" src=\"cmd/sc_insertframe.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149379\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149379\" src=\"cmd/sc_insertframe.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149379\">Kehyskuvake</alt></image>"
+msgid "<image id=\"img_id3149379\" src=\"cmd/sc_insertframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149379\">Icon Insert Frame</alt></image>"
+msgstr ""
#. 9WJAn
#: 00000404.xhp
@@ -1474,13 +1483,13 @@ msgctxt ""
msgid "Right-click a paragraph with style <item type=\"literal\">Text body</item>. Choose <emph>Edit Paragraph Style - Condition</emph> tab."
msgstr ""
-#. UQ3Zt
+#. 8fkUm
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id651578069976376\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (<keycode>F11</keycode>). Right-click any paragraph style. Choose <menuitem>New - Condition</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>). Right-click any paragraph style. Choose <menuitem>New - Condition</menuitem> tab."
msgstr ""
#. EtKWE
@@ -1510,13 +1519,13 @@ msgctxt ""
msgid "Different ways to open <emph>Styles</emph> window:"
msgstr ""
-#. gP8Ku
+#. HMrxV
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id51579866880596\n"
"help.text"
-msgid "Press <keycode>F11</keycode>"
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>"
msgstr ""
#. Bkgcd
@@ -1546,13 +1555,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Page Style</menuitem>."
msgstr ""
-#. 5B3jU
+#. ZE7hk
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153536\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> - open context menu <emph>New/Modify</emph> (for Page Styles)."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Page Styles - open context menu for selected style - <emph>New/Modify</emph>."
msgstr ""
#. JW9yE
@@ -1753,31 +1762,13 @@ msgctxt ""
msgid "<variable id=\"autoformattab\">Choose <emph>Table - AutoFormat Styles</emph> (with cursor in a table).</variable>"
msgstr ""
-#. KtR4n
+#. Uxeuc
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147484\n"
"help.text"
-msgid "Choose <emph>Format - Image</emph>."
-msgstr ""
-
-#. fzd8D
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3147504\n"
-"help.text"
-msgid "Choose <emph>Insert - Image - From File - Properties</emph> button."
-msgstr ""
-
-#. FuDEm
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3145256\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Insert - Image - From File</emph> (when graphics are selected).</caseinline></switchinline>"
+msgid "Choose <menuitem>Format - Image - Properties - Area</menuitem> tab."
msgstr ""
#. H2Zb6
@@ -1789,14 +1780,14 @@ msgctxt ""
msgid "On the <emph>Image</emph> bar (when images are selected), click"
msgstr ""
-#. RTRdP
+#. nrAxh
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3150557\n"
"help.text"
-msgid "<image id=\"img_id3149214\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149214\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149214\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149214\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3149214\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149214\">Icon Graphics Properties</alt></image>"
+msgstr ""
#. nQDmh
#: 00000405.xhp
@@ -1987,13 +1978,13 @@ msgctxt ""
msgid "Choose <emph>Tools - AutoText - AutoText (button) - Macro</emph>."
msgstr ""
-#. sm4Qi
+#. xACw5
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3148792\n"
"help.text"
-msgid "Choose <emph>Edit - ImageMap</emph> - open context menu <emph>Macro</emph>."
+msgid "Choose <menuitem>Tools - ImageMap</menuitem> - open context menu <emph>Macro</emph>."
msgstr ""
#. T5m7n
@@ -2509,14 +2500,14 @@ msgctxt ""
msgid "Choose <emph>Format - Frame and Object - Properties</emph>."
msgstr ""
-#. AygsC
+#. nsMFC
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3151276\n"
"help.text"
-msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151283\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151283\">Kuvake</alt></image>"
+msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151283\"> Icon Object Properties</alt></image>"
+msgstr ""
#. vpeBB
#: 00000405.xhp
diff --git a/source/fi/helpcontent2/source/text/swriter/01.po b/source/fi/helpcontent2/source/text/swriter/01.po
index 64ec2999d0c..f7a6711e90e 100644
--- a/source/fi/helpcontent2/source/text/swriter/01.po
+++ b/source/fi/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/fi/>\n"
@@ -700,23 +700,32 @@ msgctxt ""
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#andocken\" name=\"dock\">dock</link> the Navigator at the edge of your workspace."
msgstr "<ahelp hid=\".\">Esitetään tai piilotetaan rakenneselain, jolla siirrytään sujuvasti asiakirjan eri osioihin. Rakenneselain on käytettävissä myös sivupalkin kautta. Rakenneselainta voidaan käyttää osatekijöiden lisäämiseen käsiteltävään asiakirjaan tai avoimiin asiakirjoihin sekä perusasiakirjojen järjestelyyn.</ahelp> Kohteen muokkaamiseksi napsautetaan kakkospainikkeella kohdetta rakenneselaimessa ja valitaan sitten komento kohdevalikosta. Tarvittaessa rakenneselain voidaan <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"kiinnittää\">kiinnittää</link> työtilan reunaan."
-#. tFBMN
+#. jPkHa
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id471603110016087\n"
+"help.text"
+msgid "Context menus use a selection of commands found on this help page. The commands in a context menu change, depending on which category or item is selected."
+msgstr ""
+
+#. rTASX
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154475\n"
"help.text"
-msgid "To open the Navigator, choose <emph>View - Navigator</emph>. To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left or to the right edge of the workspace. To undock the Navigator, hold down the Ctrl key and double-click on a grey area of the Navigator."
-msgstr "Rakenneselaimen avaamiseksi valitaan <emph>Näytä - Rakenneselain</emph>. Rakenneselainta siirretään vetämällä otsikkopalkistaan. Rakenneselaimen kiinnittämiseksi eli telakoimiseksi se vedetään työtilan vasempaan tai oikeaan reunaan. Rakenneselain voidaan vapauttaa tai kiinnittää Ctrl+kaksoisnapsauttamalla sen tyhjällä harmaalla alueella."
+msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <keycode>Ctrl</keycode> key and double-click on a grey area of the Navigator."
+msgstr ""
-#. ApvEb
+#. M9FCf
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3149490\n"
"help.text"
-msgid "Click the plus sign (+) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
-msgstr "Rakenneselaimen luettelossa napsautetaan luokkaa edeltävää plusmerkkiä (+) kohteen tarkastelemiseksi. Luokkaan kuuluvien kohteiden lukumäärän näyttämiseksi hiiren osoitinta pidetään luokan kohdalla rakenneselaimessa. Asiakirjassa olevaan kohteeseen hypätään kaksoisnapsauttamalla kohdetta rakenneselaimessa."
+msgid "Click the plus sign (<keycode>+</keycode>) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator."
+msgstr ""
#. EhqdR
#: 02110000.xhp
@@ -736,87 +745,24 @@ msgctxt ""
msgid "A hidden section in a document appears gray in the Navigator, and displays the text \"hidden\" when you rest the mouse pointer over it. The same applies to header and footer contents of Page Styles that are not used in a document, and hidden contents in tables, frames, graphics, OLE objects, and indexes."
msgstr ""
-#. G9U2S
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3149176\n"
-"help.text"
-msgid "Toggle Master View"
-msgstr ""
-
-#. wbAFo
-#: 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\">Vuorotellaan perusasiakirja- ja normaalinäkymää, jos perusasiakirja on auki.</ahelp> Vuorotellaan <link href=\"text/shared/01/02110000.xhp\" name=\"perusasiakirjan näkymä\">perusasiakirjan näkymää</link> ja normaalinäkymää, jos <link href=\"text/shared/01/01010001.xhp\" name=\"perusasiakirja\">perusasiakirja</link> on auki."
-
-#. nYBEF
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150689\n"
-"help.text"
-msgid "<image id=\"img_id3150695\" src=\"sw/res/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150695\">Icon</alt></image>"
-msgstr ""
-
-#. 9STbB
+#. 87cKG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3149568\n"
+"hd_id321603114930016\n"
"help.text"
-msgid "Toggle Master View"
+msgid "Navigate By"
msgstr ""
-#. Js9h7
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3145272\n"
-"help.text"
-msgid "Navigation"
-msgstr "Siirtyminen"
-
-#. vgn62
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150558\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the <emph>Navigation</emph> toolbar, where you can quickly jump to the next or the previous item in the category that you select. Select the category, and then click the \"Previous\" and \"Next\" arrows.</ahelp> Opens the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> toolbar, where you can quickly jump to the next or the previous item in the category that you select. Select the category, and then click the \"Previous\" and \"Next\" arrows."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Avataan <emph>Siirtyminen</emph>-työkalupalkki, jolla voidaan sujuvasti hypätä seuraavaan tai edelliseen valitun luokan kohteeseen. Ensin valitaan luokka ja sitten napsautetaan \"Edellinen\"- tai \"Seuraava\"-nuolta.</ahelp> Avataan <link href=\"text/swriter/01/02110100.xhp\" name=\"Siirtyminen\">Siirtyminen</link>-työkalupalkki, jolla voidaan sujuvasti hypätä seuraavaan tai edelliseen valitun luokan kohteeseen. Ensin valitaan luokka ja sitten napsautetaan \"Edellinen\"- tai \"Seuraava\"-nuolta."
-
-#. EoEbz
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3149838\n"
-"help.text"
-msgid "To continue the search, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Repeat Search\"><emph>Repeat Search</emph></link> icon on the <emph>Navigation</emph> toolbar."
-msgstr "Haun jatkamiseksi napsautetaan <link href=\"text/swriter/01/02110100.xhp\" name=\"Toista haku\"><emph>Toista haku</emph></link> -kuvaketta <emph>Siirtyminen</emph>-työkalupalkissa."
-
-#. qDMmC
+#. rBGnd
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_idN1087B\n"
+"par_id171603114951991\n"
"help.text"
-msgid "<image id=\"img_id3628141\" src=\"sw/res/sc20249.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3628141\">Icon</alt></image>"
+msgid "Use selection box to choose which type of item should be navigated, when using the Previous and Next buttons."
msgstr ""
-#. pEcMq
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3154341\n"
-"help.text"
-msgid "Navigation"
-msgstr "Siirtyminen"
-
#. GVCyP
#: 02110000.xhp
msgctxt ""
@@ -826,32 +772,32 @@ msgctxt ""
msgid "Previous"
msgstr "Edellinen"
-#. 4gDs5
+#. hiiuF
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3148784\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jumps to the previous item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon, and then click an item category - for example, \"Images\"."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hypätään asiakirjan edelliseen kohteeseen. Hypyn kohteen tyyppi määrittämiseksi napsautetaan <emph>Siirtyminen</emph>-kuvaketta ja napsautetaan sitten kohteen luokkaa - esimerkiksi \"Kuva\"-kuvaketta.</ahelp> Hypätään asiakirjan edelliseen kohteeseen. Hypyn kohteen tyyppi määrittämiseksi napsautetaan <link href=\"text/swriter/01/02110100.xhp\" name=\"Siirtyminen\">Siirtyminen</link>-kuvaketta ja napsautetaan sitten kohteen luokkaa - esimerkiksi \"Kuva\"-kuvaketta."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the previous item in the document, as specified in <emph>Navigate By</emph>."
+msgstr ""
-#. hVKMM
+#. ZMb97
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154616\n"
"help.text"
-msgid "<image id=\"img_id3154622\" src=\"sw/res/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154622\">Icon</alt></image>"
+msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
msgstr ""
-#. JmqqL
+#. z3HC5
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150659\n"
"help.text"
-msgid "Previous Object"
-msgstr "Edellinen objekti"
+msgid "Previous Item"
+msgstr ""
#. fBDbi
#: 02110000.xhp
@@ -862,32 +808,32 @@ msgctxt ""
msgid "Next"
msgstr "Seuraava"
-#. R7XFx
+#. x9Q24
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154028\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon, and then click an item category - for example, \"Images\"."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hypätään asiakirjan seuraavaan kohteeseen. Hypyn kohteen tyyppi määrittämiseksi napsautetaan <link href=\"text/swriter/01/02110100.xhp\" name=\"Siirtyminen\">Siirtyminen</link>-kuvaketta ja napsautetaan sitten kohteen luokkaa - esimerkiksi \"Kuva\"-kuvaketta.</ahelp> Hypätään asiakirjan seuraavaan kohteeseen. Hypyn kohteen tyyppi määrittämiseksi napsautetaan <link href=\"text/swriter/01/02110100.xhp\" name=\"Siirtyminen\">Siirtyminen</link>-kuvaketta ja napsautetaan sitten kohteen luokkaa - esimerkiksi \"Kuva\"-kuvaketta."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jump to the next item in the document, as specified in <emph>Navigate By</emph>."
+msgstr ""
-#. tWXFv
+#. 33JYo
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "<image id=\"img_id3150773\" src=\"sw/res/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150773\">Icon</alt></image>"
+msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
msgstr ""
-#. LHkgf
+#. xyGWM
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3155359\n"
"help.text"
-msgid "Next Object"
-msgstr "Seuraava objekti"
+msgid "Next Item"
+msgstr ""
#. EdFsn
#: 02110000.xhp
@@ -898,60 +844,15 @@ msgctxt ""
msgid "Page number"
msgstr "Sivunumero"
-#. gsX6S
+#. FAhrE
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3155548\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/numericfield\">Type the number of the page that you want to jump to, and then press Enter.</ahelp>"
-msgstr ""
-
-#. sXuFK
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3148933\n"
-"help.text"
-msgid "To quickly move the cursor to another page while you are in a document, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5, type the number of the page that you want to jump to, and then wait a few moments."
-msgstr ""
-
-#. 9F58k
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3155308\n"
-"help.text"
-msgid "List Box"
-msgstr "Luetteloruutu"
-
-#. XtCA4
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3155325\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/listbox\">Shows or hides the <emph>Navigator </emph>list.</ahelp>"
-msgstr ""
-
-#. LKPw3
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3154949\n"
-"help.text"
-msgid "<image id=\"img_id3154955\" src=\"sw/res/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154955\">Icon</alt></image>"
+msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/numericfield\">Type the number of the page that you want to jump to, and then press Enter. Use the spin buttons to navigate.</ahelp>"
msgstr ""
-#. 8uyJF
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3146874\n"
-"help.text"
-msgid "List box on/off"
-msgstr "Luetteloruutu käytössä / poissa käytöstä"
-
#. w7aQ7
#: 02110000.xhp
msgctxt ""
@@ -970,13 +871,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/root\">Switches between the display of all categories in the Navigator and the selected category.</ahelp>"
msgstr ""
-#. W22Bt
+#. wjRi9
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3154133\n"
"help.text"
-msgid "<image id=\"img_id3154140\" src=\"sw/res/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154140\">Icon</alt></image>"
+msgid "<image id=\"img_id3154140\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154140\">Icon Switch Content View</alt></image>"
msgstr ""
#. gKSBn
@@ -988,58 +889,40 @@ msgctxt ""
msgid "Switch Content View"
msgstr "Vaihda sisältönäkymää"
-#. R8cwF
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3155932\n"
-"help.text"
-msgid "To quickly reorder headings and their associated text in your document, select the \"Headings\" category in the list, and then click the<emph> Content View</emph> icon. Now you can use drag-and-drop to reorder contents."
-msgstr "Asiakirjan otsikoiden ja niihin liittyvien tekstien järjestelemiseksi sujuvasti valikoidaan luettelosta \"Otsikot\"-luokka ja napsautetaan sitten<emph> Sisältönäkymä</emph>-kuvaketta. Tämän jälkeen voidaan sisältöä järjestellä vetämällä."
-
-#. zsieD
+#. G9U2S
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"hd_id3155381\n"
+"hd_id3149176\n"
"help.text"
-msgid "Set Reminder"
-msgstr "Määritä muistutus"
+msgid "Toggle Master View"
+msgstr ""
-#. Ahyyy
+#. wbAFo
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3153011\n"
+"par_id3155917\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\">Toimintoa napsautetaan muistutuksen asettamiseksi kohdistimen kohdalle. Enintään viisi muistutusta on asetettavissa. Muistutukseen hyppäämiseksi napsautetaan <link href=\"text/swriter/01/02110100.xhp\" name=\"Siirtyminen\"><emph>Siirtyminen</emph></link>-kuvaketta, <emph>Siirtyminen</emph>-ikkunassa napsautetaan <emph>Muistutus</emph>-kuvaketta ja napsautetaan sitten <emph>Edellinen</emph>- tai <emph>Seuraava</emph>-nuolipainiketta.</ahelp> Toimintoa napsautetaan muistutuksen asettamiseksi kohdistimen kohdalle. Enintään viisi muistutusta on asetettavissa. Muistutukseen hyppäämiseksi napsautetaan <link href=\"text/swriter/01/02110100.xhp\" name=\"Siirtyminen\">Siirtyminen</link>-kuvaketta, Siirtyminen-ikkunassa napsautetaan <emph>Muistutus</emph>-kuvaketta ja napsautetaan sitten Edellinen- tai Seuraava-nuolipainiketta."
+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\">Vuorotellaan perusasiakirja- ja normaalinäkymää, jos perusasiakirja on auki.</ahelp> Vuorotellaan <link href=\"text/shared/01/02110000.xhp\" name=\"perusasiakirjan näkymä\">perusasiakirjan näkymää</link> ja normaalinäkymää, jos <link href=\"text/shared/01/01010001.xhp\" name=\"perusasiakirja\">perusasiakirja</link> on auki."
-#. 5Zk9L
+#. BeyBx
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3154608\n"
+"par_id3150689\n"
"help.text"
-msgid "<image id=\"img_id3154904\" src=\"sw/res/sr20014.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154904\">Icon</alt></image>"
+msgid "<image id=\"img_id3150695\" src=\"sw/res/sc20244.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150695\">Icon Toggle Master View</alt></image>"
msgstr ""
-#. 5ArS8
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3153054\n"
-"help.text"
-msgid "Set Reminder"
-msgstr "Määritä muistutus"
-
-#. GpFmn
+#. 9STbB
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3495381\n"
+"par_id3149568\n"
"help.text"
-msgid "Reminders are navigated in the order in which they are set. Reminders are not saved when a document is closed."
+msgid "Toggle Master View"
msgstr ""
#. 7kk6X
@@ -1060,13 +943,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/header\">Moves the cursor to the header, or from the header to the document text area.</ahelp>"
msgstr ""
-#. LUS7n
+#. Vq7Aq
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153900\n"
"help.text"
-msgid "<image id=\"img_id3153911\" src=\"sw/res/sc20179.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153911\">Icon</alt></image>"
+msgid "<image id=\"img_id3153911\" src=\"sw/res/sc20179.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153911\">Icon Header</alt></image>"
msgstr ""
#. SPDHG
@@ -1096,13 +979,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/footer\">Moves the cursor to the footer, or from the footer to the document text area.</ahelp>"
msgstr ""
-#. yFFti
+#. ZCu8N
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150217\n"
"help.text"
-msgid "<image id=\"img_id3150224\" src=\"sw/res/sc20177.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150224\">Icon</alt></image>"
+msgid "<image id=\"img_id3150224\" src=\"sw/res/sc20177.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150224\">Icon Footer</alt></image>"
msgstr ""
#. DxkG4
@@ -1132,13 +1015,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/anchor\">Jumps between the footnote text and the footnote anchor.</ahelp>"
msgstr ""
-#. BSMjJ
+#. GVbtG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153100\n"
"help.text"
-msgid "<image id=\"img_id3153108\" src=\"sw/res/sc20182.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153108\">Icon</alt></image>"
+msgid "<image id=\"img_id3153108\" src=\"sw/res/sc20182.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153108\">Icon Anchor <-> Text</alt></image>"
msgstr ""
#. DnZEQ
@@ -1150,158 +1033,221 @@ msgctxt ""
msgid "Anchor <-> Text"
msgstr "Ankkuri<->Teksti"
-#. 2a4F7
+#. zsieD
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"hd_id3154292\n"
+"hd_id3155381\n"
"help.text"
-msgid "Drag Mode"
-msgstr "Vetotila"
+msgid "Set Reminder"
+msgstr "Määritä muistutus"
-#. G5FvJ
+#. Ahyyy
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3155828\n"
+"par_id3153011\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/dragmode\">Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use.</ahelp>"
+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\">Toimintoa napsautetaan muistutuksen asettamiseksi kohdistimen kohdalle. Enintään viisi muistutusta on asetettavissa. Muistutukseen hyppäämiseksi napsautetaan <link href=\"text/swriter/01/02110100.xhp\" name=\"Siirtyminen\"><emph>Siirtyminen</emph></link>-kuvaketta, <emph>Siirtyminen</emph>-ikkunassa napsautetaan <emph>Muistutus</emph>-kuvaketta ja napsautetaan sitten <emph>Edellinen</emph>- tai <emph>Seuraava</emph>-nuolipainiketta.</ahelp> Toimintoa napsautetaan muistutuksen asettamiseksi kohdistimen kohdalle. Enintään viisi muistutusta on asetettavissa. Muistutukseen hyppäämiseksi napsautetaan <link href=\"text/swriter/01/02110100.xhp\" name=\"Siirtyminen\">Siirtyminen</link>-kuvaketta, Siirtyminen-ikkunassa napsautetaan <emph>Muistutus</emph>-kuvaketta ja napsautetaan sitten Edellinen- tai Seuraava-nuolipainiketta."
+
+#. j2jDL
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3154608\n"
+"help.text"
+msgid "<image id=\"img_id3154904\" src=\"sw/res/sr20014.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154904\">Icon Set Reminder</alt></image>"
msgstr ""
-#. VF7HV
+#. 5ArS8
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3155120\n"
+"par_id3153054\n"
"help.text"
-msgid "<image id=\"img_id3155126\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155126\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155126\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155126\">Vetotilakuvake, jossa ketju</alt></image>"
+msgid "Set Reminder"
+msgstr "Määritä muistutus"
-#. zDXiV
+#. GpFmn
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3147042\n"
+"par_id3495381\n"
"help.text"
-msgid "Drag mode"
-msgstr "Vetotila"
+msgid "Reminders are navigated in the order in which they are set. Reminders are not saved when a document is closed."
+msgstr ""
-#. LNQkF
+#. yuu6e
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"hd_id3150938\n"
+"hd_id3150507\n"
"help.text"
-msgid "Insert As Hyperlink"
-msgstr "Lisää hyperlinkkinä"
+msgid "Outline Level"
+msgstr "Otsikkotasojen näyttö"
-#. 8BVxG
+#. rjaS7
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3150954\n"
+"par_id3153588\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_DRAG_HYP\">Creates a hyperlink when you drag and drop an item into the current document. Click the hyperlink in the document to jump to the item that the hyperlink points to.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_DRAG_HYP\">Hyperlinkki luodaan, kun kohde vedetään ja pudotetaan käsiteltävään asiakirjaan. Asiakirjan hyperlinkkiä napsauttamalla hypätään sen osoittamaan kohteeseen.</ahelp>"
+msgid "<image id=\"img_id3153595\" src=\"sw/res/sc20236.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153595\">Icon Outline level</alt></image>"
+msgstr ""
-#. 2RFUX
+#. BrCEr
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"hd_id3154354\n"
+"par_id3145554\n"
"help.text"
-msgid "Insert As Link"
-msgstr "Lisää linkkinä"
+msgid "Outline level"
+msgstr "Otsikkotasojen näyttö"
-#. Q8EAG
+#. GiE2Z
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3154371\n"
+"par_id3150529\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_DRAG_LINK\">Inserts the selected item as a link where you drag and drop in the current document. Text is inserted as protected sections. The contents of the link are automatically updated when the source is changed. To manually update the links in a document, choose <emph>Tools - Update - Links</emph>. You cannot create links for graphics, OLE objects, references and indexes.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_DRAG_LINK\">Lisätään valittu kohde linkkinä käsiteltävä asiakirjaan vetämällä ja pudottamalla paikalleen. Teksti tulee lisätyksi suojattuina osina. Linkin sisältö päivittyy, kun lähdettä muutetaan. Asiakirjan linkin päivittämiseksi manuaalisesti valitaan <emph>Työkalut - Päivitä - Linkit</emph>. Linkkejä ei voi luoda kuvista, OLE-objekteista, lähdeviitteistä eikä hakemistoista.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/headings\">Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window.</ahelp> You can also access this command by right-clicking a heading in the Navigator window."
+msgstr ""
-#. d5wYa
+#. AxB2q
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"hd_id3155572\n"
+"hd_id3148808\n"
"help.text"
-msgid "Insert As Copy"
-msgstr "Lisää kopiona"
+msgid "1-10"
+msgstr "1...10"
-#. GFSCB
+#. FW94p
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3155589\n"
+"par_id3148826\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_DRAG_COPY\">Inserts a copy of the selected item where you drag and drop in the current document. You cannot drag and drop copies of graphics, OLE objects, references and indexes.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_DRAG_COPY\">Kopioidaan valittu kohde käsiteltävään asiakirjaan vetämällä ja pudottamalla paikalleen. Kuvista, OLE-objekteista, lähdeviitteistä tai hakemistoista ei voi luoda kopioita vetämällä ja pudottamalla.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgstr ""
-#. yuu6e
+#. 9F58k
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"hd_id3150507\n"
+"hd_id3155308\n"
"help.text"
-msgid "Outline Level"
-msgstr "Otsikkotasojen näyttö"
+msgid "List Box"
+msgstr "Luetteloruutu"
-#. GiE2Z
+#. XtCA4
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3150529\n"
+"par_id3155325\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/headings\">Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window.</ahelp> You can also access this command by right-clicking a heading in the Navigator window."
+msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/listbox\">Shows or hides the <emph>Navigator </emph>list.</ahelp>"
msgstr ""
-#. AxB2q
+#. ys6tB
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"hd_id3148808\n"
+"par_id3154949\n"
"help.text"
-msgid "1-10"
-msgstr "1...10"
+msgid "<image id=\"img_id3154955\" src=\"sw/res/sc20233.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154955\">Icon List box on/off</alt></image>"
+msgstr ""
-#. FW94p
+#. 8uyJF
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3148826\n"
+"par_id3146874\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_OUTLINES\">Click <emph>1 </emph>to only view the top level headings (chapter heading) in the Navigator window, and <emph>10</emph> to view all of the headings.</ahelp>"
+msgid "List box on/off"
+msgstr "Luetteloruutu käytössä / poissa käytöstä"
+
+#. fDYqK
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3151338\n"
+"help.text"
+msgid "Promote Level"
+msgstr "Korota tasoa"
+
+#. KzmQ5
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3151354\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promote\">Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon.</ahelp>"
msgstr ""
-#. WoPAw
+#. MZCz3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3153588\n"
+"par_id3155414\n"
"help.text"
-msgid "<image id=\"img_id3153595\" src=\"sw/res/sc20236.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153595\">Icon</alt></image>"
+msgid "<image id=\"img_id3155420\" src=\"sw/res/sc20172.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155420\">Icon Promote level</alt></image>"
msgstr ""
-#. BrCEr
+#. z6Cg8
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3145554\n"
+"par_id3153697\n"
"help.text"
-msgid "Outline level"
-msgstr "Otsikkotasojen näyttö"
+msgid "Promote level"
+msgstr "Korota tasoa"
+
+#. LRj68
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3153714\n"
+"help.text"
+msgid "Demote Level"
+msgstr "Alenna tasoa"
+
+#. LKaFU
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150707\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demote\">Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon.</ahelp>"
+msgstr ""
+
+#. Bb4uA
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3148414\n"
+"help.text"
+msgid "<image id=\"img_id3148420\" src=\"sw/res/sc20173.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148420\">Icon Demote level</alt></image>"
+msgstr ""
+
+#. Ydmmz
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3147324\n"
+"help.text"
+msgid "Demote level"
+msgstr "Alenna tasoa"
-#. C4bvy
+#. jSaXt
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3145571\n"
"help.text"
-msgid "Chapter Up"
-msgstr "Siirrä luku ylemmälle tasolle"
+msgid "Promote Chapter"
+msgstr ""
#. CXMjY
#: 02110000.xhp
@@ -1312,13 +1258,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterup\">Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon.</ahelp>"
msgstr ""
-#. VWBAT
+#. Z5FsL
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153268\n"
"help.text"
-msgid "<image id=\"img_id3153275\" src=\"sw/res/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153275\">Icon</alt></image>"
+msgid "<image id=\"img_id3153275\" src=\"sw/res/sc20174.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153275\">Icon Chapter Up</alt></image>"
msgstr ""
#. aTBif
@@ -1330,14 +1276,14 @@ msgctxt ""
msgid "Chapter Up"
msgstr "Siirrä luku ylemmälle tasolle"
-#. hZFDK
+#. rjfgQ
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3154424\n"
"help.text"
-msgid "Chapter Down"
-msgstr "Siirrä luku alemmalle tasolle"
+msgid "Demote Chapter"
+msgstr ""
#. GFDsR
#: 02110000.xhp
@@ -1348,13 +1294,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterdown\">Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon.</ahelp>"
msgstr ""
-#. uWd5E
+#. iv4iE
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3153768\n"
"help.text"
-msgid "<image id=\"img_id3150828\" src=\"sw/res/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150828\">Icon</alt></image>"
+msgid "<image id=\"img_id3150828\" src=\"sw/res/sc20171.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150828\">Icon Chapter down</alt></image>"
msgstr ""
#. rYRtE
@@ -1366,77 +1312,104 @@ msgctxt ""
msgid "Chapter down"
msgstr "Luku alemmaksi"
-#. fDYqK
+#. R8cwF
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"hd_id3151338\n"
+"par_id3155932\n"
"help.text"
-msgid "Promote Level"
-msgstr "Korota tasoa"
+msgid "To quickly reorder headings and their associated text in your document, select the \"Headings\" category in the list, and then click the<emph> Content View</emph> icon. Now you can use drag-and-drop to reorder contents."
+msgstr "Asiakirjan otsikoiden ja niihin liittyvien tekstien järjestelemiseksi sujuvasti valikoidaan luettelosta \"Otsikot\"-luokka ja napsautetaan sitten<emph> Sisältönäkymä</emph>-kuvaketta. Tämän jälkeen voidaan sisältöä järjestellä vetämällä."
-#. KzmQ5
+#. 2a4F7
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3151354\n"
+"hd_id3154292\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promote\">Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon.</ahelp>"
+msgid "Drag Mode"
+msgstr "Vetotila"
+
+#. G5FvJ
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3155828\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/dragmode\">Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use.</ahelp>"
msgstr ""
-#. U2WNF
+#. Lzao9
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3155414\n"
+"par_id3155120\n"
"help.text"
-msgid "<image id=\"img_id3155420\" src=\"sw/res/sc20172.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155420\">Icon</alt></image>"
+msgid "<image id=\"img_id3155126\" src=\"sw/res/sc20235.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155126\">Icon Drag mode</alt></image>"
msgstr ""
-#. z6Cg8
+#. zDXiV
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3153697\n"
+"par_id3147042\n"
"help.text"
-msgid "Promote level"
-msgstr "Korota tasoa"
+msgid "Drag mode"
+msgstr "Vetotila"
-#. LRj68
+#. LNQkF
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"hd_id3153714\n"
+"hd_id3150938\n"
"help.text"
-msgid "Demote Level"
-msgstr "Alenna tasoa"
+msgid "Insert As Hyperlink"
+msgstr "Lisää hyperlinkkinä"
-#. LKaFU
+#. 8BVxG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3150707\n"
+"par_id3150954\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demote\">Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon.</ahelp>"
-msgstr ""
+msgid "<ahelp hid=\"HID_NAVI_DRAG_HYP\">Creates a hyperlink when you drag and drop an item into the current document. Click the hyperlink in the document to jump to the item that the hyperlink points to.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVI_DRAG_HYP\">Hyperlinkki luodaan, kun kohde vedetään ja pudotetaan käsiteltävään asiakirjaan. Asiakirjan hyperlinkkiä napsauttamalla hypätään sen osoittamaan kohteeseen.</ahelp>"
-#. EwSYC
+#. 2RFUX
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3148414\n"
+"hd_id3154354\n"
"help.text"
-msgid "<image id=\"img_id3148420\" src=\"sw/res/sc20173.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148420\">Icon</alt></image>"
-msgstr ""
+msgid "Insert As Link"
+msgstr "Lisää linkkinä"
-#. Ydmmz
+#. Q8EAG
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3147324\n"
+"par_id3154371\n"
"help.text"
-msgid "Demote level"
-msgstr "Alenna tasoa"
+msgid "<ahelp hid=\"HID_NAVI_DRAG_LINK\">Inserts the selected item as a link where you drag and drop in the current document. Text is inserted as protected sections. The contents of the link are automatically updated when the source is changed. To manually update the links in a document, choose <emph>Tools - Update - Links</emph>. You cannot create links for graphics, OLE objects, references and indexes.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVI_DRAG_LINK\">Lisätään valittu kohde linkkinä käsiteltävä asiakirjaan vetämällä ja pudottamalla paikalleen. Teksti tulee lisätyksi suojattuina osina. Linkin sisältö päivittyy, kun lähdettä muutetaan. Asiakirjan linkin päivittämiseksi manuaalisesti valitaan <emph>Työkalut - Päivitä - Linkit</emph>. Linkkejä ei voi luoda kuvista, OLE-objekteista, lähdeviitteistä eikä hakemistoista.</ahelp>"
+
+#. d5wYa
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"hd_id3155572\n"
+"help.text"
+msgid "Insert As Copy"
+msgstr "Lisää kopiona"
+
+#. GFSCB
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3155589\n"
+"help.text"
+msgid "<ahelp hid=\"HID_NAVI_DRAG_COPY\">Inserts a copy of the selected item where you drag and drop in the current document. You cannot drag and drop copies of graphics, OLE objects, references and indexes.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVI_DRAG_COPY\">Kopioidaan valittu kohde käsiteltävään asiakirjaan vetämällä ja pudottamalla paikalleen. Kuvista, OLE-objekteista, lähdeviitteistä tai hakemistoista ei voi luoda kopioita vetämällä ja pudottamalla.</ahelp>"
#. RoVLC
#: 02110000.xhp
@@ -3967,14 +3940,14 @@ 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=\".uno:ShowHiddenParagraphs\">Esitetään tai kätketään piilotetut kappaleet.</ahelp> Asetus vaikuttaa vain piilotettujen kappaleiden näkymiseen näytöllä, eikä niiden tulostamiseen."
-#. F2shg
+#. 6bm6N
#: 03140000.xhp
msgctxt ""
"03140000.xhp\n"
"par_id3157875\n"
"help.text"
-msgid "To enable this feature, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Formatting Aids\"><emph>%PRODUCTNAME Writer - Formatting Aids</emph></link>, and ensure that the <emph>Hidden paragraphs</emph> check box in the <emph>Display of</emph> area is selected."
-msgstr "Ominaisuuden käyttämiseksi valitaan <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Asetukset</caseinline><defaultinline>Työkalut - Asetukset</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Muotoilun aputyökalut\">%PRODUCTNAME Writer - Muotoilun aputyökalut</link></emph> ja tarkistetaan, että <emph>Piilotetut kappaleet</emph> -valintaruutu on merkitty <emph>Näytä</emph>-alueella."
+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."
+msgstr ""
#. EAERL
#: 03140000.xhp
@@ -4057,14 +4030,14 @@ msgctxt ""
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr ""
-#. NArEV
+#. K54uB
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"par_id3149685\n"
"help.text"
-msgid "You can also insert a line break by pressing Shift+Enter."
-msgstr "Rivinvaihto voidaan lisätä myös painamalla Vaihto+Enter."
+msgid "You can also insert a line break by pressing <keycode>Shift+Enter</keycode>."
+msgstr ""
#. CZccf
#: 04010000.xhp
@@ -4084,6 +4057,15 @@ msgctxt ""
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 ""
+#. kU54E
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id61601653541581\n"
+"help.text"
+msgid "Insert a column break by pressing <keycode>Ctrl+Shift+Enter</keycode>"
+msgstr ""
+
#. P7DHK
#: 04010000.xhp
msgctxt ""
@@ -4102,23 +4084,23 @@ msgctxt ""
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
msgstr ""
-#. d6diA
+#. bAwS6
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"par_id3145758\n"
"help.text"
-msgid "You can also insert a page break by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. However, if you want to assign the following page a different Page Style, you must use the menu command to insert the manual page break."
+msgid "You can also insert a page break by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>. However, if you want to assign the following page a different Page Style, you must use the menu command to insert the manual page break."
msgstr ""
-#. 69saC
+#. cDBHn
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"hd_id3149175\n"
"help.text"
-msgid "Style"
-msgstr "Tyyli"
+msgid "Page Style"
+msgstr ""
#. E3CxE
#: 04010000.xhp
@@ -4165,14 +4147,14 @@ msgctxt ""
msgid "Enter the new page number for the page that follows the manual page break."
msgstr ""
-#. TD7cv
+#. SbhQr
#: 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\"><emph>View - Nonprinting Characters</emph></link>."
-msgstr "Pakotettujen vaihtojen tarkastelemiseksi valitaan <link href=\"text/swriter/01/03100000.xhp\" name=\"Näytä - Tulostumattomat merkit\"><emph>Näytä - Tulostumattomat merkit</emph></link>."
+msgid "To display manual breaks, choose <link href=\"text/swriter/01/03100000.xhp\" name=\"View - Nonprinting Characters\"><menuitem>View - Nonprinting Characters</menuitem></link>."
+msgstr ""
#. YTDkt
#: 04020000.xhp
@@ -6208,14 +6190,14 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Closes the dialog.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Suljetaan valintaikkuna.</ahelp>"
-#. r9EFx
+#. vCwfg
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"tit\n"
"help.text"
-msgid "Document"
-msgstr "Asiakirja"
+msgid "Document (Fields)"
+msgstr ""
#. V9Vpz
#: 04090001.xhp
@@ -6325,14 +6307,14 @@ msgctxt ""
msgid "Date"
msgstr "Päivämäärä"
-#. 8r4kw
+#. itPEU
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3151370\n"
"help.text"
-msgid "Inserts the current date. You can insert the date as a fixed field - <item type=\"literal\">Date (fixed)</item> - that does not change, or as a dynamic field - <item type=\"literal\">Date</item> - that it is updated automatically. To manually update the <item type=\"literal\">Date</item> field, press F9."
-msgstr "Lisätään ajankohdan päivämäärä. Päivämäärä voidaan lisätä päivittymättömänä kenttänä - <item type=\"literal\">Kiinteä päivämäärä</item> - joka ei muutu, tai dynaamisena kenttänä - <item type=\"literal\">Päivämäärä</item> - joka päivittyy. Käyttäjä voi päivittää <item type=\"literal\">Päivämäärä</item>-kentän painamalla F9."
+msgid "Inserts the current date. You can insert the date as a fixed field - <item type=\"literal\">Date (fixed)</item> - that does not change, or as a dynamic field - <item type=\"literal\">Date</item> - that it is updated automatically. To manually update the <item type=\"literal\">Date</item> field, press <keycode>F9</keycode>."
+msgstr ""
#. DtBK4
#: 04090001.xhp
@@ -6370,6 +6352,24 @@ msgctxt ""
msgid "Inserts the page number of the current, previous, or next page."
msgstr "Lisätään käsiteltävän, edellisen tai seuraavan sivun numero."
+#. qfEoX
+#: 04090001.xhp
+msgctxt ""
+"04090001.xhp\n"
+"par_id821601755856152\n"
+"help.text"
+msgid "Paragraph Signature"
+msgstr ""
+
+#. xYn3y
+#: 04090001.xhp
+msgctxt ""
+"04090001.xhp\n"
+"par_id611601755863247\n"
+"help.text"
+msgid "Inserts a meta-data field with a digital signature for the paragraph. You must have a digital certificate to sign a paragraph."
+msgstr ""
+
#. N2r6D
#: 04090001.xhp
msgctxt ""
@@ -6379,13 +6379,13 @@ msgctxt ""
msgid "Sender"
msgstr "Lähettäjä"
-#. YxNei
+#. j7jJ4
#: 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\"><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>."
+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>."
msgstr ""
#. WxVLH
@@ -6397,14 +6397,14 @@ msgctxt ""
msgid "Statistics"
msgstr "Tilastotiedot"
-#. vJQ3C
+#. huxeZ
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3151091\n"
"help.text"
-msgid "Inserts document statistics, such as page and word counts, as a field. To view the statistics of a document, choose <emph>File - Properties</emph>, and then click the <emph>Statistics</emph> tab."
-msgstr "Lisätään asiakirjaan tunnuslukuja, kuten sivu- ja sanamäärät kenttinä. Asiakirjan tilastotietojen tarkastelemiseksi valitaan <emph>Tiedosto - Ominaisuudet</emph> ja napsautetaan sitten <emph>Tilastotiedot</emph>-välilehteä."
+msgid "Inserts document statistics, such as page and word counts, as a field. To view the statistics of a document, choose <menuitem>File - Properties</menuitem>, and then click the <emph>Statistics</emph> tab."
+msgstr ""
#. u227i
#: 04090001.xhp
@@ -6433,14 +6433,14 @@ msgctxt ""
msgid "Time"
msgstr "Aika"
-#. JKqQs
+#. kZ4up
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3154340\n"
"help.text"
-msgid "Inserts the current time. You can insert the time as a fixed field - <item type=\"literal\">Time (fixed)</item> - that does not change, or as a dynamic field - <item type=\"literal\">Time</item> - that it is updated automatically. To manually update the <item type=\"literal\">Time</item> field, press F9."
-msgstr "Lisätään ajankohdan kellonaika. Ajan voi lisätä päivittymättömänä kenttänä - <item type=\"literal\">Kiinteä kellonaika</item> - joka ei muutu, tai dynaamisena kenttänä - <item type=\"literal\">Aika</item> - joka päivittyy. Käyttäjä voi päivittää <item type=\"literal\">Aika</item>-kentän painamalla F9."
+msgid "Inserts the current time. You can insert the time as a fixed field - <literal>Time (fixed)</literal> - that does not change, or as a dynamic field - <literal>Time</literal> - that it is updated automatically. To manually update the <literal>Time</literal> field, press <keycode>F9</keycode>."
+msgstr ""
#. 2FEpZ
#: 04090001.xhp
@@ -6469,13 +6469,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Luettelossa on saatavilla olevat <emph>Tyyppi</emph>-luettelosta valitun kenttätyypin kentät. Kentän lisäämiseksi napsautetaan kenttää ja napsautetaan sitten <emph>Lisää</emph>-painiketta.</ahelp>"
-#. 5LnLS
+#. tg3yT
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3155537\n"
"help.text"
-msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field."
+msgid "To quickly insert a field from the list, double-click the field."
msgstr ""
#. QeLLM
@@ -6496,6 +6496,24 @@ msgctxt ""
msgid "Function"
msgstr "Toiminto"
+#. 7AF9B
+#: 04090001.xhp
+msgctxt ""
+"04090001.xhp\n"
+"par_id3156032\n"
+"help.text"
+msgid "Page Number"
+msgstr "Sivunumero"
+
+#. FynHE
+#: 04090001.xhp
+msgctxt ""
+"04090001.xhp\n"
+"par_id3159212\n"
+"help.text"
+msgid "Inserts the current page number."
+msgstr "Lisätään käsiteltävän sivun numero."
+
#. 5HCJq
#: 04090001.xhp
msgctxt ""
@@ -6532,24 +6550,6 @@ msgctxt ""
msgid "Inserts the page number of the next page in the document."
msgstr "Lisätään asiakirjaan seuraavan sivun numero."
-#. 7AF9B
-#: 04090001.xhp
-msgctxt ""
-"04090001.xhp\n"
-"par_id3156032\n"
-"help.text"
-msgid "Page Number"
-msgstr "Sivunumero"
-
-#. FynHE
-#: 04090001.xhp
-msgctxt ""
-"04090001.xhp\n"
-"par_id3159212\n"
-"help.text"
-msgid "Inserts the current page number."
-msgstr "Lisätään käsiteltävän sivun numero."
-
#. nFSDb
#: 04090001.xhp
msgctxt ""
@@ -6568,33 +6568,6 @@ msgctxt ""
msgid "If you want, you can enter an <emph>Offset </emph>for the displayed page number. 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 "Tarvittaessa voidaan syöttää esitettävän sivunumeron <emph>Siirtymä </emph>. Kun <emph>Siirtymä</emph>-arvo on 1, kenttä näyttää arvon, joka on 1 suurempi kuin todellinen sivunumero. Näin tapahtuu kuitenkin vain, jos numeroa vastaava sivu on olemassa. Asiakirjan viimeisellä sivulla tämä kenttä jää tyhjäksi."
-#. GtaP3
-#: 04090001.xhp
-msgctxt ""
-"04090001.xhp\n"
-"hd_id3150891\n"
-"help.text"
-msgid "Offset"
-msgstr "Siirtymä"
-
-#. THAiS
-#: 04090001.xhp
-msgctxt ""
-"04090001.xhp\n"
-"par_id3155312\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/value\">Enter the offset value that you want to apply to a page number field, for example \"+1\".</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/value\">Annetaan poikkeutusarvo, jota käytetään sivunumerokentässä, esimerkiksi \"+1\".</ahelp>"
-
-#. UE3TE
-#: 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 "Mikäli halutaan muuttaa todellisia sivunumeroita eikä niiden esittämistä, <emph>Siirtymä</emph>-arvoa ei käytetä. Sivunumeroiden muuttamisesta voi lukea <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Sivunumerot\"><emph>Sivunumerot</emph></link>-opasteesta."
-
#. zVKLG
#: 04090001.xhp
msgctxt ""
@@ -6730,41 +6703,50 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/level\">Select the chapter heading level that you want to include in the selected field.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/level\">Valitaan luvun otsikkotaso, joka sisällytetään valittuun kenttään.</ahelp>"
-#. FzJ8M
+#. GtaP3
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
-"hd_id3154598\n"
+"hd_id3150891\n"
"help.text"
-msgid "Offset in days/minutes"
-msgstr "Siirtymä päivinä/minuutteina"
+msgid "Offset"
+msgstr "Siirtymä"
-#. xVNTE
+#. THAiS
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
-"par_id3154899\n"
+"par_id3155312\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Enter the offset that you want to apply to a date or time field.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Annetaan päivämäärä- tai kellonaikakentissä käytetty poikkeutus.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/value\">Enter the offset value that you want to apply to a page number field, for example \"+1\".</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/value\">Annetaan poikkeutusarvo, jota käytetään sivunumerokentässä, esimerkiksi \"+1\".</ahelp>"
-#. za9bF
+#. UE3TE
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
-"hd_id3154922\n"
+"par_id3154948\n"
"help.text"
-msgid "Value"
-msgstr "Arvo"
+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 "Mikäli halutaan muuttaa todellisia sivunumeroita eikä niiden esittämistä, <emph>Siirtymä</emph>-arvoa ei käytetä. Sivunumeroiden muuttamisesta voi lukea <link href=\"text/swriter/guide/pagenumbers.xhp\" name=\"Sivunumerot\"><emph>Sivunumerot</emph></link>-opasteesta."
-#. FcpKT
+#. FzJ8M
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
-"par_id3153049\n"
+"hd_id3154598\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Enter the contents that you want to add to a user-defined field.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Annetaan arvo, joka lisätään käyttäjäkenttään.</ahelp>"
+msgid "Offset in days/minutes"
+msgstr "Siirtymä päivinä/minuutteina"
+
+#. xVNTE
+#: 04090001.xhp
+msgctxt ""
+"04090001.xhp\n"
+"par_id3154899\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Enter the offset that you want to apply to a date or time field.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Annetaan päivämäärä- tai kellonaikakentissä käytetty poikkeutus.</ahelp>"
#. 5EfAy
#: 04090002.xhp
@@ -6775,14 +6757,14 @@ msgctxt ""
msgid "Cross-references"
msgstr "Ristiviittaukset"
-#. ESVWv
+#. GUwEg
#: 04090002.xhp
msgctxt ""
"04090002.xhp\n"
"hd_id3153641\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04090002.xhp\" name=\"Cross-references\">Cross-references</link>"
-msgstr "<link href=\"text/swriter/01/04090002.xhp\" name=\"Ristiviite\">Ristiviite</link>"
+msgid "<link href=\"text/swriter/01/04090002.xhp\" name=\"Cross-references\">Cross-reference</link>"
+msgstr ""
#. 58E48
#: 04090002.xhp
@@ -7333,6 +7315,24 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the contents that you want to add to a user-defined fields.</ahelp>"
msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ruudussa näkyy käyttäjäkenttään lisättävä sisältö.</ahelp>"
+#. JyGN8
+#: 04090002.xhp
+msgctxt ""
+"04090002.xhp\n"
+"hd_id3154922\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. DCA8i
+#: 04090002.xhp
+msgctxt ""
+"04090002.xhp\n"
+"par_id3153049\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/offset\">Enter the contents that you want to add to a user-defined field.</ahelp>"
+msgstr ""
+
#. zRBwU
#: 04090002.xhp
msgctxt ""
@@ -8000,13 +8000,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/04090004.xhp\" name=\"DocInformation\">DocInformation</link>"
msgstr "<link href=\"text/swriter/01/04090004.xhp\" name=\"Asiakirjatiedot\">Asiakirjatiedot</link>"
-#. assDC
+#. tpcju
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id3149692\n"
"help.text"
-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 <emph>File - Properties</emph>.</ahelp>"
+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 ""
#. uXwon
@@ -8045,42 +8045,6 @@ msgctxt ""
msgid "Meaning"
msgstr "Selite"
-#. FdAgo
-#: 04090004.xhp
-msgctxt ""
-"04090004.xhp\n"
-"par_id3145774\n"
-"help.text"
-msgid "Modified"
-msgstr "Muokattu"
-
-#. FAxWQ
-#: 04090004.xhp
-msgctxt ""
-"04090004.xhp\n"
-"par_id3155915\n"
-"help.text"
-msgid "Inserts the name of the author, and the date, or the time of the last save."
-msgstr "Lisätään viimeisimmän tallennuksen tekijän nimi, päivämäärä tai kellonaika."
-
-#. 2VDpP
-#: 04090004.xhp
-msgctxt ""
-"04090004.xhp\n"
-"par_id3150108\n"
-"help.text"
-msgid "Editing time"
-msgstr "Kokonaismuokkausaika"
-
-#. fnmmz
-#: 04090004.xhp
-msgctxt ""
-"04090004.xhp\n"
-"par_id3155860\n"
-"help.text"
-msgid "Inserts the amount of time spent on editing a document."
-msgstr "Lisätään asiakirjan muokkaamiseen käytetty aika."
-
#. CskBE
#: 04090004.xhp
msgctxt ""
@@ -8090,33 +8054,15 @@ msgctxt ""
msgid "Comments"
msgstr "Huomautukset"
-#. 5TRw6
+#. PQFYC
#: 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\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
-
-#. CzJdW
-#: 04090004.xhp
-msgctxt ""
-"04090004.xhp\n"
-"par_id3145262\n"
-"help.text"
-msgid "Revision number"
+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."
msgstr ""
-#. wqEvo
-#: 04090004.xhp
-msgctxt ""
-"04090004.xhp\n"
-"par_id3150556\n"
-"help.text"
-msgid "Inserts the version number of the current document."
-msgstr "Lisätään käsiteltävän asiakirjan versionumero."
-
#. fZJ33
#: 04090004.xhp
msgctxt ""
@@ -8144,13 +8090,31 @@ msgctxt ""
msgid "Custom"
msgstr ""
-#. asCvh
+#. KXS9b
#: 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\"><emph>File - Properties</emph></link> dialog."
+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.)"
+msgstr ""
+
+#. GZvq9
+#: 04090004.xhp
+msgctxt ""
+"04090004.xhp\n"
+"par_id3156122\n"
+"help.text"
+msgid "Keywords"
+msgstr "Avainsanat"
+
+#. qNuV3
+#: 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."
msgstr ""
#. 2CUCo
@@ -8171,24 +8135,42 @@ msgctxt ""
msgid "Inserts the name of the author, and the date or time that the document was last printed."
msgstr "Lisätään asiakirjan viimeisimmän tulostuskerran tekijän nimi, päivämäärä tai kellonaika."
-#. GZvq9
+#. FdAgo
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
-"par_id3156122\n"
+"par_id3145774\n"
"help.text"
-msgid "Keywords"
-msgstr "Avainsanat"
+msgid "Modified"
+msgstr "Muokattu"
+
+#. FAxWQ
+#: 04090004.xhp
+msgctxt ""
+"04090004.xhp\n"
+"par_id3155915\n"
+"help.text"
+msgid "Inserts the name of the author, and the date, or the time of the last save."
+msgstr "Lisätään viimeisimmän tallennuksen tekijän nimi, päivämäärä tai kellonaika."
-#. eEqfT
+#. CzJdW
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
-"par_id3150912\n"
+"par_id3145262\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\"><emph>File - Properties</emph></link> dialog."
+msgid "Revision number"
msgstr ""
+#. wqEvo
+#: 04090004.xhp
+msgctxt ""
+"04090004.xhp\n"
+"par_id3150556\n"
+"help.text"
+msgid "Inserts the version number of the current document."
+msgstr "Lisätään käsiteltävän asiakirjan versionumero."
+
#. BDRAW
#: 04090004.xhp
msgctxt ""
@@ -8198,13 +8180,13 @@ msgctxt ""
msgid "Subject"
msgstr "Aihe"
-#. Ax6dF
+#. zda5N
#: 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\"><emph>File - Properties</emph></link> dialog."
+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."
msgstr ""
#. BeCQj
@@ -8216,23 +8198,41 @@ msgctxt ""
msgid "Title"
msgstr "Otsikko"
-#. AXAey
+#. LGiNd
#: 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\"><emph>File - Properties</emph></link> dialog."
+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."
+msgstr ""
+
+#. nK4Xe
+#: 04090004.xhp
+msgctxt ""
+"04090004.xhp\n"
+"par_id3150108\n"
+"help.text"
+msgid "Total editing time"
msgstr ""
-#. cYQCB
+#. fnmmz
+#: 04090004.xhp
+msgctxt ""
+"04090004.xhp\n"
+"par_id3155860\n"
+"help.text"
+msgid "Inserts the amount of time spent on editing a document."
+msgstr "Lisätään asiakirjan muokkaamiseen käytetty aika."
+
+#. tAx3e
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id0902200804290272\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Luettelossa on saatavilla olevat <emph>Tyyppi</emph>-luettelosta valitun kenttätyypin kentät. Kentän lisäämiseksi napsautetaan ensin kenttää ja napsautetaan sitten <emph>Lisää</emph>-painiketta.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available fields for the field type selected in the <emph>Type</emph> list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
+msgstr ""
#. NDsUM
#: 04090004.xhp
@@ -8351,14 +8351,14 @@ msgctxt ""
msgid "Set Variable"
msgstr "Määritä muuttuja"
-#. Qy8Dc
+#. AbNGB
#: 04090005.xhp
msgctxt ""
"04090005.xhp\n"
"par_id3150996\n"
"help.text"
-msgid "Defines a variable and its value. You can change the value of a variable by clicking in front of the variable field, and then choosing <emph>Edit - Field</emph>."
-msgstr "Määritetään muuttuja ja sen arvo. Muuttujan arvo voidaan vaihtaa napsauttamalla muuttujakentän edessä ja valitsemalla sitten <emph>Muokkaa - Kenttä</emph>."
+msgid "Defines a variable and its value. You can change the value of a variable by clicking in front of the variable field, and then choosing <menuitem>Edit - Field</menuitem>."
+msgstr ""
#. WjgAZ
#: 04090005.xhp
@@ -10124,14 +10124,14 @@ msgctxt ""
msgid "user_email"
msgstr "user_email"
-#. KFCCX
+#. vxLtn
#: 04090200.xhp
msgctxt ""
"04090200.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "E-mail address"
-msgstr "Sähköpostiosoite"
+msgid "Email address"
+msgstr ""
#. cQpP3
#: 04090200.xhp
@@ -13679,6 +13679,15 @@ msgctxt ""
msgid "You can use the Find All button on the Find & Replace dialog to highlight all places where a word appears, then open the Insert Index Entry dialog to add that word and places to the alphabetical index. However, if you need the same set of alphabetical indexes in multiple documents, the concordance file allows you to enter every word just once, then use the list many times."
msgstr "Etsi ja korvaa -valintaikkunan Etsi kaikki -painiketta voidaan käyttää korostamaan kaikki sanan esiintymät ja sitten voidaan avata Lisää hakemistomerkintä -valintaikkuna tämän sanan lisäämiseksi ja sijoittamiseksi aakkoselliseen hakemistoon. Jos kuitenkin tarvitaan samaa aakkosellista hakemistoa useissa asiakirjoissa, vastaavuustiedosto tekee mahdolliseksi sanan syöttämisen vain kerran ja sitten sen käyttämisen useita kertoja."
+#. FVXZ4
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id771599006446118\n"
+"help.text"
+msgid "The default filter for creating or opening concordance files is <literal>*.sdi</literal>. However, the file format of the concordance file is plain text."
+msgstr ""
+
#. cFHDU
#: 04120250.xhp
msgctxt ""
@@ -13733,6 +13742,33 @@ msgctxt ""
msgid "A concordance file contains the following fields:"
msgstr "Vastaavuustiedostossa on seuraavat kentät:"
+#. 9wETm
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id91599005949275\n"
+"help.text"
+msgid "Term"
+msgstr ""
+
+#. zMi8V
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id461599005949276\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. e7Npc
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id291599005949278\n"
+"help.text"
+msgid "Search term"
+msgstr ""
+
#. zFwbQ
#: 04120250.xhp
msgctxt ""
@@ -13742,6 +13778,15 @@ msgctxt ""
msgid "\"Search term\" refers to the index entry that you want to mark in the document."
msgstr "\"Etsittävä termi\" viittaa hakemistomerkintään, joka merkitään asiakirjasta."
+#. CEahq
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id811599006053151\n"
+"help.text"
+msgid "Alternative entry"
+msgstr ""
+
#. rxooN
#: 04120250.xhp
msgctxt ""
@@ -13751,6 +13796,15 @@ msgctxt ""
msgid "\"Alternative entry\" refers to the index entry that you want to appear in the index."
msgstr "\"Vaihtoehtoinen merkintä\" viittaa hakemistomerkintään sellaisena, kuin se näkyy hakemistossa."
+#. q3DFC
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id661599006090921\n"
+"help.text"
+msgid "1st and 2nd Keys"
+msgstr ""
+
#. VRBtF
#: 04120250.xhp
msgctxt ""
@@ -13760,6 +13814,33 @@ msgctxt ""
msgid "The 1st and 2nd Keys are parent index entries. The \"Search term\" or the \"Alternative entry\" appears as a subentry under the 1st and 2nd Keys."
msgstr "Avaimet 1 ja 2 ovat isähakemiston merkintöjä. \"Etsittävä termi\" tai \"Vaihtoehtoinen merkintä\" näkyvät alakohtina 1. ja 2. avaimelle."
+#. DuJqR
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id521599007507727\n"
+"help.text"
+msgid "Comment"
+msgstr ""
+
+#. GCW2W
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id981599007507728\n"
+"help.text"
+msgid "Add a comment line above the entry. Commented lines start with #."
+msgstr ""
+
+#. MPT5J
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id441599006128506\n"
+"help.text"
+msgid "Match case"
+msgstr ""
+
#. PqJ9t
#: 04120250.xhp
msgctxt ""
@@ -13769,6 +13850,15 @@ msgctxt ""
msgid "\"Match case\" means that uppercase and lowercase letters are considered."
msgstr "\"Sama kirjainkoko\" tarkoittaa, että suur- ja pienaakkoset katsotaan eri kirjaimiksi."
+#. 9Zvp6
+#: 04120250.xhp
+msgctxt ""
+"04120250.xhp\n"
+"par_id361599006161460\n"
+"help.text"
+msgid "Word only"
+msgstr ""
+
#. hFig3
#: 04120250.xhp
msgctxt ""
@@ -13832,14 +13922,14 @@ msgctxt ""
msgid "Use the following format for the entries:"
msgstr "Käytä merkinnöille seuraavaa muotoilua:"
-#. vDSMm
+#. GoFzo
#: 04120250.xhp
msgctxt ""
"04120250.xhp\n"
"par_id3149172\n"
"help.text"
-msgid "Search term;Alternative entry;1st key;2nd key;Match case;Word only"
-msgstr "Etsittävä termi;Vaihtoehtoinen merkintä;1. avain;2. avain;Sama kirjainkoko;Vain sana"
+msgid "<literal>Search term;Alternative entry;1st key;2nd key;Match case;Word only</literal>"
+msgstr ""
#. FWVnU
#: 04120250.xhp
@@ -13868,14 +13958,14 @@ msgctxt ""
msgid "For example, to include the word \"Boston\" in your alphabetical index under the \"Cities\" entry, enter the following line in the concordance file:"
msgstr "Esimerkiksi sanan \"Boston\" sisällyttäminen aakkoselliseen hakemistoon \"Kaupungit\"-merkinnän alle, syötetään seuraava rivi vastaavuustiedostoon:"
-#. BqcRU
+#. hqr4T
#: 04120250.xhp
msgctxt ""
"04120250.xhp\n"
"par_id3151370\n"
"help.text"
-msgid "Boston;Boston;Cities;;0;0"
-msgstr "Boston;Boston;Kaupungit;;0;0"
+msgid "<literal>Boston;Boston;Cities;;0;0</literal>"
+msgstr ""
#. NQkQN
#: 04120250.xhp
@@ -13895,14 +13985,14 @@ msgctxt ""
msgid "To include the \"Beacon Hill\" district in Boston under the \"Cities\" entry, enter the following line:"
msgstr "\"Nummenkylä\"-alueen sisällyttämiseksi Järvenpäähän \"Kaupungit\"-merkinnän alle syötetään seuraava rivi:"
-#. MiuPA
+#. J8EX4
#: 04120250.xhp
msgctxt ""
"04120250.xhp\n"
"par_id3150116\n"
"help.text"
-msgid "Beacon Hill;Boston;Cities;"
-msgstr "Nummenkylä;Järvenpää;Kaupungit;"
+msgid "<literal>Beacon Hill;Boston;Cities;</literal>"
+msgstr ""
#. aG6Cj
#: 04120300.xhp
@@ -15074,13 +15164,13 @@ msgctxt ""
msgid "Insert Fields (submenu)"
msgstr ""
-#. TApBS
+#. wo9Su
#: 04990000.xhp
msgctxt ""
"04990000.xhp\n"
"hd_id3147405\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04990000.xhp\" name=\"Fields\">Insert Fields (submenu)</link>"
+msgid "<link href=\"text/swriter/01/04990000.xhp\" name=\"Fields\">Field</link>"
msgstr ""
#. qVhAD
@@ -19844,14 +19934,14 @@ msgctxt ""
msgid "Object"
msgstr "Objekti"
-#. EEq9x
+#. vAyCD
#: 05080000.xhp
msgctxt ""
"05080000.xhp\n"
"par_id3149352\n"
"help.text"
-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 "<variable id=\"objekttext\"><ahelp hid=\".uno:FrameDialog\">Avataan valintaikkuna, jossa voidaan muokata valitun objektin ominaisuuksia, esimerkiksi kokoa ja nimeä</ahelp>. </variable>"
+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
#: 05080000.xhp
@@ -22544,13 +22634,13 @@ msgctxt ""
msgid "<image id=\"img_id3150122\" src=\"cmd/sc_stylenewbyexample.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150122\">Icon New Style from Selection</alt></image>"
msgstr ""
-#. cRnpp
+#. B3XbU
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_id3147490\n"
"help.text"
-msgid "Style actions"
+msgid "Style actions menu"
msgstr ""
#. KFB5g
@@ -22598,13 +22688,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 ""
-#. j6a4F
+#. zktVC
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"par_idN10A31\n"
"help.text"
-msgid "<link href=\"text/text/swriter/01/05170000.xhp\" name=\"loadstyles\"><menuitem>Load Styles</menuitem></link>"
+msgid "<link href=\"text/swriter/01/05170000.xhp\" name=\"loadstyles\"><menuitem>Load Styles</menuitem></link>"
msgstr ""
#. TSnrm
@@ -22778,14 +22868,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05150100.xhp\" name=\"While Typing\">While Typing</link>"
msgstr "<link href=\"text/swriter/01/05150100.xhp\" name=\"Kirjoitettaessa\">Kirjoitettaessa</link>"
-#. 2MCDP
+#. FArms
#: 05150100.xhp
msgctxt ""
"05150100.xhp\n"
"par_id3154017\n"
"help.text"
-msgid "<ahelp hid=\".uno:OnlineAutoFormat\">Automatically formats the document while you type. To set the formatting options, choose <emph>Tools - AutoCorrect</emph><emph> Options</emph>, and then click the <emph>Options </emph>tab.</ahelp>"
-msgstr "<ahelp hid=\".uno:OnlineAutoFormat\">Asiakirja muotoillaan kirjoitettaessa. Asetukset tehdään valitsemalla <emph>Työkalut - Automaattisen korjauksen</emph><emph> asetukset</emph> ja avaamalla sitten <emph> Asetukset</emph>-välilehti.</ahelp>"
+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
#: 05150100.xhp
@@ -26513,6 +26603,60 @@ msgctxt ""
msgid "Updates items in the current document that have dynamic contents, so as fields and indexes."
msgstr "Päivitetään käsiteltävän asiakirjan kohteet, joissa on muuttuva sisältö, kuten kentät ja hakemistot."
+#. k5UDL
+#: edit_reference_submenu.xhp
+msgctxt ""
+"edit_reference_submenu.xhp\n"
+"tit\n"
+"help.text"
+msgid "Reference (Edit)"
+msgstr ""
+
+#. 4XRrD
+#: edit_reference_submenu.xhp
+msgctxt ""
+"edit_reference_submenu.xhp\n"
+"hd_id1001603128268578\n"
+"help.text"
+msgid "Reference"
+msgstr ""
+
+#. 6LFFX
+#: edit_reference_submenu.xhp
+msgctxt ""
+"edit_reference_submenu.xhp\n"
+"par_id411603128291771\n"
+"help.text"
+msgid "A submenu that offers possibilities to edit footnotes, endnotes, index entries, and bibliography entries."
+msgstr ""
+
+#. vfaCD
+#: 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>"
+msgstr ""
+
+#. RKfyJ
+#: 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>"
+msgstr ""
+
+#. cH3QF
+#: 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>"
+msgstr ""
+
#. 4qVPZ
#: format_object.xhp
msgctxt ""
@@ -26738,14 +26882,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge Wizard</link>"
msgstr "<link href=\"text/swriter/01/mailmerge00.xhp\">Joukkokirjeen ohjattu luonti</link>"
-#. 7vQcD
+#. iHDMM
#: mailmerge00.xhp
msgctxt ""
"mailmerge00.xhp\n"
"par_idN10559\n"
"help.text"
-msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters or send e-mail messages to many recipients.</ahelp>"
-msgstr "<ahelp hid=\".\">Käynnistetään joukkokirjeen ohjattu luonti, jolla voidaan luoda joukkokirjeitä ja lähettää sähköposteja useille vastaanottajille.</ahelp>"
+msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters or send email messages to many recipients.</ahelp>"
+msgstr ""
#. bXSUB
#: mailmerge00.xhp
@@ -26999,23 +27143,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Creates a printable mail merge document.</ahelp>"
msgstr "<ahelp hid=\".\">Luodaan tulostettava joukkokirje-asiakirja.</ahelp>"
-#. pAz9k
+#. 4w8tw
#: mailmerge02.xhp
msgctxt ""
"mailmerge02.xhp\n"
"hd_id6954863\n"
"help.text"
-msgid "E-mail message"
-msgstr "Sähköpostiviesti"
+msgid "Email message"
+msgstr ""
-#. MpXzu
+#. YA54f
#: mailmerge02.xhp
msgctxt ""
"mailmerge02.xhp\n"
"par_idN10561\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates mail merge documents that you can send as an e-mail message or an e-mail attachment.</ahelp>"
-msgstr "<ahelp hid=\".\">Luodaan joukkokirje-asiakirja, joka voidaan lähettää sähköpostiviestinä tai -liitteenä.</ahelp>"
+msgid "<ahelp hid=\".\">Creates mail merge documents that you can send as an email message or an email attachment.</ahelp>"
+msgstr ""
#. 8sABv
#: mailmerge02.xhp
@@ -27071,13 +27215,13 @@ msgctxt ""
msgid "The Mail Merge wizard opens to this page if you start the wizard in a text document that already contains address database fields. If the wizard opens directly to this page, the <emph>Select Address List</emph> button is called <emph>Select Different Address List</emph>."
msgstr ""
-#. M3zv5
+#. NRb5r
#: mailmerge03.xhp
msgctxt ""
"mailmerge03.xhp\n"
"par_idN10556\n"
"help.text"
-msgid "The title of this page is <emph>Insert address block</emph> for letters and <emph>Select address list</emph> for e-mail messages."
+msgid "The title of this page is <emph>Insert address block</emph> for letters and <emph>Select address list</emph> for email messages."
msgstr ""
#. GEW7x
@@ -27746,13 +27890,13 @@ msgctxt ""
msgid "Copy To"
msgstr "Kopio"
-#. 4BERk
+#. NPfkh
#: mm_copyto.xhp
msgctxt ""
"mm_copyto.xhp\n"
"par_idN1053D\n"
"help.text"
-msgid "Specify additional e-mail recipients for the <link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">mail merge</link> document."
+msgid "Specify additional email recipients for the <link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">mail merge</link> document."
msgstr ""
#. fg2kJ
@@ -27764,14 +27908,14 @@ msgctxt ""
msgid "CC"
msgstr "Kopio"
-#. Soci8
+#. HDJA8
#: mm_copyto.xhp
msgctxt ""
"mm_copyto.xhp\n"
"par_idN10552\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the recipients of e-mail copies, separated by a semicolon (;).</ahelp>"
-msgstr "<ahelp hid=\".\">Syötetään kopion vastaanottajien sähköpostiosoitteet, puolipilkku (;) välimerkkinä.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the recipients of email copies, separated by a semicolon (;).</ahelp>"
+msgstr ""
#. wUHkK
#: mm_copyto.xhp
@@ -27782,14 +27926,14 @@ msgctxt ""
msgid "BCC"
msgstr "Piilokopio"
-#. K9HZp
+#. WoTRZ
#: mm_copyto.xhp
msgctxt ""
"mm_copyto.xhp\n"
"par_idN10559\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the recipients of e-mail blind copies, separated by a semicolon (;).</ahelp>"
-msgstr "<ahelp hid=\".\">Syötetään piilokopion vastaanottajien sähköpostiosoitteet, puolipilkku (;) välimerkkinä.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the recipients of email blind copies, separated by a semicolon (;).</ahelp>"
+msgstr ""
#. FHSJ5
#: mm_cusaddlis.xhp
@@ -27908,14 +28052,14 @@ msgctxt ""
msgid "Custom Salutation"
msgstr "Mukautettu tervehdys"
-#. QnGBv
+#. TVxhR
#: mm_cusgrelin.xhp
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10540\n"
"help.text"
-msgid "Specify the salutation layout for <link href=\"text/swriter/01/mailmerge04.xhp\">mail merge</link> or <link href=\"text/swriter/01/mm_emabod.xhp\">e-mail merge</link> documents. The name of this dialog is different for female recipients and male recipients."
-msgstr "Määritetään <link href=\"text/swriter/01/mailmerge04.xhp\">joukkokirje</link> tai <link href=\"text/swriter/01/mm_emabod.xhp\">joukkosähköposti</link>-asiakirjojen tervehdyksen asettelu. Tämän valintaikkunan nimi on erilainen naispuolisille ja miespuolisille vastaanottajille."
+msgid "Specify the salutation layout for <link href=\"text/swriter/01/mailmerge04.xhp\">mail merge</link> or <link href=\"text/swriter/01/mm_emabod.xhp\">email merge</link> documents. The name of this dialog is different for female recipients and male recipients."
+msgstr ""
#. 2wy4R
#: mm_cusgrelin.xhp
@@ -28061,32 +28205,32 @@ msgctxt ""
msgid "E-Mail Message"
msgstr "Sähköpostiviesti"
-#. nhBF2
+#. PTucc
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN10540\n"
"help.text"
-msgid "<ahelp hid=\".\">Type the message and the salutation for files that you send as <link href=\"text/swriter/01/mailmerge08.xhp\">e-mail</link> attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Type the message and the salutation for files that you send as <link href=\"text/swriter/01/mailmerge08.xhp\">email</link> attachments.</ahelp>"
msgstr ""
-#. F358E
+#. 5SMA7
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN10554\n"
"help.text"
-msgid "This e-mail should contain a salutation"
-msgstr "Tämän asiakirjan tulisi sisältää tervehdys"
+msgid "This email should contain a salutation"
+msgstr ""
-#. rvBf7
+#. rmBz6
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN10558\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds a salutation to the e-mail.</ahelp>"
-msgstr "<ahelp hid=\".\">Lisätään tervehdys sähköpostiviestiin.</ahelp>"
+msgid "<ahelp hid=\".\">Adds a salutation to the email.</ahelp>"
+msgstr ""
#. GFHN4
#: mm_emabod.xhp
@@ -28241,49 +28385,49 @@ msgctxt ""
msgid "Write your message here"
msgstr "Kirjoita viestisi tähän"
-#. KTKa7
+#. CDBEE
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN105B3\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the main text of the e-mail.</ahelp>"
-msgstr "<ahelp hid=\".\">Kirjoitetaan sähköpostiviesti.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the main text of the email.</ahelp>"
+msgstr ""
-#. hztW8
+#. A5QMX
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"tit\n"
"help.text"
-msgid "Send merged document as e-mail"
+msgid "Send merged document as email"
msgstr ""
-#. JAB7w
+#. ZEELF
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"hd_id201703192214041173\n"
"help.text"
-msgid "<link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">Send merged document as e-mail</link>"
+msgid "<link href=\"text/swriter/01/mm_emailmergeddoc.xhp\">Send merged document as email</link>"
msgstr ""
-#. ZCLmb
+#. TmBHD
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_id201703192214161498\n"
"help.text"
-msgid "<ahelp hid=\".\">Sends the mail merge output as e-mail messages to all or some recipients.</ahelp>"
+msgid "<ahelp hid=\".\">Sends the mail merge output as email messages to all or some recipients.</ahelp>"
msgstr ""
-#. YT7sD
+#. z8DLS
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10556\n"
"help.text"
-msgid "E-mail options"
+msgid "Email options"
msgstr ""
#. P3AsV
@@ -28295,13 +28439,13 @@ msgctxt ""
msgid "To"
msgstr ""
-#. myAeT
+#. t24J7
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN105EC\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the database field that contains the e-mail address of the recipient.</ahelp>"
+msgid "<ahelp hid=\".\">Select the database field that contains the email address of the recipient.</ahelp>"
msgstr ""
#. AERBW
@@ -28331,13 +28475,13 @@ msgctxt ""
msgid "Subject"
msgstr ""
-#. EqNDS
+#. c4QK5
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10604\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the subject line for the e-mail messages.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the subject line for the email messages.</ahelp>"
msgstr ""
#. FY8Cr
@@ -28349,13 +28493,13 @@ msgctxt ""
msgid "Send as"
msgstr ""
-#. tqGvc
+#. FtdvW
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN1060B\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the mail format for the e-mail messages.</ahelp>"
+msgid "<ahelp hid=\".\">Select the mail format for the email messages.</ahelp>"
msgstr ""
#. vtgFn
@@ -28376,13 +28520,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. xwGYg
+#. QDtAr
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the e-mail message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
@@ -28421,13 +28565,13 @@ msgctxt ""
msgid "Send all documents"
msgstr ""
-#. DCNro
+#. jGZh3
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10631\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to send e-mails to all recipients.</ahelp>"
+msgid "<ahelp hid=\".\">Select to send emails to all recipients.</ahelp>"
msgstr ""
#. TLnNz
@@ -28493,13 +28637,13 @@ msgctxt ""
msgid "Send Documents"
msgstr ""
-#. nadEr
+#. 8LarF
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10646\n"
"help.text"
-msgid "<ahelp hid=\".\">Click to start sending e-mails.</ahelp>"
+msgid "<ahelp hid=\".\">Click to start sending emails.</ahelp>"
msgstr ""
#. udnuD
diff --git a/source/fi/helpcontent2/source/text/swriter/02.po b/source/fi/helpcontent2/source/text/swriter/02.po
index 9064196a6f8..f8c64468d9e 100644
--- a/source/fi/helpcontent2/source/text/swriter/02.po
+++ b/source/fi/helpcontent2/source/text/swriter/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2017-11-22 14:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -1285,14 +1285,14 @@ msgctxt ""
msgid "Formula"
msgstr "Kaava"
-#. vYCuk
+#. utFBz
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
"bm_id3149687\n"
"help.text"
-msgid "<bookmark_value>operators; in formulas</bookmark_value><bookmark_value>statistical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value><bookmark_value>pages;number of</bookmark_value><bookmark_value>variables;document properties</bookmark_value><bookmark_value>arithmetical operators in formulas</bookmark_value>"
-msgstr "<bookmark_value>operaattorit; kaavoissa</bookmark_value><bookmark_value>tilastofunktiot</bookmark_value><bookmark_value>trigonometriset funktiot</bookmark_value><bookmark_value>sivut;lukumäärä</bookmark_value><bookmark_value>muuttujat;asiakirjan ominaisuudet</bookmark_value><bookmark_value>aritmeettiset operaattorit kaavoissa</bookmark_value>"
+msgid "<bookmark_value>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
#: 14020000.xhp
@@ -1321,13 +1321,31 @@ msgctxt ""
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 "Lauseke tulee näkyviin syöttöriville. Solualueen määrittämiseksi taulukosta valitaan tarvittavat solut hiirellä. Myös vastaavat soluviitteet näkyvät syöttörivillä. Syötä mahdolliset lisämuuttujat ja napsauta <emph>Käytä</emph>-painiketta syötteen hyväksymiseksi. Lauseke voidaan kirjoittaa myös suoraan, jos sen syntaksi tunnetaan. Tämä on tarpeen esimerkiksi <link href=\"text/swriter/01/04090000.xhp\" name=\"Lisää kenttiä\"><emph>Lisää kenttiä</emph></link> ja <emph>Muokkaa kenttiä</emph> -valintaikkunoissa."
-#. hEuvw
+#. fdG9Y
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id621599564033048\n"
+"help.text"
+msgid "With the cursor in a table, press <keycode>F2</keycode>"
+msgstr ""
+
+#. NdBeD
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id101599562003431\n"
+"help.text"
+msgid "In the Table toolbar, press the <emph>Formula</emph> icon."
+msgstr ""
+
+#. cgzyx
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
"par_id3155142\n"
"help.text"
-msgid "<image id=\"img_id3155148\" src=\"sw/res/sc20556.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155148\">Icon</alt></image>"
+msgid "<image id=\"img_id3155148\" src=\"sw/res/sc20556.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155148\">Formula icon in Table toolbar</alt></image>"
msgstr ""
#. DbZyc
@@ -1357,6 +1375,33 @@ msgctxt ""
msgid "Basic Calculation Functions"
msgstr "Peruslaskutoiminnot"
+#. E8BRA
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id221599495805480\n"
+"help.text"
+msgid "Operation"
+msgstr ""
+
+#. 7KcQ9
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id641599495805481\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. QywKU
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id121599495851064\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
#. 6VYWD
#: 14020000.xhp
msgctxt ""
@@ -1492,23 +1537,41 @@ msgctxt ""
msgid "Basic Functions in the Submenu"
msgstr "Alavalikon perusfunktiot"
-#. KwSwL
+#. xt4uW
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3145185\n"
+"par_id121599495989098\n"
"help.text"
-msgid "Sum"
-msgstr "Summa"
+msgid "Function"
+msgstr ""
+
+#. T7Ybo
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id901599495989100\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 2fE5r
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id501599496006870\n"
+"help.text"
+msgid "Example"
+msgstr ""
-#. 4zUcf
+#. KwSwL
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3155312\n"
+"par_id3145185\n"
"help.text"
-msgid "SUM"
-msgstr "SUM"
+msgid "Sum"
+msgstr "Summa"
#. QD5ax
#: 14020000.xhp
@@ -1537,15 +1600,6 @@ msgctxt ""
msgid "Round"
msgstr "Pyöristä"
-#. gm4AZ
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3145598\n"
-"help.text"
-msgid "ROUND"
-msgstr "ROUND"
-
#. 4a69n
#: 14020000.xhp
msgctxt ""
@@ -1573,15 +1627,6 @@ msgctxt ""
msgid "Percent"
msgstr "Prosenttia"
-#. iqydk
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3155930\n"
-"help.text"
-msgid "PHD"
-msgstr "PHD"
-
#. Ni2B5
#: 14020000.xhp
msgctxt ""
@@ -1609,15 +1654,6 @@ msgctxt ""
msgid "Square Root"
msgstr "Neliöjuuri"
-#. c6nHv
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3153038\n"
-"help.text"
-msgid "SQRT"
-msgstr "SQRT"
-
#. XCbNu
#: 14020000.xhp
msgctxt ""
@@ -1645,15 +1681,6 @@ msgctxt ""
msgid "Power"
msgstr "Potenssi"
-#. cEryt
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3147124\n"
-"help.text"
-msgid "POW"
-msgstr "POW"
-
#. wFRf4
#: 14020000.xhp
msgctxt ""
@@ -1690,6 +1717,33 @@ msgctxt ""
msgid "<ahelp hid=\".\">You can insert various operators in your formula.</ahelp> Choose from the following functions:"
msgstr ""
+#. uCpNp
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id61599496064739\n"
+"help.text"
+msgid "Operator"
+msgstr ""
+
+#. HCUeF
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id611599496064740\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. CNZiw
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id461599496082741\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
#. kN6pM
#: 14020000.xhp
msgctxt ""
@@ -1816,15 +1870,6 @@ msgctxt ""
msgid "Less than or Equal"
msgstr "pienempi tai yhtäsuuri kuin"
-#. tJa3Z
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3153599\n"
-"help.text"
-msgid "LEQ"
-msgstr "LEQ"
-
#. m6G89
#: 14020000.xhp
msgctxt ""
@@ -1852,15 +1897,6 @@ msgctxt ""
msgid "Greater than or Equal"
msgstr "Suurempi tai yhtäsuuri kuin"
-#. ZXFxt
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3153751\n"
-"help.text"
-msgid "GEQ"
-msgstr "GEQ"
-
#. 88BXS
#: 14020000.xhp
msgctxt ""
@@ -1888,15 +1924,6 @@ msgctxt ""
msgid "Less"
msgstr "Pienempi"
-#. 4pUT2
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3150859\n"
-"help.text"
-msgid "L"
-msgstr "L"
-
#. KuMFP
#: 14020000.xhp
msgctxt ""
@@ -1924,15 +1951,6 @@ msgctxt ""
msgid "Greater"
msgstr "Suurempi"
-#. FsDY9
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3150743\n"
-"help.text"
-msgid "G"
-msgstr "G"
-
#. RDYj2
#: 14020000.xhp
msgctxt ""
@@ -1960,15 +1978,6 @@ msgctxt ""
msgid "Boolean Or"
msgstr "Boolen ehto TAI"
-#. EySkK
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3148430\n"
-"help.text"
-msgid "OR"
-msgstr "TAI"
-
#. UfFLs
#: 14020000.xhp
msgctxt ""
@@ -1996,15 +2005,6 @@ msgctxt ""
msgid "Boolean X Or"
msgstr "Boolen ehto XTAI"
-#. FAtfL
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3149457\n"
-"help.text"
-msgid "XOR"
-msgstr "Boolen ehto XTAI"
-
#. vEKy7
#: 14020000.xhp
msgctxt ""
@@ -2032,15 +2032,6 @@ msgctxt ""
msgid "Boolean And"
msgstr "Boolen ehto JA"
-#. gVGd8
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3152948\n"
-"help.text"
-msgid "AND"
-msgstr "JA"
-
#. CPiHF
#: 14020000.xhp
msgctxt ""
@@ -2068,15 +2059,6 @@ msgctxt ""
msgid "Boolean Not"
msgstr "Boolen ehto EI"
-#. uBHtJ
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3153961\n"
-"help.text"
-msgid "NOT"
-msgstr "NOT"
-
#. i4SeE
#: 14020000.xhp
msgctxt ""
@@ -2113,23 +2095,41 @@ msgctxt ""
msgid "<ahelp hid=\".\">You can choose from the following statistical functions:</ahelp>"
msgstr ""
-#. SimgP
+#. AeKzo
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3153176\n"
+"par_id541599496194035\n"
"help.text"
-msgid "Mean"
-msgstr "Keskiarvo"
+msgid "Function"
+msgstr ""
+
+#. fLyDG
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id481599496194036\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. z9BBL
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id331599524563749\n"
+"help.text"
+msgid "Example"
+msgstr ""
-#. qpfti
+#. SimgP
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3154053\n"
+"par_id3153176\n"
"help.text"
-msgid "MEAN"
-msgstr "MEAN"
+msgid "Mean"
+msgstr "Keskiarvo"
#. Gu59Y
#: 14020000.xhp
@@ -2158,15 +2158,6 @@ msgctxt ""
msgid "Minimum Value"
msgstr "Minimi"
-#. WjaSZ
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3155258\n"
-"help.text"
-msgid "MIN"
-msgstr "MIN"
-
#. 9CKG8
#: 14020000.xhp
msgctxt ""
@@ -2194,15 +2185,6 @@ msgctxt ""
msgid "Maximum Value"
msgstr "Maksimi"
-#. QyhWp
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3154016\n"
-"help.text"
-msgid "MAX"
-msgstr "MAX"
-
#. mCGfj
#: 14020000.xhp
msgctxt ""
@@ -2221,41 +2203,113 @@ msgctxt ""
msgid "Example: MAX 10|30|20 displays 30.00"
msgstr "Esimerkki: MAX 10|30|20 näkyy tuloksena 30,00"
-#. SGRGy
+#. 76riF
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id21599557699262\n"
+"help.text"
+msgid "Product"
+msgstr ""
+
+#. 5caRN
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id671599563830630\n"
+"help.text"
+msgid "Calculates the product of the selected cells."
+msgstr ""
+
+#. bwMRb
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id631599557734781\n"
+"help.text"
+msgid "Example: PRODUCT <A2:C2> displays the product of the values in cells A2 to C2"
+msgstr ""
+
+#. DXVgk
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id31599557699262\n"
+"help.text"
+msgid "Count"
+msgstr ""
+
+#. 53YC3
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id331599557734781\n"
+"help.text"
+msgid "Counts the number of non empty cells."
+msgstr ""
+
+#. zj2px
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id141599563739504\n"
+"help.text"
+msgid "Example: COUNT <A2:C2> displays the number of non empty cells in A2 to C2."
+msgstr ""
+
+#. SJ9rR
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
"hd_id3153200\n"
"help.text"
-msgid "Trigonometric Functions"
-msgstr "Trigonometriset funktiot"
+msgid "Functions"
+msgstr ""
-#. DR74v
+#. gRWF7
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
"par_id3153226\n"
"help.text"
-msgid "<ahelp hid=\".\">You can choose from the following trigonometric functions:</ahelp>"
+msgid "<ahelp hid=\".\">You can choose from the following functions:</ahelp>"
msgstr ""
-#. HmrvU
+#. CYmFE
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3145156\n"
+"par_id341599524600306\n"
"help.text"
-msgid "Sine"
-msgstr "Sini"
+msgid "Function"
+msgstr ""
+
+#. zUhbC
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id521599524600307\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. S6FE9
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id831599524616362\n"
+"help.text"
+msgid "Example"
+msgstr ""
-#. eSbMj
+#. HmrvU
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3149507\n"
+"par_id3145156\n"
"help.text"
-msgid "SIN"
-msgstr "SIN"
+msgid "Sine"
+msgstr "Sini"
#. PefeW
#: 14020000.xhp
@@ -2284,15 +2338,6 @@ msgctxt ""
msgid "Cosine"
msgstr "Kosini"
-#. BAQ7F
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3154510\n"
-"help.text"
-msgid "COS"
-msgstr "COS"
-
#. xBop9
#: 14020000.xhp
msgctxt ""
@@ -2320,15 +2365,6 @@ msgctxt ""
msgid "Tangent"
msgstr "Tangentti"
-#. aV8d5
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3151012\n"
-"help.text"
-msgid "TAN"
-msgstr "TAN"
-
#. zaJcG
#: 14020000.xhp
msgctxt ""
@@ -2356,15 +2392,6 @@ msgctxt ""
msgid "Arc Sine"
msgstr "Arkussini"
-#. R6DwT
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3151055\n"
-"help.text"
-msgid "ASIN"
-msgstr "ASIN"
-
#. CVzAA
#: 14020000.xhp
msgctxt ""
@@ -2392,15 +2419,6 @@ msgctxt ""
msgid "Arc Cosine"
msgstr "Arkuskosini"
-#. 7QBGb
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3149728\n"
-"help.text"
-msgid "ACOS"
-msgstr "ACOS"
-
#. ZRyBG
#: 14020000.xhp
msgctxt ""
@@ -2428,15 +2446,6 @@ msgctxt ""
msgid "Arc Tangent"
msgstr "Arkustangentti"
-#. jWGhA
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3147057\n"
-"help.text"
-msgid "ATAN"
-msgstr "ATAN"
-
#. aEs7N
#: 14020000.xhp
msgctxt ""
@@ -2455,6 +2464,60 @@ msgctxt ""
msgid "Example: ATAN 1"
msgstr "Esimerkki: ATAN 1"
+#. bsPu3
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id591599557967519\n"
+"help.text"
+msgid "Absolute value"
+msgstr ""
+
+#. 2tt8G
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id211593557987787\n"
+"help.text"
+msgid "Returns the absolute value of the number."
+msgstr ""
+
+#. jYyUX
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id301599563956612\n"
+"help.text"
+msgid "Example: ABS -34 returns 34"
+msgstr ""
+
+#. zEe8j
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id591599557963519\n"
+"help.text"
+msgid "Sign"
+msgstr ""
+
+#. 8Y984
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id211599557987787\n"
+"help.text"
+msgid "Returns the algebraic sign of the number."
+msgstr ""
+
+#. wDJs9
+#: 14020000.xhp
+msgctxt ""
+"14020000.xhp\n"
+"par_id941599563922458\n"
+"help.text"
+msgid "Example: SIGN -23 returns -1"
+msgstr ""
+
#. sHz7K
#: 14020000.xhp
msgctxt ""
@@ -2473,32 +2536,32 @@ msgctxt ""
msgid "The following document properties are also found under <emph>File - Properties - Statistics</emph>."
msgstr "Seuraavat asiakirjan ominaisuudet on löydettävissä myös sivulta <emph>Tiedosto - Ominaisuudet - Tilastotiedot</emph>."
-#. iGhMX
+#. jxf6E
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3157538\n"
+"par_id901599524662588\n"
"help.text"
-msgid "CHAR"
-msgstr "CHAR"
+msgid "Name"
+msgstr ""
-#. Mehmy
+#. vmA7Y
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3152954\n"
+"par_id741599524662589\n"
"help.text"
-msgid "Number of characters in the document"
-msgstr "Asiakirjan merkkien lukumäärä"
+msgid "Description"
+msgstr ""
-#. SgWXo
+#. Mehmy
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3152982\n"
+"par_id3152954\n"
"help.text"
-msgid "WORD"
-msgstr "WORD"
+msgid "Number of characters in the document"
+msgstr "Asiakirjan merkkien lukumäärä"
#. knEJC
#: 14020000.xhp
@@ -2509,15 +2572,6 @@ msgctxt ""
msgid "Number of words in the document"
msgstr "Asiakirjan sanojen lukumäärä"
-#. sxNfJ
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3152715\n"
-"help.text"
-msgid "PARA"
-msgstr "PARA"
-
#. X5hJF
#: 14020000.xhp
msgctxt ""
@@ -2527,15 +2581,6 @@ msgctxt ""
msgid "Number of paragraphs in the document"
msgstr "Asiakirjan kappaleiden lukumäärä"
-#. ZJA76
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3148453\n"
-"help.text"
-msgid "GRAPH"
-msgstr "GRAPH"
-
#. t5nqK
#: 14020000.xhp
msgctxt ""
@@ -2545,15 +2590,6 @@ msgctxt ""
msgid "Number of graphics in the document"
msgstr "Asiakirjan kuvien lukumäärä"
-#. 95TWA
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3151091\n"
-"help.text"
-msgid "TABLES"
-msgstr "TABLES"
-
#. Bdc8a
#: 14020000.xhp
msgctxt ""
@@ -2563,15 +2599,6 @@ msgctxt ""
msgid "Number of tables in the document"
msgstr "Asiakirjan taulukoiden lukumäärä"
-#. ksnxD
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3151198\n"
-"help.text"
-msgid "OLE"
-msgstr "OLE"
-
#. zJGko
#: 14020000.xhp
msgctxt ""
@@ -2581,15 +2608,6 @@ msgctxt ""
msgid "Number of OLE objects in the document"
msgstr "OLE-objektien lukumäärä asiakirjassa"
-#. vMmnr
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3146903\n"
-"help.text"
-msgid "PAGE"
-msgstr "PAGE"
-
#. QeCMR
#: 14020000.xhp
msgctxt ""
@@ -2608,59 +2626,50 @@ msgctxt ""
msgid "More Defined Values"
msgstr "Muita määritettyjä arvoja"
-#. 7QQ8G
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3153562\n"
-"help.text"
-msgid "PI"
-msgstr "Pii"
-
-#. RogDi
+#. TUJRH
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3147343\n"
+"par_id981599524696609\n"
"help.text"
-msgid "PI"
-msgstr "Pii"
+msgid "Description"
+msgstr ""
-#. Cc3Ec
+#. gnbPF
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3147366\n"
+"par_id101599524696610\n"
"help.text"
-msgid "3.1415..."
-msgstr "3,1415..."
+msgid "Name"
+msgstr ""
-#. SqL4F
+#. FFwhP
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3147393\n"
+"par_id731599524730168\n"
"help.text"
-msgid "Euler's constant"
-msgstr "Neperin luku"
+msgid "Value"
+msgstr ""
-#. 2mpxR
+#. 7QQ8G
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3147462\n"
+"par_id3153562\n"
"help.text"
-msgid "E"
-msgstr "E"
+msgid "PI"
+msgstr "Pii"
-#. 5EfZH
+#. SqL4F
#: 14020000.xhp
msgctxt ""
"14020000.xhp\n"
-"par_id3147485\n"
+"par_id3147393\n"
"help.text"
-msgid "2.71828..."
-msgstr "2,71828..."
+msgid "Euler's constant"
+msgstr "Neperin luku"
#. GGtyF
#: 14020000.xhp
@@ -2671,15 +2680,6 @@ msgctxt ""
msgid "True"
msgstr "Tosi"
-#. CDybB
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3145355\n"
-"help.text"
-msgid "TRUE"
-msgstr "TRUE"
-
#. db4a5
#: 14020000.xhp
msgctxt ""
@@ -2698,24 +2698,6 @@ msgctxt ""
msgid "False"
msgstr "Epätosi"
-#. ynTVk
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3150385\n"
-"help.text"
-msgid "FALSE"
-msgstr "FALSE"
-
-#. xqFYa
-#: 14020000.xhp
-msgctxt ""
-"14020000.xhp\n"
-"par_id3149304\n"
-"help.text"
-msgid "0"
-msgstr "0"
-
#. qx5iP
#: 14030000.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/swriter/guide.po b/source/fi/helpcontent2/source/text/swriter/guide.po
index 2e9c54e7a56..15353fb86b0 100644
--- a/source/fi/helpcontent2/source/text/swriter/guide.po
+++ b/source/fi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:36+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/fi/>\n"
@@ -1213,23 +1213,23 @@ msgctxt ""
msgid "Select the characters."
msgstr "Valitse merkit."
-#. tuRrv
+#. ysWRS
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3155390\n"
"help.text"
-msgid "Choose <emph>Format - Character</emph>."
-msgstr "Valitse <emph>Muotoilu - Fontti</emph>."
+msgid "Choose <menuitem>Format - Character</menuitem>."
+msgstr ""
-#. bWnEV
+#. vv3Ti
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3153665\n"
"help.text"
-msgid "Click the <emph>Background</emph> tab, select the background color."
-msgstr "Napsauta <emph>Tausta</emph> välilehteä ja valitse taustan väri."
+msgid "Click the <emph>Highlighting</emph> tab, select the background color."
+msgstr ""
#. tfUge
#: background.xhp
@@ -1258,14 +1258,14 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph</emph>."
msgstr "Valitse <emph>Muotoilu - Kappale</emph>."
-#. fU3MR
+#. VGGuN
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3151245\n"
"help.text"
-msgid "On the <emph>Background</emph> tab page, select the background color or a background graphic."
-msgstr "Valitse <emph>Tausta</emph>-välilehdeltä taustaväri tai taustakuva."
+msgid "On the <emph>Area</emph> tab page, select the background color or a background graphic."
+msgstr ""
#. k9Qm3
#: background.xhp
@@ -1294,13 +1294,13 @@ msgctxt ""
msgid "Place the cursor in the table in your text document."
msgstr "Aseta kohdistin tekstiasiakirjan taulukkoon."
-#. B96mV
+#. Xa7Yf
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3148664\n"
"help.text"
-msgid "Choose <emph>Table - Properties</emph>."
+msgid "Choose <menuitem>Table - Properties</menuitem>."
msgstr ""
#. wLrJQ
@@ -1357,14 +1357,14 @@ msgctxt ""
msgid "<link href=\"text/shared/02/02160000.xhp\">Highlight Color icon</link>"
msgstr "<link href=\"text/shared/02/02160000.xhp\">Korostus-kuvake</link>"
-#. CYAbX
+#. 7cNgF
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3156180\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\">Background tab page</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Tausta-välilehti\">Tausta-välilehti</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\">Background tab page</link>"
+msgstr ""
#. uaCXb
#: background.xhp
@@ -4930,14 +4930,14 @@ msgctxt ""
msgid "user_email"
msgstr "user_email"
-#. 6X32C
+#. aMdkA
#: fields_userdata.xhp
msgctxt ""
"fields_userdata.xhp\n"
"par_id3147294\n"
"help.text"
-msgid "E-mail address"
-msgstr "Sähköpostiosoite"
+msgid "Email address"
+msgstr ""
#. eGMqy
#: fields_userdata.xhp
@@ -5938,23 +5938,23 @@ msgctxt ""
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=\"Joukkokirjeen luominen\">Joukkokirjeen luominen</link></variable></variable>"
-#. QwnG9
+#. ciKe5
#: form_letters_main.xhp
msgctxt ""
"form_letters_main.xhp\n"
"par_id3150502\n"
"help.text"
-msgid "To create a form letter, you need a text document that contains fields for address data, and an address database. Then you combine or merge the address data and the text document to either print the letters or send them by e-mail."
-msgstr "Joukkokirjeen luomiseksi tarvitaan tekstiasiakirja, jossa on osoitetiedoille kentät ja osoitetietokanta. Sitten osoiteaineisto ja tekstiasiakirja yhdistetään ja tulostetaan kirjeinä tai lähetetään sähköpostiviesteinä."
+msgid "To create a form letter, you need a text document that contains fields for address data, and an address database. Then you combine or merge the address data and the text document to either print the letters or send them by email."
+msgstr ""
-#. QUj9H
+#. DYaLA
#: form_letters_main.xhp
msgctxt ""
"form_letters_main.xhp\n"
"par_id0805200801132382\n"
"help.text"
-msgid "If the document is in HTML format, any embedded or linked images will not be sent with the e-mail."
-msgstr "Jos asiakirja on HTML-muodossa, upotettuja tai linkitettyjä kuvia ei lähetetä sähköpostissa."
+msgid "If the document is in HTML format, any embedded or linked images will not be sent with the email."
+msgstr ""
#. AZu9p
#: form_letters_main.xhp
@@ -7108,14 +7108,14 @@ 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>teksti; piilotettu</bookmark_value><bookmark_value>osat;piilotetut</bookmark_value><bookmark_value>kappaleet;piilotetut</bookmark_value><bookmark_value>piilotettu;teksti ehdoin</bookmark_value>"
-#. qhhbv
+#. Suhpv
#: 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>"
-msgstr "<variable id=\"hidden_text\"><link href=\"text/swriter/guide/hidden_text.xhp\" name=\"Tekstin piilottaminen\">Tekstin piilottaminen</link> </variable>"
+msgid "<variable id=\"hidden_text\"><link href=\"text/swriter/guide/hidden_text.xhp\" name=\"Hiding Text\">Hiding Text</link></variable>"
+msgstr ""
#. W7T3G
#: hidden_text.xhp
@@ -7288,14 +7288,14 @@ msgctxt ""
msgid "Click in the paragraph where you want to add the text."
msgstr "Napsauta kappaletta kohdasta, johon lisäät tekstiä."
-#. BmgKT
+#. snFHJ
#: hidden_text.xhp
msgctxt ""
"hidden_text.xhp\n"
"par_id3154872\n"
"help.text"
-msgid "Choose <emph>Insert - Field - More Fields</emph> and click the <emph>Functions</emph> tab."
-msgstr "Valitse <emph>Lisää - Kentät - Lisää kenttiä</emph> ja siirry <emph>Toiminnot</emph>-välilehdelle."
+msgid "Choose <menuitem>Insert - Field - More Fields</menuitem> and click the <emph>Functions</emph> tab."
+msgstr ""
#. pBHeU
#: hidden_text.xhp
@@ -7324,14 +7324,14 @@ msgctxt ""
msgid "Click <item type=\"menuitem\">Insert</item> and <item type=\"menuitem\">Close</item>."
msgstr "Napsauta <item type=\"menuitem\">Lisää</item> ja sitten <item type=\"menuitem\">Sulje</item>."
-#. gnavJ
+#. phH6k
#: hidden_text.xhp
msgctxt ""
"hidden_text.xhp\n"
"par_id3793450\n"
"help.text"
-msgid "You must enable this feature by removing the check mark from menu <emph>View - Hidden Paragraphs</emph>. When the check mark is set, you cannot hide any paragraph."
-msgstr "Tämä piirre otetaan käyttöön poistamalla merkki valikosta <emph>Näytä - Piilotetut kappaleet</emph>. Kun merkki on käytössä, kappaletta ei voi piilottaa."
+msgid "You must enable this feature by removing the check mark from menu <menuitem>View - Field Hidden Paragraphs</menuitem>. When the check mark is set, you cannot hide any paragraph."
+msgstr ""
#. v2rEL
#: hidden_text.xhp
@@ -7351,14 +7351,14 @@ msgctxt ""
msgid "Select the text that you want to hide in your document."
msgstr "Valitse asiakirjan piilotettava teksti."
-#. FtQDM
+#. Jkvgn
#: hidden_text.xhp
msgctxt ""
"hidden_text.xhp\n"
"par_id3153019\n"
"help.text"
-msgid "Choose <emph>Insert - Section</emph>."
-msgstr "Valitse <emph>Lisää - Osa </emph>."
+msgid "Choose <menuitem>Insert - Section</menuitem>."
+msgstr ""
#. jFn7h
#: hidden_text.xhp
@@ -7459,14 +7459,14 @@ msgctxt ""
msgid "If you have a text that was hidden by defining a condition with a variable, you have several options to display the hidden text. Do one of the following:"
msgstr "Jos teksti on piilotettu määrittelemällä ehto muuttujalle, käyttäjällä on useita mahdollisuuksia saada piilotettu teksti esille. Tehdään jokin seuraavista:"
-#. UeBzL
+#. ZSqFz
#: hidden_text_display.xhp
msgctxt ""
"hidden_text_display.xhp\n"
"par_id3152777\n"
"help.text"
-msgid "Enable the check mark at <emph>View - Hidden Paragraphs</emph>."
-msgstr "Merkitään valikkorivi <emph>Näytä - Piilotetut kappaleet</emph>."
+msgid "Enable the check mark at <menuitem>View - Field Hidden Paragraphs</menuitem>."
+msgstr ""
#. K3xeu
#: hidden_text_display.xhp
@@ -10717,13 +10717,13 @@ msgctxt ""
msgid "You can remove the numbering from a paragraph in a numbered list or change the number that a numbered list starts with."
msgstr "Luetelman yhdestä kappaleesta voidaan poistaa numerointi tai muuttaa numeroa, jolla luetelma alkaa."
-#. Ai3aE
+#. 4arAA
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "If you want numbered headings, use the <menuitem>Tools - Chapter Numbering</menuitem> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
msgstr ""
#. XdFDM
@@ -10789,14 +10789,14 @@ msgctxt ""
msgid "Click anywhere in the numbered list."
msgstr "Napsauta vapaavalintaisesti numeroidussa luettelossa."
-#. dno9v
+#. Nkqj8
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3155895\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering</emph>, and then click the <emph>Options</emph> tab."
-msgstr "Valitse <emph>Muotoilu - Luettelomerkit ja numeroinnit</emph>. Avaa <emph>Asetukset</emph>-välilehti."
+msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem>, and then click the <menuitem>Customize</menuitem> tab."
+msgstr ""
#. UiczS
#: numbering_paras.xhp
@@ -11986,13 +11986,13 @@ msgctxt ""
msgid "To Define a New Page Style"
msgstr "Uuden sivutyylin määrittäminen"
-#. FNMSy
+#. sYAZa
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3153411\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Styles</item>."
+msgid "Choose <menuitem>View - Styles</menuitem>."
msgstr ""
#. dMpbc
@@ -12076,13 +12076,13 @@ msgctxt ""
msgid "Click in the page that you want to apply the page style to."
msgstr "Napsauta sitä sivua, johon sivun tyyliä käytetään."
-#. HSrV2
+#. GC7eD
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3155888\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">View - Styles</item>, and then click the <item type=\"menuitem\">Page Style</item> icon."
+msgid "Choose <menuitem>View - Styles</menuitem>, and then click the <menuitem>Page Style</menuitem> icon."
msgstr ""
#. LbhQq
@@ -12112,14 +12112,14 @@ msgctxt ""
msgid "Click in the document where you want a new page to start."
msgstr "Napsauta asiakirjaa kohdasta, josta uuden sivun pitää alkaa."
-#. BVDyC
+#. VWRGE
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3150210\n"
"help.text"
-msgid "Choose <emph>Insert - Manual Break</emph>."
-msgstr "Valitse <emph>Lisää - Pakotettu vaihto</emph>."
+msgid "Choose <menuitem>Insert - More Breaks - Manual Break</menuitem>."
+msgstr ""
#. zK2Gi
#: pagestyles.xhp
@@ -12130,14 +12130,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Valitse <emph>Sivunvaihto</emph>."
-#. zGQHG
+#. d7hrA
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3150939\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select the page style that you want to apply to the page that follows the manual break."
-msgstr "Valitse <item type=\"menuitem\">Tyyli</item>-ruudussa sivutyyli, jota käytä pakotettua vaihtoa seuraavalle sivulle."
+msgid "In the <menuitem>Page Style</menuitem> box, select the page style that you want to apply to the page that follows the manual break."
+msgstr ""
#. x3Z8D
#: pagestyles.xhp
diff --git a/source/fi/helpcontent2/source/text/swriter/librelogo.po b/source/fi/helpcontent2/source/text/swriter/librelogo.po
index 69c0f56193e..dc3f77d8254 100644
--- a/source/fi/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/fi/helpcontent2/source/text/swriter/librelogo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-08-21 21:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2017-05-07 22:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -2266,14 +2266,14 @@ msgctxt ""
msgid "RANGE"
msgstr "ALUE"
-#. XMADf
+#. EmZPv
#: LibreLogo.xhp
msgctxt ""
"LibreLogo.xhp\n"
"par_2490\n"
"help.text"
-msgid "; Python-like list generation<br/> PRINT RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> PRINT RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]<br/> PRINT RANGE 3 10 3 ; print [3, 6, 9]<br/> <br/> FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]<br/> FORWARD i<br/> LEFT 90<br/> ]<br/>"
-msgstr "; Python-tyylinen listaus<br/> TULOSTA ALUE 10 ; tuloste: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> TULOSTA ALUE 3 10 ; tuloste: [3, 4, 5, 6, 7, 8, 9]<br/> TULOSTA ALUE 3 10 3 ; tuloste: [3, 6, 9]<br/> <br/> JOKAISELLE i ALUE:SSA 10 50 10 [ ; silmukassa [10, 20, 30, 40]<br/> ETEEN i<br/> VASEMMALLE 90<br/> ]<br/>"
+msgid "; Python-like list generation<br/> PRINT LIST RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 3 ; print [3, 6, 9]<br/> <br/> FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]<br/> FORWARD i<br/> LEFT 90<br/> ]<br/>"
+msgstr ""
#. 2849D
#: LibreLogo.xhp
diff --git a/source/fi/helpcontent2/source/text/swriter/menu.po b/source/fi/helpcontent2/source/text/swriter/menu.po
index b5bd655c0c7..e600c49598e 100644
--- a/source/fi/helpcontent2/source/text/swriter/menu.po
+++ b/source/fi/helpcontent2/source/text/swriter/menu.po
@@ -3,16 +3,20 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-05-07 21:35+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"PO-Revision-Date: 2016-05-08 03:44+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462679072.000000\n"
+#. tP5yN
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
@@ -21,6 +25,7 @@ msgctxt ""
msgid "Footnote and Endnote"
msgstr ""
+#. FKmED
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
@@ -29,6 +34,7 @@ msgctxt ""
msgid "<link href=\"text/swriter/menu/insert_footnote_endnote.xhp\">Footnote and Endnote</link>"
msgstr ""
+#. Nn9aD
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
@@ -37,6 +43,7 @@ msgctxt ""
msgid "<ahelp hid=\".\">The menu contains commands to insert a footnote or endnote with or without additional user interaction.</ahelp>"
msgstr ""
+#. DAD9F
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
@@ -45,6 +52,7 @@ msgctxt ""
msgid "Footnote"
msgstr ""
+#. DiRbq
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
@@ -53,6 +61,7 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertFootnote\">Insert a footnote at the current cursor position without a prompt.</ahelp>"
msgstr ""
+#. GsFrA
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
@@ -61,6 +70,7 @@ msgctxt ""
msgid "Endnote"
msgstr ""
+#. bjm2B
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
@@ -69,6 +79,7 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertEndnote\">Insert a endnote at the current cursor position without a prompt.</ahelp>"
msgstr ""
+#. cgFEB
#: insert_footnote_endnote.xhp
msgctxt ""
"insert_footnote_endnote.xhp\n"
@@ -77,6 +88,7 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/04030000.xhp\" name=\"Footnote\">Footnote or Endnote</link>"
msgstr ""
+#. VGa5M
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
@@ -85,6 +97,7 @@ msgctxt ""
msgid "Frame"
msgstr ""
+#. BwzFp
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
@@ -93,6 +106,7 @@ msgctxt ""
msgid "<link href=\"text/swriter/menu/insert_frame.xhp\">Frame</link>"
msgstr ""
+#. LZL3Y
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
@@ -101,6 +115,7 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains both interactive and non-interactive means of inserting a frame.</ahelp>"
msgstr ""
+#. Hq4D6
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
@@ -109,6 +124,7 @@ msgctxt ""
msgid "Frame Interactively"
msgstr ""
+#. NsCBf
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
@@ -117,6 +133,7 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertFrameInteract\">Insert a frame by drawing its shape with the mouse cursor.</ahelp>"
msgstr ""
+#. pF4Ah
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
@@ -125,6 +142,7 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr ""
+#. fC2Td
#: insert_header_footer.xhp
msgctxt ""
"insert_header_footer.xhp\n"
@@ -133,6 +151,7 @@ msgctxt ""
msgid "Header and Footer"
msgstr ""
+#. 4Gubu
#: insert_header_footer.xhp
msgctxt ""
"insert_header_footer.xhp\n"
@@ -141,6 +160,7 @@ msgctxt ""
msgid "<link href=\"text/swriter/menu/insert_header_footer.xhp\">Header and Footer</link>"
msgstr ""
+#. RV7vJ
#: insert_header_footer.xhp
msgctxt ""
"insert_header_footer.xhp\n"
@@ -148,3 +168,84 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">This submenu includes commands to add and remove page headers and footers.</ahelp>"
msgstr ""
+
+#. cSY5i
+#: submenu_more_breaks.xhp
+msgctxt ""
+"submenu_more_breaks.xhp\n"
+"tit\n"
+"help.text"
+msgid "More Breaks (submenu)"
+msgstr ""
+
+#. smw7v
+#: submenu_more_breaks.xhp
+msgctxt ""
+"submenu_more_breaks.xhp\n"
+"hd_id651601651730204\n"
+"help.text"
+msgid "<link href=\"text/swriter/menu/submenu_more_breaks.xhp\" name=\"morebreaks\">More Breaks</link>"
+msgstr ""
+
+#. Dn6VA
+#: submenu_more_breaks.xhp
+msgctxt ""
+"submenu_more_breaks.xhp\n"
+"par_id911601651828340\n"
+"help.text"
+msgid "<ahelp hid=\".\">Submenu with additional line, column, and page breaks</ahelp>"
+msgstr ""
+
+#. t534N
+#: submenu_more_breaks.xhp
+msgctxt ""
+"submenu_more_breaks.xhp\n"
+"hd_id41601652439817\n"
+"help.text"
+msgid "Insert Manual Row Break"
+msgstr ""
+
+#. AEbaf
+#: submenu_more_breaks.xhp
+msgctxt ""
+"submenu_more_breaks.xhp\n"
+"par_id41601888013000\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertlinebreak.svg\" id=\"img_id281601888013000\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381601888013000\">Manual Row Break Icon</alt></image>"
+msgstr ""
+
+#. XBU67
+#: submenu_more_breaks.xhp
+msgctxt ""
+"submenu_more_breaks.xhp\n"
+"hd_id531601652875225\n"
+"help.text"
+msgid "Insert Manual Column Break"
+msgstr ""
+
+#. jBj9E
+#: submenu_more_breaks.xhp
+msgctxt ""
+"submenu_more_breaks.xhp\n"
+"par_id121601888786076\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertcolumnbreak.svg\" id=\"img_id851601888786076\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id881601888786076\">Manual Column Break Icon</alt></image>"
+msgstr ""
+
+#. Mx6DD
+#: submenu_more_breaks.xhp
+msgctxt ""
+"submenu_more_breaks.xhp\n"
+"hd_id281601654787535\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
+msgstr ""
+
+#. XACTx
+#: submenu_more_breaks.xhp
+msgctxt ""
+"submenu_more_breaks.xhp\n"
+"par_id621601889272427\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertbreak.svg\" id=\"img_id461601889272427\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id31601889272427\">Manual Break icon</alt></image>"
+msgstr ""
diff --git a/source/fi/officecfg/registry/data/org/openoffice/Office.po b/source/fi/officecfg/registry/data/org/openoffice/Office.po
index e32d67f5523..df67a177cd1 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-09-30 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/fi/>\n"
@@ -1626,15 +1626,15 @@ msgctxt ""
msgid "Projector optimized"
msgstr "Optimoitu videotykille"
-#. DCsj2
+#. MJBbc
#: PresentationMinimizer.xcu
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Settings.Templates.template1\n"
"Name\n"
"value.text"
-msgid "E-mail (96 DPI): minimize document size for sharing"
-msgstr "Sähköposti (96 DPI): minimoi asiakirjan koko jakamista varten"
+msgid "Email (96 DPI): minimize document size for sharing"
+msgstr ""
#. mzFCD
#: PresentationMinimizer.xcu
@@ -1706,36 +1706,76 @@ msgctxt ""
msgid "Slides"
msgstr "Diat"
-#. R4KGw
+#. Gc3tv
#: PresenterScreen.xcu
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.k.Normal\n"
"Text\n"
"value.text"
+msgid "Pause"
+msgstr ""
+
+#. KHiJj
+#: PresenterScreen.xcu
+msgctxt ""
+"PresenterScreen.xcu\n"
+"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.k.Selected\n"
+"Text\n"
+"value.text"
+msgid "Resume"
+msgstr ""
+
+#. PhNCc
+#: PresenterScreen.xcu
+msgctxt ""
+"PresenterScreen.xcu\n"
+"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.k.MouseOverSelected\n"
+"Text\n"
+"value.text"
+msgid "Resume"
+msgstr ""
+
+#. 9xLAe
+#: PresenterScreen.xcu
+msgctxt ""
+"PresenterScreen.xcu\n"
+"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.l.Normal\n"
+"Text\n"
+"value.text"
msgid "Restart"
-msgstr "Käynnistä uudelleen"
+msgstr ""
-#. mRbFw
+#. zYCFa
#: PresenterScreen.xcu
msgctxt ""
"PresenterScreen.xcu\n"
-"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.m.Normal\n"
+"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.n.Normal\n"
"Text\n"
"value.text"
msgid "Exchange"
-msgstr "Vaihda"
+msgstr ""
-#. f8b9c
+#. hAAEf
#: PresenterScreen.xcu
msgctxt ""
"PresenterScreen.xcu\n"
-"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.o.Normal\n"
+"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.p.Normal\n"
"Text\n"
"value.text"
msgid "Help"
msgstr ""
+#. AqwYo
+#: PresenterScreen.xcu
+msgctxt ""
+"PresenterScreen.xcu\n"
+"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.r.Normal\n"
+"Text\n"
+"value.text"
+msgid "Exit"
+msgstr ""
+
#. DghaJ
#: PresenterScreen.xcu
msgctxt ""
diff --git a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
index 15c1bcc8f5b..f1984a83519 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-22 22:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fi/>\n"
@@ -576,25 +576,25 @@ msgctxt ""
msgid "Freeze ~Rows and Columns"
msgstr "Lukitse rivit ja sarakkeet"
-#. aoeKN
+#. GFfAZ
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:FreezePanesFirstColumn\n"
+"..CalcCommands.UserInterface.Commands..uno:FreezePanesColumn\n"
"Label\n"
"value.text"
msgid "Freeze First Column"
-msgstr "Lukitse ensimmäinen sarake"
+msgstr ""
-#. WL7vy
+#. WDbnU
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:FreezePanesFirstRow\n"
+"..CalcCommands.UserInterface.Commands..uno:FreezePanesRow\n"
"Label\n"
"value.text"
msgid "Freeze First Row"
-msgstr "Lukitse ensimmäinen rivi"
+msgstr ""
#. Qz2C5
#: CalcCommands.xcu
@@ -8426,15 +8426,15 @@ msgctxt ""
msgid "~Hyphenation"
msgstr "~Tavutus"
-#. ysQAB
+#. CQf4G
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:NewRouting\n"
"Label\n"
"value.text"
-msgid "Reset Routing"
-msgstr "Palauta viivojen reititys"
+msgid "Reset line skew"
+msgstr ""
#. avSPK
#: DrawImpressCommands.xcu
@@ -10616,6 +10616,16 @@ msgctxt ""
msgid "Delete Column"
msgstr "Poista sarake"
+#. yTCcA
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:DeleteTable\n"
+"Label\n"
+"value.text"
+msgid "Delete Table"
+msgstr ""
+
#. Lbfd9
#: DrawImpressCommands.xcu
msgctxt ""
@@ -12086,6 +12096,16 @@ msgctxt ""
msgid "Redaction"
msgstr "Sanitointi"
+#. 2ASAw
+#: DrawWindowState.xcu
+msgctxt ""
+"DrawWindowState.xcu\n"
+"..DrawWindowState.UIElements.States.private:resource/toolbar/distributebar\n"
+"UIName\n"
+"value.text"
+msgid "Distribute Selection"
+msgstr ""
+
#. qQQAi
#: Effects.xcu
msgctxt ""
@@ -14117,6 +14137,46 @@ msgctxt ""
msgid "Vertical Figure 8"
msgstr "Pystysuuntainen kahdeksikko"
+#. aXJ67
+#: Effects.xcu
+msgctxt ""
+"Effects.xcu\n"
+"..Effects.UserInterface.Effects.libo-physics-fall-fade-out\n"
+"Label\n"
+"value.text"
+msgid "Fall and fade out"
+msgstr ""
+
+#. cCMGr
+#: Effects.xcu
+msgctxt ""
+"Effects.xcu\n"
+"..Effects.UserInterface.Effects.libo-physics-fall\n"
+"Label\n"
+"value.text"
+msgid "Fall simulated"
+msgstr ""
+
+#. BqK9h
+#: Effects.xcu
+msgctxt ""
+"Effects.xcu\n"
+"..Effects.UserInterface.Effects.libo-physics-shoot-right-return\n"
+"Label\n"
+"value.text"
+msgid "Shoot right and return"
+msgstr ""
+
+#. DHrg4
+#: Effects.xcu
+msgctxt ""
+"Effects.xcu\n"
+"..Effects.UserInterface.Effects.libo-physics-shoot-left-return\n"
+"Label\n"
+"value.text"
+msgid "Shoot left and return"
+msgstr ""
+
#. MZBtm
#: Effects.xcu
msgctxt ""
@@ -20199,6 +20259,16 @@ msgctxt ""
msgid "Apply Style"
msgstr "Käytä tyyliä"
+#. 9gSSN
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:StylesPreview\n"
+"Label\n"
+"value.text"
+msgid "Styles Preview"
+msgstr ""
+
#. Zt2GN
#: GenericCommands.xcu
msgctxt ""
@@ -21649,16 +21719,6 @@ msgctxt ""
msgid "Small capitals"
msgstr "Kapiteelit"
-#. muAvJ
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:DistributeSelection\n"
-"Label\n"
-"value.text"
-msgid "~Distribution..."
-msgstr "V~älien tasaus..."
-
#. G9iMq
#: GenericCommands.xcu
msgctxt ""
@@ -25000,6 +25060,26 @@ msgctxt ""
msgid "User ~Interface"
msgstr "~Käyttöliittymä"
+#. BWJqP
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ToolbarModeUI\n"
+"Label\n"
+"value.text"
+msgid "User ~Interface..."
+msgstr ""
+
+#. i8oSn
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ToolbarModeUI\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Shows a dialog to select the user interface"
+msgstr ""
+
#. uQVBR
#: GenericCommands.xcu
msgctxt ""
@@ -25220,6 +25300,16 @@ msgctxt ""
msgid "Delete Comment"
msgstr "Poista huomautus"
+#. jqGXj
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:DeleteCommentThread\n"
+"Label\n"
+"value.text"
+msgid "Delete Comment Thread"
+msgstr ""
+
#. s3CwY
#: GenericCommands.xcu
msgctxt ""
@@ -25230,6 +25320,16 @@ msgctxt ""
msgid "Resolved"
msgstr ""
+#. FPVwa
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ResolveCommentThread\n"
+"Label\n"
+"value.text"
+msgid "Resolved Thread"
+msgstr ""
+
#. JZHpu
#: GenericCommands.xcu
msgctxt ""
@@ -26250,6 +26350,36 @@ msgctxt ""
msgid "~Edit QR Code..."
msgstr "Muokkaa QR-koodia..."
+#. HhCdv
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:AdditionsDialog\n"
+"Label\n"
+"value.text"
+msgid "~Additions..."
+msgstr ""
+
+#. bFKmR
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:AdditionsDialog\n"
+"ContextLabel\n"
+"value.text"
+msgid "~Additional Extensions..."
+msgstr ""
+
+#. UqjzD
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:AdditionsDialog\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Additional Extensions"
+msgstr ""
+
#. YpeR4
#: GenericCommands.xcu
msgctxt ""
@@ -26300,6 +26430,196 @@ msgctxt ""
msgid "~Edit Chart"
msgstr "Muokkaa kaaviota"
+#. 2YneU
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeSelection\n"
+"Label\n"
+"value.text"
+msgid "~Distribution"
+msgstr ""
+
+#. 2HWrF
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeSelection\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Select at least three objects to distribute"
+msgstr ""
+
+#. zEiFi
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeSelection\n"
+"ContextLabel\n"
+"value.text"
+msgid "Distribute Selection"
+msgstr ""
+
+#. vDkBA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeHorzLeft\n"
+"Label\n"
+"value.text"
+msgid "Distribute Horizontally Left"
+msgstr ""
+
+#. gjrG6
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeHorzLeft\n"
+"ContextLabel\n"
+"value.text"
+msgid "Horizontally ~Left"
+msgstr ""
+
+#. BBazW
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeHorzCenter\n"
+"Label\n"
+"value.text"
+msgid "Distribute Horizontally Center"
+msgstr ""
+
+#. SqFTB
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeHorzCenter\n"
+"ContextLabel\n"
+"value.text"
+msgid "Horizontally ~Center"
+msgstr ""
+
+#. QXntz
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeHorzDistance\n"
+"Label\n"
+"value.text"
+msgid "Distribute Horizontally Spacing"
+msgstr ""
+
+#. GQEXJ
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeHorzDistance\n"
+"ContextLabel\n"
+"value.text"
+msgid "Horizontally ~Spacing"
+msgstr ""
+
+#. Smk23
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeHorzRight\n"
+"Label\n"
+"value.text"
+msgid "Distribute Horizontally Right"
+msgstr ""
+
+#. SDkHd
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeHorzRight\n"
+"ContextLabel\n"
+"value.text"
+msgid "Horizontally ~Right"
+msgstr ""
+
+#. iJB7y
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeVertTop\n"
+"Label\n"
+"value.text"
+msgid "Distribute Vertically Top"
+msgstr ""
+
+#. 9wa7z
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeVertTop\n"
+"ContextLabel\n"
+"value.text"
+msgid "Vertically ~Top"
+msgstr ""
+
+#. FAkxM
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeVertCenter\n"
+"Label\n"
+"value.text"
+msgid "Distribute Vertically Center"
+msgstr ""
+
+#. PaLDT
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeVertCenter\n"
+"ContextLabel\n"
+"value.text"
+msgid "Vertically C~enter"
+msgstr ""
+
+#. jwLqM
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeVertDistance\n"
+"Label\n"
+"value.text"
+msgid "Distribute Vertically Spacing"
+msgstr ""
+
+#. 2RAqA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeVertDistance\n"
+"ContextLabel\n"
+"value.text"
+msgid "Vertically S~pacing"
+msgstr ""
+
+#. ELgnZ
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeVertBottom\n"
+"Label\n"
+"value.text"
+msgid "Distribute Vertically Bottom"
+msgstr ""
+
+#. rankC
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DistributeVertBottom\n"
+"ContextLabel\n"
+"value.text"
+msgid "Vertically ~Bottom"
+msgstr ""
+
#. uaVMn
#: ImpressWindowState.xcu
msgctxt ""
@@ -27070,6 +27390,16 @@ msgctxt ""
msgid "Notebookbar shortcuts"
msgstr "Lehtiöpalkin pikanäppäimet"
+#. Ggdtj
+#: ImpressWindowState.xcu
+msgctxt ""
+"ImpressWindowState.xcu\n"
+"..ImpressWindowState.UIElements.States.private:resource/toolbar/distributebar\n"
+"UIName\n"
+"value.text"
+msgid "Distribute Selection"
+msgstr ""
+
#. tpAhh
#: MathCommands.xcu
msgctxt ""
@@ -27750,16 +28080,6 @@ msgctxt ""
msgid "Properties"
msgstr "Ominaisuudet"
-#. SJ6eu
-#: ReportCommands.xcu
-msgctxt ""
-"ReportCommands.xcu\n"
-".ReportCommands.UserInterface.Commands..uno:Distribution\n"
-"Label\n"
-"value.text"
-msgid "Distribution..."
-msgstr "Välien tasaus..."
-
#. j88fE
#: ReportCommands.xcu
msgctxt ""
@@ -28010,14 +28330,14 @@ msgctxt ""
msgid "Properties"
msgstr "Ominaisuudet"
-#. G2ktQ
+#. hFdN2
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.InspectorDeck\n"
"Title\n"
"value.text"
-msgid "Styles Inspector"
+msgid "Style Inspector"
msgstr ""
#. GEHrf
@@ -28160,14 +28480,14 @@ msgctxt ""
msgid "Character"
msgstr "Teksti"
-#. D7iA6
+#. XwCnW
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.InspectorTextPanel\n"
"Title\n"
"value.text"
-msgid "Character Styles"
+msgid "Style Inspector"
msgstr ""
#. aCGNS
@@ -28230,25 +28550,15 @@ msgctxt ""
msgid "Area"
msgstr "Alue"
-#. yFFqK
-#: Sidebar.xcu
-msgctxt ""
-"Sidebar.xcu\n"
-"..Sidebar.Content.PanelList.GlowPropertyPanel\n"
-"Title\n"
-"value.text"
-msgid "Glow"
-msgstr "Hehku"
-
-#. HhQ3u
+#. DPCAv
#: Sidebar.xcu
msgctxt ""
"Sidebar.xcu\n"
-"..Sidebar.Content.PanelList.SoftEdgePropertyPanel\n"
+"..Sidebar.Content.PanelList.EffectPropertyPanel\n"
"Title\n"
"value.text"
-msgid "Soft Edge"
-msgstr "Reunojen pehmennys"
+msgid "Effect"
+msgstr ""
#. GBNW2
#: Sidebar.xcu
@@ -29631,6 +29941,46 @@ msgctxt ""
msgid "Use the advanced popup menu to create header/footer on the fly"
msgstr "Käytä edistynyttä ponnahdusvalikkoa ylä/alatunnisteen luomiseen lennosta"
+#. jtLiA
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:ShowOutlineContentVisibilityButton\n"
+"Label\n"
+"value.text"
+msgid "Show outline content visibility button"
+msgstr ""
+
+#. 9DzFr
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:ShowOutlineContentVisibilityButton\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Show outline content visibility button"
+msgstr ""
+
+#. C5mHk
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:ShowChangesInMargin\n"
+"Label\n"
+"value.text"
+msgid "Show tracked deletions in margin"
+msgstr ""
+
+#. 3GVrG
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:ShowChangesInMargin\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Show tracked deletions in margin"
+msgstr ""
+
#. QFi68
#: WriterCommands.xcu
msgctxt ""
@@ -31081,25 +31431,25 @@ msgctxt ""
msgid "Clear Direct Formatting"
msgstr "Poista suora muotoilu"
-#. BgACc
+#. ADpEh
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapOff\n"
"Label\n"
"value.text"
-msgid "Wrap Off"
-msgstr "Rivitys poissa käytöstä"
+msgid "None"
+msgstr "Ei mitään"
-#. T5Bpq
+#. SvFa2
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapOn\n"
"Label\n"
"value.text"
-msgid "~Page Wrap"
-msgstr "~Sivun rivitys"
+msgid "~Parallel"
+msgstr "Ympärillä"
#. YFEFD
#: WriterCommands.xcu
@@ -31121,15 +31471,15 @@ msgctxt ""
msgid "Single Page Preview"
msgstr "Yhden sivun esikatselu"
-#. FZ6t2
+#. APPcq
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapThrough\n"
"Label\n"
"value.text"
-msgid "~Wrap Through"
-msgstr "~Rivitä läpi"
+msgid "~Through"
+msgstr "Läpi"
#. SocUA
#: WriterCommands.xcu
@@ -32351,6 +32701,46 @@ msgctxt ""
msgid "Next Page"
msgstr "Seuraava sivu"
+#. pWNTi
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:GoToPrevPage\n"
+"Label\n"
+"value.text"
+msgid "To Previous Page"
+msgstr ""
+
+#. w4B39
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:GoToPrevPage\n"
+"TooltipLabel\n"
+"value.text"
+msgid "To Previous Page"
+msgstr ""
+
+#. qEpQx
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:GoToNextPage\n"
+"Label\n"
+"value.text"
+msgid "To Next Page"
+msgstr ""
+
+#. Nx5Ux
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:GoToNextPage\n"
+"TooltipLabel\n"
+"value.text"
+msgid "To Next Page"
+msgstr ""
+
#. adnz3
#: WriterCommands.xcu
msgctxt ""
@@ -32631,15 +33021,15 @@ msgctxt ""
msgid "To Begin of Next Column"
msgstr "Seuraavan palstan alkuun"
-#. dwE3Z
+#. AMFjV
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapIdeal\n"
"Label\n"
"value.text"
-msgid "~Optimal Page Wrap"
-msgstr "~Optimaalinen sivurivitys"
+msgid "~Optimal"
+msgstr "Optimaalinen"
#. EFP2w
#: WriterCommands.xcu
@@ -32841,15 +33231,15 @@ msgctxt ""
msgid "To Header"
msgstr "Ylätunnisteeseen"
-#. GvpUx
+#. GSRog
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapLeft\n"
"Label\n"
"value.text"
-msgid "Wrap Left"
-msgstr "Rivitä vasemmalle"
+msgid "Before"
+msgstr "Ennen"
#. LADWG
#: WriterCommands.xcu
@@ -32861,15 +33251,15 @@ msgctxt ""
msgid "To Footer"
msgstr "Alatunnisteeseen"
-#. VhCDC
+#. RrpjE
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:WrapRight\n"
"Label\n"
"value.text"
-msgid "Wrap Right"
-msgstr "Rivitä oikealle"
+msgid "After"
+msgstr "Jälkeen"
#. b5mCd
#: WriterCommands.xcu
@@ -34822,6 +35212,36 @@ msgctxt ""
msgid "Protect bookmarks in current document"
msgstr ""
+#. iQC5j
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ToggleOutlineContentVisibility\n"
+"Label\n"
+"value.text"
+msgid "Toggle Outline Content Visibility"
+msgstr ""
+
+#. mByUW
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ToggleOutlineContentVisibility\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Fold or unfold outline content in document"
+msgstr ""
+
+#. qaWQG
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:InspectorDeck\n"
+"Label\n"
+"value.text"
+msgid "Inspector Deck"
+msgstr ""
+
#. joS9f
#: WriterFormWindowState.xcu
msgctxt ""
diff --git a/source/fi/readlicense_oo/docs.po b/source/fi/readlicense_oo/docs.po
index 7568d1a92d7..c52865dc0e9 100644
--- a/source/fi/readlicense_oo/docs.po
+++ b/source/fi/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-05 19:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/fi/>\n"
@@ -223,14 +223,14 @@ msgctxt ""
msgid "FreeType version 2.8.0 or higher;"
msgstr "FreeTypen versio 2.8.0 tai uudempi;"
-#. sJ48T
+#. biUGt
#: readme.xrm
msgctxt ""
"readme.xrm\n"
"s256we\n"
"readmeitem.text"
-msgid "GTK version 3.18 or higher;"
-msgstr "GTK:n versio 3.18 tai uudempi;"
+msgid "GTK version 3.20 or higher;"
+msgstr ""
#. nA9h9
#: readme.xrm
@@ -385,14 +385,14 @@ msgctxt ""
msgid "Right-click within the directory and choose \"Open in Terminal\". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):"
msgstr "Napsauta hiiren oikealla painikkeella kansion sisällä ja valitse \"Avaa päätteessä\". Tämä avaa pääteikkunan. Anna pääteikkunassa seuraava komento (tämä voi vaatia käyttäjätunnukseesi liittyvän salasanan antamisen):"
-#. 5Uuky
+#. DSXFr
#: readme.xrm
msgctxt ""
"readme.xrm\n"
"rpminstall5\n"
"readmeitem.text"
-msgid "For Fedora-based systems: su -c 'yum install *.rpm'"
-msgstr "Fedora-pohjaisissa järjestelmissä: su -c 'yum install *.rpm'"
+msgid "For Fedora-based systems: sudo dnf install *.rpm"
+msgstr "Fedora-pohjaisissa järjestelmissä: sudo dnf install *.rpm"
#. BwvxR
#: readme.xrm
@@ -520,14 +520,14 @@ msgctxt ""
msgid "For Debian/Ubuntu-based systems: sudo dpkg -i *.deb"
msgstr "Debian- ja Ubuntu-järjestelmissä: sudo dpkg -i *.deb"
-#. QMHS2
+#. qhEUW
#: readme.xrm
msgctxt ""
"readme.xrm\n"
"linuxlangpack7\n"
"readmeitem.text"
-msgid "For Fedora-based systems: su -c 'yum install *.rpm'"
-msgstr "Fedora-pohjaisissa järjestelmissä: su -c 'yum install *.rpm'"
+msgid "For Fedora-based systems: su -c 'dnf install *.rpm'"
+msgstr "Fedora-pohjaisissa järjestelmissä: su -c 'dnf install *.rpm'"
#. nrFRB
#: readme.xrm
@@ -709,23 +709,23 @@ msgctxt ""
msgid "By default, ${PRODUCTNAME} favours nice-looking graphics over speed. If you experience slow graphics, switching off 'Tools - Options - ${PRODUCTNAME} - View - Use Anti-Aliasing' may help."
msgstr "Oletusarvoisesti ${PRODUCTNAME} pyrkii laadukkaaseen graafiseen esitykseen, joskus nopeuden kustannuksella. Jos graafiset toimenpiteet tuntuvat hitailta, saattaa asetuksen 'Työkalut - Asetukset - ${PRODUCTNAME} - Näytä - Näyttöfontin viivojen pehmennys' poistaminen käytöstä auttaa."
-#. DkrMU
+#. bbgfk
#: readme.xrm
msgctxt ""
"readme.xrm\n"
"gfh6w1\n"
"readmeitem.text"
-msgid "Problems When Sending Documents as E-mails From ${PRODUCTNAME}"
-msgstr "Ongelmat lähetettäessä asiakirjoja sähköpostina ${PRODUCTNAME}sta"
+msgid "Problems When Sending Documents as Emails From ${PRODUCTNAME}"
+msgstr ""
-#. bwauK
+#. 2yRMH
#: readme.xrm
msgctxt ""
"readme.xrm\n"
"pji76w1\n"
"readmeitem.text"
-msgid "When sending a document via 'File - Send - Document as E-mail' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a> to search the Microsoft Knowledge Base for \"mapi dll\"."
-msgstr "Windows-käyttöjärjestelmissä saattaa ilmaantua ongelmia (ohjelma kaatuu tai jumiutuu) silloin, kun asiakirja yritetään lähettää 'Tiedosto - Lähetä - Asiakirja sähköpostina' tai 'Asiakirja PDF-liitteenä' -toimintojen avulla. Tämä johtuu sähköpostin välitykseen liittyvästä \"MAPI\"-järjestelmätiedostosta Windowsissa. Valitettavasti tämä ongelma ei esiinny vain tietyissä tunnetuissa Windows-versioissa. Lisätietoja aiheesta löytyy <a href=\"https://www.microsoft.com\">https://www.microsoft.com/</a> -sivuilta, hakemalla Microsoft Knowledge Base -tietämyskannasta hakusanaa \"mapi.dll\"."
+msgid "When sending a document via 'File - Send - Document as Email' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a> to search the Microsoft Knowledge Base for \"mapi dll\"."
+msgstr ""
#. a426D
#: readme.xrm
diff --git a/source/fi/sc/messages.po b/source/fi/sc/messages.po
index 3c1c6129441..14b8b42085f 100644
--- a/source/fi/sc/messages.po
+++ b/source/fi/sc/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-20 16:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/scmessages/fi/>\n"
@@ -1477,50 +1477,140 @@ msgctxt "STR_STYLENAME_STANDARD"
msgid "Default Page Style"
msgstr "Oletussivutyyli"
-#. GATGM
+#. TG9pD
#: sc/inc/globstr.hrc:274
+msgctxt "STR_STYLENAME_HEADING"
+msgid "Heading"
+msgstr ""
+
+#. NM7R3
+#: sc/inc/globstr.hrc:275
+msgctxt "STR_STYLENAME_HEADING_1"
+msgid "Heading 1"
+msgstr ""
+
+#. 8XF63
+#: sc/inc/globstr.hrc:276
+msgctxt "STR_STYLENAME_HEADING_2"
+msgid "Heading 2"
+msgstr ""
+
+#. WBuWS
+#: sc/inc/globstr.hrc:277
+msgctxt "STR_STYLENAME_TEXT"
+msgid "Text"
+msgstr ""
+
+#. tMJaD
+#: sc/inc/globstr.hrc:278
+msgctxt "STR_STYLENAME_NOTE"
+msgid "Note"
+msgstr ""
+
+#. Df8xB
+#: sc/inc/globstr.hrc:279
+msgctxt "STR_STYLENAME_FOOTNOTE"
+msgid "Footnote"
+msgstr ""
+
+#. 2hk6H
+#: sc/inc/globstr.hrc:280
+msgctxt "STR_STYLENAME_HYPERLINK"
+msgid "Hyperlink"
+msgstr ""
+
+#. aeksB
+#: sc/inc/globstr.hrc:281
+msgctxt "STR_STYLENAME_STATUS"
+msgid "Status"
+msgstr ""
+
+#. pxAhk
+#: sc/inc/globstr.hrc:282
+msgctxt "STR_STYLENAME_GOOD"
+msgid "Good"
+msgstr ""
+
+#. Ebk8F
+#: sc/inc/globstr.hrc:283
+msgctxt "STR_STYLENAME_NEUTRAL"
+msgid "Neutral"
+msgstr ""
+
+#. FdWhD
+#: sc/inc/globstr.hrc:284
+msgctxt "STR_STYLENAME_BAD"
+msgid "Bad"
+msgstr ""
+
+#. t6f8W
+#: sc/inc/globstr.hrc:285
+msgctxt "STR_STYLENAME_WARNING"
+msgid "Warning"
+msgstr ""
+
+#. 99BgJ
+#: sc/inc/globstr.hrc:286
+msgctxt "STR_STYLENAME_ERROR"
+msgid "Error"
+msgstr ""
+
+#. yGAVF
+#: sc/inc/globstr.hrc:287
+msgctxt "STR_STYLENAME_ACCENT"
+msgid "Accent"
+msgstr ""
+
+#. fw24e
+#: sc/inc/globstr.hrc:288
+msgctxt "STR_STYLENAME_ACCENT_1"
+msgid "Accent 1"
+msgstr ""
+
+#. nHhDx
+#: sc/inc/globstr.hrc:289
+msgctxt "STR_STYLENAME_ACCENT_2"
+msgid "Accent 2"
+msgstr ""
+
+#. NsLP7
+#: sc/inc/globstr.hrc:290
+msgctxt "STR_STYLENAME_ACCENT_3"
+msgid "Accent 3"
+msgstr ""
+
+#. GATGM
+#: sc/inc/globstr.hrc:291
msgctxt "STR_STYLENAME_RESULT"
msgid "Result"
msgstr "Tulos"
#. oKqyC
-#: sc/inc/globstr.hrc:275
+#: sc/inc/globstr.hrc:292
msgctxt "STR_STYLENAME_RESULT1"
msgid "Result2"
msgstr "Tulos2"
-#. HDQGo
-#: sc/inc/globstr.hrc:276
-msgctxt "STR_STYLENAME_HEADLINE"
-msgid "Heading"
-msgstr "Otsikko"
-
-#. kEMEt
-#: sc/inc/globstr.hrc:277
-msgctxt "STR_STYLENAME_HEADLINE1"
-msgid "Heading1"
-msgstr "Otsikko1"
-
#. UjENT
-#: sc/inc/globstr.hrc:278
+#: sc/inc/globstr.hrc:293
msgctxt "STR_STYLENAME_REPORT"
msgid "Report"
msgstr "Raportti"
#. CaeKL
-#: sc/inc/globstr.hrc:279
+#: sc/inc/globstr.hrc:294
msgctxt "STR_THESAURUS_NO_STRING"
msgid "Thesaurus can only be used in text cells!"
msgstr "Synonyymisanastoa voi käyttää vain tekstisoluissa!"
#. EMMdQ
-#: sc/inc/globstr.hrc:280
+#: sc/inc/globstr.hrc:295
msgctxt "STR_SPELLING_BEGIN_TAB"
msgid "Should the spellcheck be continued at the beginning of the current sheet?"
msgstr "Jatketaanko oikolukua tämänhetkisen taulukon alusta?"
#. Qekpw
-#: sc/inc/globstr.hrc:281
+#: sc/inc/globstr.hrc:296
msgctxt "STR_SPELLING_NO_LANG"
msgid ""
"is not available for the thesaurus.\n"
@@ -1531,253 +1621,253 @@ msgstr ""
"Tarkista asennetut osat ja asenna haluttu kieli."
#. 8M6Nx
-#: sc/inc/globstr.hrc:282
+#: sc/inc/globstr.hrc:297
msgctxt "STR_SPELLING_STOP_OK"
msgid "The spellcheck of this sheet has been completed."
msgstr "Tämän taulukon oikoluku on valmis."
#. FjWF9
-#: sc/inc/globstr.hrc:283
+#: sc/inc/globstr.hrc:298
msgctxt "STR_UNDO_INSERT_TAB"
msgid "Insert Sheet"
msgstr "Lisää taulukko"
#. Fs2sv
-#: sc/inc/globstr.hrc:284
+#: sc/inc/globstr.hrc:299
msgctxt "STR_UNDO_DELETE_TAB"
msgid "Delete Sheets"
msgstr "Poista taulukot"
#. YBU5G
-#: sc/inc/globstr.hrc:285
+#: sc/inc/globstr.hrc:300
msgctxt "STR_UNDO_RENAME_TAB"
msgid "Rename Sheet"
msgstr "Nimeä taulukko uudelleen"
#. 8soVt
-#: sc/inc/globstr.hrc:286
+#: sc/inc/globstr.hrc:301
msgctxt "STR_UNDO_SET_TAB_BG_COLOR"
msgid "Color Tab"
msgstr "Välilehden väri"
#. 3DXsa
-#: sc/inc/globstr.hrc:287
+#: sc/inc/globstr.hrc:302
msgctxt "STR_UNDO_SET_MULTI_TAB_BG_COLOR"
msgid "Color Tabs"
msgstr "Välilehtien värit"
#. GZGAm
-#: sc/inc/globstr.hrc:288
+#: sc/inc/globstr.hrc:303
msgctxt "STR_UNDO_MOVE_TAB"
msgid "Move Sheets"
msgstr "Siirrä taulukoita"
#. nuJG9
-#: sc/inc/globstr.hrc:289
+#: sc/inc/globstr.hrc:304
msgctxt "STR_UNDO_COPY_TAB"
msgid "Copy Sheet"
msgstr "Kopioi taulukko"
#. t78di
-#: sc/inc/globstr.hrc:290
+#: sc/inc/globstr.hrc:305
msgctxt "STR_UNDO_APPEND_TAB"
msgid "Append sheet"
msgstr "Liitä taulukko"
#. ziE7i
-#: sc/inc/globstr.hrc:291
+#: sc/inc/globstr.hrc:306
msgctxt "STR_UNDO_SHOWTAB"
msgid "Show Sheet"
msgstr "Näytä taulukko"
#. 6YkTf
-#: sc/inc/globstr.hrc:292
+#: sc/inc/globstr.hrc:307
msgctxt "STR_UNDO_SHOWTABS"
msgid "Show Sheets"
msgstr "Näytä taulukot"
#. RpgBp
-#: sc/inc/globstr.hrc:293
+#: sc/inc/globstr.hrc:308
msgctxt "STR_UNDO_HIDETAB"
msgid "Hide sheet"
msgstr "Piilota taulukko"
#. rsG7G
-#: sc/inc/globstr.hrc:294
+#: sc/inc/globstr.hrc:309
msgctxt "STR_UNDO_HIDETABS"
msgid "Hide sheets"
msgstr "Piilota taulukot"
#. dcXQA
-#: sc/inc/globstr.hrc:295
+#: sc/inc/globstr.hrc:310
msgctxt "STR_UNDO_TAB_RTL"
msgid "Flip sheet"
msgstr "Käännä taulukko"
#. MM449
-#: sc/inc/globstr.hrc:296
+#: sc/inc/globstr.hrc:311
msgctxt "STR_ABSREFLOST"
msgid "The new table contains absolute references to other tables which may be incorrect!"
msgstr "Uusi taulukko sisältää toisiin taulukoihin kohdistuvia absoluuttisia viitteitä, jotka saattavat olla virheellisiä!"
#. HbvvQ
-#: sc/inc/globstr.hrc:297
+#: sc/inc/globstr.hrc:312
msgctxt "STR_NAMECONFLICT"
msgid "Due to identical names, an existing range name in the destination document has been altered!"
msgstr "Identtisten nimien takia kohdeasiakirjassa ollutta alueen nimeä on muutettu!"
#. R4PSM
-#: sc/inc/globstr.hrc:298
+#: sc/inc/globstr.hrc:313
msgctxt "STR_ERR_AUTOFILTER"
msgid "AutoFilter not possible"
msgstr "Automaattinen suodatus ei ole mahdollista"
#. G4ADH
-#: sc/inc/globstr.hrc:299
+#: sc/inc/globstr.hrc:314
msgctxt "STR_CREATENAME_REPLACE"
msgid "Replace existing definition of #?"
msgstr "Korvataanko kohteen # tämänhetkinen määritelmä?"
#. QCY4T
-#: sc/inc/globstr.hrc:300
+#: sc/inc/globstr.hrc:315
msgctxt "STR_CREATENAME_MARKERR"
msgid "Invalid selection for range names"
msgstr "Virheellinen aluenimien valinta"
#. DALzt
-#: sc/inc/globstr.hrc:301
+#: sc/inc/globstr.hrc:316
msgctxt "STR_CONSOLIDATE_ERR1"
msgid "References can not be inserted above the source data."
msgstr "Viitteitä ei voi lisätä lähdetietojen yläpuolelle."
#. GeFnL
-#: sc/inc/globstr.hrc:302
+#: sc/inc/globstr.hrc:317
msgctxt "STR_SCENARIO_NOTFOUND"
msgid "Scenario not found"
msgstr "Skenaariota ei löytynyt"
#. h9AuX
-#: sc/inc/globstr.hrc:303
+#: sc/inc/globstr.hrc:318
msgctxt "STR_QUERY_DELENTRY"
msgid "Do you really want to delete the entry #?"
msgstr "Haluatko varmasti poistaa merkinnän #?"
#. dcGSL
-#: sc/inc/globstr.hrc:304
+#: sc/inc/globstr.hrc:319
msgctxt "STR_VOBJ_OBJECT"
msgid "Objects/Images"
msgstr "Objektit/kuvat"
#. cYXCQ
-#: sc/inc/globstr.hrc:305
+#: sc/inc/globstr.hrc:320
msgctxt "STR_VOBJ_CHART"
msgid "Charts"
msgstr "Kaaviot"
#. juLxa
-#: sc/inc/globstr.hrc:306
+#: sc/inc/globstr.hrc:321
msgctxt "STR_VOBJ_DRAWINGS"
msgid "Drawing Objects"
msgstr "Piirrosobjektit"
#. JGftp
-#: sc/inc/globstr.hrc:307
+#: sc/inc/globstr.hrc:322
msgctxt "STR_VOBJ_MODE_SHOW"
msgid "Show"
msgstr "Näytä"
#. BmQGg
-#: sc/inc/globstr.hrc:308
+#: sc/inc/globstr.hrc:323
msgctxt "STR_VOBJ_MODE_HIDE"
msgid "Hide"
msgstr "Piilota"
#. HKpNF
-#: sc/inc/globstr.hrc:309
+#: sc/inc/globstr.hrc:324
msgctxt "STR_SCATTR_PAGE_TOPDOWN"
msgid "Top to bottom"
msgstr "Ylhäältä alas"
#. 2hJDB
-#: sc/inc/globstr.hrc:310
+#: sc/inc/globstr.hrc:325
msgctxt "STR_SCATTR_PAGE_LEFTRIGHT"
msgid "Left-to-right"
msgstr "Vasemmalta oikealle"
#. 3Appb
-#: sc/inc/globstr.hrc:311
+#: sc/inc/globstr.hrc:326
msgctxt "STR_SCATTR_PAGE_NOTES"
msgid "Comments"
msgstr "Huomautukset"
#. ZhGSA
-#: sc/inc/globstr.hrc:312
+#: sc/inc/globstr.hrc:327
msgctxt "STR_SCATTR_PAGE_GRID"
msgid "Grid"
msgstr "Ruudukko"
#. Grh6n
-#: sc/inc/globstr.hrc:313
+#: sc/inc/globstr.hrc:328
msgctxt "STR_SCATTR_PAGE_HEADERS"
msgid "Row & Column Headers"
msgstr "Rivi- ja saraketunnisteet"
#. opCNb
-#: sc/inc/globstr.hrc:314
+#: sc/inc/globstr.hrc:329
msgctxt "STR_SCATTR_PAGE_FORMULAS"
msgid "Formulas"
msgstr "Kaavat"
#. sdJqo
-#: sc/inc/globstr.hrc:315
+#: sc/inc/globstr.hrc:330
msgctxt "STR_SCATTR_PAGE_NULLVALS"
msgid "Zero Values"
msgstr "Nolla-arvot"
#. FJ89A
-#: sc/inc/globstr.hrc:316
+#: sc/inc/globstr.hrc:331
msgctxt "STR_SCATTR_PAGE_PRINTDIR"
msgid "Print direction"
msgstr "Tulostussuunta"
#. oU39x
-#: sc/inc/globstr.hrc:317
+#: sc/inc/globstr.hrc:332
msgctxt "STR_SCATTR_PAGE_FIRSTPAGENO"
msgid "First page number"
msgstr "1. sivun numero"
#. 98ZSn
-#: sc/inc/globstr.hrc:318
+#: sc/inc/globstr.hrc:333
msgctxt "STR_SCATTR_PAGE_SCALE"
msgid "Reduce/enlarge printout"
msgstr "Pienennä/suurenna tulostetta"
#. CXqDX
-#: sc/inc/globstr.hrc:319
+#: sc/inc/globstr.hrc:334
msgctxt "STR_SCATTR_PAGE_SCALETOPAGES"
msgid "Fit print range(s) on number of pages"
msgstr "Sovita tulostusalue sivumäärän mukaan"
#. kDAZk
-#: sc/inc/globstr.hrc:320
+#: sc/inc/globstr.hrc:335
msgctxt "STR_SCATTR_PAGE_SCALETO"
msgid "Fit print range(s) to width/height"
msgstr "Sovita tulostusalue leveyden ja korkeuden mukaan"
#. fnrU6
-#: sc/inc/globstr.hrc:321
+#: sc/inc/globstr.hrc:336
msgctxt "STR_SCATTR_PAGE_SCALE_WIDTH"
msgid "Width"
msgstr "Leveys"
#. DCDgF
-#: sc/inc/globstr.hrc:322
+#: sc/inc/globstr.hrc:337
msgctxt "STR_SCATTR_PAGE_SCALE_HEIGHT"
msgid "Height"
msgstr "Korkeus"
#. yACgJ
-#: sc/inc/globstr.hrc:323
+#: sc/inc/globstr.hrc:338
msgctxt "STR_SCATTR_PAGE_SCALE_PAGES"
msgid "One page"
msgid_plural "%1 pages"
@@ -1785,73 +1875,73 @@ msgstr[0] "Yksi sivu"
msgstr[1] "%1 sivua"
#. CHEgx
-#: sc/inc/globstr.hrc:324
+#: sc/inc/globstr.hrc:339
msgctxt "STR_SCATTR_PAGE_SCALE_AUTO"
msgid "automatic"
msgstr "automaattinen"
#. ErVas
-#: sc/inc/globstr.hrc:325
+#: sc/inc/globstr.hrc:340
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Tilastotiedot"
#. aLfAE
-#: sc/inc/globstr.hrc:326
+#: sc/inc/globstr.hrc:341
msgctxt "STR_LINKERROR"
msgid "The link could not be updated."
msgstr "Linkkiä ei voitu päivittää."
#. HBYTF
-#: sc/inc/globstr.hrc:327
+#: sc/inc/globstr.hrc:342
msgctxt "STR_LINKERRORFILE"
msgid "File:"
msgstr "Tiedosto:"
#. aAxau
-#: sc/inc/globstr.hrc:328
+#: sc/inc/globstr.hrc:343
msgctxt "STR_LINKERRORTAB"
msgid "Sheet:"
msgstr "Taulukko:"
#. y7JBD
-#: sc/inc/globstr.hrc:329
+#: sc/inc/globstr.hrc:344
msgctxt "STR_OVERVIEW"
msgid "Overview"
msgstr "Tiivistelmä"
#. HFCYz
-#: sc/inc/globstr.hrc:330
+#: sc/inc/globstr.hrc:345
msgctxt "STR_DOC_INFO"
msgid "Doc.Information"
msgstr "Asiakirjatiedot"
#. BPqDo
-#: sc/inc/globstr.hrc:331
+#: sc/inc/globstr.hrc:346
msgctxt "STR_DOC_PRINTED"
msgid "Printed"
msgstr "Tulostettu"
#. XzDAC
-#: sc/inc/globstr.hrc:332
+#: sc/inc/globstr.hrc:347
msgctxt "STR_BY"
msgid "by"
msgstr "Tekijä"
#. JzK2B
-#: sc/inc/globstr.hrc:333
+#: sc/inc/globstr.hrc:348
msgctxt "STR_ON"
msgid "on"
msgstr "käytössä"
#. RryEg
-#: sc/inc/globstr.hrc:334
+#: sc/inc/globstr.hrc:349
msgctxt "STR_RELOAD_TABLES"
msgid "Automatic update of external links has been disabled."
msgstr "Ulkoisten linkkien automaattinen päivitys on poistettu käytöstä."
#. qkto7
-#: sc/inc/globstr.hrc:335
+#: sc/inc/globstr.hrc:350
msgctxt "STR_REIMPORT_AFTER_LOAD"
msgid ""
"This file contains queries. The results of these queries were not saved.\n"
@@ -1861,7 +1951,7 @@ msgstr ""
"Haluatko suorittaa kyselyt uudelleen?"
#. HrjKf
-#: sc/inc/globstr.hrc:336
+#: sc/inc/globstr.hrc:351
msgctxt "STR_INSERT_FULL"
msgid ""
"Filled cells cannot be shifted\n"
@@ -1871,31 +1961,31 @@ msgstr ""
"taulukon ulkopuolelle."
#. 9BK9C
-#: sc/inc/globstr.hrc:337
+#: sc/inc/globstr.hrc:352
msgctxt "STR_TABINSERT_ERROR"
msgid "The table could not be inserted."
msgstr "Taulukkoa ei voitu lisätä."
#. SEwGE
-#: sc/inc/globstr.hrc:338
+#: sc/inc/globstr.hrc:353
msgctxt "STR_TABREMOVE_ERROR"
msgid "The sheets could not be deleted."
msgstr "Taulukoita ei voitu poistaa."
#. SQGAE
-#: sc/inc/globstr.hrc:339
+#: sc/inc/globstr.hrc:354
msgctxt "STR_PASTE_ERROR"
msgid "The contents of the clipboard could not be pasted."
msgstr "Leikepöydän sisältöä ei voitu liittää."
#. pBHSD
-#: sc/inc/globstr.hrc:340
+#: sc/inc/globstr.hrc:355
msgctxt "STR_PASTE_FULL"
msgid "There is not enough space on the sheet to insert here."
msgstr "Taulukossa ei ole tarpeeksi tilaa tähän lisäämiseen."
#. inbya
-#: sc/inc/globstr.hrc:341
+#: sc/inc/globstr.hrc:356
msgctxt "STR_PASTE_BIGGER"
msgid ""
"The content of the clipboard is bigger than the range selected.\n"
@@ -1905,61 +1995,61 @@ msgstr ""
"Haluatko kuitenkin lisätä sen?"
#. 2Afxk
-#: sc/inc/globstr.hrc:342
+#: sc/inc/globstr.hrc:357
msgctxt "STR_ERR_NOREF"
msgid "No cell references are found in the selected cells."
msgstr "Valituista soluista ei löytynyt soluviittauksia."
#. vKDsp
-#: sc/inc/globstr.hrc:343
+#: sc/inc/globstr.hrc:358
msgctxt "STR_GRAPHICNAME"
msgid "Image"
msgstr "Kuva"
#. PKj5e
-#: sc/inc/globstr.hrc:344
+#: sc/inc/globstr.hrc:359
msgctxt "STR_INVALIDNAME"
msgid "Invalid name."
msgstr "Virheellinen nimi."
#. 838A7
-#: sc/inc/globstr.hrc:345
+#: sc/inc/globstr.hrc:360
msgctxt "STR_VALID_MACRONOTFOUND"
msgid "Selected macro not found."
msgstr "Valittua makroa ei löydy."
#. E5jbk
-#: sc/inc/globstr.hrc:346
+#: sc/inc/globstr.hrc:361
msgctxt "STR_VALID_DEFERROR"
msgid "Invalid value."
msgstr "Virheellinen arvo."
#. SREQT
-#: sc/inc/globstr.hrc:347
+#: sc/inc/globstr.hrc:362
msgctxt "STR_PROGRESS_CALCULATING"
msgid "calculating"
msgstr "Lasketaan"
#. EDA4C
-#: sc/inc/globstr.hrc:348
+#: sc/inc/globstr.hrc:363
msgctxt "STR_PROGRESS_SORTING"
msgid "sorting"
msgstr "Lajitellaan"
#. yedmq
-#: sc/inc/globstr.hrc:349
+#: sc/inc/globstr.hrc:364
msgctxt "STR_PROGRESS_HEIGHTING"
msgid "Adapt row height"
msgstr "Sovitetaan rivikorkeutta"
#. G33by
-#: sc/inc/globstr.hrc:350
+#: sc/inc/globstr.hrc:365
msgctxt "STR_PROGRESS_COMPARING"
msgid "Compare #"
msgstr "Vertaa #"
#. dU3Gk
-#: sc/inc/globstr.hrc:351
+#: sc/inc/globstr.hrc:366
msgctxt "STR_DETINVALID_OVERFLOW"
msgid ""
"The maximum number of invalid cells has been exceeded.\n"
@@ -1969,158 +2059,158 @@ msgstr ""
"Kaikkia virheellisiä soluja ei ole merkitty."
#. pH5Pf
-#: sc/inc/globstr.hrc:352
+#: sc/inc/globstr.hrc:367
msgctxt "STR_QUICKHELP_DELETE"
msgid "Delete contents"
msgstr "Poista sisältö"
#. uJtdh
-#: sc/inc/globstr.hrc:353
+#: sc/inc/globstr.hrc:368
msgctxt "STR_QUICKHELP_REF"
msgid "%1 R x %2 C"
msgstr "%1 R x %2 S"
#. NJpDi
-#: sc/inc/globstr.hrc:354
+#: sc/inc/globstr.hrc:369
msgctxt "STR_FUNCTIONLIST_MORE"
msgid "More..."
msgstr "Lisää..."
#. mnF7F
-#: sc/inc/globstr.hrc:355
+#: sc/inc/globstr.hrc:370
msgctxt "STR_ERR_INVALID_AREA"
msgid "Invalid range"
msgstr "Virheellinen alue"
#. P2txj
-#: sc/inc/globstr.hrc:356
+#: sc/inc/globstr.hrc:371
msgctxt "STR_CHARTTITLE"
msgid "Chart Title"
msgstr ""
#. yyY6k
-#: sc/inc/globstr.hrc:357
+#: sc/inc/globstr.hrc:372
msgctxt "STR_AXISTITLE"
msgid "Axis Title"
msgstr ""
#. ANABc
#. Templates for data pilot tables.
-#: sc/inc/globstr.hrc:359
+#: sc/inc/globstr.hrc:374
msgctxt "STR_PIVOT_STYLE_INNER"
msgid "Pivot Table Value"
msgstr "Pivot-taulukon arvo"
#. iaSss
-#: sc/inc/globstr.hrc:360
+#: sc/inc/globstr.hrc:375
msgctxt "STR_PIVOT_STYLE_RESULT"
msgid "Pivot Table Result"
msgstr "Pivot-taulukon tulokset"
#. DJhBL
-#: sc/inc/globstr.hrc:361
+#: sc/inc/globstr.hrc:376
msgctxt "STR_PIVOT_STYLE_CATEGORY"
msgid "Pivot Table Category"
msgstr "Pivot-taulukon luokka"
#. bTwc9
-#: sc/inc/globstr.hrc:362
+#: sc/inc/globstr.hrc:377
msgctxt "STR_PIVOT_STYLE_TITLE"
msgid "Pivot Table Title"
msgstr "Pivot-taulukon otsikko"
#. zuSeA
-#: sc/inc/globstr.hrc:363
+#: sc/inc/globstr.hrc:378
msgctxt "STR_PIVOT_STYLE_FIELDNAME"
msgid "Pivot Table Field"
msgstr "Pivot-taulukon kenttä"
#. Spguu
-#: sc/inc/globstr.hrc:364
+#: sc/inc/globstr.hrc:379
msgctxt "STR_PIVOT_STYLE_TOP"
msgid "Pivot Table Corner"
msgstr "Pivot-taulukon kulma"
#. GyuCe
-#: sc/inc/globstr.hrc:365
+#: sc/inc/globstr.hrc:380
msgctxt "STR_OPERATION_FILTER"
msgid "Filter"
msgstr "Suodatus"
#. xg5AD
-#: sc/inc/globstr.hrc:366
+#: sc/inc/globstr.hrc:381
msgctxt "STR_OPERATION_SORT"
msgid "Sort"
msgstr "Lajittele"
#. dCgtR
-#: sc/inc/globstr.hrc:367
+#: sc/inc/globstr.hrc:382
msgctxt "STR_OPERATION_SUBTOTAL"
msgid "Subtotals"
msgstr "Välisummat"
#. jhD4q
-#: sc/inc/globstr.hrc:368
+#: sc/inc/globstr.hrc:383
msgctxt "STR_OPERATION_NONE"
msgid "None"
msgstr "Ei mitään"
#. FVErn
-#: sc/inc/globstr.hrc:369
+#: sc/inc/globstr.hrc:384
msgctxt "STR_IMPORT_REPLACE"
msgid "Do you want to replace the contents of #?"
msgstr "Haluatko korvata kohteen # sisällön?"
#. DyCp4
-#: sc/inc/globstr.hrc:370
+#: sc/inc/globstr.hrc:385
msgctxt "STR_TIP_WIDTH"
msgid "Width:"
msgstr "Leveys:"
#. oAhVm
-#: sc/inc/globstr.hrc:371
+#: sc/inc/globstr.hrc:386
msgctxt "STR_TIP_HEIGHT"
msgid "Height:"
msgstr "Korkeus:"
#. Z2kXt
-#: sc/inc/globstr.hrc:372
+#: sc/inc/globstr.hrc:387
msgctxt "STR_TIP_HIDE"
msgid "Hide"
msgstr "Piilota"
#. b6BCY
-#: sc/inc/globstr.hrc:373
+#: sc/inc/globstr.hrc:388
msgctxt "STR_CHANGED_BLANK"
msgid "<empty>"
msgstr "<tyhjä>"
#. AVy6m
-#: sc/inc/globstr.hrc:374
+#: sc/inc/globstr.hrc:389
msgctxt "STR_CHANGED_CELL"
msgid "Cell #1 changed from '#2' to '#3'"
msgstr "Solu #1 muutettu kohteesta '#2' kohteeseen '#3'"
#. E7fW7
-#: sc/inc/globstr.hrc:375
+#: sc/inc/globstr.hrc:390
msgctxt "STR_CHANGED_INSERT"
msgid "#1 inserted"
msgstr "#1 lisätty"
#. GcX7C
-#: sc/inc/globstr.hrc:376
+#: sc/inc/globstr.hrc:391
msgctxt "STR_CHANGED_DELETE"
msgid "#1 deleted"
msgstr "#1 poistettu"
#. 7X7By
-#: sc/inc/globstr.hrc:377
+#: sc/inc/globstr.hrc:392
msgctxt "STR_CHANGED_MOVE"
msgid "Range moved from #1 to #2"
msgstr "Alue siirretty kohteesta #1 kohteeseen #2"
#. BkjBK
-#: sc/inc/globstr.hrc:378
+#: sc/inc/globstr.hrc:393
msgctxt "STR_END_REDLINING"
msgid ""
"This action will exit the change recording mode.\n"
@@ -2136,139 +2226,139 @@ msgstr ""
"\n"
#. ooAfe
-#: sc/inc/globstr.hrc:379
+#: sc/inc/globstr.hrc:394
msgctxt "STR_CLOSE_ERROR_LINK"
msgid "The document can not be closed while a link is being updated."
msgstr "Asiakirjaa ei voi sulkea, kun linkkiä päivitetään."
#. PJdNn
-#: sc/inc/globstr.hrc:380
+#: sc/inc/globstr.hrc:395
msgctxt "STR_UNDO_RESIZEMATRIX"
msgid "Adapt array area"
msgstr "Sovita matriisialue"
#. nZEgk
-#: sc/inc/globstr.hrc:381
+#: sc/inc/globstr.hrc:396
msgctxt "STR_TIP_RESIZEMATRIX"
msgid "Array formula %1 R x %2 C"
msgstr "Matriisikaava %1 R x %2 S"
#. nkxuG
-#: sc/inc/globstr.hrc:382
+#: sc/inc/globstr.hrc:397
msgctxt "STR_UNDO_HANGULHANJA"
msgid "Hangul/Hanja Conversion"
msgstr "Hangul/hanja-muunnos"
#. 9XdEk
-#: sc/inc/globstr.hrc:383
+#: sc/inc/globstr.hrc:398
msgctxt "STR_NAME_INPUT_CELL"
msgid "Select Cell"
msgstr "Valitse solu"
#. AkoV3
-#: sc/inc/globstr.hrc:384
+#: sc/inc/globstr.hrc:399
msgctxt "STR_NAME_INPUT_RANGE"
msgid "Select Range"
msgstr "Valitse alue"
#. U2Jow
-#: sc/inc/globstr.hrc:385
+#: sc/inc/globstr.hrc:400
msgctxt "STR_NAME_INPUT_DBRANGE"
msgid "Select Database Range"
msgstr "Valitse tietokanta-alue"
#. jfJtb
-#: sc/inc/globstr.hrc:386
+#: sc/inc/globstr.hrc:401
msgctxt "STR_NAME_INPUT_ROW"
msgid "Go To Row"
msgstr "Siirry riville"
#. fF3Qb
-#: sc/inc/globstr.hrc:387
+#: sc/inc/globstr.hrc:402
msgctxt "STR_NAME_INPUT_SHEET"
msgid "Go To Sheet"
msgstr "Siirry taulukkoon"
#. xEAo2
-#: sc/inc/globstr.hrc:388
+#: sc/inc/globstr.hrc:403
msgctxt "STR_NAME_INPUT_DEFINE"
msgid "Define Name for Range"
msgstr "Anna alueelle nimi"
#. Jee9b
-#: sc/inc/globstr.hrc:389
+#: sc/inc/globstr.hrc:404
msgctxt "STR_NAME_ERROR_SELECTION"
msgid "The selection needs to be rectangular in order to name it."
msgstr "Valinnan tulee olla suorakulmainen, jotta sen voi nimetä."
#. 3AECm
-#: sc/inc/globstr.hrc:390
+#: sc/inc/globstr.hrc:405
msgctxt "STR_NAME_ERROR_NAME"
msgid "You must enter a valid reference or type a valid name for the selected range."
msgstr "Valitulle alueelle pitää antaa kelvollinen viite tai nimi."
#. UCv9m
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:406
msgctxt "STR_CHANGED_MOVE_REJECTION_WARNING"
msgid "WARNING: This action may have resulted in unintended changes to cell references in formulas."
msgstr "VAROITUS: Tämä toiminto on saattanut muuttaa tahattomasti soluviitteitä kaavoissa."
#. A7cxX
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:407
msgctxt "STR_CHANGED_DELETE_REJECTION_WARNING"
msgid "WARNING: This action may have resulted in references to the deleted area not being restored."
msgstr "VAROITUS: Tämä toiminto on saattanut jättää viitteet poistettuun alueeseen palauttamatta."
#. 7kcLL
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:408
msgctxt "STR_UNDO_CHINESE_TRANSLATION"
msgid "Chinese conversion"
msgstr "Kiinan muunnos"
#. Ah2Ez
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:409
msgctxt "STR_ERR_DATAPILOT_INPUT"
msgid "You cannot change this part of the pivot table."
msgstr "Tätä pivot-taulukon osaa ei voi muuttaa."
#. aqFcw
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:410
msgctxt "STR_RECALC_MANUAL"
msgid "Manual"
msgstr "Manuaalinen"
#. SEHZ2
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:411
msgctxt "STR_RECALC_AUTO"
msgid "Automatic"
msgstr "Automaattinen"
#. G4way
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:412
msgctxt "STR_ERR_LONG_NESTED_ARRAY"
msgid "Nested arrays are not supported."
msgstr "Sisäkkäisiä taulukoita ei tueta."
#. uPhvo
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:413
msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
msgid "Unsupported inline array content."
msgstr "Upotetun taulukon sisältöä ei tueta."
#. n5PAG
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:414
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Teksti sarakkeiksi"
#. VWhZ3
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:415
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Laskentataulukkoa on päivitetty muiden käyttäjien tekemillä muutoksilla."
#. RzxS3
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:416
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -2280,7 +2370,7 @@ msgstr ""
"Haluatko jatkaa?"
#. hRFbV
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:417
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -2292,7 +2382,7 @@ msgstr ""
"Haluatko jatkaa?"
#. 6JJGG
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:418
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -2304,7 +2394,7 @@ msgstr ""
"Haluatko jatkaa?"
#. wQu4c
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:419
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -2316,7 +2406,7 @@ msgstr ""
"Tallenna laskentataulukko erilliseen tiedostoon ja siirrä muutoksesi jaettuun taulukkoon manuaalisesti."
#. Acijp
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:420
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -2328,7 +2418,7 @@ msgstr ""
"Lukitun tiedoston jaettua muokkaustilaa ei voi ottaa pois käytöstä. Kokeile myöhemmin uudestaan."
#. tiq8b
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:421
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -2340,169 +2430,169 @@ msgstr ""
"Yritä tallentaa muutoksesi myöhemmin uudestaan."
#. 67jJW
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:422
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Tuntematon käyttäjä"
#. x3xuD
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:423
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Automaattinen muoto"
#. c7YGt
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:424
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Suorakulmio"
#. 9jDFZ
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:425
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Viiva"
#. VqTJj
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:426
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovaali"
#. e3mpj
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:427
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Painike"
#. gkBcL
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:428
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Valintaruutu"
#. iivnN
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:429
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Valintapainike"
#. PpNjE
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:430
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Otsake"
#. 42WD2
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:431
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Luetteloruutu"
#. avBTK
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:432
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Ryhmävalinta"
#. iSqdH
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:433
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Alasvetovalikko"
#. cs76P
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:434
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Selaaja"
#. j8Dp2
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:435
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Vierityspalkki"
#. 7iaCJ
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:436
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Solutyylit"
#. BFwPp
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:437
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Sivutyylit"
#. GJEem
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:438
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Pivot-taulukon lähdetietoalue on virheellinen."
#. qs9E5
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:439
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Koska nykyinen kaavaerotinasetus on ristiriidassa paikallisasetusten kanssa, kaavaerottimet on palautettu oletusarvoihinsa."
#. QMTkA
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:440
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Liitä tämänhetkinen päiväys"
#. uoa4E
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:441
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Liitä tämänhetkinen aika"
#. BZMPF
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:442
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Nimien hallinta..."
#. AFC3z
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:443
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nimi"
#. TBNEY
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:444
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Näkyvyys"
#. VEEep
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:445
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(monivalinta)"
#. hucnc
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:446
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Asiakirja (globaali)"
#. Jhqkj
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:447
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nimi ei kelpaa. Se on jo käytössä valitussa kohteessa."
-#. mFEcH
-#: sc/inc/globstr.hrc:433
+#. qDNs9
+#: sc/inc/globstr.hrc:448
msgctxt "STR_ERR_NAME_INVALID"
-msgid "Invalid name. Only use letters, numbers and underscore."
-msgstr "Nimi ei kelpaa. Käytä vain kirjaimia, numeroita ja alaviivoja."
+msgid "Invalid name. Start with a letter, use only letters, numbers and underscore."
+msgstr ""
#. owW4Y
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:449
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2514,247 +2604,247 @@ msgstr ""
"Haluatko jatkaa?"
#. dSCFD
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:450
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Tähän tallentamattomaan asiakirjaan viitataan toisesta asiakirjasta. Asiakirjan sulkeminen tallentamatta aiheuttaa siinä olevien tietojen menettämisen."
#. uBwWr
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_CONDITION"
msgid "Cell value"
msgstr "Solun arvo"
#. E8yxG
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "VariSkaala"
#. 7eqFv
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "VariPalkki"
#. eroC7
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "KuvakeKokoelma"
#. EbSz5
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_BETWEEN"
msgid "is between"
msgstr "on välillä"
#. VwraP
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_NOTBETWEEN"
msgid "is not between"
msgstr "ei ole välillä"
#. 35tDp
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_UNIQUE"
msgid "is unique"
msgstr ""
#. CCscL
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_DUPLICATE"
msgid "is duplicate"
msgstr ""
#. owhPn
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Kaava on"
#. KRFLk
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_TOP10"
msgid "is in top elements"
msgstr ""
#. tR5xA
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_BOTTOM10"
msgid "is in bottom elements"
msgstr ""
#. EWAhr
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_TOP_PERCENT"
msgid "is in top percent"
msgstr "on ylimmässä prosentissa"
#. vRk5n
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Päivämäärä on"
#. mv3Cr
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "is in bottom percent"
msgstr "on alimmassa prosentissa"
#. w5vq3
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "is above average"
msgstr "on yli keskiarvon"
#. 4QM7C
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "is below average"
msgstr "on alle keskiarvon"
#. CZfTg
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "is above or equal average"
msgstr ""
#. GmUGP
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "is below or equal average"
msgstr ""
#. 8DgQ9
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:469
msgctxt "STR_COND_ERROR"
msgid "is an error code"
msgstr "on virhekoodi"
#. ifj7i
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:470
msgctxt "STR_COND_NOERROR"
msgid "is not an error code"
msgstr "ei ole virhekoodi"
#. pqqqU
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:471
msgctxt "STR_COND_BEGINS_WITH"
msgid "begins with"
msgstr ""
#. atMkM
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:472
msgctxt "STR_COND_ENDS_WITH"
msgid "ends with"
msgstr ""
#. 96Aos
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:473
msgctxt "STR_COND_CONTAINS"
msgid "contains"
msgstr "sisältää"
#. X5K9F
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:474
msgctxt "STR_COND_NOT_CONTAINS"
msgid "does not contain"
msgstr "ei sisällä"
#. GvCEB
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:475
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "tänään"
#. ADfRQ
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:476
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "eilen"
#. fTnD2
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:477
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "huomenna"
#. mvGBE
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:478
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "viimeisen 7 päivän aikana"
#. DmaSj
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:479
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "tällä viikolla"
#. a8Hdp
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:480
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "viime viikolla"
#. ykG5k
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:481
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "ensi viikolla"
#. NCSVV
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:482
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "tässä kuussa"
#. zEYre
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:483
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "viime kuussa"
#. ZrGrG
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:484
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "ensi kuussa"
#. Fczye
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:485
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "tänä vuonna"
#. gQynd
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:486
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "viime vuonna"
#. sdxMh
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:487
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "ensi vuonna"
#. FGxFR
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ja"
#. dcgWZ
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:489
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Ehdollisia muotoiluja ei voi lisätä, poistaa tai muuttaa suojatuissa taulukoissa."
#. EgDja
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:490
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2766,7 +2856,7 @@ msgstr ""
" Haluatko muokata nykyistä ehdollista muotoilua?"
#. cisuZ
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:491
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2778,7 +2868,7 @@ msgstr ""
"Haluatko, että kaikkien kaavasolujen arvot tässä asiakirjassa lasketaan uudelleen?"
#. rD6BE
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:492
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was saved in Excel file format (.xlsx). Some formula cells may produce different results when recalculated. \n"
@@ -2790,91 +2880,91 @@ msgstr ""
"Haluatko laskea uudelleen kaikki kaavasolut?"
#. YgjzK
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:493
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Soluja ei voi lisätä tai poistaa, jos muutettava alue osuu pivot-taulukon alueelle."
#. FVE5v
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:494
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekuntia"
#. FNjEk
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:495
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "minuutti"
#. vAPxh
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:496
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Tuntia"
#. 9RT2A
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:497
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Päivät"
#. pEFdE
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:498
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Kuukausien määrä"
#. F6C2z
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:499
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Vuosineljännestä"
#. sNB8G
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:500
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Vuotta"
#. xtZNy
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:501
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Virheellinen kohdearvo."
#. qdJmG
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:502
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Määrittämätön nimi muuttujasoluna."
#. vvxwu
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:503
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Määrittämätön nimi kaavasoluna."
#. F2Piu
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:504
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Kaavasolussa on oltava kaava."
#. TAUZn
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:505
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Virheellinen syöte."
#. sB4EW
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:506
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Virheellinen ehto."
#. LEU8A
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:507
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2886,211 +2976,211 @@ msgstr ""
"?"
#. VueA3
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:508
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopioi luettelo"
#. BsYEp
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:509
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Luettelo"
#. wxjFd
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:510
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Tekstittömät solut ohitettiin."
#. VFyBY
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:511
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Ei dataa"
#. he7Lf
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:512
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Tyhjä tulostusalue"
#. 3GHaw
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:513
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Ehdollinen muotoilu"
#. RJBPt
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:514
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Ehdolliset muotoilut"
#. G5NhD
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:515
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Muunna kaava arvoksi"
#. dsjqi
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:516
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Merkkijonot ilman lainausmerkkejä tulkitaan sarake- tai riviotsikoiksi."
#. rHjns
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:517
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Syötä arvo!"
#. p6znj
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:518
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Taulukko %1 / %2"
#. pWcDK
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:519
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 ja %2 lisää"
#. X3uUX
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:520
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Yleinen"
#. Ekqp8
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:521
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Luku"
#. guEBF
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:522
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Prosenttia"
#. 7G5Cc
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:523
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valuutta"
#. CqECX
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:524
msgctxt "STR_DATE"
msgid "Date"
msgstr "Päivämäärä"
#. faYaf
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:525
msgctxt "STR_TIME"
msgid "Time"
msgstr "Aika"
#. 7uBV4
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:526
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Tieteellinen"
#. DGyo9
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:527
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Murtoluku"
#. AftLk
-#: sc/inc/globstr.hrc:513
+#: sc/inc/globstr.hrc:528
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Boolen arvo"
#. HBUym
-#: sc/inc/globstr.hrc:514
+#: sc/inc/globstr.hrc:529
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Teksti"
#. KyGvM
-#: sc/inc/globstr.hrc:515
+#: sc/inc/globstr.hrc:530
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Valitut taulukot sisältävät pivot-taulukoiden lähdetietoja. Haluatko varmasti poistaa valitut taulukot?"
#. 5uVFF
-#: sc/inc/globstr.hrc:516
+#: sc/inc/globstr.hrc:531
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Virheellinen nimi. Viittausta soluun tai solualueeseen ei sallita."
#. qqAQA
-#: sc/inc/globstr.hrc:517
+#: sc/inc/globstr.hrc:532
msgctxt "STR_ERR_LONG_LINK_FORMULA_NEEDING_CHECK"
msgid "External content disabled."
msgstr "Ulkoinen sisältö poistettu käytöstä."
#. RFrAD
-#: sc/inc/globstr.hrc:518
+#: sc/inc/globstr.hrc:533
msgctxt "STR_TEXTORIENTANGLE"
msgid "Text orientation angle"
msgstr "Tekstin asennon kulma"
#. EwD3A
-#: sc/inc/globstr.hrc:519
+#: sc/inc/globstr.hrc:534
msgctxt "STR_SHRINKTOFITCELL_ON"
msgid "Shrink to fit cell: On"
msgstr "Kutista soluun: käytössä"
#. smuAM
-#: sc/inc/globstr.hrc:520
+#: sc/inc/globstr.hrc:535
msgctxt "STR_SHRINKTOFITCELL_OFF"
msgid "Shrink to fit cell: Off"
msgstr "Kutista soluun: pois käytöstä"
#. QxyGF
-#: sc/inc/globstr.hrc:521
+#: sc/inc/globstr.hrc:536
msgctxt "STR_VERTICALSTACKCELL_ON"
msgid "Vertically stacked: On"
msgstr ""
#. 2x976
-#: sc/inc/globstr.hrc:522
+#: sc/inc/globstr.hrc:537
msgctxt "STR_VERTICALSTACKCELL_OFF"
msgid "Vertically stacked: Off"
msgstr ""
#. uxnQA
-#: sc/inc/globstr.hrc:523
+#: sc/inc/globstr.hrc:538
msgctxt "STR_LINEBREAKCELL_ON"
msgid "Wrap text automatically: On"
msgstr "Rivitä teksti automaattisesti: käytössä"
#. tPYPJ
-#: sc/inc/globstr.hrc:524
+#: sc/inc/globstr.hrc:539
msgctxt "STR_LINEBREAKCELL_OFF"
msgid "Wrap text automatically: Off"
msgstr "Rivitä teksti automaattisesti: pois käytöstä"
#. LVJeJ
-#: sc/inc/globstr.hrc:525
+#: sc/inc/globstr.hrc:540
msgctxt "STR_HYPHENATECELL_ON"
msgid "Hyphenate: On"
msgstr "Tavutus: käytössä"
#. kXiLH
-#: sc/inc/globstr.hrc:526
+#: sc/inc/globstr.hrc:541
msgctxt "STR_HYPHENATECELL_OFF"
msgid "Hyphenate: Off"
msgstr "Tavutus: pois käytöstä"
#. 5Vr2B
-#: sc/inc/globstr.hrc:527
+#: sc/inc/globstr.hrc:542
msgctxt "STR_INDENTCELL"
msgid "Indent: "
msgstr "Sisennys: "
@@ -17195,1105 +17285,1081 @@ msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "Muokattu lajittelusääntö"
-#. YeT6Y
-#: sc/inc/strings.hrc:167
-msgctxt "STR_BTN_TOGGLE_ALL"
-msgid "All"
-msgstr ""
-
-#. RqBMw
-#: sc/inc/strings.hrc:168
-msgctxt "STR_BTN_SELECT_CURRENT"
-msgid "Show only the current item."
-msgstr "Näytä vain tämänhetkinen kohta."
-
-#. VnRK2
-#: sc/inc/strings.hrc:169
-msgctxt "STR_BTN_UNSELECT_CURRENT"
-msgid "Hide only the current item."
-msgstr "Piilota tämänhetkinen kohta."
-
-#. eWCA7
-#: sc/inc/strings.hrc:170
-msgctxt "STR_EDIT_SEARCH_ITEMS"
-msgid "Search items..."
-msgstr "Hae kohteita..."
-
#. bpBbA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:168
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "Nimi"
#. GeNTF
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:169
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "Syöttörivi"
#. E6mnF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Ohjattu funktion luonti"
#. rU6xA
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "Hyväksy"
#. NC6DB
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Peruuta"
#. 9JUCF
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr "Valitse funktio"
#. kFqE4
-#: sc/inc/strings.hrc:178
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "Kaava"
#. dPqKq
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "Laajenna kaavarivi"
#. ENx2Q
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "Supista kaavarivi"
#. Bqfa8
-#: sc/inc/strings.hrc:182
+#: sc/inc/strings.hrc:178
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Tekijä"
#. Brp6j
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:179
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "Päivämäärä"
#. nSD8r
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:180
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Tuntematon käyttäjä"
#. HDiei
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:182
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "Sarake lisätty"
#. brecA
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:183
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "Rivi lisätty "
#. nBf8B
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "Taulukko lisätty "
#. Td8iF
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "Sarake poistettu"
#. 8Kopo
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "Rivi poistettu"
#. DynWz
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "Taulukko poistettu"
#. 6f9S9
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "Aluetta siirretty"
#. UpHkf
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "Sisältö muutettu"
#. cefNw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "Sisältö muutettu"
#. DcsSq
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "Uusi "
#. naPuN
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Alkuperäinen"
#. cbtSw
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "Muutokset hylätty"
#. rGkvk
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "Hyväksytty"
#. FRREF
-#: sc/inc/strings.hrc:199
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Hylätty"
#. bG7Pb
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "Ei syötettä"
#. i2doZ
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<tyhjä>"
#. dAt5Q
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:199
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "Ei suojattu"
#. 3TDDs
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:200
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "Ei suojattu salasanalla"
#. qBe6G
-#: sc/inc/strings.hrc:205
+#: sc/inc/strings.hrc:201
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Hajautusarvo ei ole yhteensopiva"
#. XoAEE
-#: sc/inc/strings.hrc:206
+#: sc/inc/strings.hrc:202
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Hajautusarvo on yhteensopiva"
#. MHDYB
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:203
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "Anna uudestaan"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:210
+#: sc/inc/strings.hrc:206
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "Liukuva keskiarvo"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:208
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "Eksponentiaalinen tasoitus"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:210
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "Varianssianalyysi"
#. 8v4W5
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:211
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr "Varianssianalyysi (ANOVA)"
#. NY8WD
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "ANOVA - yksisuuntainen"
#. AFnEZ
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:213
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "ANOVA - kaksisuuntainen"
#. hBPGD
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "Ryhmät"
#. DiUWy
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "Ryhmien välillä"
#. fBh3S
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "Ryhmien sisällä"
#. DFcw4
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "Variaation lähde"
#. KYbb8
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr "F"
#. a43mP
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr "Merkitsevyys F"
#. MMmsS
-#: sc/inc/strings.hrc:227
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-arvo"
#. UoaCS
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "Kriittinen F"
#. oJD9H
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "Yhteensä"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:227
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "Korrelaatio"
#. WC4SJ
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:228
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr "Korrelaatiot"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:230
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "Kovarianssi"
#. VyxUL
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:231
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr "Kovarianssit"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:233
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "Kuvailevat tunnusluvut"
#. FGXC5
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:234
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "Keskiarvo"
#. 2sHVR
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:235
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "Keskivirhe"
#. KrDBB
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Moodi"
#. AAbEo
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "Mediaani"
#. h2HaP
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "Varianssi"
#. 3uYMC
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "Keskihajonta"
#. JTx7f
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "Kurtoosi"
#. EXJJt
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "Vinous"
#. HkRYo
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "Vaihteluvälin pituus"
#. LHk8p
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "Minimi"
#. LtMJs
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "Maksimi"
#. Q5r5c
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Summa"
#. s8K23
-#: sc/inc/strings.hrc:250
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Lukumäärä"
#. pU8QG
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr "Ensimmäinen kvartiili"
#. PGXzY
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr "Kolmas kvartiili"
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:250
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "Satunnainen ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:251
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "Tasainen"
#. 9ke8L
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:252
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "Tasainen kokonaisluku"
#. GC2LH
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "Normaali"
#. XjQ2x
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "Cauchy"
#. G5CqB
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "Bernoulli"
#. GpJUB
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "Binomi"
#. 6yJKm
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "Negatiivinen binomi"
#. zzpmN
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "Khiin neliö"
#. NGBzX
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "Geometrinen"
#. BNZPE
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:260
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "Minimi"
#. EThhi
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:261
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "Maksimi"
#. RPYEG
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "Keskiarvo"
#. VeqrX
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "Keskihajonta"
#. ChwWE
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "Mediaani"
#. SzgEb
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "Sigma"
#. 94TBK
-#: sc/inc/strings.hrc:270
+#: sc/inc/strings.hrc:266
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "p-arvo"
#. AfUsB
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:267
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "Koeyritysten määrä"
#. DdfR6
-#: sc/inc/strings.hrc:272
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr "nu-arvo"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:270
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "Otanta"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:272
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "F-testi"
#. bQEfv
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:273
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "F-testi"
#. UdsVZ
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:274
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr "Parittainen t-testi"
#. A7xTa
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:275
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr "Parittainen t-testi"
#. dWPSe
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:276
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "z-testi"
#. QvZ7V
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:277
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "z-testi"
#. D6AqL
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:278
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr "Riippumattomuustesti (khiin neliö)"
#. PvFSb
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:279
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr "Regressio"
#. NXrYh
-#: sc/inc/strings.hrc:284
+#: sc/inc/strings.hrc:280
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr "Regressio"
#. AM5WV
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:281
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr "Fourier-analyysi"
#. hd6yJ
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:282
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr "Fourier-analyysi"
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:284
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "Sarake %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:285
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "Rivi %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:286
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Alfa"
#. FZZCu
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:287
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "Muuttuja 1"
#. pnyaa
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:288
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "Muuttuja 2"
#. LU4CC
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:289
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr "Hypoteesin mukainen keskiarvojen erotus"
#. sCNt9
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:290
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "Havainnot"
#. arX5v
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:291
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr "Havaittu keskiarvojen erotus"
#. dr3Gt
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:292
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr "R^2"
#. pnhCA
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:293
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr "Korjattu R^2"
#. ACsNA
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:295
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "Vapausaste"
#. FYUYT
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:296
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-arvo"
#. S3BHc
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:297
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr "Kriittinen arvo"
#. wgpT3
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:298
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr "Testimuuttuja"
#. kTwBX
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:299
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr "Ala"
#. GgFPs
-#: sc/inc/strings.hrc:304
+#: sc/inc/strings.hrc:300
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr "Ylä"
#. hkXzo
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:301
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:302
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:304
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "Lineaarinen"
#. kVG6g
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:305
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "Logaritminen"
#. wmyFW
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "Potenssi"
#. GabFM
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:307
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:308
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr "Luottamustason täytyy olla välillä (0, 1)."
#. ZdyQs
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr "Yhden muuttujan regressio: X:n ja Y:n havaintojen lukumäärän täytyy täsmätä."
#. KuttF
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr "Usean muuttujan regressio: X:n ja Y:n havaintojen lukumäärän täytyy täsmätä."
#. 6Cghz
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:314
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "Regressiomalli"
#. bmR5w
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:315
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr "Jäännöstermi"
#. 4DANj
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr "Luottamustaso"
#. 9LhbX
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr "Kertoimet"
#. nyH7s
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr "t-tunnusluku"
#. PGno2
-#: sc/inc/strings.hrc:324
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "Leikkauspiste"
#. oa4Cm
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr "Ennustettu Y"
#. QFEjs
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:322
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr "LINEST-raakatulostus"
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:324
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "P (F<=f) oikea häntä"
#. CkHJw
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:325
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "Kriittinen F oikea häntä"
#. J7yMZ
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "P (F<=f) vasen häntä"
#. R3BNC
-#: sc/inc/strings.hrc:331
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "Kriittinen F vasen häntä"
#. Bve5D
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr "P kaksisuuntainen"
#. 4YZrT
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr "Kriittinen F kaksisuuntainen"
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:331
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr "Pearsonin korrelaatio"
#. C6BU8
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:332
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr "Erotusten varianssi"
#. j8NuP
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr "t-arvo"
#. bKoeX
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr "P (T<=t) yksisuuntainen"
#. dub8R
-#: sc/inc/strings.hrc:339
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr "Kriittinen t yksisuuntainen"
#. FrDDz
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr "P (T<=t) kaksisuuntainen"
#. RQqAd
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr "Kriittinen t kaksisuuntainen"
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:339
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr "z"
#. CF8D5
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:340
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr "Tunnettu varianssi"
#. cYWDr
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr "P (Z<=z) yksisuuntainen"
#. DmEVf
-#: sc/inc/strings.hrc:346
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr "Kriittinen z yksisuuntainen"
#. G8PeP
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr "P (Z<=z) kaksisuuntainen"
#. rGBfK
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr "Kriittinen z kaksisuuntainen"
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:346
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr "Fourier-muunnos"
#. sc3hp
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:347
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr "Käänteinen Fourier-muunnos"
#. AtC94
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:348
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr "Reaali"
#. SoyPr
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:349
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr "Imaginaari"
#. ymnyT
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:350
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:351
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:352
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:353
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:358
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:360
+#: sc/inc/strings.hrc:356
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:358
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:364
+#: sc/inc/strings.hrc:360
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr "Soluun"
#. itvXY
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:361
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr "Soluun (koko muuttuu solun mukana)"
#. P8vG7
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr "Sivulle"
#. SSc6B
-#: sc/inc/strings.hrc:368
+#: sc/inc/strings.hrc:364
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "Tietoja käyttäjästä ei ole saatavilla."
#. FFnfu
-#: sc/inc/strings.hrc:369
+#: sc/inc/strings.hrc:365
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ei-jaettu käyttö)"
#. hitQA
-#: sc/inc/strings.hrc:370
+#: sc/inc/strings.hrc:366
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
@@ -18424,78 +18490,174 @@ msgctxt "advancedfilterdialog|AdvancedFilterDialog"
msgid "Advanced Filter"
msgstr "Erityissuodatus"
+#. fUxef
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:38
+msgctxt "advancedfilterdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. gzGAU
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:58
+msgctxt "advancedfilterdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
+#. v3B8V
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:124
+msgctxt "advancedfilterdialog|extended_tip|rbfilterarea"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. yFS2F
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:139
+msgctxt "advancedfilterdialog|extended_tip|lbfilterarea"
+msgid "Select the named range, or enter the cell range that contains the filter criteria that you want to use."
+msgstr ""
+
+#. AN4qk
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:157
+msgctxt "advancedfilterdialog|extended_tip|edfilterarea"
+msgid "Select the named range, or enter the cell range that contains the filter criteria that you want to use."
+msgstr ""
+
#. yALPD
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:152
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:174
msgctxt "advancedfilterdialog|label1"
msgid "Read _Filter Criteria From"
msgstr "Lue suodatusehdot kohteesta"
#. HBUJA
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:193
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:215
msgctxt "advancedfilterdialog|case"
msgid "_Case sensitive"
msgstr "Kirjainkoon erottelu"
+#. VewXr
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:225
+msgctxt "advancedfilterdialog|extended_tip|case"
+msgid "Distinguishes between uppercase and lowercase letters when filtering the data."
+msgstr ""
+
#. FHGUG
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:209
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:236
msgctxt "advancedfilterdialog|header"
msgid "Range c_ontains column labels"
msgstr "Sisältää sarakeotsikot"
+#. BzTmz
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:246
+msgctxt "advancedfilterdialog|extended_tip|header"
+msgid "Includes the column labels in the first row of a cell range."
+msgstr ""
+
#. WfvCG
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:225
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:257
msgctxt "advancedfilterdialog|regexp"
msgid "Regular _expressions"
msgstr "Säännölliset lausekkeet"
+#. DN78o
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:267
+msgctxt "advancedfilterdialog|extended_tip|regexp"
+msgid "Allows you to use regular expressions in the filter definition."
+msgstr ""
+
#. tDDfr
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:241
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:278
msgctxt "advancedfilterdialog|unique"
msgid "_No duplications"
msgstr "Karsi identtiset"
+#. gEg7S
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:288
+msgctxt "advancedfilterdialog|extended_tip|unique"
+msgid "Excludes duplicate rows in the list of filtered data."
+msgstr ""
+
#. DbA9A
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:257
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:299
msgctxt "advancedfilterdialog|copyresult"
msgid "Co_py results to:"
msgstr "Kopioi tulokset kohteeseen:"
+#. tx6QF
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:313
+msgctxt "advancedfilterdialog|extended_tip|copyresult"
+msgid "Select the check box, and then select the cell range where you want to display the filter results."
+msgstr ""
+
#. 2c6r8
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:277
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:324
msgctxt "advancedfilterdialog|destpers"
msgid "_Keep filter criteria"
msgstr "Säilytä suodatusehto"
+#. KpECC
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:334
+msgctxt "advancedfilterdialog|extended_tip|destpers"
+msgid "Select the Copy results to check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under Data - Define range as a database range."
+msgstr ""
+
#. NLz5G
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:313
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:365
msgctxt "advancedfilterdialog|lbcopyarea-atkobject"
msgid "Copy results to:"
msgstr "Kopioi tulokset kohteeseen:"
+#. CqSuV
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:366
+msgctxt "advancedfilterdialog|extended_tip|lbcopyarea"
+msgid "Select the check box, and then select the cell range where you want to display the filter results."
+msgstr ""
+
#. TDWTt
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:334
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:387
msgctxt "advancedfilterdialog|edcopyarea-atkobject"
msgid "Copy results to:"
msgstr "Kopioi tulokset kohteeseen:"
+#. mXpt4
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:388
+msgctxt "advancedfilterdialog|extended_tip|edcopyarea"
+msgid "Select the check box, and then select the cell range where you want to display the filter results."
+msgstr ""
+
+#. YCsyS
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:407
+msgctxt "advancedfilterdialog|extended_tip|rbcopyarea"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. RGXM4
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:372
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:431
msgctxt "advancedfilterdialog|dbarealabel"
msgid "Data range:"
msgstr "Tietoalue:"
#. 44y9m
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:385
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:444
msgctxt "advancedfilterdialog|dbarea"
msgid "dummy"
msgstr "tyhjä"
#. wVAjU
-#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:405
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:464
msgctxt "advancedfilterdialog|label2"
msgid "Op_tions"
msgstr "Asetukset"
+#. he2CY
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:470
+msgctxt "advancedfilterdialog|extended_tip|more"
+msgid "Shows additional filter options."
+msgstr ""
+
+#. 3CXjk
+#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:492
+msgctxt "advancedfilterdialog|extended_tip|AdvancedFilterDialog"
+msgid "Defines an advanced filter."
+msgstr ""
+
#. JyzjZ
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:21
msgctxt "aggregatefunctionentry|name"
@@ -18581,143 +18743,233 @@ msgid "Analysis of Variance (ANOVA)"
msgstr "Varianssianalyysi (ANOVA)"
#. fzdU2
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:111
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:107
msgctxt "analysisofvariancedialog|input-range-label"
msgid "Input range:"
msgstr "Lähdealue:"
#. hKLBC
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:125
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:121
msgctxt "analysisofvariancedialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. APZAw
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:193
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:189
msgctxt "analysisofvariancedialog|label4"
msgid "Data"
msgstr "Tiedot"
#. xA3Mm
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:228
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:224
msgctxt "analysisofvariancedialog|radio-single-factor"
msgid "Single factor"
msgstr "Yksisuuntainen"
#. JMMJa
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:244
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:240
msgctxt "analysisofvariancedialog|radio-two-factor"
msgid "Two factor"
msgstr "Kaksisuuntainen"
#. MggLT
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:266
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:262
msgctxt "analysisofvariancedialog|label3"
msgid "Type"
msgstr "Tyyppi"
#. J6Gea
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:301
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:297
msgctxt "analysisofvariancedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sarakkeet"
#. riGGW
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:317
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:313
msgctxt "analysisofvariancedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rivit"
#. jBuzS
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:340
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:336
msgctxt "analysisofvariancedialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
#. o4Aw2
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:377
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:373
msgctxt "analysisofvariancedialog|alpha-label"
msgid "Alpha:"
msgstr "Alfa:"
#. ickoF
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:392
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:388
msgctxt "analysisofvariancedialog|alpha-spin"
msgid "0,05"
msgstr "0,05"
#. UQDCP
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:406
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:402
msgctxt "analysisofvariancedialog|rows-per-sample-label"
msgid "Rows per sample:"
msgstr "Rivejä otosta kohden:"
#. wdFYz
-#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:437
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:433
msgctxt "analysisofvariancedialog|label1"
msgid "Parameters"
msgstr "Parametrit"
+#. nG25U
+#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:458
+msgctxt "analysisofvariancedialog|extended_tip|AnalysisOfVarianceDialog"
+msgid "Produces the analysis of variance (ANOVA) of a given data set"
+msgstr ""
+
#. ETqet
#: sc/uiconfig/scalc/ui/autoformattable.ui:16
msgctxt "autoformattable|AutoFormatTableDialog"
msgid "AutoFormat"
msgstr "Automaattinen muotoilu"
+#. tCRU9
+#: sc/uiconfig/scalc/ui/autoformattable.ui:39
+msgctxt "autoformattable|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
+#. V6Tpf
+#: sc/uiconfig/scalc/ui/autoformattable.ui:60
+msgctxt "autoformattable|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. NTY8D
+#: sc/uiconfig/scalc/ui/autoformattable.ui:133
+msgctxt "autoformattable|extended_tip|preview"
+msgid "Displays a preview of the current selection."
+msgstr ""
+
+#. qcCWk
+#: sc/uiconfig/scalc/ui/autoformattable.ui:175
+msgctxt "autoformattable|extended_tip|formatlb"
+msgid "Choose a predefined AutoFormat to apply to a selected area in your sheet."
+msgstr ""
+
+#. NFYeX
+#: sc/uiconfig/scalc/ui/autoformattable.ui:208
+msgctxt "autoformattable|extended_tip|add"
+msgid "Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats."
+msgstr ""
+
+#. DYbCK
+#: sc/uiconfig/scalc/ui/autoformattable.ui:227
+msgctxt "autoformattable|extended_tip|remove"
+msgid "Deletes the selected element or elements after confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä vahvistuskyselyn jälkeen."
+
#. YNp3m
-#: sc/uiconfig/scalc/ui/autoformattable.ui:212
+#: sc/uiconfig/scalc/ui/autoformattable.ui:239
msgctxt "autoformattable|rename"
msgid "Rename"
msgstr "Nimeä uudelleen"
+#. zy4WL
+#: sc/uiconfig/scalc/ui/autoformattable.ui:245
+msgctxt "autoformattable|extended_tip|rename"
+msgid "Opens a dialog where you can change the name of the selected AutoFormat."
+msgstr ""
+
#. SEACv
-#: sc/uiconfig/scalc/ui/autoformattable.ui:237
+#: sc/uiconfig/scalc/ui/autoformattable.ui:269
msgctxt "autoformattable|label1"
msgid "Format"
msgstr "Muotoilu"
#. ZVWaV
-#: sc/uiconfig/scalc/ui/autoformattable.ui:270
+#: sc/uiconfig/scalc/ui/autoformattable.ui:302
msgctxt "autoformattable|numformatcb"
msgid "Number format"
msgstr "Luvun muoto"
+#. KtQDR
+#: sc/uiconfig/scalc/ui/autoformattable.ui:311
+msgctxt "autoformattable|extended_tip|numformatcb"
+msgid "When marked, specifies that you want to retain the number format of the selected format."
+msgstr ""
+
#. 6jMct
-#: sc/uiconfig/scalc/ui/autoformattable.ui:285
+#: sc/uiconfig/scalc/ui/autoformattable.ui:322
msgctxt "autoformattable|bordercb"
msgid "Borders"
msgstr "Reunat"
+#. D2WKC
+#: sc/uiconfig/scalc/ui/autoformattable.ui:331
+msgctxt "autoformattable|extended_tip|bordercb"
+msgid "When marked, specifies that you want to retain the border of the selected format."
+msgstr ""
+
#. FV6mC
-#: sc/uiconfig/scalc/ui/autoformattable.ui:300
+#: sc/uiconfig/scalc/ui/autoformattable.ui:342
msgctxt "autoformattable|fontcb"
msgid "Font"
msgstr "Fontti"
+#. GjAFM
+#: sc/uiconfig/scalc/ui/autoformattable.ui:351
+msgctxt "autoformattable|extended_tip|fontcb"
+msgid "When marked, specifies that you want to retain the font of the selected format."
+msgstr ""
+
#. BG3bD
-#: sc/uiconfig/scalc/ui/autoformattable.ui:315
+#: sc/uiconfig/scalc/ui/autoformattable.ui:362
msgctxt "autoformattable|patterncb"
msgid "Pattern"
msgstr ""
+#. ReXDK
+#: sc/uiconfig/scalc/ui/autoformattable.ui:371
+msgctxt "autoformattable|extended_tip|patterncb"
+msgid "When marked, specifies that you want to retain the pattern of the selected format."
+msgstr ""
+
#. iSuf5
-#: sc/uiconfig/scalc/ui/autoformattable.ui:330
+#: sc/uiconfig/scalc/ui/autoformattable.ui:382
msgctxt "autoformattable|alignmentcb"
msgid "Alignment"
msgstr "Tasaus"
+#. nKX4E
+#: sc/uiconfig/scalc/ui/autoformattable.ui:391
+msgctxt "autoformattable|extended_tip|alignmentcb"
+msgid "When marked, specifies that you want to retain the alignment of the selected format."
+msgstr ""
+
#. oSEWM
-#: sc/uiconfig/scalc/ui/autoformattable.ui:345
+#: sc/uiconfig/scalc/ui/autoformattable.ui:402
msgctxt "autoformattable|autofitcb"
msgid "A_utoFit width and height"
msgstr "Sovita leveys ja korkeus"
+#. YUhEA
+#: sc/uiconfig/scalc/ui/autoformattable.ui:411
+msgctxt "autoformattable|extended_tip|autofitcb"
+msgid "When marked, specifies that you want to retain the width and height of the selected cells of the selected format."
+msgstr ""
+
#. pR75z
-#: sc/uiconfig/scalc/ui/autoformattable.ui:366
+#: sc/uiconfig/scalc/ui/autoformattable.ui:428
msgctxt "autoformattable|label2"
msgid "Formatting"
msgstr "Muotoilu"
+#. cBw2F
+#: sc/uiconfig/scalc/ui/autoformattable.ui:461
+msgctxt "autoformattable|extended_tip|AutoFormatTableDialog"
+msgid "Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats."
+msgstr ""
+
#. QeDwL
#: sc/uiconfig/scalc/ui/autosum.ui:12
msgctxt "autosum|sum"
@@ -18754,20 +19006,38 @@ msgctxt "cellprotectionpage|checkProtected"
msgid "_Protected"
msgstr "_Suojattu"
+#. jkUCZ
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:47
+msgctxt "cellprotectionpage|extended_tip|checkProtected"
+msgid "Prevents the selected cells from being modified."
+msgstr ""
+
#. 7WF2B
-#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:53
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:58
msgctxt "cellprotectionpage|checkHideFormula"
msgid "Hide _formula"
msgstr "_Piilota kaava"
+#. jCAZ4
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:69
+msgctxt "cellprotectionpage|extended_tip|checkHideFormula"
+msgid "Hides formulas in the selected cells."
+msgstr ""
+
#. arvbZ
-#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:70
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:80
msgctxt "cellprotectionpage|checkHideAll"
msgid "Hide _all"
msgstr "Piilota _kaikki"
-#. fBWyS
+#. 5v3YW
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:91
+msgctxt "cellprotectionpage|extended_tip|checkHideAll"
+msgid "Hides formulas and contents of the selected cells."
+msgstr ""
+
+#. fBWyS
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:106
msgctxt "cellprotectionpage|label1"
msgid ""
"Cell protection is only effective after the current sheet has been protected.\n"
@@ -18779,29 +19049,41 @@ msgstr ""
"Valitse Työkalut-valikosta 'Suojaa taulukko'."
#. bVREg
-#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:112
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:127
msgctxt "cellprotectionpage|LabelProtection"
msgid "Protection"
msgstr "Suojaus"
#. A5DFp
-#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:145
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:160
msgctxt "cellprotectionpage|checkHidePrinting"
msgid "Hide _when printing"
msgstr "Piilota _tulostettaessa"
+#. ZosAc
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:170
+msgctxt "cellprotectionpage|extended_tip|checkHidePrinting"
+msgid "Keeps the selected cells from being printed."
+msgstr ""
+
#. QqUqE
-#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:165
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:185
msgctxt "cellprotectionpage|label4"
msgid "The cells selected will be omitted when printing."
msgstr "Valitut solut ohitetaan tulostettaessa."
#. 8RuyP
-#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:183
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:203
msgctxt "cellprotectionpage|label3"
msgid "Print"
msgstr "Tulosta"
+#. DPWp6
+#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:217
+msgctxt "cellprotectionpage|extended_tip|CellProtectionPage"
+msgid "Defines protection options for selected cells."
+msgstr ""
+
#. 5rcxe
#: sc/uiconfig/scalc/ui/changesourcedialog.ui:8
msgctxt "changesourcedialog|ChangeSourceDialog"
@@ -18881,41 +19163,47 @@ msgid "Chi Square Test"
msgstr "Khiin neliö -testi"
#. VHxUD
-#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:104
+#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:100
msgctxt "chisquaretestdialog|input-range-label"
msgid "Input range:"
msgstr "Lähdealue:"
#. TFGB7
-#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:143
+#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:139
msgctxt "chisquaretestdialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. frEZB
-#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:186
+#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:182
msgctxt "chisquaretestdialog|label1"
msgid "Data"
msgstr "Tiedot"
#. BJDYD
-#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:221
+#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:217
msgctxt "chisquaretestdialog|groupedby-columns-radio"
msgid "_Columns"
msgstr "Sarakkeet"
#. y75Gj
-#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:237
+#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:233
msgctxt "chisquaretestdialog|groupedby-rows-radio"
msgid "_Rows"
msgstr "Rivit"
#. 2Cttx
-#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:259
+#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:255
msgctxt "chisquaretestdialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
+#. tAdCX
+#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:280
+msgctxt "chisquaretestdialog|extended_tip|ChiSquareTestDialog"
+msgid "Calculates the Chi-square test of a data sample."
+msgstr ""
+
#. L8JmP
#: sc/uiconfig/scalc/ui/colorrowdialog.ui:8
msgctxt "colorrowdialog|ColOrRowDialog"
@@ -18923,23 +19211,41 @@ msgid "Copy List"
msgstr "Kopioi luettelo"
#. P7PZo
-#: sc/uiconfig/scalc/ui/colorrowdialog.ui:100
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:97
msgctxt "colorrowdialog|columns"
msgid "_Columns"
msgstr "Sarakkeet"
+#. orYEB
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:107
+msgctxt "extended_tip|columns"
+msgid "Select the Columns option to summarize the contents of the selected columns in a list."
+msgstr "Sarakkeet -valinta tuottaa luetteloita sarakkeista."
+
#. 8qbkD
-#: sc/uiconfig/scalc/ui/colorrowdialog.ui:117
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:119
msgctxt "colorrowdialog|rows"
msgid "_Rows"
msgstr "Rivit"
+#. CCfoS
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:129
+msgctxt "extended_tip|rows"
+msgid "Select the Rows option to summarize the contents of the selected rows in a list."
+msgstr "Tämä Rivit-valinta tuottaa uuden luettelon alueen kultakin riviltä."
+
#. UiR8k
-#: sc/uiconfig/scalc/ui/colorrowdialog.ui:140
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:147
msgctxt "colorrowdialog|label"
msgid "List From"
msgstr "Luettelo"
+#. BSSuE
+#: sc/uiconfig/scalc/ui/colorrowdialog.ui:172
+msgctxt "extended_tip|ColOrRowDialog"
+msgid "Allows you to copy marked cells to a sort list."
+msgstr "Määrittää valittujen solujen kopiointia lajitteluluetteloon."
+
#. ZnGGB
#: sc/uiconfig/scalc/ui/colwidthdialog.ui:8
msgctxt "colwidthdialog|ColWidthDialog"
@@ -18952,12 +19258,30 @@ msgctxt "colwidthdialog|label1"
msgid "Width"
msgstr "Leveys"
+#. j9AMh
+#: sc/uiconfig/scalc/ui/colwidthdialog.ui:108
+msgctxt "colwidthdialog|extended_tip|value"
+msgid "Enter the column width that you want to use."
+msgstr "Annetaan käytettävä sarakeleveys"
+
#. qUvgX
-#: sc/uiconfig/scalc/ui/colwidthdialog.ui:114
+#: sc/uiconfig/scalc/ui/colwidthdialog.ui:119
msgctxt "colwidthdialog|default"
msgid "_Default value"
msgstr "Oletusarvo"
+#. rov8K
+#: sc/uiconfig/scalc/ui/colwidthdialog.ui:128
+msgctxt "colwidthdialog|extended_tip|default"
+msgid "Automatically adjusts the column width based on the current font."
+msgstr "Sarakeleveys tulee vallitsevan fontin mukaan säätyväksi."
+
+#. enAfe
+#: sc/uiconfig/scalc/ui/colwidthdialog.ui:159
+msgctxt "colwidthdialog|extended_tip|ColWidthDialog"
+msgid "Changes the width of the current column, or the selected columns."
+msgstr "Muutetaan sarakkeen tai valittujen sarakkeiden leveyttä."
+
#. 7RyUq
#: sc/uiconfig/scalc/ui/condformatmanager.ui:18
msgctxt "condformatmanager|CondFormatManager"
@@ -18965,41 +19289,71 @@ msgid "Manage Conditional Formatting"
msgstr "Hallitse ehdollista muotoilua"
#. FZLBr
-#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:133
msgctxt "condformatmanager|STR_HEADER_RANGE"
msgid "Range"
msgstr ""
#. Gipiw
-#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:146
msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
msgid "First Condition"
msgstr "Ensimmäinen ehto"
+#. Cshpe
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:157
+msgctxt "condformatmanager|extended_tip|CONTAINER"
+msgid "The Conditional Formats list displays the active conditional formatting rules set in the current spreadsheet."
+msgstr ""
+
#. rCgD4
-#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:177
msgctxt "condformatmanager|add"
msgid "Add"
msgstr "Lisää"
+#. BTut7
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:183
+msgctxt "condformatmanager|extended_tip|add"
+msgid "Here you can add, edit or remove one or several conditional formattings."
+msgstr ""
+
#. 8XXd8
-#: sc/uiconfig/scalc/ui/condformatmanager.ui:188
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:195
msgctxt "condformatmanager|edit"
msgid "Edit..."
msgstr "Muokkaa..."
-#. oLc2f
+#. H6qbm
#: sc/uiconfig/scalc/ui/condformatmanager.ui:201
+msgctxt "condformatmanager|extended_tip|edit"
+msgid "Here you can add, edit or remove one or several conditional formattings."
+msgstr ""
+
+#. oLc2f
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:213
msgctxt "condformatmanager|remove"
msgid "Remove"
msgstr "Poista"
+#. gEA5H
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:219
+msgctxt "condformatmanager|extended_tip|remove"
+msgid "Here you can add, edit or remove one or several conditional formattings."
+msgstr ""
+
#. dV9US
-#: sc/uiconfig/scalc/ui/condformatmanager.ui:227
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:244
msgctxt "condformatmanager|label1"
msgid "Conditional Formats"
msgstr "Ehdolliset muotoilut"
+#. yDqGa
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:269
+msgctxt "condformatmanager|extended_tip|CondFormatManager"
+msgid "This dialog allows you to see all the conditional formatting defined in the spreadsheet."
+msgstr ""
+
#. E8ANs
#: sc/uiconfig/scalc/ui/conditionalentry.ui:72
msgctxt "conditionalentry|styleft"
@@ -19576,24 +19930,78 @@ msgctxt "conditionalformatdialog|ConditionalFormatDialog"
msgid "Conditional Formatting for"
msgstr "Ehdollinen muotoilu alueelle"
+#. PYsX2
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:34
+msgctxt "conditionalformatdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. zqDuf
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:54
+msgctxt "conditionalformatdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
+#. VP7Xe
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:161
+msgctxt "conditionalformatdialog|extended_tip|list"
+msgid "List of the conditions defined for the cell range in order of evaluation."
+msgstr ""
+
+#. oEPbA
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:190
+msgctxt "conditionalformatdialog|extended_tip|add"
+msgid "Here you can add, edit or remove one or several conditional formattings."
+msgstr ""
+
+#. ejKTF
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:209
+msgctxt "conditionalformatdialog|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
+#. fGKvB
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:228
+msgctxt "conditionalformatdialog|extended_tip|up"
+msgid "Increase priority of the selected condition."
+msgstr ""
+
+#. ykMES
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:247
+msgctxt "conditionalformatdialog|extended_tip|down"
+msgid "Decrease priority of the selected condition."
+msgstr ""
+
#. Q6Ag7
-#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:240
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:272
msgctxt "conditionalformatdialog|label1"
msgid "Conditions"
msgstr "Ehdot"
#. rgGuH
-#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:277
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:309
msgctxt "conditionalformatdialog|ftassign"
msgid "Range:"
msgstr "Alue:"
+#. hZBzt
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:341
+msgctxt "conditionalformatdialog|extended_tip|rbassign"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. BH5wk
-#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:322
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:359
msgctxt "conditionalformatdialog|label2"
msgid "Cell Range"
msgstr "Solualue"
+#. JymF6
+#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:384
+msgctxt "conditionalformatdialog|extended_tip|ConditionalFormatDialog"
+msgid "Choose Conditional Formatting to define format styles depending on certain conditions."
+msgstr ""
+
#. XFw3E
#: sc/uiconfig/scalc/ui/conditionaliconset.ui:20
msgctxt "conditionaliconset|label"
@@ -19690,132 +20098,234 @@ msgctxt "consolidatedialog|ConsolidateDialog"
msgid "Consolidate"
msgstr "Yhdistä"
+#. HqCsB
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:43
+msgctxt "consolidatedialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. EHBqo
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:63
+msgctxt "consolidatedialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. kkPF3
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:102
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:109
msgctxt "consolidatedialog|label1"
msgid "_Function:"
msgstr "Funktio:"
#. SVBz4
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:117
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:124
msgctxt "consolidatedialog|label2"
msgid "_Consolidation ranges:"
msgstr "Yhdistelyalueet:"
#. AtpDx
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:133
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:140
msgctxt "consolidatedialog|func"
msgid "Sum"
msgstr "Summa"
#. E7nY7
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:134
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:141
msgctxt "consolidatedialog|func"
msgid "Count"
msgstr "Laske"
#. Q7GRe
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:135
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:142
msgctxt "consolidatedialog|func"
msgid "Average"
msgstr "Keskiarvo"
#. EffQC
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:136
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:143
msgctxt "consolidatedialog|func"
msgid "Max"
msgstr "Maksimi"
#. fiQPH
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:137
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:144
msgctxt "consolidatedialog|func"
msgid "Min"
msgstr "Minimi"
#. cbwPv
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:138
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:145
msgctxt "consolidatedialog|func"
msgid "Product"
msgstr "Tulo"
#. weaq9
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:139
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:146
msgctxt "consolidatedialog|func"
msgid "Count (numbers only)"
msgstr "Laske (vain luvut)"
#. 6YqQC
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:140
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:147
msgctxt "consolidatedialog|func"
msgid "StDev (sample)"
msgstr "Keskihajonta (otos)"
#. JTcFT
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:141
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:148
msgctxt "consolidatedialog|func"
msgid "StDevP (population)"
msgstr "Keskihajonta (populaatio)"
#. Z44a8
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:142
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:149
msgctxt "consolidatedialog|func"
msgid "Var (sample)"
msgstr "Varianssi (otos)"
#. gEiNo
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:143
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:150
msgctxt "consolidatedialog|func"
msgid "VarP (population)"
msgstr "Varianssi (populaatio)"
+#. HagyB
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:154
+msgctxt "consolidatedialog|extended_tip|func"
+msgid "Select the function that you want to use to consolidate the data."
+msgstr ""
+
+#. aG9xb
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:198
+msgctxt "consolidatedialog|extended_tip|consareas"
+msgid "Displays the cell ranges that you want to consolidate."
+msgstr ""
+
+#. Nw7XJ
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:235
+msgctxt "consolidatedialog|extended_tip|lbdataarea"
+msgid "Specifies the cell range that you want to consolidate with the cell ranges listed in the Consolidation ranges box. Select a cell range in a sheet, and then click Add. You can also select the name of a predefined cell from the Source data range list."
+msgstr ""
+
+#. 6x7He
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:253
+msgctxt "consolidatedialog|extended_tip|eddataarea"
+msgid "Specifies the cell range that you want to consolidate with the cell ranges listed in the Consolidation ranges box. Select a cell range in a sheet, and then click Add. You can also select the name of a predefined cell from the Source data range list."
+msgstr ""
+
+#. N6jCs
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:272
+msgctxt "consolidatedialog|extended_tip|rbdataarea"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. ziYLq
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:301
+msgctxt "consolidatedialog|extended_tip|lbdestarea"
+msgid "Displays the first cell in the range where the consolidation results will be displayed."
+msgstr ""
+
+#. BPrCM
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:319
+msgctxt "consolidatedialog|extended_tip|eddestarea"
+msgid "Displays the first cell in the range where the consolidation results will be displayed."
+msgstr ""
+
+#. HUuw6
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:338
+msgctxt "consolidatedialog|extended_tip|rbdestarea"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. zrSv3
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:370
+msgctxt "consolidatedialog|extended_tip|add"
+msgid "Adds the cell range specified in the Source data range box to the Consolidation ranges box."
+msgstr ""
+
+#. 6SMrn
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:390
+msgctxt "consolidatedialog|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
#. DLuPQ
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:353
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:410
msgctxt "consolidatedialog|ftdataarea"
msgid "_Source data ranges:"
msgstr "Lähdetietoalueet:"
#. VZzRg
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:367
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:424
msgctxt "consolidatedialog|ftdestarea"
msgid "Copy results _to:"
msgstr "Kopioi tulokset kohteeseen:"
#. Zhibj
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:423
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:480
msgctxt "consolidatedialog|byrow"
msgid "_Row labels"
msgstr "Riviotsikot"
+#. mfhWz
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:490
+msgctxt "consolidatedialog|extended_tip|byrow"
+msgid "Uses the row labels to arrange the consolidated data."
+msgstr ""
+
#. SCoPe
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:439
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:501
msgctxt "consolidatedialog|bycol"
msgid "C_olumn labels"
msgstr "Sarakeotsikot"
+#. AD5mx
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:511
+msgctxt "consolidatedialog|extended_tip|bycol"
+msgid "Uses the column labels to arrange the consolidated data."
+msgstr ""
+
#. 3dLXN
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:461
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:528
msgctxt "consolidatedialog|label3"
msgid "Consolidate by"
msgstr "Yhdistele"
#. VKSm9
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:493
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:560
msgctxt "consolidatedialog|refs"
msgid "_Link to source data"
msgstr "Linkitä lähdetietoihin"
+#. AFQD3
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:570
+msgctxt "consolidatedialog|extended_tip|refs"
+msgid "Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed."
+msgstr ""
+
#. tTmj2
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:509
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:581
msgctxt "consolidatedialog|label4"
msgid "Options"
msgstr "Asetukset"
#. QBCQr
-#: sc/uiconfig/scalc/ui/consolidatedialog.ui:528
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:600
msgctxt "consolidatedialog|more_label"
msgid "Options"
msgstr "Asetukset"
+#. TMPtN
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:605
+msgctxt "consolidatedialog|extended_tip|more"
+msgid "Shows additional options."
+msgstr ""
+
+#. HEHFf
+#: sc/uiconfig/scalc/ui/consolidatedialog.ui:627
+msgctxt "consolidatedialog|extended_tip|ConsolidateDialog"
+msgid "Combines data from one or more independent cell ranges and calculates a new range using the function that you specify."
+msgstr ""
+
#. cRP7Z
#: sc/uiconfig/scalc/ui/correlationdialog.ui:8
msgctxt "correlationdialog|CorrelationDialog"
@@ -19823,41 +20333,47 @@ msgid "Correlation"
msgstr "Korrelaatio"
#. XwREB
-#: sc/uiconfig/scalc/ui/correlationdialog.ui:103
+#: sc/uiconfig/scalc/ui/correlationdialog.ui:99
msgctxt "correlationdialog|input-range-label"
msgid "Input range:"
msgstr "Lähdealue:"
#. ZWgXM
-#: sc/uiconfig/scalc/ui/correlationdialog.ui:117
+#: sc/uiconfig/scalc/ui/correlationdialog.ui:113
msgctxt "correlationdialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. jJst7
-#: sc/uiconfig/scalc/ui/correlationdialog.ui:185
+#: sc/uiconfig/scalc/ui/correlationdialog.ui:181
msgctxt "correlationdialog|label4"
msgid "Data"
msgstr "Tiedot"
#. wpJTi
-#: sc/uiconfig/scalc/ui/correlationdialog.ui:220
+#: sc/uiconfig/scalc/ui/correlationdialog.ui:216
msgctxt "correlationdialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sarakkeet"
#. K6GDA
-#: sc/uiconfig/scalc/ui/correlationdialog.ui:236
+#: sc/uiconfig/scalc/ui/correlationdialog.ui:232
msgctxt "correlationdialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rivit"
#. BP2jQ
-#: sc/uiconfig/scalc/ui/correlationdialog.ui:258
+#: sc/uiconfig/scalc/ui/correlationdialog.ui:254
msgctxt "correlationdialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
+#. eC2za
+#: sc/uiconfig/scalc/ui/correlationdialog.ui:279
+msgctxt "correlationdialog|extended_tip|CorrelationDialog"
+msgid "Calculates the correlation of two sets of numeric data."
+msgstr ""
+
#. XYtja
#: sc/uiconfig/scalc/ui/covariancedialog.ui:8
msgctxt "covariancedialog|CovarianceDialog"
@@ -19865,41 +20381,47 @@ msgid "Covariance"
msgstr "Kovarianssi"
#. gEuSQ
-#: sc/uiconfig/scalc/ui/covariancedialog.ui:103
+#: sc/uiconfig/scalc/ui/covariancedialog.ui:99
msgctxt "covariancedialog|input-range-label"
msgid "Input range:"
msgstr "Lähdealue:"
#. eEB9E
-#: sc/uiconfig/scalc/ui/covariancedialog.ui:142
+#: sc/uiconfig/scalc/ui/covariancedialog.ui:138
msgctxt "covariancedialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. nry3Q
-#: sc/uiconfig/scalc/ui/covariancedialog.ui:185
+#: sc/uiconfig/scalc/ui/covariancedialog.ui:181
msgctxt "covariancedialog|label1"
msgid "Data"
msgstr "Tiedot"
#. GhcBB
-#: sc/uiconfig/scalc/ui/covariancedialog.ui:220
+#: sc/uiconfig/scalc/ui/covariancedialog.ui:216
msgctxt "covariancedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sarakkeet"
#. 7YbpZ
-#: sc/uiconfig/scalc/ui/covariancedialog.ui:236
+#: sc/uiconfig/scalc/ui/covariancedialog.ui:232
msgctxt "covariancedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rivit"
#. FgzdQ
-#: sc/uiconfig/scalc/ui/covariancedialog.ui:258
+#: sc/uiconfig/scalc/ui/covariancedialog.ui:254
msgctxt "covariancedialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
+#. XfrBg
+#: sc/uiconfig/scalc/ui/covariancedialog.ui:279
+msgctxt "covariancedialog|extended_tip|CovarianceDialog"
+msgid "Calculates the covariance of two sets of numeric data."
+msgstr ""
+
#. F22h3
#: sc/uiconfig/scalc/ui/createnamesdialog.ui:8
msgctxt "createnamesdialog|CreateNamesDialog"
@@ -19912,30 +20434,60 @@ msgctxt "createnamesdialog|top"
msgid "_Top row"
msgstr "_Ylin rivi"
+#. 8QHEC
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:108
+msgctxt "createnamesdialog|extended_tip|top"
+msgid "Creates the range names from the header row of the selected range."
+msgstr ""
+
#. hJ9LB
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:115
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:120
msgctxt "createnamesdialog|left"
msgid "_Left column"
msgstr "_Vasen sarake"
+#. C6Cjs
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:129
+msgctxt "createnamesdialog|extended_tip|left"
+msgid "Creates the range names from the entries in the first column of the selected sheet range."
+msgstr ""
+
#. T2unv
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:131
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:141
msgctxt "createnamesdialog|bottom"
msgid "_Bottom row"
msgstr "_Alin rivi"
+#. t6Zop
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:152
+msgctxt "createnamesdialog|extended_tip|bottom"
+msgid "Creates the range names from the entries in the last row of the selected sheet range."
+msgstr ""
+
#. AVsK3
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:149
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:164
msgctxt "createnamesdialog|right"
msgid "_Right column"
msgstr "_Oikea sarake"
+#. VAW7M
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:173
+msgctxt "createnamesdialog|extended_tip|right"
+msgid "Creates the range names from the entries in the last column of the selected sheet range."
+msgstr ""
+
#. EDUAr
-#: sc/uiconfig/scalc/ui/createnamesdialog.ui:171
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:191
msgctxt "createnamesdialog|label1"
msgid "Create Names From"
msgstr "Luo nimi kohteesta"
+#. zZfTJ
+#: sc/uiconfig/scalc/ui/createnamesdialog.ui:217
+msgctxt "createnamesdialog|extended_tip|CreateNamesDialog"
+msgid "Allows you to automatically name multiple cell ranges."
+msgstr ""
+
#. 4mKKA
#: sc/uiconfig/scalc/ui/dapiservicedialog.ui:10
msgctxt "dapiservicedialog|DapiserviceDialog"
@@ -20194,113 +20746,149 @@ msgctxt "datafielddialog|DataFieldDialog"
msgid "Data Field"
msgstr "Tietokenttä"
+#. ANVo4
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:150
+msgctxt "datafielddialog|extended_tip|functions"
+msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected."
+msgstr ""
+
#. oY6n8
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:164
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:169
msgctxt "datafielddialog|label1"
msgid "Function"
msgstr "Funktio"
#. kcFDu
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:178
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:183
msgctxt "datafielddialog|checkbutton1"
msgid "Show it_ems without data"
msgstr "Näytä tyhjät tietueet"
+#. 4S4kV
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:192
+msgctxt "datafielddialog|extended_tip|checkbutton1"
+msgid "Includes empty columns and rows in the results table."
+msgstr ""
+
#. CNVLs
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:201
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:210
msgctxt "datafielddialog|label2"
msgid "Name:"
msgstr "Nimi:"
#. yphGB
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:249
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:258
msgctxt "datafielddialog|label4"
msgid "_Type:"
msgstr "Tyyppi:"
#. h82Rf
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:264
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:273
msgctxt "datafielddialog|basefieldft"
msgid "_Base field:"
msgstr "Vertailukenttä:"
#. bJVVt
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:279
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:288
msgctxt "datafielddialog|baseitemft"
msgid "Ba_se item:"
msgstr "Vertailutietue:"
#. b9eEa
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:294
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:304
msgctxt "datafielddialog|type"
msgid "Normal"
msgstr "Tavallinen"
#. bDNvP
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:295
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:305
msgctxt "datafielddialog|type"
msgid "Difference from"
msgstr "Erotus vertailuarvosta"
#. 5vvHV
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:296
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:306
msgctxt "datafielddialog|type"
msgid "% of"
msgstr "% vertailuarvosta"
#. naD5D
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:297
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:307
msgctxt "datafielddialog|type"
msgid "% difference from"
msgstr "prosentuaalinen ero vertailuarvosta"
#. ttE3t
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:298
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:308
msgctxt "datafielddialog|type"
msgid "Running total in"
msgstr "Juokseva summa"
#. Eg4UJ
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:299
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:309
msgctxt "datafielddialog|type"
msgid "% of row"
msgstr "% rivin summasta"
#. dB8Rn
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:300
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:310
msgctxt "datafielddialog|type"
msgid "% of column"
msgstr "% sarakkeen summasta"
#. kN2Bf
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:301
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:311
msgctxt "datafielddialog|type"
msgid "% of total"
msgstr "% kokonaissummasta"
#. fYyCw
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:302
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:312
msgctxt "datafielddialog|type"
msgid "Index"
msgstr "Järjestysnumero"
+#. DDPRx
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:316
+msgctxt "datafielddialog|extended_tip|type"
+msgid "Select the type of calculating of the displayed value for the data field."
+msgstr ""
+
+#. DdvoS
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:331
+msgctxt "datafielddialog|extended_tip|basefield"
+msgid "Select the field from which the respective value is taken as base for the calculation."
+msgstr ""
+
#. u5kvr
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:325
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:345
msgctxt "datafielddialog|baseitem"
msgid "- previous item -"
msgstr "- edellinen tietue -"
#. qKCQG
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:326
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:346
msgctxt "datafielddialog|baseitem"
msgid "- next item -"
msgstr "- seuraava tietue -"
-#. TUYye
-#: sc/uiconfig/scalc/ui/datafielddialog.ui:342
+#. 3nUQE
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:350
+msgctxt "datafielddialog|extended_tip|baseitem"
+msgid "Select the item of the base field from which the respective value is taken as base for the calculation."
+msgstr ""
+
+#. XxEhf
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:367
msgctxt "datafielddialog|label3"
-msgid "Displayed value"
-msgstr "Näytettävä arvo"
+msgid "Displayed Value"
+msgstr ""
+
+#. mk9vJ
+#: sc/uiconfig/scalc/ui/datafielddialog.ui:372
+msgctxt "datafielddialog|extended_tip|expander"
+msgid "Expands or reduces the dialog. The More button is visible for data fields only."
+msgstr ""
#. X9gD5
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:29
@@ -20309,121 +20897,193 @@ msgid "Data Field Options"
msgstr "Tietokentän asetukset"
#. GWcDR
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:130
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:127
msgctxt "datafieldoptionsdialog|ascending"
msgid "_Ascending"
msgstr "Nouseva"
+#. u8pkE
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:137
+msgctxt "datafieldoptionsdialog|extended_tip|ascending"
+msgid "Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field."
+msgstr ""
+
#. yk5PT
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:146
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:148
msgctxt "datafieldoptionsdialog|descending"
msgid "_Descending"
msgstr "Laskeva"
+#. qyGGy
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:158
+msgctxt "datafieldoptionsdialog|extended_tip|descending"
+msgid "Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field."
+msgstr ""
+
#. WoRxx
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:162
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:169
msgctxt "datafieldoptionsdialog|manual"
msgid "_Manual"
msgstr "Manuaalinen"
+#. Sy9uF
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:179
+msgctxt "datafieldoptionsdialog|extended_tip|manual"
+msgid "Sorts values alphabetically."
+msgstr ""
+
+#. cdBMn
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:196
+msgctxt "datafieldoptionsdialog|extended_tip|sortby"
+msgid "Select the data field that you want to sort columns or rows by."
+msgstr ""
+
#. tP8DZ
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:200
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:217
msgctxt "datafieldoptionsdialog|label1"
msgid "Sort by"
msgstr "Lajitteluperuste"
#. qQHXp
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:232
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:249
msgctxt "datafieldoptionsdialog|repeatitemlabels"
msgid "_Repeat item labels"
msgstr "Toista selitteitä"
#. VmmHC
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:248
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:265
msgctxt "datafieldoptionsdialog|emptyline"
msgid "_Empty line after each item"
msgstr "Tyhjä rivi tietueen jälkeen"
+#. AxAtj
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:274
+msgctxt "datafieldoptionsdialog|extended_tip|emptyline"
+msgid "Adds an empty row after the data for each item in the pivot table."
+msgstr ""
+
#. xA7WG
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:266
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:288
msgctxt "datafieldoptionsdialog|label3"
msgid "_Layout:"
msgstr "Asettelu:"
#. ACFGW
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:282
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:304
msgctxt "datafieldoptionsdialog|layout"
msgid "Tabular layout"
msgstr "Taulukkona"
#. H4v3c
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:283
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:305
msgctxt "datafieldoptionsdialog|layout"
msgid "Outline layout with subtotals at the top"
msgstr "Jäsenneltynä välisummat alussa"
#. 2aDMy
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:284
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:306
msgctxt "datafieldoptionsdialog|layout"
msgid "Outline layout with subtotals at the bottom"
msgstr "Jäsenneltynä välisummat lopussa"
+#. CocpF
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:310
+msgctxt "datafieldoptionsdialog|extended_tip|layout"
+msgid "Select the layout mode for the field in the list box."
+msgstr ""
+
#. qSCvn
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:300
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:327
msgctxt "datafieldoptionsdialog|label2"
msgid "Display Options"
msgstr "Näyttöasetukset"
#. Q34EM
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:332
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:359
msgctxt "datafieldoptionsdialog|show"
msgid "_Show:"
msgstr "Näytä:"
+#. XRAd3
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:371
+msgctxt "datafieldoptionsdialog|extended_tip|show"
+msgid "Turns on the automatic show feature."
+msgstr ""
+
#. n8bpz
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:352
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:384
msgctxt "datafieldoptionsdialog|showfromft"
msgid "_From:"
msgstr "Lähtien:"
#. C9kFV
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:366
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:398
msgctxt "datafieldoptionsdialog|usingft"
msgid "_Using field:"
msgstr "Käyttäen kenttää:"
#. XVkqZ
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:385
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:417
msgctxt "datafieldoptionsdialog|showft"
msgid "items"
msgstr "tietuetta"
+#. CKCMD
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:437
+msgctxt "datafieldoptionsdialog|extended_tip|items"
+msgid "Enter the maximum number of items that you want to show automatically."
+msgstr ""
+
#. 6WBE7
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:420
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:457
msgctxt "datafieldoptionsdialog|from"
msgid "Top"
msgstr "alusta"
#. GUPny
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:421
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:458
msgctxt "datafieldoptionsdialog|from"
msgid "Bottom"
msgstr "lopusta"
+#. PAGqB
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:462
+msgctxt "datafieldoptionsdialog|extended_tip|from"
+msgid "Shows the top or bottom items in the specified sort order."
+msgstr ""
+
+#. 7dxVF
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:477
+msgctxt "datafieldoptionsdialog|extended_tip|using"
+msgid "Select the data field that you want to sort the data by."
+msgstr ""
+
#. sVRqx
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:447
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:494
msgctxt "datafieldoptionsdialog|label4"
msgid "Show Automatically"
msgstr "Näytä automaattisesti"
+#. kiXTb
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:571
+msgctxt "datafieldoptionsdialog|extended_tip|hideitems"
+msgid "Select the items that you want to hide from the calculations."
+msgstr ""
+
#. FDavv
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:532
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:584
msgctxt "datafieldoptionsdialog|label9"
msgid "Hide Items"
msgstr "Piilota tietue"
+#. foyVo
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:607
+msgctxt "datafieldoptionsdialog|extended_tip|hierarchy"
+msgid "Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies."
+msgstr ""
+
#. qTAzs
-#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:563
+#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:620
msgctxt "datafieldoptionsdialog|hierarchyft"
msgid "Hierarch_y:"
msgstr "Hierarkkisesti:"
@@ -20435,47 +21095,53 @@ msgid "Data Form"
msgstr "Tietolomake"
#. AaAgD
-#: sc/uiconfig/scalc/ui/dataform.ui:40
+#: sc/uiconfig/scalc/ui/dataform.ui:37
msgctxt "dataform|close"
msgid "_Close"
msgstr "_Sulje"
#. gbAzv
-#: sc/uiconfig/scalc/ui/dataform.ui:167
+#: sc/uiconfig/scalc/ui/dataform.ui:164
msgctxt "dataform|label"
msgid "New Record"
msgstr "Uusi tietue"
#. Nvvrt
-#: sc/uiconfig/scalc/ui/dataform.ui:178
+#: sc/uiconfig/scalc/ui/dataform.ui:175
msgctxt "dataform|new"
msgid "_New"
msgstr "_Uusi"
#. Epdm6
-#: sc/uiconfig/scalc/ui/dataform.ui:194
+#: sc/uiconfig/scalc/ui/dataform.ui:191
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Poista"
#. SCweE
-#: sc/uiconfig/scalc/ui/dataform.ui:208
+#: sc/uiconfig/scalc/ui/dataform.ui:205
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Palauta"
#. GAxdr
-#: sc/uiconfig/scalc/ui/dataform.ui:222
+#: sc/uiconfig/scalc/ui/dataform.ui:219
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Edellinen tietue"
#. hpzLC
-#: sc/uiconfig/scalc/ui/dataform.ui:237
+#: sc/uiconfig/scalc/ui/dataform.ui:234
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Seuraava tietue"
+#. Gqqaq
+#: sc/uiconfig/scalc/ui/dataform.ui:271
+msgctxt "dataform|extended_tip|DataFormDialog"
+msgid "Data Entry Form is a tool to make table data entry easy in spreadsheets."
+msgstr ""
+
#. xGUSZ
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:111
msgctxt "dataproviderdlg|db_name"
@@ -20513,95 +21179,101 @@ msgid "Live Data Streams"
msgstr "Reaaliaikaiset tietovirrat"
#. BjFaA
-#: sc/uiconfig/scalc/ui/datastreams.ui:112
+#: sc/uiconfig/scalc/ui/datastreams.ui:109
msgctxt "datastreams|label6"
msgid "URL:"
msgstr "URL:"
#. GUSse
-#: sc/uiconfig/scalc/ui/datastreams.ui:124
+#: sc/uiconfig/scalc/ui/datastreams.ui:121
msgctxt "datastreams|url|tooltip_text"
msgid "Enter the URL of the source document in the local file system or Internet here."
msgstr "Kirjoita tähän paikallisessa tiedostojärjestelmässä tai Internetissä olevan lähdetiedoston URL-osoite."
#. RbmeF
-#: sc/uiconfig/scalc/ui/datastreams.ui:142
+#: sc/uiconfig/scalc/ui/datastreams.ui:139
msgctxt "datastreams|browse"
msgid "_Browse..."
msgstr "Selaa..."
#. Kyv5C
-#: sc/uiconfig/scalc/ui/datastreams.ui:181
+#: sc/uiconfig/scalc/ui/datastreams.ui:178
msgctxt "datastreams|valuesinline"
msgid "value1,value2,...,valueN, and fill into range:"
msgstr "arvo1,arvo2,...,arvoN, ja täytä alueeseen:"
#. FbeJ5
-#: sc/uiconfig/scalc/ui/datastreams.ui:197
+#: sc/uiconfig/scalc/ui/datastreams.ui:194
msgctxt "datastreams|addressvalue"
msgid "address,value"
msgstr "osoite,arvo"
#. vHGFG
-#: sc/uiconfig/scalc/ui/datastreams.ui:234
+#: sc/uiconfig/scalc/ui/datastreams.ui:231
msgctxt "datastreams|label4"
msgid "Interpret stream data as"
msgstr "Tietovirran sisällön muoto"
#. vcDx2
-#: sc/uiconfig/scalc/ui/datastreams.ui:247
+#: sc/uiconfig/scalc/ui/datastreams.ui:244
msgctxt "datastreams|refresh_ui"
msgid "Empty lines trigger UI refresh"
msgstr "Tyhjän rivin lukeminen päivittää käyttöliittymän"
#. 3hWhd
-#: sc/uiconfig/scalc/ui/datastreams.ui:270
+#: sc/uiconfig/scalc/ui/datastreams.ui:267
msgctxt "datastreams|label"
msgid "Source Stream"
msgstr "Tietovirran lähde"
#. kkNat
-#: sc/uiconfig/scalc/ui/datastreams.ui:311
+#: sc/uiconfig/scalc/ui/datastreams.ui:308
msgctxt "datastreams|datadown"
msgid "Move existing data down"
msgstr "Siirrä entistä dataa alemmas"
#. oK7F4
-#: sc/uiconfig/scalc/ui/datastreams.ui:327
+#: sc/uiconfig/scalc/ui/datastreams.ui:324
msgctxt "datastreams|rangedown"
msgid "Move the range down"
msgstr "Siirrä kohdealuetta alemmas"
#. 2uAZA
-#: sc/uiconfig/scalc/ui/datastreams.ui:345
+#: sc/uiconfig/scalc/ui/datastreams.ui:342
msgctxt "datastreams|nomove"
msgid "Overwrite existing data"
msgstr "Kirjoita vanhan datan päälle"
#. mvcXx
-#: sc/uiconfig/scalc/ui/datastreams.ui:368
+#: sc/uiconfig/scalc/ui/datastreams.ui:365
msgctxt "datastreams|label2"
msgid "When New Data Arrives"
msgstr "Kun uutta dataa saapuu"
#. 5i8Be
-#: sc/uiconfig/scalc/ui/datastreams.ui:402
+#: sc/uiconfig/scalc/ui/datastreams.ui:399
msgctxt "datastreams|maxlimit"
msgid "Limit to:"
msgstr "Enimmäismäärä:"
#. GLYms
-#: sc/uiconfig/scalc/ui/datastreams.ui:431
+#: sc/uiconfig/scalc/ui/datastreams.ui:428
msgctxt "datastreams|unlimited"
msgid "_Unlimited"
msgstr "Ei rajoitusta"
#. DvF6M
-#: sc/uiconfig/scalc/ui/datastreams.ui:457
+#: sc/uiconfig/scalc/ui/datastreams.ui:454
msgctxt "datastreams|label3"
msgid "Maximal Amount of Rows"
msgstr "Rivien enimmäismäärä"
+#. zGb3D
+#: sc/uiconfig/scalc/ui/datastreams.ui:493
+msgctxt "datastreams|extended_tip|DataStreamDialog"
+msgid "Live data stream for spreadsheets"
+msgstr ""
+
#. 7s8rq
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:21
msgctxt "datetimetransformationentry|name"
@@ -20740,138 +21412,276 @@ msgctxt "definedatabaserangedialog|DefineDatabaseRangeDialog"
msgid "Define Database Range"
msgstr "Tietokannan alueen määritys"
+#. CyzxS
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:44
+msgctxt "definedatabaserangedialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. djkZd
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:63
+msgctxt "definedatabaserangedialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
+#. RMghE
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:174
+msgctxt "definedatabaserangedialog|extended_tip|entry"
+msgid "Enter a name for the database range that you want to define, or select an existing name from the list."
+msgstr ""
+
#. 4FqWF
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:179
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:191
msgctxt "definedatabaserangedialog|Name"
msgid "Name"
msgstr "Nimi"
+#. phDVh
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:231
+msgctxt "definedatabaserangedialog|extended_tip|assign"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. ySCS4
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:248
+msgctxt "definedatabaserangedialog|extended_tip|assignrb"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. FUAH2
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:244
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:266
msgctxt "definedatabaserangedialog|Range"
msgid "Range"
msgstr "Alue"
+#. CPDFA
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:294
+msgctxt "definedatabaserangedialog|extended_tip|add"
+msgid "Adds the selected cell range to the database range list, or modifies an existing database range."
+msgstr ""
+
#. N8Lui
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:279
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:306
msgctxt "definedatabaserangedialog|modify"
msgid "M_odify"
msgstr "Muuta"
+#. AGETd
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:327
+msgctxt "definedatabaserangedialog|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
#. TniCB
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:332
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:364
msgctxt "definedatabaserangedialog|ContainsColumnLabels"
msgid "Co_ntains column labels"
msgstr "Sisältää sarakeotsikot"
+#. FYwzQ
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:373
+msgctxt "definedatabaserangedialog|extended_tip|ContainsColumnLabels"
+msgid "Selected cell ranges contains labels."
+msgstr ""
+
#. QBs5X
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:348
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:385
msgctxt "definedatabaserangedialog|ContainsTotalsRow"
msgid "Contains _totals row"
msgstr "Sisältää summarivin"
#. AeZB2
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:364
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:401
msgctxt "definedatabaserangedialog|InsertOrDeleteCells"
msgid "Insert or delete _cells"
msgstr "Lisää tai poista soluja"
+#. bJdCS
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:410
+msgctxt "definedatabaserangedialog|extended_tip|InsertOrDeleteCells"
+msgid "Automatically inserts new rows and columns into the database range in your document when new records are added to the database."
+msgstr ""
+
#. EveBu
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:380
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:422
msgctxt "definedatabaserangedialog|KeepFormatting"
msgid "Keep _formatting"
msgstr "Säilytä muotoilu"
+#. nwtDB
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:431
+msgctxt "definedatabaserangedialog|extended_tip|KeepFormatting"
+msgid "Applies the existing cell format of headers and first data row to the whole database range."
+msgstr ""
+
#. rSf5f
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:396
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:443
msgctxt "definedatabaserangedialog|DontSaveImportedData"
msgid "Don't save _imported data"
msgstr "Älä tallenna tuotuja tietoja"
+#. mDon4
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:452
+msgctxt "definedatabaserangedialog|extended_tip|DontSaveImportedData"
+msgid "Only saves a reference to the database, and not the contents of the cells."
+msgstr ""
+
#. nYJiV
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:414
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:466
msgctxt "definedatabaserangedialog|Source"
msgid "Source:"
msgstr "Lähde:"
#. q2F5V
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:427
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:479
msgctxt "definedatabaserangedialog|Operations"
msgid "Operations:"
msgstr "Toiminnot:"
#. XXY4E
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:440
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:492
msgctxt "definedatabaserangedialog|invalid"
msgid "Invalid range"
msgstr "Virheellinen alue"
#. dHJw9
-#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:457
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:509
msgctxt "definedatabaserangedialog|label1"
msgid "Options"
msgstr "Asetukset"
+#. 4KFEA
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:514
+msgctxt "definedatabaserangedialog|extended_tip|more"
+msgid "Shows additional options."
+msgstr ""
+
+#. swLE2
+#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:543
+msgctxt "definedatabaserangedialog|extended_tip|DefineDatabaseRangeDialog"
+msgid "Defines a database range based on the selected cells in your sheet."
+msgstr ""
+
#. 659Fh
#: sc/uiconfig/scalc/ui/definename.ui:8
msgctxt "definename|DefineNameDialog"
msgid "Define Name"
msgstr "Määritä nimi"
+#. HREbq
+#: sc/uiconfig/scalc/ui/definename.ui:48
+msgctxt "definename|extended_tip|add"
+msgid "Click the Add button to add a new defined name."
+msgstr ""
+
#. 6EGaz
-#: sc/uiconfig/scalc/ui/definename.ui:93
+#: sc/uiconfig/scalc/ui/definename.ui:95
msgctxt "definename|label2"
msgid "Name:"
msgstr "Nimi:"
#. EPtbZ
-#: sc/uiconfig/scalc/ui/definename.ui:107
+#: sc/uiconfig/scalc/ui/definename.ui:109
msgctxt "definename|label3"
msgid "Range or formula expression:"
msgstr "Alue tai lauseke:"
#. cPZDB
-#: sc/uiconfig/scalc/ui/definename.ui:121
+#: sc/uiconfig/scalc/ui/definename.ui:123
msgctxt "definename|label4"
msgid "Scope:"
msgstr "Kattavuus:"
+#. 8LBjA
+#: sc/uiconfig/scalc/ui/definename.ui:140
+msgctxt "definename|extended_tip|edit"
+msgid "Enter the name of the area for which you want to define a reference or a formula expression."
+msgstr ""
+
+#. yDeUA
+#: sc/uiconfig/scalc/ui/definename.ui:163
+msgctxt "definename|extended_tip|range"
+msgid "The reference of the selected area name is shown here as an absolute value."
+msgstr ""
+
+#. BjrLE
+#: sc/uiconfig/scalc/ui/definename.ui:198
+msgctxt "definename|extended_tip|scope"
+msgid "Select the scope of the named range or named formula. Document (Global) means the name is valid for the whole document."
+msgstr ""
+
#. KZfrH
-#: sc/uiconfig/scalc/ui/definename.ui:194
+#: sc/uiconfig/scalc/ui/definename.ui:211
msgctxt "definename|label"
msgid "Define the name and range or formula expression."
msgstr "Aseta nimi ja alue tai lauseke."
#. gZZ6g
-#: sc/uiconfig/scalc/ui/definename.ui:225
+#: sc/uiconfig/scalc/ui/definename.ui:242
msgctxt "definename|printarea"
msgid "_Print range"
msgstr "_Tulostusalue"
+#. uHfBu
+#: sc/uiconfig/scalc/ui/definename.ui:251
+msgctxt "definename|extended_tip|printarea"
+msgid "Defines the area as a print range."
+msgstr ""
+
#. L5Ebf
-#: sc/uiconfig/scalc/ui/definename.ui:240
+#: sc/uiconfig/scalc/ui/definename.ui:262
msgctxt "definename|filter"
msgid "_Filter"
msgstr "_Suodatus"
+#. KPv69
+#: sc/uiconfig/scalc/ui/definename.ui:271
+msgctxt "definename|extended_tip|filter"
+msgid "Defines the selected area to be used in an advanced filter."
+msgstr ""
+
#. 6W3iB
-#: sc/uiconfig/scalc/ui/definename.ui:255
+#: sc/uiconfig/scalc/ui/definename.ui:282
msgctxt "definename|colheader"
msgid "Repeat _column"
msgstr "Toista _sarake"
+#. bLAGo
+#: sc/uiconfig/scalc/ui/definename.ui:291
+msgctxt "definename|extended_tip|colheader"
+msgid "Defines the area as a repeating column."
+msgstr ""
+
#. jfJFq
-#: sc/uiconfig/scalc/ui/definename.ui:270
+#: sc/uiconfig/scalc/ui/definename.ui:302
msgctxt "definename|rowheader"
msgid "Repeat _row"
msgstr "Toista _rivi"
+#. WGYtk
+#: sc/uiconfig/scalc/ui/definename.ui:311
+msgctxt "definename|extended_tip|rowheader"
+msgid "Defines the area as a repeating row."
+msgstr ""
+
#. 47nrA
-#: sc/uiconfig/scalc/ui/definename.ui:289
+#: sc/uiconfig/scalc/ui/definename.ui:326
msgctxt "definename|label5"
msgid "Range _Options"
msgstr "Alueen asetukset"
+#. eNLRt
+#: sc/uiconfig/scalc/ui/definename.ui:332
+msgctxt "definename|extended_tip|more"
+msgid "Allows you to specify the Area type (optional) for the reference."
+msgstr ""
+
+#. gBKqi
+#: sc/uiconfig/scalc/ui/definename.ui:361
+msgctxt "definename|extended_tip|DefineNameDialog"
+msgid "Opens a dialog where you can specify a name for a selected area or a name for a formula expression."
+msgstr ""
+
#. uA5Nz
#: sc/uiconfig/scalc/ui/deletecells.ui:8
msgctxt "deletecells|DeleteCellsDialog"
@@ -20879,35 +21689,65 @@ msgid "Delete Cells"
msgstr "Poista solut"
#. UXfkG
-#: sc/uiconfig/scalc/ui/deletecells.ui:97
+#: sc/uiconfig/scalc/ui/deletecells.ui:96
msgctxt "deletecells|up"
msgid "Shift cells _up"
msgstr "Siirrä solut _ylös"
+#. 7nz4V
+#: sc/uiconfig/scalc/ui/deletecells.ui:106
+msgctxt "deletecells|extended_tip|up"
+msgid "Fills the space produced by the deleted cells with the cells underneath it."
+msgstr ""
+
#. 4ChEi
-#: sc/uiconfig/scalc/ui/deletecells.ui:114
+#: sc/uiconfig/scalc/ui/deletecells.ui:118
msgctxt "deletecells|left"
msgid "Shift cells _left"
msgstr "Siirrä solut _vasemmalle"
+#. GPMfP
+#: sc/uiconfig/scalc/ui/deletecells.ui:128
+msgctxt "deletecells|extended_tip|left"
+msgid "Fills the resulting space by the cells to the right of the deleted cells."
+msgstr ""
+
#. xhSFC
-#: sc/uiconfig/scalc/ui/deletecells.ui:131
+#: sc/uiconfig/scalc/ui/deletecells.ui:140
msgctxt "deletecells|rows"
msgid "Delete entire _row(s)"
msgstr "Poista _rivit kokonaan"
+#. S2ECx
+#: sc/uiconfig/scalc/ui/deletecells.ui:150
+msgctxt "deletecells|extended_tip|rows"
+msgid "After selecting at least one cell, deletes the entire row from the sheet."
+msgstr ""
+
#. ky4n4
-#: sc/uiconfig/scalc/ui/deletecells.ui:148
+#: sc/uiconfig/scalc/ui/deletecells.ui:162
msgctxt "deletecells|cols"
msgid "Delete entire _column(s)"
msgstr "Poista _sarakkeet kokonaan"
+#. PEddf
+#: sc/uiconfig/scalc/ui/deletecells.ui:172
+msgctxt "deletecells|extended_tip|cols"
+msgid "After selecting at least one cell, deletes the entire column from the sheet."
+msgstr ""
+
#. fFD3Q
-#: sc/uiconfig/scalc/ui/deletecells.ui:171
+#: sc/uiconfig/scalc/ui/deletecells.ui:190
msgctxt "deletecells|label1"
msgid "Selection"
msgstr "Valinta"
+#. tXR8A
+#: sc/uiconfig/scalc/ui/deletecells.ui:215
+msgctxt "deletecells|extended_tip|DeleteCellsDialog"
+msgid "Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space."
+msgstr ""
+
#. CBAhH
#: sc/uiconfig/scalc/ui/deletecolumnentry.ui:21
msgctxt "deletecolumnentry|name"
@@ -20938,54 +21778,108 @@ msgctxt "deletecontents|deleteall"
msgid "Delete _all"
msgstr "Poista _kaikki"
+#. EzX8U
+#: sc/uiconfig/scalc/ui/deletecontents.ui:105
+msgctxt "deletecontents|extended_tip|deleteall"
+msgid "Deletes all content from the selected cell range."
+msgstr ""
+
#. cjPVi
-#: sc/uiconfig/scalc/ui/deletecontents.ui:119
+#: sc/uiconfig/scalc/ui/deletecontents.ui:124
msgctxt "deletecontents|text"
msgid "_Text"
msgstr "_Teksti"
+#. BzXFc
+#: sc/uiconfig/scalc/ui/deletecontents.ui:133
+msgctxt "deletecontents|extended_tip|text"
+msgid "Deletes text only. Formats, formulas, numbers and dates are not affected."
+msgstr ""
+
#. pNGEC
-#: sc/uiconfig/scalc/ui/deletecontents.ui:134
+#: sc/uiconfig/scalc/ui/deletecontents.ui:144
msgctxt "deletecontents|numbers"
msgid "_Numbers"
msgstr "_Numerot"
+#. HdAdi
+#: sc/uiconfig/scalc/ui/deletecontents.ui:153
+msgctxt "deletecontents|extended_tip|numbers"
+msgid "Deletes numbers only. Formats and formulas remain unchanged."
+msgstr ""
+
#. iNGBK
-#: sc/uiconfig/scalc/ui/deletecontents.ui:149
+#: sc/uiconfig/scalc/ui/deletecontents.ui:164
msgctxt "deletecontents|datetime"
msgid "_Date & time"
msgstr "_Päivämäärä ja kellonaika"
+#. uYNYA
+#: sc/uiconfig/scalc/ui/deletecontents.ui:173
+msgctxt "deletecontents|extended_tip|datetime"
+msgid "Deletes date and time values. Formats, text, numbers and formulas remain unchanged."
+msgstr ""
+
#. igEyD
-#: sc/uiconfig/scalc/ui/deletecontents.ui:164
+#: sc/uiconfig/scalc/ui/deletecontents.ui:184
msgctxt "deletecontents|formulas"
msgid "_Formulas"
msgstr "_Kaavat"
+#. XTY3K
+#: sc/uiconfig/scalc/ui/deletecontents.ui:193
+msgctxt "deletecontents|extended_tip|formulas"
+msgid "Deletes formulas. Text, numbers, formats, dates and times remain unchanged."
+msgstr ""
+
#. qhUoD
-#: sc/uiconfig/scalc/ui/deletecontents.ui:179
+#: sc/uiconfig/scalc/ui/deletecontents.ui:204
msgctxt "deletecontents|comments"
msgid "_Comments"
msgstr "Huomautukset"
+#. psiqN
+#: sc/uiconfig/scalc/ui/deletecontents.ui:213
+msgctxt "deletecontents|extended_tip|comments"
+msgid "Deletes comments added to cells. All other elements remain unchanged."
+msgstr ""
+
#. bCyju
-#: sc/uiconfig/scalc/ui/deletecontents.ui:194
+#: sc/uiconfig/scalc/ui/deletecontents.ui:224
msgctxt "deletecontents|formats"
msgid "For_mats"
msgstr "_Muotoilu"
+#. 4F3RM
+#: sc/uiconfig/scalc/ui/deletecontents.ui:233
+msgctxt "deletecontents|extended_tip|formats"
+msgid "Deletes format attributes applied to cells. All cell content remains unchanged."
+msgstr ""
+
#. VhmVs
-#: sc/uiconfig/scalc/ui/deletecontents.ui:209
+#: sc/uiconfig/scalc/ui/deletecontents.ui:244
msgctxt "deletecontents|objects"
msgid "_Objects"
msgstr "Objektit"
+#. 4GgHE
+#: sc/uiconfig/scalc/ui/deletecontents.ui:253
+msgctxt "deletecontents|extended_tip|objects"
+msgid "Deletes objects. All cell content remains unchanged."
+msgstr ""
+
#. gF92Z
-#: sc/uiconfig/scalc/ui/deletecontents.ui:240
+#: sc/uiconfig/scalc/ui/deletecontents.ui:280
msgctxt "deletecontents|label2"
msgid "Selection"
msgstr "Valinta"
+#. SSeBL
+#: sc/uiconfig/scalc/ui/deletecontents.ui:305
+msgctxt "deletecontents|extended_tip|DeleteContentsDialog"
+msgid "Specifies the contents to be deleted from the active cell or from a selected cell range."
+msgstr ""
+
#. gB36A
#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:8
msgctxt "descriptivestatisticsdialog|DescriptiveStatisticsDialog"
@@ -20993,47 +21887,59 @@ msgid "Descriptive Statistics"
msgstr "Kuvailevat tunnusluvut"
#. bFQ3F
-#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:104
+#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:100
msgctxt "descriptivestatisticsdialog|input-range-label"
msgid "Input range:"
msgstr "Lähdealue:"
#. dDhc5
-#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:143
+#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:139
msgctxt "descriptivestatisticsdialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. Z83k7
-#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:186
+#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:182
msgctxt "descriptivestatisticsdialog|label1"
msgid "Data"
msgstr "Tiedot"
#. ABEPC
-#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:221
+#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:217
msgctxt "descriptivestatisticsdialog|groupedby-columns-radio"
msgid "_Columns"
msgstr "Sarakkeet"
#. 45rGR
-#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:237
+#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:233
msgctxt "descriptivestatisticsdialog|groupedby-rows-radio"
msgid "_Rows"
msgstr "Rivit"
#. MKEzF
-#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:259
+#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:255
msgctxt "descriptivestatisticsdialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
+#. 8UDQc
+#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:280
+msgctxt "descriptivestatisticsdialog|extended_tip|DescriptiveStatisticsDialog"
+msgid "Fill a table in the spreadsheet with the main statistical properties of the data set."
+msgstr ""
+
#. f98e2
#: sc/uiconfig/scalc/ui/doubledialog.ui:8
msgctxt "doubledialog|DoubleDialog"
msgid "Edit Setting"
msgstr "Muokkaa asetusta"
+#. X85Wx
+#: sc/uiconfig/scalc/ui/doubledialog.ui:114
+msgctxt "doubledialog|extended_tip|DoubleDialog"
+msgid "Enter or change the value of the selected setting."
+msgstr ""
+
#. Bp3Fw
#: sc/uiconfig/scalc/ui/dropmenu.ui:12
msgctxt "dropmenu|SCSTR_DRAGMODE"
@@ -21046,84 +21952,180 @@ msgctxt "dropmenu|hyperlink"
msgid "Insert as Hyperlink"
msgstr "Lisää hyperlinkkinä"
+#. EVfz4
+#: sc/uiconfig/scalc/ui/dropmenu.ui:28
+msgctxt "dropmenu|extended_tip|hyperlink"
+msgid "Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document."
+msgstr ""
+
#. sRq6E
-#: sc/uiconfig/scalc/ui/dropmenu.ui:32
+#: sc/uiconfig/scalc/ui/dropmenu.ui:37
msgctxt "dropmenu|link"
msgid "Insert as Link"
msgstr "Lisää linkkinä"
+#. sUfUu
+#: sc/uiconfig/scalc/ui/dropmenu.ui:43
+msgctxt "dropmenu|extended_tip|link"
+msgid "Creates a link when you drag-and-drop an object from the Navigator into a document."
+msgstr ""
+
#. HHS5F
-#: sc/uiconfig/scalc/ui/dropmenu.ui:42
+#: sc/uiconfig/scalc/ui/dropmenu.ui:52
msgctxt "dropmenu|copy"
msgid "Insert as Copy"
msgstr "Lisää kopiona"
+#. UkVHD
+#: sc/uiconfig/scalc/ui/dropmenu.ui:58
+msgctxt "dropmenu|extended_tip|copy"
+msgid "Generates a copy when you drag-and-drop an object from the Navigator into a document."
+msgstr ""
+
#. YDhgA
-#: sc/uiconfig/scalc/ui/dropmenu.ui:56
+#: sc/uiconfig/scalc/ui/dropmenu.ui:71
msgctxt "dropmenu|SCSTR_DISPLAY"
msgid "Display"
msgstr ""
+#. kzFT9
+#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:15
+msgctxt "erroralerttabpage-mobile|tsbshow"
+msgid "Show error _message when invalid values are entered"
+msgstr ""
+
+#. yMbrW
+#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:43
+msgctxt "erroralerttabpage-mobile|action_label"
+msgid "_Action:"
+msgstr ""
+
+#. 2sruM
+#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:57
+msgctxt "erroralerttabpage-mobile|title_label"
+msgid "_Title:"
+msgstr ""
+
+#. DALxA
+#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:104
+msgctxt "erroralerttabpage-mobile|errormsg_label"
+msgid "_Error message:"
+msgstr ""
+
+#. ZzEdw
+#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:117
+msgctxt "erroralerttabpage-mobile|browseBtn"
+msgid "_Browse..."
+msgstr "Selaa..."
+
+#. hsbzw
+#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:133
+msgctxt "erroralerttabpage-mobile|actionCB"
+msgid "Stop"
+msgstr ""
+
+#. fcLJh
+#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:134
+msgctxt "erroralerttabpage-mobile|actionCB"
+msgid "Warning"
+msgstr "Varoitus"
+
+#. trGJe
+#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:135
+msgctxt "erroralerttabpage-mobile|actionCB"
+msgid "Information"
+msgstr ""
+
#. PL8Bz
#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:15
msgctxt "erroralerttabpage|tsbshow"
msgid "Show error _message when invalid values are entered"
msgstr "Näytä virheilmoitus virheellisten arvojen syöttämisestä"
+#. J7C8e
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:26
+msgctxt "erroralerttabpage|extended_tip|tsbshow"
+msgid "Displays the error message that you enter in the Contents area when invalid data is entered in a cell."
+msgstr ""
+
#. pFAUd
-#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:59
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:64
msgctxt "erroralerttabpage|action_label"
msgid "_Action:"
msgstr "Toiminto:"
#. 6uRXn
-#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:73
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:78
msgctxt "erroralerttabpage|title_label"
msgid "_Title:"
msgstr "Otsikko:"
+#. awD2D
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:102
+msgctxt "erroralerttabpage|extended_tip|errorMsg"
+msgid "Enter the message that you want to display when invalid data is entered in a cell."
+msgstr ""
+
#. HS6Tu
-#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:120
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:130
msgctxt "erroralerttabpage|errormsg_label"
msgid "_Error message:"
msgstr "Virheilmoitus:"
#. gFYoH
-#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:133
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:143
msgctxt "erroralerttabpage|browseBtn"
msgid "_Browse..."
msgstr "Selaa..."
-#. BKReu
+#. pWEXG
#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:150
+msgctxt "erroralerttabpage|extended_tip|browseBtn"
+msgid "Opens the Macro 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."
+msgstr ""
+
+#. BKReu
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:165
msgctxt "erroralerttabpage|actionCB"
msgid "Stop"
msgstr "Pysäytä"
#. oBEAz
-#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:151
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:166
msgctxt "erroralerttabpage|actionCB"
msgid "Warning"
msgstr "Varoitus"
#. mfW77
-#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:152
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:167
msgctxt "erroralerttabpage|actionCB"
msgid "Information"
msgstr "Ilmoitus"
#. D974D
-#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:153
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:168
msgctxt "erroralerttabpage|actionCB"
msgid "Macro"
msgstr "Makro"
+#. zCdHM
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:172
+msgctxt "erroralerttabpage|extended_tip|actionCB"
+msgid "Select the action that you want to occur when invalid data is entered in a cell."
+msgstr ""
+
#. 88Yb3
-#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:169
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:189
msgctxt "erroralerttabpage|label1"
msgid "Contents"
msgstr "Sisältö"
+#. q2Cbr
+#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:204
+msgctxt "erroralerttabpage|extended_tip|ErrorAlertTabPage"
+msgid "Define the error message that is displayed when invalid data is entered in a cell."
+msgstr ""
+
#. nWmSN
#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:14
msgctxt "exponentialsmoothingdialog|ExponentialSmoothingDialog"
@@ -21131,53 +22133,59 @@ msgid "Exponential Smoothing"
msgstr "Eksponentiaalinen tasoitus"
#. ZCUFP
-#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:110
+#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:106
msgctxt "exponentialsmoothingdialog|input-range-label"
msgid "Input range:"
msgstr "Lähdealue:"
#. XCDYH
-#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:149
+#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:145
msgctxt "exponentialsmoothingdialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. nq9yR
-#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:192
+#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:188
msgctxt "exponentialsmoothingdialog|label5"
msgid "Data"
msgstr "Tiedot"
#. 5bpGm
-#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:227
+#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:223
msgctxt "exponentialsmoothingdialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sarakkeet"
#. kRqVA
-#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:243
+#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:239
msgctxt "exponentialsmoothingdialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rivit"
#. JU2hx
-#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:265
+#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:261
msgctxt "exponentialsmoothingdialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
#. w4UYJ
-#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:302
+#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:298
msgctxt "exponentialsmoothingdialog|smoothing-factor-label"
msgid "Smoothing factor:"
msgstr "Tasoituskerroin:"
#. E4nAQ
-#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:335
+#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:331
msgctxt "exponentialsmoothingdialog|label1"
msgid "Parameters"
msgstr "Parametrit"
+#. kcYtb
+#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:356
+msgctxt "exponentialsmoothingdialog|extended_tip|ExponentialSmoothingDialog"
+msgid "Results in a smoothed data series"
+msgstr ""
+
#. DbhH8
#: sc/uiconfig/scalc/ui/externaldata.ui:23
msgctxt "externaldata|ExternalDataDialog"
@@ -21185,41 +22193,77 @@ msgid "External Data"
msgstr "Ulkoiset tiedot"
#. APBGW
-#: sc/uiconfig/scalc/ui/externaldata.ui:132
+#: sc/uiconfig/scalc/ui/externaldata.ui:129
msgctxt "externaldata|url|tooltip_text"
msgid "Enter the URL of the source document in the local file system or Internet here."
msgstr "Kirjoita tähän paikallisessa tiedostojärjestelmässä tai Internetissä olevan lähdetiedoston URL-osoite."
+#. CvbAp
+#: sc/uiconfig/scalc/ui/externaldata.ui:140
+msgctxt "externaldata|extended_tip|url"
+msgid "Enter the URL or the file name that contains the data that you want to insert, and then press Enter."
+msgstr ""
+
#. 2sbsJ
-#: sc/uiconfig/scalc/ui/externaldata.ui:150
+#: sc/uiconfig/scalc/ui/externaldata.ui:152
msgctxt "externaldata|browse"
msgid "_Browse..."
msgstr "Selaa..."
+#. jrW22
+#: sc/uiconfig/scalc/ui/externaldata.ui:159
+msgctxt "externaldata|extended_tip|browse"
+msgid "Open a file dialog to locate the file containing the data you want to insert."
+msgstr ""
+
#. FpyfT
-#: sc/uiconfig/scalc/ui/externaldata.ui:177
+#: sc/uiconfig/scalc/ui/externaldata.ui:184
msgctxt "externaldata|label1"
msgid "URL of _External Data Source"
msgstr "_Ulkoisen tietolähteen URL-osoite"
+#. x9ENQ
+#: sc/uiconfig/scalc/ui/externaldata.ui:254
+msgctxt "externaldata|extended_tip|ranges"
+msgid "Select the table or the data range that you want to insert."
+msgstr ""
+
#. EhEDC
-#: sc/uiconfig/scalc/ui/externaldata.ui:261
+#: sc/uiconfig/scalc/ui/externaldata.ui:273
msgctxt "externaldata|reload"
msgid "_Update every:"
msgstr "_Päivitysväli:"
+#. kidEA
+#: sc/uiconfig/scalc/ui/externaldata.ui:285
+msgctxt "externaldata|extended_tip|reload"
+msgid "Enter the number of seconds to wait before the external data are reloaded into the current document."
+msgstr ""
+
+#. rytN5
+#: sc/uiconfig/scalc/ui/externaldata.ui:311
+msgctxt "externaldata|extended_tip|delay"
+msgid "Enter the number of seconds to wait before the external data are reloaded into the current document."
+msgstr ""
+
#. eSJFW
-#: sc/uiconfig/scalc/ui/externaldata.ui:303
+#: sc/uiconfig/scalc/ui/externaldata.ui:325
msgctxt "externaldata|secondsft"
msgid "_seconds"
msgstr "sekuntia"
#. iBSZx
-#: sc/uiconfig/scalc/ui/externaldata.ui:334
+#: sc/uiconfig/scalc/ui/externaldata.ui:356
msgctxt "externaldata|label2"
msgid "_Available Tables/Ranges"
msgstr "_Käytettävissä olevat taulukot/alueet"
+#. b9pvu
+#: sc/uiconfig/scalc/ui/externaldata.ui:390
+msgctxt "externaldata|extended_tip|ExternalDataDialog"
+msgid "Inserts data from an HTML, Calc, CSV or Excel file into the current sheet as a link. The data must be located within a named range."
+msgstr ""
+
#. tKoGc
#: sc/uiconfig/scalc/ui/filldlg.ui:8
msgctxt "filldlg|FillSeriesDialog"
@@ -21227,113 +22271,234 @@ msgid "Fill Series"
msgstr "Sarjat"
#. S4ehT
-#: sc/uiconfig/scalc/ui/filldlg.ui:107
+#: sc/uiconfig/scalc/ui/filldlg.ui:104
msgctxt "filldlg|down"
msgid "_Down"
msgstr "Alas"
+#. FK3U8
+#: sc/uiconfig/scalc/ui/filldlg.ui:114
+msgctxt "filldlg|extended_tip|down"
+msgid "Creates a downward series in the selected cell range for the column using the defined increment to the end value."
+msgstr ""
+
#. KwAZX
-#: sc/uiconfig/scalc/ui/filldlg.ui:124
+#: sc/uiconfig/scalc/ui/filldlg.ui:126
msgctxt "filldlg|right"
msgid "_Right"
msgstr "Oikealle"
+#. UGDpf
+#: sc/uiconfig/scalc/ui/filldlg.ui:136
+msgctxt "filldlg|extended_tip|right"
+msgid "Creates a series running from left to right within the selected cell range using the defined increment to the end value."
+msgstr ""
+
#. pGFFC
-#: sc/uiconfig/scalc/ui/filldlg.ui:141
+#: sc/uiconfig/scalc/ui/filldlg.ui:148
msgctxt "filldlg|up"
msgid "_Up"
msgstr "Ylös"
-#. eR9rC
+#. y6hB6
#: sc/uiconfig/scalc/ui/filldlg.ui:158
+msgctxt "filldlg|extended_tip|up"
+msgid "Creates an upward series in the cell range of the column using the defined increment to the end value."
+msgstr ""
+
+#. eR9rC
+#: sc/uiconfig/scalc/ui/filldlg.ui:170
msgctxt "filldlg|left"
msgid "_Left"
msgstr "Vasemmalle"
+#. CZSAg
+#: sc/uiconfig/scalc/ui/filldlg.ui:180
+msgctxt "filldlg|extended_tip|left"
+msgid "Creates a series running from right to left in the selected cell range using the defined increment to the end value."
+msgstr ""
+
#. DFeXS
-#: sc/uiconfig/scalc/ui/filldlg.ui:182
+#: sc/uiconfig/scalc/ui/filldlg.ui:199
msgctxt "filldlg|label1"
msgid "Direction"
msgstr "Suunta"
#. yin3x
-#: sc/uiconfig/scalc/ui/filldlg.ui:217
+#: sc/uiconfig/scalc/ui/filldlg.ui:234
msgctxt "filldlg|linear"
msgid "Li_near"
msgstr "Lineaarinen"
+#. ANeeA
+#: sc/uiconfig/scalc/ui/filldlg.ui:244
+msgctxt "filldlg|extended_tip|linear"
+msgid "Creates a linear number series using the defined increment and end value."
+msgstr ""
+
#. rDwaa
-#: sc/uiconfig/scalc/ui/filldlg.ui:234
+#: sc/uiconfig/scalc/ui/filldlg.ui:256
msgctxt "filldlg|growth"
msgid "_Growth"
msgstr "Kasvu"
+#. Ve8TQ
+#: sc/uiconfig/scalc/ui/filldlg.ui:266
+msgctxt "filldlg|extended_tip|growth"
+msgid "Creates a growth series using the defined increment and end value."
+msgstr ""
+
#. hJEhP
-#: sc/uiconfig/scalc/ui/filldlg.ui:251
+#: sc/uiconfig/scalc/ui/filldlg.ui:278
msgctxt "filldlg|date"
msgid "Da_te"
msgstr "Päivämäärä"
+#. 7VCDM
+#: sc/uiconfig/scalc/ui/filldlg.ui:288
+msgctxt "filldlg|extended_tip|date"
+msgid "Creates a date series using the defined increment and end date."
+msgstr ""
+
#. mDADM
-#: sc/uiconfig/scalc/ui/filldlg.ui:268
+#: sc/uiconfig/scalc/ui/filldlg.ui:300
msgctxt "filldlg|autofill"
msgid "_AutoFill"
msgstr "Automaattinen täyttö"
+#. pzZdq
+#: sc/uiconfig/scalc/ui/filldlg.ui:310
+msgctxt "filldlg|extended_tip|autofill"
+msgid "Forms a series directly in the sheet."
+msgstr ""
+
#. GhoPg
-#: sc/uiconfig/scalc/ui/filldlg.ui:292
+#: sc/uiconfig/scalc/ui/filldlg.ui:329
msgctxt "filldlg|label2"
msgid "Series Type"
msgstr "Sarjatyyppi"
#. 3Mtj5
-#: sc/uiconfig/scalc/ui/filldlg.ui:327
+#: sc/uiconfig/scalc/ui/filldlg.ui:364
msgctxt "filldlg|day"
msgid "Da_y"
msgstr "Päivä"
+#. HF9aC
+#: sc/uiconfig/scalc/ui/filldlg.ui:374
+msgctxt "filldlg|extended_tip|day"
+msgid "Use the Date series type and this option to create a series using all seven days of the week. Unit of Increment is day."
+msgstr ""
+
#. v2J3J
-#: sc/uiconfig/scalc/ui/filldlg.ui:344
+#: sc/uiconfig/scalc/ui/filldlg.ui:386
msgctxt "filldlg|week"
msgid "_Weekday"
msgstr "Arkipäivä"
+#. X597m
+#: sc/uiconfig/scalc/ui/filldlg.ui:397
+msgctxt "filldlg|extended_tip|week"
+msgid "Use the Date series type and this option to create a series only using the five weekdays. Unit of Increment is day."
+msgstr ""
+
#. gjGCn
-#: sc/uiconfig/scalc/ui/filldlg.ui:362
+#: sc/uiconfig/scalc/ui/filldlg.ui:409
msgctxt "filldlg|month"
msgid "_Month"
msgstr "Kuukausi"
+#. 5AG5E
+#: sc/uiconfig/scalc/ui/filldlg.ui:419
+msgctxt "filldlg|extended_tip|month"
+msgid "Use the Date series type and this option to form a series which unit of Increment is month."
+msgstr ""
+
#. zwDGB
-#: sc/uiconfig/scalc/ui/filldlg.ui:379
+#: sc/uiconfig/scalc/ui/filldlg.ui:431
msgctxt "filldlg|year"
msgid "Y_ear"
msgstr "Vuosi"
+#. ME4Da
+#: sc/uiconfig/scalc/ui/filldlg.ui:441
+msgctxt "filldlg|extended_tip|year"
+msgid "Use the Date series type and this option to create a series which unit of Increment is year."
+msgstr ""
+
#. J5aQN
-#: sc/uiconfig/scalc/ui/filldlg.ui:403
+#: sc/uiconfig/scalc/ui/filldlg.ui:460
msgctxt "filldlg|tuL"
msgid "Time Unit"
msgstr "Aikayksikkö"
#. 5BuDy
-#: sc/uiconfig/scalc/ui/filldlg.ui:425
+#: sc/uiconfig/scalc/ui/filldlg.ui:482
msgctxt "filldlg|startL"
msgid "_Start value:"
msgstr "Aloitusarvo:"
#. mQQjH
-#: sc/uiconfig/scalc/ui/filldlg.ui:439
+#: sc/uiconfig/scalc/ui/filldlg.ui:496
msgctxt "filldlg|endL"
msgid "End _value:"
msgstr "Lopetusarvo:"
#. UUkTb
-#: sc/uiconfig/scalc/ui/filldlg.ui:453
+#: sc/uiconfig/scalc/ui/filldlg.ui:510
msgctxt "filldlg|incrementL"
msgid "In_crement:"
msgstr "Lisäys:"
+#. keEyA
+#: sc/uiconfig/scalc/ui/filldlg.ui:527
+msgctxt "filldlg|extended_tip|startValue"
+msgid "Determines the start value for the series."
+msgstr ""
+
+#. Ubfua
+#: sc/uiconfig/scalc/ui/filldlg.ui:543
+msgctxt "filldlg|extended_tip|endValue"
+msgid "Determines the end value for the series."
+msgstr ""
+
+#. LMokQ
+#: sc/uiconfig/scalc/ui/filldlg.ui:559
+msgctxt "filldlg|extended_tip|increment"
+msgid "Determines the value by which the series of the selected type increases by each step."
+msgstr ""
+
+#. AvMwH
+#: sc/uiconfig/scalc/ui/filldlg.ui:597
+msgctxt "filldlg|extended_tip|FillSeriesDialog"
+msgid "Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type."
+msgstr ""
+
+#. cd5X5
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:121
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:123
+msgctxt "filterdropdown|STR_EDIT_SEARCH_ITEMS"
+msgid "Search items..."
+msgstr ""
+
+#. zKwWE
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:157
+msgctxt "filterdropdown|STR_BTN_TOGGLE_ALL"
+msgid "All"
+msgstr ""
+
+#. JsSz6
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:177
+msgctxt "filterdropdown|STR_BTN_SELECT_CURRENT"
+msgid "Show only the current item."
+msgstr ""
+
+#. vBQYB
+#: sc/uiconfig/scalc/ui/filterdropdown.ui:192
+msgctxt "filterdropdown|STR_BTN_UNSELECT_CURRENT"
+msgid "Hide only the current item."
+msgstr ""
+
#. AfnFz
#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:33
msgctxt "floatingborderstyle|none|tooltip_text"
@@ -21574,6 +22739,12 @@ msgctxt "formulacalculationoptions|label3"
msgid "Contents to Numbers"
msgstr "Sisältö luvuiksi"
+#. FY66D
+#: sc/uiconfig/scalc/ui/formulacalculationoptions.ui:219
+msgctxt "extended_tip|FormulaCalculationOptions"
+msgid "Sets the rules for conversion from strings values to numeric values, string values to cell references, and strings values to date and time values. This affects built-in functions such as INDIRECT that takes a reference as a string value or date and time functions that takes arguments as string values in local or ISO 8601 formats."
+msgstr ""
+
#. qUwp9
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:15
msgctxt "fourieranalysisdialog|FourierAnalysisDialog"
@@ -21581,71 +22752,77 @@ msgid "Fourier Analysis"
msgstr "Fourier-analyysi"
#. XddnU
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:111
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:107
msgctxt "fourieranalysisdialog|input-range-label"
msgid "Input range:"
msgstr ""
#. ZkLNa
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:150
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:146
msgctxt "fourieranalysisdialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. rk4DG
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:187
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:183
msgctxt "fourieranalysisdialog|withlabels-check"
msgid "Input range has label"
msgstr ""
#. QF9sz
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:211
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:207
msgctxt "fourieranalysisdialog|label1"
msgid "Data"
msgstr "Tiedot"
#. zDdDi
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:246
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:242
msgctxt "fourieranalysisdialog|groupedby-columns-radio"
msgid "_Columns"
msgstr "_Sarakkeet"
#. HJc6Q
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:262
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:258
msgctxt "fourieranalysisdialog|groupedby-rows-radio"
msgid "_Rows"
msgstr "_Rivit"
#. 78Cai
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:284
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:280
msgctxt "fourieranalysisdialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
#. dqC28
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:315
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:311
msgctxt "fourieranalysisdialog|inverse-check"
msgid "Inverse"
msgstr "Käänteinen"
#. ELiT5
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:331
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:327
msgctxt "fourieranalysisdialog|polar-check"
msgid "Output in polar form"
msgstr ""
#. Trwum
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:352
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:348
msgctxt "fourieranalysisdialog|label4"
msgid "Minimum magnitude for polar form output (in dB)"
msgstr ""
#. 9MVfz
-#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:386
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:382
msgctxt "fourieranalysisdialog|label3"
msgid "Options"
msgstr "Asetukset"
+#. CAw2k
+#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:419
+msgctxt "fourieranalysisdialog|extended_tip|FourierAnalysisDialog"
+msgid "Produces the Fourier analysis of a data set by computing the Discrete Fourier Transform (DFT) of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms."
+msgstr ""
+
#. FEwZR
#: sc/uiconfig/scalc/ui/functionpanel.ui:59
msgctxt "functionpanel|insert|tooltip_text"
@@ -21730,8 +22907,20 @@ msgctxt "functionpanel|category"
msgid "Add-in"
msgstr "Lisäosa"
+#. tDNFD
+#: sc/uiconfig/scalc/ui/functionpanel.ui:89
+msgctxt "functionpanel|extended_tip|category"
+msgid "Displays the available functions."
+msgstr ""
+
+#. V9ATp
+#: sc/uiconfig/scalc/ui/functionpanel.ui:136
+msgctxt "functionpanel|extended_tip|funclist"
+msgid "Displays the available functions."
+msgstr ""
+
#. rmQie
-#: sc/uiconfig/scalc/ui/functionpanel.ui:160
+#: sc/uiconfig/scalc/ui/functionpanel.ui:170
msgctxt "functionpanel|funcdesc"
msgid "label"
msgstr "selite"
@@ -21742,30 +22931,78 @@ msgctxt "goalseekdlg|GoalSeekDialog"
msgid "Goal Seek"
msgstr "Tavoitteen haku"
+#. fiWse
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:30
+msgctxt "goalseekdlg|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
+#. fKq27
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:51
+msgctxt "goalseekdlg|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
#. qJ3YX
-#: sc/uiconfig/scalc/ui/goalseekdlg.ui:102
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:109
msgctxt "goalseekdlg|formulatext"
msgid "_Formula cell:"
msgstr "_Kaavasolu:"
#. t8oEF
-#: sc/uiconfig/scalc/ui/goalseekdlg.ui:115
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:122
msgctxt "goalseekdlg|label3"
msgid "Target _value:"
msgstr "Kohde_arvo:"
#. ffY7i
-#: sc/uiconfig/scalc/ui/goalseekdlg.ui:128
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:135
msgctxt "goalseekdlg|vartext"
msgid "Variable _cell:"
msgstr "Muuttuja_solu:"
+#. gA4H9
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:153
+msgctxt "goalseekdlg|extended_tip|formulaedit"
+msgid "In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference."
+msgstr ""
+
+#. Fy8Wx
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:171
+msgctxt "goalseekdlg|extended_tip|target"
+msgid "Specifies the value you want to achieve as a new result."
+msgstr ""
+
+#. BvREA
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:189
+msgctxt "goalseekdlg|extended_tip|varedit"
+msgid "Specifies the reference for the cell that contains the value you want to adjust in order to reach the target."
+msgstr ""
+
+#. hVQYj
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:205
+msgctxt "goalseekdlg|extended_tip|formulabutton"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. phzQE
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:221
+msgctxt "goalseekdlg|extended_tip|varbutton"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. mHUzW
-#: sc/uiconfig/scalc/ui/goalseekdlg.ui:209
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:241
msgctxt "goalseekdlg|label1"
msgid "Default Settings"
msgstr "Oletusasetukset"
+#. Aguih
+#: sc/uiconfig/scalc/ui/goalseekdlg.ui:266
+msgctxt "goalseekdlg|extended_tip|GoalSeekDialog"
+msgid "Opens a dialog where you can solve an equation with a variable."
+msgstr ""
+
#. XMHEU
#: sc/uiconfig/scalc/ui/groupbydate.ui:27
msgctxt "groupbydate|PivotTableGroupByDate"
@@ -21881,19 +23118,19 @@ msgid "Group"
msgstr "Ryhmä"
#. q2TFi
-#: sc/uiconfig/scalc/ui/groupdialog.ui:100
+#: sc/uiconfig/scalc/ui/groupdialog.ui:99
msgctxt "groupdialog|rows"
msgid "_Rows"
msgstr "Rivit"
#. MFqB6
-#: sc/uiconfig/scalc/ui/groupdialog.ui:117
+#: sc/uiconfig/scalc/ui/groupdialog.ui:116
msgctxt "groupdialog|cols"
msgid "_Columns"
msgstr "Sarakkeet"
#. EAEmh
-#: sc/uiconfig/scalc/ui/groupdialog.ui:141
+#: sc/uiconfig/scalc/ui/groupdialog.ui:140
msgctxt "groupdialog|includeLabel"
msgid "Include"
msgstr "Sisällytä"
@@ -21952,126 +23189,198 @@ msgctxt "headerfootercontent|labelFT_RIGHT"
msgid "R_ight area"
msgstr "_Oikea alue"
+#. skPBa
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:140
+msgctxt "headerfootercontent|extended_tip|textviewWND_LEFT"
+msgid "Enter the text to be displayed at the left side of the header or footer."
+msgstr ""
+
+#. yHbZN
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:170
+msgctxt "headerfootercontent|extended_tip|textviewWND_CENTER"
+msgid "Enter the text to be displayed at the center of the header or footer."
+msgstr ""
+
+#. YjmDY
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:200
+msgctxt "headerfootercontent|extended_tip|textviewWND_RIGHT"
+msgid "Enter the text to be displayed at the right side of the header or footer."
+msgstr ""
+
#. h5HbY
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:221
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:236
msgctxt "headerfootercontent|labelFT_H_DEFINED"
msgid "_Header"
msgstr "Ylätunniste"
#. di3Ad
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:236
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:251
msgctxt "headerfootercontent|labelFT_F_DEFINED"
msgid "_Footer"
msgstr "_Alatunniste"
#. z9EEa
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:263
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:278
msgctxt "headerfootercontent|labelFT_H_CUSTOM"
msgid "Custom header"
msgstr "Mukautettu ylätunniste"
#. kDb9h
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:276
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:291
msgctxt "headerfootercontent|labelFT_F_CUSTOM"
msgid "Custom footer"
msgstr "Mukautettu alatunniste"
#. DqPqG
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:301
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:316
msgctxt "headerfootercontent|buttonBTN_TEXT|tooltip_text"
msgid "Text Attributes"
msgstr "Tekstin ominaisuudet"
+#. VHkhc
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:320
+msgctxt "headerfootercontent|extended_tip|buttonBTN_TEXT"
+msgid "Opens a dialog to assign formats to new or selected text."
+msgstr ""
+
#. 9XxsD
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:315
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:335
msgctxt "headerfootercontent|buttonBTN_FILE|tooltip_text"
msgid "Title"
msgstr "Otsikko"
+#. CKzAC
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:343
+msgctxt "headerfootercontent|extended_tip|buttonBTN_FILE"
+msgid "Inserts a file name placeholder in the selected area."
+msgstr ""
+
#. 9qxRg
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:333
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:358
msgctxt "headerfootercontent|buttonBTN_TABLE|tooltip_text"
msgid "Sheet Name"
msgstr "Taulukon nimi"
+#. iGsX7
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:362
+msgctxt "headerfootercontent|extended_tip|buttonBTN_TABLE"
+msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document."
+msgstr ""
+
#. QnDzF
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:347
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:377
msgctxt "headerfootercontent|buttonBTN_PAGE|tooltip_text"
msgid "Page"
msgstr "Sivu"
+#. HEapG
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:381
+msgctxt "headerfootercontent|extended_tip|buttonBTN_PAGE"
+msgid "Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document."
+msgstr ""
+
#. y5CWn
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:361
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:396
msgctxt "headerfootercontent|buttonBTN_PAGES|tooltip_text"
msgid "Pages"
msgstr "Sivuja"
+#. eR5HH
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:400
+msgctxt "headerfootercontent|extended_tip|buttonBTN_PAGES"
+msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document."
+msgstr ""
+
#. BhqdB
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:375
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:415
msgctxt "headerfootercontent|buttonBTN_DATE|tooltip_text"
msgid "Date"
msgstr "Päivämäärä"
+#. XvcER
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:419
+msgctxt "headerfootercontent|extended_tip|buttonBTN_DATE"
+msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document."
+msgstr ""
+
#. m5EGS
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:389
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:434
msgctxt "headerfootercontent|buttonBTN_TIME|tooltip_text"
msgid "Time"
msgstr "Aika"
+#. cpfem
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:438
+msgctxt "headerfootercontent|extended_tip|buttonBTN_TIME"
+msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document."
+msgstr ""
+
+#. 6FVPq
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:460
+msgctxt "headerfootercontent|extended_tip|comboLB_DEFINED"
+msgid "Select a predefined header or footer from the list."
+msgstr ""
+
#. 2TJzJ
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:437
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:492
msgctxt "headerfootercontent|label2"
msgid "Use the buttons to change the font or insert field commands such as date, time, etc."
msgstr "Painikkeilla voit vaihtaa fonttia tai lisätä kenttiä, kuten päivämäärä, aika jne."
#. WBsTf
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:446
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:501
msgctxt "headerfootercontent|label1"
msgid "Note"
msgstr "Huomautus"
#. X2HEK
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:468
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:523
msgctxt "headerfootercontent|labelSTR_HF_NONE_IN_BRACKETS"
msgid "(none)"
msgstr "(ei mitään)"
#. RSazM
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:480
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:535
msgctxt "headerfootercontent|labelSTR_PAGE"
msgid "Page"
msgstr "Sivu"
#. CMDYZ
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:492
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:547
msgctxt "headerfootercontent|labelSTR_HF_OF_QUESTION"
msgid "of ?"
msgstr " / ?"
#. jQyGW
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:504
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:559
msgctxt "headerfootercontent|labelSTR_HF_CONFIDENTIAL"
msgid "Confidential"
msgstr "Luottamuksellinen"
#. EeAAh
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:516
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:571
msgctxt "headerfootercontent|labelSTR_HF_CREATED_BY"
msgid "Created by"
msgstr "Tekijä"
#. CASF2
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:528
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:583
msgctxt "headerfootercontent|labelSTR_HF_CUSTOMIZED"
msgid "Customized"
msgstr "Mukautettu"
#. wZN6q
-#: sc/uiconfig/scalc/ui/headerfootercontent.ui:540
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:595
msgctxt "headerfootercontent|labelSTR_HF_OF"
msgid "of"
msgstr "/"
+#. SDx4X
+#: sc/uiconfig/scalc/ui/headerfootercontent.ui:612
+msgctxt "headerfootercontent|extended_tip|HeaderFooterContent"
+msgid "Defines or formats a header or footer for a Page Style."
+msgstr ""
+
#. CAMCt
#: sc/uiconfig/scalc/ui/headerfooterdialog.ui:8
msgctxt "headerfooterdialog|HeaderFooterDialog"
@@ -22097,53 +23406,107 @@ msgid "Import File"
msgstr "Tuo tiedosto"
#. VWcgp
-#: sc/uiconfig/scalc/ui/imoptdialog.ui:111
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:108
msgctxt "imoptdialog|charsetft"
msgid "_Character set:"
msgstr "Merkistö:"
#. YzedG
-#: sc/uiconfig/scalc/ui/imoptdialog.ui:124
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:121
msgctxt "imoptdialog|fieldft"
msgid "_Field delimiter:"
msgstr "Kenttäerotin:"
#. bhjBy
-#: sc/uiconfig/scalc/ui/imoptdialog.ui:138
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:135
msgctxt "imoptdialog|textft"
msgid "Strin_g delimiter:"
msgstr "Merkkijonoerotin:"
#. Ed9o4
-#: sc/uiconfig/scalc/ui/imoptdialog.ui:150
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:147
msgctxt "imoptdialog|asshown"
msgid "Save cell content as _shown"
msgstr "Tallenna solun sisältö kuten näytetty"
+#. kWBhB
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:156
+msgctxt "imoptdialog|extended_tip|asshown"
+msgid "Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software."
+msgstr "Sallitaan oletuksena, tieto tallennetaan niin kuin se on näytöllä, käytetyt lukumuodot mukaan luettuina. Jos valintaruutu ei ole merkitty, tiedot tallennetaan muotoilemattomina, niin kuin vanhemmissa ohjelmaversioissa."
+
#. Fn8ts
-#: sc/uiconfig/scalc/ui/imoptdialog.ui:166
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:168
msgctxt "imoptdialog|formulas"
msgid "Save cell fo_rmulas instead of calculated values"
msgstr "Tallenna solujen kaavat laskettujen arvojen sijasta"
#. DAEFJ
-#: sc/uiconfig/scalc/ui/imoptdialog.ui:182
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:184
msgctxt "imoptdialog|quoteall"
msgid "_Quote all text cells"
msgstr "Lainausmerkit kaikkiin tekstisoluihin"
+#. vboDu
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:193
+msgctxt "imoptdialog|extended_tip|quoteall"
+msgid "Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character."
+msgstr "Vientitiedostossa kaikkien tekstisolujen sisältö ympäröidään valituilla lainausmerkeillä. Jos valinta ei ole käytössä, vain ne tekstisolut, jotka sisältävät kenttien välisen erotinmerkin, ympäröidään lainausmerkeillä."
+
#. KGh9G
-#: sc/uiconfig/scalc/ui/imoptdialog.ui:198
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:205
msgctxt "imoptdialog|fixedwidth"
msgid "Fixed column _width"
msgstr "Kiinteä sarakkeen leveys"
+#. TfB45
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:214
+msgctxt "imoptdialog|extended_tip|fixedwidth"
+msgid "Exports all data fields with a fixed width."
+msgstr "Viedään kaikki tietokentät kiintein leveyksin."
+
+#. 6JaYQ
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:237
+msgctxt "imoptdialog|extended_tip|field"
+msgid "Choose or enter the field delimiter, which separates data fields."
+msgstr "Valitaan tai kirjoitetaan kenttien erotinmerkki, joka rajaa tietokentät."
+
+#. hRECE
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:259
+msgctxt "imoptdialog|extended_tip|text"
+msgid "Choose or enter the text delimiter, which encloses every data field."
+msgstr "Valitaan tai kirjoitetaan tekstin erotinmerkit, joilla rajataan tekstikentät."
+
+#. D2hqs
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:280
+msgctxt "imoptdialog|extended_tip|charsetdropdown"
+msgid "Specifies the character set for text export."
+msgstr "Määritetään teksti viennin merkistö."
+
+#. B8Jst
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:325
+msgctxt "imoptdialog|extended_tip|charsetlist"
+msgid "Select the character set from the options used for import/export."
+msgstr "Valitaan asetuksista tuonnissa tai viennissä käytettävä merkistö."
+
#. euP6n
-#: sc/uiconfig/scalc/ui/imoptdialog.ui:318
+#: sc/uiconfig/scalc/ui/imoptdialog.ui:350
msgctxt "imoptdialog|label"
msgid "Field Options"
msgstr "Kentän asetukset"
+#. SC6EQ
+#: sc/uiconfig/scalc/ui/inputstringdialog.ui:107
+msgctxt "inputstringdialog|extended_tip|name_entry"
+msgid "Enter a new name for the sheet here."
+msgstr ""
+
+#. MwM2i
+#: sc/uiconfig/scalc/ui/inputstringdialog.ui:136
+msgctxt "inputstringdialog|extended_tip|InputStringDialog"
+msgid "This command opens a dialog where you can assign a different name to the current sheet."
+msgstr ""
+
#. 3x5fz
#: sc/uiconfig/scalc/ui/insertcells.ui:8
msgctxt "insertcells|InsertCellsDialog"
@@ -22151,35 +23514,65 @@ msgid "Insert Cells"
msgstr "Lisää soluja"
#. ewgTB
-#: sc/uiconfig/scalc/ui/insertcells.ui:97
+#: sc/uiconfig/scalc/ui/insertcells.ui:96
msgctxt "insertcells|down"
msgid "Shift cells _down"
msgstr "Siirrä solut alas"
+#. FA4mZ
+#: sc/uiconfig/scalc/ui/insertcells.ui:106
+msgctxt "insertcells|extended_tip|down"
+msgid "Moves the contents of the selected range downward when cells are inserted."
+msgstr ""
+
#. FnbEo
-#: sc/uiconfig/scalc/ui/insertcells.ui:114
+#: sc/uiconfig/scalc/ui/insertcells.ui:118
msgctxt "insertcells|right"
msgid "Shift cells _right"
msgstr "Siirrä solut oikealle"
+#. 9UVgc
+#: sc/uiconfig/scalc/ui/insertcells.ui:128
+msgctxt "insertcells|extended_tip|right"
+msgid "Moves the contents of the selected range to the right when cells are inserted."
+msgstr ""
+
#. V4zVH
-#: sc/uiconfig/scalc/ui/insertcells.ui:131
+#: sc/uiconfig/scalc/ui/insertcells.ui:140
msgctxt "insertcells|rows"
msgid "Entire ro_w"
msgstr "Koko rivi"
+#. GZc24
+#: sc/uiconfig/scalc/ui/insertcells.ui:150
+msgctxt "insertcells|extended_tip|rows"
+msgid "Inserts an entire row. The position of the row is determined by the selection on the sheet."
+msgstr ""
+
#. 6UZ5M
-#: sc/uiconfig/scalc/ui/insertcells.ui:148
+#: sc/uiconfig/scalc/ui/insertcells.ui:162
msgctxt "insertcells|cols"
msgid "Entire _column"
msgstr "Koko sarake"
+#. oXcQW
+#: sc/uiconfig/scalc/ui/insertcells.ui:172
+msgctxt "insertcells|extended_tip|cols"
+msgid "Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns."
+msgstr ""
+
#. GkQo9
-#: sc/uiconfig/scalc/ui/insertcells.ui:171
+#: sc/uiconfig/scalc/ui/insertcells.ui:190
msgctxt "insertcells|label1"
msgid "Selection"
msgstr "Valinta"
+#. g2sxi
+#: sc/uiconfig/scalc/ui/insertcells.ui:215
+msgctxt "insertcells|extended_tip|InsertCellsDialog"
+msgid "Opens the Insert Cells dialog, in which you can insert new cells according to the options that you specify."
+msgstr ""
+
#. Ex63x
#: sc/uiconfig/scalc/ui/insertname.ui:20
msgctxt "insertname|InsertNameDialog"
@@ -22187,29 +23580,53 @@ msgid "Paste Names"
msgstr "Liitä nimet"
#. VU7xQ
-#: sc/uiconfig/scalc/ui/insertname.ui:54
+#: sc/uiconfig/scalc/ui/insertname.ui:51
msgctxt "insertname|pasteall"
msgid "_Paste All"
msgstr "Liitä kaikki"
+#. TuwoL
+#: sc/uiconfig/scalc/ui/insertname.ui:58
+msgctxt "insertname|extended_tip|pasteall"
+msgid "Inserts a list of all named areas and the corresponding cell references at the current cursor position."
+msgstr ""
+
+#. TNPzH
+#: sc/uiconfig/scalc/ui/insertname.ui:79
+msgctxt "insertname|extended_tip|paste"
+msgid "Inserts the selected named area and the corresponding cell reference at the current cursor position."
+msgstr ""
+
#. CJqeA
-#: sc/uiconfig/scalc/ui/insertname.ui:131
+#: sc/uiconfig/scalc/ui/insertname.ui:137
msgctxt "insertname|STR_HEADER_NAME"
msgid "Name"
msgstr "Nimi"
#. 28fLF
-#: sc/uiconfig/scalc/ui/insertname.ui:144
+#: sc/uiconfig/scalc/ui/insertname.ui:150
msgctxt "insertname|STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Alue tai lauseke"
#. kSc7p
-#: sc/uiconfig/scalc/ui/insertname.ui:157
+#: sc/uiconfig/scalc/ui/insertname.ui:163
msgctxt "insertname|STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
+#. XCYdx
+#: sc/uiconfig/scalc/ui/insertname.ui:174
+msgctxt "insertname|extended_tip|ctrl"
+msgid "Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position."
+msgstr ""
+
+#. xuLCu
+#: sc/uiconfig/scalc/ui/insertname.ui:199
+msgctxt "insertname|extended_tip|InsertNameDialog"
+msgid "Inserts a defined named cell range at the current cursor's position."
+msgstr ""
+
#. nJ6Ep
#: sc/uiconfig/scalc/ui/insertsheet.ui:23
msgctxt "insertsheet|InsertSheetDialog"
@@ -22217,83 +23634,149 @@ msgid "Insert Sheet"
msgstr "Lisää taulukko"
#. kE6pE
-#: sc/uiconfig/scalc/ui/insertsheet.ui:120
+#: sc/uiconfig/scalc/ui/insertsheet.ui:117
msgctxt "insertsheet|before"
msgid "B_efore current sheet"
msgstr "_Ennen nykyistä taulukkoa"
+#. YRB9E
+#: sc/uiconfig/scalc/ui/insertsheet.ui:127
+msgctxt "insertsheet|extended_tip|before"
+msgid "Inserts a new sheet directly before the current sheet."
+msgstr ""
+
#. Y56sT
-#: sc/uiconfig/scalc/ui/insertsheet.ui:137
+#: sc/uiconfig/scalc/ui/insertsheet.ui:139
msgctxt "insertsheet|after"
msgid "_After current sheet"
msgstr "Nykyisen taulukon _perään"
+#. uiKdA
+#: sc/uiconfig/scalc/ui/insertsheet.ui:149
+msgctxt "insertsheet|extended_tip|after"
+msgid "Inserts a new sheet directly after the current sheet."
+msgstr ""
+
#. P8n4C
-#: sc/uiconfig/scalc/ui/insertsheet.ui:160
+#: sc/uiconfig/scalc/ui/insertsheet.ui:167
msgctxt "insertsheet|label1"
msgid "Position"
msgstr "Sijainti"
#. TumvT
-#: sc/uiconfig/scalc/ui/insertsheet.ui:206
+#: sc/uiconfig/scalc/ui/insertsheet.ui:213
msgctxt "insertsheet|new"
msgid "_New sheet"
msgstr "_Uusi taulukko"
+#. CyX37
+#: sc/uiconfig/scalc/ui/insertsheet.ui:223
+msgctxt "insertsheet|extended_tip|new"
+msgid "Creates a new sheet. Enter a sheet name in the Name field. Allowed characters are letters, numbers, spaces, and the underline character."
+msgstr ""
+
#. whnDy
-#: sc/uiconfig/scalc/ui/insertsheet.ui:238
+#: sc/uiconfig/scalc/ui/insertsheet.ui:250
msgctxt "insertsheet|countft"
msgid "N_o. of sheets:"
msgstr "Taulukoiden määrä:"
#. xnBgf
-#: sc/uiconfig/scalc/ui/insertsheet.ui:252
+#: sc/uiconfig/scalc/ui/insertsheet.ui:264
msgctxt "insertsheet|nameft"
msgid "Na_me:"
msgstr "Nimi:"
+#. JqDES
+#: sc/uiconfig/scalc/ui/insertsheet.ui:283
+msgctxt "insertsheet|extended_tip|countnf"
+msgid "Specifies the number of sheets to be created."
+msgstr ""
+
#. dxNfa
-#: sc/uiconfig/scalc/ui/insertsheet.ui:282
+#: sc/uiconfig/scalc/ui/insertsheet.ui:299
msgctxt "insertsheet|nameed"
msgid "Sheet..."
msgstr "Taulukko..."
+#. ckSEX
+#: sc/uiconfig/scalc/ui/insertsheet.ui:302
+msgctxt "insertsheet|extended_tip|nameed"
+msgid "Specifies the name of the new sheet."
+msgstr ""
+
#. NmbDF
-#: sc/uiconfig/scalc/ui/insertsheet.ui:315
+#: sc/uiconfig/scalc/ui/insertsheet.ui:337
msgctxt "insertsheet|fromfile"
msgid "_From file"
msgstr "_Tiedostosta"
+#. j9uBX
+#: sc/uiconfig/scalc/ui/insertsheet.ui:347
+msgctxt "insertsheet|extended_tip|fromfile"
+msgid "Inserts a sheet from an existing file into the current document."
+msgstr ""
+
#. FzMAv
-#: sc/uiconfig/scalc/ui/insertsheet.ui:388
+#: sc/uiconfig/scalc/ui/insertsheet.ui:415
msgctxt "insertsheet|tables-atkobject"
msgid "Tables in file"
msgstr "Taulukot tiedostossa"
+#. P4xGn
+#: sc/uiconfig/scalc/ui/insertsheet.ui:416
+msgctxt "insertsheet|extended_tip|tables"
+msgid "If you selected a file by using the Browse button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box."
+msgstr ""
+
#. mGqDq
-#: sc/uiconfig/scalc/ui/insertsheet.ui:406
+#: sc/uiconfig/scalc/ui/insertsheet.ui:434
msgctxt "insertsheet|browse"
msgid "_Browse..."
msgstr "_Selaa..."
+#. LnzZX
+#: sc/uiconfig/scalc/ui/insertsheet.ui:441
+msgctxt "insertsheet|extended_tip|browse"
+msgid "Opens a dialog for selecting a file."
+msgstr ""
+
#. LvF7e
-#: sc/uiconfig/scalc/ui/insertsheet.ui:419
+#: sc/uiconfig/scalc/ui/insertsheet.ui:452
msgctxt "insertsheet|link"
msgid "Lin_k"
msgstr "Lin_kki"
+#. 5skfF
+#: sc/uiconfig/scalc/ui/insertsheet.ui:463
+msgctxt "insertsheet|extended_tip|link"
+msgid "Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents."
+msgstr ""
+
#. SYZFG
-#: sc/uiconfig/scalc/ui/insertsheet.ui:464
+#: sc/uiconfig/scalc/ui/insertsheet.ui:502
msgctxt "insertsheet|label2"
msgid "Sheet"
msgstr "Taulukko"
+#. 9MBZH
+#: sc/uiconfig/scalc/ui/insertsheet.ui:534
+msgctxt "insertsheet|extended_tip|InsertSheetDialog"
+msgid "Defines the options to be used to insert a new sheet."
+msgstr ""
+
#. Gd9zh
#: sc/uiconfig/scalc/ui/integerdialog.ui:14
msgctxt "integerdialog|IntegerDialog"
msgid "Edit Setting"
msgstr "Muokkaa asetusta"
+#. hCsQF
+#: sc/uiconfig/scalc/ui/integerdialog.ui:122
+msgctxt "integerdialog|extended_tip|IntegerDialog"
+msgid "Enter or change the value of the selected setting."
+msgstr ""
+
#. ihAsa
#: sc/uiconfig/scalc/ui/leftfooterdialog.ui:8
msgctxt "leftfooterdialog|LeftFooterDialog"
@@ -22324,80 +23807,170 @@ msgctxt "managenamesdialog|ManageNamesDialog"
msgid "Manage Names"
msgstr "Nimien hallinta"
+#. RcgP4
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:44
+msgctxt "managenamesdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. ftVCr
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:63
+msgctxt "managenamesdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. RCtXS
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:126
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:133
msgctxt "managenamesdialog|name"
msgid "Name"
msgstr "Nimi"
#. qwCzn
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:139
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:146
msgctxt "managenamesdialog|expression"
msgid "Range or formula expression"
msgstr "Alue tai lauseke"
#. nFCoR
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:152
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:159
msgctxt "managenamesdialog|scope"
msgid "Scope"
msgstr ""
+#. oGG5j
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:170
+msgctxt "managenamesdialog|extended_tip|names"
+msgid "Select a named range or named formula from the list to modify its properties."
+msgstr ""
+
#. enGg7
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:182
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:194
msgctxt "managenamesdialog|info"
msgid "Select cells in the document to update the range."
msgstr "Valitse solut asiakirjasta päivittääksesi alueen."
#. WCnsd
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:202
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:214
msgctxt "managenamesdialog|label2"
msgid "Name:"
msgstr "Nimi:"
#. XY33d
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:216
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:228
msgctxt "managenamesdialog|label4"
msgid "Scope:"
msgstr "Kattavuus:"
+#. oXFBG
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:245
+msgctxt "managenamesdialog|extended_tip|scope"
+msgid "Select the scope of the named range or named formula. Document (Global) means the name is valid for the whole document."
+msgstr ""
+
+#. 2dF7g
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:269
+msgctxt "managenamesdialog|extended_tip|range"
+msgid "The reference of the selected area name is shown here as an absolute value."
+msgstr ""
+
+#. EJrBk
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:286
+msgctxt "managenamesdialog|extended_tip|assign"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. ddGRB
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:280
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:307
msgctxt "managenamesdialog|label3"
msgid "Range or formula expression:"
msgstr "Alue tai lauseke:"
+#. CEMJp
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:325
+msgctxt "managenamesdialog|extended_tip|name"
+msgid "Enter the name of the area for which you want to define a reference or a formula expression."
+msgstr ""
+
#. dGcEm
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:328
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:360
msgctxt "managenamesdialog|printrange"
msgid "_Print range"
msgstr "_Tulostusalue"
+#. GEWKN
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:369
+msgctxt "managenamesdialog|extended_tip|printrange"
+msgid "Defines the area as a print range."
+msgstr ""
+
#. EjtHY
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:343
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:380
msgctxt "managenamesdialog|filter"
msgid "_Filter"
msgstr "_Suodatus"
+#. DoQMz
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:389
+msgctxt "managenamesdialog|extended_tip|filter"
+msgid "Defines the selected area to be used in an advanced filter."
+msgstr ""
+
#. UdLJc
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:358
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:400
msgctxt "managenamesdialog|colheader"
msgid "Repeat _column"
msgstr "Toista _sarake"
+#. oipaa
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:409
+msgctxt "managenamesdialog|extended_tip|colheader"
+msgid "Defines the area as a repeating column."
+msgstr ""
+
#. c3b8v
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:373
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:420
msgctxt "managenamesdialog|rowheader"
msgid "Repeat _row"
msgstr "Toista _rivi"
+#. RbPrc
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:429
+msgctxt "managenamesdialog|extended_tip|rowheader"
+msgid "Defines the area as a repeating row."
+msgstr ""
+
#. Rujwh
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:394
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:446
msgctxt "managenamesdialog|label1"
msgid "Range _Options"
msgstr "Alueen asetukset"
+#. MFz5S
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:452
+msgctxt "managenamesdialog|extended_tip|more"
+msgid "Allows you to specify the Area type (optional) for the reference."
+msgstr ""
+
+#. vVAh3
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:477
+msgctxt "managenamesdialog|extended_tip|add"
+msgid "Click the Add button to add a new defined name."
+msgstr ""
+
+#. MBAnE
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:496
+msgctxt "managenamesdialog|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
+#. j3EMw
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:532
+msgctxt "managenamesdialog|extended_tip|ManageNamesDialog"
+msgid "Opens a dialog where you can specify a name for a selected area or a name for a formula expression."
+msgstr ""
+
#. 96fTt
-#: sc/uiconfig/scalc/ui/managenamesdialog.ui:462
+#: sc/uiconfig/scalc/ui/managenamesdialog.ui:537
msgctxt "managenamesdialog|treeviewcolumn1"
msgid "column"
msgstr "sarake"
@@ -22409,29 +23982,35 @@ msgid "Merge Cells"
msgstr "Yhdistä solut"
#. MfjB6
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:83
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:80
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Jotkin soluista eivät ole tyhjiä."
#. BWFBt
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:98
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:95
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Siirretäänkö piilotettujen solujen sisältö ensimmäiseen soluun?"
#. wzTMG
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:114
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:111
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Tyhjennä piilotettujen solujen sisältö"
#. uD6JB
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:130
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:127
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Säilytä piilotettujen solujen sisältö"
+#. ufnGZ
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:204
+msgctxt "mergecellsdialog|extended_tip|MergeCellsDialog"
+msgid "Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered."
+msgstr ""
+
#. rG3G4
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:21
msgctxt "mergecolumnentry|name"
@@ -22474,66 +24053,90 @@ msgctxt "movecopysheet|copy"
msgid "C_opy"
msgstr "Kopioi"
+#. GPAxW
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:128
+msgctxt "movecopysheet|extended_tip|copy"
+msgid "Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved."
+msgstr ""
+
#. Cf9Po
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:142
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:147
msgctxt "movecopysheet|label1"
msgid "Action"
msgstr "Toiminto"
#. ENjjq
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:190
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:195
msgctxt "movecopysheet|toDocumentLabel"
msgid "To _document"
msgstr "Asiakirjaan"
#. jfC53
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:207
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:212
msgctxt "movecopysheet|toDocument"
msgid "(current document)"
msgstr "(nykyinen asiakirja)"
#. Kd5nz
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:208
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:213
msgctxt "movecopysheet|toDocument"
msgid "- new document -"
msgstr "- uusi asiakirja -"
+#. UDmM5
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:217
+msgctxt "movecopysheet|extended_tip|toDocument"
+msgid "Indicates where the current sheet is to be moved or copied to."
+msgstr ""
+
#. DGcVf
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:236
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:246
msgctxt "movecopysheet|insertBeforeLabel"
msgid "_Insert before"
msgstr "Lisää eteen"
+#. 8C2Bk
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:290
+msgctxt "movecopysheet|extended_tip|insertBefore"
+msgid "The current sheet is moved or copied in front of the selected sheet."
+msgstr ""
+
#. gE92w
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:302
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:317
msgctxt "movecopysheet|label2"
msgid "Location"
msgstr "Sijainti"
#. wcXYj
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:369
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:384
msgctxt "movecopysheet|warnunused"
msgid "This name is already used."
msgstr "Nimi on jo käytössä."
#. L7CQf
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:384
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:399
msgctxt "movecopysheet|warnempty"
msgid "Name is empty."
msgstr "Nimi on tyhjä."
#. xoYVT
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:399
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:414
msgctxt "movecopysheet|warninvalid"
msgid "Name contains one or more invalid characters."
msgstr "Nimessä on virheellisiä merkkejä."
#. zE3yH
-#: sc/uiconfig/scalc/ui/movecopysheet.ui:426
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:441
msgctxt "movecopysheet|newNameLabel"
msgid "New _name"
msgstr "Uusi nimi"
+#. qqKL9
+#: sc/uiconfig/scalc/ui/movecopysheet.ui:467
+msgctxt "movecopysheet|extended_tip|MoveCopySheetDialog"
+msgid "Moves or copies a sheet to a new location in the document or to a different document."
+msgstr ""
+
#. vSLnP
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:15
msgctxt "movingaveragedialog|MovingAverageDialog"
@@ -22541,215 +24144,431 @@ msgid "Moving Average"
msgstr "Liukuva keskiarvo"
#. LJ63y
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:111
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:107
msgctxt "movingaveragedialog|input-range-label"
msgid "Input range:"
msgstr "Lähdealue:"
#. J2nco
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:150
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:146
msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. vJXCf
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:183
msgctxt "movingaveragedialog|trimrange-check"
msgid "Trim input range to actual data content"
msgstr ""
#. eTxm6
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:207
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Tiedot"
#. jsyGd
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:242
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sarakkeet"
#. Ek9BV
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:258
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rivit"
#. QzpE8
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:280
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
#. ZFgCx
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:317
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Väli:"
#. CT4kZ
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:348
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametrit"
+#. Ed3fa
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:373
+msgctxt "movingaveragedialog|extended_tip|MovingAverageDialog"
+msgid "Calculates the moving average of a time series"
+msgstr ""
+
#. EME6W
#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:8
msgctxt "multipleoperationsdialog|MultipleOperationsDialog"
msgid "Multiple operations"
msgstr "Useita toimintoja"
+#. DsuEQ
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:33
+msgctxt "multipleoperationsdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. EEze8
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:52
+msgctxt "multipleoperationsdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. aQNVa
-#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:102
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:109
msgctxt "multipleoperationsdialog|formulasft"
msgid "_Formulas:"
msgstr "Kaavat:"
#. ddjsT
-#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:116
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:123
msgctxt "multipleoperationsdialog|rowft"
msgid "_Row input cell:"
msgstr "Rivien syöttösolu:"
#. AELsJ
-#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:130
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:137
msgctxt "multipleoperationsdialog|colft"
msgid "_Column input cell:"
msgstr "Sarakkeiden syöttösolu:"
+#. 5RfAg
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:156
+msgctxt "multipleoperationsdialog|extended_tip|formulas"
+msgid "Enter the cell references for the cells containing the formulas that you want to use in the multiple operation."
+msgstr ""
+
+#. Dcu9R
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:174
+msgctxt "multipleoperationsdialog|extended_tip|row"
+msgid "Enter the input cell reference that you want to use as a variable for the rows in the data table."
+msgstr ""
+
+#. E5T7X
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:192
+msgctxt "multipleoperationsdialog|extended_tip|col"
+msgid "Enter the input cell reference that you want to use as a variable for the columns in the data table."
+msgstr ""
+
+#. uQeAG
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:208
+msgctxt "multipleoperationsdialog|extended_tip|formulasref"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. qdF79
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:224
+msgctxt "multipleoperationsdialog|extended_tip|rowref"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. pzEjo
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:240
+msgctxt "multipleoperationsdialog|extended_tip|colref"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. LqDCg
-#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:220
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:257
msgctxt "multipleoperationsdialog|label1"
msgid "Default Settings"
msgstr "Oletusasetukset"
+#. ZQKXx
+#: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:282
+msgctxt "multipleoperationsdialog|extended_tip|MultipleOperationsDialog"
+msgid "Applies the same formula to different cells, but with different parameter values."
+msgstr ""
+
#. jbFci
#: sc/uiconfig/scalc/ui/namerangesdialog.ui:16
msgctxt "namerangesdialog|NameRangesDialog"
msgid "Define Label Range"
msgstr "Määritä selitealue"
+#. ABAZQ
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:43
+msgctxt "namerangesdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. jkh7A
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:63
+msgctxt "namerangesdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
+#. 9GqGh
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:134
+msgctxt "namerangesdialog|extended_tip|edassign"
+msgid "Displays the cell reference of each label range."
+msgstr ""
+
+#. JXXhm
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:153
+msgctxt "namerangesdialog|extended_tip|rbassign"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. RHkHY
-#: sc/uiconfig/scalc/ui/namerangesdialog.ui:159
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:176
msgctxt "namerangesdialog|colhead"
msgid "Contains _column labels"
msgstr "Sisältää sarakeotsikot"
+#. LTnyf
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:187
+msgctxt "namerangesdialog|extended_tip|colhead"
+msgid "Includes column labels in the current label range."
+msgstr ""
+
#. WDLCJ
-#: sc/uiconfig/scalc/ui/namerangesdialog.ui:176
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:198
msgctxt "namerangesdialog|rowhead"
msgid "Contains _row labels"
msgstr "Sisältää riviotsikot"
+#. bsL9T
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:209
+msgctxt "namerangesdialog|extended_tip|rowhead"
+msgid "Includes row labels in the current label range."
+msgstr ""
+
#. CaLyt
-#: sc/uiconfig/scalc/ui/namerangesdialog.ui:201
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:228
msgctxt "namerangesdialog|datarange"
msgid "For _data range"
msgstr "Tietoalueelle"
+#. Lhn9n
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:252
+msgctxt "namerangesdialog|extended_tip|edassign2"
+msgid "Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse."
+msgstr ""
+
+#. PvBUo
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:271
+msgctxt "namerangesdialog|extended_tip|rbassign2"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. UQwuv
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:302
+msgctxt "namerangesdialog|extended_tip|add"
+msgid "Adds the current label range to the list."
+msgstr ""
+
+#. ozH98
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:321
+msgctxt "namerangesdialog|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
+#. E2Wk2
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:373
+msgctxt "namerangesdialog|extended_tip|range"
+msgid "Displays the cell reference of each label range."
+msgstr ""
+
#. AFqD5
-#: sc/uiconfig/scalc/ui/namerangesdialog.ui:340
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:392
msgctxt "namerangesdialog|label1"
msgid "Range"
msgstr "Alue"
+#. aDbLN
+#: sc/uiconfig/scalc/ui/namerangesdialog.ui:417
+msgctxt "namerangesdialog|extended_tip|NameRangesDialog"
+msgid "Opens a dialog in which you can define a label range."
+msgstr ""
+
#. ba8wC
#: sc/uiconfig/scalc/ui/navigatorpanel.ui:22
msgctxt "navigatorpanel|hyperlink"
msgid "Insert as Hyperlink"
msgstr "Lisää hyperlinkkinä"
+#. 62g94
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:28
+msgctxt "navigatorpanel|extended_tip|hyperlink"
+msgid "Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document."
+msgstr ""
+
#. YFPAS
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:32
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:37
msgctxt "navigatorpanel|link"
msgid "Insert as Link"
msgstr "Lisää linkkinä"
+#. mX7ED
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:43
+msgctxt "navigatorpanel|extended_tip|link"
+msgid "Creates a link when you drag-and-drop an object from the Navigator into a document."
+msgstr ""
+
#. 97BBT
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:42
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:52
msgctxt "navigatorpanel|copy"
msgid "Insert as Copy"
msgstr "Lisää kopiona"
+#. YzkdQ
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:58
+msgctxt "navigatorpanel|extended_tip|copy"
+msgid "Generates a copy when you drag-and-drop an object from the Navigator into a document."
+msgstr ""
+
#. ohBvD
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:98
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:112
msgctxt "navigatorpanel|label1"
msgid "Column:"
msgstr "Sarake:"
#. zQ4EH
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:112
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:126
msgctxt "navigatorpanel|label2"
msgid "Row:"
msgstr "Rivi:"
#. kGECG
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:125
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:139
msgctxt "navigatorpanel|column|tooltip_text"
msgid "Column"
msgstr "Sarake"
+#. hEFuH
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:144
+msgctxt "navigatorpanel|extended_tip|column"
+msgid "Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row."
+msgstr ""
+
#. PGnEE
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:138
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:157
msgctxt "navigatorpanel|row|tooltip_text"
msgid "Row"
msgstr "Rivi"
+#. mdq2Z
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:162
+msgctxt "navigatorpanel|extended_tip|row"
+msgid "Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column."
+msgstr ""
+
#. DK6AJ
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:157
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:182
msgctxt "navigatorpanel|datarange|tooltip_text"
msgid "Data Range"
msgstr "Tietoalue"
+#. BCSUy
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:186
+msgctxt "navigatorpanel|extended_tip|datarange"
+msgid "Specifies the current data range denoted by the position of the cell cursor."
+msgstr ""
+
#. cCsBJ
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:169
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:199
msgctxt "navigatorpanel|start|tooltip_text"
msgid "Start"
msgstr "Alku"
+#. Fq2S8
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:203
+msgctxt "navigatorpanel|extended_tip|start"
+msgid "Moves to the cell at the beginning of the current data range, which you can highlight using the Data Range button."
+msgstr ""
+
#. 4a9pU
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:181
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:216
msgctxt "navigatorpanel|end|tooltip_text"
msgid "End"
msgstr "Loppu"
+#. cVJLu
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:220
+msgctxt "navigatorpanel|extended_tip|end"
+msgid "Moves to the cell at the end of the current data range, which you can highlight using the Data Range button."
+msgstr ""
+
#. dCSrW
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:193
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:233
msgctxt "navigatorpanel|contents|tooltip_text"
msgid "Contents"
msgstr "Sisältö"
#. yrRED
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:217
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:258
msgctxt "navigatorpanel|toggle|tooltip_text"
msgid "Toggle"
msgstr "Vaihda"
+#. ZE2UD
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:262
+msgctxt "navigatorpanel|extended_tip|toggle"
+msgid "Allows you to hide/show the contents."
+msgstr ""
+
#. nqKrT
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:229
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:275
msgctxt "navigatorpanel|scenarios|tooltip_text"
msgid "Scenarios"
msgstr "Skenaariot"
+#. Ewgyh
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:279
+msgctxt "navigatorpanel|extended_tip|scenarios"
+msgid "Displays all available scenarios. Double-click a name to apply that scenario."
+msgstr ""
+
#. mHVom
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:241
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:292
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Vetotila"
+#. qBchV
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:296
+msgctxt "navigatorpanel|extended_tip|dragmode"
+msgid "Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created."
+msgstr ""
+
#. 3rY8r
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:265
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:321
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Asiakirja"
#. wavgT
-#: sc/uiconfig/scalc/ui/navigatorpanel.ui:268
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:324
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiivinen ikkuna"
+#. E4uTE
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:325
+msgctxt "navigatorpanel|extended_tip|documents"
+msgid "Displays the names of all open documents."
+msgstr ""
+
+#. F58Zg
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:378
+msgctxt "navigatorpanel|extended_tip|contentbox"
+msgid "Displays all objects in your document."
+msgstr ""
+
+#. HfX6U
+#: sc/uiconfig/scalc/ui/navigatorpanel.ui:476
+msgctxt "navigatorpanel|extended_tip|NavigatorPanel"
+msgid "Activates and deactivates the Navigator."
+msgstr ""
+
#. 5ZzMk
#: sc/uiconfig/scalc/ui/nosolutiondialog.ui:8
msgctxt "nosolutiondialog|NoSolutionDialog"
@@ -24134,11 +25953,11 @@ msgctxt "optcalculatepage|threadingenabled|tooltip_text"
msgid "Enable multi-threaded calculation of formula-groups"
msgstr "Ota käyttöön kaavaryhmien säikeistetty laskenta."
-#. CMGwA
+#. nkMjn
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:68
msgctxt "optcalculatepage|label4"
-msgid "CPU threading settings"
-msgstr "Prosessorisäikeiden asetukset"
+msgid "CPU Threading Settings"
+msgstr ""
#. XyA9j
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:100
@@ -24152,174 +25971,294 @@ msgctxt "optcalculatepage|case|tooltip_text"
msgid "Disable case sensitivity for interoperability with Microsoft Excel"
msgstr "Älä huomioi kirjainkokoa (yhteentoimivuus Microsoft Excelin kanssa)"
+#. fGMgy
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:110
+msgctxt "extended_tip|case"
+msgid "Specifies whether to distinguish between upper and lower case in texts when comparing cell contents."
+msgstr "Merkinnällä määrätään eron SUUR- ja pienaakkosten välillä huomioitavaksi tietoja vertailtaessa."
+
#. 9W56L
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:116
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:121
msgctxt "optcalculatepage|calc"
msgid "_Precision as shown"
msgstr "Laskenta_tarkkuus näytetyn mukaan"
+#. YGAFd
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:130
+msgctxt "extended_tip|calc"
+msgid "Specifies whether to make calculations using the rounded values displayed in the sheet. Charts will be shown with the displayed values. If the Precision as shown option is not marked, the displayed numbers are rounded, but they are calculated internally using the non-rounded number."
+msgstr "Merkinnällä määrätään laskettavaksi näytössä näkyvillä pyöristetyillä arvoilla. Kun Laskentatarkkuus näytetyn mukaan -vaihtoehtoa ei ole merkitty, näytetyt luvut ovat pyöristettyjä, mutta sisäinen laskentatarkkuus on suurin mahdollinen. Kaaviot näytetään kuitenkin aina näytön arvoilla."
+
#. BiDg6
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:131
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:141
msgctxt "optcalculatepage|match"
msgid "Search criteria = and <> must apply to _whole cells"
msgstr "Hakuehtojen = ja <> on koskettava _soluja kokonaisuudessaan"
#. d3ZgB
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:135
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:145
msgctxt "optcalculatepage|match|tooltip_text"
msgid "Enable this for interoperability with Microsoft Excel"
msgstr "Ota tämä käyttöön, jos haluat parantaa Microsoft Excel -yhteentoimivuutta"
+#. APEQn
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:151
+msgctxt "extended_tip|match"
+msgid "Specifies that the search criteria you set for the Calc database functions must match the whole cell exactly. When both, the Search criteria = and <> must apply to whole cells box and the Enable wildcards in formulas box are marked, %PRODUCTNAME Calc behaves exactly as Microsoft Excel when searching cells in the database functions."
+msgstr "Merkinnällä määrätään, että Calcin tietokantafunktioiden hakuehdoissa vaaditaan koko soluille täyttä osuvuutta. Kun Hakuehtojen = ja <> koskettava soluja kokonaisuudessaan -ruutu on rastittu, %PRODUCTNAME Calcin ja MS Excelin tietokantafunktioiden hakutulokset ovat aina samat."
+
#. 5Wn8V
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:147
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:162
msgctxt "optcalculatepage|lookup"
msgid "_Automatically find column and row labels"
msgstr "Hae sarakkeiden ja rivien selitteet automaattisesti"
+#. XVS3t
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:171
+msgctxt "extended_tip|lookup"
+msgid "Specifies that you can use the text in any cell as a label for the column below the text or the row to the right of the text. The text must consist of at least one word and must not contain any operators."
+msgstr "Merkinnällä määrätään, että solussa oleva teksti käy selitteeksi välittömästi ala- tai oikealla puolella oleville arvoille. Tekstin pitää olla vähintään yhden sanan pituinen eikä siinä saa olla operaattoreita."
+
#. DwExc
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:162
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:182
msgctxt "optcalculatepage|generalprec"
msgid "_Limit decimals for general number format"
msgstr "Rajoita yleisen lukumuodon desimaaleja"
+#. hufmT
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:191
+msgctxt "extended_tip|generalprec"
+msgid "You can specify the maximum number of decimal places that are shown by default for cells with General number format. If not enabled, cells with General number format show as many decimal places as the column width allows."
+msgstr "Määrittää, kuinka monta desimaalia näytetään desimaaliluvuista yleisellä lukumuodolla muotoilluissa soluissa. Jos asetus ei ole käytössä, yleisen lukumuodon soluissa näytetään niin monta desimaalia kuin sarakkeeseen mahtuu."
+
#. buc6F
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:189
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:214
msgctxt "optcalculatepage|precft"
msgid "_Decimal places:"
msgstr "Desimaaleja:"
+#. riZoc
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:232
+msgctxt "extended_tip|prec"
+msgid "Defines the number of decimals to be displayed for numbers with the General number format. The numbers are displayed as rounded numbers, but are not saved as rounded numbers."
+msgstr "Määritetään näytettävien desimaalien määrä Yleinen-lukumuodolla. Luvut esitetään pyöristettyinä asetettuun tarkkuuteen, mutta niitä ei tallenneta karkeasti pyöristettyinä."
+
#. tnj5y
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:228
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:258
msgctxt "optcalculatepage|label1"
msgid "General Calculations"
msgstr "Yleiset laskenta-asetukset"
#. p2vT9
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:261
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:291
msgctxt "optcalculatepage|iterate"
msgid "_Iterations"
msgstr "_Iteroinnit"
+#. pBKcn
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:300
+msgctxt "extended_tip|iterate"
+msgid "Specifies whether formulas with iterative references (formulas that are continuously repeated until the problem is solved) are calculated after a specific number of repetitions."
+msgstr "Määritellään, käytetäänkö iteratiivisia viittauksia (kaavoja toistetaan, kunnes kelvollinen ratkaisu saavutetaan). Merkitsemällä ruutu toistetaan laskuja määritellyt kerrat."
+
#. S6iwg
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:290
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:325
msgctxt "optcalculatepage|stepsft"
msgid "_Steps:"
msgstr "_Vaiheet:"
#. aJT9u
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:304
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:339
msgctxt "optcalculatepage|minchangeft"
msgid "_Minimum change:"
msgstr "V_ähimmäismuutos:"
+#. GmKgv
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:357
+msgctxt "extended_tip|steps"
+msgid "Sets the maximum number of iteration steps."
+msgstr "Asetetaan iteraatioaskelten enimmäismäärä."
+
+#. ZekEF
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:374
+msgctxt "extended_tip|minchange"
+msgid "Specifies the difference between two consecutive iteration step results. If the result of the iteration is lower than the minimum change value, then the iteration will stop."
+msgstr "Asetetaan raja kahden perättäisen iteraatioaskeleen tulosten väliselle erotukselle. Jos tuo erotus on pienempi kuin asetettu vähimmäismuutos, iterointi lopetetaan."
+
#. UoUqA
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:355
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:400
msgctxt "optcalculatepage|label2"
msgid "Iterative References"
msgstr "Iterointiviitteet"
#. BA74j
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:386
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:431
msgctxt "optcalculatepage|datestd"
msgid "12/30/1899 (defa_ult)"
msgstr "12/30/189_9 (oletus)"
#. ApqYV
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:390
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:435
msgctxt "optcalculatepage|datestd|tooltip_text"
msgid "Value 0 corresponds to 12/30/1899"
msgstr "Arvo 0 vastaa päivämäärää 30.12.1899"
+#. SCewx
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:442
+msgctxt "extended_tip|datestd"
+msgid "Sets 12/30/1899 as day zero."
+msgstr "Asetetaan 30.12.1899 sisäiseksi nollapäiväksi."
+
#. mznb9
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:403
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:453
msgctxt "optcalculatepage|datesc10"
msgid "01/01/1900 (Star_Calc 1.0)"
msgstr "_1.1.1900 (StarCalc 1.0)"
#. etLCb
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:407
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:457
msgctxt "optcalculatepage|datesc10|tooltip_text"
msgid "Value 0 corresponds to 01/01/1900"
msgstr "Arvo 0 vastaa päivämäärää 1.1.1900"
+#. LEunE
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:464
+msgctxt "extended_tip|datesc10"
+msgid "Sets 1/1/1900 as day zero. Use this setting for StarCalc 1.0 spreadsheets containing date entries."
+msgstr "Asetetaan 1.1.1900 nollapäiväksi. Asetusta käytetään StarCalc 1.0 -laskentataulukoissa."
+
#. J9ECM
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:420
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:475
msgctxt "optcalculatepage|date1904"
msgid "_01/01/1904"
msgstr "1.1.190_4"
#. aBzk5
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:424
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:479
msgctxt "optcalculatepage|date1904|tooltip_text"
msgid "0 corresponds to 01/01/1904"
msgstr "0 vastaa päivämäärää 1.1.1904"
+#. EkAYW
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:486
+msgctxt "extended_tip|date1904"
+msgid "Sets 1/1/1904 as day zero. Use this setting for spreadsheets that are imported in a foreign format."
+msgstr "Asetetaan 1.1.1904 nollapäiväksi. Asetusta käytetään tuotaessa laskentataulukoita eräistä vieraista tiedostomuodoista."
+
#. ggkEL
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:443
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:503
msgctxt "optcalculatepage|label3"
msgid "Date"
msgstr "Päivämäärä"
#. Hd6CV
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:473
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:533
msgctxt "optcalculatepage|formulawildcards"
msgid "Enable w_ildcards in formulas"
msgstr "Salli jokerimerkit kaavoissa"
#. BKAzW
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:477
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:537
msgctxt "optcalculatepage|formulawildcards|tooltip_text"
msgid "Enable wildcards for interoperability with Microsoft Excel"
msgstr "Jokerimerkkien salliminen parantaa Microsoft Excel -yhteentoimivuutta"
+#. KXxjQ
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:544
+msgctxt "extended_tip|formulawildcards"
+msgid "Specifies that wildcards are enabled when searching and also for character string comparisons."
+msgstr "Valinta sallii säännölliset lausekkeet hauissa sekä merkkijonovertailuissa."
+
#. Gghyb
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:490
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:555
msgctxt "optcalculatepage|formularegex"
msgid "Enable r_egular expressions in formulas"
msgstr "Salli säännölliset lausekkeet kaavoissa"
+#. D9B3G
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:565
+msgctxt "extended_tip|formularegex"
+msgid "Specifies that regular expressions instead of simple wildcards are enabled when searching and also for character string comparisons."
+msgstr "Valinta sallii säännölliset lausekkeet hauissa sekä merkkijonovertailuissa."
+
#. gg3Am
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:506
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:576
msgctxt "optcalculatepage|formulaliteral"
msgid "No wildcards or regular expressions in formulas"
msgstr "Ei jokerimerkkejä tai säännöllisiä lausekkeita kaavoissa"
-#. 7QXFg
-#: sc/uiconfig/scalc/ui/optcalculatepage.ui:528
+#. BwEWx
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:586
+msgctxt "extended_tip|formulaliteral"
+msgid "Specifies that only literal strings are used when searching and also for character string comparisons."
+msgstr "Valinta sallii säännölliset lausekkeet hauissa sekä merkkijonovertailuissa."
+
+#. XEPCe
+#: sc/uiconfig/scalc/ui/optcalculatepage.ui:603
msgctxt "optcalculatepage|label5"
-msgid "Formulas wildcards"
-msgstr "Kaavojen jokerimerkit"
+msgid "Formulas Wildcards"
+msgstr ""
#. Umdv5
-#: sc/uiconfig/scalc/ui/optchangespage.ui:37
+#: sc/uiconfig/scalc/ui/optchangespage.ui:36
msgctxt "optchangespage|label2"
msgid "Chan_ges:"
msgstr "Muutokset:"
#. yrmgC
-#: sc/uiconfig/scalc/ui/optchangespage.ui:51
+#: sc/uiconfig/scalc/ui/optchangespage.ui:50
msgctxt "optchangespage|label3"
msgid "_Deletions:"
msgstr "Poistot:"
#. bJb2E
-#: sc/uiconfig/scalc/ui/optchangespage.ui:65
+#: sc/uiconfig/scalc/ui/optchangespage.ui:64
msgctxt "optchangespage|label4"
msgid "_Insertions:"
msgstr "Lisäykset:"
#. ikfvj
-#: sc/uiconfig/scalc/ui/optchangespage.ui:79
+#: sc/uiconfig/scalc/ui/optchangespage.ui:78
msgctxt "optchangespage|label5"
msgid "_Moved entries:"
msgstr "Siirretyt merkinnät:"
+#. BiCsr
+#: sc/uiconfig/scalc/ui/optchangespage.ui:102
+msgctxt "extended_tip|changes"
+msgid "Specifies the color for changes of cell contents."
+msgstr "Määritetään solun sisällön muutoksen tunnusväri."
+
+#. NGpxf
+#: sc/uiconfig/scalc/ui/optchangespage.ui:125
+msgctxt "extended_tip|deletions"
+msgid "Specifies the color to highlight deletions in a document."
+msgstr "Määritetään asiakirjasta tehtyjen poistojen korostusväri."
+
+#. XXK7D
+#: sc/uiconfig/scalc/ui/optchangespage.ui:148
+msgctxt "extended_tip|entries"
+msgid "Specifies the color to highlight moved cell contents."
+msgstr "Määritetään siirrettyjen solun sisältöjen korostusväri."
+
+#. 67CPn
+#: sc/uiconfig/scalc/ui/optchangespage.ui:171
+msgctxt "extended_tip|insertions"
+msgid "Specifies the color to highlight insertions in a document."
+msgstr "Määritetään asiakirjaan tehtyjen lisäysten korostusväri."
+
#. AYxhD
-#: sc/uiconfig/scalc/ui/optchangespage.ui:152
+#: sc/uiconfig/scalc/ui/optchangespage.ui:188
msgctxt "optchangespage|label1"
msgid "Colors for Changes"
msgstr "Muutosten värit"
+#. GyGpz
+#: sc/uiconfig/scalc/ui/optchangespage.ui:203
+msgctxt "extended_tip|OptChangesPage"
+msgid "The Changes dialog specifies various options for highlighting recorded changes in documents."
+msgstr "Muutokset-valintaikkunassa määritellään erilaisia korostuksia asiakirjoihin tehdyille muutoksille."
+
#. CrAWh
#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:41
msgctxt "optcompatibilitypage|label2"
@@ -24344,6 +26283,12 @@ msgctxt "optcompatibilitypage|label1"
msgid "Key Bindings"
msgstr "Pikanäppäimet"
+#. Z7mEE
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:93
+msgctxt "extended_tip|OptCompatibilityPage"
+msgid "Defines compatibility options for %PRODUCTNAME Calc."
+msgstr "Määritetään yhteensopivuusasetukset sovellukselle %PRODUCTNAME Calc."
+
#. Jcvih
#: sc/uiconfig/scalc/ui/optdefaultpage.ui:39
msgctxt "optdefaultpage|textsheetsnumber"
@@ -24368,36 +26313,60 @@ msgctxt "optdefaultpage|label1"
msgid "New Spreadsheet"
msgstr "Uusi laskentataulukko"
-#. gbrKD
-#: sc/uiconfig/scalc/ui/optdlg.ui:30
-msgctxt "optdlg|suppressCB"
-msgid "_Suppress output of empty pages"
-msgstr "Älä tulosta tyhjiä sivuja"
+#. Ap57D
+#: sc/uiconfig/scalc/ui/optdefaultpage.ui:126
+msgctxt "extended_tip|OptDefaultPage"
+msgid "Defines default settings for new spreadsheet documents."
+msgstr "Määritetään uuden laskenta-asiakirjan oletusasetukset."
#. TueVT
-#: sc/uiconfig/scalc/ui/optdlg.ui:46
+#: sc/uiconfig/scalc/ui/optdlg.ui:31
msgctxt "optdlg|forceBreaksCB"
msgid "_Always apply manual breaks"
msgstr "Noudata aina pakotettuja vaihtoja"
+#. gbrKD
+#: sc/uiconfig/scalc/ui/optdlg.ui:47
+msgctxt "optdlg|suppressCB"
+msgid "_Suppress output of empty pages"
+msgstr "Älä tulosta tyhjiä sivuja"
+
+#. 6chh5
+#: sc/uiconfig/scalc/ui/optdlg.ui:56
+msgctxt "extended_tip|suppressCB"
+msgid "Specifies that empty pages that have no cell contents or draw objects are not printed."
+msgstr "Merkinnällä määrätään, ettei tulosteta tyhjiä sivuja, joissa ei ole solusisältöä eikä piirrosobjekteja."
+
#. udgBk
-#: sc/uiconfig/scalc/ui/optdlg.ui:68
+#: sc/uiconfig/scalc/ui/optdlg.ui:74
msgctxt "optdlg|label1"
msgid "Pages"
msgstr "Sivujen tulostus"
#. nfmkw
-#: sc/uiconfig/scalc/ui/optdlg.ui:101
+#: sc/uiconfig/scalc/ui/optdlg.ui:107
msgctxt "optdlg|printCB"
msgid "_Print only selected sheets"
msgstr "Tulosta vain valitut taulukot"
+#. Cqsrk
+#: sc/uiconfig/scalc/ui/optdlg.ui:116
+msgctxt "extended_tip|printCB"
+msgid "Specifies that only contents from selected sheets are printed, even if you specify a wider range in the File - Print dialog or in the Format - Print Ranges dialog. Contents from sheets that are not selected will not be printed."
+msgstr "Valinta määrä, että vain valittuna olevilta taulukoilta tulostetaan, vaikka Tiedosto - Tulosta tai Muotoilu - Tulostusalueet -valintaikkunoissa olisikin määritelty laajempi alue. Valitsemattomien taulukoiden sisältöä ei tulosteta."
+
#. wT6PN
-#: sc/uiconfig/scalc/ui/optdlg.ui:124
+#: sc/uiconfig/scalc/ui/optdlg.ui:134
msgctxt "optdlg|label2"
msgid "Sheets"
msgstr "Taulukot"
+#. JptgQ
+#: sc/uiconfig/scalc/ui/optdlg.ui:150
+msgctxt "extended_tip|optCalcPrintPage"
+msgid "Determines the printer settings for spreadsheets."
+msgstr "Määritetään joitakin laskentataulukon tulostuksen asetuksia."
+
#. nQBpo
#: sc/uiconfig/scalc/ui/optformula.ui:30
msgctxt "optformula|englishfuncname"
@@ -24524,6 +26493,12 @@ msgctxt "optformula|label3"
msgid "Separators"
msgstr "Erotinmerkit"
+#. Pk6nr
+#: sc/uiconfig/scalc/ui/optformula.ui:440
+msgctxt "extended_tip|OptFormula"
+msgid "Defines formula syntax options and loading options for %PRODUCTNAME Calc."
+msgstr "Määritellään kaavan syntaksiasetukset ja tiedostojen avaamiseen vaikuttavat asetukset %PRODUCTNAME Calcissa."
+
#. cCfAk
#: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:8
msgctxt "optimalcolwidthdialog|OptimalColWidthDialog"
@@ -24536,12 +26511,30 @@ msgctxt "optimalcolwidthdialog|label1"
msgid "Add:"
msgstr "Lisää:"
+#. z6Wbm
+#: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:109
+msgctxt "optimalcolwidthdialog|extended_tip|value"
+msgid "Defines additional spacing between the longest entry in a column and the vertical column borders."
+msgstr ""
+
#. r7hJD
-#: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:115
+#: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:120
msgctxt "optimalcolwidthdialog|default"
msgid "_Default value"
msgstr "Oletusarvo"
+#. RMGd4
+#: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:129
+msgctxt "optimalcolwidthdialog|extended_tip|default"
+msgid "Defines the optimal column width in order to display the entire contents of the column."
+msgstr ""
+
+#. KssXT
+#: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:160
+msgctxt "optimalcolwidthdialog|extended_tip|OptimalColWidthDialog"
+msgid "Defines the optimal column width for selected columns."
+msgstr ""
+
#. QxNwS
#: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:8
msgctxt "optimalrowheightdialog|OptimalRowHeightDialog"
@@ -24554,66 +26547,132 @@ msgctxt "optimalrowheightdialog|label1"
msgid "Add:"
msgstr "Lisää:"
+#. zMRfS
+#: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:108
+msgctxt "optimalrowheightdialog|extended_tip|value"
+msgid "Sets additional spacing between the largest character in a row and the cell boundaries."
+msgstr ""
+
#. CFWSU
-#: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:114
+#: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:119
msgctxt "optimalrowheightdialog|default"
msgid "_Default value"
msgstr "Oletusarvo"
+#. vCDBD
+#: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:128
+msgctxt "optimalrowheightdialog|extended_tip|default"
+msgid "Restores the default value for the optimal row height."
+msgstr ""
+
+#. zwDoC
+#: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:159
+msgctxt "optimalrowheightdialog|extended_tip|OptimalRowHeightDialog"
+msgid "Determines the optimal row height for the selected rows."
+msgstr ""
+
#. AePrG
#: sc/uiconfig/scalc/ui/optsortlists.ui:30
msgctxt "optsortlists|copy"
msgid "_Copy"
msgstr "Kopioi"
+#. FprUE
+#: sc/uiconfig/scalc/ui/optsortlists.ui:37
+msgctxt "extended_tip|copy"
+msgid "Copies the contents of the cells in the Copy list from box. If you select a reference to related rows and columns, the Copy List 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."
+msgstr "Kopioidaan Kopioi luettelo -ruudussa näkyvän alueen solujen sisältö uudeksi luetteloksi. Jos viitteissä on useita rivejä ja sarakkeita, Kopioi luettelo -valintaikkuna ilmestyy painikkeesta. Ikkunassa määrätään, syntyvätkö uudet luettelot alueen riveiltä vai sarakkeista."
+
#. jG3HS
-#: sc/uiconfig/scalc/ui/optsortlists.ui:51
+#: sc/uiconfig/scalc/ui/optsortlists.ui:56
msgctxt "optsortlists|copyfromlabel"
msgid "Copy list _from:"
msgstr "Kopioi luettelo:"
+#. QEyMs
+#: sc/uiconfig/scalc/ui/optsortlists.ui:75
+msgctxt "extended_tip|copyfrom"
+msgid "Defines the spreadsheet and the cells to copy, in order to include them in the Lists box. The currently selected range in the spreadsheet is the default."
+msgstr "Määritetään taulukko ja ne solut, joista kopioidaan sisältö Luettelot-ruutuun. Oletuksena on laskentataulukon valittuna oleva alue."
+
#. iCaLd
-#: sc/uiconfig/scalc/ui/optsortlists.ui:94
+#: sc/uiconfig/scalc/ui/optsortlists.ui:104
msgctxt "optsortlists|listslabel"
msgid "_Lists"
msgstr "Luettelot"
#. EBMmZ
-#: sc/uiconfig/scalc/ui/optsortlists.ui:108
+#: sc/uiconfig/scalc/ui/optsortlists.ui:118
msgctxt "optsortlists|entrieslabel"
msgid "_Entries"
msgstr "Merkinnät"
+#. qqKLe
+#: sc/uiconfig/scalc/ui/optsortlists.ui:160
+msgctxt "extended_tip|lists"
+msgid "Displays all the available lists. These lists can be selected for editing."
+msgstr "Ruudussa on näkyvissä kaikki luettelot. Ne ovat valittavissa muokattaviksi."
+
+#. esSFN
+#: sc/uiconfig/scalc/ui/optsortlists.ui:184
+msgctxt "extended_tip|entries"
+msgid "Displays the content of the currently selected list. This content can be edited."
+msgstr "Ruudussa on näkyvissä valitun luettelon sisältö. Se on muokattavissa."
+
#. GcE5C
-#: sc/uiconfig/scalc/ui/optsortlists.ui:190
+#: sc/uiconfig/scalc/ui/optsortlists.ui:210
msgctxt "optsortlists|new"
msgid "_New"
msgstr "Uusi"
+#. uH79F
+#: sc/uiconfig/scalc/ui/optsortlists.ui:217
+msgctxt "extended_tip|new"
+msgid "Enters the contents of a new list into the Entries box."
+msgstr "Kirjoitetaan uusi luettelo Merkinnät-ruutuun."
+
#. wETY5
-#: sc/uiconfig/scalc/ui/optsortlists.ui:204
+#: sc/uiconfig/scalc/ui/optsortlists.ui:229
msgctxt "optsortlists|discard"
msgid "_Discard"
msgstr "Hylkää"
#. KiBRx
-#: sc/uiconfig/scalc/ui/optsortlists.ui:218
+#: sc/uiconfig/scalc/ui/optsortlists.ui:243
msgctxt "optsortlists|add"
msgid "_Add"
msgstr "Lisää"
+#. pZWBh
+#: sc/uiconfig/scalc/ui/optsortlists.ui:250
+msgctxt "extended_tip|add"
+msgid "Adds a new list into the Lists box."
+msgstr "Uusi luotu lista lisätään Luettelot-ruutuun."
+
#. yADBm
-#: sc/uiconfig/scalc/ui/optsortlists.ui:232
+#: sc/uiconfig/scalc/ui/optsortlists.ui:262
msgctxt "optsortlists|modify"
msgid "Modif_y"
msgstr "Muuta"
#. yN2Fo
-#: sc/uiconfig/scalc/ui/optsortlists.ui:246
+#: sc/uiconfig/scalc/ui/optsortlists.ui:276
msgctxt "optsortlists|delete"
msgid "_Delete"
msgstr "Poista"
+#. FAswN
+#: sc/uiconfig/scalc/ui/optsortlists.ui:283
+msgctxt "optsortlists|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
+#. L7EBD
+#: sc/uiconfig/scalc/ui/optsortlists.ui:308
+msgctxt "extended_tip|OptSortLists"
+msgid "All user-defined lists are displayed in the Sort Lists dialog. You can also define and edit your own lists. Only text can be used as sort lists, no numbers."
+msgstr "Kaikki käyttäjän määrittämät luettelot ovat nähtävissä Lajitteluluettelot-valintaikkunassa. Voit myös määrittää omat lajitteluluettelosi. Siinä voidaan käyttää vain tekstiä, ei lukuja."
+
#. U2gkF
#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:8
msgctxt "pagetemplatedialog|PageTemplateDialog"
@@ -24759,167 +26818,287 @@ msgid "Paste Special"
msgstr "Liitä määräten"
#. XyU8o
-#: sc/uiconfig/scalc/ui/pastespecial.ui:102
+#: sc/uiconfig/scalc/ui/pastespecial.ui:99
msgctxt "pastespecial|paste_values_only|tooltip_text"
msgid "Values Only"
msgstr "Vain arvot"
#. 7GuDi
-#: sc/uiconfig/scalc/ui/pastespecial.ui:117
+#: sc/uiconfig/scalc/ui/pastespecial.ui:114
msgctxt "pastespecial|paste_values_formats|tooltip_text"
msgid "Values & Formats"
msgstr "Arvot ja muotoilut"
#. NJh3h
-#: sc/uiconfig/scalc/ui/pastespecial.ui:132
+#: sc/uiconfig/scalc/ui/pastespecial.ui:129
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose"
msgstr "Transponoi"
#. 5QYC5
-#: sc/uiconfig/scalc/ui/pastespecial.ui:177
+#: sc/uiconfig/scalc/ui/pastespecial.ui:174
msgctxt "pastespecial|paste_all"
msgid "_Paste all"
msgstr "Liitä kaikki"
+#. Labin
+#: sc/uiconfig/scalc/ui/pastespecial.ui:184
+msgctxt "pastespecial|extended_tip|paste_all"
+msgid "Pastes all cell contents, comments, formats, and objects into the current document."
+msgstr ""
+
#. BSEWE
-#: sc/uiconfig/scalc/ui/pastespecial.ui:194
+#: sc/uiconfig/scalc/ui/pastespecial.ui:196
msgctxt "pastespecial|text"
msgid "Te_xt"
msgstr "Teksti"
+#. JWDk5
+#: sc/uiconfig/scalc/ui/pastespecial.ui:205
+msgctxt "pastespecial|extended_tip|text"
+msgid "Inserts cells containing text."
+msgstr ""
+
#. qzFbg
-#: sc/uiconfig/scalc/ui/pastespecial.ui:210
+#: sc/uiconfig/scalc/ui/pastespecial.ui:217
msgctxt "pastespecial|numbers"
msgid "_Numbers"
msgstr "Numerot"
-#. DBaJD
+#. SCVEu
#: sc/uiconfig/scalc/ui/pastespecial.ui:226
+msgctxt "pastespecial|extended_tip|numbers"
+msgid "Inserts cells containing numbers."
+msgstr ""
+
+#. DBaJD
+#: sc/uiconfig/scalc/ui/pastespecial.ui:238
msgctxt "pastespecial|datetime"
msgid "_Date & time"
msgstr "Päivämäärä ja kellonaika"
+#. jq6Md
+#: sc/uiconfig/scalc/ui/pastespecial.ui:247
+msgctxt "pastespecial|extended_tip|datetime"
+msgid "Inserts cells containing date and time values."
+msgstr ""
+
#. MSe4m
-#: sc/uiconfig/scalc/ui/pastespecial.ui:242
+#: sc/uiconfig/scalc/ui/pastespecial.ui:259
msgctxt "pastespecial|formulas"
msgid "_Formulas"
msgstr "Kaavat"
+#. Na5Ba
+#: sc/uiconfig/scalc/ui/pastespecial.ui:268
+msgctxt "pastespecial|extended_tip|formulas"
+msgid "Inserts cells containing formulae."
+msgstr ""
+
#. NT4Am
-#: sc/uiconfig/scalc/ui/pastespecial.ui:258
+#: sc/uiconfig/scalc/ui/pastespecial.ui:280
msgctxt "pastespecial|comments"
msgid "_Comments"
msgstr "Huomautukset"
+#. 3uP7i
+#: sc/uiconfig/scalc/ui/pastespecial.ui:289
+msgctxt "pastespecial|extended_tip|comments"
+msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation."
+msgstr ""
+
#. aHXF8
-#: sc/uiconfig/scalc/ui/pastespecial.ui:274
+#: sc/uiconfig/scalc/ui/pastespecial.ui:301
msgctxt "pastespecial|formats"
msgid "For_mats"
msgstr "Muotoilu"
+#. ehyEf
+#: sc/uiconfig/scalc/ui/pastespecial.ui:310
+msgctxt "pastespecial|extended_tip|formats"
+msgid "Inserts cell format attributes."
+msgstr ""
+
#. Umb86
-#: sc/uiconfig/scalc/ui/pastespecial.ui:290
+#: sc/uiconfig/scalc/ui/pastespecial.ui:322
msgctxt "pastespecial|objects"
msgid "_Objects"
msgstr "Objektit"
+#. DZsnr
+#: sc/uiconfig/scalc/ui/pastespecial.ui:331
+msgctxt "pastespecial|extended_tip|objects"
+msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects."
+msgstr ""
+
#. gjnwU
-#: sc/uiconfig/scalc/ui/pastespecial.ui:312
+#: sc/uiconfig/scalc/ui/pastespecial.ui:349
msgctxt "pastespecial|label1"
msgid "Selection"
msgstr "Valinta"
#. nJiy4
-#: sc/uiconfig/scalc/ui/pastespecial.ui:346
+#: sc/uiconfig/scalc/ui/pastespecial.ui:383
msgctxt "pastespecial|none"
msgid "Non_e"
msgstr "Ei mitään"
+#. 7GKDG
+#: sc/uiconfig/scalc/ui/pastespecial.ui:393
+msgctxt "pastespecial|extended_tip|none"
+msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents."
+msgstr ""
+
#. CEsbt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:363
+#: sc/uiconfig/scalc/ui/pastespecial.ui:405
msgctxt "pastespecial|add"
msgid "_Add"
msgstr "Lisää"
+#. bNyh2
+#: sc/uiconfig/scalc/ui/pastespecial.ui:415
+msgctxt "pastespecial|extended_tip|add"
+msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells."
+msgstr ""
+
#. iFTvh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:380
+#: sc/uiconfig/scalc/ui/pastespecial.ui:427
msgctxt "pastespecial|subtract"
msgid "_Subtract"
msgstr "Vähennä"
+#. 2SKbT
+#: sc/uiconfig/scalc/ui/pastespecial.ui:437
+msgctxt "pastespecial|extended_tip|subtract"
+msgid "Subtracts the values in the clipboard cells from the values in the target cells."
+msgstr ""
+
#. pn4re
-#: sc/uiconfig/scalc/ui/pastespecial.ui:397
+#: sc/uiconfig/scalc/ui/pastespecial.ui:449
msgctxt "pastespecial|multiply"
msgid "Multipl_y"
msgstr "Kerro"
+#. jkRDm
+#: sc/uiconfig/scalc/ui/pastespecial.ui:459
+msgctxt "pastespecial|extended_tip|multiply"
+msgid "Multiplies the values in the clipboard cells with the values in the target cells."
+msgstr ""
+
#. ND3Xd
-#: sc/uiconfig/scalc/ui/pastespecial.ui:414
+#: sc/uiconfig/scalc/ui/pastespecial.ui:471
msgctxt "pastespecial|divide"
msgid "Di_vide"
msgstr "Jaa"
+#. 9VKdS
+#: sc/uiconfig/scalc/ui/pastespecial.ui:481
+msgctxt "pastespecial|extended_tip|divide"
+msgid "Divides the values in the target cells by the values in the clipboard cells."
+msgstr ""
+
#. 9otLM
-#: sc/uiconfig/scalc/ui/pastespecial.ui:437
+#: sc/uiconfig/scalc/ui/pastespecial.ui:499
msgctxt "pastespecial|label2"
msgid "Operations"
msgstr "Toiminnot"
#. FrhGC
-#: sc/uiconfig/scalc/ui/pastespecial.ui:471
+#: sc/uiconfig/scalc/ui/pastespecial.ui:533
msgctxt "pastespecial|skip_empty"
msgid "S_kip empty cells"
msgstr "Ohita tyhjät solut"
#. BodqB
-#: sc/uiconfig/scalc/ui/pastespecial.ui:475
+#: sc/uiconfig/scalc/ui/pastespecial.ui:537
msgctxt "pastespecial|skip_empty"
msgid "If enabled, blank cells in source will not override the target."
msgstr "Jos valittu, lähteen tyhjät solut eivät korvaa kohdetta."
+#. u2Cms
+#: sc/uiconfig/scalc/ui/pastespecial.ui:543
+msgctxt "pastespecial|extended_tip|skip_empty"
+msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard."
+msgstr ""
+
#. aDeKR
-#: sc/uiconfig/scalc/ui/pastespecial.ui:488
+#: sc/uiconfig/scalc/ui/pastespecial.ui:555
msgctxt "pastespecial|transpose"
msgid "_Transpose"
msgstr "Transponoi"
+#. P3eE4
+#: sc/uiconfig/scalc/ui/pastespecial.ui:564
+msgctxt "pastespecial|extended_tip|transpose"
+msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows."
+msgstr ""
+
#. eJ6zh
-#: sc/uiconfig/scalc/ui/pastespecial.ui:504
+#: sc/uiconfig/scalc/ui/pastespecial.ui:576
msgctxt "pastespecial|link"
msgid "_Link"
msgstr "Linkitä"
+#. Bg9dc
+#: sc/uiconfig/scalc/ui/pastespecial.ui:585
+msgctxt "pastespecial|extended_tip|link"
+msgid "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."
+msgstr ""
+
#. HCco8
-#: sc/uiconfig/scalc/ui/pastespecial.ui:526
+#: sc/uiconfig/scalc/ui/pastespecial.ui:603
msgctxt "pastespecial|label3"
msgid "Options"
msgstr "Asetukset"
#. fonBJ
-#: sc/uiconfig/scalc/ui/pastespecial.ui:560
+#: sc/uiconfig/scalc/ui/pastespecial.ui:637
msgctxt "pastespecial|no_shift"
msgid "Don't sh_ift"
msgstr "Älä siirrä"
+#. q3Xv3
+#: sc/uiconfig/scalc/ui/pastespecial.ui:647
+msgctxt "pastespecial|extended_tip|no_shift"
+msgid "Inserted cells replace the target cells."
+msgstr ""
+
#. 4HpJ2
-#: sc/uiconfig/scalc/ui/pastespecial.ui:577
+#: sc/uiconfig/scalc/ui/pastespecial.ui:659
msgctxt "pastespecial|move_down"
msgid "Do_wn"
msgstr "Alaspäin"
+#. BNALN
+#: sc/uiconfig/scalc/ui/pastespecial.ui:669
+msgctxt "pastespecial|extended_tip|move_down"
+msgid "Target cells are shifted downward when you insert cells from the clipboard."
+msgstr ""
+
#. obSAt
-#: sc/uiconfig/scalc/ui/pastespecial.ui:594
+#: sc/uiconfig/scalc/ui/pastespecial.ui:681
msgctxt "pastespecial|move_right"
msgid "_Right"
msgstr "Oikealle"
+#. GEFe7
+#: sc/uiconfig/scalc/ui/pastespecial.ui:691
+msgctxt "pastespecial|extended_tip|move_right"
+msgid "Target cells are shifted to the right when you insert cells from the clipboard."
+msgstr ""
+
#. fzYTm
-#: sc/uiconfig/scalc/ui/pastespecial.ui:617
+#: sc/uiconfig/scalc/ui/pastespecial.ui:709
msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr "Siirrä solut"
+#. ypkML
+#: sc/uiconfig/scalc/ui/pastespecial.ui:740
+msgctxt "pastespecial|extended_tip|PasteSpecial"
+msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
+msgstr "Lisätään leikepöydän sisältö käsiteltävään asiakirjaan määriteltävässä muodossa."
+
#. AqzPf
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:16
msgctxt "pivotfielddialog|PivotFieldDialog"
@@ -24927,43 +27106,61 @@ msgid "Data Field"
msgstr "Tietokenttä"
#. 8Lex4
-#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:37
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:34
msgctxt "pivotfielddialog|options"
msgid "_Options..."
msgstr "Asetukset..."
+#. G7ky9
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:41
+msgctxt "pivotfielddialog|extended_tip|options"
+msgid "Opens the Data Field Options dialog. The Options button is visible for column, row, or page fields only."
+msgstr ""
+
#. KBmND
-#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:136
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:138
msgctxt "pivotfielddialog|none"
msgid "_None"
msgstr "Ei mitään"
#. ABmZC
-#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:153
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:155
msgctxt "pivotfielddialog|auto"
msgid "_Automatic"
msgstr "Automaattinen"
#. mHvW7
-#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:169
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:171
msgctxt "pivotfielddialog|user"
msgid "_User-defined"
msgstr "Käyttäjän määrittämät"
+#. k2AjG
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:220
+msgctxt "pivotfielddialog|extended_tip|functions"
+msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected."
+msgstr ""
+
#. vDXUZ
-#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:232
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:239
msgctxt "pivotfielddialog|label1"
msgid "Subtotals"
msgstr "Välisummat"
#. cFxft
-#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:246
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:253
msgctxt "pivotfielddialog|showall"
msgid "Show it_ems without data"
msgstr "Näytä tyhjät tietueet"
+#. 7GAbs
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:262
+msgctxt "pivotfielddialog|extended_tip|showall"
+msgid "Includes empty columns and rows in the results table."
+msgstr ""
+
#. aUWEK
-#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:268
+#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:280
msgctxt "pivotfielddialog|label2"
msgid "Name:"
msgstr "Nimi:"
@@ -24975,91 +27172,181 @@ msgid "Filter"
msgstr "Suodatus"
#. BG3Bc
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:110
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:107
msgctxt "pivotfilterdialog|connect1"
msgid "AND"
msgstr "JA"
#. fwPGu
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:111
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:108
msgctxt "pivotfilterdialog|connect1"
msgid "OR"
msgstr "TAI"
+#. qaU7X
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:115
+msgctxt "pivotfilterdialog|extended_tip|connect1"
+msgid "Select a logical operator for the filter."
+msgstr ""
+
#. TW6Uf
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:127
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:129
msgctxt "pivotfilterdialog|connect2"
msgid "AND"
msgstr "JA"
#. 4UZuA
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:128
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:130
msgctxt "pivotfilterdialog|connect2"
msgid "OR"
msgstr "TAI"
+#. t5VCe
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:134
+msgctxt "pivotfilterdialog|extended_tip|connect2"
+msgid "Select a logical operator for the filter."
+msgstr ""
+
#. rDPh7
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:140
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:147
msgctxt "pivotfilterdialog|label2"
msgid "Operator"
msgstr "Operaattori"
#. AQC5N
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:151
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:158
msgctxt "pivotfilterdialog|label3"
msgid "Field name"
msgstr "Kentän nimi"
#. 5NJCB
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:162
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:169
msgctxt "pivotfilterdialog|label4"
msgid "Condition"
msgstr "Ehto"
#. nCtXa
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:173
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:180
msgctxt "pivotfilterdialog|label5"
msgid "Value"
msgstr "Arvo"
+#. SvnJM
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:196
+msgctxt "pivotfilterdialog|extended_tip|field1"
+msgid "Select the field that you want to use in the filter. If field names are not available, the column labels are listed."
+msgstr ""
+
+#. mDaxf
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:214
+msgctxt "pivotfilterdialog|extended_tip|field2"
+msgid "Select the field that you want to use in the filter. If field names are not available, the column labels are listed."
+msgstr ""
+
+#. 3N44y
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:232
+msgctxt "pivotfilterdialog|extended_tip|field3"
+msgid "Select the field that you want to use in the filter. If field names are not available, the column labels are listed."
+msgstr ""
+
+#. jTLFv
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:258
+msgctxt "pivotfilterdialog|extended_tip|cond1"
+msgid "Select an operator to compare the Field name and Value entries."
+msgstr ""
+
+#. LW6w7
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:284
+msgctxt "pivotfilterdialog|extended_tip|cond2"
+msgid "Select an operator to compare the Field name and Value entries."
+msgstr ""
+
+#. vhSZ7
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:310
+msgctxt "pivotfilterdialog|extended_tip|cond3"
+msgid "Select an operator to compare the Field name and Value entries."
+msgstr ""
+
+#. dDii2
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:336
+msgctxt "pivotfilterdialog|extended_tip|val1"
+msgid "Select the value that you want to compare to the selected field."
+msgstr ""
+
+#. BiRxu
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:362
+msgctxt "pivotfilterdialog|extended_tip|val2"
+msgid "Select the value that you want to compare to the selected field."
+msgstr ""
+
+#. oWXWk
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:388
+msgctxt "pivotfilterdialog|extended_tip|val3"
+msgid "Select the value that you want to compare to the selected field."
+msgstr ""
+
#. 9X5GC
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:356
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:408
msgctxt "pivotfilterdialog|label1"
msgid "Filter Criteria"
msgstr "Suodatusehto"
#. ckB2T
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:394
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:446
msgctxt "pivotfilterdialog|case"
msgid "_Case sensitive"
msgstr "Kirjainkoon erottelu"
+#. nENeC
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:456
+msgctxt "pivotfilterdialog|extended_tip|case"
+msgid "Distinguishes between uppercase and lowercase letters."
+msgstr ""
+
#. ECBBQ
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:410
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:467
msgctxt "pivotfilterdialog|regexp"
msgid "Regular _expressions"
msgstr "Säännölliset lausekkeet"
+#. MB4Ab
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:477
+msgctxt "pivotfilterdialog|extended_tip|regexp"
+msgid "Allows you to use regular expressions in the filter definition."
+msgstr ""
+
#. cirEo
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:426
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:488
msgctxt "pivotfilterdialog|unique"
msgid "_No duplications"
msgstr "Karsi identtiset"
+#. QCGpa
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:498
+msgctxt "pivotfilterdialog|extended_tip|unique"
+msgid "Excludes duplicate rows in the list of filtered data."
+msgstr ""
+
#. GcFuF
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:458
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:525
msgctxt "pivotfilterdialog|dbarealabel"
msgid "Data range:"
msgstr "Tietoalue:"
#. inZxG
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:471
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:538
msgctxt "pivotfilterdialog|dbarea"
msgid "dummy"
msgstr "tyhjä"
+#. fFAgZ
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:542
+msgctxt "pivotfilterdialog|extended_tip|dbarea"
+msgid "Displays the name of the filtered data range in the table."
+msgstr ""
+
#. SxeCx
-#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:491
+#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:563
msgctxt "pivotfilterdialog|label6"
msgid "Op_tions"
msgstr "Asetukset"
@@ -25070,204 +27357,396 @@ msgctxt "pivottablelayoutdialog|PivotTableLayout"
msgid "Pivot Table Layout"
msgstr "Pivot-taulukon asettelu"
+#. FCKww
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:75
+msgctxt "pivottablelayoutdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. ieEKA
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:94
+msgctxt "pivottablelayoutdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. dhgK2
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:154
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:163
msgctxt "pivottablelayoutdialog|label3"
msgid "Column Fields:"
msgstr "Sarakekentät:"
+#. uxqkM
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:214
+msgctxt "pivottablelayoutdialog|extended_tip|listbox-column"
+msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas."
+msgstr ""
+
#. WWrpy
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:231
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:245
msgctxt "pivottablelayoutdialog|label5"
msgid "Data Fields:"
msgstr "Tietokentät:"
+#. DforL
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:296
+msgctxt "pivottablelayoutdialog|extended_tip|listbox-data"
+msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas."
+msgstr ""
+
#. BhTuC
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:308
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:327
msgctxt "pivottablelayoutdialog|label4"
msgid "Row Fields:"
msgstr "Rivikentät:"
+#. vsPty
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:376
+msgctxt "pivottablelayoutdialog|extended_tip|listbox-row"
+msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas."
+msgstr ""
+
#. 4XvEh
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:383
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:407
msgctxt "pivottablelayoutdialog|label2"
msgid "Filters:"
msgstr "Suodattimet:"
+#. 9M3jG
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:458
+msgctxt "pivottablelayoutdialog|extended_tip|listbox-page"
+msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas."
+msgstr ""
+
#. Scoht
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:470
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:495
msgctxt "pivottablelayoutdialog|label1"
msgid "Available Fields:"
msgstr "Mahdolliset kentät:"
+#. ZkDd9
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:545
+msgctxt "pivottablelayoutdialog|extended_tip|listbox-fields"
+msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas."
+msgstr ""
+
#. BL7Ff
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:546
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:576
msgctxt "pivottablelayoutdialog|label6"
msgid "Drag the Items into the Desired Position"
msgstr "Vedä kentät haluamaasi kohtaan"
#. 9EpNA
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:571
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:602
msgctxt "pivottablelayoutdialog|check-ignore-empty-rows"
msgid "Ignore empty rows"
msgstr "Ohita tyhjät rivit"
+#. CAJBa
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:611
+msgctxt "pivottablelayoutdialog|extended_tip|check-ignore-empty-rows"
+msgid "Ignores empty fields in the data source."
+msgstr ""
+
#. jgyea
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:587
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:622
msgctxt "pivottablelayoutdialog|check-identify-categories"
msgid "Identify categories"
msgstr "Tunnista luokat"
+#. uzKL8
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:631
+msgctxt "pivottablelayoutdialog|extended_tip|check-identify-categories"
+msgid "Automatically assigns rows without labels to the category of the row above."
+msgstr ""
+
#. U6pzh
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:603
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:642
msgctxt "pivottablelayoutdialog|check-total-rows"
msgid "Total rows"
msgstr "Summarivit"
+#. FdXjF
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:651
+msgctxt "pivottablelayoutdialog|extended_tip|check-total-rows"
+msgid "Calculates and displays the grand total of the row calculation."
+msgstr ""
+
#. Br8BE
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:619
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:662
msgctxt "pivottablelayoutdialog|check-total-columns"
msgid "Total columns"
msgstr "Summasarakkeet"
+#. DEFgB
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:671
+msgctxt "pivottablelayoutdialog|extended_tip|check-total-columns"
+msgid "Calculates and displays the grand total of the column calculation."
+msgstr ""
+
#. VXEdh
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:635
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:682
msgctxt "pivottablelayoutdialog|check-add-filter"
msgid "Add filter"
msgstr "Lisää suodatin"
+#. TEUXm
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:691
+msgctxt "pivottablelayoutdialog|extended_tip|check-add-filter"
+msgid "Adds a Filter button to pivot tables that are based on spreadsheet data."
+msgstr ""
+
#. ud4H8
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:651
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:702
msgctxt "pivottablelayoutdialog|check-drill-to-details"
msgid "Enable drill to details"
msgstr "Kaksoisnapsautus näyttää yksityiskohdat"
+#. EVPJi
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:711
+msgctxt "pivottablelayoutdialog|extended_tip|check-drill-to-details"
+msgid "Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell."
+msgstr ""
+
#. iFA3A
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:671
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:726
msgctxt "pivottablelayoutdialog|label11"
msgid "Options"
msgstr "Asetukset"
#. LevDB
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:723
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:775
msgctxt "pivottablelayoutdialog|destination-radio-new-sheet"
msgid "New sheet"
msgstr "Uusi taulukko"
#. Ld2sG
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:740
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:792
msgctxt "pivottablelayoutdialog|destination-radio-selection"
msgid "Selection"
msgstr "Valinta"
+#. A9WmF
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:813
+msgctxt "pivottablelayoutdialog|extended_tip|destination-edit"
+msgid "Select the area where you want to display the results of the pivot table."
+msgstr ""
+
+#. WEQjx
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:829
+msgctxt "pivottablelayoutdialog|extended_tip|destination-button"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. LBRZw
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:844
+msgctxt "pivottablelayoutdialog|extended_tip|destination-list"
+msgid "Select the area where you want to display the results of the pivot table."
+msgstr ""
+
#. UjyGK
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:789
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:856
msgctxt "pivottablelayoutdialog|destination-radio-named-range"
msgid "Named range"
msgstr "Nimetty alue"
#. xhpiB
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:811
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:878
msgctxt "pivottablelayoutdialog|label8"
msgid "Destination"
msgstr "Kohde"
#. yDG3C
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:847
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:912
msgctxt "pivottablelayoutdialog|source-radio-selection"
msgid "Selection"
msgstr "Valinta"
+#. AkQEw
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:934
+msgctxt "pivottablelayoutdialog|extended_tip|source-edit"
+msgid "Select the area that contains the data for the current pivot table."
+msgstr ""
+
+#. uq7zD
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:950
+msgctxt "pivottablelayoutdialog|extended_tip|source-button"
+msgid "Select the area that contains the data for the current pivot table."
+msgstr ""
+
#. 6s5By
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:886
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:961
msgctxt "pivottablelayoutdialog|source-radio-named-range"
msgid "Named range"
msgstr "Nimetty alue"
#. QTYpg
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:919
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:994
msgctxt "pivottablelayoutdialog|label9"
msgid "Source"
msgstr "Lähde"
#. daE6g
-#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:937
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1012
msgctxt "pivottablelayoutdialog|label7"
msgid "Source and Destination"
msgstr "Lähde ja kohde"
+#. WUqGN
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1021
+msgctxt "pivottablelayoutdialog|extended_tip|more"
+msgid "Displays or hides additional options for defining the pivot table."
+msgstr ""
+
+#. rSsEg
+#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1047
+msgctxt "pivottablelayoutdialog|extended_tip|PivotTableLayout"
+msgid "Specify the layout of the table that is generated by the pivot table."
+msgstr ""
+
#. bzj3c
#: sc/uiconfig/scalc/ui/printareasdialog.ui:8
msgctxt "printareasdialog|PrintAreasDialog"
msgid "Edit Print Ranges"
msgstr "Muuta tulostusalueita"
+#. 9SYaB
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:33
+msgctxt "printareasdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. BftEK
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:52
+msgctxt "printareasdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
+#. DrnyM
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:123
+msgctxt "printareasdialog|extended_tip|rbprintarea"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
+#. 6nt5h
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:141
+msgctxt "printareasdialog|extended_tip|edprintarea"
+msgid "Allows you to modify a defined print range."
+msgstr ""
+
#. ED3qW
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:138
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:155
msgctxt "printareasdialog|lbprintarea"
msgid "- none -"
msgstr "- ei mitään -"
#. q6nvt
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:139
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:156
msgctxt "printareasdialog|lbprintarea"
msgid "- entire sheet -"
msgstr "- koko taulukko -"
#. jpkBC
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:140
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:157
msgctxt "printareasdialog|lbprintarea"
msgid "- user defined -"
msgstr "- käyttäjän määrittämä -"
#. aBLgV
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:141
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:158
msgctxt "printareasdialog|lbprintarea"
msgid "- selection -"
msgstr "- valinta -"
+#. SFHa4
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:162
+msgctxt "printareasdialog|extended_tip|lbprintarea"
+msgid "Allows you to modify a defined print range."
+msgstr ""
+
#. frRTf
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:157
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:179
msgctxt "printareasdialog|label1"
msgid "Print Range"
msgstr "Tulostusalue"
+#. eySzA
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:222
+msgctxt "printareasdialog|extended_tip|edrepeatrow"
+msgid "Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\"."
+msgstr ""
+
+#. J22Vh
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:241
+msgctxt "printareasdialog|extended_tip|rbrepeatrow"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. XqwBA
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:223
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:255
msgctxt "printareasdialog|lbrepeatrow"
msgid "- none -"
msgstr "- ei mitään -"
#. Ya4kd
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:224
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:256
msgctxt "printareasdialog|lbrepeatrow"
msgid "- user defined -"
msgstr "- käyttäjän määrittämä -"
+#. fmxFD
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:260
+msgctxt "printareasdialog|extended_tip|lbrepeatrow"
+msgid "Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\"."
+msgstr ""
+
#. EFCSq
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:240
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:277
msgctxt "printareasdialog|label2"
msgid "Rows to Repeat"
msgstr "Toistettavat rivit"
+#. GNLBq
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:320
+msgctxt "printareasdialog|extended_tip|edrepeatcol"
+msgid "Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\"."
+msgstr ""
+
+#. MG6GD
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:339
+msgctxt "printareasdialog|extended_tip|rbrepeatcol"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. bKSEJ
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:306
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:353
msgctxt "printareasdialog|lbrepeatcol"
msgid "- none -"
msgstr "- ei mitään -"
#. DnrZP
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:307
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:354
msgctxt "printareasdialog|lbrepeatcol"
msgid "- user defined -"
msgstr "- käyttäjän määrittämä -"
+#. vhTpH
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:358
+msgctxt "printareasdialog|extended_tip|lbrepeatcol"
+msgid "Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\"."
+msgstr ""
+
#. Ushqp
-#: sc/uiconfig/scalc/ui/printareasdialog.ui:323
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:375
msgctxt "printareasdialog|label3"
msgid "Columns to Repeat"
msgstr "Toistettavat sarakkeet"
+#. jpB5m
+#: sc/uiconfig/scalc/ui/printareasdialog.ui:407
+msgctxt "printareasdialog|extended_tip|PrintAreasDialog"
+msgid "Opens a dialog where you can specify the print range."
+msgstr ""
+
#. 4tC5Y
#: sc/uiconfig/scalc/ui/printeroptions.ui:25
msgctxt "printeroptions|suppressemptypages"
@@ -25287,64 +27766,70 @@ msgid "Protect Sheet"
msgstr "Suojaa taulukko"
#. y8tgW
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:109
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:106
msgctxt "protectsheetdlg|protect"
msgid "P_rotect this sheet and the contents of protected cells"
msgstr "S_uojaa tämä taulukko ja suojattujen solujen sisältö"
#. MvZAZ
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:135
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:132
msgctxt "protectsheetdlg|label1"
msgid "_Password:"
msgstr "Salasana:"
#. sBBwy
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:150
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:147
msgctxt "protectsheetdlg|label2"
msgid "_Confirm:"
msgstr "Vahvista:"
#. 7ccwU
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:216
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:213
msgctxt "protectsheetdlg|label4"
msgid "Allow all users of this sheet to:"
msgstr "Kaikki tämän taulukon käyttäjät voivat:"
#. 64Z7f
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:294
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:291
msgctxt "protectsheetdlg|protected"
msgid "Select protected cells"
msgstr "Valitse suojatut solut"
+#. qQhAG
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:303
+msgctxt "protectsheetdlg|delete-columns"
+msgid "Delete columns"
+msgstr "Poista sarakkeita"
+
#. fsQEB
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:306
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:315
msgctxt "protectsheetdlg|delete-rows"
msgid "Delete rows"
msgstr "Poista rivejä"
+#. cVdms
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:327
+msgctxt "protectsheetdlg|insert-columns"
+msgid "Insert columns"
+msgstr "Lisää sarakkeita"
+
#. Arv5t
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:318
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:339
msgctxt "protectsheetdlg|insert-rows"
msgid "Insert rows"
msgstr "Lisää rivejä"
#. y93cJ
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:330
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:351
msgctxt "protectsheetdlg|unprotected"
msgid "Select unprotected cells"
msgstr "Valitse suojaamattomat solut"
-#. cVdms
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:342
-msgctxt "protectsheetdlg|insert-columns"
-msgid "Insert columns"
-msgstr "Lisää sarakkeita"
-
-#. qQhAG
-#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:354
-msgctxt "protectsheetdlg|delete-columns"
-msgid "Delete columns"
-msgstr "Poista sarakkeita"
+#. MTnMc
+#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:392
+msgctxt "protectsheetdlg|extended_tip|ProtectSheetDialog"
+msgid "Protects the cells in the current sheet from being modified."
+msgstr ""
#. 3n2mh
#: sc/uiconfig/scalc/ui/queryrunstreamscriptdialog.ui:13
@@ -25359,11 +27844,17 @@ msgid "Random Number Generator"
msgstr "Satunnaislukugeneraattori"
#. EG6VJ
-#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:142
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:137
msgctxt "randomnumbergenerator|cell-range-label"
msgid "Cell range:"
msgstr "Solualue:"
+#. L25fm
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:158
+msgctxt "randomnumbergenerator|extended_tip|cell-range-edit"
+msgid "Define the range of cells to fill with random numbers. If you have previously selected a range, it will be displayed here."
+msgstr ""
+
#. Jy5mE
#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:188
msgctxt "randomnumbergenerator|label1"
@@ -25430,54 +27921,90 @@ msgctxt "randomnumbergenerator|distribution-liststore"
msgid "Negative Binomial"
msgstr "Negatiivinen binomi"
+#. sAgsR
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:254
+msgctxt "randomnumbergenerator|extended_tip|distribution-combo"
+msgid "The distribution function for the random number generator."
+msgstr ""
+
#. vMADv
-#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:263
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:268
msgctxt "randomnumbergenerator|parameter1-label"
msgid "..."
msgstr "..."
#. wVpC6
-#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:278
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:283
msgctxt "randomnumbergenerator|parameter2-label"
msgid "..."
msgstr "..."
#. mgEe5
-#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:327
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:332
msgctxt "randomnumbergenerator|label2"
msgid "Random Number Generator"
msgstr "Satunnaislukugeneraattori"
#. DAFgG
-#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:362
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:367
msgctxt "randomnumbergenerator|enable-seed-check"
msgid "Enable custom seed"
msgstr "Käytä omaa siemenlukua"
+#. bToRW
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:376
+msgctxt "randomnumbergenerator|extended_tip|enable-seed-check"
+msgid "Set the initial value of the random number generator to a known value Seed."
+msgstr ""
+
#. Tx5oq
-#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:381
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:391
msgctxt "randomnumbergenerator|seed-label"
msgid "Seed:"
msgstr "Siemenluku:"
+#. sB7kk
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:410
+msgctxt "randomnumbergenerator|extended_tip|seed-spin"
+msgid "Value set to initiate the random number generator algorithm. It is used to initialize (seed) the random number generator in order to reproduce the same sequence of pseudorandom numbers. Specify a positive integer number (1, 2, ...) to produce a specific sequence, or leave the field blank if you don't need this particular feature."
+msgstr ""
+
#. sEjpT
-#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:406
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:421
msgctxt "randomnumbergenerator|enable-rounding-check"
msgid "Enable rounding"
msgstr "Salli pyöristys"
+#. 8n4v9
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:430
+msgctxt "randomnumbergenerator|extended_tip|enable-rounding-check"
+msgid "Truncate the number to a given number of Decimal Places."
+msgstr ""
+
#. nRvWV
-#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:426
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:446
msgctxt "randomnumbergenerator|decimal-places-label"
msgid "Decimal places:"
msgstr "Desimaaleja:"
+#. Pdt9C
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:467
+msgctxt "randomnumbergenerator|extended_tip|decimal-places-spin"
+msgid "Number of decimal places of the numbers generated."
+msgstr ""
+
#. FTBJB
-#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:459
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:484
msgctxt "randomnumbergenerator|label4"
msgid "Options"
msgstr "Asetukset"
+#. JAk8A
+#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:510
+msgctxt "randomnumbergenerator|extended_tip|RandomNumberGeneratorDialog"
+msgid "Populate a cell range with automatically generated pseudo random numbers with the selected distribution function and its parameters."
+msgstr ""
+
#. kbBoD
#: sc/uiconfig/scalc/ui/recalcquerydialog.ui:30
msgctxt "recalcquerydialog|ask"
@@ -25491,101 +28018,107 @@ msgid "Regression"
msgstr "Regressio"
#. NuoZN
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:109
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:105
msgctxt "regressiondialog|variable1-range-label"
msgid "Independent variable(s) (X) range:"
msgstr ""
#. NGXXg
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:148
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:144
msgctxt "regressiondialog|variable2-range-label"
msgid "Dependent variable (Y) range:"
msgstr ""
#. SougG
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:185
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:181
msgctxt "regressiondialog|withlabels-check"
msgid "Both X and Y ranges have labels"
msgstr ""
#. YKUpg
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:202
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:198
msgctxt "regressiondialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. ngLrg
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:245
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:241
msgctxt "regressiondialog|label1"
msgid "Data"
msgstr "Tiedot"
#. vTmkj
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:280
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:276
msgctxt "regressiondialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sarakkeet"
#. A8787
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:296
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:292
msgctxt "regressiondialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rivit"
#. zzc9a
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:318
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:314
msgctxt "regressiondialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
#. t5Lm2
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:353
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:349
msgctxt "regressiondialog|linear-radio"
msgid "Linear Regression"
msgstr "Lineaarinen regressio"
#. bC6dH
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:370
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:366
msgctxt "regressiondialog|logarithmic-radio"
msgid "Logarithmic Regression"
msgstr "Logaritminen regressio"
#. fSEJF
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:387
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:383
msgctxt "regressiondialog|power-radio"
msgid "Power Regression"
msgstr "Potenssiregressio"
#. nhcJV
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:410
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:406
msgctxt "regressiondialog|label3"
msgid "Output Regression Types"
msgstr "Laskettavat regressiotyypit"
#. W98uM
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:446
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:442
msgctxt "regressiondialog|label5"
msgid "Confidence level"
msgstr "Luottamustaso"
#. pB2GA
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:456
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:452
msgctxt "regressiondialog|calcresiduals-check"
msgid "Calculate residuals"
msgstr "Laske jäännöstermit"
#. EuJeA
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:488
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:484
msgctxt "regressiondialog|nointercept-check"
msgid "Force intercept to be zero"
msgstr "Pakota leikkauspiste nollaksi"
#. ieBEk
-#: sc/uiconfig/scalc/ui/regressiondialog.ui:507
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:503
msgctxt "regressiondialog|label4"
msgid "Options"
msgstr "Valinnat"
+#. LU6He
+#: sc/uiconfig/scalc/ui/regressiondialog.ui:541
+msgctxt "regressiondialog|extended_tip|RegressionDialog"
+msgid "Produces the regression analysis of a data set"
+msgstr ""
+
#. LEWRz
#: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:21
msgctxt "replacenulltransformationentry|name"
@@ -25634,17 +28167,17 @@ msgctxt "retypepassdialog|retypeDocButton"
msgid "_Re-type"
msgstr "Kirjoita uudestaan"
-#. QWtCp
+#. gdBXs
#: sc/uiconfig/scalc/ui/retypepassdialog.ui:158
msgctxt "retypepassdialog|label2"
-msgid "Document protection"
-msgstr "Asiakirjan suojaus"
+msgid "Document Protection"
+msgstr ""
-#. Bqz9G
+#. TriyK
#: sc/uiconfig/scalc/ui/retypepassdialog.ui:221
msgctxt "retypepassdialog|label3"
-msgid "Sheet protection"
-msgstr "Taulukon suojaus"
+msgid "Sheet Protection"
+msgstr ""
#. eGMrC
#: sc/uiconfig/scalc/ui/retypepassworddialog.ui:8
@@ -25718,12 +28251,30 @@ msgctxt "rowheightdialog|label1"
msgid "Height:"
msgstr "Korkeus:"
+#. cZCeF
+#: sc/uiconfig/scalc/ui/rowheightdialog.ui:108
+msgctxt "rowheightdialog|extended_tip|value"
+msgid "Enter the row height that you want to use."
+msgstr "Annetaan käytettävä rivikorkeus."
+
#. thALC
-#: sc/uiconfig/scalc/ui/rowheightdialog.ui:114
+#: sc/uiconfig/scalc/ui/rowheightdialog.ui:119
msgctxt "rowheightdialog|default"
msgid "_Default value"
msgstr "Oletusarvo"
+#. stFFG
+#: sc/uiconfig/scalc/ui/rowheightdialog.ui:128
+msgctxt "rowheightdialog|extended_tip|default"
+msgid "Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents."
+msgstr "Säädetään rivikorkeus oletusmallin mukaiseksi. Olemassaoleva sisältö voi näkyä pystysuunnassa rajautuneena. Korkeus ei enää kasva lisättäessä korkeampaa sisältöä."
+
+#. qEa9T
+#: sc/uiconfig/scalc/ui/rowheightdialog.ui:159
+msgctxt "rowheightdialog|extended_tip|RowHeightDialog"
+msgid "Changes the height of the current row, or the selected rows."
+msgstr "Muutetaan kohdistetun rivin tai valittujen rivien korkeutta."
+
#. z864t
#: sc/uiconfig/scalc/ui/samplingdialog.ui:20
msgctxt "samplingdialog|SamplingDialog"
@@ -25731,143 +28282,209 @@ msgid "Sampling"
msgstr "Otanta"
#. E5wq9
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:116
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:112
msgctxt "samplingdialog|input-range-label"
msgid "Input range:"
msgstr "Lähdealue:"
#. GPDR3
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:155
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:151
msgctxt "samplingdialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. GD2H5
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:198
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:194
msgctxt "samplingdialog|label4"
msgid "Data"
msgstr "Tiedot"
#. Hg3d9
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:253
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:249
msgctxt "samplingdialog|label1"
msgid "Sample size:"
msgstr "Otoskoko:"
#. wF3ky
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:266
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:262
msgctxt "samplingdialog|random-method-radio"
msgid "Random"
msgstr "Satunnainen"
#. ug6Sn
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:283
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:279
msgctxt "samplingdialog|periodic-method-radio"
msgid "Periodic"
msgstr "Jaksollinen"
#. xNEnn
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:320
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:316
msgctxt "samplingdialog|label3"
msgid "Period:"
msgstr "Jakso:"
#. FkbDr
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:332
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:328
msgctxt "samplingdialog|with-replacement"
msgid "With replacement"
msgstr ""
#. kmvMk
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:348
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:344
msgctxt "samplingdialog|keep-order"
msgid "Keep order"
msgstr "Säilytä järjestys"
#. PdUup
-#: sc/uiconfig/scalc/ui/samplingdialog.ui:370
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:366
msgctxt "samplingdialog|label2"
msgid "Sampling Method"
msgstr "Otantamenetelmä"
+#. nXCVg
+#: sc/uiconfig/scalc/ui/samplingdialog.ui:391
+msgctxt "samplingdialog|extended_tip|SamplingDialog"
+msgid "Create a table with data sampled from another table."
+msgstr ""
+
#. WMPmE
#: sc/uiconfig/scalc/ui/scenariodialog.ui:8
msgctxt "scenariodialog|ScenarioDialog"
msgid "Create Scenario"
msgstr "Luo skenaario"
+#. DiwkC
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:108
+msgctxt "scenariodialog|extended_tip|name"
+msgid "Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario."
+msgstr ""
+
#. xwJe3
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:117
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:119
msgctxt "scenariodialog|label1"
msgid "Name of Scenario"
msgstr "Skenaarion nimi"
+#. GBB6Y
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:168
+msgctxt "scenariodialog|extended_tip|comment"
+msgid "Specifies additional information about the scenario. This information will be displayed in the Navigator when you click the Scenarios icon and select the desired scenario."
+msgstr ""
+
#. X9GgG
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:176
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:183
msgctxt "scenariodialog|label2"
msgid "Comment"
msgstr "Huomautus"
#. GcXCj
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:210
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:217
msgctxt "scenariodialog|copyback"
msgid "Copy _back"
msgstr "Kopioi takaisin"
+#. AFrxj
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:226
+msgctxt "scenariodialog|extended_tip|copyback"
+msgid "Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the Copy back setting depends on the cell protection, the sheet protection, and the Prevent changes settings."
+msgstr ""
+
#. RZHB9
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:225
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:237
msgctxt "scenariodialog|copysheet"
msgid "Copy _entire sheet"
msgstr "Kopioi koko taulukko"
+#. awzT2
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:246
+msgctxt "scenariodialog|extended_tip|copysheet"
+msgid "Copies the entire sheet into an additional scenario sheet."
+msgstr ""
+
#. DxHKD
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:240
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:257
msgctxt "scenariodialog|preventchanges"
msgid "_Prevent changes"
msgstr "Estä muutokset"
+#. QJLrA
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:266
+msgctxt "scenariodialog|extended_tip|preventchanges"
+msgid "Prevents changes to the active scenario. The behavior of the Copy back setting depends on the cell protection, the sheet protection, and the Prevent changes settings."
+msgstr ""
+
#. 6xvMR
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:260
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:282
msgctxt "scenariodialog|showframe"
msgid "_Display border"
msgstr "Rajan väri"
+#. NuN3J
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:294
+msgctxt "scenariodialog|extended_tip|showframe"
+msgid "Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option."
+msgstr ""
+
+#. cTLu7
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:319
+msgctxt "scenariodialog|extended_tip|bordercolor"
+msgid "Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option."
+msgstr ""
+
#. R8AVm
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:310
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:342
msgctxt "scenariodialog|label3"
msgid "Settings"
msgstr "Asetukset"
#. RGGkM
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:326
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:358
msgctxt "scenariodialog|alttitle"
msgid "Edit Scenario"
msgstr "Muuta skenaariota"
#. L3X5A
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:342
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:374
msgctxt "scenariodialog|createdft"
msgid "Created by"
msgstr "Tekijä"
#. 6uiPw
-#: sc/uiconfig/scalc/ui/scenariodialog.ui:353
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:385
msgctxt "scenariodialog|onft"
msgid "on"
msgstr "luontiaika"
+#. RrSE3
+#: sc/uiconfig/scalc/ui/scenariodialog.ui:417
+msgctxt "scenariodialog|extended_tip|ScenarioDialog"
+msgid "Defines a scenario for the selected sheet area."
+msgstr ""
+
#. 9fG2A
#: sc/uiconfig/scalc/ui/scenariomenu.ui:12
msgctxt "scenariomenu|delete"
msgid "Delete"
msgstr "Poista"
+#. ncXzy
+#: sc/uiconfig/scalc/ui/scenariomenu.ui:16
+msgctxt "scenariomenu|extended_tip|delete"
+msgid "Deletes the selected scenario."
+msgstr ""
+
#. ZnKYh
-#: sc/uiconfig/scalc/ui/scenariomenu.ui:20
+#: sc/uiconfig/scalc/ui/scenariomenu.ui:25
msgctxt "scenariomenu|edit"
msgid "Properties..."
msgstr "Ominaisuudet..."
+#. nAdtF
+#: sc/uiconfig/scalc/ui/scenariomenu.ui:29
+msgctxt "scenariomenu|extended_tip|edit"
+msgid "Opens the Edit scenario dialog, where you can edit the scenario properties."
+msgstr ""
+
#. Hi3gG
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:40
msgctxt "scgeneralpage|label4"
@@ -25880,116 +28497,176 @@ msgctxt "scgeneralpage|label5"
msgid "_Tab stops:"
msgstr "Sarkainkohdat:"
+#. akEMb
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:72
+msgctxt "extended_tip|tabmf"
+msgid "Defines the tab stops distance."
+msgstr "Asetetaan sarkainväli."
+
+#. iwwhu
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:87
+msgctxt "extended_tip|unitlb"
+msgid "Defines the unit of measure in spreadsheets."
+msgstr "Valitaan laskentataulukossa käytettävä mittayksikkö."
+
#. zzQpA
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:94
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:104
msgctxt "scgeneralpage|label1"
msgid "Metrics"
msgstr "Mitat"
#. ZbcRD
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:127
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:137
msgctxt "scgeneralpage|alwaysrb"
msgid "_Always (from trusted locations)"
msgstr "_Aina (luotetuista sijainneista)"
#. 3baZU
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:144
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:154
msgctxt "scgeneralpage|requestrb"
msgid "_On request"
msgstr "Pyynnöstä"
#. AESok
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:162
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:172
msgctxt "scgeneralpage|neverrb"
msgid "_Never"
msgstr "Ei koskaan"
#. GDxLR
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:186
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:196
msgctxt "scgeneralpage|label6"
msgid "Update links when opening"
msgstr "Päivitä linkit avattaessa"
#. GGhDQ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:220
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:230
msgctxt "scgeneralpage|editmodecb"
msgid "Press Enter to switch to _edit mode"
msgstr "Siirry muokkaustilaan Enter-näppäimellä"
+#. qVJpA
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:239
+msgctxt "extended_tip|editmodecb"
+msgid "Allows you to immediately edit the selected cell after pressing the Enter key."
+msgstr "Enterin painaminen vie solussa muokkaustilaan tällä valinnalla."
+
#. zzFGH
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:236
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:251
msgctxt "scgeneralpage|formatcb"
msgid "Expand _formatting"
msgstr "Laajenna muotoilua"
+#. 8fqgH
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:260
+msgctxt "extended_tip|formatcb"
+msgid "Specifies whether to automatically apply the formatting attributes of the selected cell to the empty adjacent cells."
+msgstr ""
+
#. AzkVC
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:252
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:272
msgctxt "scgeneralpage|exprefcb"
msgid "Expand _references when new columns/rows are inserted"
msgstr "Laajenna viitteitä, jos uusia rivejä tai sarakkeita lisätään"
+#. yybGX
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:281
+msgctxt "extended_tip|exprefcb"
+msgid "Specifies whether to expand references when inserting columns or rows adjacent to the reference range. This is only possible if the reference range, where the column or row is inserted, originally spanned at least two cells in the desired direction."
+msgstr "Määritetään, laajennetaanko kaavoissa viitteitä, kun sarakkeita tai rivejä lisätään viitatun alueen viereen. Tämä on mahdollista vain, jos kaavan viitteessä alueeseen kuuluu alunperin vähintään kahden solun laajuus lisäyssuunnassa. "
+
#. 6oRpB
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:273
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:298
msgctxt "scgeneralpage|alignlb"
msgid "Down"
msgstr "Alas"
#. tC8Do
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:274
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:299
msgctxt "scgeneralpage|alignlb"
msgid "Right"
msgstr "Oikealle"
#. AAUJ2
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:275
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:300
msgctxt "scgeneralpage|alignlb"
msgid "Up"
msgstr "Ylös"
#. p9JAq
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:276
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:301
msgctxt "scgeneralpage|alignlb"
msgid "Left"
msgstr "Vasemmalle"
+#. 2dTCJ
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:305
+msgctxt "extended_tip|alignlb"
+msgid "Determines the direction that the cursor in the spreadsheet will move after you press the Enter key."
+msgstr "Asetetaan suunta, johon Enter-painallus siirtää kohdistimen laskentataulukon solusta."
+
#. dnDdz
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:286
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:316
msgctxt "scgeneralpage|aligncb"
msgid "Press Enter to _move selection"
msgstr "Enter-näppäin siirtää kohdistusta"
#. UStnu
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:301
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:331
msgctxt "scgeneralpage|legacy_cell_selection_cb"
msgid "Position cell reference with selection"
msgstr ""
+#. MJyaA
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:340
+msgctxt "extended_tip|legacy_cell_selection_cb"
+msgid "With the option set, expanding a selection (with Ctrl + Shift + Down/Up) jumps to the end of the range in the column that was added as last to the initial selection. When the option is not set, expanding a selection (with Ctrl + Shift + Down/Up) jumps to the end of the range in the column where selecting the cell range was started. The same of course applies when extending a selection on rows, with Ctrl + Shift + Left/Right."
+msgstr ""
+
#. S2fGF
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:317
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:352
msgctxt "scgeneralpage|replwarncb"
msgid "Show overwrite _warning when pasting data"
msgstr "Varoita ylikirjoituksesta liitettäessä"
+#. yDGPC
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:361
+msgctxt "extended_tip|replwarncb"
+msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears."
+msgstr "Valinnan mukaisesti tulee varoitus, jos leikepöydältä yritetään liittää soluja solualueelle, joka ei ole tyhjä."
+
#. LFenu
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:333
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:373
msgctxt "scgeneralpage|textfmtcb"
msgid "Use printer metrics for text formatting"
msgstr "Käytä tulostimen mittoja tekstin muotoilussa"
+#. ECUd7
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:381
+msgctxt "extended_tip|textfmtcb"
+msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen."
+msgstr "Määritetään tulostimen mitat käyttöön muotoiluun myös näytöllä."
+
#. zW9SZ
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:348
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:393
msgctxt "scgeneralpage|markhdrcb"
msgid "Highlight sele_ction in column/row headers"
msgstr "Korosta valinta sarake- ja rivitunnuksissa"
+#. payBv
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:402
+msgctxt "extended_tip|markhdrcb"
+msgid "Specifies whether to highlight column and row headers in the selected columns or rows."
+msgstr "Merkitsemällä ruutu määrätään, että valittaessa soluja vastaavat rivi- ja saraketunnukset korostuvat."
+
#. KGWyE
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:364
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:414
msgctxt "scgeneralpage|sortrefupdatecb"
msgid "Update references when sorting range of cells"
msgstr "Päivitä viittaukset solualuetta lajiteltaessa"
#. M9G8o
-#: sc/uiconfig/scalc/ui/scgeneralpage.ui:385
+#: sc/uiconfig/scalc/ui/scgeneralpage.ui:435
msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "Syöttöasetukset"
@@ -26037,49 +28714,67 @@ msgid "Select Data Source"
msgstr "Valitse tietolähde"
#. Apf6s
-#: sc/uiconfig/scalc/ui/selectdatasource.ui:104
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:100
msgctxt "selectdatasource|label2"
msgid "_Database:"
msgstr "Tietokanta:"
#. FUXnG
-#: sc/uiconfig/scalc/ui/selectdatasource.ui:118
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:114
msgctxt "selectdatasource|label4"
msgid "_Type:"
msgstr "Tyyppi:"
+#. C2J5p
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:131
+msgctxt "selectdatasource|extended_tip|database"
+msgid "Select the database that contains the data source that you want to use."
+msgstr ""
+
#. BYmD6
-#: sc/uiconfig/scalc/ui/selectdatasource.ui:145
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:146
msgctxt "selectdatasource|type"
msgid "Table"
msgstr "Taulukko"
#. vDibq
-#: sc/uiconfig/scalc/ui/selectdatasource.ui:146
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:147
msgctxt "selectdatasource|type"
msgid "Query"
msgstr "Kysely"
#. LRSFg
-#: sc/uiconfig/scalc/ui/selectdatasource.ui:147
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:148
msgctxt "selectdatasource|type"
msgid "Sql"
msgstr "Sql"
#. 2vGhJ
-#: sc/uiconfig/scalc/ui/selectdatasource.ui:148
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:149
msgctxt "selectdatasource|type"
msgid "Sql [Native]"
msgstr "Sql [suora]"
+#. jZRBA
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:153
+msgctxt "selectdatasource|extended_tip|type"
+msgid "Click the source type of for the selected data source."
+msgstr ""
+
#. 3tKUG
-#: sc/uiconfig/scalc/ui/selectdatasource.ui:160
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:166
msgctxt "selectdatasource|label3"
msgid "Data so_urce:"
msgstr "Tietolähde:"
+#. 7hEo7
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:190
+msgctxt "selectdatasource|extended_tip|datasource"
+msgid "Select the data source that you want to use."
+msgstr ""
+
#. 82STt
-#: sc/uiconfig/scalc/ui/selectdatasource.ui:196
+#: sc/uiconfig/scalc/ui/selectdatasource.ui:207
msgctxt "selectdatasource|label1"
msgid "Selection"
msgstr "Valinta"
@@ -26090,48 +28785,84 @@ msgctxt "selectrange|SelectRangeDialog"
msgid "Select Database Range"
msgstr "Valitse tietokanta-alue"
+#. LTKjo
+#: sc/uiconfig/scalc/ui/selectrange.ui:132
+msgctxt "selectrange|extended_tip|treeview"
+msgid "Lists the available database ranges. To select a database range, click its name, and then click OK."
+msgstr ""
+
#. EpBCK
-#: sc/uiconfig/scalc/ui/selectrange.ui:143
+#: sc/uiconfig/scalc/ui/selectrange.ui:145
msgctxt "selectrange|label1"
msgid "Ranges"
msgstr "Alueet"
+#. DnqZ2
+#: sc/uiconfig/scalc/ui/selectrange.ui:170
+msgctxt "selectrange|extended_tip|SelectRangeDialog"
+msgid "Selects a database range that you defined under Data - Define Range."
+msgstr ""
+
#. EzRBz
#: sc/uiconfig/scalc/ui/selectsource.ui:8
msgctxt "selectsource|SelectSourceDialog"
msgid "Select Source"
msgstr "Valitse lähde"
+#. jiPGh
+#: sc/uiconfig/scalc/ui/selectsource.ui:104
+msgctxt "selectsource|namedrange"
+msgid "_Named range:"
+msgstr "Nimetty alue:"
+
#. ECBru
-#: sc/uiconfig/scalc/ui/selectsource.ui:100
+#: sc/uiconfig/scalc/ui/selectsource.ui:146
msgctxt "selectsource|selection"
msgid "_Current selection"
msgstr "_Nykyinen valinta"
-#. jiPGh
-#: sc/uiconfig/scalc/ui/selectsource.ui:122
-msgctxt "selectsource|namedrange"
-msgid "_Named range:"
-msgstr "Nimetty alue:"
+#. gBdW4
+#: sc/uiconfig/scalc/ui/selectsource.ui:156
+msgctxt "selectsource|extended_tip|selection"
+msgid "Uses the selected cells as the data source for the pivot table."
+msgstr ""
#. gsMej
-#: sc/uiconfig/scalc/ui/selectsource.ui:163
+#: sc/uiconfig/scalc/ui/selectsource.ui:168
msgctxt "selectsource|database"
msgid "_Data source registered in %PRODUCTNAME"
msgstr "%PRODUCTNAMEssa rekisteröity _tietolähde"
+#. whAZ5
+#: sc/uiconfig/scalc/ui/selectsource.ui:178
+msgctxt "selectsource|extended_tip|database"
+msgid "Uses a table or query in a database that is registered in %PRODUCTNAME as the data source for the pivot table."
+msgstr ""
+
#. ZDghg
-#: sc/uiconfig/scalc/ui/selectsource.ui:180
+#: sc/uiconfig/scalc/ui/selectsource.ui:190
msgctxt "selectsource|external"
msgid "_External source/interface"
msgstr "_Ulkoinen tietolähde tai rajapinta"
+#. S9LNt
+#: sc/uiconfig/scalc/ui/selectsource.ui:200
+msgctxt "selectsource|extended_tip|external"
+msgid "Opens the External Source dialog where you can select the OLAP data source for the pivot table."
+msgstr ""
+
#. 8ZtBt
-#: sc/uiconfig/scalc/ui/selectsource.ui:203
+#: sc/uiconfig/scalc/ui/selectsource.ui:218
msgctxt "selectsource|label1"
msgid "Selection"
msgstr "Valinta"
+#. JV3gr
+#: sc/uiconfig/scalc/ui/selectsource.ui:240
+msgctxt "selectsource|extended_tip|SelectSourceDialog"
+msgid "Opens a dialog where you can select the source for your pivot table, and then create your table."
+msgstr ""
+
#. DEDQP
#: sc/uiconfig/scalc/ui/sharedfooterdialog.ui:8
msgctxt "sharedfooterdialog|SharedFooterDialog"
@@ -26240,132 +28971,240 @@ msgctxt "sheetprintpage|radioBTN_TOPDOWN"
msgid "_Top to bottom, then right"
msgstr "_Ylhäältä alas, sitten oikealle"
+#. Fjdpq
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:86
+msgctxt "sheetprintpage|extended_tip|radioBTN_TOPDOWN"
+msgid "Prints vertically from the left column to the bottom of the sheet."
+msgstr ""
+
#. a2f9m
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:92
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:97
msgctxt "sheetprintpage|radioBTN_LEFTRIGHT"
msgid "_Left to right, then down"
msgstr "_Vasemmalta oikealle, sitten alas"
+#. 9Koax
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:110
+msgctxt "sheetprintpage|extended_tip|radioBTN_LEFTRIGHT"
+msgid "Prints horizontally from the top row of the sheet to the right column."
+msgstr ""
+
#. Zmz6D
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:111
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:121
msgctxt "sheetprintpage|checkBTN_PAGENO"
msgid "First _page number:"
msgstr "1. sivun numero:"
+#. SDefG
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:133
+msgctxt "sheetprintpage|extended_tip|checkBTN_PAGENO"
+msgid "Select this option if you want the first page to start with a number other than 1."
+msgstr ""
+
+#. mEyFM
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:154
+msgctxt "sheetprintpage|extended_tip|spinED_PAGENO"
+msgid "Enter the number of the first page."
+msgstr ""
+
#. ejXus
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:180
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:200
msgctxt "sheetprintpage|labelPageOrder"
msgid "Page Order"
msgstr "Sivujärjestys"
#. 6acF6
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:214
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:234
msgctxt "sheetprintpage|checkBTN_HEADER"
msgid "_Column and row headers"
msgstr "Sarake- ja rivitunnukset"
+#. tB2MC
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:243
+msgctxt "sheetprintpage|extended_tip|checkBTN_HEADER"
+msgid "Specifies whether you want the column and row headers to be printed."
+msgstr ""
+
#. A6vme
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:229
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:254
msgctxt "sheetprintpage|checkBTN_GRID"
msgid "_Grid"
msgstr "_Ruudukko"
+#. V7t5z
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:264
+msgctxt "sheetprintpage|extended_tip|checkBTN_GRID"
+msgid "Prints out the borders of the individual cells as a grid."
+msgstr ""
+
#. gwu4K
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:245
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:275
msgctxt "sheetprintpage|checkBTN_NOTES"
msgid "_Comments"
msgstr "Huomautukset"
+#. UJ7Js
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:284
+msgctxt "sheetprintpage|extended_tip|checkBTN_NOTES"
+msgid "Prints the comments defined in your spreadsheet."
+msgstr ""
+
#. JDNDB
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:260
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:295
msgctxt "sheetprintpage|checkBTN_OBJECTS"
msgid "_Objects/Images"
msgstr "Objektit/kuvat"
+#. PVDXS
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:304
+msgctxt "sheetprintpage|extended_tip|checkBTN_OBJECTS"
+msgid "Includes all inserted objects (if printable) and graphics with the printed document."
+msgstr ""
+
#. JvBi3
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:275
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:315
msgctxt "sheetprintpage|checkBTN_CHARTS"
msgid "Charts"
msgstr "Kaaviot"
+#. tXEiG
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:324
+msgctxt "sheetprintpage|extended_tip|checkBTN_CHARTS"
+msgid "Prints the charts that have been inserted into your spreadsheet."
+msgstr ""
+
#. zUYVr
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:290
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:335
msgctxt "sheetprintpage|checkBTN_DRAWINGS"
msgid "_Drawing objects"
msgstr "Piirroso_bjektit"
+#. iqL8r
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:344
+msgctxt "sheetprintpage|extended_tip|checkBTN_DRAWINGS"
+msgid "Includes all drawing objects in the printed document."
+msgstr ""
+
#. ideQb
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:305
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:355
msgctxt "sheetprintpage|checkBTN_FORMULAS"
msgid "_Formulas"
msgstr "_Kaavat"
+#. 9PVBj
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:364
+msgctxt "sheetprintpage|extended_tip|checkBTN_FORMULAS"
+msgid "Prints the formulas contained in the cells, instead of the results."
+msgstr ""
+
#. seZGj
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:320
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:375
msgctxt "sheetprintpage|checkBTN_NULLVALS"
msgid "_Zero values"
msgstr "Nolla-arvot"
+#. gNEsv
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:384
+msgctxt "sheetprintpage|extended_tip|checkBTN_NULLVALS"
+msgid "Specifies that cells with a zero value are printed."
+msgstr ""
+
#. cAo6Q
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:353
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:413
msgctxt "sheetprintpage|labelPrint"
msgid "Print"
msgstr "Tulosta"
#. 5KGnx
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:386
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:446
msgctxt "sheetprintpage|labelScalingMode"
msgid "Scaling _mode:"
msgstr "Skaalaustila:"
#. 4B48Q
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:411
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:471
msgctxt "sheetprintpage|labelSF"
msgid "_Scaling factor:"
msgstr "Skaalauskerroin:"
+#. LDbqC
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:490
+msgctxt "sheetprintpage|extended_tip|spinED_SCALEALL"
+msgid "Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages."
+msgstr ""
+
#. AgUiF
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:451
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:516
msgctxt "sheetprintpage|labelWP"
msgid "_Width in pages:"
msgstr "Leveys sivuina:"
#. FVuA4
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:469
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:534
msgctxt "sheetprintpage|labelHP"
msgid "_Height in pages:"
msgstr "Korkeus sivuina:"
+#. AqCkB
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:562
+msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGEWIDTH"
+msgid "Enter the maximum number of pages to be printed horizontally across."
+msgstr ""
+
+#. Tpcb3
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:583
+msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGEHEIGHT"
+msgid "Enter the maximum number of pages to be printed vertically stacked."
+msgstr ""
+
#. SeMBt
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:533
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:608
msgctxt "sheetprintpage|labelNP"
msgid "N_umber of pages:"
msgstr "Sivujen määrä:"
+#. KeXD7
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:627
+msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGENUM"
+msgid "Enter the maximum number of pages to be printed."
+msgstr ""
+
#. CvyP8
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:575
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:655
msgctxt "sheetprintpage|comboLB_SCALEMODE"
msgid "Reduce/enlarge printout"
msgstr "Pienennä/suurenna tulostetta"
#. GxZyi
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:576
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:656
msgctxt "sheetprintpage|comboLB_SCALEMODE"
msgid "Fit print range(s) to width/height"
msgstr "Sovita tulostusalue leveyden ja korkeuden mukaan"
#. Y2GhT
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:577
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:657
msgctxt "sheetprintpage|comboLB_SCALEMODE"
msgid "Fit print range(s) on number of pages"
msgstr "Sovita tulostusalue sivumäärän mukaan"
+#. AzkrF
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:661
+msgctxt "sheetprintpage|extended_tip|comboLB_SCALEMODE"
+msgid "Select a scaling mode from the list box. Appropriate controls will be shown below the list box."
+msgstr ""
+
#. zeMqg
-#: sc/uiconfig/scalc/ui/sheetprintpage.ui:596
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:681
msgctxt "sheetprintpage|labelScale"
msgid "Scale"
msgstr "Skaalaus"
+#. g39or
+#: sc/uiconfig/scalc/ui/sheetprintpage.ui:695
+msgctxt "sheetprintpage|extended_tip|SheetPrintPage"
+msgid "Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale."
+msgstr ""
+
#. CwxSU
#: sc/uiconfig/scalc/ui/showchangesdialog.ui:8
msgctxt "showchangesdialog|ShowChangesDialog"
@@ -26373,29 +29212,53 @@ msgid "Show Changes"
msgstr "Näytä muutokset"
#. gsAFi
-#: sc/uiconfig/scalc/ui/showchangesdialog.ui:90
+#: sc/uiconfig/scalc/ui/showchangesdialog.ui:87
msgctxt "showchangesdialog|showchanges"
msgid "_Show changes in spreadsheet"
msgstr "Näytä muutokset laskentataulukossa"
+#. auWzB
+#: sc/uiconfig/scalc/ui/showchangesdialog.ui:96
+msgctxt "showchangesdialog|extended_tip|showchanges"
+msgid "Shows or hides recorded changes."
+msgstr ""
+
#. au2jE
-#: sc/uiconfig/scalc/ui/showchangesdialog.ui:122
+#: sc/uiconfig/scalc/ui/showchangesdialog.ui:124
msgctxt "showchangesdialog|showaccepted"
msgid "Show _accepted changes"
msgstr "Näytä hyväksytyt muutokset"
+#. f7GQr
+#: sc/uiconfig/scalc/ui/showchangesdialog.ui:133
+msgctxt "showchangesdialog|extended_tip|showaccepted"
+msgid "Shows or hides the changes that were accepted."
+msgstr ""
+
#. KBgdT
-#: sc/uiconfig/scalc/ui/showchangesdialog.ui:137
+#: sc/uiconfig/scalc/ui/showchangesdialog.ui:144
msgctxt "showchangesdialog|showrejected"
msgid "Show _rejected changes"
msgstr "Näytä hylätyt muutokset"
+#. vUrkK
+#: sc/uiconfig/scalc/ui/showchangesdialog.ui:153
+msgctxt "showchangesdialog|extended_tip|showrejected"
+msgid "Shows or hides the changes that were rejected."
+msgstr ""
+
#. PHqfD
-#: sc/uiconfig/scalc/ui/showchangesdialog.ui:172
+#: sc/uiconfig/scalc/ui/showchangesdialog.ui:184
msgctxt "showchangesdialog|label1"
msgid "Filter Settings"
msgstr "Suodatusasetukset"
+#. B3EDe
+#: sc/uiconfig/scalc/ui/showchangesdialog.ui:257
+msgctxt "showchangesdialog|extended_tip|ShowChangesDialog"
+msgid "Shows or hides recorded changes."
+msgstr ""
+
#. qmxGg
#: sc/uiconfig/scalc/ui/showdetaildialog.ui:18
msgctxt "showdetaildialog|ShowDetail"
@@ -26403,11 +29266,17 @@ msgid "Show Detail"
msgstr "Näytä yksityiskohdat"
#. SHLnt
-#: sc/uiconfig/scalc/ui/showdetaildialog.ui:103
+#: sc/uiconfig/scalc/ui/showdetaildialog.ui:100
msgctxt "showdetaildialog|label1"
msgid "_Choose the field containing the detail you want to show"
msgstr "Valitse kenttä, jonka yksityiskohdat haluat näyttää"
+#. GJu4j
+#: sc/uiconfig/scalc/ui/showdetaildialog.ui:146
+msgctxt "showdetaildialog|extended_tip|dimsTreeview"
+msgid "Choose the field that you want to view the details for."
+msgstr ""
+
#. BDJbs
#: sc/uiconfig/scalc/ui/showsheetdialog.ui:16
msgctxt "showsheetdialog|ShowSheetDialog"
@@ -26420,98 +29289,104 @@ msgctxt "showsheetdialog|label1"
msgid "Hidden Sheets"
msgstr "Piilotetut taulukot"
+#. 2NR97
+#: sc/uiconfig/scalc/ui/showsheetdialog.ui:165
+msgctxt "showsheetdialog|extended_tip|ShowSheetDialog"
+msgid "Displays a list of all hidden sheets in your spreadsheet document."
+msgstr ""
+
#. ktHTz
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:50
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:51
msgctxt "sidebaralignment|horizontalalignment|tooltip_text"
msgid "Horizontal Alignment"
msgstr "Vaakasuuntainen tasaus"
#. U8BWH
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:111
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:112
msgctxt "sidebaralignment|verticalalignment|tooltip_text"
msgid "Vertical Alignment"
msgstr "Pystytasaus"
#. Ume2A
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:205
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:206
msgctxt "sidebaralignment|orientationdegrees|tooltip_text"
msgid "Select the angle for rotation."
msgstr "Aseta tekstin kiertokulma."
#. bfLkF
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:211
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:212
msgctxt "sidebaralignment|orientationdegrees-atkobject"
msgid "Text Orientation"
msgstr "Tekstin asento"
#. etrVi
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:224
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:225
msgctxt "sidebaralignment|leftindent|tooltip_text"
msgid "Indents from the left edge."
msgstr "Sisennys solun vasemmasta reunasta."
#. rqx4D
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:230
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:231
msgctxt "sidebaralignment|leftindent-atkobject"
msgid "Left Indent"
msgstr "Vasen sisennys"
#. qtoY5
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:291
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:292
msgctxt "sidebaralignment|orientationlabel"
msgid "Text _orientation:"
msgstr "Tekstin asento:"
#. KEG9k
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:308
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:309
msgctxt "sidebaralignment|stacked"
msgid "Vertically stacked"
msgstr "Pystysuuntainen pino"
#. ZE4wU
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:334
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:335
msgctxt "sidebaralignment|bottom|tooltip_text"
msgid "Text Extension From Lower Cell Border"
msgstr "Tekstin laajennus solun alareunasta"
#. CgVBh
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:354
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:355
msgctxt "sidebaralignment|top|tooltip_text"
msgid "Text Extension From Upper Cell Border"
msgstr "Tekstin laajennus solun yläreunasta"
#. TSALx
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:374
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:375
msgctxt "sidebaralignment|standard|tooltip_text"
msgid "Text Extension Inside Cell"
msgstr "Tekstin laajennus solun sisällä"
#. xruhe
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:405
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:406
msgctxt "sidebaralignment|wraptext"
msgid "Wrap text"
msgstr "Rivitä teksti"
#. uTKvq
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:409
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:410
msgctxt "sidebaralignment|wraptext|tooltip_text"
msgid "Wrap texts automatically."
msgstr "Rivitä tekstit automaattisesti."
#. Ae65n
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:422
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:423
msgctxt "sidebaralignment|mergecells"
msgid "Merge cells"
msgstr "Yhdistä solut"
#. NK2BS
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:426
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:427
msgctxt "sidebaralignment|mergecells|tooltip_text"
msgid "Joins the selected cells into one."
msgstr "Valitut solut yhdistetään yhdeksi soluksi."
#. FdKBk
-#: sc/uiconfig/scalc/ui/sidebaralignment.ui:440
+#: sc/uiconfig/scalc/ui/sidebaralignment.ui:441
msgctxt "sidebaralignment|leftindentlabel"
msgid "_Indent:"
msgstr "Sisennys:"
@@ -26739,11 +29614,17 @@ msgid "Set range"
msgstr "Aseta alue"
#. scy7u
-#: sc/uiconfig/scalc/ui/simplerefdialog.ui:90
+#: sc/uiconfig/scalc/ui/simplerefdialog.ui:87
msgctxt "simplerefdialog|area"
msgid "Area:"
msgstr "Alue:"
+#. vvxC7
+#: sc/uiconfig/scalc/ui/simplerefdialog.ui:140
+msgctxt "simplerefdialog|extended_tip|SimpleRefDialog"
+msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)."
+msgstr ""
+
#. GGUrx
#: sc/uiconfig/scalc/ui/solverdlg.ui:8
msgctxt "solverdlg|SolverDialog"
@@ -26751,293 +29632,341 @@ msgid "Solver"
msgstr "Ratkaisin"
#. bz78K
-#: sc/uiconfig/scalc/ui/solverdlg.ui:27
+#: sc/uiconfig/scalc/ui/solverdlg.ui:24
msgctxt "solverdlg|options"
msgid "O_ptions..."
msgstr "A_setukset..."
+#. UABF3
+#: sc/uiconfig/scalc/ui/solverdlg.ui:31
+msgctxt "solverdlg|extended_tip|options"
+msgid "Opens the Solver Options dialog."
+msgstr ""
+
#. 8hMNV
-#: sc/uiconfig/scalc/ui/solverdlg.ui:56
+#: sc/uiconfig/scalc/ui/solverdlg.ui:58
msgctxt "solverdlg|solve"
msgid "_Solve"
msgstr "Ratkaise"
#. Spxjy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:111
+#: sc/uiconfig/scalc/ui/solverdlg.ui:113
msgctxt "solverdlg|targetlabel"
msgid "_Target cell"
msgstr "Kohdesolu"
#. CgmTB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:124
+#: sc/uiconfig/scalc/ui/solverdlg.ui:126
msgctxt "solverdlg|result"
msgid "Optimize result to"
msgstr "Optimoi tulosta"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:138
+#: sc/uiconfig/scalc/ui/solverdlg.ui:140
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Muuttamalla soluja"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:149
+#: sc/uiconfig/scalc/ui/solverdlg.ui:151
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minimi"
+#. FFcJ5
+#: sc/uiconfig/scalc/ui/solverdlg.ui:164
+msgctxt "solverdlg|extended_tip|min"
+msgid "Enter the cell range that can be changed."
+msgstr ""
+
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:168
+#: sc/uiconfig/scalc/ui/solverdlg.ui:175
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Enintään"
+#. CCUEf
+#: sc/uiconfig/scalc/ui/solverdlg.ui:189
+msgctxt "solverdlg|extended_tip|max"
+msgid "Enter the cell range that can be changed."
+msgstr ""
+
+#. fqxHx
+#: sc/uiconfig/scalc/ui/solverdlg.ui:213
+msgctxt "solverdlg|extended_tip|changeedit"
+msgid "Enter the cell range that can be changed."
+msgstr ""
+
+#. qsQDn
+#: sc/uiconfig/scalc/ui/solverdlg.ui:255
+msgctxt "solverdlg|extended_tip|targetedit"
+msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
+msgstr ""
+
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:269
+#: sc/uiconfig/scalc/ui/solverdlg.ui:291
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "Solun arvoon"
+#. VyrGQ
+#: sc/uiconfig/scalc/ui/solverdlg.ui:304
+msgctxt "solverdlg|extended_tip|value"
+msgid "Enter the cell range that can be changed."
+msgstr ""
+
+#. uzDam
+#: sc/uiconfig/scalc/ui/solverdlg.ui:328
+msgctxt "solverdlg|extended_tip|valueedit"
+msgid "Enter the cell range that can be changed."
+msgstr ""
+
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:386
+#: sc/uiconfig/scalc/ui/solverdlg.ui:418
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Solu"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:400
+#: sc/uiconfig/scalc/ui/solverdlg.ui:432
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "Operaattori"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:414
+#: sc/uiconfig/scalc/ui/solverdlg.ui:446
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Arvo"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:433
+#: sc/uiconfig/scalc/ui/solverdlg.ui:465
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Soluviite"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:451
+#: sc/uiconfig/scalc/ui/solverdlg.ui:483
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Soluviite"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:469
+#: sc/uiconfig/scalc/ui/solverdlg.ui:501
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Soluviite"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:487
+#: sc/uiconfig/scalc/ui/solverdlg.ui:519
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Soluviite"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:545
+#: sc/uiconfig/scalc/ui/solverdlg.ui:577
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:546
+#: sc/uiconfig/scalc/ui/solverdlg.ui:578
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:547
+#: sc/uiconfig/scalc/ui/solverdlg.ui:579
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:548
+#: sc/uiconfig/scalc/ui/solverdlg.ui:580
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Kokonaisluku"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:549
+#: sc/uiconfig/scalc/ui/solverdlg.ui:581
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binääri"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:553
+#: sc/uiconfig/scalc/ui/solverdlg.ui:585
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operaattori"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:567
+#: sc/uiconfig/scalc/ui/solverdlg.ui:599
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:568
+#: sc/uiconfig/scalc/ui/solverdlg.ui:600
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:569
+#: sc/uiconfig/scalc/ui/solverdlg.ui:601
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:570
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Kokonaisluku"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:571
+#: sc/uiconfig/scalc/ui/solverdlg.ui:603
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binääri"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:575
+#: sc/uiconfig/scalc/ui/solverdlg.ui:607
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operaattori"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:589
+#: sc/uiconfig/scalc/ui/solverdlg.ui:621
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:590
+#: sc/uiconfig/scalc/ui/solverdlg.ui:622
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:591
+#: sc/uiconfig/scalc/ui/solverdlg.ui:623
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:592
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Kokonaisluku"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:593
+#: sc/uiconfig/scalc/ui/solverdlg.ui:625
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binääri"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:597
+#: sc/uiconfig/scalc/ui/solverdlg.ui:629
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operaattori"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:611
+#: sc/uiconfig/scalc/ui/solverdlg.ui:643
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:612
+#: sc/uiconfig/scalc/ui/solverdlg.ui:644
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:613
+#: sc/uiconfig/scalc/ui/solverdlg.ui:645
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:614
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Kokonaisluku"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:615
+#: sc/uiconfig/scalc/ui/solverdlg.ui:647
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binääri"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:619
+#: sc/uiconfig/scalc/ui/solverdlg.ui:651
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operaattori"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:638
+#: sc/uiconfig/scalc/ui/solverdlg.ui:670
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Arvo"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:657
+#: sc/uiconfig/scalc/ui/solverdlg.ui:689
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Arvo"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:676
+#: sc/uiconfig/scalc/ui/solverdlg.ui:708
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Arvo"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:695
+#: sc/uiconfig/scalc/ui/solverdlg.ui:727
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Arvo"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:753
+#: sc/uiconfig/scalc/ui/solverdlg.ui:785
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Poista"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:765
+#: sc/uiconfig/scalc/ui/solverdlg.ui:797
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Poista"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:777
+#: sc/uiconfig/scalc/ui/solverdlg.ui:809
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Poista"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:789
+#: sc/uiconfig/scalc/ui/solverdlg.ui:821
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Poista"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:814
+#: sc/uiconfig/scalc/ui/solverdlg.ui:846
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Reunaehdot"
+#. bXYQB
+#: sc/uiconfig/scalc/ui/solverdlg.ui:879
+msgctxt "solverdlg|extended_tip|SolverDialog"
+msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
+msgstr ""
+
#. DFfjo
#: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:22
msgctxt "solveroptionsdialog|SolverOptionsDialog"
@@ -27045,23 +29974,35 @@ msgid "Options"
msgstr "Asetukset"
#. z5vzM
-#: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:106
+#: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:103
msgctxt "solveroptionsdialog|label2"
msgid "Solver engine:"
msgstr "Ratkaisimen tyyppi:"
+#. pTBRt
+#: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:119
+msgctxt "solveroptionsdialog|extended_tip|engine"
+msgid "Select a solver engine. The listbox is disabled if only one solver engine is installed."
+msgstr ""
+
#. JVMDt
-#: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:143
+#: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:145
msgctxt "solveroptionsdialog|label1"
msgid "Settings:"
msgstr "Asetukset:"
#. D2D5K
-#: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:210
+#: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:212
msgctxt "solveroptionsdialog|edit"
msgid "Edit..."
msgstr "Muokkaa..."
+#. YPbhC
+#: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:221
+msgctxt "solveroptionsdialog|extended_tip|edit"
+msgid "If the current entry in the Settings listbox allows you to edit a value, you can click the Edit button. A dialog opens where you can change the value."
+msgstr ""
+
#. GHJGp
#: sc/uiconfig/scalc/ui/solverprogressdialog.ui:8
msgctxt "solverprogressdialog|SolverProgressDialog"
@@ -27116,6 +30057,12 @@ msgctxt "solversuccessdialog|result"
msgid "Result:"
msgstr "Ratkaisu:"
+#. xDbWL
+#: sc/uiconfig/scalc/ui/sortcriteriapage.ui:33
+msgctxt "sortcriteriapage|extended_tip|SortCriteriaPage"
+msgid "Specify the sorting options for the selected range."
+msgstr ""
+
#. PqGRt
#: sc/uiconfig/scalc/ui/sortdialog.ui:8
msgctxt "sortdialog|SortDialog"
@@ -27134,126 +30081,234 @@ msgctxt "sortdialog|options"
msgid "Options"
msgstr "Asetukset"
+#. HCV8n
+#: sc/uiconfig/scalc/ui/sortkey.ui:32
+msgctxt "sortkey|extended_tip|sortlb"
+msgid "Select the column that you want to use as the primary sort key."
+msgstr ""
+
#. HSoQ2
-#: sc/uiconfig/scalc/ui/sortkey.ui:39
+#: sc/uiconfig/scalc/ui/sortkey.ui:44
msgctxt "sortkey|up"
msgid "_Ascending"
msgstr "Nouseva"
+#. BUxPb
+#: sc/uiconfig/scalc/ui/sortkey.ui:54
+msgctxt "sortkey|extended_tip|up"
+msgid "Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options."
+msgstr ""
+
#. TfqAv
-#: sc/uiconfig/scalc/ui/sortkey.ui:55
+#: sc/uiconfig/scalc/ui/sortkey.ui:65
msgctxt "sortkey|down"
msgid "_Descending"
msgstr "Laskeva"
+#. gqJji
+#: sc/uiconfig/scalc/ui/sortkey.ui:75
+msgctxt "sortkey|extended_tip|down"
+msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options."
+msgstr ""
+
#. Svy7B
-#: sc/uiconfig/scalc/ui/sortkey.ui:77
+#: sc/uiconfig/scalc/ui/sortkey.ui:92
msgctxt "sortkey|sortft"
msgid "Sort Key "
msgstr "Lajitteluavain "
+#. AEDau
+#: sc/uiconfig/scalc/ui/sortkey.ui:100
+msgctxt "sortkey|extended_tip|SortKeyFrame"
+msgid "Select the column that you want to use as the primary sort key."
+msgstr ""
+
#. 9FBK2
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:31
msgctxt "sortoptionspage|case"
msgid "Case _sensitive"
msgstr "Huomioi kirjainkoko"
+#. F9BE3
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:40
+msgctxt "sortoptionspage|extended_tip|case"
+msgid "Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies."
+msgstr ""
+
#. fTCGJ
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:46
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:51
msgctxt "sortoptionspage|header"
msgid "Range contains..."
msgstr "Alue sisältää..."
+#. nNTEu
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:60
+msgctxt "sortoptionspage|extended_tip|header"
+msgid "Omits the first row or the first column in the selection from the sort."
+msgstr ""
+
#. RM629
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:61
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:71
msgctxt "sortoptionspage|formats"
msgid "Include formats"
msgstr "Sisällytä muodot"
+#. KbJnq
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:80
+msgctxt "sortoptionspage|extended_tip|formats"
+msgid "Preserves the current cell formatting."
+msgstr ""
+
#. Gtck5
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:76
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:91
msgctxt "sortoptionspage|naturalsort"
msgid "Enable natural sort"
msgstr "Ota käyttöön luonnollinen järjestys"
+#. VH4tV
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:100
+msgctxt "sortoptionspage|extended_tip|naturalsort"
+msgid "Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings."
+msgstr ""
+
#. yev2y
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:91
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:111
msgctxt "sortoptionspage|includenotes"
msgid "Include boundary column(s) containing only comments"
msgstr "Sisällytä vain huomautuksia sisältävät reunasarakkeet"
#. NJ69D
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:106
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:126
msgctxt "sortoptionspage|includeimages"
msgid "Include boundary column(s) containing only images"
msgstr "Sisällytä vain kuvia sisältävät reunasarakkeet"
#. eZ8XM
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:121
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:141
msgctxt "sortoptionspage|copyresult"
msgid "Copy sort results to:"
msgstr "Kopioi lajittelutulokset:"
+#. gis9V
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:153
+msgctxt "sortoptionspage|extended_tip|copyresult"
+msgid "Copies the sorted list to the cell range that you specify."
+msgstr ""
+
#. WKWmE
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:148
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:173
msgctxt "sortoptionspage|outarealb-atkobject"
msgid "Copy sort results to:"
msgstr "Kopioi lajittelutulokset:"
+#. ABAdF
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:174
+msgctxt "sortoptionspage|extended_tip|outarealb"
+msgid "Select a named cell range where you want to display the sorted list, or enter a cell range in the input box."
+msgstr ""
+
#. ABGSS
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:168
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:194
msgctxt "sortoptionspage|outareaed-atkobject"
msgid "Copy sort results to:"
msgstr "Kopioi lajittelutulokset:"
+#. kpVh9
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:195
+msgctxt "sortoptionspage|extended_tip|outareaed"
+msgid "Enter the cell range where you want to display the sorted list, or select a named range from the list."
+msgstr ""
+
#. GwzEB
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:179
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:206
msgctxt "sortoptionspage|sortuser"
msgid "Custom sort order"
msgstr "Mukautettu lajittelujärjestys"
+#. aDYdR
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:218
+msgctxt "sortoptionspage|extended_tip|sortuser"
+msgid "Click here and then select the custom sort order that you want."
+msgstr ""
+
#. iWcGs
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:205
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:237
msgctxt "sortoptionspage|sortuserlb-atkobject"
msgid "Custom sort order"
msgstr "Mukautettu lajittelujärjestys"
+#. QagY7
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:238
+msgctxt "sortoptionspage|extended_tip|sortuserlb"
+msgid "Select the custom sort order that you want to apply. To define a custom sort order, choose Tools - Options - %PRODUCTNAME Calc - Sort Lists ."
+msgstr ""
+
#. KJrPL
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:220
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:253
msgctxt "sortoptionspage|label6"
msgid "Language"
msgstr "Kieli"
#. dBv73
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:234
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:267
msgctxt "sortoptionspage|algorithmft"
msgid "Options"
msgstr "Asetukset"
+#. ArfWB
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:282
+msgctxt "sortoptionspage|extended_tip|algorithmlb"
+msgid "Select a sorting option for the language."
+msgstr ""
+
+#. u52Ei
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:303
+msgctxt "sortoptionspage|extended_tip|language"
+msgid "Select the language for the sorting rules."
+msgstr ""
+
#. aDahD
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:301
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:344
msgctxt "sortoptionspage|label2"
msgid "Sort Options"
msgstr "Lajittelun asetukset"
#. TkBw5
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:332
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:375
msgctxt "sortoptionspage|topdown"
msgid "_Top to bottom (sort rows)"
msgstr "Ylhäältä alas (rivien lajittelu)"
+#. bSvKu
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:385
+msgctxt "sortoptionspage|extended_tip|topdown"
+msgid "Sorts rows by the values in the active columns of the selected range."
+msgstr ""
+
#. aU8Mg
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:348
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:396
msgctxt "sortoptionspage|leftright"
msgid "L_eft to right (sort columns)"
msgstr "Vasemmalta oikealle (sarakkeiden lajittelu)"
+#. APEaE
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:406
+msgctxt "sortoptionspage|extended_tip|leftright"
+msgid "Sorts columns by the values in the active rows of the selected range."
+msgstr ""
+
#. nbPgX
-#: sc/uiconfig/scalc/ui/sortoptionspage.ui:370
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:423
msgctxt "sortoptionspage|label1"
msgid "Direction"
msgstr "Suunta"
+#. 7AH6P
+#: sc/uiconfig/scalc/ui/sortoptionspage.ui:438
+msgctxt "sortoptionspage|extended_tip|SortOptionsPage"
+msgid "Sets additional sorting options."
+msgstr ""
+
#. qAEt6
#: sc/uiconfig/scalc/ui/sorttransformationentry.ui:21
msgctxt "sorttransformationentry|name"
@@ -27333,491 +30388,659 @@ msgid "Cancel"
msgstr "Peruuta"
#. GJ7zg
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:8
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:28
msgctxt "standardfilterdialog|StandardFilterDialog"
msgid "Standard Filter"
msgstr "Oletussuodatin"
+#. kFyDu
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:70
+msgctxt "standardfilterdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. JEsDB
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:90
+msgctxt "standardfilterdialog|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. 3c3SD
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:131
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:173
msgctxt "standardfilterdialog|connect1"
msgid "AND"
msgstr "JA"
#. MqEKy
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:132
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:174
msgctxt "standardfilterdialog|connect1"
msgid "OR"
msgstr "TAI"
#. htwdi
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:139
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:181
msgctxt "standardfilterdialog|connect1-atkobject"
msgid "Operator 1"
msgstr "Operaattori 1"
+#. oZfag
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:182
+msgctxt "standardfilterdialog|extended_tip|connect1"
+msgid "For the following arguments, you can choose between the logical operators AND / OR."
+msgstr ""
+
#. k269E
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:153
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:196
msgctxt "standardfilterdialog|connect2"
msgid "AND"
msgstr "JA"
#. oaqnE
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:154
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:197
msgctxt "standardfilterdialog|connect2"
msgid "OR"
msgstr "TAI"
#. ob3HA
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:161
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:204
msgctxt "standardfilterdialog|connect2-atkobject"
msgid "Operator 2"
msgstr "Operaattori 2"
+#. pBC9C
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:205
+msgctxt "standardfilterdialog|extended_tip|connect2"
+msgid "For the following arguments, you can choose between the logical operators AND / OR."
+msgstr ""
+
#. UZ8iA
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:175
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:219
msgctxt "standardfilterdialog|connect3"
msgid "AND"
msgstr "JA"
#. AFjMF
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:176
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:220
msgctxt "standardfilterdialog|connect3"
msgid "OR"
msgstr "TAI"
#. 4JHNi
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:180
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:224
msgctxt "standardfilterdialog|connect3-atkobject"
msgid "Operator 3"
msgstr "Operaattori 3"
#. CqBrM
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:194
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:238
msgctxt "standardfilterdialog|connect4"
msgid "AND"
msgstr "JA"
#. AqUFa
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:195
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:239
msgctxt "standardfilterdialog|connect4"
msgid "OR"
msgstr "TAI"
#. Sqfmd
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:199
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:243
msgctxt "standardfilterdialog|connect4-atkobject"
msgid "Operator 4"
msgstr "Operaattori 4"
#. upKBs
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:212
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:256
msgctxt "standardfilterdialog|label2"
msgid "Operator"
msgstr "Operaattori"
#. vRvzD
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:223
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:267
msgctxt "standardfilterdialog|label3"
msgid "Field name"
msgstr "Kentän nimi"
#. rqkAQ
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:234
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:278
msgctxt "standardfilterdialog|label4"
msgid "Condition"
msgstr "Ehto"
#. ZgtGB
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:245
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:289
msgctxt "standardfilterdialog|label5"
msgid "Value"
msgstr "Arvo"
#. jHRCJ
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:261
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:305
msgctxt "standardfilterdialog|field1-atkobject"
msgid "Field Name 1"
msgstr "Kentän nimi 1"
+#. e9keG
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:306
+msgctxt "standardfilterdialog|extended_tip|field1"
+msgid "Specifies the field names from the current table to set them in the argument."
+msgstr ""
+
#. 4ozHK
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:279
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:324
msgctxt "standardfilterdialog|field2-atkobject"
msgid "Field Name 2"
msgstr "Kentän nimi 2"
+#. yhdgc
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:325
+msgctxt "standardfilterdialog|extended_tip|field2"
+msgid "Specifies the field names from the current table to set them in the argument."
+msgstr ""
+
#. C4XRG
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:297
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:343
msgctxt "standardfilterdialog|field3-atkobject"
msgid "Field Name 3"
msgstr "Kentän nimi 3"
+#. FCNiT
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:344
+msgctxt "standardfilterdialog|extended_tip|field3"
+msgid "Specifies the field names from the current table to set them in the argument."
+msgstr ""
+
#. Y9hSS
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:312
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:359
msgctxt "standardfilterdialog|field4-atkobject"
msgid "Field Name 4"
msgstr "Kentän nimi 4"
#. x2eP5
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:332
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:379
msgctxt "standardfilterdialog|cond1"
msgid "Largest"
msgstr "Suurin"
#. m63HX
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:333
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:380
msgctxt "standardfilterdialog|cond1"
msgid "Smallest"
msgstr "Pienin"
#. fBTE7
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:334
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:381
msgctxt "standardfilterdialog|cond1"
msgid "Largest %"
msgstr "Suurin %"
#. WNjXW
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:335
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:382
msgctxt "standardfilterdialog|cond1"
msgid "Smallest %"
msgstr "Pienin %"
#. 2ydjF
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:336
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:383
msgctxt "standardfilterdialog|cond1"
msgid "Contains"
msgstr "Sisältää"
#. FXxAD
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:337
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:384
msgctxt "standardfilterdialog|cond1"
msgid "Does not contain"
msgstr "Ei sisällä"
#. akbmG
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:338
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:385
msgctxt "standardfilterdialog|cond1"
msgid "Begins with"
msgstr "Alkaa"
#. oBQhx
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:339
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:386
msgctxt "standardfilterdialog|cond1"
msgid "Does not begin with"
msgstr "Ei ala"
#. marCC
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:340
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:387
msgctxt "standardfilterdialog|cond1"
msgid "Ends with"
msgstr "Loppuu"
#. Gdi7y
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:341
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:388
msgctxt "standardfilterdialog|cond1"
msgid "Does not end with"
msgstr "Ei lopu"
#. rmPTC
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:348
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:395
msgctxt "standardfilterdialog|cond1-atkobject"
msgid "Condition 1"
msgstr "Ehto 1"
+#. D79PB
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:396
+msgctxt "standardfilterdialog|extended_tip|cond1"
+msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
+msgstr ""
+
#. uCRxP
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:368
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:416
msgctxt "standardfilterdialog|cond2"
msgid "Largest"
msgstr "Suurin"
#. ibKLF
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:369
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:417
msgctxt "standardfilterdialog|cond2"
msgid "Smallest"
msgstr "Pienin"
#. ek8Fy
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:370
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:418
msgctxt "standardfilterdialog|cond2"
msgid "Largest %"
msgstr "Suurin %"
#. nHN3m
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:371
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:419
msgctxt "standardfilterdialog|cond2"
msgid "Smallest %"
msgstr "Pienin %"
#. 3Divx
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:372
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:420
msgctxt "standardfilterdialog|cond2"
msgid "Contains"
msgstr "Sisältää"
#. eiDas
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:373
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:421
msgctxt "standardfilterdialog|cond2"
msgid "Does not contain"
msgstr "Ei sisällä"
#. YTGTC
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:374
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:422
msgctxt "standardfilterdialog|cond2"
msgid "Begins with"
msgstr "Alkaa"
#. G2paX
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:375
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:423
msgctxt "standardfilterdialog|cond2"
msgid "Does not begin with"
msgstr "Ei ala"
#. kAQBd
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:376
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:424
msgctxt "standardfilterdialog|cond2"
msgid "Ends with"
msgstr "Loppuu"
#. YBJmN
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:377
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:425
msgctxt "standardfilterdialog|cond2"
msgid "Does not end with"
msgstr "Ei lopu"
#. yBMtw
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:384
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:432
msgctxt "standardfilterdialog|cond2-atkobject"
msgid "Condition 2"
msgstr "Ehto 2"
+#. XVyyC
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:433
+msgctxt "standardfilterdialog|extended_tip|cond2"
+msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
+msgstr ""
+
#. rVFzc
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:404
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:453
msgctxt "standardfilterdialog|cond3"
msgid "Largest"
msgstr "Suurin"
#. g6yBT
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:405
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:454
msgctxt "standardfilterdialog|cond3"
msgid "Smallest"
msgstr "Pienin"
#. efcpx
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:406
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:455
msgctxt "standardfilterdialog|cond3"
msgid "Largest %"
msgstr "Suurin %"
#. M7ad9
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:407
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:456
msgctxt "standardfilterdialog|cond3"
msgid "Smallest %"
msgstr "Pienin %"
#. NyGeB
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:408
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:457
msgctxt "standardfilterdialog|cond3"
msgid "Contains"
msgstr "Sisältää"
#. ECrNG
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:409
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:458
msgctxt "standardfilterdialog|cond3"
msgid "Does not contain"
msgstr "Ei sisällä"
#. V8U5h
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:410
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:459
msgctxt "standardfilterdialog|cond3"
msgid "Begins with"
msgstr "Alkaa"
#. aGQxL
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:411
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:460
msgctxt "standardfilterdialog|cond3"
msgid "Does not begin with"
msgstr "Ei ala"
#. kGmbc
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:412
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:461
msgctxt "standardfilterdialog|cond3"
msgid "Ends with"
msgstr "Loppuu"
#. QAidd
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:413
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:462
msgctxt "standardfilterdialog|cond3"
msgid "Does not end with"
msgstr "Ei lopu"
#. wrG8B
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:420
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:469
msgctxt "standardfilterdialog|cond3-atkobject"
msgid "Condition 3"
msgstr "Ehto 3"
+#. aHUBP
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:470
+msgctxt "standardfilterdialog|extended_tip|cond3"
+msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
+msgstr ""
+
#. jnrrF
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:440
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:490
msgctxt "standardfilterdialog|cond4"
msgid "Largest"
msgstr "Suurin"
#. qaxP4
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:441
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:491
msgctxt "standardfilterdialog|cond4"
msgid "Smallest"
msgstr "Pienin"
#. hMurH
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:442
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:492
msgctxt "standardfilterdialog|cond4"
msgid "Largest %"
msgstr "Suurin %"
#. ESYEN
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:443
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:493
msgctxt "standardfilterdialog|cond4"
msgid "Smallest %"
msgstr "Pienin %"
#. 6CHum
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:444
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:494
msgctxt "standardfilterdialog|cond4"
msgid "Contains"
msgstr "Sisältää"
#. bUJHq
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:445
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:495
msgctxt "standardfilterdialog|cond4"
msgid "Does not contain"
msgstr "Ei sisällä"
#. Mxkrk
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:446
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:496
msgctxt "standardfilterdialog|cond4"
msgid "Begins with"
msgstr "Alkaa"
#. Ap7Zm
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:447
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:497
msgctxt "standardfilterdialog|cond4"
msgid "Does not begin with"
msgstr "Ei ala"
#. jsUZ4
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:448
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:498
msgctxt "standardfilterdialog|cond4"
msgid "Ends with"
msgstr "Loppuu"
#. FwJWT
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:449
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:499
msgctxt "standardfilterdialog|cond4"
msgid "Does not end with"
msgstr "Ei lopu"
#. ieYAs
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:453
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:503
msgctxt "standardfilterdialog|cond4-atkobject"
msgid "Condition 4"
msgstr "Ehto 4"
#. FRhsT
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:479
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:529
msgctxt "standardfilterdialog|val1-atkobject"
msgid "Value 1"
msgstr "Arvo 1"
+#. uyZGo
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:530
+msgctxt "standardfilterdialog|extended_tip|val1"
+msgid "Specifies a value to filter the field."
+msgstr ""
+
#. YVkFu
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:505
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:556
msgctxt "standardfilterdialog|val2-atkobject"
msgid "Value 2"
msgstr "Arvo 2"
+#. mwesR
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:557
+msgctxt "standardfilterdialog|extended_tip|val2"
+msgid "Specifies a value to filter the field."
+msgstr ""
+
#. aSAHM
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:531
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:583
msgctxt "standardfilterdialog|val3-atkobject"
msgid "Value 3"
msgstr "Arvo 3"
+#. nnX9i
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:584
+msgctxt "standardfilterdialog|extended_tip|val3"
+msgid "Specifies a value to filter the field."
+msgstr ""
+
#. zuaTh
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:554
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:607
msgctxt "standardfilterdialog|val4-atkobject"
msgid "Value 4"
msgstr "Arvo 4"
+#. LyiFB
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:621
+msgctxt "standardfilterdialog|remove1|tooltip_text"
+msgid "Remove"
+msgstr ""
+
+#. snJCB
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:635
+msgctxt "standardfilterdialog|remove2|tooltip_text"
+msgid "Remove"
+msgstr ""
+
+#. 8ti5o
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:649
+msgctxt "standardfilterdialog|remove3|tooltip_text"
+msgid "Remove"
+msgstr ""
+
+#. y4aPN
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:663
+msgctxt "standardfilterdialog|remove4|tooltip_text"
+msgid "Remove"
+msgstr ""
+
#. ekQLB
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:581
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:693
msgctxt "standardfilterdialog|label1"
msgid "Filter Criteria"
msgstr "Suodatusehto"
#. L6LRF
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:619
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:731
msgctxt "standardfilterdialog|case"
msgid "_Case sensitive"
msgstr "Kirjainkoon huomioiva"
+#. juNCs
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:741
+msgctxt "standardfilterdialog|extended_tip|case"
+msgid "Distinguishes between uppercase and lowercase letters when filtering the data."
+msgstr ""
+
#. yud2Z
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:635
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:752
msgctxt "standardfilterdialog|header"
msgid "Range c_ontains column labels"
msgstr "Alue sisältää sarakeotsikot"
+#. C5Muz
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:762
+msgctxt "standardfilterdialog|extended_tip|header"
+msgid "Includes the column labels in the first row of a cell range."
+msgstr ""
+
#. 4ZVQy
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:651
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:773
msgctxt "standardfilterdialog|regexp"
msgid "Regular _expressions"
msgstr "Säännölliset lausekkeet"
+#. CVKch
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:783
+msgctxt "standardfilterdialog|extended_tip|regexp"
+msgid "Allows you to use regular expressions in the filter definition."
+msgstr ""
+
#. Y8AtC
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:667
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:794
msgctxt "standardfilterdialog|unique"
msgid "_No duplications"
msgstr "Karsi identtiset"
+#. EiBMm
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:804
+msgctxt "standardfilterdialog|extended_tip|unique"
+msgid "Excludes duplicate rows in the list of filtered data."
+msgstr ""
+
#. BRiA2
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:683
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:815
msgctxt "standardfilterdialog|copyresult"
msgid "Co_py results to:"
msgstr "Kopioi tulokset kohteeseen:"
+#. vapFg
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:829
+msgctxt "standardfilterdialog|extended_tip|copyresult"
+msgid "Select the check box, and then select the cell range where you want to display the filter results."
+msgstr ""
+
#. wDy43
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:703
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:840
msgctxt "standardfilterdialog|destpers"
msgid "_Keep filter criteria"
msgstr "Säilytä suodatusehto"
+#. rSZi5
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:850
+msgctxt "standardfilterdialog|extended_tip|destpers"
+msgid "Select the Copy results to check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under Data - Define range as a database range."
+msgstr ""
+
#. StG9B
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:739
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:881
msgctxt "standardfilterdialog|lbcopyarea-atkobject"
msgid "Copy results to"
msgstr "Kopioi tulokset kohteeseen"
+#. ETDiJ
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:882
+msgctxt "standardfilterdialog|extended_tip|lbcopyarea"
+msgid "Select the check box, and then select the cell range where you want to display the filter results."
+msgstr ""
+
#. aX8Ar
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:760
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:903
msgctxt "standardfilterdialog|edcopyarea-atkobject"
msgid "Copy results to"
msgstr "Kopioi tulokset kohteeseen"
+#. om6jr
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:904
+msgctxt "standardfilterdialog|extended_tip|edcopyarea"
+msgid "Select the check box, and then select the cell range where you want to display the filter results."
+msgstr ""
+
+#. WSVsk
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:923
+msgctxt "standardfilterdialog|extended_tip|rbcopyarea"
+msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size."
+msgstr ""
+
#. 4PyDb
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:798
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:947
msgctxt "standardfilterdialog|dbarealabel"
msgid "Data range:"
msgstr "Tietoalue:"
#. VBZEp
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:811
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:960
msgctxt "standardfilterdialog|dbarea"
msgid "dummy"
msgstr "tyhjä"
#. V5ao2
-#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:831
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:980
msgctxt "standardfilterdialog|label6"
msgid "Op_tions"
msgstr "Asetukset"
+#. q3HXT
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:986
+msgctxt "standardfilterdialog|extended_tip|more"
+msgid "Shows additional filter options."
+msgstr ""
+
+#. NNCfP
+#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1009
+msgctxt "standardfilterdialog|extended_tip|StandardFilterDialog"
+msgid "Specifies the logical conditions to filter your table data."
+msgstr ""
+
#. uBMEs
#: sc/uiconfig/scalc/ui/statisticsinfopage.ui:27
msgctxt "statisticsinfopage|label6"
@@ -27884,72 +31107,156 @@ msgctxt "subtotalgrppage|label1"
msgid "Group by:"
msgstr "Ryhmittele:"
+#. 9SJx9
+#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:61
+msgctxt "subtotalgrppage|extended_tip|group_by"
+msgid "Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated."
+msgstr ""
+
+#. gL3Zy
+#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:73
+msgctxt "subtotalgrppage|select_all_columns_button"
+msgid "Select all columns"
+msgstr ""
+
#. 42zT3
-#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:86
+#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:105
msgctxt "subtotalgrppage|label2"
msgid "Calculate subtotals for:"
msgstr "Laske välisummat:"
#. 6gQEq
-#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:100
+#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:119
msgctxt "subtotalgrppage|label3"
msgid "Use function:"
msgstr "Käytä funktiota:"
+#. 4ZoGf
+#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:177
+msgctxt "subtotalgrppage|extended_tip|columns"
+msgid "Select the column(s) containing the values that you want to subtotal."
+msgstr ""
+
+#. hECtu
+#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:223
+msgctxt "subtotalgrppage|extended_tip|functions"
+msgid "Select the mathematical function that you want to use to calculate the subtotals."
+msgstr ""
+
+#. xaDtc
+#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:243
+msgctxt "subtotalgrppage|extended_tip|SubTotalGrpPage"
+msgid "Specify the settings for up to three subtotal groups. Each tab has the same layout."
+msgstr ""
+
#. xPviB
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:35
msgctxt "subtotaloptionspage|pagebreak"
msgid "_Page break between groups"
msgstr "Sivunvaihto ryhmien välillä"
+#. LRtCo
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:45
+msgctxt "subtotaloptionspage|extended_tip|pagebreak"
+msgid "Inserts a new page after each group of subtotaled data."
+msgstr ""
+
#. vAGGF
-#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:51
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:56
msgctxt "subtotaloptionspage|case"
msgid "_Case sensitive"
msgstr "Kirjainkoon erottelu"
+#. hFBdv
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:66
+msgctxt "subtotaloptionspage|extended_tip|case"
+msgid "Recalculates subtotals when you change the case of a data label."
+msgstr ""
+
#. srkjs
-#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:67
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:77
msgctxt "subtotaloptionspage|sort"
msgid "Pre-_sort area according to groups"
msgstr "Alueen esilajittelu ryhmien mukaan"
+#. NrBZG
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:87
+msgctxt "subtotaloptionspage|extended_tip|sort"
+msgid "Sorts the area that you selected in the Group by box of the Group tabs according to the columns that you selected."
+msgstr ""
+
#. 6jJEr
-#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:89
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:104
msgctxt "subtotaloptionspage|label1"
msgid "Groups"
msgstr "Ryhmät"
#. C2NEu
-#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:127
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:142
msgctxt "subtotaloptionspage|ascending"
msgid "_Ascending"
msgstr "Nouseva"
+#. D75dE
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:153
+msgctxt "subtotaloptionspage|extended_tip|ascending"
+msgid "Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options."
+msgstr ""
+
#. maa6m
-#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:144
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:164
msgctxt "subtotaloptionspage|descending"
msgid "D_escending"
msgstr "Laskeva"
+#. 8iUpi
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:176
+msgctxt "subtotaloptionspage|extended_tip|descending"
+msgid "Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options."
+msgstr ""
+
#. EGqiq
-#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:162
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:187
msgctxt "subtotaloptionspage|formats"
msgid "I_nclude formats"
msgstr "Sisällytä muodot"
+#. gCtKR
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:197
+msgctxt "subtotaloptionspage|extended_tip|formats"
+msgid "Considers formatting attributes when sorting."
+msgstr ""
+
#. 4rGHy
-#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:178
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:208
msgctxt "subtotaloptionspage|btnuserdef"
msgid "C_ustom sort order"
msgstr "Mukautettu lajittelujärjestys"
+#. EP8RH
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:221
+msgctxt "subtotaloptionspage|extended_tip|btnuserdef"
+msgid "Uses a custom sorting order that you defined in the Options dialog box at %PRODUCTNAME Calc - Sort Lists."
+msgstr ""
+
+#. T5A7R
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:240
+msgctxt "subtotaloptionspage|extended_tip|lbuserdef"
+msgid "Uses a custom sorting order that you defined in the Options dialog box at %PRODUCTNAME Calc - Sort Lists."
+msgstr ""
+
#. fEyTF
-#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:217
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:257
msgctxt "subtotaloptionspage|label2"
msgid "Sort"
msgstr "Lajittele"
+#. ikECk
+#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:272
+msgctxt "subtotaloptionspage|extended_tip|SubTotalOptionsPage"
+msgid "Specify the settings for calculating and presenting subtotals."
+msgstr ""
+
#. 8AoGN
#: sc/uiconfig/scalc/ui/tabcolordialog.ui:72
msgctxt "tabcolordialog |label1"
@@ -27963,149 +31270,263 @@ msgid "Text Import"
msgstr "Tekstin tuonti"
#. 5eKmk
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:125
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:122
msgctxt "textimportcsv|textcharset"
msgid "Ch_aracter set:"
msgstr "_Merkistö:"
#. 8Gbou
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:139
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:136
msgctxt "textimportcsv|textlanguage"
msgid "_Language:"
msgstr "Kieli:"
#. GAQTV
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:153
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:150
msgctxt "textimportcsv|textfromrow"
msgid "From ro_w:"
msgstr "Rivilt_ä:"
+#. 5fBmk
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:166
+msgctxt "textimportcsv|extended_tip|charset"
+msgid "Specifies the character set to be used in the imported file."
+msgstr "Määritetään merkistö, jota käytetään tuotavassa tiedostossa."
+
+#. FM2uG
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:181
+msgctxt "textimportcsv|extended_tip|language"
+msgid "Determines how the number strings are imported."
+msgstr "Määritetään tapa, jolla numeeriset merkkijonot tuodaan."
+
+#. DFFzE
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:199
+msgctxt "textimportcsv|extended_tip|fromrow"
+msgid "Specifies the row where you want to start the import."
+msgstr "Määritetään rivi, jolta tuonti aloitetaan."
+
#. nxMFN
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:204
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:216
msgctxt "textimportcsv|label1"
msgid "Import"
msgstr "Tuonti"
#. RpRBk
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:246
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:258
msgctxt "textimportcsv|tofixedwidth"
msgid "_Fixed width"
msgstr "_Kiinteä leveys"
+#. kKMbP
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:268
+msgctxt "textimportcsv|extended_tip|tofixedwidth"
+msgid "Separates fixed-width data (equal number of characters) into columns."
+msgstr "Aineisto jaotellaan sarakekohtaisesti vakioleveyksisesti (sama merkkien lukumäärä)."
+
#. 9eEuK
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:263
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:280
msgctxt "textimportcsv|toseparatedby"
msgid "_Separated by"
msgstr "_Erottimena"
+#. FYdcR
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:290
+msgctxt "textimportcsv|extended_tip|toseparatedby"
+msgid "Select the separator used in your data."
+msgstr "Valitaan erottimet, joita aineistolle käytetään."
+
#. 2BKqB
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:300
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:322
msgctxt "textimportcsv|tab"
msgid "_Tab"
msgstr "_Sarkain"
+#. J6vVR
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:332
+msgctxt "textimportcsv|extended_tip|tab"
+msgid "Separates data delimited by tabs into columns."
+msgstr "Jaetaan sarkaimista aineisto sarakkeisiin."
+
#. YQ88b
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:316
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:343
msgctxt "textimportcsv|mergedelimiters"
msgid "Merge _delimiters"
msgstr "_Yhdistä erottimet"
+#. EMxAD
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:354
+msgctxt "textimportcsv|extended_tip|mergedelimiters"
+msgid "Combines consecutive delimiters and removes blank data fields."
+msgstr "Yhdistetään peräkkäiset erottimet ja poistetaan tyhjät tietokentät."
+
#. fZFyK
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:334
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:366
msgctxt "textimportcsv|removespace"
msgid "Tr_im spaces"
msgstr "Poista ylimääräiset välilyönnit"
+#. EszGB
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:377
+msgctxt "textimportcsv|extended_tip|removespace"
+msgid "Removes starting and trailing spaces from data fields."
+msgstr ""
+
#. 5Jq8o
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:352
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:389
msgctxt "textimportcsv|comma"
msgid "_Comma"
msgstr "_Pilkku"
+#. RWucu
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:399
+msgctxt "textimportcsv|extended_tip|comma"
+msgid "Separates data delimited by commas into columns."
+msgstr "Jaetaan pilkuin erotellut tiedot sarakkeisiin."
+
#. aKEWs
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:368
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:410
msgctxt "textimportcsv|semicolon"
msgid "S_emicolon"
msgstr "P_uolipiste"
+#. dDCtR
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:420
+msgctxt "textimportcsv|extended_tip|semicolon"
+msgid "Separates data delimited by semicolons into columns."
+msgstr "Jaetaan puolipistein erotellut tiedot sarakkeisiin."
+
#. jhHJJ
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:384
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:431
msgctxt "textimportcsv|space"
msgid "S_pace"
msgstr "_Väli"
+#. jbuEn
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:441
+msgctxt "textimportcsv|extended_tip|space"
+msgid "Separates data delimited by spaces into columns."
+msgstr "Jaetaan välilyönnein erotellut tiedot sarakkeisiin."
+
#. Pn4Gr
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:406
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:458
msgctxt "textimportcsv|other"
msgid "Othe_r"
msgstr "Muu"
+#. aCntQ
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:470
+msgctxt "textimportcsv|extended_tip|other"
+msgid "Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data."
+msgstr ""
+
#. smjGu
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:435
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:492
msgctxt "textimportcsv|inputother-atkobject"
msgid "Other"
msgstr "Muu"
+#. Cgx6M
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:493
+msgctxt "textimportcsv|extended_tip|inputother"
+msgid "Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data."
+msgstr ""
+
#. B5nFB
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:460
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:518
msgctxt "textimportcsv|texttextdelimiter"
msgid "Strin_g delimiter:"
msgstr "Merkkijonoerotin:"
+#. KAwBj
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:543
+msgctxt "textimportcsv|extended_tip|textdelimiter"
+msgid "Select a character to delimit text data. You can also enter a character in the text box."
+msgstr ""
+
#. nPRdc
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:512
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:575
msgctxt "textimportcsv|separatoroptions"
msgid "Separator Options"
msgstr "Erotinasetukset"
#. 3jny5
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:546
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:609
msgctxt "textimportcsv|quotedfieldastext"
msgid "F_ormat quoted field as text"
msgstr "Lainausmerkit muotoileivat tekstinä"
+#. VAC6B
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:618
+msgctxt "textimportcsv|extended_tip|quotedfieldastext"
+msgid "When this option is enabled, fields or cells whose values are quoted in their entirety (the first and last characters of the value equal the text delimiter) are imported as text."
+msgstr "Kun tämä asetus on käytössä, kentät tai solut, joiden arvot ovat kokonaisuudessaan asetuksen mukaisten lainausmerkkien sisällä, tulkitaan tekstisoluiksi."
+
#. nBNfT
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:562
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:630
msgctxt "textimportcsv|detectspecialnumbers"
msgid "Detect special _numbers"
msgstr "Tunnista erityiset numeromerkinnät"
+#. zYGMs
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:639
+msgctxt "textimportcsv|extended_tip|detectspecialnumbers"
+msgid "When this option is enabled, Calc will automatically detect all number formats, including special number formats such as dates, time, and scientific notation."
+msgstr "Kun tämä asetus on käytössä, Calc tunnistaa automaattisesti kaikki numeeriset muodot, mukaan lukien päivämäärät, kellonajat ja tieteelliset numeromerkinnät."
+
#. fBAv9
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:578
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:651
msgctxt "textimportcsv|skipemptycells"
msgid "S_kip empty cells"
msgstr "Ohita tyhjät solut"
#. BpC82
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:582
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:655
msgctxt "textimportcsv|skipemptycells"
msgid "If enabled, blank cells in source will not override the target."
msgstr ""
+#. tEG2b
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:661
+msgctxt "textimportcsv|extended_tip|skipemptycells"
+msgid "When this option is enabled, Calc preserves previous content of cells when pasting empty ones. Otherwise, Calc deletes content of previous cells."
+msgstr ""
+
#. PBycV
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:601
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:679
msgctxt "textimportcsv|label3"
msgid "Other Options"
msgstr "Muut valinnat"
#. 6FhCS
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:643
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:721
msgctxt "textimportcsv|textcolumntype"
msgid "Column t_ype:"
msgstr "Saraket_yyppi:"
+#. XDFnr
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:737
+msgctxt "textimportcsv|extended_tip|columntype"
+msgid "Choose a column in the preview window and select the data type to be applied the imported data."
+msgstr "Esikatseluikkunasta valitaan sarake ja valitaan sille tuotaessa käytettävä tiedon tyyppi."
+
#. A79gL
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:733
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:816
msgctxt "textimportcsv|textalttitle"
msgid "Text to Columns"
msgstr "Teksti sarakkeiksi"
#. XjAZq
-#: sc/uiconfig/scalc/ui/textimportcsv.ui:749
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:832
msgctxt "textimportcsv|label4"
msgid "Fields"
msgstr "Kentät"
+#. t6zdn
+#: sc/uiconfig/scalc/ui/textimportcsv.ui:864
+msgctxt "textimportcsv|extended_tip|TextImportCsvDialog"
+msgid "Sets the import options for delimited data."
+msgstr "Määritetään tuontiasetukset välimerkein erotellulle tiedolle."
+
#. RNFRE
#: sc/uiconfig/scalc/ui/textimportoptions.ui:8
msgctxt "textimportoptions|TextImportOptionsDialog"
@@ -28196,252 +31617,384 @@ msgctxt "tpviewpage|formula"
msgid "_Formulas"
msgstr "Kaavat"
+#. NZfqW
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:42
+msgctxt "extended_tip|formula"
+msgid "Specifies whether to show formulas instead of results in the cells."
+msgstr "Merkitsemällä ruutu saadaan esitettyä soluissa kaavat tulosten asemesta."
+
#. a9dGg
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:48
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:53
msgctxt "tpviewpage|nil"
msgid "Zero val_ues"
msgstr "Nolla-arvot"
+#. p3GbC
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:62
+msgctxt "extended_tip|nil"
+msgid "Specifies whether to show numbers with the value of 0."
+msgstr "Merkitsemällä ruutu saadaan myös solun numeroarvo 0 näkyväksi."
+
#. CVAZD
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:63
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:73
msgctxt "tpviewpage|annot"
msgid "_Comment indicator"
msgstr "Huomautusilmaisin"
+#. gbz6Y
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:82
+msgctxt "extended_tip|annot"
+msgid "Specifies that a small rectangle in the top right corner of the cell indicates that a comment exists. The comment will be shown only when you enable tips under %PRODUCTNAME - General in the Options dialog box."
+msgstr "Merkitsemällä määrätään, että solujen oikeassa yläkulmassa huomautuksen läsnäolon merkkinä esitetään pieni suorakaide. Itse huomautus näkyy vain, jos vihjeet sallitaan Asetukset-valintaikkunan %PRODUCTNAME - Yleistä -lehdellä."
+
#. G6GjE
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:78
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:93
msgctxt "tpviewpage|value"
msgid "Value h_ighlighting"
msgstr "Arvojen korostus"
+#. Ve6Bg
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:102
+msgctxt "extended_tip|value"
+msgid "Mark the Value highlighting box to show the cell contents in different colors, depending on type. Text cells are formatted in black, formulas in green, number cells in blue, and protected cells are shown with light grey background, no matter how their display is formatted."
+msgstr "Merkinnällä Arvon korostus -ruudussa korostetaan solujen sisältöä tyypin mukaisesti. Korostusvärit ovat: musta teksteille, vihreä kaavoille, sininen luvuille ja vaaleanharmaa taustaväri suojatuille soluille riippumatta näyttömuotoilusta ."
+
#. ah84V
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:93
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:113
msgctxt "tpviewpage|anchor"
msgid "_Anchor"
msgstr "Ankkuri"
+#. B5SJi
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:122
+msgctxt "extended_tip|anchor"
+msgid "Specifies whether the anchor icon is displayed when an inserted object, such as a graphic, is selected."
+msgstr "Määritetään, näkyykö ankkurikuvake, kun valitaan lisätty objekti, kuten kuva."
+
#. XBGqd
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:108
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:133
msgctxt "tpviewpage|clipmark"
msgid "Te_xt overflow"
msgstr "Tekstin ylivuoto"
+#. qSy8Z
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:142
+msgctxt "extended_tip|clipmark"
+msgid "If a cell contains text that is wider than the width of the cell, the text is displayed over empty neighboring cells in the same row. If there is no empty neighboring cell, a small triangle at the cell border indicates that the text continues."
+msgstr "Asetus aiheuttaa punaisen ylivuotokolmion ilmaantumisen, jos solussa rivin lopun teksti on piilossa, koska seuraava solu on käytössä. Solun leveyttä pitempi teksti voi muuten jatkua yli solurajojen."
+
#. aqEWS
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:123
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:153
msgctxt "tpviewpage|rangefind"
msgid "_Show references in color"
msgstr "Näytä viitteet värillisinä"
+#. hSxKG
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:162
+msgctxt "extended_tip|rangefind"
+msgid "Specifies that each reference is highlighted in color in the formula. The cell range is also enclosed by a colored border as soon as the cell containing the reference is selected for editing."
+msgstr "Määrittää, että kaavassa kukin viittaus on korostettu värillä. Solualue rajataan värillisesti, kun viittaavan solun kaava on muokattavana."
+
#. qtccR
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:144
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:179
msgctxt "tpviewpage|label4"
msgid "Display"
msgstr "Näytä"
#. oCEpm
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:174
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:209
msgctxt "tpviewpage|rowcolheader"
msgid "Colu_mn/row headers"
msgstr "Sarake- ja rivitunnisteet"
+#. sF7Bk
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:218
+msgctxt "extended_tip|rowcolheader"
+msgid "Specifies whether to display row and column headers."
+msgstr "Merkitsemällä ruutu määrätään rivinumerot ja saraketunnukset esille."
+
#. WAwjG
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:189
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:229
msgctxt "tpviewpage|hscroll"
msgid "Hori_zontal scroll bar"
msgstr "Vaakavierityspalkki"
+#. EpixW
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:238
+msgctxt "extended_tip|hscroll"
+msgid "Specifies whether to display a horizontal scrollbar at the bottom of the document window."
+msgstr "Merkitsemällä ruutu määrätään pystyvierityspalkki asiakirjaikkunan oikealla reunalla esille."
+
#. PZvCk
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:204
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:249
msgctxt "tpviewpage|vscroll"
msgid "_Vertical scroll bar"
msgstr "Pystyvierityspalkki"
+#. yhyGB
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:258
+msgctxt "extended_tip|vscroll"
+msgid "Specifies whether to display a vertical scrollbar at the right of the document window."
+msgstr "Merkitsemällä ruutu määrätään pystyvierityspalkki asiakirjaikkunan oikealla reunalla esille."
+
#. rPmMd
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:219
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:269
msgctxt "tpviewpage|tblreg"
msgid "Sh_eet tabs"
msgstr "Taulukonvalitsimet"
+#. aBrX6
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:278
+msgctxt "extended_tip|tblreg"
+msgid "Specifies whether to display the sheet tabs at the bottom of the spreadsheet document."
+msgstr "Merkinnällä määrätään taulukonvalitsimet näkymään asiakirjaikkunan alareunassa."
+
#. WJSnC
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:234
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Jäsennyssymbolit"
+#. hhB5n
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:298
+msgctxt "extended_tip|outline"
+msgid "If you have defined an outline, the Outline symbols option specifies whether to view the outline symbols at the border of the sheet."
+msgstr "Kun on määritelty jäsentäminen, Jäsennyssymbolit-merkinnällä määrätään jäsennysmerkit näkyviksi taulukon reunoilla."
+
#. jJ4uB
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:249
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:309
msgctxt "tpviewpage|summary"
msgid "Summary o_n search"
msgstr "Haun yhteenveto"
#. Ws4Ev
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:271
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:331
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Ikkuna"
#. g4FQY
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:297
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:357
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Synkronoi taulukot"
+#. C5GAq
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:366
+msgctxt "extended_tip|synczoom"
+msgid "If checked, all sheets are shown with the same zoom factor. If not checked, each sheet can have its own zoom factor."
+msgstr "Merkinnällä määrätään, että kaikki taulukot esitetään samalla suurennussuhteella. Jos valintaa ei merkitä, kussakin taulukossa voi olla oma zoomauskerroin."
+
#. pEFjC
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:312
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:377
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoomaa"
+#. yajBD
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:425
+msgctxt "extended_tip|color"
+msgid "Specifies a color for the grid lines in the current document."
+msgstr "Määritetään käsiteltävän asiakirjan ruudukon väri, jos asetukset sallivat."
+
#. bF3Yr
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:368
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Ruudukko:"
#. E2U6D
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:452
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "Väri:"
#. BUibB
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:397
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:467
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Näytä"
#. GXPYd
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:398
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:468
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Näytä värjätyissä soluissa"
#. ucTDZ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:469
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Piilota"
+#. vFtNT
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:473
+msgctxt "extended_tip|grid"
+msgid "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."
+msgstr "Merkinnällä solut muodostavat näytölle tutun laskentaruudukon. Oletuksena ruudukko näkyy vain taustavärittömissä soluissa. Soluruudukon voi myös valita näkyväsi taustavärin kanssa."
+
#. ShHLd
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:415
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:490
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Sivunvaihdot"
+#. Vc5tW
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:499
+msgctxt "extended_tip|break"
+msgid "Specifies whether to view the page breaks within a defined print area."
+msgstr "Määritetään, näkyvätkö sivunvaihtoviivat tulostusalueella."
+
#. xkuBL
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:430
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:510
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Apuviivat siirrettäessä"
+#. KGEQG
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:519
+msgctxt "extended_tip|guideline"
+msgid "Specifies whether to view guides when moving drawings, frames, graphics and other objects."
+msgstr "Määritetään, näkyvätkö apuviivat siirrettäessä piirroksia, kehyksiä, kuvia tai muita objekteja."
+
#. Cb4AM
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:451
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:536
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Visuaaliset aputyökalut"
#. Qd5Rp
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:485
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:570
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Objektit/Kuvat:"
#. BCaDn
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:499
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:584
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Kaaviot:"
#. q544D
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:513
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Piirrosobjektit:"
#. mpELg
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:528
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:613
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Näytä"
#. Kx6yJ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:529
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:614
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Piilota"
+#. oKpbX
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:618
+msgctxt "extended_tip|objgrf"
+msgid "Defines if objects and graphics are shown or hidden."
+msgstr "Asetuksen mukaan objektit ja kuvat joko näytetään tai piilotetaan."
+
#. wFBeZ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:542
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:632
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Näytä"
#. H7MAB
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:543
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:633
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Piilota"
+#. oVE9C
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:637
+msgctxt "extended_tip|diagram"
+msgid "Defines if charts in your document are shown or hidden."
+msgstr "Asetuksen mukaan kaaviot joko näytetään tai piilotetaan."
+
#. YaiTQ
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:556
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:651
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Näytä"
#. DST5a
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:557
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:652
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Piilota"
+#. FDGKD
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:656
+msgctxt "extended_tip|draw"
+msgid "Defines if drawing objects in your document are shown or hidden."
+msgstr "Asetuksen mukaan piirrokset joko näytetään tai piilotetaan taulukoissa."
+
#. E6GxC
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:573
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:673
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objektit"
+#. aFAnX
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:697
+msgctxt "extended_tip|TpViewPage"
+msgid "Defines which elements of the %PRODUCTNAME Calc main window are displayed. You can also show or hide highlighting of values in tables."
+msgstr "Määritetään %PRODUCTNAME Calcin pääikkunassa näkyvät osatekijät. Myös arvojen korostumista taulukoissa voidaan säätää."
+
#. AnLEa
-#: sc/uiconfig/scalc/ui/ttestdialog.ui:102
+#: sc/uiconfig/scalc/ui/ttestdialog.ui:98
msgctxt "ttestdialog|variable1-range-label"
msgid "Variable 1 range:"
msgstr "Muuttujan 1 alue:"
#. SgAwF
-#: sc/uiconfig/scalc/ui/ttestdialog.ui:141
+#: sc/uiconfig/scalc/ui/ttestdialog.ui:137
msgctxt "ttestdialog|variable2-range-label"
msgid "Variable 2 range:"
msgstr "Muuttujan 2 alue:"
#. dPc62
-#: sc/uiconfig/scalc/ui/ttestdialog.ui:180
+#: sc/uiconfig/scalc/ui/ttestdialog.ui:176
msgctxt "ttestdialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. FzCYq
-#: sc/uiconfig/scalc/ui/ttestdialog.ui:223
+#: sc/uiconfig/scalc/ui/ttestdialog.ui:219
msgctxt "ttestdialog|label1"
msgid "Data"
msgstr "Tiedot"
#. STA6h
-#: sc/uiconfig/scalc/ui/ttestdialog.ui:258
+#: sc/uiconfig/scalc/ui/ttestdialog.ui:254
msgctxt "ttestdialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sarakkeet"
#. 5cU4i
-#: sc/uiconfig/scalc/ui/ttestdialog.ui:274
+#: sc/uiconfig/scalc/ui/ttestdialog.ui:270
msgctxt "ttestdialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rivit"
#. BPFfu
-#: sc/uiconfig/scalc/ui/ttestdialog.ui:296
+#: sc/uiconfig/scalc/ui/ttestdialog.ui:292
msgctxt "ttestdialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
+#. WGyaE
+#: sc/uiconfig/scalc/ui/ttestdialog.ui:317
+msgctxt "ttestdialog|extended_tip|TTestDialog"
+msgid "Calculates the paired t-Test of two data samples."
+msgstr ""
+
#. ccFZ3
#: sc/uiconfig/scalc/ui/ungroupdialog.ui:8
msgctxt "ungroupdialog|UngroupDialog"
@@ -28449,19 +32002,19 @@ msgid "Ungroup"
msgstr "Pura ryhmä"
#. bRDDQ
-#: sc/uiconfig/scalc/ui/ungroupdialog.ui:100
+#: sc/uiconfig/scalc/ui/ungroupdialog.ui:99
msgctxt "ungroupdialog|rows"
msgid "_Rows"
msgstr "Rivit"
#. GMCxr
-#: sc/uiconfig/scalc/ui/ungroupdialog.ui:117
+#: sc/uiconfig/scalc/ui/ungroupdialog.ui:116
msgctxt "ungroupdialog|cols"
msgid "_Columns"
msgstr "Sarakkeet"
#. h7unP
-#: sc/uiconfig/scalc/ui/ungroupdialog.ui:141
+#: sc/uiconfig/scalc/ui/ungroupdialog.ui:140
msgctxt "ungroupdialog|includeLabel"
msgid "Deactivate for"
msgstr "Poista käytöstä"
@@ -28532,90 +32085,144 @@ msgctxt "validationcriteriapage|liststore1"
msgid "Custom"
msgstr "Mukautettu"
+#. sYoev
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:58
+msgctxt "validationcriteriapage|extended_tip|allow"
+msgid "Click a validation option for the selected cell(s)."
+msgstr ""
+
#. Nv24D
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:67
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:72
msgctxt "validationcriteriapage|liststore2"
msgid "equal"
msgstr "yhtä suuri"
#. NgLaF
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:68
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:73
msgctxt "validationcriteriapage|liststore2"
msgid "less than"
msgstr "pienempi kuin"
#. 9DK6f
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:69
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:74
msgctxt "validationcriteriapage|liststore2"
msgid "greater than"
msgstr "suurempi kuin"
#. 3Wm4v
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:70
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:75
msgctxt "validationcriteriapage|liststore2"
msgid "less than or equal"
msgstr "pienempi tai yhtä suuri kuin"
#. 3CTKZ
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:71
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:76
msgctxt "validationcriteriapage|liststore2"
msgid "greater than or equal to"
msgstr "suurempi tai yhtä suuri kuin"
#. TEt6V
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:72
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:77
msgctxt "validationcriteriapage|liststore2"
msgid "not equal"
msgstr "erisuuri"
#. B8tih
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:73
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:78
msgctxt "validationcriteriapage|liststore2"
msgid "valid range"
msgstr "kelvollinen alue"
#. SMi3y
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:74
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:79
msgctxt "validationcriteriapage|liststore2"
msgid "invalid range"
msgstr "virheellinen alue"
+#. 89CdB
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:83
+msgctxt "validationcriteriapage|extended_tip|data"
+msgid "Select the comparative operator that you want to use."
+msgstr ""
+
#. RCFrD
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:86
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:96
msgctxt "validationcriteriapage|minft"
msgid "_Minimum:"
msgstr "Vähintään:"
+#. McrSQ
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:125
+msgctxt "validationcriteriapage|extended_tip|min"
+msgid "Enter the minimum value for the data validation option that you selected in the Allow box."
+msgstr ""
+
+#. ywVMA
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:168
+msgctxt "validationcriteriapage|extended_tip|minlist"
+msgid "Enter the entries that will be valid values or text strings."
+msgstr ""
+
#. FxF3s
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:169
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:189
msgctxt "validationcriteriapage|maxft"
msgid "Ma_ximum:"
msgstr "Enintään:"
#. cQo5d
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:181
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:201
msgctxt "validationcriteriapage|allowempty"
msgid "Allow _empty cells"
msgstr "Salli tyhjät solut"
+#. gMyAs
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:210
+msgctxt "validationcriteriapage|extended_tip|allowempty"
+msgid "In conjunction with Tools - Detective - Mark invalid Data, this defines that blank cells are shown as invalid data (disabled) or not (enabled)."
+msgstr ""
+
#. tsgJF
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:196
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:221
msgctxt "validationcriteriapage|showlist"
msgid "Show selection _list"
msgstr "Näytä valintojen luettelo"
+#. S8X7y
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:230
+msgctxt "validationcriteriapage|extended_tip|showlist"
+msgid "Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D."
+msgstr ""
+
#. vwNGC
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:211
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:241
msgctxt "validationcriteriapage|sortascend"
msgid "Sor_t entries ascending"
msgstr "Lajittele merkinnät nousevasti"
+#. zejAE
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:252
+msgctxt "validationcriteriapage|extended_tip|sortascend"
+msgid "Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken."
+msgstr ""
+
#. 96jcJ
-#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:230
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:265
msgctxt "validationcriteriapage|hintft"
msgid "A valid source can only consist of a contiguous selection of rows and columns, or a formula that results in an area or array."
msgstr "Kelvollinen lähde on yhtenäinen valinta rivejä ja sarakkeita, tai kaava joka palauttaa alueen tai taulukon."
+#. 9v4Ah
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:284
+msgctxt "validationcriteriapage|extended_tip|max"
+msgid "Enter the maximum value for the data validation option that you selected in the Allow box."
+msgstr ""
+
+#. 3HjmP
+#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:307
+msgctxt "validationcriteriapage|extended_tip|ValidationCriteriaPage"
+msgid "Specify the validation rules for the selected cell(s)."
+msgstr ""
+
#. NBBSA
#: sc/uiconfig/scalc/ui/validationdialog.ui:8
msgctxt "validationdialog|ValidationDialog"
@@ -28640,30 +32247,72 @@ msgctxt "validationdialog|erroralert"
msgid "Error Alert"
msgstr "Virhehälytys"
+#. tRXEs
+#: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:15
+msgctxt "validationhelptabpage-mobile|tsbhelp"
+msgid "_Show input help when cell is selected"
+msgstr ""
+
+#. ZJEXj
+#: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:55
+msgctxt "validationhelptabpage-mobile|title_label"
+msgid "_Title:"
+msgstr ""
+
+#. yDRCK
+#: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:69
+msgctxt "validationhelptabpage-mobile|inputhelp_label"
+msgid "_Input help:"
+msgstr ""
+
#. 4etq8
#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:15
msgctxt "validationhelptabpage|tsbhelp"
msgid "_Show input help when cell is selected"
msgstr "Näytä syöttöohje, kun solu on valittuna"
+#. ATCgp
+#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:26
+msgctxt "validationhelptabpage|extended_tip|tsbhelp"
+msgid "Displays the message that you enter in the Contents box when the cell or cell range is selected in the sheet."
+msgstr ""
+
+#. 9NNLK
+#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:68
+msgctxt "validationhelptabpage|extended_tip|title"
+msgid "Enter the title that you want to display when the cell or cell range is selected."
+msgstr ""
+
#. WZNfj
-#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:71
+#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:81
msgctxt "validationhelptabpage|title_label"
msgid "_Title:"
msgstr "Otsikko:"
#. EHf6R
-#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:85
+#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:95
msgctxt "validationhelptabpage|inputhelp_label"
msgid "_Input help:"
msgstr "Syöttöohje:"
+#. KTTfc
+#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:121
+msgctxt "validationhelptabpage|extended_tip|inputhelp"
+msgid "Enter the message that you want to display when the cell or cell range is selected."
+msgstr ""
+
#. epdvk
-#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:125
+#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:140
msgctxt "validationhelptabpage|label1"
msgid "Contents"
msgstr "Sisältö"
+#. EhEo2
+#: sc/uiconfig/scalc/ui/validationhelptabpage.ui:155
+msgctxt "validationhelptabpage|extended_tip|ValidationHelpTabPage"
+msgid "Enter the message that you want to display when the cell or cell range is selected in the sheet."
+msgstr ""
+
#. pSFWN
#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:23
msgctxt "xmlsourcedialog|XMLSourceDialog"
@@ -28671,79 +32320,91 @@ msgid "XML Source"
msgstr "XML-lähde"
#. E5nmH
-#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:42
+#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:39
msgctxt "xmlsourcedialog|ok"
msgid "_Import"
msgstr "Tuo"
#. B5Q88
-#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:118
+#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:115
msgctxt "xmlsourcedialog|selectsource|tooltip_text"
msgid "Browse to set source file."
msgstr "Selaa lähdetiedoston valitsemiseksi."
#. WkbPB
-#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:131
+#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:128
msgctxt "xmlsourcedialog|sourcefile"
msgid "- not set -"
msgstr "- ei valittu -"
#. peiAH
-#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:147
+#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:144
msgctxt "xmlsourcedialog|label1"
msgid "Source File"
msgstr "Lähdetiedosto"
#. QsaTU
-#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:193
+#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:190
msgctxt "xmlsourcedialog|label5"
msgid "Mapped cell:"
msgstr "Kohdesolu:"
#. eN8dT
-#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:287
+#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:283
msgctxt "xmlsourcedialog|label4"
msgid "Map to Document"
msgstr "Asiakirjan rakenne"
+#. 6A4E9
+#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:308
+msgctxt "xmlsourcedialog|extended_tip|XMLSourceDialog"
+msgid "Import XML data in a spreadsheet."
+msgstr ""
+
#. 5ozTx
-#: sc/uiconfig/scalc/ui/ztestdialog.ui:102
+#: sc/uiconfig/scalc/ui/ztestdialog.ui:98
msgctxt "ztestdialog|variable1-range-label"
msgid "Variable 1 range:"
msgstr "Muuttujan 1 alue:"
#. nhD94
-#: sc/uiconfig/scalc/ui/ztestdialog.ui:141
+#: sc/uiconfig/scalc/ui/ztestdialog.ui:137
msgctxt "ztestdialog|variable2-range-label"
msgid "Variable 2 range:"
msgstr "Muuttujan 2 alue:"
#. LEaQJ
-#: sc/uiconfig/scalc/ui/ztestdialog.ui:180
+#: sc/uiconfig/scalc/ui/ztestdialog.ui:176
msgctxt "ztestdialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
#. k62LL
-#: sc/uiconfig/scalc/ui/ztestdialog.ui:223
+#: sc/uiconfig/scalc/ui/ztestdialog.ui:219
msgctxt "ztestdialog|label1"
msgid "Data"
msgstr "Tiedot"
#. SnazD
-#: sc/uiconfig/scalc/ui/ztestdialog.ui:258
+#: sc/uiconfig/scalc/ui/ztestdialog.ui:254
msgctxt "ztestdialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sarakkeet"
#. LWhtJ
-#: sc/uiconfig/scalc/ui/ztestdialog.ui:274
+#: sc/uiconfig/scalc/ui/ztestdialog.ui:270
msgctxt "ztestdialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rivit"
#. Bby3W
-#: sc/uiconfig/scalc/ui/ztestdialog.ui:296
+#: sc/uiconfig/scalc/ui/ztestdialog.ui:292
msgctxt "ztestdialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
+
+#. bPHtB
+#: sc/uiconfig/scalc/ui/ztestdialog.ui:317
+msgctxt "ztestdialog|extended_tip|ZTestDialog"
+msgid "Calculates the z-Test of two data samples."
+msgstr ""
diff --git a/source/fi/sd/messages.po b/source/fi/sd/messages.po
index 259b761273a..6f4900154bd 100644
--- a/source/fi/sd/messages.po
+++ b/source/fi/sd/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/fi/>\n"
@@ -190,50 +190,26 @@ msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "S~lides:"
msgstr "D~iat:"
-#. acUsf
-#: sd/inc/DocumentRenderer.hrc:84
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "~Even slides"
-msgstr "~Parilliset diat"
-
-#. y9k5R
-#: sd/inc/DocumentRenderer.hrc:85
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "~Odd slides"
-msgstr "Pa~rittomat diat"
-
#. C2UoV
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Selection"
msgstr "~Valinta"
#. HfsBP
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "All ~Pages"
msgstr "Kaikki ~sivut"
#. 7nrMB
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Pages:"
msgstr "~Sivut:"
-#. H4Ert
-#: sd/inc/DocumentRenderer.hrc:93
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "~Even pages"
-msgstr "~Parilliset sivut"
-
-#. gxcSt
-#: sd/inc/DocumentRenderer.hrc:94
-msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
-msgid "~Odd pages"
-msgstr "Pa~rittomat sivut"
-
#. wvqvC
-#: sd/inc/DocumentRenderer.hrc:95
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Selection"
msgstr "~Valinta"
@@ -3054,89 +3030,164 @@ msgid "Duplicate"
msgstr "Monista"
#. FuEEG
-#: sd/uiconfig/sdraw/ui/copydlg.ui:45
+#: sd/uiconfig/sdraw/ui/copydlg.ui:42
msgctxt "copydlg|default"
msgid "_Default"
msgstr "O_letus"
+#. BCDCG
+#: sd/uiconfig/sdraw/ui/copydlg.ui:49
+msgctxt "copydlg|extended_tip|default"
+msgid "Resets the values visible in the dialog back to the default installation values."
+msgstr ""
+
+#. ELfL6
+#: sd/uiconfig/sdraw/ui/copydlg.ui:70
+msgctxt "copydlg|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. AiFRo
+#: sd/uiconfig/sdraw/ui/copydlg.ui:89
+msgctxt "copydlg|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
#. HhrrQ
-#: sd/uiconfig/sdraw/ui/copydlg.ui:127
+#: sd/uiconfig/sdraw/ui/copydlg.ui:139
msgctxt "copydlg|label4"
msgid "Number of _copies:"
msgstr "Kopioiden _määrä:"
+#. qgJLc
+#: sd/uiconfig/sdraw/ui/copydlg.ui:159
+msgctxt "copydlg|extended_tip|copies"
+msgid "Enter the number of copies you want to make."
+msgstr "Annetaan tehtävien kopioiden lukumäärä."
+
#. 3fqDJ
-#: sd/uiconfig/sdraw/ui/copydlg.ui:157
+#: sd/uiconfig/sdraw/ui/copydlg.ui:174
msgctxt "copydlg|viewdata|tooltip_text"
msgid "Values from Selection"
msgstr "Valinnan arvot"
#. UxvBf
-#: sd/uiconfig/sdraw/ui/copydlg.ui:162
+#: sd/uiconfig/sdraw/ui/copydlg.ui:179
msgctxt "copydlg|viewdata-atkobject"
msgid "Values from Selection"
msgstr "Valinnan arvot"
#. 27j9Q
-#: sd/uiconfig/sdraw/ui/copydlg.ui:204
+#: sd/uiconfig/sdraw/ui/copydlg.ui:221
msgctxt "copydlg|label5"
msgid "_X axis:"
msgstr "_X-akselille:"
#. G5trD
-#: sd/uiconfig/sdraw/ui/copydlg.ui:218
+#: sd/uiconfig/sdraw/ui/copydlg.ui:235
msgctxt "copydlg|label6"
msgid "_Y axis:"
msgstr "_Y-akselille:"
#. gHkmD
-#: sd/uiconfig/sdraw/ui/copydlg.ui:232
+#: sd/uiconfig/sdraw/ui/copydlg.ui:249
msgctxt "copydlg|label7"
msgid "_Angle:"
msgstr "_Kulma:"
+#. a63ej
+#: sd/uiconfig/sdraw/ui/copydlg.ui:268
+msgctxt "copydlg|extended_tip|x"
+msgid "Enter the horizontal distance between the centers of the selected object and the duplicate object. Positive values shift the duplicate object to the right and negative values shift the duplicate object to the left."
+msgstr "Annetaan vaakaetäisyys valitun objektin ja monistettavan objektin keskipisteiden välillä. Positiiviset arvot siirtävät kopioituvaa objektia oikealle ja negatiiviset arvot vasemmalle."
+
+#. qPCGk
+#: sd/uiconfig/sdraw/ui/copydlg.ui:286
+msgctxt "copydlg|extended_tip|y"
+msgid "Enter the vertical distance between the centers of the selected object and the duplicate object. Positive values shift the duplicate object down and negative values shift the duplicate object up."
+msgstr "Annetaan pystysuuntainen etäisyys valitun objektin ja monistettavan objektin keskipisteiden välillä. Positiiviset arvot siirtävät kopioituvaa objektia alas ja negatiiviset arvot ylös."
+
+#. uyLiW
+#: sd/uiconfig/sdraw/ui/copydlg.ui:305
+#, fuzzy
+msgctxt "copydlg|extended_tip|angle"
+msgid "Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counterclockwise direction."
+msgstr "Syötetään kulma (0 ... 359 astetta), jonka kopio-objekti kiertyy. Positiiviset arvot kiertävät monistettavaa objektia myötäpäivään (ja negatiiviset arvot vastapäivään). "
+
#. Mb9Gs
-#: sd/uiconfig/sdraw/ui/copydlg.ui:290
+#: sd/uiconfig/sdraw/ui/copydlg.ui:322
msgctxt "copydlg|label1"
msgid "Placement"
msgstr "Sijoittelu"
#. 3Dyw2
-#: sd/uiconfig/sdraw/ui/copydlg.ui:328
+#: sd/uiconfig/sdraw/ui/copydlg.ui:360
msgctxt "copydlg|label8"
msgid "_Width:"
msgstr "_Leveys:"
#. YuAHc
-#: sd/uiconfig/sdraw/ui/copydlg.ui:342
+#: sd/uiconfig/sdraw/ui/copydlg.ui:374
msgctxt "copydlg|label9"
msgid "_Height:"
msgstr "_Korkeus:"
+#. pLxaH
+#: sd/uiconfig/sdraw/ui/copydlg.ui:393
+msgctxt "copydlg|extended_tip|width"
+msgid "Enter the amount by which you want to enlarge or reduce the width of the duplicate object."
+msgstr "Annetaan mitta, jolla monistettavan objektin leveyttä suurennetaan tai pienennetään."
+
+#. LP58A
+#: sd/uiconfig/sdraw/ui/copydlg.ui:411
+msgctxt "copydlg|extended_tip|height"
+msgid "Enter the amount by which you want to enlarge or reduce the height of the duplicate object."
+msgstr "Annetaan mitta, jolla monistettavan objektin korkeutta suurennetaan tai pienennetään."
+
#. Jvt8m
-#: sd/uiconfig/sdraw/ui/copydlg.ui:386
+#: sd/uiconfig/sdraw/ui/copydlg.ui:428
msgctxt "copydlg|label2"
msgid "Enlargement"
msgstr "Koon muutos"
#. ENMbc
-#: sd/uiconfig/sdraw/ui/copydlg.ui:424
+#: sd/uiconfig/sdraw/ui/copydlg.ui:466
msgctxt "copydlg|label10"
msgid "_Start:"
msgstr "_Alku:"
#. Z6aqk
-#: sd/uiconfig/sdraw/ui/copydlg.ui:438
+#: sd/uiconfig/sdraw/ui/copydlg.ui:480
msgctxt "copydlg|endlabel"
msgid "_End:"
msgstr "_Loppu:"
+#. ULShA
+#: sd/uiconfig/sdraw/ui/copydlg.ui:504
+msgctxt "copydlg|extended_tip|start"
+msgid "Choose a color for the selected object."
+msgstr "Valitaan väri kohdistetulle objektille."
+
+#. AAoBa
+#: sd/uiconfig/sdraw/ui/copydlg.ui:527
+#, fuzzy
+msgctxt "copydlg|extended_tip|end"
+msgid "Choose a color for the duplicate object. If you are making more than one copy, this color is applied to the last copy."
+msgstr "Valitaan väri monistettavalle objektille. Jos kopioita tehdään enemmän kuin yksi, tätä väriä käytetään viimeisessä kopiossa. "
+
#. F3A93
-#: sd/uiconfig/sdraw/ui/copydlg.ui:492
+#: sd/uiconfig/sdraw/ui/copydlg.ui:544
msgctxt "copydlg|label3"
msgid "Colors"
msgstr "Värit"
+#. W2wTC
+#: sd/uiconfig/sdraw/ui/copydlg.ui:577
+#, fuzzy
+msgctxt "copydlg|extended_tip|DuplicateDialog"
+msgid "Makes one or more copies of a selected object."
+msgstr "Valitusta objektista tehdään yksi tai useampia kopioita. "
+
#. Y4vXd
#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:15
msgctxt "crossfadedialog|CrossFadeDialog"
@@ -3149,72 +3200,138 @@ msgctxt "crossfadedialog|orientation"
msgid "Same orientation"
msgstr "Sama asento"
+#. PAGv2
+#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:114
+msgctxt "crossfadedialog|extended_tip|orientation"
+msgid "Applies a smooth transition between the selected objects."
+msgstr "Valinta estää valittujen objektien välimuotojen kiertymisen."
+
#. SmBMK
-#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:121
+#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:126
msgctxt "crossfadedialog|attributes"
msgid "Cross-fade attributes"
msgstr "Muunna attribuutit"
+#. zb4pb
+#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:135
+msgctxt "crossfadedialog|extended_tip|attributes"
+msgid "Applies cross-fading to the line and fill properties of the selected objects."
+msgstr "Merkinnällä määrätään, että muodonvaihdosta käytetään valittujen objektien viiva- ja täyttöominaisuuksiinkin."
+
#. CehQE
-#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:139
+#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:149
msgctxt "crossfadedialog|label2"
msgid "Increments:"
msgstr "Välimuotoja:"
+#. d2wBc
+#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:167
+msgctxt "crossfadedialog|extended_tip|increments"
+msgid "Enter the number of shapes you want between the two selected objects."
+msgstr "Annetaan välimuotojen lukumäärä."
+
#. MnqQG
-#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:169
+#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:184
msgctxt "crossfadedialog|label1"
msgid "Settings"
msgstr "Asetukset"
+#. meuam
+#: sd/uiconfig/sdraw/ui/crossfadedialog.ui:209
+msgctxt "crossfadedialog|extended_tip|CrossFadeDialog"
+msgid "Creates shapes and distributes them by uniform increments between two drawing objects."
+msgstr "Luodaan kuvioita ja jaetaan ne tasavälein kahden alkupiirroksen väliin."
+
#. 9Ga7E
#: sd/uiconfig/sdraw/ui/dlgsnap.ui:23
msgctxt "dlgsnap|SnapObjectDialog"
msgid "New Snap Object"
msgstr "Lisää kohdistuspiste tai -viiva"
+#. Qg8Yb
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:46
+msgctxt "dlgsnap|extended_tip|delete"
+msgid "Deletes the selected snap point or snap line."
+msgstr "Poistetaan valittu kohdistuspiste tai -viiva."
+
+#. zJQtH
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:141
+msgctxt "dlgsnap|extended_tip|x"
+msgid "Enter the amount of space you want between the snap point or line and the left edge of the page."
+msgstr "Määrätään sijoitteluavun etäisyys sivun vasemmasta reunasta."
+
+#. iBvKZ
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:158
+msgctxt "dlgsnap|extended_tip|y"
+msgid "Enter the amount of space you want between the snap point or line and the top edge of the page."
+msgstr "Määrätään sijoitteluavun etäisyys sivun yläreunasta."
+
#. GSJeV
-#: sd/uiconfig/sdraw/ui/dlgsnap.ui:156
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:171
msgctxt "dlgsnap|xlabel"
msgid "_X:"
msgstr "X:"
#. AAfto
-#: sd/uiconfig/sdraw/ui/dlgsnap.ui:169
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:184
msgctxt "dlgsnap|ylabel"
msgid "_Y:"
msgstr "Y:"
#. pMnkL
-#: sd/uiconfig/sdraw/ui/dlgsnap.ui:186
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:201
msgctxt "dlgsnap|label1"
msgid "Position"
msgstr "Sijainti"
#. i4QCv
-#: sd/uiconfig/sdraw/ui/dlgsnap.ui:219
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:234
msgctxt "dlgsnap|point"
msgid "_Point"
msgstr "_Piste"
+#. jQ34q
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:246
+msgctxt "dlgsnap|extended_tip|point"
+msgid "Inserts a snap point."
+msgstr "Lisätään kohdistuspiste."
+
#. k2rmV
-#: sd/uiconfig/sdraw/ui/dlgsnap.ui:238
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:258
msgctxt "dlgsnap|vert"
msgid "_Vertical"
msgstr "_Pystysuora"
+#. 7bAB7
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:270
+msgctxt "dlgsnap|extended_tip|vert"
+msgid "Inserts a vertical snap line."
+msgstr "Lisätään pystysuuntainen kohdistusviiva."
+
#. tHFwv
-#: sd/uiconfig/sdraw/ui/dlgsnap.ui:257
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:282
msgctxt "dlgsnap|horz"
msgid "Hori_zontal"
msgstr "Vaakasuora"
+#. GMavs
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:294
+msgctxt "dlgsnap|extended_tip|horz"
+msgid "Inserts a horizontal snap line."
+msgstr "Lisätään vaakasuuntainen kohdistusviiva."
+
#. Dd9fb
-#: sd/uiconfig/sdraw/ui/dlgsnap.ui:282
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:312
msgctxt "dlgsnap|label2"
msgid "Type"
msgstr "Tyyppi"
+#. hGNY5
+#: sd/uiconfig/sdraw/ui/dlgsnap.ui:345
+msgctxt "dlgsnap|extended_tip|SnapObjectDialog"
+msgid "Inserts a snap point or snap line (also known as guide) that you can use to quickly align objects."
+msgstr "Lisätään kohdistuspiste tai kohdistusviiva (eli sijoitteluapu) objektien kohdistamiseksi sujuvasti."
+
#. MuBBG
#: sd/uiconfig/sdraw/ui/drawchardialog.ui:8
msgctxt "drawchardialog|DrawCharDialog"
@@ -3485,42 +3602,84 @@ msgctxt "insertlayer|InsertLayerDialog"
msgid "Insert Layer"
msgstr "Lisää kerros"
+#. FFtqd
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:103
+msgctxt "insertlayer|extended_tip|name"
+msgid "Enter a name for the new layer."
+msgstr ""
+
#. kWarA
-#: sd/uiconfig/sdraw/ui/insertlayer.ui:109
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:114
msgctxt "insertlayer|label4"
msgid "_Name"
msgstr "_Nimi"
+#. FbChP
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:148
+msgctxt "insertlayer|extended_tip|title"
+msgid "Enter the title of the layer."
+msgstr ""
+
#. hCTSd
-#: sd/uiconfig/sdraw/ui/insertlayer.ui:149
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:159
msgctxt "insertlayer|label5"
msgid "_Title"
msgstr "Otsikko"
+#. KKC7D
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:204
+msgctxt "insertlayer|extended_tip|textview"
+msgid "Enter a description of the layer."
+msgstr ""
+
#. g2K4k
-#: sd/uiconfig/sdraw/ui/insertlayer.ui:202
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:217
msgctxt "insertlayer|description"
msgid "_Description"
msgstr "Kuvaus"
#. DTUy2
-#: sd/uiconfig/sdraw/ui/insertlayer.ui:218
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:233
msgctxt "insertlayer|visible"
msgid "_Visible"
msgstr "N_äkyvä"
+#. oXY4U
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:242
+msgctxt "insertlayer|extended_tip|visible"
+msgid "Show or hide the layer."
+msgstr ""
+
#. BtGRo
-#: sd/uiconfig/sdraw/ui/insertlayer.ui:234
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:254
msgctxt "insertlayer|printable"
msgid "_Printable"
msgstr "_Tulostettava"
+#. VASG2
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:263
+msgctxt "insertlayer|extended_tip|printable"
+msgid "When printing, print or ignore this particular layer."
+msgstr ""
+
#. E6EKN
-#: sd/uiconfig/sdraw/ui/insertlayer.ui:250
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:275
msgctxt "insertlayer|locked"
msgid "_Locked"
msgstr "_Lukittu"
+#. uaSTH
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:284
+msgctxt "insertlayer|extended_tip|locked"
+msgid "Prevent elements on the layer from being edited."
+msgstr ""
+
+#. ogtGC
+#: sd/uiconfig/sdraw/ui/insertlayer.ui:313
+msgctxt "insertlayer|extended_tip|InsertLayerDialog"
+msgid "Inserts a new layer in the document. Layers are only available in Draw, not in Impress."
+msgstr ""
+
#. dCRtD
#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:18
msgctxt "insertslidesdialog|InsertSlidesDialog"
@@ -3528,17 +3687,29 @@ msgid "Insert Slides/Objects"
msgstr "Lisää dioja tai objekteja"
#. FsBqJ
-#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:96
+#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:93
msgctxt "insertslidesdialog|backgrounds"
msgid "Delete unused backg_rounds"
msgstr "Poista käyttämättömät taustat"
+#. gZErD
+#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:102
+msgctxt "insertslidesdialog|extended_tip|backgrounds"
+msgid "Unused master pages are not inserted."
+msgstr "Käyttämättömiä diapohjia ei lisätä."
+
#. ixGB4
-#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:111
+#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:113
msgctxt "insertslidesdialog|links"
msgid "_Link"
msgstr "Linkitä"
+#. c7yDj
+#: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:122
+msgctxt "insertslidesdialog|extended_tip|links"
+msgid "Inserts a file or some file elements as a link that is automatically updated when the source file is modified."
+msgstr "Lisätään tiedosto tai joitain tiedoston osia linkkinä, joka päivittyy kun lähdetiedostoa muokataan."
+
#. 4X9cK
#: sd/uiconfig/sdraw/ui/namedesign.ui:8
#, fuzzy
@@ -4223,42 +4394,78 @@ msgctxt "vectorize|preview"
msgid "Preview"
msgstr "Esikatselu"
+#. c8AEr
+#: sd/uiconfig/sdraw/ui/vectorize.ui:52
+msgctxt "vectorize|extended_tip|preview"
+msgid "Previews the converted image without applying the changes."
+msgstr "Painikkeella ennakkonäytetään muunnettu kuva muuttamatta asiakirjaan."
+
#. 4LBUQ
-#: sd/uiconfig/sdraw/ui/vectorize.ui:120
+#: sd/uiconfig/sdraw/ui/vectorize.ui:125
msgctxt "vectorize|label2"
msgid "Number of colors:"
msgstr "Värien määrä:"
+#. fhFE7
+#: sd/uiconfig/sdraw/ui/vectorize.ui:143
+msgctxt "vectorize|extended_tip|colors"
+msgid "Enter the number of colors to be displayed in the converted image. %PRODUCTNAME generates a polygon for each occurrence of a color in the image."
+msgstr "Annetaan muunnetussa kuvassa näkyvien värien määrä. %PRODUCTNAME tuottaa jokaista väriä vastaavan monikulmion kuvaan."
+
#. Fzf9L
-#: sd/uiconfig/sdraw/ui/vectorize.ui:146
+#: sd/uiconfig/sdraw/ui/vectorize.ui:156
msgctxt "vectorize|label3"
msgid "Point reduction:"
msgstr "Pisteiden vähennys:"
-#. 2xaFF
+#. enFzr
#: sd/uiconfig/sdraw/ui/vectorize.ui:174
+msgctxt "vectorize|extended_tip|points"
+msgid "Removes color polygons that are smaller than the pixel value you enter."
+msgstr "Poistetaan annettua kuvapistemäärää pienemmät värilliset monikulmiot."
+
+#. 2xaFF
+#: sd/uiconfig/sdraw/ui/vectorize.ui:189
msgctxt "vectorize|tilesft"
msgid "Tile size:"
msgstr "Täytelohkojen koko:"
+#. Qz4TD
+#: sd/uiconfig/sdraw/ui/vectorize.ui:207
+msgctxt "vectorize|extended_tip|tiles"
+msgid "Enter the size of the rectangle for the background fill."
+msgstr "Annetaan taustan täyttöön käytettävän suorakulmion koko."
+
#. 2jDqG
-#: sd/uiconfig/sdraw/ui/vectorize.ui:198
+#: sd/uiconfig/sdraw/ui/vectorize.ui:218
msgctxt "vectorize|fillholes"
msgid "_Fill holes"
msgstr "Täytä aukot"
+#. AF6Bf
+#: sd/uiconfig/sdraw/ui/vectorize.ui:227
+msgctxt "vectorize|extended_tip|fillholes"
+msgid "Fills the color gaps caused by applying a point reduction."
+msgstr "Täytetään väriaukot, jotka syntyvät pisteiden vähennyksestä."
+
#. ZmPtn
-#: sd/uiconfig/sdraw/ui/vectorize.ui:231
+#: sd/uiconfig/sdraw/ui/vectorize.ui:256
msgctxt "vectorize|label5"
msgid "Source image:"
msgstr "Lähdekuva:"
#. HYpvA
-#: sd/uiconfig/sdraw/ui/vectorize.ui:245
+#: sd/uiconfig/sdraw/ui/vectorize.ui:270
msgctxt "vectorize|label6"
msgid "Vectorized image:"
msgstr "Vektorikuva:"
+#. 8hJxb
+#: sd/uiconfig/sdraw/ui/vectorize.ui:369
+msgctxt "vectorize|extended_tip|VectorizeDialog"
+msgid "Converts the selected object to a polygon (a closed object bounded by straight lines)."
+msgstr "Muunnetaan valittu (kuva)objekti monikulmioksi (murtoviivan rajaamaksi suljetuksi objektiksi)."
+
#. oQWMw
#: sd/uiconfig/simpress/ui/annotationmenu.ui:13
msgctxt "annotationmenu|reply"
@@ -4398,97 +4605,145 @@ msgid "_Direction:"
msgstr "Suunta:"
#. 4Q3Gy
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:89
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:113
msgctxt "customanimationeffecttab|smooth_start"
msgid "Accelerated start"
msgstr "Kiihtyvä alku"
+#. cNVdS
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:121
+msgctxt "customanimationeffecttab|extended_tip|smooth_start"
+msgid "Enable this option to assign a gradually increasing speed to the start of the effect."
+msgstr "Vaihtoehdon käyttö määrää kiihtyvän aloituksen."
+
#. C7CRJ
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:104
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:133
msgctxt "customanimationeffecttab|smooth_end"
msgid "Decelerated end"
msgstr "Hidastuva loppu"
+#. 9yomv
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:141
+msgctxt "customanimationeffecttab|extended_tip|smooth_end"
+msgid "Enable this option to assign a gradually decreasing speed to the end of the effect."
+msgstr "Vaihtoehdon käyttö määrää hidastuvan lopetuksen."
+
#. n6GjH
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:132
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:166
msgctxt "customanimationeffecttab|label3"
msgid "Settings"
msgstr "Asetukset"
#. 2tdGG
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:169
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:203
msgctxt "customanimationeffecttab|aeffect_label"
msgid "A_fter animation:"
msgstr "Animaation jälkeen:"
#. uMyFB
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:183
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:217
msgctxt "customanimationeffecttab|sound_label"
msgid "_Sound:"
msgstr "Ääni:"
#. zeE4a
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:197
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:231
msgctxt "customanimationeffecttab|text_animation_label"
msgid "_Text animation:"
msgstr "Tekstianimaatio:"
#. DUrNg
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:211
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:245
msgctxt "customanimationeffecttab|dim_color_label"
msgid "Di_m color:"
msgstr "Himmennysväri:"
-#. fA4rX
+#. KrjQe
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:268
+msgctxt "customanimationeffecttab|extended_tip|sound_list"
+msgid "Select a sound from the Gallery or select one of the special entries."
+msgstr ""
+
+#. XcRTu
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:287
+msgctxt "customanimationeffecttab|extended_tip|sound_preview"
+msgid "Plays the selected sound file."
+msgstr "Toistetaan valittu äänitiedosto."
+
+#. EwZ9F
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:318
+msgctxt "customanimationeffecttab|extended_tip|dim_color_list"
+msgid "Select the dim color."
+msgstr ""
+
+#. fA4rX
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:336
msgctxt "customanimationeffecttab|text_delay_label"
msgid "delay between characters"
msgstr "viive merkkien välillä"
+#. DQV2T
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:356
+msgctxt "customanimationeffecttab|extended_tip|text_delay"
+msgid "Specifies the percentage of delay between animations of words or letters."
+msgstr ""
+
#. mimJe
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:326
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:380
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Don't dim"
msgstr "Älä himmennä"
#. Aj8J7
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:327
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:381
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Dim with color"
msgstr "Himmennä värillä"
#. RiGMP
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:328
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:382
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Hide after animation"
msgstr "Piilota animaation jälkeen"
#. ephP9
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:329
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:383
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Hide on next animation"
msgstr "Piilota seuraavassa animaatiossa"
+#. PZg2D
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:387
+msgctxt "customanimationeffecttab|extended_tip|aeffect_list"
+msgid "Select a color to be shown after the animation ends, or select another after-effect from the list"
+msgstr ""
+
#. 7k6dN
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:344
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:403
msgctxt "customanimationeffecttab|text_animation_list"
msgid "All at once"
msgstr "Kaikki kerralla"
#. qcpqM
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:345
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:404
msgctxt "customanimationeffecttab|text_animation_list"
msgid "Word by word"
msgstr "Sana kerrallaan"
#. DUoYo
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:346
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:405
msgctxt "customanimationeffecttab|text_animation_list"
msgid "Letter by letter"
msgstr "Kirjain kerrallaan"
+#. CFDW6
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:409
+msgctxt "customanimationeffecttab|extended_tip|text_animation_list"
+msgid "Select the animation mode for the text of the current shape"
+msgstr ""
+
#. vF4Wp
-#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:362
+#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:426
msgctxt "customanimationeffecttab|label4"
msgid "Enhancement"
msgstr "Tehoste"
@@ -4617,228 +4872,343 @@ msgctxt "customanimationproperties|textanim"
msgid "Text Animation"
msgstr "Tekstianimaatio"
+#. FcztB
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:132
+#, fuzzy
+msgctxt "customanimationspanel|extended_tip|custom_animation_list"
+msgid "The animation list displays all animations for the current slide."
+msgstr "Animaatioluettelossa on kaikki käsiteltävän dian mahdolliset animaatiot. "
+
#. KFRTW
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:158
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:163
msgctxt "customanimationspanel|STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "Valitse ensin diaelementti ja napsauta sitten 'Lisää...' lisätäksesi animaatiotehosteen."
#. nRqGR
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:190
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:195
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr "Lisää tehoste"
+#. CskWF
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:199
+msgctxt "customanimationspanel|extended_tip|add_effect"
+msgid "Adds another animation effect for the selected object on the slide."
+msgstr ""
+
#. vitMM
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:204
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:214
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr "Poista tehoste"
-#. 3wHRp
+#. pvCFG
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:218
+msgctxt "customanimationspanel|extended_tip|remove_effect"
+msgid "Removes the selected animation effects from the animation list."
+msgstr "Poistetaan valittu animaatiotehoste animaatioluettelosta."
+
+#. 3wHRp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:233
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
msgstr "Siirrä ylemmäs"
+#. buR2G
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:237
+msgctxt "customanimationspanel|extended_tip|move_up"
+msgid "Click one of the buttons to move the selected animation effect up or down in the list."
+msgstr "Napsautetaan yhtä painikkeista valitun animaatiotehosteen siirtämiseksi luettelossa ylemmäksi tai alemmaksi."
+
#. jEksa
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:232
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:252
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
msgstr "Siirrä alemmas"
+#. x82hp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:256
+msgctxt "customanimationspanel|extended_tip|move_down"
+msgid "Click one of the buttons to move the selected animation effect up or down in the list."
+msgstr "Napsautetaan yhtä painikkeista valitun animaatiotehosteen siirtämiseksi luettelossa ylemmäksi tai alemmaksi."
+
#. wCc89
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:259
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:284
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr "Luokka:"
#. EHRAp
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:273
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:298
msgctxt "customanimationspanel|effectlabel"
msgid "Effect:"
msgstr "Tehoste:"
#. jQcZZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:288
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:313
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr "Sisääntulo"
#. 2qTvP
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:289
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:314
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr "Painotus"
#. TZeh8
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:290
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:315
msgctxt "customanimationspanel|categorylb"
msgid "Exit"
msgstr "Poistuminen"
#. N8Xvu
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:291
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:316
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr "Liikeradat"
#. qDYCQ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:292
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:317
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr "Sekalaiset tehosteet"
+#. ozsMp
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:321
+msgctxt "customanimationspanel|extended_tip|categorylb"
+msgid "Select an animation effect category."
+msgstr ""
+
+#. MEJrn
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:365
+msgctxt "customanimationspanel|extended_tip|effect_list"
+msgid "Select an animation effect."
+msgstr ""
+
#. GDYfC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:366
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:401
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
msgstr "Aloita:"
#. 8AUq9
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:380
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:415
msgctxt "customanimationspanel|effect_property"
msgid "_Direction:"
msgstr "Suunta:"
#. QWndb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:394
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:429
msgctxt "customanimationspanel|effect_duration"
msgid "D_uration:"
msgstr "Kesto:"
#. DhPiJ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:409
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:444
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr "Napsautettaessa"
#. FNFGr
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:410
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:445
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr "Edellisen kanssa"
#. dCfj4
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:411
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:446
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr "Edellisen jälkeen"
+#. iboET
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:450
+msgctxt "customanimationspanel|extended_tip|start_effect_list"
+msgid "Displays when the selected animation effect should be started."
+msgstr ""
+
#. mMYic
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:439
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:479
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr "Asetukset"
+#. PE6vL
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:484
+msgctxt "customanimationspanel|extended_tip|more_properties"
+msgid "Specifies additional properties for the selected element in the Custom Animations pane."
+msgstr "Määritetään valitun osatekijän lisäominaisuudet Muokattu animaatio -paneelissa."
+
+#. Ewipq
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:502
+msgctxt "customanimationspanel|extended_tip|anim_duration"
+msgid "Specifies the duration of the selected animation effect."
+msgstr ""
+
#. 2cGAb
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:466
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:516
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
msgstr "Viive:"
+#. g6bR3
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:534
+msgctxt "customanimationspanel|extended_tip|delay_value"
+msgid "The animation starts delayed by this amount of time."
+msgstr ""
+
#. FgkKZ
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:503
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:558
msgctxt "customanimationspanel|effect_label"
msgid "Effect"
msgstr "Tehoste"
#. J2bC5
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:541
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:596
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Automaattinen esikatselu"
+#. GufhE
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:605
+msgctxt "customanimationspanel|extended_tip|auto_preview"
+msgid "Select to preview new or edited effects on the slide while you assign them."
+msgstr "Merkinnällä määrätään, että uusi tai muokattu tehoste esikatsellaan dialla sitä määritettäessä."
+
#. KP8UC
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:557
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:617
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr "Toista"
#. Bn67v
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:561
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:621
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr "Tehosteen esikatselu"
+#. sUTTG
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:628
+msgctxt "customanimationspanel|extended_tip|play"
+msgid "Plays the selected animation effect in the preview."
+msgstr "Esikatsellaan valittu animaatiotehoste."
+
#. LBEzG
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:590
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:655
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr "Animaatiopakka"
#. bUvjt
-#: sd/uiconfig/simpress/ui/customanimationspanel.ui:603
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:668
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr "Animaatioluettelo"
+#. F7AZL
+#: sd/uiconfig/simpress/ui/customanimationspanel.ui:687
+msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel"
+msgid "Assigns effects to selected objects."
+msgstr ""
+
#. rYtTX
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:29
msgctxt "customanimationtexttab|group_text_label"
msgid "_Group text:"
msgstr "Ryhmäteksti:"
+#. 2eY3z
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:49
+msgctxt "customanimationtexttab|extended_tip|auto_after_value"
+msgid "Enter an additional delay in seconds to animate subsequent paragraphs."
+msgstr ""
+
#. ujWxH
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:55
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:60
msgctxt "customanimationtexttab|auto_after"
msgid "_Automatically after:"
msgstr "Automaattisesti jälkeen:"
+#. DLeHn
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:69
+msgctxt "customanimationtexttab|extended_tip|auto_after"
+msgid "If \"Group text - By 1st level paragraphs\" is selected, the paragraphs are animated one after the other."
+msgstr ""
+
#. KEqJZ
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:73
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:83
msgctxt "customanimationtexttab|group_text_list"
msgid "As one object"
msgstr "Yhtenä objektina"
#. BAUhG
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:74
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:84
msgctxt "customanimationtexttab|group_text_list"
msgid "All paragraphs at once"
msgstr "Kaikki kappaleet kerralla"
#. A64BF
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:75
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:85
msgctxt "customanimationtexttab|group_text_list"
msgid "By 1st level paragraphs"
msgstr "1. tason kappaleiden mukaan"
#. ggJkd
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:76
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:86
msgctxt "customanimationtexttab|group_text_list"
msgid "By 2nd level paragraphs"
msgstr "2. tason kappaleiden mukaan"
#. 6gKbP
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:77
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:87
msgctxt "customanimationtexttab|group_text_list"
msgid "By 3rd level paragraphs"
msgstr "3. tason kappaleiden mukaan"
#. GNWBw
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:78
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:88
msgctxt "customanimationtexttab|group_text_list"
msgid "By 4th level paragraphs"
msgstr "4. tason kappaleiden mukaan"
#. AjqaJ
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:79
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:89
msgctxt "customanimationtexttab|group_text_list"
msgid "By 5th level paragraphs"
msgstr "5. tason kappaleiden mukaan"
+#. HDHBz
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:93
+msgctxt "customanimationtexttab|extended_tip|group_text_list"
+msgid "Specifies how multiple paragraphs are animated"
+msgstr ""
+
#. LDD3y
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:96
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:111
msgctxt "customanimationtexttab|animate_shape"
msgid "Animate attached _shape"
msgstr "Animoi liitetty muoto"
+#. T6S58
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:120
+msgctxt "customanimationtexttab|extended_tip|animate_shape"
+msgid "Deselect this box to animate only the text, not the shape."
+msgstr ""
+
#. ir4kZ
-#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:112
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:132
msgctxt "customanimationtexttab|reverse_order"
msgid "_In reverse order"
msgstr "Käänteisessä järjestyksessä"
+#. LK7yC
+#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:141
+msgctxt "customanimationtexttab|extended_tip|reverse_order"
+msgid "Animates the paragraphs in reverse order."
+msgstr ""
+
#. QGBar
#: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:47
msgctxt "customanimationtimingtab|start_label"
@@ -4929,18 +5299,72 @@ msgctxt "customslideshows|startshow"
msgid "_Start"
msgstr "_Aloita"
+#. ccH7R
+#: sd/uiconfig/simpress/ui/customslideshows.ui:55
+msgctxt "customslideshows|extended_tip|startshow"
+msgid "Runs the slide show. Ensure that Use Custom Slide Show is selected if you want to run a custom presentation."
+msgstr "Pidetään diaesitys. Käytä mukautettua esitystä -ruutu pitää olla valittuna, mikäli näytetään mukautettu esitys."
+
+#. jiFoQ
+#: sd/uiconfig/simpress/ui/customslideshows.ui:75
+msgctxt "customslideshows|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. BvVBK
+#: sd/uiconfig/simpress/ui/customslideshows.ui:139
+msgctxt "customslideshows|extended_tip|customshowlist"
+msgid "Lists the custom slide shows that are available."
+msgstr "Luettelossa on saatavilla olevat mukautetut esitykset."
+
#. FFUWq
-#: sd/uiconfig/simpress/ui/customslideshows.ui:138
+#: sd/uiconfig/simpress/ui/customslideshows.ui:153
msgctxt "customslideshows|usecustomshows"
msgid "_Use custom slide show"
msgstr "K_äytä mukautettua esitystä"
+#. zdYhK
+#: sd/uiconfig/simpress/ui/customslideshows.ui:162
+msgctxt "customslideshows|extended_tip|usecustomshows"
+msgid "Runs the custom slide show you selected when you click Start. Otherwise, the entire presentation is shown."
+msgstr "Merkinnällä määrätään, että mukautettu esitys pidetään, kun napsautetaan Aloita. Muutoin pidetään esitys kokonaisuudessaan."
+
+#. 3qYYK
+#: sd/uiconfig/simpress/ui/customslideshows.ui:198
+msgctxt "customslideshows|extended_tip|new"
+msgid "Add, remove or reorder slides as well as change the name of the selected custom slide show."
+msgstr "Toiminnossa lisätään, poistetaan tai järjestellään dioja sekä muutetaan valitun mukautetun diaesityksen nimeä."
+
+#. C9B9D
+#: sd/uiconfig/simpress/ui/customslideshows.ui:218
+msgctxt "customslideshows|extended_tip|edit"
+msgid "Add, remove or reorder slides as well as change the name of the selected custom slide show."
+msgstr "Toiminnossa lisätään, poistetaan tai järjestellään dioja sekä muutetaan valitun mukautetun diaesityksen nimeä."
+
#. yaQvx
-#: sd/uiconfig/simpress/ui/customslideshows.ui:200
+#: sd/uiconfig/simpress/ui/customslideshows.ui:230
msgctxt "customslideshows|copy"
msgid "Cop_y"
msgstr "Ko_pioi"
+#. Vv8GG
+#: sd/uiconfig/simpress/ui/customslideshows.ui:237
+msgctxt "customslideshows|extended_tip|copy"
+msgid "Creates a copy of the selected custom slide show. You can modify the name of the show by clicking Edit."
+msgstr "Luodaan mukautetun diaesityksen kopio. Esityksen nimeä voi muuttaa Muokkaa-painikkeesta."
+
+#. Vr7vj
+#: sd/uiconfig/simpress/ui/customslideshows.ui:257
+msgctxt "customslideshows|extended_tip|delete"
+msgid "Deletes the selected element or elements without requiring confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä ilman vahvistuskyselyä."
+
+#. 8Cf3C
+#: sd/uiconfig/simpress/ui/customslideshows.ui:293
+msgctxt "customslideshows|extended_tip|CustomSlideShows"
+msgid "Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want."
+msgstr "Määritetään mukautettu esitys, joka käyttää käsiteltävän esityksen dioja. Diat voidaan noukkia yleisön tarpeita vastaaviksi. Mukautettuja esityksiä voi luoda mieleisensä määrän."
+
#. KmamJ
#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:24
msgctxt "definecustomslideshow|DefineCustomSlideShow"
@@ -4948,35 +5372,71 @@ msgid "Define Custom Slide Show"
msgstr "Määritä mukautettu esitys"
#. mhsyF
-#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:112
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:109
msgctxt "definecustomslideshow|label1"
msgid "_Name:"
msgstr "_Nimi:"
+#. sCCvq
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:127
+msgctxt "definecustomslideshow|extended_tip|customname"
+msgid "Displays the name of the custom slide show. If you want, you can enter a new name."
+msgstr "Kentässä näkyy mukautetun esityksen nimi. Tarvittaessa voidaan antaa uusi nimi."
+
#. HB63C
-#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:155
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:157
msgctxt "definecustomslideshow|label2"
msgid "_Existing slides:"
msgstr "Olemassa olevat diat:"
#. BhVRw
-#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:169
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:171
msgctxt "definecustomslideshow|label3"
msgid "_Selected slides:"
msgstr "Valitut diat:"
+#. epikC
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:215
+msgctxt "definecustomslideshow|extended_tip|pages"
+msgid "Lists all of the slides in the order in which they appear in the current document."
+msgstr "Luettelossa on kaikki diat käsiteltävässä asiakirjassa esiintyvässä järjestyksessään."
+
+#. ybvk2
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:260
+msgctxt "definecustomslideshow|extended_tip|custompages"
+msgid "Lists all of the slides in the custom slide show. If you want, you can change the order of the list by dragging the slides up or down."
+msgstr "Luettelossa on kaikki mukautetun esityksen diat. Luettelojärjestystä voi tarvittaessa muuttaa vetämällä dioja ylös tai alas."
+
#. Xfj8D
-#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:268
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:280
msgctxt "definecustomslideshow|add"
msgid ">>"
msgstr ">>"
+#. Z6yNA
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:286
+msgctxt "definecustomslideshow|extended_tip|add"
+msgid "Adds an existing slide to the bottom of the Selected slides list. You need to select a slide in the Existing slides list before you can use this button."
+msgstr "Lisätään dia Valitut diat -luettelon loppuun. Dia tulee valita Alkuperäiset diat -luettelosta ennen painikkeen käyttöä."
+
#. nrzGP
-#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:281
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:298
msgctxt "definecustomslideshow|remove"
msgid "<<"
msgstr "<<"
+#. TDYwh
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:304
+msgctxt "definecustomslideshow|extended_tip|remove"
+msgid "Removes a slide from the Selected slides list. You need to choose a slide in the Selected slides list before you can use this button."
+msgstr "Poistetaan dia Valitut diat -luettelosta. Dia pitää valita Valitut diat -luettelosta ennen painikkeen käyttöä."
+
+#. SdCjm
+#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:349
+msgctxt "definecustomslideshow|extended_tip|DefineCustomSlideShow"
+msgid "Creates a custom slide show."
+msgstr "Luodaan mukautettu diaesitys."
+
#. PsSmN
#: sd/uiconfig/simpress/ui/displaywindow.ui:60
msgctxt "displaywindow|STR_DISPLAYMODE_EDITMODES"
@@ -4996,35 +5456,65 @@ msgid "Edit Field"
msgstr "Muokkaa kenttää"
#. pRhTV
-#: sd/uiconfig/simpress/ui/dlgfield.ui:106
+#: sd/uiconfig/simpress/ui/dlgfield.ui:103
msgctxt "dlgfield|fixedRB"
msgid "_Fixed"
msgstr "Kiinteä"
+#. 6zpWe
+#: sd/uiconfig/simpress/ui/dlgfield.ui:113
+msgctxt "dlgfield|extended_tip|fixedRB"
+msgid "Displays the content of the field when the field was inserted."
+msgstr "Kentän sisältö esitetään lisäämisajankohdan tiedoin."
+
#. VKhAG
-#: sd/uiconfig/simpress/ui/dlgfield.ui:123
+#: sd/uiconfig/simpress/ui/dlgfield.ui:125
msgctxt "dlgfield|varRB"
msgid "_Variable"
msgstr "Vaihtuva"
+#. 3aENC
+#: sd/uiconfig/simpress/ui/dlgfield.ui:136
+msgctxt "dlgfield|extended_tip|varRB"
+msgid "Displays the current value of the field."
+msgstr "Kentän sisältö esitetään päivittyvin tiedoin."
+
#. RAGYv
-#: sd/uiconfig/simpress/ui/dlgfield.ui:147
+#: sd/uiconfig/simpress/ui/dlgfield.ui:154
msgctxt "dlgfield|label1"
msgid "Field Type"
msgstr "Kenttätyyppi"
#. yAfjz
-#: sd/uiconfig/simpress/ui/dlgfield.ui:169
+#: sd/uiconfig/simpress/ui/dlgfield.ui:176
msgctxt "dlgfield|label2"
msgid "_Language:"
msgstr "Kieli:"
+#. yPQhg
+#: sd/uiconfig/simpress/ui/dlgfield.ui:199
+msgctxt "dlgfield|extended_tip|languageLB"
+msgid "Select the language for the field."
+msgstr "Valitaan kentän kieli."
+
+#. WTcEe
+#: sd/uiconfig/simpress/ui/dlgfield.ui:234
+msgctxt "dlgfield|extended_tip|formatLB"
+msgid "Select a display format for the field."
+msgstr "Valitaan kentän tietojen esitystapa."
+
#. fmuQT
-#: sd/uiconfig/simpress/ui/dlgfield.ui:228
+#: sd/uiconfig/simpress/ui/dlgfield.ui:245
msgctxt "dlgfield|label3"
msgid "F_ormat"
msgstr "Muotoilu"
+#. 4HTWi
+#: sd/uiconfig/simpress/ui/dlgfield.ui:278
+msgctxt "dlgfield|extended_tip|EditFieldsDialog"
+msgid "Edits the properties of an inserted field."
+msgstr "Muokataan lisätyn kentän ominaisuuksia."
+
#. daSn5
#: sd/uiconfig/simpress/ui/dockinganimation.ui:93
msgctxt "dockinganimation|loopcount|tooltip_text"
@@ -5037,168 +5527,270 @@ msgctxt "dockinganimation|loopcount"
msgid "Max."
msgstr "Maks."
+#. iNGHA
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:117
+msgctxt "dockinganimation|extended_tip|loopcount"
+msgid "Sets the number of times that the animation is played."
+msgstr "Asetetaan animaation toistokerrat."
+
#. SqcwJ
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:125
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:130
msgctxt "dockinganimation|duration|tooltip_text"
msgid "Duration"
msgstr "Kesto"
+#. oc4oa
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:135
+msgctxt "dockinganimation|extended_tip|duration"
+msgid "Enter the number of seconds to display the current image. This option is only available if you select the Bitmap object option in the Animation group field."
+msgstr "Annetaan käsiteltävän kuvan näyttämisen kesto sekunneissa. Tämä vaihtoehto on käytettävissä vain, kun on valittu Bittikarttaobjekti-asetus Animaatioryhmä-alueelta."
+
#. B5sxX
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:138
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:148
msgctxt "dockinganimation|numbitmap|tooltip_text"
msgid "Image Number"
msgstr "Kuvan numero"
+#. Sv3Uq
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:154
+msgctxt "dockinganimation|extended_tip|numbitmap"
+msgid "Indicates the position of the current image in the animation sequence."
+msgstr "Ilmaistaan käsiteltävän kuvan sijainti animaatiosarjassa."
+
#. ACaXa
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:159
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:174
msgctxt "dockinganimation|first|tooltip_text"
msgid "First Image"
msgstr "Ensimmäinen kuva"
+#. EeVE4
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:178
+msgctxt "dockinganimation|extended_tip|first"
+msgid "Jumps to the first image in the animation sequence."
+msgstr "Siirrytään animaatiosarjan ensimmäiseen kuvaan."
+
#. UBvzL
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:172
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:192
msgctxt "dockinganimation|prev|tooltip_text"
msgid "Backwards"
msgstr "Taaksepäin"
+#. T3DHK
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:196
+msgctxt "dockinganimation|extended_tip|prev"
+msgid "Plays the animation backwards."
+msgstr "Toistetaan animaatio takaperin."
+
#. TcVGb
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:185
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:210
msgctxt "dockinganimation|stop|tooltip_text"
msgid "Stop"
msgstr "Pysäytä"
+#. cwD9G
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:214
+msgctxt "dockinganimation|extended_tip|stop"
+msgid "Stops playing the animation."
+msgstr "Pysäytetään animaation toisto."
+
#. BSGMb
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:198
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:228
msgctxt "dockinganimation|next|tooltip_text"
msgid "Play"
msgstr "Toista"
+#. ETZMZ
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:232
+msgctxt "dockinganimation|extended_tip|next"
+msgid "Plays the animation."
+msgstr "Toistetaan animaatio."
+
#. QBaGj
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:211
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:246
msgctxt "dockinganimation|last|tooltip_text"
msgid "Last Image"
msgstr "Viimeinen kuva"
+#. bX8rg
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:250
+msgctxt "dockinganimation|extended_tip|last"
+msgid "Jumps to the last image in the animation sequence."
+msgstr "Siirrytään animaatiosarjan viimeiseen kuvaan."
+
#. 963iG
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:268
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:308
msgctxt "dockinganimation|group"
msgid "Group object"
msgstr "Objektiryhmä"
+#. 96C42
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:318
+msgctxt "dockinganimation|extended_tip|group"
+msgid "Assembles images into a single object so that they can be moved as a group. You can still edit individual objects by double-clicking the group in the slide."
+msgstr "Kuvat kootaan yhdeksi objektiksi, niin että ne voidaan siirtää ryhmänä. Yksittäiset objektit ovat yhä muokattavissa kaksoisnapsauttamalla ryhmää dialla."
+
#. Cn8go
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:284
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:329
msgctxt "dockinganimation|bitmap"
msgid "Bitmap object"
msgstr "Bittikarttaobjekti"
+#. WszFg
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:339
+msgctxt "dockinganimation|extended_tip|bitmap"
+msgid "Combines images into a single image."
+msgstr "Kuvat yhdistetään yhdeksi kuvaksi."
+
#. TjdBX
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:306
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:356
msgctxt "dockinganimation|alignmentft"
msgid "Alignment"
msgstr "Tasaus"
#. Njtua
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:319
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:369
msgctxt "dockinganimation|alignment"
msgid "Top Left"
msgstr "Ylävasen"
#. sPkEs
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:320
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:370
msgctxt "dockinganimation|alignment"
msgid "Left"
msgstr "Vasen"
#. ew2UB
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:321
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:371
msgctxt "dockinganimation|alignment"
msgid "Bottom Left"
msgstr "Alavasen"
#. wYgBb
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:322
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:372
msgctxt "dockinganimation|alignment"
msgid "Top"
msgstr "Yläreuna"
#. 7NwKN
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:323
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:373
msgctxt "dockinganimation|alignment"
msgid "Centered"
msgstr "Keskitetty"
#. fdbVN
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:324
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:374
msgctxt "dockinganimation|alignment"
msgid "Bottom"
msgstr "Alareuna"
#. Lk6BJ
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:325
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:375
msgctxt "dockinganimation|alignment"
msgid "Top Right"
msgstr "Yläoikea"
#. GTwHD
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:326
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:376
msgctxt "dockinganimation|alignment"
msgid "Right"
msgstr "Oikea"
#. f6c2X
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:327
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:377
msgctxt "dockinganimation|alignment"
msgid "Bottom Right"
msgstr "Alaoikea"
-#. ACGAo
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:349
+#. xSSDW
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:381
+msgctxt "dockinganimation|extended_tip|alignment"
+msgid "Aligns the images in your animation."
+msgstr "Kohdistetaan kuvat animaatiossa."
+
+#. EFWzn
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:404
msgctxt "dockinganimation|label1"
-msgid "Animation group"
-msgstr "Animaatioryhmä"
+msgid "Animation Group"
+msgstr ""
#. Bu3De
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:391
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:446
msgctxt "dockinganimation|getone|tooltip_text"
msgid "Apply Object"
msgstr "Liitä objekti"
+#. 9tgAf
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:450
+msgctxt "dockinganimation|extended_tip|getone"
+msgid "Adds selected object(s) as a single image."
+msgstr "Lisätään valitut objektit yhtenä kuvana."
+
#. f6tL5
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:404
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:464
msgctxt "dockinganimation|getall|tooltip_text"
msgid "Apply Objects Individually"
msgstr "Objektit yksittäin"
+#. ECmGc
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:468
+msgctxt "dockinganimation|extended_tip|getall"
+msgid "Adds an image for each selected object."
+msgstr "Lisätään kutakin valittua objektia kohti yksi kuva."
+
#. VGN4f
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:429
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:494
msgctxt "dockinganimation|label3"
msgid "Number"
msgstr "Luku"
#. 8kUXo
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:467
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:532
msgctxt "dockinganimation|delone|tooltip_text"
msgid "Delete Current Image"
msgstr "Poista nykyinen kuva"
+#. 4JHCu
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:536
+msgctxt "dockinganimation|extended_tip|delone"
+msgid "Deletes current image from the animation sequence."
+msgstr "Poistetaan nykyinen kuva animaatiosarjasta."
+
#. riYDF
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:480
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:550
msgctxt "dockinganimation|delall|tooltip_text"
msgid "Delete All Images"
msgstr "Poista kaikki kuvat"
+#. aCMF2
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:554
+msgctxt "dockinganimation|extended_tip|delall"
+msgid "Deletes all of the images in the animation."
+msgstr "Poistetaan kaikki animaation kuvat."
+
#. QGvVC
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:502
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:577
msgctxt "dockinganimation|label2"
msgid "Image"
msgstr "Kuva"
#. WYZGD
-#: sd/uiconfig/simpress/ui/dockinganimation.ui:543
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:618
msgctxt "dockinganimation|create"
msgid "Create"
msgstr "Luo"
+#. bDPPc
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:626
+msgctxt "dockinganimation|extended_tip|create"
+msgid "Inserts the animation into the current slide."
+msgstr "Lisätään animaatio käsiteltävään diaan."
+
+#. RbsTq
+#: sd/uiconfig/simpress/ui/dockinganimation.ui:646
+msgctxt "dockinganimation|extended_tip|DockingAnimation"
+msgid "Creates a custom animation on the current slide."
+msgstr ""
+
#. VYjBF
#: sd/uiconfig/simpress/ui/effectmenu.ui:12
msgctxt "effectmenu|onclick"
@@ -5284,103 +5876,193 @@ msgid "Header and Footer"
msgstr "Ylätunniste ja alatunniste"
#. HmAnf
-#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:27
+#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:24
msgctxt "headerfooterdialog|apply_all"
msgid "Appl_y to All"
msgstr "Käytä kaikkiin"
+#. X6wby
+#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:33
+msgctxt "headerfooterdialog|extended_tip|apply_all"
+msgid "Applies the settings to all the slides in your presentation, including the corresponding master slides."
+msgstr ""
+
+#. eaqgU
+#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:53
+msgctxt "headerfooterdialog|extended_tip|apply"
+msgid "Applies the current settings to the selected slides."
+msgstr "Sovelletaan käsillä olevia asetuksia valittuihin dioihin."
+
#. WcG5C
-#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:139
+#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:146
msgctxt "headerfooterdialog|slides"
msgid "Slides"
msgstr "Diat"
#. 4dtgk
-#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:185
+#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:192
msgctxt "headerfooterdialog|notes"
msgid "Notes and Handouts"
msgstr "Muistiinpanot ja monisteet"
+#. jAdBZ
+#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:219
+msgctxt "headerfooterdialog|extended_tip|HeaderFooterDialog"
+msgid "Adds or changes text in placeholders at the top and the bottom of slides and master slides."
+msgstr ""
+
#. BgFsS
#: sd/uiconfig/simpress/ui/headerfootertab.ui:39
msgctxt "headerfootertab|header_cb"
msgid "Heade_r"
msgstr "Ylätunniste"
+#. 7qH6R
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:49
+msgctxt "headerfootertab|extended_tip|header_cb"
+msgid "Adds the text that you enter in the Header text box to the top of the slide."
+msgstr "Merkittynä vaikuttaa, että Ylätunnisteteksti-kenttään kirjoitettava teksti lisätään dian alaosaan."
+
#. Qktzq
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:69
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:74
msgctxt "headerfootertab|header_label"
msgid "Header _text:"
msgstr "Ylätunnisteteksti:"
+#. uNdGZ
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:92
+msgctxt "headerfootertab|extended_tip|header_text"
+msgid "Adds the text that you enter to the top of the slide."
+msgstr "Kirjoitetaan dian yläosaan tuleva teksti."
+
#. ruQCk
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:106
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:116
msgctxt "headerfootertab|datetime_cb"
msgid "_Date and time"
msgstr "Päivämäärä ja aika"
+#. tUcmE
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:125
+msgctxt "headerfootertab|extended_tip|datetime_cb"
+msgid "Adds the date and time to the slide."
+msgstr "Dialle lisätään päivämäärä ja kellonaika."
+
#. LDq83
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:139
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:154
msgctxt "headerfootertab|rb_fixed"
msgid "Fi_xed"
msgstr "Kiinteä"
+#. RrPiS
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:167
+msgctxt "headerfootertab|extended_tip|rb_fixed"
+msgid "Displays the date and time that you enter in the text box."
+msgstr "Näytetään tekstikenttään kirjoitettavat päivämäärä ja kellonaika."
+
+#. Nycig
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:187
+msgctxt "headerfootertab|extended_tip|datetime_value"
+msgid "Displays the date and time that you enter in the text box."
+msgstr "Näytetään tekstikenttään kirjoitettavat päivämäärä ja kellonaika."
+
#. Zch2Q
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:186
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:211
msgctxt "headerfootertab|rb_auto"
msgid "_Variable"
msgstr "Vaihtuva"
+#. CA8yX
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:224
+msgctxt "headerfootertab|extended_tip|rb_auto"
+msgid "Displays the date and time that the slide was created. Select a date format from the list."
+msgstr "Merkinnällä määrätään, että kenttään tulee dian luomispäivämäärä ja kellonaika. Päivittyvän päivämäärän muoto valitaan luettelosta."
+
+#. fXSJq
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:249
+msgctxt "headerfootertab|extended_tip|language_list"
+msgid "Select the language for the date and time format."
+msgstr "Valitaan päivämäärän ja kellonajan kieli."
+
#. iDwM5
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:227
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:262
msgctxt "headerfootertab|language_label"
msgid "_Language:"
msgstr "Kieli:"
+#. BCGcC
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:278
+msgctxt "headerfootertab|extended_tip|datetime_format_list"
+msgid "Displays the date and time that the slide was created. Select a date format from the list."
+msgstr "Merkinnällä määrätään, että kenttään tulee dian luomispäivämäärä ja kellonaika. Päivittyvän päivämäärän muoto valitaan luettelosta."
+
#. mDMwW
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:251
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:291
msgctxt "headerfootertab|language_label1"
msgid "_Format:"
msgstr "Muoto:"
#. htD4f
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:299
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:339
msgctxt "headerfootertab|footer_cb"
msgid "_Footer"
msgstr "Alatunniste"
+#. 8m2Zk
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:348
+msgctxt "headerfootertab|extended_tip|footer_cb"
+msgid "Adds the text that you enter in the Footer text box to the bottom of the slide."
+msgstr "Merkittynä vaikuttaa, että Alatunnisteteksti-kenttään kirjoitettava teksti lisätään dian alaosaan."
+
#. oA3mG
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:328
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:373
msgctxt "headerfootertab|footer_label"
msgid "F_ooter text:"
msgstr "Alatunnisteteksti:"
+#. g74zG
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:391
+msgctxt "headerfootertab|extended_tip|footer_text"
+msgid "Adds the text that you enter to the bottom of the slide."
+msgstr "Kirjoitetaan dian alaosaan tuleva teksti."
+
#. UERZK
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:372
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:422
msgctxt "headerfootertab|slide_number"
msgid "_Slide number"
msgstr "Dian numero"
+#. ijGuK
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:431
+msgctxt "headerfootertab|extended_tip|slide_number"
+msgid "Adds the slide number or the page number."
+msgstr "Lisätään dia- tai sivunumero."
+
#. ZmRZp
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:394
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:449
msgctxt "headerfootertab|include_label"
msgid "Include on Slide"
msgstr "Sisällytä diaan"
#. QNb8r
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:414
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:469
msgctxt "headerfootertab|not_on_title"
msgid "Do _not show on the first slide"
msgstr "Älä näytä ensimmäisessä diassa"
+#. TmZpE
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:478
+msgctxt "headerfootertab|extended_tip|not_on_title"
+msgid "Does not display your specified information on the first slide of your presentation."
+msgstr "Tässä määritellyt tiedot eivät näy esityksen ensimmäisellä dialla."
+
#. jjanG
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:434
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:494
msgctxt "headerfootertab|replacement_a"
msgid "_Page Number"
msgstr "Sivunumero"
#. x4Ffp
-#: sd/uiconfig/simpress/ui/headerfootertab.ui:448
+#: sd/uiconfig/simpress/ui/headerfootertab.ui:508
msgctxt "headerfootertab|replacement_b"
msgid "Include on page"
msgstr "Sisällytä sivulle"
@@ -5523,36 +6205,102 @@ msgctxt "interactionpage|label2"
msgid "Action at mouse click:"
msgstr "Toiminto napsautettaessa:"
+#. wf6o2
+#: sd/uiconfig/simpress/ui/interactionpage.ui:82
+msgctxt "interactionpage|extended_tip|listbox"
+msgid "Specifies the action that will run when you click the selected object during a slide show."
+msgstr "Määritetään toiminto, joka suoritetaan kun valittua objektia napsautetaan diaesityksen aikana."
+
#. ECoVa
-#: sd/uiconfig/simpress/ui/interactionpage.ui:90
+#: sd/uiconfig/simpress/ui/interactionpage.ui:95
msgctxt "interactionpage|fttree"
msgid "Target:"
msgstr "Kohde:"
+#. tFofb
+#: sd/uiconfig/simpress/ui/interactionpage.ui:154
+msgctxt "interactionpage|extended_tip|tree"
+msgid "Lists the slides and the objects that you can target."
+msgstr "Luettelossa on diat ja objektit, jotka voivat olla kohteena."
+
+#. f4AGD
+#: sd/uiconfig/simpress/ui/interactionpage.ui:207
+msgctxt "interactionpage|extended_tip|treedoc"
+msgid "Opens and displays a file during a slide show. If you select a %PRODUCTNAME file as the target document, you can also specify the page that will open."
+msgstr "Avataan ja esitetään tiedosto dianäytöksen aikana. Jos kohdeasiakirjaksi valitaan %PRODUCTNAME-tiedosto, myös avattava sivu on määrättävissä."
+
#. MZvua
-#: sd/uiconfig/simpress/ui/interactionpage.ui:261
+#: sd/uiconfig/simpress/ui/interactionpage.ui:274
msgctxt "interactionpage|label1"
msgid "Interaction"
msgstr "Toiminto"
#. iDK6N
-#: sd/uiconfig/simpress/ui/interactionpage.ui:301
+#: sd/uiconfig/simpress/ui/interactionpage.ui:314
msgctxt "interactionpage|browse"
msgid "_Browse..."
msgstr "Selaa..."
+#. 6WoYE
+#: sd/uiconfig/simpress/ui/interactionpage.ui:321
+msgctxt "interactionpage|extended_tip|browse"
+msgid "Locate the file you want to open."
+msgstr "Paikallistetaan avattava tiedosto."
+
#. xDPqu
-#: sd/uiconfig/simpress/ui/interactionpage.ui:315
+#: sd/uiconfig/simpress/ui/interactionpage.ui:333
msgctxt "interactionpage|find"
msgid "_Find"
msgstr "Etsi"
+#. AMQ6d
+#: sd/uiconfig/simpress/ui/interactionpage.ui:340
+msgctxt "interactionpage|extended_tip|find"
+msgid "Searches for the specified slide or object."
+msgstr "Etsitään määrättyä diaa tai objektia."
+
#. WCrdD
-#: sd/uiconfig/simpress/ui/interactionpage.ui:347
+#: sd/uiconfig/simpress/ui/interactionpage.ui:370
msgctxt "interactionpage|sound-atkobject"
msgid "Path Name"
msgstr "Polun nimi"
+#. wZE8A
+#: sd/uiconfig/simpress/ui/interactionpage.ui:371
+msgctxt "interactionpage|extended_tip|sound"
+msgid "Enter a path to the audio file you want to open, or click Browse to locate the file."
+msgstr "Annetaan avattavan äänitiedoston polku tai napsautetaan Selaa-painiketta tiedoston paikallistamiseksi."
+
+#. bnuz3
+#: sd/uiconfig/simpress/ui/interactionpage.ui:389
+msgctxt "interactionpage|extended_tip|bookmark"
+msgid "Enter the name of the slide or the object that you want to look for."
+msgstr "Annetaan etsittävän dian tai objektin nimi."
+
+#. aFqHG
+#: sd/uiconfig/simpress/ui/interactionpage.ui:407
+msgctxt "interactionpage|extended_tip|document"
+msgid "Enter a path to the file you want to open, or click Browse to locate the file."
+msgstr "Annetaan avattavan tiedoston polku tai napsautetaan Selaa-painiketta tiedoston paikallistamiseksi."
+
+#. ZTeCG
+#: sd/uiconfig/simpress/ui/interactionpage.ui:425
+msgctxt "interactionpage|extended_tip|program"
+msgid "Enter a path to the program you want to start, or click Browse to locate the program."
+msgstr "Annetaan käynnistettävän ohjelman polku tai napsautetaan Selaa-painiketta ohjelman paikallistamiseksi."
+
+#. Mocvx
+#: sd/uiconfig/simpress/ui/interactionpage.ui:443
+msgctxt "interactionpage|extended_tip|macro"
+msgid "Enter a path to the macro you want to run, or click Browse to locate the macro."
+msgstr "Annetaan käynnistettävän makron polku tai napsautetaan Selaa-painiketta makron paikallistamiseksi."
+
+#. UwxJE
+#: sd/uiconfig/simpress/ui/interactionpage.ui:480
+msgctxt "interactionpage|extended_tip|InteractionPage"
+msgid "Defines how the selected object behaves when you click on it during a slide show."
+msgstr "Määritetään, miten valitut objektit käyttäytyvät, kun niitä napsautetaan esityksen aikana."
+
#. Ed2VQ
#: sd/uiconfig/simpress/ui/layoutmenu.ui:12
msgctxt "layoutmenu|apply"
@@ -5589,36 +6337,66 @@ msgctxt "masterlayoutdlg|header"
msgid "_Header"
msgstr "Ylätunniste"
+#. r7Aa8
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:105
+msgctxt "masterlayoutdlg|extended_tip|header"
+msgid "Adds a header placeholder to the master slide for notes."
+msgstr ""
+
#. iccus
-#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:112
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:117
msgctxt "masterlayoutdlg|datetime"
msgid "_Date/time"
msgstr "Päivämäärä/aika"
+#. LcYxF
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:126
+msgctxt "masterlayoutdlg|extended_tip|datetime"
+msgid "Adds a date/time placeholder to the master slide."
+msgstr ""
+
#. SFrZg
-#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:128
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:138
msgctxt "masterlayoutdlg|footer"
msgid "_Footer"
msgstr "Alatunniste"
+#. SFDjB
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:147
+msgctxt "masterlayoutdlg|extended_tip|footer"
+msgid "Adds a footer placeholder to the master slide."
+msgstr ""
+
#. AyWZh
-#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:144
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:159
msgctxt "masterlayoutdlg|pagenumber"
msgid "_Page number"
msgstr "Sivunumero"
+#. y3BDS
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:168
+msgctxt "masterlayoutdlg|extended_tip|pagenumber"
+msgid "Adds a slide number placeholder to the master slide."
+msgstr ""
+
#. DEikC
-#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:160
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:180
msgctxt "masterlayoutdlg|slidenumber"
msgid "_Slide number"
msgstr "Dian numero"
#. StLxB
-#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:182
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:202
msgctxt "masterlayoutdlg|Placeholders"
msgid "Placeholders"
msgstr "Paikanvaraajat"
+#. 2iPYT
+#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:227
+msgctxt "masterlayoutdlg|extended_tip|MasterLayoutDialog"
+msgid "Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide."
+msgstr ""
+
#. 69Akr
#: sd/uiconfig/simpress/ui/mastermenu.ui:12
msgctxt "mastermenu|applyall"
@@ -5662,67 +6440,121 @@ msgid "Insert as Copy"
msgstr "Lisää kopiona"
#. 3rY8r
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:64
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:63
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Asiakirja"
#. wavgT
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:67
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:66
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiivinen ikkuna"
+#. zSARy
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:67
+msgctxt "navigatorpanel|extended_tip|documents"
+msgid "Lists available %PRODUCTNAME files."
+msgstr ""
+
#. D6ag8
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:118
msgctxt "navigatorpanel|STR_OBJECTS_TREE"
msgid "Page Tree"
msgstr ""
+#. e6gMq
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:119
+msgctxt "navigatorpanel|extended_tip|tree"
+msgid "Lists available slides. Double-click a slide to make it the active slide."
+msgstr ""
+
#. LKqE8
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:139
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:141
msgctxt "navigatorpanel|first|tooltip_text"
msgid "First Slide"
msgstr "Ensimmäinen dia"
+#. Lqedn
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:145
+msgctxt "navigatorpanel|extended_tip|first"
+msgid "Jumps to the first page."
+msgstr ""
+
#. NWPFk
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:151
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:158
msgctxt "navigatorpanel|previous|tooltip_text"
msgid "Previous Slide"
msgstr "Edellinen dia"
+#. PJUma
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:162
+msgctxt "navigatorpanel|extended_tip|previous"
+msgid "Moves back one page."
+msgstr ""
+
#. bkvQE
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:163
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:175
msgctxt "navigatorpanel|next|tooltip_text"
msgid "Next Slide"
msgstr "Seuraava dia"
+#. zbUVG
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:179
+msgctxt "navigatorpanel|extended_tip|next"
+msgid "Move forward one page."
+msgstr ""
+
#. FVSHF
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:175
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:192
msgctxt "navigatorpanel|last|tooltip_text"
msgid "Last Slide"
msgstr "Viimeinen dia"
+#. aPU7Y
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:196
+msgctxt "navigatorpanel|extended_tip|last"
+msgid "Jumps to the last page."
+msgstr ""
+
#. mHVom
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:197
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:221
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Vetotila"
+#. BEJEZ
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:225
+msgctxt "navigatorpanel|extended_tip|dragmode"
+msgid "Drag and drop slides and named objects into the active slide."
+msgstr ""
+
#. Qb5a9
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:209
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:238
msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Näytä muodot"
+#. EUeae
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:242
+msgctxt "navigatorpanel|extended_tip|shapes"
+msgid "In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the Tab key, the next shape in the defined order is selected."
+msgstr "Alivalikosta voidaan valita esitettäväksi luettelo kaikista kuvioista tai vain nimetyistä kuvioista eli muodoista. Kuvioita voidaan järjestää luettelossa vetämällä ja pudottamalla. Kun dia kohdistetaan ja painetaan Sarkainta, valituksi tulee seuraava kuvio määrätyssä järjestyksessä."
+
+#. DzQZC
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:265
+msgctxt "navigatorpanel|extended_tip|NavigatorPanel"
+msgid "Opens the Navigator, where you can quickly jump to other slides or move between open files."
+msgstr ""
+
#. pzb3K
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:237
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:276
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_NAMED_SHAPES"
msgid "Named shapes"
msgstr "Nimetyt muodot"
#. dLEPF
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:246
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:285
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_ALL_SHAPES"
msgid "All shapes"
msgstr "Kaikki muodot"
@@ -6880,132 +7712,216 @@ msgctxt "optimpressgeneralpage|startwithwizard"
msgid "Start with _Template Selection"
msgstr "Aloita mallin valinnalla"
+#. L97gv
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:68
+msgctxt "extended_tip|startwithwizard"
+msgid "Specifies whether to activate the Select a Template window when opening a presentation with File - New - Presentation."
+msgstr ""
+
#. 5DjoQ
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:80
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:85
msgctxt "optimpressgeneralpage|newdoclbl"
msgid "New Document"
msgstr "Uusi asiakirja"
#. JGppH
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:113
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:118
msgctxt "optimpressgeneralpage|qickedit"
msgid "Allow quick editing"
msgstr "Salli pikamuokkaus"
+#. vmsrU
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:127
+msgctxt "extended_tip|qickedit"
+msgid "If on, you can edit text immediately after clicking a text object. If off, you must double-click to edit text."
+msgstr "Merkinnällä määrätään, että tekstiobjektin napsautus johtaa suoraan tekstinmuokkaustilaan."
+
#. dn7AQ
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:128
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:138
msgctxt "optimpressgeneralpage|textselected"
msgid "Only text area selectable"
msgstr "Vain tekstialue valittavissa"
+#. EQqRZ
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:148
+msgctxt "extended_tip|textselected"
+msgid "Specifies whether to select a text box by clicking the text."
+msgstr ""
+
#. 9SB2g
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:150
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:165
msgctxt "optimpressgeneralpage|label2"
msgid "Text Objects"
msgstr "Tekstiobjektit"
#. fWbDG
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:184
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:199
msgctxt "optimpressgeneralpage|copywhenmove"
msgid "Copy when moving"
msgstr "Kopioi siirrettäessä"
+#. a92dE
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:208
+msgctxt "extended_tip|copywhenmove"
+msgid "If enabled, a copy is created when you move an object while holding down the Ctrl key."
+msgstr ""
+
#. QdHNF
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:206
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:226
msgctxt "optimpressgeneralpage|label6"
msgid "Unit of _measurement:"
msgstr "Mittayksikkö:"
-#. S8VMD
+#. vhiR2
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:243
+msgctxt "extended_tip|units"
+msgid "Determines the Unit of measurement for presentations."
+msgstr "Määritetään esitysten mittayksikkö."
+
+#. S8VMD
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:268
msgctxt "optimpressgeneralpage|tapstoplabel"
msgid "Ta_b stops:"
msgstr "Sarkaimet:"
+#. WQBqF
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:289
+msgctxt "extended_tip|metricFields"
+msgid "Defines the spacing between tab stops."
+msgstr "Määritetään sarkainväli."
+
#. oSmuC
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:276
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:306
msgctxt "optimpressgeneralpage|objalwymov"
msgid "Objects always moveable"
msgstr "Objektit aina siirrettävissä"
+#. cXLAT
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:315
+msgctxt "extended_tip|objalwymov"
+msgid "Specifies that you want to move an object with the Rotate tool enabled. If Object always moveable is not marked, the Rotate tool can only be used to rotate an object."
+msgstr "Merkinnällä määrätään, että objekti on siirrettävissä Kierrä-työkalua käytettäessäkin. Jos Objektit aina siirrettävissä -ruutu ei ole merkitty, Kierrä-työkalua voidaan käyttää vain objektin kiertämiseen."
+
#. 8cyDE
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:291
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:326
msgctxt "optimpressgeneralpage|distortcb"
msgid "Do not distort objects in curve"
msgstr ""
#. TDrpy
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:307
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:342
msgctxt "optimpressgeneralpage|backgroundback"
msgid "Use background cache"
msgstr "Käytä taustavälimuistia"
+#. Di3Vo
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:351
+msgctxt "extended_tip|backgroundback"
+msgid "Specifies whether to use the cache for displaying objects on the master slide."
+msgstr ""
+
#. psubE
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:329
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:369
msgctxt "optimpressgeneralpage|label4"
msgid "Settings"
msgstr "Asetukset"
#. CrRmE
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:366
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:406
msgctxt "optimpressgeneralpage|label8"
msgid "_Drawing scale:"
msgstr "Mittakaava:"
#. j7n3M
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:380
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:420
msgctxt "optimpressgeneralpage|widthlbl"
msgid "Page _width:"
msgstr "Sivun leveys:"
#. Aay7y
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:394
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:434
msgctxt "optimpressgeneralpage|heightlbl"
msgid "Page _height:"
msgstr "Sivun korkeus:"
+#. HVKhs
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:535
+msgctxt "extended_tip|scaleBox"
+msgid "Determines the drawing scale on the rulers."
+msgstr "Määritetään piirroksen mittakaava viivaimissa."
+
#. E2cEn
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:513
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:558
msgctxt "optimpressgeneralpage|label5"
msgid "Scale"
msgstr "Skaalaus"
#. 3BkYq
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:546
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:591
msgctxt "optimpressgeneralpage|printermetrics"
msgid "Us_e printer metrics for document formatting"
msgstr "Käytä tulostimen mittoja asiakirjan muotoilussa"
+#. mTuAd
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:600
+msgctxt "extended_tip|printermetrics"
+msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen. If this box is not checked, a printer independent layout will be used for screen display and printing."
+msgstr ""
+
#. VVZZf
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:561
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:611
msgctxt "optimpressgeneralpage|cbCompatibility"
msgid "Add _spacing between paragraphs and tables"
msgstr "Lisää välit kappaleiden ja taulukoiden väliin"
+#. 285BX
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:620
+msgctxt "extended_tip|cbCompatibility"
+msgid "Specifies that %PRODUCTNAME Impress calculates the paragraph spacing exactly like Microsoft PowerPoint."
+msgstr "Merkinnällä määrätään, että %PRODUCTNAME Impress laskee kappaleiden välistyksen täsmälleen samoin kuin Microsoft PowerPoint."
+
#. PaYjQ
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:582
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:637
msgctxt "optimpressgeneralpage|label1"
msgid "Compatibility"
msgstr "Yhteensopivuus"
#. qimBE
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:617
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:672
msgctxt "optimpressgeneralpage|enremotcont"
msgid "Enable remote control"
msgstr "Salli kauko-ohjaus"
+#. 7iTJt
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:681
+msgctxt "extended_tip|enremotcont"
+msgid "Specifies that you want to enable Bluetooth remote control while Impress is running."
+msgstr "Sallii Bluetooth-kauko-ohjauksen Impressin ollessa käytössä."
+
#. EE26t
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:632
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:692
msgctxt "optimpressgeneralpage|enprsntcons"
msgid "Enable Presenter Console"
msgstr "Ota käyttöön esittäjän apunäyttö"
+#. dAFGz
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:701
+msgctxt "extended_tip|enprsntcons"
+msgid "Specifies that you want to enable the Presenter Console during slideshows."
+msgstr ""
+
#. txHfw
-#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:653
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:718
msgctxt "optimpressgeneralpage|label7"
msgid "Presentation"
msgstr "Esitys"
+#. 67gzU
+#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:735
+msgctxt "extended_tip|OptSavePage"
+msgid "Defines the general options for drawing or presentation documents."
+msgstr "Määritellään piirros- ja esitysasiakirjojen yleiset asetukset."
+
#. sGCUC
#: sd/uiconfig/simpress/ui/photoalbum.ui:16
msgctxt "photoalbum|PhotoAlbumCreatorDialog"
@@ -7097,287 +8013,485 @@ msgid "Slide Show Settings"
msgstr "Esityksen asetukset"
#. acmHw
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:118
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:115
msgctxt "presentationdialog|from"
msgid "_From:"
msgstr "_Lähde:"
+#. yfqmc
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:128
+msgctxt "presentationdialog|extended_tip|from"
+msgid "Enter the number of the start slide."
+msgstr "Annetaan aloitusdian numero."
+
#. tc75b
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:145
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:147
msgctxt "presentationdialog|from_cb-atkobject"
msgid "Starting slide"
msgstr "Aloitusdia"
+#. wwhvu
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:148
+msgctxt "presentationdialog|extended_tip|from_cb"
+msgid "Enter the number of the start slide."
+msgstr "Annetaan aloitusdian numero."
+
#. FLsDP
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:162
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:165
msgctxt "presentationdialog|allslides"
msgid "All _slides"
msgstr "Kaikki _diat"
+#. 6xRAA
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:175
+msgctxt "presentationdialog|extended_tip|allslides"
+msgid "Includes all of the slides in your slide show."
+msgstr "Sisällytetään kaikki diat esitykseen."
+
#. h3FfX
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:183
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:191
msgctxt "presentationdialog|customslideshow"
msgid "_Custom slide show:"
msgstr "Mukautettu diaesitys:"
+#. AcANY
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:204
+msgctxt "presentationdialog|extended_tip|customslideshow"
+msgid "Runs a custom slide show in the order that you defined in Slide Show - Custom Slide Show."
+msgstr "Pidetään mukautettu esitys siinä järjestyksessä, joka on määritelty Diaesitys - Mukautetut esitykset -toiminnossa."
+
+#. PG83u
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:223
+msgctxt "presentationdialog|extended_tip|customslideshow_cb"
+msgid "Runs a custom slide show in the order that you defined in Slide Show - Custom Slide Show."
+msgstr "Pidetään mukautettu esitys siinä järjestyksessä, joka on määritelty Diaesitys - Mukautetut esitykset -toiminnossa."
+
#. 7vRFv
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:228
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:246
msgctxt "presentationdialog|label1"
msgid "Range"
msgstr "Alue"
+#. tmJvs
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:292
+msgctxt "presentationdialog|extended_tip|presdisplay_cb"
+msgid "Select a display to use for full screen slide show mode."
+msgstr ""
+
#. xo7EX
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:282
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:305
msgctxt "presentationdialog|presdisplay_label"
msgid "P_resentation display:"
msgstr "Esitysnäyttö:"
#. ECzT8
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:304
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:327
msgctxt "presentationdialog|externalmonitor_str"
msgid "Display %1 (external)"
msgstr "Näyttö %1 (ulkoinen)"
#. xDUjL
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:314
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:337
msgctxt "presentationdialog|monitor_str"
msgid "Display %1"
msgstr "Näyttö %1"
#. DZ2HG
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:324
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:347
msgctxt "presentationdialog|allmonitors_str"
msgid "All displays"
msgstr "Kaikki näytöt"
#. 65GqG
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:334
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:357
msgctxt "presentationdialog|external_str"
msgid "Auto External (Display %1)"
msgstr "Automaattinen ulkoinen (näyttö %1)"
#. m9FjZ
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:355
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:378
msgctxt "presentationdialog|label3"
msgid "Multiple Displays"
msgstr "Useampi näyttö"
#. bvPPh
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:395
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:418
msgctxt "presentationdialog|default"
msgid "F_ull screen"
msgstr "Koko näyttö"
+#. 5Pdcc
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:428
+msgctxt "presentationdialog|extended_tip|default"
+msgid "A full screen slide is shown."
+msgstr "Esitys täysnäyttötilassa."
+
#. ESNR9
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:411
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:439
msgctxt "presentationdialog|window"
msgid "In a _window"
msgstr "Ikkunassa"
+#. wDbEX
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:449
+msgctxt "presentationdialog|extended_tip|window"
+msgid "Slide show runs in the %PRODUCTNAME program window."
+msgstr "Esitys %PRODUCTNAME-ohjelman ikkunassa."
+
#. DAKWY
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:427
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:460
msgctxt "presentationdialog|auto"
msgid "_Loop and repeat after:"
msgstr "Aloita uudelleen alusta:"
+#. ewuNo
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:473
+msgctxt "presentationdialog|extended_tip|auto"
+msgid "Restarts the slide show after the pause interval you specify. A pause slide is displayed between the final slide and the start slide. Press the Esc key to stop the show."
+msgstr "Diaesitys käynnistyy uudestaan määrätyn tauon jälkeen. Taukodia esitetään lopetus- ja aloitusdian välissä. Esitys päättyy Esc-näppäintä painettaessa."
+
#. FPAvh
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:446
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:484
msgctxt "presentationdialog|showlogo"
msgid "Show _logo"
msgstr "Näytä lo_go"
+#. cMi4u
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:494
+msgctxt "presentationdialog|extended_tip|showlogo"
+msgid "Displays the %PRODUCTNAME logo on the pause slide."
+msgstr "Taukodialla esitetään %PRODUCTNAME-logo."
+
#. vJ9Ns
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:465
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:508
msgctxt "presentationdialog|pauseduration|tooltip_text"
msgid "Duration of pause"
msgstr "Katkon pituus"
#. K3LHh
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:474
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:517
msgctxt "presentationdialog|pauseduration-atkobject"
msgid "Pause Duration"
msgstr "Tauon kesto"
+#. Bjmck
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:518
+msgctxt "presentationdialog|extended_tip|pauseduration"
+msgid "Enter the duration of the pause before the slide show is repeated. If you enter zero, the show restarts immediately without showing a pause slide."
+msgstr "Annetaan uusintaesitystä edeltävän tauon pituus. Jos annetaan nolla, esitys alkaa välittömästi taukodiaa esittämättä."
+
#. 7PBdA
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:491
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:535
msgctxt "presentationdialog|label2"
msgid "Presentation Mode"
msgstr "Esitystila"
#. J9PFv
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:526
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:570
msgctxt "presentationdialog|manualslides"
msgid "Change slides _manually"
msgstr "Manuaalinen dianvai_hto"
+#. 2PEAj
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:579
+msgctxt "presentationdialog|extended_tip|manualslides"
+msgid "Slides never change automatically when this box is selected."
+msgstr "Merkinnällä määrätään, että diat eivät koskaan vaihdu automaattisesti."
+
#. e4tCG
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:541
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:590
msgctxt "presentationdialog|pointervisible"
msgid "Mouse pointer _visible"
msgstr "Hiiren osoitin näky_vissä"
+#. pDBLN
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:599
+msgctxt "presentationdialog|extended_tip|pointervisible"
+msgid "Shows the mouse pointer during a slide show."
+msgstr "Merkinnällä määrätään, että hiiren osoitin näkyy esityksessä."
+
#. seTuX
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:556
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:610
msgctxt "presentationdialog|pointeraspen"
msgid "Mouse pointer as _pen"
msgstr "Hiiren osoitin _kynänä"
+#. QLvoH
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:619
+msgctxt "presentationdialog|extended_tip|pointeraspen"
+msgid "Changes the mouse pointer to a pen which you can use to draw on slides during the presentation."
+msgstr "Merkinnällä muutetaan hiiren osoitin kynäksi, jolla voidaan esityksen aikana piirtää dialle."
+
#. YqoxU
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:571
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:630
msgctxt "presentationdialog|animationsallowed"
msgid "_Animations allowed"
msgstr "_Salli animaatiot"
+#. EUe99
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:639
+msgctxt "presentationdialog|extended_tip|animationsallowed"
+msgid "Displays all frames of animated GIF files during the slide show."
+msgstr "Merkinnällä määrätään, että GIF-tiedoston animaation kaikki ruudut näytetään esityksessä ."
+
#. ZvDVF
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:586
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:650
msgctxt "presentationdialog|changeslidesbyclick"
msgid "Change slides by clic_king on background"
msgstr "Dianvaihto _taustaa napsauttamalla"
+#. tzMEC
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:659
+msgctxt "presentationdialog|extended_tip|changeslidesbyclick"
+msgid "Advances to the next slide when you click on the background of a slide."
+msgstr "Siirrytään seuraavaan diaan, kun dian taustaa napsautetaan."
+
#. tA4uX
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:601
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:670
msgctxt "presentationdialog|alwaysontop"
msgid "Presentation always _on top"
msgstr "Esitys aina _päällimmäisenä"
+#. Ux58Z
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:679
+msgctxt "presentationdialog|extended_tip|alwaysontop"
+msgid "The %PRODUCTNAME window remains on top during the presentation. No other program will show its window in front of your presentation."
+msgstr "%PRODUCTNAME-ikkuna säilyy päällimmäisenä esityksen ajan. Muut ohjelmat eivät saa ikkunoitaan esityksen eteen."
+
#. zdH6V
-#: sd/uiconfig/simpress/ui/presentationdialog.ui:625
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:699
msgctxt "presentationdialog|label4"
msgid "Options"
msgstr "Valinnat"
+#. 8pqaK
+#: sd/uiconfig/simpress/ui/presentationdialog.ui:736
+msgctxt "presentationdialog|extended_tip|PresentationDialog"
+msgid "Defines settings for your slide show, including which slide to start from, the way you advance the slides, the type of presentation, and pointer options."
+msgstr "Tehdään diaesityksen asetukset. Tähän sisältyy, mistä diasta aloitetaan, diojen vaihtamistavat, esityksen tyypit ja osoitinvaihtoehdot."
+
#. Byo4C
#: sd/uiconfig/simpress/ui/prntopts.ui:36
msgctxt "prntopts|pagedefaultrb"
msgid "Default"
msgstr "Oletus"
+#. hajt3
+#: sd/uiconfig/simpress/ui/prntopts.ui:46
+msgctxt "extended_tip|pagedefaultrb"
+msgid "Specifies that you do not want to further scale pages when printing."
+msgstr "Valinta määrittää, ettei sivuja skaalata enempää tulostettaessa."
+
#. Azbxx
-#: sd/uiconfig/simpress/ui/prntopts.ui:52
+#: sd/uiconfig/simpress/ui/prntopts.ui:57
msgctxt "prntopts|fittopgrb"
msgid "_Fit to page"
msgstr "Sovita sivulle"
+#. BY9Lo
+#: sd/uiconfig/simpress/ui/prntopts.ui:67
+msgctxt "extended_tip|fittopgrb"
+msgid "Specifies whether to scale down objects that are beyond the margins of the current printer, so that they fit on the paper in the printer."
+msgstr "Valinta määrittää, että jos käytettävässä tulostimessa tuloste menisi yli marginaalin, niin tulostetta pienennetään, niin että se sopii tulostimen arkille."
+
#. 7Jqsg
-#: sd/uiconfig/simpress/ui/prntopts.ui:68
+#: sd/uiconfig/simpress/ui/prntopts.ui:78
msgctxt "prntopts|tilepgrb"
msgid "_Tile pages"
msgstr "Sivut vierekkäin"
+#. XVA4W
+#: sd/uiconfig/simpress/ui/prntopts.ui:88
+msgctxt "extended_tip|tilepgrb"
+msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper."
+msgstr "Merkinnällä määrätään, että sivut tulostetaan vierekkäismuodossa. Jos sivut tai diat ovat pienempiä kuin arkki, useita sivuja tai dioja voidaan tulostaa yhdelle paperiarkille."
+
#. DRu9w
-#: sd/uiconfig/simpress/ui/prntopts.ui:84
+#: sd/uiconfig/simpress/ui/prntopts.ui:99
msgctxt "prntopts|papertryfrmprntrcb"
msgid "Paper tray from printer s_ettings"
msgstr "Paperilokero tulostimen asetuksista"
+#. KFsSk
+#: sd/uiconfig/simpress/ui/prntopts.ui:108
+msgctxt "extended_tip|papertryfrmprntrcb"
+msgid "Determines that the paper tray to be used is the one defined in the printer setup."
+msgstr "Määrittää, että käytetään tulostinasetuksissa määrättyä paperilokeroa."
+
#. LXUhA
-#: sd/uiconfig/simpress/ui/prntopts.ui:99
+#: sd/uiconfig/simpress/ui/prntopts.ui:119
msgctxt "prntopts|brouchrb"
msgid "B_rochure"
msgstr "Esite"
+#. 96Suw
+#: sd/uiconfig/simpress/ui/prntopts.ui:129
+msgctxt "extended_tip|brouchrb"
+msgid "Select the Brochure option to print the document in brochure format."
+msgstr "Valitaan Esite-asetus, kun asiakirja tulostetaan esitemuodossa."
+
#. QiBFz
-#: sd/uiconfig/simpress/ui/prntopts.ui:126
+#: sd/uiconfig/simpress/ui/prntopts.ui:151
msgctxt "prntopts|frontcb"
msgid "Fr_ont"
msgstr "Etuosa"
+#. afFiH
+#: sd/uiconfig/simpress/ui/prntopts.ui:163
+msgctxt "extended_tip|frontcb"
+msgid "Select Front to print the front of a brochure."
+msgstr "Valitaan Etuosa tulostettaessa esitteen etukansi."
+
#. RmDFe
-#: sd/uiconfig/simpress/ui/prntopts.ui:145
+#: sd/uiconfig/simpress/ui/prntopts.ui:175
msgctxt "prntopts|backcb"
msgid "Ba_ck"
msgstr "Takaosa"
+#. B3z27
+#: sd/uiconfig/simpress/ui/prntopts.ui:187
+msgctxt "extended_tip|backcb"
+msgid "Select Back to print the back of a brochure."
+msgstr "Valitaan Takaosa tulostettaessa esitteen takakansi."
+
#. NsWL6
-#: sd/uiconfig/simpress/ui/prntopts.ui:178
+#: sd/uiconfig/simpress/ui/prntopts.ui:213
msgctxt "prntopts|label3"
msgid "Page Options"
msgstr "Sivuasetukset"
#. Cwizr
-#: sd/uiconfig/simpress/ui/prntopts.ui:211
+#: sd/uiconfig/simpress/ui/prntopts.ui:246
msgctxt "prntopts|pagenmcb"
msgid "_Page name"
msgstr "Sivun nimi"
+#. tFJRe
+#: sd/uiconfig/simpress/ui/prntopts.ui:255
+msgctxt "extended_tip|pagenmcb"
+msgid "Specifies whether to print the page name."
+msgstr "Merkinnällä määrätään, että sivun nimi tulostetaan."
+
#. XeD9w
-#: sd/uiconfig/simpress/ui/prntopts.ui:226
+#: sd/uiconfig/simpress/ui/prntopts.ui:266
msgctxt "prntopts|datecb"
msgid "D_ate"
msgstr "Päivämäärä"
+#. RFT4B
+#: sd/uiconfig/simpress/ui/prntopts.ui:275
+msgctxt "extended_tip|datecb"
+msgid "Specifies whether to print the current date."
+msgstr "Merkinnällä määrätään, että tulostusajan päivämäärä tulostetaan."
+
#. 4Dm6A
-#: sd/uiconfig/simpress/ui/prntopts.ui:241
+#: sd/uiconfig/simpress/ui/prntopts.ui:286
msgctxt "prntopts|timecb"
msgid "Ti_me"
msgstr "Aika"
+#. aPHPX
+#: sd/uiconfig/simpress/ui/prntopts.ui:295
+msgctxt "extended_tip|timecb"
+msgid "Specifies whether to print the current time."
+msgstr "Merkinnällä määrätään, että tulostushetken kellonaika tulostetaan."
+
#. dBXeA
-#: sd/uiconfig/simpress/ui/prntopts.ui:256
+#: sd/uiconfig/simpress/ui/prntopts.ui:306
msgctxt "prntopts|hiddenpgcb"
msgid "H_idden pages"
msgstr "Piilosivut"
+#. rS3jY
+#: sd/uiconfig/simpress/ui/prntopts.ui:315
+msgctxt "extended_tip|hiddenpgcb"
+msgid "Specifies whether to print the pages that are currently hidden from the presentation."
+msgstr "Merkinnällä määrätään, että tulostushetkellä esityksen piilossa olevat sivut tulostetaan."
+
#. XuHA2
-#: sd/uiconfig/simpress/ui/prntopts.ui:277
+#: sd/uiconfig/simpress/ui/prntopts.ui:332
msgctxt "prntopts|printlbl"
msgid "Print"
msgstr "Tulosta"
#. 2psp5
-#: sd/uiconfig/simpress/ui/prntopts.ui:321
+#: sd/uiconfig/simpress/ui/prntopts.ui:376
msgctxt "prntopts|defaultrb"
msgid "Default"
msgstr "Oletus"
+#. pjmw3
+#: sd/uiconfig/simpress/ui/prntopts.ui:386
+msgctxt "extended_tip|defaultrb"
+msgid "Specifies that you want to print in original colors."
+msgstr "Määrätään tulostus alkuperäisväreissä."
+
#. sFK9C
-#: sd/uiconfig/simpress/ui/prntopts.ui:337
+#: sd/uiconfig/simpress/ui/prntopts.ui:397
msgctxt "prntopts|grayscalerb"
msgid "Gra_yscale"
msgstr "Harmaasävy"
+#. 85Da5
+#: sd/uiconfig/simpress/ui/prntopts.ui:407
+msgctxt "extended_tip|grayscalerb"
+msgid "Specifies that you want to print colors as grayscale."
+msgstr "Merkinnällä määrätään, että värit tulostetaan harmaasävyinä."
+
#. ibjkX
-#: sd/uiconfig/simpress/ui/prntopts.ui:353
+#: sd/uiconfig/simpress/ui/prntopts.ui:418
msgctxt "prntopts|blackwhiterb"
msgid "Black & _white"
msgstr "Mustavalkoinen"
+#. CcezY
+#: sd/uiconfig/simpress/ui/prntopts.ui:428
+msgctxt "extended_tip|blackwhiterb"
+msgid "Specifies that you want to print the document in black and white."
+msgstr "Määrätään tulostus mustavalkoisena."
+
#. PUgsP
-#: sd/uiconfig/simpress/ui/prntopts.ui:375
+#: sd/uiconfig/simpress/ui/prntopts.ui:445
msgctxt "prntopts|label2"
msgid "Quality"
msgstr "Laatu"
#. AEqGw
-#: sd/uiconfig/simpress/ui/prntopts.ui:408
+#: sd/uiconfig/simpress/ui/prntopts.ui:478
msgctxt "prntopts|drawingcb"
msgid "Drawing"
msgstr "Tavalliset sivut"
#. rQT7U
-#: sd/uiconfig/simpress/ui/prntopts.ui:423
+#: sd/uiconfig/simpress/ui/prntopts.ui:493
msgctxt "prntopts|notecb"
msgid "Notes"
msgstr "Muistiinpanosivut"
#. CvxXM
-#: sd/uiconfig/simpress/ui/prntopts.ui:438
+#: sd/uiconfig/simpress/ui/prntopts.ui:508
msgctxt "prntopts|handoutcb"
msgid "Handouts"
msgstr "Monisteet"
#. sGvpE
-#: sd/uiconfig/simpress/ui/prntopts.ui:453
+#: sd/uiconfig/simpress/ui/prntopts.ui:523
msgctxt "prntopts|outlinecb"
msgid "Outline"
msgstr "Jäsennys"
#. AjCQi
-#: sd/uiconfig/simpress/ui/prntopts.ui:474
+#: sd/uiconfig/simpress/ui/prntopts.ui:544
msgctxt "prntopts|contentlbl"
msgid "Content"
msgstr "Sisältö"
+#. XxPhN
+#: sd/uiconfig/simpress/ui/prntopts.ui:566
+msgctxt "extended_tip|prntopts"
+msgid "Specifies print settings within a drawing or presentation document."
+msgstr "Määritetään piirros- ja esitysasiakirjojen tulostusasetukset."
+
#. QRYoE
#: sd/uiconfig/simpress/ui/publishingdialog.ui:21
msgctxt "publishingdialog|PublishingDialog"
@@ -7385,343 +8499,555 @@ msgid "HTML Export"
msgstr "HTML-vienti"
#. tDwdY
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:64
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:61
msgctxt "publishingdialog|lastPageButton"
msgid "< Back"
msgstr "< Edellinen"
-#. VNyoG
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:77
-msgctxt "publishingdialog|nextPageButton"
-msgid "Ne_xt >"
-msgstr "_Seuraava >"
-
#. HWaiE
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:93
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:74
msgctxt "publishingdialog|finishButton"
msgid "_Create"
msgstr "Luo"
+#. xFoJm
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:81
+msgctxt "publishingdialog|extended_tip|finishButton"
+msgid "Creates new documents according to your selections and saves the documents."
+msgstr "Luodaan uudet asiakirjat asetusten mukaisesti ja tallennetaan asiakirjat."
+
+#. VNyoG
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:93
+msgctxt "publishingdialog|nextPageButton"
+msgid "Ne_xt >"
+msgstr "_Seuraava >"
+
#. hKYBh
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:139
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:141
msgctxt "publishingdialog|newDesignRadiobutton"
msgid "New _design"
msgstr "Uusi suunnitelma"
+#. 4HYDP
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:151
+msgctxt "publishingdialog|extended_tip|newDesignRadiobutton"
+msgid "Creates a new design in the next pages of the Wizard."
+msgstr "Luodaan uusi suunnitelma ohjatun toiminnon seuraavilla sivuilla."
+
#. SrGoC
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:156
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:163
msgctxt "publishingdialog|oldDesignRadiobutton"
msgid "Existing design"
msgstr "Nykyinen suunnitelma"
+#. SQUhj
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:173
+msgctxt "publishingdialog|extended_tip|oldDesignRadiobutton"
+msgid "Loads an existing design from the design list to use as a starting point for the steps to follow on the next pages of the Wizard."
+msgstr "Ladataan suunnitelmaluettelosta yksi olemassa olevista suunnitelmista seuraavien vaiheiden lähtökohdaksi ohjatun toiminnon myöhemmille sivuille."
+
+#. CTCLg
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:230
+msgctxt "publishingdialog|extended_tip|designsTreeview"
+msgid "Displays all existing designs."
+msgstr "Esitetään olemassa olevat suunnitelmat."
+
#. mEc7e
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:244
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:261
msgctxt "publishingdialog|descLabel"
msgid "Select an existing design or create a new one"
msgstr "Valitse aiemmin luotu rakenne tai luo uusi rakenne"
#. DTYoF
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:256
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:273
msgctxt "publishingdialog|delDesingButton"
msgid "Delete Selected Design"
msgstr "Poista valittu suunnitelma"
+#. TMauF
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:282
+msgctxt "publishingdialog|extended_tip|delDesingButton"
+msgid "Deletes the selected design from the design list."
+msgstr "Valittu suunnitelma poistetaan suunnitelmaluettelosta."
+
#. cQEWT
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:285
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:307
msgctxt "publishingdialog|assignLabel"
msgid "Assign Design"
msgstr "Liitä rakenne"
+#. 9UbQB
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:316
+msgctxt "publishingdialog|extended_tip|page1"
+msgid "Determines the settings for publishing %PRODUCTNAME Draw or %PRODUCTNAME Impress documents in HTML format."
+msgstr "Määritetään %PRODUCTNAME Draw'n tai %PRODUCTNAME Impressin asiakirjojen asetukset julkaistaessa HTML-muodossa."
+
#. 9Wotv
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:331
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:358
msgctxt "publishingdialog|ASPRadiobutton"
msgid "_Active Server Pages (ASP)"
msgstr "Active Server Pages (ASP)"
+#. D4oV4
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:368
+msgctxt "publishingdialog|extended_tip|ASPRadiobutton"
+msgid "When you select the ASP option, the WebCast export creates ASP pages. Note that the HTML presentation can only be offered by a web server supporting ASP."
+msgstr "Kun valitaan ASP -vaihtoehto, verkkolähetyksen vienti luo ASP-sivuja. HTML-esitys voidaan tarjota vain verkkopalvelimelta, joka tukee aktiivisia palvelinsivuja (ASP)!"
+
#. 62rNz
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:348
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:380
msgctxt "publishingdialog|perlRadiobutton"
msgid "Perl"
msgstr "Perl"
+#. UBiAa
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:390
+#, fuzzy
+msgctxt "publishingdialog|extended_tip|perlRadiobutton"
+msgid "Used by WebCast export to create HTML pages and Perl scripts."
+msgstr "Verkkolähetyksen vientiä käytetään HTML-sivujen ja Perl-skriptin luontiin."
+
#. 5tjnv
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:379
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:416
msgctxt "publishingdialog|indexTxtLabel"
msgid "_URL for listeners:"
msgstr "URL kuuntelijoille:"
+#. YgFn6
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:434
+msgctxt "publishingdialog|extended_tip|indexEntry"
+msgid "Specifies the URL (absolute or relative) to be entered by the viewer in order to see the presentation."
+msgstr "Määritetään URL-osoite (absoluuttinen tai suhteellinen), jonka katselijat joutuvat syöttämään nähdäkseen esityksen."
+
#. Z4rnL
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:407
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:449
msgctxt "publishingdialog|URLTxtLabel"
msgid "URL for _presentation:"
msgstr "Esityksen URL:"
+#. V5ADs
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:466
+msgctxt "publishingdialog|extended_tip|URLEntry"
+msgid "Specifies the URL (absolute or relative), where the created HTML presentation on the web server has been saved."
+msgstr "Määritetään URL-osoite (absoluuttinen tai suhteellinen), jonne HTML-esitys on tallennettu verkkopalvelimelle."
+
#. LNk9W
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:434
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:481
msgctxt "publishingdialog|CGITxtLabel"
msgid "URL for _Perl scripts:"
msgstr "Perl-komentosarjojen URL-osoite:"
+#. h5jnr
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:498
+msgctxt "publishingdialog|extended_tip|CGIEntry"
+msgid "Specifies the URL (absolute or relative) for the generated Perl scripts."
+msgstr "Määritetään URL-osoite (absoluuttinen tai suhteellinen) tuotettaville Perl-skripteille."
+
#. yEtQi
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:473
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:525
msgctxt "publishingdialog|webCastLabel"
msgid "Webcast"
msgstr "Webcast"
#. qmfBA
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:509
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:561
msgctxt "publishingdialog|chgDefaultRadiobutton"
msgid "_As stated in document"
msgstr "Asiakirjan mukaan"
+#. 5C9U8
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:571
+msgctxt "publishingdialog|extended_tip|chgDefaultRadiobutton"
+msgid "The slide transition depends on the timing that you set for each slide in the presentation. If you set a manual page transition, the HTML presentation introduces a new page by pressing any key from your keyboard."
+msgstr "Dian vaihtuminen tapahtuu asiakirjan ajastusasetusten mukaan kullekin dialle. Jos asetetaan käyttäjän määräämä sivujen vaihtuminen, HTML-esitys avaa uuden sivun painettaessa mitä tahansa näppäimistön näppäintä."
+
#. vuFBo
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:526
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:583
msgctxt "publishingdialog|chgAutoRadiobutton"
msgid "_Automatic"
msgstr "Automaattinen"
+#. 3Wi7b
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:593
+msgctxt "publishingdialog|extended_tip|chgAutoRadiobutton"
+msgid "The page transition takes place automatically after the specified period of time elapses and does not depend on the presentation's contents"
+msgstr "HTML-sivut vaihtuvat itsekseen määrätyin väliajoin, eikä esityksen asetukset tai sisältö vaikuta asiaan."
+
#. 4YUzC
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:561
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:623
msgctxt "publishingdialog|durationTxtLabel"
msgid "_Slide view time:"
msgstr "Dian näyttöaika:"
+#. ACdZC
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:642
+msgctxt "publishingdialog|extended_tip|durationSpinbutton"
+msgid "Defines the amount of time for each slide display."
+msgstr "Määritetään diakohtainen esitysaika."
+
#. jMsf2
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:594
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:661
msgctxt "publishingdialog|endlessCheckbutton"
msgid "_Endless"
msgstr "Päättymätön"
+#. AM5ni
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:671
+msgctxt "publishingdialog|extended_tip|endlessCheckbutton"
+msgid "Automatically restarts the HTML presentation after the last slide has been displayed."
+msgstr "HTML-esitys alkaa uudestaan viimeisen dian esittämisen jälkeen."
+
#. NFmGJ
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:626
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:698
msgctxt "publishingdialog|kioskLabel"
msgid "Advance Slides"
msgstr "Esitä dioja"
#. ucqzo
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:664
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:736
msgctxt "publishingdialog|contentCheckbutton"
msgid "Create title page"
msgstr "Luo otsikkosivu"
+#. QkCAN
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:746
+msgctxt "publishingdialog|extended_tip|contentCheckbutton"
+msgid "Creates a title page for your document."
+msgstr "Asiakirjalle luodaan otsikkosivu."
+
#. fuS2d
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:681
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:758
msgctxt "publishingdialog|notesCheckbutton"
msgid "Show notes"
msgstr "Näytä muistiinpanot"
+#. XTGC6
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:768
+msgctxt "publishingdialog|extended_tip|notesCheckbutton"
+msgid "Specifies that your notes are also displayed."
+msgstr "Merkinnällä määrätään muistiinpanotkin esitettäviksi."
+
#. GNRxU
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:704
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:786
msgctxt "publishingdialog|htmlOptionsLabel"
msgid "Options"
msgstr "Asetukset"
#. FQFnv
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:795
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:877
msgctxt "publishingdialog|webCastRadiobutton"
msgid "_WebCast"
msgstr "Webcast"
+#. 7aTUk
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:887
+#, fuzzy
+msgctxt "publishingdialog|extended_tip|webCastRadiobutton"
+msgid "In a WebCast export, automatic scripts will be generated with Perl or ASP support."
+msgstr "Verkkolähetysviennissä tuotetaan Perlin tai ASP:n tukemat komentosarjat (skriptit)."
+
#. CgTG4
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:811
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:898
msgctxt "publishingdialog|kioskRadiobutton"
msgid "_Automatic"
msgstr "Automaattinen"
+#. 3A5Bq
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:908
+msgctxt "publishingdialog|extended_tip|kioskRadiobutton"
+msgid "Creates a default HTML presentation as a kiosk export, in which the slides are automatically advanced after a specified amount of time."
+msgstr "Luodaan vakiomuotoinen HTML-esitys kioskivientinä, jossa diat vaihtuvat itsekseen määrätyin väliajoin."
+
#. PSGFr
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:827
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:919
msgctxt "publishingdialog|singleDocumentRadiobutton"
msgid "_Single-document HTML"
msgstr "Yksi HTML-tiedosto"
#. iH77N
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:843
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:935
msgctxt "publishingdialog|framesRadiobutton"
msgid "Standard HTML with _frames"
msgstr "HTML-vakiomuoto ja kehykset"
+#. RhzLR
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:945
+msgctxt "publishingdialog|extended_tip|framesRadiobutton"
+msgid "Creates standard HTML pages with frames. The exported page will be placed in the main frame, and the frame to the left will display a table of contents in the form of hyperlinks."
+msgstr "Luodaan vakiomuotoiset HTML-sivut kehyksin. Viety sivu sijoitetaan pääkehykseen ja vasemmalla oleva kehys esittää sisällysluettelon hyperlinkkien muodossa."
+
#. CA35b
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:859
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:956
msgctxt "publishingdialog|standardRadiobutton"
msgid "Standard H_TML format"
msgstr "HTML-vakiomuoto"
+#. dqJ8k
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:966
+msgctxt "publishingdialog|extended_tip|standardRadiobutton"
+msgid "Creates standard HTML pages from export pages."
+msgstr "Luodaan vietävistä sivuista normaaleja HTML-sivuja."
+
#. 2D85A
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:881
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:983
msgctxt "publishingdialog|publicationLabel"
msgid "Publication Type"
msgstr "Julkaisutyyppi"
#. GuHwY
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:939
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1041
msgctxt "publishingdialog|pngRadiobutton"
msgid "_PNG"
msgstr "PNG"
+#. tBByA
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1051
+msgctxt "publishingdialog|extended_tip|pngRadiobutton"
+msgid "The files are exported as PNG files. PNG files are compressed without loss of data, and can contain more than 256 colors."
+msgstr "Tiedostot viedään PNG-tiedostoina. PNG-tiedostot pakataan tietoa hävittämättä ja niissä voi olla yli 256 väriä."
+
#. Ei2dJ
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:956
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1063
msgctxt "publishingdialog|gifRadiobutton"
msgid "_GIF"
msgstr "GIF"
+#. CjCTt
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1073
+msgctxt "publishingdialog|extended_tip|gifRadiobutton"
+msgid "The files are exported as GIF files. GIF files are compressed without loss of data, and have a maximum of 256 colors."
+msgstr "Tiedostot viedään GIF-tiedostoina. GIF-tiedostot pakataan tietoa hävittämättä ja niissä voi olla enintään 256 väriä."
+
#. s6SqL
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:973
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1085
msgctxt "publishingdialog|jpgRadiobutton"
msgid "_JPG"
msgstr "JPG"
+#. bEwzb
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1095
+msgctxt "publishingdialog|extended_tip|jpgRadiobutton"
+msgid "The files are exported as JPEG files. JPEG files are compressed, with adjustable compression and can contain more than 256 colors."
+msgstr "Tiedostot viedään JPEG-tiedostoina. JPEG-tiedostot pakataan säädettävällä pakkaussuhteella ja niissä voi olla yli 256 väriä."
+
#. Sahg3
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:999
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1116
msgctxt "publishingdialog|qualityTxtLabel"
msgid "_Quality:"
msgstr "Laatu:"
+#. oYcCy
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1140
+msgctxt "publishingdialog|extended_tip|qualityCombobox"
+msgid "Specifies the compression factor of the JPEG graphic. A 100% value offers the best quality for a large data range. The 25% factor indicates small files with inferior image quality."
+msgstr "Määritetään JPEG-kuvan pakkaussuhde. Arvo 100% tarjoaa parhaimman laadun ja suurimman tiedostokoon. Kerroin 25% tarkoittaa pienempää tiedostoa ja heikompaa kuvan laatua."
+
#. WZbqb
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1043
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1165
msgctxt "publishingdialog|saveImgAsLabel"
msgid "Save Images As"
msgstr "Kuvien tallennusmuoto"
#. VP9BP
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1078
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1200
msgctxt "publishingdialog|resolution1Radiobutton"
msgid "Low (_640 × 480 pixels)"
msgstr "Matala tarkkuus (_640 × 480 kuvapistettä)"
+#. 4RadV
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1209
+msgctxt "publishingdialog|extended_tip|resolution1Radiobutton"
+msgid "Select the low resolution to keep the file size small, even for presentations with many slides."
+msgstr "Valitaan pieni tarkkuus, jotta tiedostokoko pysyisi pienenä, jopa esityksillä, joissa on useita dioja."
+
#. U7WAx
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1094
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1221
msgctxt "publishingdialog|resolution2Radiobutton"
msgid "Medium (_800 × 600 pixels)"
msgstr "Keskitason tarkkuus (_800 × 600 kuvapistettä)"
+#. XxGDu
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1231
+msgctxt "publishingdialog|extended_tip|resolution2Radiobutton"
+msgid "Select the medium resolution for a medium-sized presentation."
+msgstr "Keskitason tarkkuus valitaan keskikokoiselle esitykselle."
+
#. irmFn
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1111
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1243
msgctxt "publishingdialog|resolution3Radiobutton"
msgid "High (_1024 × 768 pixels)"
msgstr "Suuri tarkkuus (_1024 × 768 kuvapistettä)"
+#. aBZEV
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1255
+msgctxt "publishingdialog|extended_tip|resolution3Radiobutton"
+msgid "Select a high resolution for a high quality slide display."
+msgstr "Suuri tarkkuus valitaan korkealaatuisille diaesityksille."
+
#. zsvW6
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1136
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1273
msgctxt "publishingdialog|monitorResolutionLabel"
msgid "Monitor Resolution"
msgstr "Näytön erottelutarkkuus"
#. KJvxg
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1176
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1313
msgctxt "publishingdialog|sldSoundCheckbutton"
msgid "_Export sounds when slide advances"
msgstr "Vie äänet dian vaihtuessa"
+#. h7rJh
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1323
+msgctxt "publishingdialog|extended_tip|sldSoundCheckbutton"
+msgid "Specifies that the sound files that are defined as an effect for slide transitions are exported."
+msgstr "Merkinnällä määrätään, että äänitiedostot, jotka toimivat dian vaihtojen tehosteina, viedään."
+
#. itaEE
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1193
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1335
msgctxt "publishingdialog|hiddenSlidesCheckbutton"
msgid "Export _hidden slides"
msgstr "Vie piilotetut diat"
#. EnRtp
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1215
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1357
msgctxt "publishingdialog|effectsLabel"
msgid "Effects"
msgstr "Tehosteet"
#. 6QQcx
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1263
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1405
msgctxt "publishingdialog|authorTxtLabel"
msgid "_Author:"
msgstr "Tekijä:"
+#. FuMMH
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1422
+msgctxt "publishingdialog|extended_tip|authorEntry"
+msgid "Specifies the name of the publication's author."
+msgstr "Määritetään julkaisun tekijän nimi."
+
#. qkWFY
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1289
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1436
msgctxt "publishingdialog|emailTxtLabel"
msgid "E-_mail address:"
msgstr "Sähköpostiosoite:"
#. wvFSd
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1303
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1450
msgctxt "publishingdialog|wwwTxtLabel"
msgid "Your hom_epage:"
msgstr "Kotisivusi:"
#. rWtUU
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1318
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1465
msgctxt "publishingdialog|addInformLabel"
msgid "Additional _information:"
msgstr "Lisätietoja"
+#. svqza
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1482
+msgctxt "publishingdialog|extended_tip|emailEntry"
+msgid "Specifies the email address."
+msgstr ""
+
+#. kXEhW
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1499
+msgctxt "publishingdialog|extended_tip|wwwEntry"
+msgid "Specifies your homepage. A hyperlink will be inserted in the publication."
+msgstr "Annetaan käyttäjän kotisivu. Hyperlinkki lisätään julkaisuun."
+
#. 4XPKu
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1353
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1510
msgctxt "publishingdialog|downloadCheckbutton"
msgid "Link to a copy of the _original presentation"
msgstr "Linkitä alkuperäisen esityksen kopioon"
+#. rvjoB
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1519
+msgctxt "publishingdialog|extended_tip|downloadCheckbutton"
+msgid "Inserts a hyperlink to download a copy of the presentation file."
+msgstr "Lisätään hyperlinkki alkuperäisen esitystiedoston lataamiseen."
+
+#. zyAyC
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1544
+msgctxt "publishingdialog|extended_tip|miscTextview"
+msgid "Specifies additional text to appear on the title page."
+msgstr "Määritetään otsikkosivulla näkyvät lisätiedot."
+
#. SGhW4
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1396
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1563
msgctxt "publishingdialog|infTitlePageLabel"
msgid "Information for the Title Page"
msgstr "Otsikkosivun tiedot"
#. fN2Qw
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1434
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1601
msgctxt "publishingdialog|textOnlyCheckbutton"
msgid "_Text only"
msgstr "_Vain teksti"
+#. F9Ysk
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1612
+msgctxt "publishingdialog|extended_tip|textOnlyCheckbutton"
+msgid "Inserts only text hyperlinks instead of buttons."
+msgstr "Lisätään vain tekstihyperlinkkejä painikkeiden asemesta."
+
#. hJCd8
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1488
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1660
msgctxt "publishingdialog|buttonStyleLabel"
msgid "Select Button Style"
msgstr "Valitse painiketyyli"
#. ExziF
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1527
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1699
msgctxt "publishingdialog|docColorsRadiobutton"
msgid "_Apply color scheme from document"
msgstr "Käytä asiakirjan väriskeemaa"
#. fsTQM
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1544
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1716
msgctxt "publishingdialog|defaultRadiobutton"
msgid "Use _browser colors"
msgstr "Käytä selaimen värejä"
#. FtkC2
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1561
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1733
msgctxt "publishingdialog|userRadiobutton"
msgid "_Use custom color scheme"
msgstr "Käytä mukautettua väriskeemaa"
#. 6CoBA
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1595
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1767
msgctxt "publishingdialog|vLinkButton"
msgid "_Visited Link"
msgstr "Käyty linkki"
#. EWurf
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1608
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1780
msgctxt "publishingdialog|aLinkButton"
msgid "Active Li_nk"
msgstr "Aktiivinen linkki"
#. f5NJa
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1621
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1793
msgctxt "publishingdialog|linkButton"
msgid "Hyper_link"
msgstr "Hyperlinkki"
#. DZCug
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1634
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1806
msgctxt "publishingdialog|textButton"
msgid "Text"
msgstr "Teksti"
#. vDEFA
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1684
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1856
msgctxt "publishingdialog|backButton"
msgid "Bac_kground"
msgstr "Tausta"
#. 3mrfM
-#: sd/uiconfig/simpress/ui/publishingdialog.ui:1714
+#: sd/uiconfig/simpress/ui/publishingdialog.ui:1886
msgctxt "publishingdialog|selectColorLabel"
msgid "Select Color Scheme"
msgstr "Valitse väriskeema"
@@ -7733,11 +9059,17 @@ msgid "Impress Remote"
msgstr "Impress-kauko-ohjain"
#. pEkbh
-#: sd/uiconfig/simpress/ui/remotedialog.ui:147
+#: sd/uiconfig/simpress/ui/remotedialog.ui:144
msgctxt "remotedialog|label1"
msgid "Connections"
msgstr "Yhteydet"
+#. zoP5A
+#: sd/uiconfig/simpress/ui/remotedialog.ui:169
+msgctxt "remotedialog|extended_tip|RemoteDialog"
+msgid "List all Impress Remote available connections."
+msgstr ""
+
#. oe6tG
#: sd/uiconfig/simpress/ui/rotatemenu.ui:12
msgctxt "rotatemenu|90"
@@ -7822,30 +9154,60 @@ msgctxt "sdviewpage|ruler"
msgid "_Rulers visible"
msgstr "Viivaimet näkyvissä"
+#. mUwRB
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:35
+msgctxt "extended_tip|ruler"
+msgid "Specifies whether to display the rulers at the top and to the left of the work area."
+msgstr "Merkinnällä määrätään, että viivaimet näkyvät työtilassa ylhäällä ja vasemmalla. Ilman valintaa viivaimia ei näy."
+
#. RPDaD
-#: sd/uiconfig/simpress/ui/sdviewpage.ui:42
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:47
msgctxt "sdviewpage|dragstripes"
msgid "_Helplines while moving"
msgstr "Apuviivat siirrettäessä"
+#. B2eHZ
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:56
+msgctxt "extended_tip|dragstripes"
+msgid "Specifies whether to display guides when moving an object."
+msgstr ""
+
#. Grues
-#: sd/uiconfig/simpress/ui/sdviewpage.ui:58
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:68
msgctxt "sdviewpage|handlesbezier"
msgid "_All control points in Bézier editor"
msgstr "Kaikki Bézier-muokkauksen ohjauspisteet"
+#. rRDtR
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:77
+msgctxt "extended_tip|handlesbezier"
+msgid "Displays the control points of all Bézier points if you have previously selected a Bézier curve. If the All control points in Bézier editor option is not marked, only the control points of the selected Bézier points will be visible."
+msgstr "Näytetään kaikkien Bézier-pisteiden ohjauspisteet, jos aiemmin on valittu Bézier-käyrä. Jos Kaikki Bézier-muokkauksen ohjauspisteet -vaihtoehtoa ei ole merkitty, vain valittujen Bézier-pisteiden ohjauspisteet näkyvät."
+
#. hz6x7
-#: sd/uiconfig/simpress/ui/sdviewpage.ui:74
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:89
msgctxt "sdviewpage|moveoutline"
msgid "_Contour of each individual object"
msgstr "Kunkin yksittäisen objektin ääriviiva"
+#. fWu42
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:98
+msgctxt "extended_tip|moveoutline"
+msgid "%PRODUCTNAME displays the contour line of each individual object when moving this object."
+msgstr "%PRODUCTNAME näyttää objekteja siirrettäessä niiden ääriviivat."
+
#. kJGzf
-#: sd/uiconfig/simpress/ui/sdviewpage.ui:96
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:116
msgctxt "sdviewpage|label1"
msgid "Display"
msgstr "Näytä"
+#. peBce
+#: sd/uiconfig/simpress/ui/sdviewpage.ui:124
+msgctxt "extended_tip|SdViewPage"
+msgid "Specifies the available display modes."
+msgstr "Määritetään näkymätilat."
+
#. 7DgNY
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:36
msgctxt "sidebarslidebackground|label2"
@@ -8039,125 +9401,221 @@ msgid "Available Master Slides"
msgstr "Saatavilla olevat diapohjat"
#. rivGM
-#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:29
+#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:26
msgctxt "slidedesigndialog|load"
msgid "_Load..."
msgstr "Lataa..."
+#. KDCjh
+#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:33
+msgctxt "slidedesigndialog|extended_tip|load"
+msgid "Displays the Load Master Slide dialog, where you can select additional slide designs."
+msgstr ""
+
#. RQGwn
-#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:115
+#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:117
msgctxt "slidedesigndialog|masterpage"
msgid "_Exchange background page"
msgstr "Vaihda taustasivu"
+#. Ndm5j
+#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:126
+msgctxt "slidedesigndialog|extended_tip|masterpage"
+msgid "Applies the background of the selected slide design to all of the slides in your document."
+msgstr "Valittua diamallin taustaa käytetään kaikkiin asiakirjan dioihin."
+
#. bVkvr
-#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:130
+#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:137
msgctxt "slidedesigndialog|checkmasters"
msgid "_Delete unused backgrounds"
msgstr "Poista käyttämättömät taustat"
+#. 7gazj
+#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:146
+msgctxt "slidedesigndialog|extended_tip|checkmasters"
+msgid "Deletes unreferenced background slides and presentation layouts from your document."
+msgstr "Poistetaan viittaamattomat taustadiat ja esitysasettelut asiakirjasta."
+
#. zBuXF
-#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:181
+#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:193
msgctxt "slidedesigndialog|label1"
msgid "Select a Slide Design"
msgstr "Valitse diamalli"
+#. SRRvK
+#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:219
+msgctxt "slidedesigndialog|extended_tip|SlideDesignDialog"
+msgid "Displays the Available Master Slides dialog, where you can select a layout scheme for the current slide. Any objects in the slide design are inserted behind objects in the current slide."
+msgstr ""
+
+#. Zr5wz
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:59
+msgctxt "slidetransitionspanel|extended_tip|transitions_icons"
+msgid "Select the slide transition you want to use for the selected slides."
+msgstr ""
+
#. VYdF2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:98
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:103
msgctxt "slidetransitionspanel|duration_label"
msgid "Duration:"
msgstr "Kesto:"
#. mAJ52
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:112
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:117
msgctxt "slidetransitionspanel|transition_duration|tooltip_text"
msgid "Select the speed of Slide Transition."
msgstr "Valitse diasiirtymän nopeus."
+#. ZYD78
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:123
+msgctxt "slidetransitionspanel|extended_tip|transition_duration"
+msgid "Sets the duration of the slide transition."
+msgstr ""
+
#. VrA9B
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:127
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:137
msgctxt "slidetransitionspanel|sound_label"
msgid "Sound:"
msgstr "Ääni:"
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:142
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr "Ei ääntä"
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:143
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr "Pysäytä edellinen ääni"
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:144
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:154
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr "Muu ääni..."
+#. 6W7BE
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:158
+msgctxt "slidetransitionspanel|extended_tip|sound_list"
+msgid "Lists sounds that can played during the slide transition."
+msgstr ""
+
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:154
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:169
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr "Toista jatkuvasti seuraavaan ääneen saakka"
+#. HYGMp
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:178
+msgctxt "slidetransitionspanel|extended_tip|loop_sound"
+msgid "Select to play the sound repeatedly until another sound starts."
+msgstr "Merkinnällä määrätään, että ääntä toistetaan kunnes toinen äänitiedosto käynnistetään."
+
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:172
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:192
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "Muunnelma:"
+#. ECukd
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:207
+msgctxt "slidetransitionspanel|extended_tip|variant_list"
+msgid "Select a variation of the transition."
+msgstr ""
+
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:202
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:227
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr "Muokkaa siirtymää"
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:235
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:260
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr "Hiirtä napsautettaessa"
+#. txqWa
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:270
+msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
+msgid "Select to advance to the next slide on a mouse click."
+msgstr "Merkinnällä määrätään. että seuraavaan diaan siirrytään hiiren napsautuksella."
+
#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:282
msgctxt "slidetransitionspanel|rb_auto_after"
msgid "Automatically after:"
msgstr "Automaattisesti jälkeen:"
+#. rJJQy
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:295
+msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
+msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
+msgstr "Merkinnällä määrätään, että seuraavaan diaan siirrytään tietyn sekuntimäärän kuluttua. Syötetään aika sekunneissa askelvalitsimen viereiseen kenttään tai napsautetaan askelvalitsinta."
+
+#. YctZb
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:315
+msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
+msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
+msgstr "Merkinnällä määrätään, että seuraavaan diaan siirrytään tietyn sekuntimäärän kuluttua. Syötetään aika sekunneissa askelvalitsimen viereiseen kenttään tai napsautetaan askelvalitsinta."
+
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:292
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:332
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr "Seuraava dia"
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:318
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:358
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr "Aseta siirtymä kaikille dioille"
+#. hoaV2
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:365
+msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
+msgid "Applies the selected slide transition to all slides in the current presentation document."
+msgstr "Käytetään valittua dian siirtymää kaikkiin käsiteltävän asiakirjan dioihin."
+
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:355
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Automaattinen esikatselu"
+#. DEDBU
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+msgctxt "slidetransitionspanel|extended_tip|auto_preview"
+msgid "Select to see the slide transitions automatically in the document."
+msgstr "Merkinnällä määrätään, että muutokset dian siirtymässä näytetään välittömästi asiakirjassa."
+
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:371
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:421
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "Toista"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:375
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:425
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr "Tehosteen esikatselu"
+#. HddiF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:432
+msgctxt "slidetransitionspanel|extended_tip|play"
+msgid "Shows the current slide transition as a preview."
+msgstr "Näytetään kohdistetun dian vaihtuminen ennakkoesityksenä."
+
+#. E9Xpn
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:465
+msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
+msgid "Defines the special effect that plays when you display a slide during a slide show."
+msgstr ""
+
#. T99jN
#: sd/uiconfig/simpress/ui/tabledesignpanel.ui:23
msgctxt "tabledesignpanel|UseFirstRowStyle"
diff --git a/source/fi/sfx2/messages.po b/source/fi/sfx2/messages.po
index a4d4d93f1e5..a93b804e9c8 100644
--- a/source/fi/sfx2/messages.po
+++ b/source/fi/sfx2/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-09-24 16:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/fi/>\n"
@@ -517,11 +517,11 @@ msgstr ""
"Sivun \"$(ARG1)\" avaaminen epäonnistui virhekoodilla $(ARG2) ja viestillä \"$(ARG3)\"\n"
"Ehkä tietokoneelta ei löytynyt verkkoselainta. Siinä tapauksessa tarkista työpöytäasetukset tai asenna verkkoselain (esimerkiksi Firefox) siihen kansioon, jota selaimen asennusohjelma ehdottaa."
-#. kmLzB
+#. ADqLM
#: include/sfx2/strings.hrc:104
msgctxt "STR_NO_ABS_URI_REF"
-msgid "\"$(ARG1)\" is not an absolute URL that can be passed to an external application to open it."
-msgstr "\"$(ARG1)\" ei ole absoluuttinen URL, jonka ulkoinen sovellus pystyisi avaamaan."
+msgid "\"$(ARG1)\" cannot be passed to an external application to open it (e.g., it might not be an absolute URL, or might denote no existing file)."
+msgstr ""
#. XDUCY
#: include/sfx2/strings.hrc:105
@@ -924,8 +924,14 @@ msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Kuvasuodatinta ei löytynyt"
-#. ejBgZ
+#. huEFV
#: include/sfx2/strings.hrc:168
+msgctxt "RID_SVXSTR_TXTFILTER_FILTERERROR"
+msgid "This is not a text document"
+msgstr "Tämä ei ole tekstiasiakirja"
+
+#. ejBgZ
+#: include/sfx2/strings.hrc:169
msgctxt "RID_SVXSTR_END_REDLINING_WARNING"
msgid ""
"This action will exit the change recording mode.\n"
@@ -936,43 +942,43 @@ msgid ""
msgstr ""
#. E2CcY
-#: include/sfx2/strings.hrc:169
+#: include/sfx2/strings.hrc:170
msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Väärä salasana"
#. 7Ezso
-#: include/sfx2/strings.hrc:170
+#: include/sfx2/strings.hrc:171
msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
msgstr "OpenPGP-avain ei ole luotettu, se on vahingoittunut tai salaus epäonnistui. Yritä uudelleen."
#. DQCUm
-#: include/sfx2/strings.hrc:172
+#: include/sfx2/strings.hrc:173
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(Vähintään $(MINLEN) merkkiä)"
#. ZKZnh
-#: include/sfx2/strings.hrc:173
+#: include/sfx2/strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(Vähintään 1 merkki)"
#. B3WoF
-#: include/sfx2/strings.hrc:174
+#: include/sfx2/strings.hrc:175
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(Salasana voi olla tyhjä)"
#. iBD9D
-#: include/sfx2/strings.hrc:175
+#: include/sfx2/strings.hrc:176
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "Toimintoa ei voitu suorittaa. %PRODUCTNAME-ohjelman moduulia, jota tämä toiminto tarvitsee, ei ole asennettu."
#. TXAV5
-#: include/sfx2/strings.hrc:177
+#: include/sfx2/strings.hrc:178
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -982,7 +988,7 @@ msgstr ""
"Haluatko asentaa suodattimen nyt?"
#. gQhYY
-#: include/sfx2/strings.hrc:178
+#: include/sfx2/strings.hrc:179
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -992,215 +998,215 @@ msgstr ""
"Tilausohjeet ovat kotisivullamme."
#. Y9yeS
-#: include/sfx2/strings.hrc:180
+#: include/sfx2/strings.hrc:181
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "Tervetuloa %PRODUCTNAMEen."
#. hyKnu
-#: include/sfx2/strings.hrc:181
+#: include/sfx2/strings.hrc:182
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr "Pudota asiakirja tänne tai luo uusi valitsemalla sovellus vasemmalta."
#. oTVdA
#. Translators: Target types in Auto-redaction dialog
-#: include/sfx2/strings.hrc:184
+#: include/sfx2/strings.hrc:185
msgctxt "STR_REDACTION_TARGET_TYPE_TEXT"
msgid "Text"
msgstr "Teksti"
#. eG5qc
-#: include/sfx2/strings.hrc:185
+#: include/sfx2/strings.hrc:186
msgctxt "STR_REDACTION_TARGET_TYPE_REGEX"
msgid "Regular expression"
msgstr "Säännöllinen lauseke"
#. TaDCG
-#: include/sfx2/strings.hrc:186
+#: include/sfx2/strings.hrc:187
msgctxt "STR_REDACTION_TARGET_TYPE_PREDEF"
msgid "Predefined"
msgstr "Ennalta määritelty"
#. bDjwW
-#: include/sfx2/strings.hrc:187
+#: include/sfx2/strings.hrc:188
msgctxt "STR_REDACTION_TARGET_TYPE_UNKNOWN"
msgid "Unknown"
msgstr "Tuntematon"
#. Ao6kC
#. Translators: Column headers in Auto-redaction dialog's targets list
-#: include/sfx2/strings.hrc:190
+#: include/sfx2/strings.hrc:191
msgctxt "STR_REDACTION_TARGET_NAME"
msgid "Target Name"
msgstr "Kohteen nimi"
#. mGjsx
-#: include/sfx2/strings.hrc:191
+#: include/sfx2/strings.hrc:192
msgctxt "STR_REDACTION_TYPE"
msgid "Type"
msgstr "Tyyppi"
#. gFKC4
-#: include/sfx2/strings.hrc:192
+#: include/sfx2/strings.hrc:193
msgctxt "STR_REDACTION_CONTENT"
msgid "Content"
msgstr "Sisältö"
#. oSNPd
-#: include/sfx2/strings.hrc:193
+#: include/sfx2/strings.hrc:194
msgctxt "STR_REDACTION_CASE_SENSITIVE"
msgid "Case Sensitive"
msgstr ""
#. FLcSM
-#: include/sfx2/strings.hrc:194
+#: include/sfx2/strings.hrc:195
msgctxt "STR_REDACTION_WHOLE_WORDS"
msgid "Whole Words"
msgstr "Kokonaiset sanat"
#. YgzCk
#. Translators: Values for the Case Sensitive and the Whole Words columns in Auto-redaction dialog
-#: include/sfx2/strings.hrc:197
+#: include/sfx2/strings.hrc:198
msgctxt "STR_REDACTION_YES"
msgid "Yes"
msgstr "Kyllä"
#. oZNaM
-#: include/sfx2/strings.hrc:198
+#: include/sfx2/strings.hrc:199
msgctxt "STR_REDACTION_NO"
msgid "No"
msgstr "Ei"
#. FM3Gf
#. Translators: Misc strings of the Auto Redaction dialog
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:202
msgctxt "STR_REDACTION_TARGET"
msgid "Target"
msgstr "Kohde"
#. m2i7V
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:203
msgctxt "STR_REDACTION_LOAD_TARGETS"
msgid "Load Targets"
msgstr ""
#. HgrwX
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:204
msgctxt "STR_REDACTION_SAVE_TARGETS"
msgid "Save Targets"
msgstr "Tallenna kohteet"
#. MYMTF
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:205
msgctxt "STR_REDACTION_FIELDS_REQUIRED"
msgid "All fields are required"
msgstr "Kaikki kentät ovat pakollisia"
#. rQS6M
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:206
msgctxt "STR_REDACTION_TARGET_NAME_CLASH"
msgid "There is already a target with this name"
msgstr "Samanniminen kohde on jo olemassa"
#. s248s
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:207
msgctxt "STR_REDACTION_MULTI_EDIT"
msgid "You have selected multiple targets, but only one target can be edited at once."
msgstr "Olet valinnut useita kohteita, mutta vain yhtä kohdetta voi muokata kerrallaan."
#. BTayC
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:208
msgctxt "STR_REDACTION_MULTI_DELETE"
msgid "Are you sure you would like to delete $(TARGETSCOUNT) targets at once?"
msgstr "Haluatko varmasti poistaa $(TARGETSCOUNT) kohdetta kerralla?"
#. qFqDC
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:209
msgctxt "STR_REDACTION_JSON_FILE_FILTER"
msgid "Target Set (*.json)"
msgstr "Kohdejoukko (*.json)"
#. EGCo6
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:210
msgctxt "STR_REDACTION_EDIT_TARGET"
msgid "Edit Target"
msgstr "Muokkaa kohdetta"
#. ACY9D
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:211
msgctxt "STR_REDACTION_TARGET_ADD_ERROR"
msgid "An error occurred while adding new target. Please report this incident."
msgstr ""
#. znVBU
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:212
msgctxt "STR_REDACTION_NO_DRAW_WARNING"
msgid "Draw module is needed for redaction. Please make sure you have LibreOffice Draw installed and working correctly."
msgstr ""
#. FQ9kN
-#: include/sfx2/strings.hrc:213
+#: include/sfx2/strings.hrc:214
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "Nykyinen versio"
#. GFAEM
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:215
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Vienti"
#. 2DBBC
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:216
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Lisää"
#. VBKtt
-#: include/sfx2/strings.hrc:216
+#: include/sfx2/strings.hrc:217
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "~Lisää"
#. DcLFD
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:218
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
msgstr "<Kaikki kuvat>"
#. tPDwc
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:219
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "Tallenna kopio"
#. T9mMd
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:220
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "Vertaa tiedostoon"
#. 4qMCh
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:221
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr "Yhdistä tiedostoon"
#. cDMBG
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:223
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME-asiakirja"
#. 43QYo
-#: include/sfx2/strings.hrc:223
+#: include/sfx2/strings.hrc:224
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. jQX7C
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:225
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -1210,31 +1216,31 @@ msgstr ""
"Arvo tallennetaan tekstinä."
#. cinmA
-#: include/sfx2/strings.hrc:226
+#: include/sfx2/strings.hrc:227
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Tyyli on jo olemassa. Korvataanko?"
#. f627N
-#: include/sfx2/strings.hrc:228
+#: include/sfx2/strings.hrc:229
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "P~alauta"
#. EXGDb
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:230
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Nimi on jo käytössä."
#. N5aeR
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:231
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Tätä tyyliä ei ole olemassa."
#. CYQwN
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:232
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -1244,7 +1250,7 @@ msgstr ""
"Tästä seuraisi rekursiivinen viite."
#. ECPSd
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:233
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -1254,7 +1260,7 @@ msgstr ""
"Valitse toinen nimi."
#. NWDmA
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:234
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -1263,73 +1269,73 @@ msgid ""
msgstr ""
#. kuD77
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:235
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Käytössä olevat tyylit: "
#. 4JhEW
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:236
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Rakenneselain"
#. Acahp
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:237
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Salasanan vahvistus ei täsmää"
#. 6uv4b
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:238
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Lähetä"
#. 9HHQw
-#: include/sfx2/strings.hrc:238
+#: include/sfx2/strings.hrc:239
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Fontti"
#. 7baC6
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:241
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Näytä versiohuomautus"
#. LGiF8
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:242
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(nimeä ei ole asetettu)"
#. rZ4Ao
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:244
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarkkinen"
#. 4VXDe
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:246
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Haluatko varmasti keskeyttää nauhoituksen? Kaikki tähän asti nauhoitetut toiminnot menetetään."
#. 9MnrK
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:247
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Peruuta nauhoitus"
#. m9FCm
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:249
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Malleja alustetaan ensimmäistä käyttökertaa varten."
#. F3ym2
-#: include/sfx2/strings.hrc:250
+#: include/sfx2/strings.hrc:251
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1339,7 +1345,7 @@ msgstr ""
"Valitse tulostin ja yritä uudelleen."
#. a3NTu
-#: include/sfx2/strings.hrc:251
+#: include/sfx2/strings.hrc:252
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1349,19 +1355,19 @@ msgstr ""
"Tarkista tulostimen määritykset."
#. acKHX
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Tulostin käytössä"
#. hDEUj
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (kirjoitussuojattu)"
#. uL87C
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1373,7 +1379,7 @@ msgstr ""
"aktiiviseen asiakirjaan?"
#. cxuAH
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1385,7 +1391,7 @@ msgstr ""
"aktiiviseen asiakirjaan?"
#. 4QJxB
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1397,7 +1403,7 @@ msgstr ""
"aktiiviseen asiakirjaan?"
#. RXbfs
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1407,7 +1413,7 @@ msgstr ""
" tulostustyö on kesken."
#. YGyQP
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1418,7 +1424,7 @@ msgstr ""
#. 3nzi6
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1430,19 +1436,19 @@ msgstr ""
"Virhekoodi on $1"
#. ZWTDr
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Virhe sähköpostia lähettäessä"
#. QVS2D
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Asiakirjaa ei voi avata muokattavaksi, käyttöoikeudet saattavat olla puutteelliset. Haluatko käyttää asiakirjaa uuden asiakirjan mallina?"
#. ZdGNX
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_QUERY_OPENASTEMPLATE_LOCKED"
msgid ""
"This document cannot be edited, because it is locked in another session.%LOCKINFO\n"
@@ -1452,465 +1458,471 @@ msgstr ""
"Haluatko muokata asiakirjan kopiota?"
#. n3sMB
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid "You can also try to ignore the lock and open the file for editing."
msgstr "Voit myös yrittää sivuuttaa lukon ja avata tiedoston muokkaamista varten."
#. yaKxR
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Avaa ~kopio"
#. UYkFP
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Avaa"
#. GcSXH
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (korjattu asiakirja)"
#. HPqkX
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Tämä asiakirja ei ole uloskuitattuna palvelimella."
#. uPc29
-#: include/sfx2/strings.hrc:269
+#: include/sfx2/strings.hrc:270
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Auta meitä tekemään %PRODUCTNAMEsta entistäkin parempi!"
#. PboiP
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Tule mukaan"
#. GuLGH
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Lahjoituksesi tukevat maailmanlaajuista yhteisöämme."
#. KzgoD
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Lahjoita"
#. G8bbK
-#: include/sfx2/strings.hrc:273
+#: include/sfx2/strings.hrc:274
msgctxt "STR_WHATSNEW"
msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
msgstr "Käynnistit %PRODUCTNAMEn version %PRODUCTVERSION ensimmäisen kerran. Haluatko tietää mitä uutta se sisältää?"
#. J5UkB
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "STR_WHATSNEW_BUTTON"
msgid "Release Notes"
msgstr "Julkaisutiedot"
#. c7NPT
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Tämä asiakirja on avattu vain lukemista varten."
#. KyyFk
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Tämä PDF on avattu kirjoitussuojattuna allekirjoittamista varten."
#. MENvD
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Tämän asiakirjan luokittelumerkintä on %1."
#. 3B3ij
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Tämä asiakirja on luokiteltava ennen kuin leikepöydän sisältö voidaan liittää."
#. BYcYH
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Tämän asiakirjan luokittelutaso on alempi kuin leikepöydän sisällön."
#. EJPzh
-#: include/sfx2/strings.hrc:280
+#: include/sfx2/strings.hrc:281
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Suojaustaso"
#. itVew
-#: include/sfx2/strings.hrc:281
+#: include/sfx2/strings.hrc:282
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Kansallinen turvallisuus:"
#. ZBXbG
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Vientirajoitukset:"
#. QAnvx
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Kuittaa ulos"
#. PwPNw
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Muokkaa asiakirjaa"
#. FCeC5
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Allekirjoita asiakirja"
+#. MEfTq
+#: include/sfx2/strings.hrc:287
+msgctxt "STR_READONLY_FINISH_SIGN"
+msgid "Finish Signing"
+msgstr "Lopeta allekirjoittaminen"
+
#. pkWmU
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:288
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Asiakirjalla on viallinen allekirjoitus."
#. Vd3CU
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:289
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Allekirjoitus oli kelvollinen, mutta asiakirjaa on muutettu"
#. 2HNfx
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:290
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "At least one signature has problems: the certificate could not be validated."
msgstr "Ainakin yhdessä allekirjoituksessa on ongelmia: varmennetta ei voitu validoida."
#. tjCmr
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:291
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "At least one signature has problems: the document is only partially signed."
msgstr "Ainakin yhdessä allekirjoituksessa on ongelmia: asiakirja on allekirjoitettu vain osittain."
#. mU6ot
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:292
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Varmennetta ei voitu validoida ja asiakirja on vain osittain allekirjoitettu."
#. FKDbE
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:293
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Tämä asiakirja on sähköisesti allekirjoitettu, ja allekirjoitus on kelvollinen."
#. rMGka
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:294
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Näytä allekirjoitukset"
#. Wkvpi
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:296
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Sulje paneeli"
#. eprKp
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:297
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Kiinnitä"
#. xE8Tq
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:298
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Irrota"
#. fDc7q
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:300
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Lisää valintoja"
#. Csqeg
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:301
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sulje sivupalkki"
#. zCPnN
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:302
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Sivupalkin asetukset"
#. i5XDP
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:303
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Mukautukset"
#. A4aHk
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:304
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Palauta oletus"
#. DJGFS
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:305
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Sulje sivupalkki"
#. S2DCY
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alitsariini"
#. FkuLG
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Mehiläispesä"
#. uwaPH
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Sininen kaari"
#. hHRDz
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Suunnitelma"
#. AEtHT
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Kirkas sininen"
#. tPjXG
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Hienostunut punainen"
#. QDNuB
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Metsälintu"
#. o8F35
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Vaikutelma"
#. C5N9D
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiraatio"
#. fCKG9
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Valot"
#. AiFo4
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Valkoinen ja vihreä"
#. xo2gC
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropoli"
#. FFDBk
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Keskiyön sininen"
#. yiCzk
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Luontokuvitus"
#. cCZzC
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lyijykynä"
#. Ji4Cw
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Edistys"
#. gtPt9
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Auringonlasku"
#. 73Y2e
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vuosikerta"
#. MSY8y
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Eloisa"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Ansioluettelo"
#. hCpfD
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Oletus"
#. d7Hyk
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:335
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderni"
#. CVJEC
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:336
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderni liikekirje groteskifontilla"
#. 95GeB
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:337
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderni liikekirje antiikvafontilla"
#. XdU49
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:338
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Käyntikortti logolla"
#. UAmSj
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:339
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Yksinkertainen"
#. W7NVH
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:340
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Poista"
#. JReRY
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tyhjennä kaikki"
#. yC8Gs
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:345
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Salasanan pituus"
#. FKFmJ
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Antamasi salasana aiheuttaa yhteentoimivuusongelmia. Anna salasana, joka on lyhyempi kuin 52 tavua (byte) tai pidempi kuin 55 tavua."
#. jBQFN
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:348
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-napsautus avaa hyperlinkin: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Napsauta avataksesi hyperlinkin: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
@@ -2287,16 +2299,16 @@ msgctxt "addtargetdialog|content_predef"
msgid "Social Security Number (US)"
msgstr ""
-#. B95Gn
+#. kdZJN
#: sfx2/uiconfig/ui/addtargetdialog.ui:231
msgctxt "addtargetdialog|checkboxCaseSensitive"
-msgid "Case Sensitive"
+msgid "Match case"
msgstr ""
-#. rCTsx
+#. G2u3B
#: sfx2/uiconfig/ui/addtargetdialog.ui:246
msgctxt "addtargetdialog|checkboxWholeWords"
-msgid "Whole Words Only"
+msgid "Whole words only"
msgstr "Vain kokonaiset sanat"
#. JV66c
@@ -2359,16 +2371,16 @@ msgctxt "autoredactdialog|target"
msgid "Content"
msgstr "Sisältö"
-#. embFg
+#. BBuAc
#: sfx2/uiconfig/ui/autoredactdialog.ui:160
msgctxt "autoredactdialog|target"
-msgid "Case Sensitive"
+msgid "Match case"
msgstr ""
-#. joXcB
+#. obHtC
#: sfx2/uiconfig/ui/autoredactdialog.ui:173
msgctxt "autoredactdialog|target"
-msgid "Whole Words"
+msgid "Whole words"
msgstr "Kokonaiset sanat"
#. 4MVdG
@@ -2450,13 +2462,13 @@ msgid "Favorites"
msgstr "Suosikit"
#. HAe2e
-#: sfx2/uiconfig/ui/charmapcontrol.ui:258
+#: sfx2/uiconfig/ui/charmapcontrol.ui:260
msgctxt "charmapcontrol|label2"
msgid "Recent"
msgstr "Viimeisimmät"
#. BQwCQ
-#: sfx2/uiconfig/ui/charmapcontrol.ui:494
+#: sfx2/uiconfig/ui/charmapcontrol.ui:498
msgctxt "charmapcontrol|specialchardlg"
msgid "More Characters…"
msgstr "Lisää merkkejä…"
@@ -2515,24 +2527,42 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Lisää ominaisuus"
+#. 85KDm
+#: sfx2/uiconfig/ui/custominfopage.ui:22
+msgctxt "custominfopage|extended_tip|add"
+msgid "Click to add a new row to the Properties list."
+msgstr "Lisätään napsauttamalla uusi rivi ominaisuusluetteloon."
+
#. aB3bA
-#: sfx2/uiconfig/ui/custominfopage.ui:36
+#: sfx2/uiconfig/ui/custominfopage.ui:41
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nimi"
#. Ja2JC
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:54
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tyyppi"
#. WxjS6
-#: sfx2/uiconfig/ui/custominfopage.ui:62
+#: sfx2/uiconfig/ui/custominfopage.ui:67
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Arvo"
+#. kSFdB
+#: sfx2/uiconfig/ui/custominfopage.ui:115
+msgctxt "custominfopage|extended_tip|properties"
+msgid "Enter your custom contents. You can change the name, type, and contents of each row. You can add or remove rows. The items will be exported as metadata to other file formats."
+msgstr "Kirjoitetaan käyttäjän määrittämä sisältö. Kunkin rivin nimeä, tyyppiä ja sisältöä voi muuttaa. Rivejä voi lisätä ja poistaa. Tietueet viedään sisällönkuvaustietoina toisiin tiedostomuotoihin."
+
+#. au5jH
+#: sfx2/uiconfig/ui/custominfopage.ui:137
+msgctxt "custominfopage|extended_tip|CustomInfoPage"
+msgid "Allows you to assign custom information fields to your document."
+msgstr "Käyttäjän sallitaan sijoittaa asiakirjaansa muokattuja tietokenttiä."
+
#. pxEPn
#: sfx2/uiconfig/ui/descriptioninfopage.ui:17
msgctxt "descriptioninfopage|label27"
@@ -2557,48 +2587,90 @@ msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "Huomautukset:"
+#. qw238
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:77
+msgctxt "descriptioninfopage|extended_tip|title"
+msgid "Enter a title for the document."
+msgstr "Kirjoitetaan otsikko asiakirjalle."
+
+#. rvZHi
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:93
+msgctxt "descriptioninfopage|extended_tip|subject"
+msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
+msgstr "Kirjataan asiakirjan aihe. Aihe-kenttää voi käyttää saman aihepiirin asiakirjojen ryhmittelyyn."
+
+#. FoxGh
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:109
+msgctxt "descriptioninfopage|extended_tip|keywords"
+msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
+msgstr "Kirjoitetaan sanoja, joilla asiakirjaa voi hakea sisällön perusteella. Avainsanat erotellaan pilkuin. Avainsanoissa voi olla tyhjeitä tai puolipisteitä."
+
+#. bo2q7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:133
+msgctxt "descriptioninfopage|extended_tip|comments"
+msgid "Enter comments to help identify the document."
+msgstr "Kirjoitetaan kommentteja, jotka voivat auttaa asiakirjan tunnistuksessa."
+
+#. sGW3Z
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:146
+msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
+msgid "Contains descriptive information about the document."
+msgstr "Välilehdellä on käyttäjän antama kuvaus asiakirjasta."
+
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:30
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "Sisällytä fontit asiakirjaan"
+#. FzuRv
+#: sfx2/uiconfig/ui/documentfontspage.ui:39
+msgctxt "documentfontspage|extended_tip|embedFonts"
+msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
+msgstr ""
+
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:46
+#: sfx2/uiconfig/ui/documentfontspage.ui:51
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr "_Upota vain asiakirjoissa käytetyt fontit"
-#. zEeJh
-#: sfx2/uiconfig/ui/documentfontspage.ui:68
+#. V8E5f
+#: sfx2/uiconfig/ui/documentfontspage.ui:73
msgctxt "documentfontspage|fontEmbeddingLabel"
-msgid "Font embedding"
-msgstr "Fonttien upottaminen"
+msgid "Font Embedding"
+msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:99
+#: sfx2/uiconfig/ui/documentfontspage.ui:104
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr "_Latinalaiset fontit"
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:115
+#: sfx2/uiconfig/ui/documentfontspage.ui:120
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr "_Aasialaiset fontit"
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:131
+#: sfx2/uiconfig/ui/documentfontspage.ui:136
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr "_Kompleksiset fontit"
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:153
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr "Upotettavat merkistöt"
+#. izc2Y
+#: sfx2/uiconfig/ui/documentfontspage.ui:172
+msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
+msgid "Embed document fonts in the current file."
+msgstr ""
+
#. CCxGn
#: sfx2/uiconfig/ui/documentinfopage.ui:18
msgctxt "documentinfopage|label13"
@@ -2647,60 +2719,84 @@ msgctxt "documentinfopage|userdatacb"
msgid "_Apply user data"
msgstr "Käytä _käyttäjätietoja"
+#. WzBG6
+#: sfx2/uiconfig/ui/documentinfopage.ui:191
+msgctxt "documentinfopage|extended_tip|userdatacb"
+msgid "Saves the user's full name with the file. You can edit the name by choosing Tools - Options - %PRODUCTNAME - User Data."
+msgstr "Tallennetaan käyttäjän kokon nimi tiedostoon. Nimeä voi muokata Työkalut - Asetukset - %PRODUCTNAME - Käyttäjän tiedot -lehdellä."
+
#. LCDUj
-#: sfx2/uiconfig/ui/documentinfopage.ui:197
+#: sfx2/uiconfig/ui/documentinfopage.ui:202
msgctxt "documentinfopage|thumbnailsavecb"
msgid "Save preview image with this document"
msgstr "Tallenna esikatselukuva tämän asiakirjan mukana"
#. JFxmP
-#: sfx2/uiconfig/ui/documentinfopage.ui:213
+#: sfx2/uiconfig/ui/documentinfopage.ui:218
msgctxt "documentinfopage|reset"
msgid "Reset Properties"
msgstr "Palauta ominaisuudet"
+#. HrN2U
+#: sfx2/uiconfig/ui/documentinfopage.ui:225
+msgctxt "documentinfopage|extended_tip|reset"
+msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted."
+msgstr "Asetetaan muokkausaika nollaksi, luomispäiväys nykyhetkeksi ja versionumero 1:ksi. Myös muokkaus- ja tulostuspäivämäärät poistetaan."
+
#. qeWvU
-#: sfx2/uiconfig/ui/documentinfopage.ui:227
+#: sfx2/uiconfig/ui/documentinfopage.ui:237
msgctxt "documentinfopage|signature"
msgid "Di_gital Signatures..."
msgstr "Sähköiset allekirjoitukset..."
#. rEEgJ
-#: sfx2/uiconfig/ui/documentinfopage.ui:246
+#: sfx2/uiconfig/ui/documentinfopage.ui:256
msgctxt "documentinfopage|label11"
msgid "_Size:"
msgstr "Koko:"
#. WNFYB
-#: sfx2/uiconfig/ui/documentinfopage.ui:259
+#: sfx2/uiconfig/ui/documentinfopage.ui:269
msgctxt "documentinfopage|showsize"
msgid "unknown"
msgstr "tuntematon"
#. EgtLE
-#: sfx2/uiconfig/ui/documentinfopage.ui:274
+#: sfx2/uiconfig/ui/documentinfopage.ui:284
msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Sijainti:"
#. 9xhwo
-#: sfx2/uiconfig/ui/documentinfopage.ui:305
+#: sfx2/uiconfig/ui/documentinfopage.ui:315
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Tyyppi:"
#. ZLmAo
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:338
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Vaihda salasana"
#. oqAZE
-#: sfx2/uiconfig/ui/documentinfopage.ui:346
+#: sfx2/uiconfig/ui/documentinfopage.ui:356
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Malli:"
+#. 5pXPV
+#: sfx2/uiconfig/ui/documentinfopage.ui:404
+msgctxt "documentinfopage|extended_tip|nameed"
+msgid "Displays the file name."
+msgstr "Kentässä näkyy tiedoston nimi."
+
+#. VWjRu
+#: sfx2/uiconfig/ui/documentinfopage.ui:430
+msgctxt "documentinfopage|extended_tip|DocumentInfoPage"
+msgid "Contains basic information about the current file."
+msgstr "Sisältää tiedoston perustietoja."
+
#. scgsx
#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:8
msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
@@ -2893,10 +2989,10 @@ msgctxt "helpindexpage|display"
msgid "_Display"
msgstr "Näytä"
-#. P8J6u
+#. 4MkAM
#: sfx2/uiconfig/ui/helpindexpage.ui:119
msgctxt "helpindexpage|label1"
-msgid "_Search term"
+msgid "_Search Term"
msgstr ""
#. wKLbH
@@ -2989,6 +3085,12 @@ msgctxt "helpwindow|searchdialog|tooltip_text"
msgid "Find on this Page"
msgstr "Etsi tältä sivulta"
+#. VnXxR
+#: sfx2/uiconfig/ui/infobar.ui:65
+msgctxt "infobar|close|tooltip_text"
+msgid "Close Infobar"
+msgstr ""
+
#. DpXCY
#: sfx2/uiconfig/ui/inputdialog.ui:86
msgctxt "inputdialog|label"
@@ -3056,31 +3158,49 @@ msgid "No"
msgstr "Ei"
#. muk9B
-#: sfx2/uiconfig/ui/linkeditdialog.ui:8
+#: sfx2/uiconfig/ui/linkeditdialog.ui:13
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
msgstr "Muokkaa DDE-linkkiä"
#. CZn3G
-#: sfx2/uiconfig/ui/linkeditdialog.ui:107
+#: sfx2/uiconfig/ui/linkeditdialog.ui:112
msgctxt "linkeditdialog|label2"
msgid "_Application:"
msgstr "Sovellus:"
#. GZsEX
-#: sfx2/uiconfig/ui/linkeditdialog.ui:121
+#: sfx2/uiconfig/ui/linkeditdialog.ui:126
msgctxt "linkeditdialog|label3"
msgid "_File:"
msgstr "_Tiedosto:"
#. 6Fx6h
-#: sfx2/uiconfig/ui/linkeditdialog.ui:135
+#: sfx2/uiconfig/ui/linkeditdialog.ui:140
msgctxt "linkeditdialog|label4"
msgid "_Category:"
msgstr "Luokka:"
+#. hNqRS
+#: sfx2/uiconfig/ui/linkeditdialog.ui:153
+msgctxt "linkeditdialog|extended_tip|app"
+msgid "Lists the application that last saved the source file. %PRODUCTNAME applications have the server name soffice."
+msgstr ""
+
+#. cj9do
+#: sfx2/uiconfig/ui/linkeditdialog.ui:170
+msgctxt "linkeditdialog|extended_tip|file"
+msgid "Path to the source file. Relative paths must be expressed by full URI, for example, with file://."
+msgstr ""
+
+#. cMPNq
+#: sfx2/uiconfig/ui/linkeditdialog.ui:187
+msgctxt "linkeditdialog|extended_tip|category"
+msgid "Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here."
+msgstr ""
+
#. hiapi
-#: sfx2/uiconfig/ui/linkeditdialog.ui:188
+#: sfx2/uiconfig/ui/linkeditdialog.ui:208
msgctxt "linkeditdialog|label1"
msgid "Modify Link"
msgstr "Muuta linkkiä"
@@ -3097,60 +3217,120 @@ msgctxt "loadtemplatedialog|fromfile"
msgid "From File..."
msgstr "Tiedostosta..."
+#. GE236
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:47
+msgctxt "loadtemplatedialog|extended_tip|fromfile"
+msgid "Locate the file containing the styles that you want to load, and then click Open."
+msgstr "Paikallistetaan ladattavia tyylejä sisältävä tiedosto ja napsautetaan sitten Avaa."
+
+#. YCguC
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:166
+msgctxt "loadtemplatedialog|extended_tip|categories"
+msgid "Lists the available template categories. Click a category to view its contents in the Templates list."
+msgstr "Luettelossa on saatavilla olevat mallien luokat. Napsauttamalla luokkaa sen sisältö näkyy Mallitluettelossa."
+
#. PZS7L
-#: sfx2/uiconfig/ui/loadtemplatedialog.ui:169
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:179
msgctxt "loadtemplatedialog|label1"
msgid "Categories"
msgstr "Luokat"
+#. hkGaT
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:238
+msgctxt "loadtemplatedialog|extended_tip|templates"
+msgid "Lists the available templates for the selected category."
+msgstr "Luettelossa on valitun luokan saatavilla oleva mallit."
+
#. hryGV
-#: sfx2/uiconfig/ui/loadtemplatedialog.ui:236
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:251
msgctxt "loadtemplatedialog|label2"
msgid "Templates"
msgstr "Mallit"
#. Bm4Mx
-#: sfx2/uiconfig/ui/loadtemplatedialog.ui:257
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:272
msgctxt "loadtemplatedialog|text"
msgid "Te_xt"
msgstr "Teksti"
+#. VLWfZ
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:281
+msgctxt "loadtemplatedialog|extended_tip|text"
+msgid "Loads the paragraph and the character styles from the selected document into the current document."
+msgstr "Ladataan kappale- ja merkkityylit valitusta asiakirjasta käsiteltävään asiakirjaan."
+
#. d2q55
-#: sfx2/uiconfig/ui/loadtemplatedialog.ui:272
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:292
msgctxt "loadtemplatedialog|frame"
msgid "_Frame"
msgstr "Kehys"
+#. 4ZF6u
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:301
+msgctxt "loadtemplatedialog|extended_tip|frame"
+msgid "Loads the frame styles from the selected document into the current document."
+msgstr "Ladataan kehystyylit valitusta asiakirjasta käsiteltävään asiakirjaan."
+
#. GZchA
-#: sfx2/uiconfig/ui/loadtemplatedialog.ui:287
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:312
msgctxt "loadtemplatedialog|pages"
msgid "_Pages"
msgstr "Sivut"
+#. o2C8c
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:321
+msgctxt "loadtemplatedialog|extended_tip|pages"
+msgid "Loads the page styles from the selected document into the current document."
+msgstr "Ladataan sivutyylit valitusta asiakirjasta käsiteltävään asiakirjaan."
+
#. Fc8cn
-#: sfx2/uiconfig/ui/loadtemplatedialog.ui:302
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:332
msgctxt "loadtemplatedialog|numbering"
msgid "N_umbering"
msgstr "Numerointi"
+#. HMyK2
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:341
+msgctxt "loadtemplatedialog|extended_tip|numbering"
+msgid "Loads the numbering styles from the selected document into the current document."
+msgstr "Ladataan numerointityylit valitusta asiakirjasta käsiteltävään asiakirjaan."
+
#. VWzsG
-#: sfx2/uiconfig/ui/loadtemplatedialog.ui:317
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:352
msgctxt "loadtemplatedialog|overwrite"
msgid "_Overwrite"
msgstr "Korvaa"
+#. A9ogA
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:361
+msgctxt "loadtemplatedialog|extended_tip|overwrite"
+msgid "Replaces styles in the current document that have the same name as the styles you are loading."
+msgstr "Sallitaan käsiteltävän asiakirjan tyylin korvaaminen samannimisellä ladattavalla tyylillä."
+
#. YrYis
-#: sfx2/uiconfig/ui/loadtemplatedialog.ui:344
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:384
msgctxt "loadtemplatedialog|alttitle"
msgid "Load Styles"
msgstr "Lataa tyylit"
#. X5Pi5
-#: sfx2/uiconfig/ui/loadtemplatedialog.ui:380
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:420
msgctxt "loadtemplatedialog|label3"
msgid "Pre_view"
msgstr "Esikatselu"
+#. hR7cK
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:426
+msgctxt "loadtemplatedialog|extended_tip|expander"
+msgid "Shows or hides a preview of a selected template."
+msgstr "Näytetään tai kätketään valitun mallin esikatselu."
+
+#. CRcca
+#: sfx2/uiconfig/ui/loadtemplatedialog.ui:456
+msgctxt "loadtemplatedialog|extended_tip|LoadTemplateDialog"
+msgid "Imports formatting styles from another document or template into the current document."
+msgstr ""
+
#. EAhup
#: sfx2/uiconfig/ui/managestylepage.ui:37
msgctxt "managestylepage|nameft"
@@ -3235,180 +3415,306 @@ msgctxt "optprintpage|printer"
msgid "_Printer"
msgstr "Tulostinta"
+#. PUG9y
+#: sfx2/uiconfig/ui/optprintpage.ui:47
+msgctxt "extended_tip|printer"
+msgid "Specifies whether the print settings apply to direct printing or to printing to a file."
+msgstr ""
+
#. Eyv8g
-#: sfx2/uiconfig/ui/optprintpage.ui:53
+#: sfx2/uiconfig/ui/optprintpage.ui:58
msgctxt "optprintpage|file"
msgid "Print to _file"
msgstr "Tiedostoon tulostamista"
+#. TMHvE
+#: sfx2/uiconfig/ui/optprintpage.ui:68
+msgctxt "extended_tip|file"
+msgid "Specifies whether the print settings apply to direct printing or to printing to a file."
+msgstr ""
+
#. C8jvp
-#: sfx2/uiconfig/ui/optprintpage.ui:75
+#: sfx2/uiconfig/ui/optprintpage.ui:85
msgctxt "optprintpage|label4"
msgid "Settings for"
msgstr "Asetukset koskevat:"
#. 2T5Af
-#: sfx2/uiconfig/ui/optprintpage.ui:108
+#: sfx2/uiconfig/ui/optprintpage.ui:118
msgctxt "optprintpage|papersize"
msgid "P_aper size"
msgstr "Paperi_koko"
+#. yj4DA
+#: sfx2/uiconfig/ui/optprintpage.ui:127
+msgctxt "extended_tip|papersize"
+msgid "Mark this check box if a certain paper size is needed for printing the current document."
+msgstr "Valintaruutu merkitään, jos tietty arkkikoko tarvitaan käsiteltävän asiakirjan tulostukseen."
+
#. stDFq
-#: sfx2/uiconfig/ui/optprintpage.ui:123
+#: sfx2/uiconfig/ui/optprintpage.ui:138
msgctxt "optprintpage|paperorient"
msgid "Pap_er orientation"
msgstr "Paperin _suunta"
+#. FdFNk
+#: sfx2/uiconfig/ui/optprintpage.ui:147
+msgctxt "extended_tip|paperorient"
+msgid "Mark this check box if you need a certain paper orientation for printing the current document."
+msgstr "Valintaruutu merkitään, jos tietty arkin suunta tarvitaan käsiteltävän asiakirjan tulostukseen."
+
#. L6rtF
-#: sfx2/uiconfig/ui/optprintpage.ui:138
+#: sfx2/uiconfig/ui/optprintpage.ui:158
msgctxt "optprintpage|trans"
msgid "_Transparency"
msgstr "_Läpinäkyvyys"
+#. F6nF9
+#: sfx2/uiconfig/ui/optprintpage.ui:167
+msgctxt "extended_tip|trans"
+msgid "Mark this check box if you always want to be warned if transparent objects are contained in the document."
+msgstr "Valintaruutu merkitään, kun halutaan, että asiakirjan läpinäkyvistä objekteista varoitetaan aina."
+
#. C5jZN
-#: sfx2/uiconfig/ui/optprintpage.ui:159
+#: sfx2/uiconfig/ui/optprintpage.ui:184
msgctxt "optprintpage|label2"
msgid "Warnings"
msgstr "Varoitukset"
#. PJFLE
-#: sfx2/uiconfig/ui/optprintpage.ui:190
+#: sfx2/uiconfig/ui/optprintpage.ui:215
msgctxt "optprintpage|reducegrad"
msgid "Reduce _gradient"
msgstr "Heikennä liukuvärjäystä"
+#. GC8dk
+#: sfx2/uiconfig/ui/optprintpage.ui:224
+msgctxt "extended_tip|reducegrad"
+msgid "If this field is marked, gradients are printed with reduced quality."
+msgstr "Jos tämä kenttä on merkitty, liukuvärjäysten tulostuslaatua alennetaan."
+
#. skDME
-#: sfx2/uiconfig/ui/optprintpage.ui:220
+#: sfx2/uiconfig/ui/optprintpage.ui:250
msgctxt "optprintpage|reducegradstripes"
msgid "Gradient _stripes:"
msgstr "Liukuvärjäysraitoja:"
+#. k8zh7
+#: sfx2/uiconfig/ui/optprintpage.ui:260
+msgctxt "extended_tip|reducegradstripes"
+msgid "Specifies the maximum number of gradient stripes for printing."
+msgstr ""
+
+#. 5HCxT
+#: sfx2/uiconfig/ui/optprintpage.ui:277
+msgctxt "extended_tip|reducegradstep"
+msgid "Specifies the maximum number of gradient stripes for printing."
+msgstr ""
+
#. W8LE7
-#: sfx2/uiconfig/ui/optprintpage.ui:254
+#: sfx2/uiconfig/ui/optprintpage.ui:294
msgctxt "optprintpage|reducegradcolor"
msgid "Intermediate _color"
msgstr "Käytä väli_väriä"
+#. TUbxx
+#: sfx2/uiconfig/ui/optprintpage.ui:304
+msgctxt "extended_tip|reducegradcolor"
+msgid "Specifies that gradients are only printed in a single intermediate color."
+msgstr "Merkinnällä määrätään, että liukuvärjäyksessä käytetään vain yhtä väliväriä."
+
#. myMLR
-#: sfx2/uiconfig/ui/optprintpage.ui:284
+#: sfx2/uiconfig/ui/optprintpage.ui:329
msgctxt "optprintpage|label1"
msgid "Reduce Gradient"
msgstr "Heikennä liukuvärjäystä"
+#. abbre
+#: sfx2/uiconfig/ui/optprintpage.ui:337
+msgctxt "extended_tip|frame2"
+msgid "Defines which warnings appear before printing begins."
+msgstr "Määritetään, mitkä varoitukset voivat ilmestyä ennen tulostuksen alkua."
+
#. qF2KM
-#: sfx2/uiconfig/ui/optprintpage.ui:325
+#: sfx2/uiconfig/ui/optprintpage.ui:375
msgctxt "optprintpage|reducebitmapnormal"
msgid "N_ormal print quality"
msgstr "_Normaali tulostuslaatu"
+#. i5T3j
+#: sfx2/uiconfig/ui/optprintpage.ui:385
+msgctxt "extended_tip|reducebitmapnormal"
+msgid "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. "
+msgstr ""
+
#. EZGK5
-#: sfx2/uiconfig/ui/optprintpage.ui:346
+#: sfx2/uiconfig/ui/optprintpage.ui:401
msgctxt "optprintpage|reducebitmapresol"
msgid "Reso_lution:"
msgstr "Ta_rkkuus:"
+#. q3aJL
+#: sfx2/uiconfig/ui/optprintpage.ui:411
+msgctxt "extended_tip|reducebitmapresol"
+msgid "Specifies the maximum print quality in dpi. The resolution can only be reduced and not increased."
+msgstr ""
+
#. 6ALtE
-#: sfx2/uiconfig/ui/optprintpage.ui:365
+#: sfx2/uiconfig/ui/optprintpage.ui:425
msgctxt "optprintpage|reducebitmapdpi"
msgid "72 DPI"
msgstr "72 DPI"
#. FgpJ3
-#: sfx2/uiconfig/ui/optprintpage.ui:366
+#: sfx2/uiconfig/ui/optprintpage.ui:426
msgctxt "optprintpage|reducebitmapdpi"
msgid "96 DPI"
msgstr "96 DPI"
#. d7BqR
-#: sfx2/uiconfig/ui/optprintpage.ui:367
+#: sfx2/uiconfig/ui/optprintpage.ui:427
msgctxt "optprintpage|reducebitmapdpi"
msgid "150 DPI (Fax)"
msgstr "150 DPI (faksi)"
#. 46imh
-#: sfx2/uiconfig/ui/optprintpage.ui:368
+#: sfx2/uiconfig/ui/optprintpage.ui:428
msgctxt "optprintpage|reducebitmapdpi"
msgid "200 DPI (default)"
msgstr "200 DPI (oletus)"
#. AsLSp
-#: sfx2/uiconfig/ui/optprintpage.ui:369
+#: sfx2/uiconfig/ui/optprintpage.ui:429
msgctxt "optprintpage|reducebitmapdpi"
msgid "300 DPI"
msgstr "300 DPI"
#. qZJg5
-#: sfx2/uiconfig/ui/optprintpage.ui:370
+#: sfx2/uiconfig/ui/optprintpage.ui:430
msgctxt "optprintpage|reducebitmapdpi"
msgid "600 DPI"
msgstr "600 DPI"
+#. 8KFUc
+#: sfx2/uiconfig/ui/optprintpage.ui:434
+msgctxt "extended_tip|reducebitmapdpi"
+msgid "Specifies the maximum print quality in dpi. The resolution can only be reduced and not increased."
+msgstr ""
+
#. YXTXc
-#: sfx2/uiconfig/ui/optprintpage.ui:386
+#: sfx2/uiconfig/ui/optprintpage.ui:451
msgctxt "optprintpage|reducebitmapoptimal"
msgid "_High print quality"
msgstr "H_yvä tulostuslaatu"
+#. BdCpv
+#: sfx2/uiconfig/ui/optprintpage.ui:461
+msgctxt "extended_tip|reducebitmapoptimal"
+msgid "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. "
+msgstr ""
+
#. ySmQe
-#: sfx2/uiconfig/ui/optprintpage.ui:410
+#: sfx2/uiconfig/ui/optprintpage.ui:480
msgctxt "optprintpage|reducebitmap"
msgid "Reduce _bitmaps"
msgstr "Heikennä bittikarttoja"
+#. nNjfk
+#: sfx2/uiconfig/ui/optprintpage.ui:489
+msgctxt "extended_tip|reducebitmap"
+msgid "Specifies that bitmaps are printed with reduced quality. The resolution can only be reduced and not increased."
+msgstr "Merkinnällä määrätään, että bittikartat tulostetaan laatu alennettuna. Tarkkuutta voidaan vain vähentää, ei lisätä."
+
#. YxX2s
-#: sfx2/uiconfig/ui/optprintpage.ui:431
+#: sfx2/uiconfig/ui/optprintpage.ui:506
msgctxt "optprintpage|label1"
msgid "Reduce Bitmaps"
msgstr "Heikennä bittikarttoja"
#. B4C76
-#: sfx2/uiconfig/ui/optprintpage.ui:472
+#: sfx2/uiconfig/ui/optprintpage.ui:547
msgctxt "optprintpage|reducetransauto"
msgid "Auto_matically"
msgstr "A_utomaattisesti"
+#. ehRjn
+#: sfx2/uiconfig/ui/optprintpage.ui:557
+msgctxt "extended_tip|reducetransauto"
+msgid "Specifies that the transparency is only printed if the transparent area covers less than a quarter of the entire page."
+msgstr "Määrätään, että läpinäkyvyys tulostetaan vain, jos läpinäkyvä alue peittää vähemmän kuin neljännessivun."
+
#. K7P4C
-#: sfx2/uiconfig/ui/optprintpage.ui:488
+#: sfx2/uiconfig/ui/optprintpage.ui:568
msgctxt "optprintpage|reducetransnone"
msgid "_No transparency"
msgstr "_Ei läpinäkyvyyttä"
+#. ZuLVY
+#: sfx2/uiconfig/ui/optprintpage.ui:578
+msgctxt "extended_tip|reducetransnone"
+msgid "With this option transparency is never printed."
+msgstr "Tällä vaihtoehdolla läpinäkyvyyttä ei tulosteta koskaan."
+
#. 5qQBR
-#: sfx2/uiconfig/ui/optprintpage.ui:512
+#: sfx2/uiconfig/ui/optprintpage.ui:597
msgctxt "optprintpage|reducetrans"
msgid "_Reduce transparency"
msgstr "_Heikennä läpinäkyvyyttä"
+#. yDstT
+#: sfx2/uiconfig/ui/optprintpage.ui:606
+msgctxt "extended_tip|reducetrans"
+msgid "If you mark this field the transparent objects will be printed like normal, non-transparent objects, depending on your selection in the following two option buttons."
+msgstr "Mikäli kenttä merkitään, läpinäkyvät objektit tulostetaan kuten tavalliset läpinäkymättömät objektit, riippuen oheisten valintanappien asetuksesta."
+
#. B5Cpd
-#: sfx2/uiconfig/ui/optprintpage.ui:533
+#: sfx2/uiconfig/ui/optprintpage.ui:623
msgctxt "optprintpage|label1"
msgid "Reduce Transparency"
msgstr "Heikennä läpinäkyvyyttä"
#. GAFzh
-#: sfx2/uiconfig/ui/optprintpage.ui:564
+#: sfx2/uiconfig/ui/optprintpage.ui:654
msgctxt "optprintpage|pdf"
msgid "_PDF as standard print job format"
msgstr "PDF tulostustyön vakiomuotona"
#. wm7C7
-#: sfx2/uiconfig/ui/optprintpage.ui:579
+#: sfx2/uiconfig/ui/optprintpage.ui:669
msgctxt "optprintpage|converttogray"
msgid "Con_vert colors to grayscale"
msgstr "_Muunna värit harmaasävyiksi"
+#. UNSqH
+#: sfx2/uiconfig/ui/optprintpage.ui:678
+msgctxt "extended_tip|converttogray"
+msgid "Specifies that all colors are printed only as grayscale."
+msgstr "Merkinnällä määrätään, että kaikki värit tulostetaan vain harmaasävyinä."
+
#. CrFLq
-#: sfx2/uiconfig/ui/optprintpage.ui:594
+#: sfx2/uiconfig/ui/optprintpage.ui:689
msgctxt "optprintpage|reducebitmaptrans"
msgid "Include transparent objects"
msgstr "Sisällytä läpinäkyvät objektit"
+#. FFAFJ
+#: sfx2/uiconfig/ui/optprintpage.ui:698
+msgctxt "extended_tip|reducebitmaptrans"
+msgid "If this field is marked, the reduction in print quality for bitmaps also applies to the transparent areas of objects."
+msgstr "Jos tämä kenttä on merkitty, tulostuslaadun alentaminen koskee myös objektien läpinäkyviä alueita."
+
#. bWPko
-#: sfx2/uiconfig/ui/optprintpage.ui:615
+#: sfx2/uiconfig/ui/optprintpage.ui:715
msgctxt "optprintpage|label4"
msgid "Defaults"
msgstr "Oletukset"
+#. mMKbc
+#: sfx2/uiconfig/ui/optprintpage.ui:737
+msgctxt "extended_tip|OptPrintPage"
+msgid "Specifies the print setting options."
+msgstr "Määritetään tulostuksen asetukset."
+
#. QrtGb
#: sfx2/uiconfig/ui/password.ui:8
msgctxt "password|PasswordDialog"
@@ -3439,26 +3745,50 @@ msgctxt "password|pass1ed-atkobject"
msgid "Password"
msgstr "Salasana"
+#. yVorz
+#: sfx2/uiconfig/ui/password.ui:166
+msgctxt "password|extended_tip|pass1ed"
+msgid "Type a password. A password is case sensitive."
+msgstr ""
+
+#. kEcVk
+#: sfx2/uiconfig/ui/password.ui:185
+msgctxt "password|extended_tip|confirm1ed"
+msgid "Re-enter the password."
+msgstr "Annetaan sama salasana uudestaan."
+
#. JBCUB
-#: sfx2/uiconfig/ui/password.ui:196
+#: sfx2/uiconfig/ui/password.ui:202
msgctxt "password|label1"
msgid "Password"
msgstr "Salasana"
#. zDBUt
-#: sfx2/uiconfig/ui/password.ui:231
+#: sfx2/uiconfig/ui/password.ui:237
msgctxt "password|pass2ft"
msgid "Password:"
msgstr "Salasana:"
#. 8RcEw
-#: sfx2/uiconfig/ui/password.ui:245
+#: sfx2/uiconfig/ui/password.ui:251
msgctxt "password|confirm2ft"
msgid "Confirm:"
msgstr "Vahvista:"
+#. EkHiq
+#: sfx2/uiconfig/ui/password.ui:271
+msgctxt "password|extended_tip|pass2ed"
+msgid "Type a password. A password is case sensitive."
+msgstr ""
+
+#. c4nGS
+#: sfx2/uiconfig/ui/password.ui:290
+msgctxt "password|extended_tip|confirm2ed"
+msgid "Re-enter the password."
+msgstr "Annetaan sama salasana uudestaan."
+
#. mCxpj
-#: sfx2/uiconfig/ui/password.ui:291
+#: sfx2/uiconfig/ui/password.ui:307
msgctxt "password|label2"
msgid "Second Password"
msgstr "Toinen salasana"
@@ -3523,18 +3853,42 @@ msgctxt "saveastemplatedlg|create_label"
msgid "Template _Name"
msgstr "Mallipohjan nimi"
+#. Xo6BH
+#: sfx2/uiconfig/ui/saveastemplatedlg.ui:123
+msgctxt "saveastemplatedlg|extended_tip|name_entry"
+msgid "Enter a name for the template."
+msgstr ""
+
#. izWnA
-#: sfx2/uiconfig/ui/saveastemplatedlg.ui:146
+#: sfx2/uiconfig/ui/saveastemplatedlg.ui:151
msgctxt "saveastemplatedlg|select_label"
msgid "Template _Category"
msgstr "Mallipohjan luokka"
+#. JBPKb
+#: sfx2/uiconfig/ui/saveastemplatedlg.ui:199
+msgctxt "saveastemplatedlg|extended_tip|categorylb"
+msgid "Select a category in which to save the new template."
+msgstr ""
+
#. wpZGc
-#: sfx2/uiconfig/ui/saveastemplatedlg.ui:209
+#: sfx2/uiconfig/ui/saveastemplatedlg.ui:219
msgctxt "saveastemplatedlg|defaultcb"
msgid "_Set as default template"
msgstr "Aseta oletusmalliksi"
+#. syB4y
+#: sfx2/uiconfig/ui/saveastemplatedlg.ui:228
+msgctxt "saveastemplatedlg|extended_tip|defaultcb"
+msgid "The new template will be used as the default template."
+msgstr ""
+
+#. gH8PB
+#: sfx2/uiconfig/ui/saveastemplatedlg.ui:256
+msgctxt "saveastemplatedlg|extended_tip|SaveAsTemplateDialog"
+msgid "Saves the current document as a template."
+msgstr ""
+
#. 9tSnA
#: sfx2/uiconfig/ui/searchdialog.ui:8
msgctxt "searchdialog|SearchDialog"
@@ -3548,31 +3902,31 @@ msgid "_Find"
msgstr "_Etsi"
#. G5Qc9
-#: sfx2/uiconfig/ui/searchdialog.ui:98
+#: sfx2/uiconfig/ui/searchdialog.ui:97
msgctxt "searchdialog|label1"
msgid "_Search for:"
msgstr "Etsittävä:"
#. TY5bL
-#: sfx2/uiconfig/ui/searchdialog.ui:123
+#: sfx2/uiconfig/ui/searchdialog.ui:122
msgctxt "searchdialog|matchcase"
msgid "Ma_tch case"
msgstr "Sama kir_jainkoko"
#. B2ksn
-#: sfx2/uiconfig/ui/searchdialog.ui:138
+#: sfx2/uiconfig/ui/searchdialog.ui:137
msgctxt "searchdialog|wholewords"
msgid "Whole wor_ds only"
msgstr "Vai_n kokonaiset sanat"
#. ycWSx
-#: sfx2/uiconfig/ui/searchdialog.ui:153
+#: sfx2/uiconfig/ui/searchdialog.ui:152
msgctxt "searchdialog|backwards"
msgid "Bac_kwards"
msgstr "_Taaksepäin"
#. C7fSt
-#: sfx2/uiconfig/ui/searchdialog.ui:168
+#: sfx2/uiconfig/ui/searchdialog.ui:167
msgctxt "searchdialog|wrap"
msgid "Wrap _around"
msgstr "Jatka lopusta alkuun / alusta loppuun"
@@ -3583,158 +3937,188 @@ msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "Avaa kirjoitussuojattuna"
+#. HCEUE
+#: sfx2/uiconfig/ui/securityinfopage.ui:34
+msgctxt "securityinfopage|extended_tip|readonly"
+msgid "Select to allow this document to be opened in read-only mode only."
+msgstr "Merkinnällä sallitaan tämä asiakirja avattavaksi vain kirjoitussuojattuna."
+
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:40
+#: sfx2/uiconfig/ui/securityinfopage.ui:45
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "Nauhoita muutoshistoria"
+#. pNhop
+#: sfx2/uiconfig/ui/securityinfopage.ui:54
+msgctxt "securityinfopage|extended_tip|recordchanges"
+msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
+msgstr ""
+
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:60
+#: sfx2/uiconfig/ui/securityinfopage.ui:70
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "Suojaa..."
+#. 6T6ZP
+#: sfx2/uiconfig/ui/securityinfopage.ui:76
+msgctxt "securityinfopage|extended_tip|protect"
+msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
+msgstr "Salasanasuojataan muutosten nauhoitustila. Jos käsiteltävän asiakirjan muutosnauhoitus on suojattu, painikkeen nimi on Poista suojaus.... Suojauksen poistamiseksi napsautetaan Poista suojaus... -painiketta ja kirjoitetaan oikea salasana."
+
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:73
+#: sfx2/uiconfig/ui/securityinfopage.ui:88
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "Poista suojaus..."
+#. UEdGx
+#: sfx2/uiconfig/ui/securityinfopage.ui:95
+msgctxt "securityinfopage|extended_tip|unprotect"
+msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
+msgstr "Salasanasuojataan muutosten nauhoitustila. Jos käsiteltävän asiakirjan muutosnauhoitus on suojattu, painikkeen nimi on Poista suojaus.... Suojauksen poistamiseksi napsautetaan Poista suojaus... -painiketta ja kirjoitetaan oikea salasana."
+
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:99
+#: sfx2/uiconfig/ui/securityinfopage.ui:119
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "Yhteiskäyttöä koskevat asetukset"
+#. VXrJ5
+#: sfx2/uiconfig/ui/securityinfopage.ui:127
+msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
+msgid "Sets password options for the current document."
+msgstr "Tehdään käsiteltävän asiakirjan salasana-asetukset."
+
#. EDC9x
-#: sfx2/uiconfig/ui/startcenter.ui:18
+#: sfx2/uiconfig/ui/startcenter.ui:17
msgctxt "startcenter|clear_all"
msgid "Clear Recent Documents"
msgstr "Unohda viimeisimmät asiakirjat"
#. gCfQ9
-#: sfx2/uiconfig/ui/startcenter.ui:39
+#: sfx2/uiconfig/ui/startcenter.ui:38
msgctxt "startcenter|filter_writer"
msgid "Writer Templates"
msgstr "Writer-mallit"
#. kj5ts
-#: sfx2/uiconfig/ui/startcenter.ui:46
+#: sfx2/uiconfig/ui/startcenter.ui:45
msgctxt "startcenter|filter_calc"
msgid "Calc Templates"
msgstr "Calc-mallit"
#. HEYvU
-#: sfx2/uiconfig/ui/startcenter.ui:53
+#: sfx2/uiconfig/ui/startcenter.ui:52
msgctxt "startcenter|filter_impress"
msgid "Impress Templates"
msgstr "Impress-mallit"
#. uWEpu
-#: sfx2/uiconfig/ui/startcenter.ui:60
+#: sfx2/uiconfig/ui/startcenter.ui:59
msgctxt "startcenter|filter_draw"
msgid "Draw Templates"
msgstr "Draw-mallit"
#. e3TH8
-#: sfx2/uiconfig/ui/startcenter.ui:73
+#: sfx2/uiconfig/ui/startcenter.ui:72
msgctxt "startcenter|manage"
msgid "Manage Templates"
msgstr "Hallitse malleja"
#. isnw8
-#: sfx2/uiconfig/ui/startcenter.ui:146
+#: sfx2/uiconfig/ui/startcenter.ui:155
msgctxt "startcenter|open_all"
msgid "_Open File"
msgstr "Avaa tiedosto"
#. 6zjop
-#: sfx2/uiconfig/ui/startcenter.ui:166
+#: sfx2/uiconfig/ui/startcenter.ui:176
msgctxt "startcenter|open_remote"
msgid "Remote File_s"
msgstr "Tiedostot verkossa"
#. aoYLW
-#: sfx2/uiconfig/ui/startcenter.ui:198
+#: sfx2/uiconfig/ui/startcenter.ui:209
msgctxt "startcenter|open_recent"
msgid "_Recent Files"
msgstr "Viimeisimmät tiedostot"
#. BnkvG
-#: sfx2/uiconfig/ui/startcenter.ui:217
+#: sfx2/uiconfig/ui/startcenter.ui:233
msgctxt "startcenter|templates_all"
msgid "T_emplates"
msgstr "Mallit"
#. JEkqY
-#: sfx2/uiconfig/ui/startcenter.ui:253
+#: sfx2/uiconfig/ui/startcenter.ui:274
msgctxt "startcenter|create_label"
msgid "Create:"
msgstr "Luo:"
#. SY4iY
-#: sfx2/uiconfig/ui/startcenter.ui:264
+#: sfx2/uiconfig/ui/startcenter.ui:285
msgctxt "startcenter|writer_all"
msgid "_Writer Document"
msgstr "Writer-tekstiasiakirja"
#. Bvz5c
-#: sfx2/uiconfig/ui/startcenter.ui:283
+#: sfx2/uiconfig/ui/startcenter.ui:305
msgctxt "startcenter|calc_all"
msgid "_Calc Spreadsheet"
msgstr "Calc-laskentataulukko"
#. RxGP6
-#: sfx2/uiconfig/ui/startcenter.ui:302
+#: sfx2/uiconfig/ui/startcenter.ui:325
msgctxt "startcenter|impress_all"
msgid "_Impress Presentation"
msgstr "Impress-esitys"
#. 7fE2M
-#: sfx2/uiconfig/ui/startcenter.ui:321
+#: sfx2/uiconfig/ui/startcenter.ui:345
msgctxt "startcenter|draw_all"
msgid "_Draw Drawing"
msgstr "Draw-piirros"
#. 7wn8r
-#: sfx2/uiconfig/ui/startcenter.ui:340
+#: sfx2/uiconfig/ui/startcenter.ui:365
msgctxt "startcenter|math_all"
msgid "_Math Formula"
msgstr "Math-kaava"
#. nnwDC
-#: sfx2/uiconfig/ui/startcenter.ui:359
+#: sfx2/uiconfig/ui/startcenter.ui:385
msgctxt "startcenter|database_all"
msgid "_Base Database"
msgstr "Base-tietokanta"
#. ZEDmn
-#: sfx2/uiconfig/ui/startcenter.ui:391
+#: sfx2/uiconfig/ui/startcenter.ui:407
msgctxt "startcenter|althelplabel"
msgid "He_lp"
msgstr "Ohje"
#. oqVes
-#: sfx2/uiconfig/ui/startcenter.ui:447
+#: sfx2/uiconfig/ui/startcenter.ui:463
msgctxt "startcenter|extensions"
msgid "E_xtensions"
msgstr "Lisäosat"
#. rDw4E
-#: sfx2/uiconfig/ui/startcenter.ui:474
+#: sfx2/uiconfig/ui/startcenter.ui:490
msgctxt "startcenter|label1"
msgid "Application"
msgstr "Sovellus"
#. UiDMp
-#: sfx2/uiconfig/ui/startcenter.ui:492
+#: sfx2/uiconfig/ui/startcenter.ui:510
msgctxt "startcenter|all_recent_label"
msgid "Recent Files List"
msgstr "Viimeisimmät tiedostot"
#. kho2B
-#: sfx2/uiconfig/ui/startcenter.ui:505
+#: sfx2/uiconfig/ui/startcenter.ui:523
msgctxt "startcenter|local_view_label"
msgid "Templates List"
msgstr "Mallipohjat"
@@ -3799,131 +4183,137 @@ msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
msgstr "Mallit"
+#. rhuYP
+#: sfx2/uiconfig/ui/templatedlg.ui:92
+msgctxt "templatedlg|hidedialogcb"
+msgid "Show this dialog at startup"
+msgstr "Näytä tämä ikkuna käynnistettäessä"
+
#. 32zsB
-#: sfx2/uiconfig/ui/templatedlg.ui:146
+#: sfx2/uiconfig/ui/templatedlg.ui:159
msgctxt "templatedlg|search_filter|tooltip_text"
msgid "Search"
msgstr "Etsi"
#. sGZMC
-#: sfx2/uiconfig/ui/templatedlg.ui:148
+#: sfx2/uiconfig/ui/templatedlg.ui:161
msgctxt "templatedlg|search_filter"
msgid "Search..."
msgstr "Etsi..."
#. fXVNY
-#: sfx2/uiconfig/ui/templatedlg.ui:170
+#: sfx2/uiconfig/ui/templatedlg.ui:183
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
msgstr "Suodata sovelluksen mukaan"
#. tqVhJ
-#: sfx2/uiconfig/ui/templatedlg.ui:173
+#: sfx2/uiconfig/ui/templatedlg.ui:186
msgctxt "templatedlg|applist"
msgid "All Applications"
msgstr "Kaikki sovellukset"
#. 4CuhU
-#: sfx2/uiconfig/ui/templatedlg.ui:174
+#: sfx2/uiconfig/ui/templatedlg.ui:187
msgctxt "templatedlg|applist"
msgid "Documents"
msgstr "Asiakirjat"
#. eECt7
-#: sfx2/uiconfig/ui/templatedlg.ui:175
+#: sfx2/uiconfig/ui/templatedlg.ui:188
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
msgstr "Laskentataulukot"
#. ajLbV
-#: sfx2/uiconfig/ui/templatedlg.ui:176
+#: sfx2/uiconfig/ui/templatedlg.ui:189
msgctxt "templatedlg|applist"
msgid "Presentations"
msgstr "Esitykset"
#. LfUzB
-#: sfx2/uiconfig/ui/templatedlg.ui:177
+#: sfx2/uiconfig/ui/templatedlg.ui:190
msgctxt "templatedlg|applist"
msgid "Drawings"
msgstr "Piirrokset"
#. t7zE7
-#: sfx2/uiconfig/ui/templatedlg.ui:191
+#: sfx2/uiconfig/ui/templatedlg.ui:204
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
msgstr "Suodata kategorian mukaan"
#. 93CGw
-#: sfx2/uiconfig/ui/templatedlg.ui:193
+#: sfx2/uiconfig/ui/templatedlg.ui:206
msgctxt "templatedlg|folderlist"
msgid "All Categories"
msgstr "Kaikki luokat"
#. NF9wE
-#: sfx2/uiconfig/ui/templatedlg.ui:214
+#: sfx2/uiconfig/ui/templatedlg.ui:227
msgctxt "templatedlg|label1"
msgid "Filter"
msgstr "Suodatin"
#. j39jM
-#: sfx2/uiconfig/ui/templatedlg.ui:321
+#: sfx2/uiconfig/ui/templatedlg.ui:334
msgctxt "templatedlg|thumbnailviewlabel"
msgid "Template List"
msgstr "Mallipohjat"
#. GkjAS
-#: sfx2/uiconfig/ui/templatedlg.ui:343
+#: sfx2/uiconfig/ui/templatedlg.ui:352
msgctxt "templatedlg|action_menu|tooltip_text"
msgid "Settings"
msgstr "Asetukset"
-#. otFhU
-#: sfx2/uiconfig/ui/templatedlg.ui:361
-msgctxt "templatedlg|online_link|tooltip_text"
-msgid "Browse online templates"
-msgstr "Selaa malleja verkossa"
+#. hG7qW
+#: sfx2/uiconfig/ui/templatedlg.ui:367
+msgctxt "templatedlg|extensions_btn"
+msgid "_Extensions"
+msgstr ""
-#. rhuYP
-#: sfx2/uiconfig/ui/templatedlg.ui:374
-msgctxt "templatedlg|hidedialogcb"
-msgid "Show this dialog at startup"
-msgstr "Näytä tämä ikkuna käynnistettäessä"
+#. uC7Rk
+#: sfx2/uiconfig/ui/templatedlg.ui:371
+msgctxt "templatedlg|online_link|tooltip_text"
+msgid "Add more templates via extension"
+msgstr ""
-#. EZBF9
-#: sfx2/uiconfig/ui/templatedlg.ui:402
-msgctxt "templatedlg|move_btn"
-msgid "Move"
-msgstr "Siirrä"
+#. PXRa3
+#: sfx2/uiconfig/ui/templatedlg.ui:386
+msgctxt "templatedlg|import_btn"
+msgid "Import"
+msgstr "Tuo"
-#. xQMAz
-#: sfx2/uiconfig/ui/templatedlg.ui:406
-msgctxt "templatedlg|move_btn|tooltip_text"
-msgid "Move Templates"
-msgstr "Siirrä mallit"
+#. Lr9os
+#: sfx2/uiconfig/ui/templatedlg.ui:390
+msgctxt "templatedlg|import_btn|tooltip_text"
+msgid "Import Templates"
+msgstr "Tuo mallit"
#. faL2n
-#: sfx2/uiconfig/ui/templatedlg.ui:419
+#: sfx2/uiconfig/ui/templatedlg.ui:404
msgctxt "templatedlg|export_btn"
msgid "Export"
msgstr "Vie"
#. DbD3R
-#: sfx2/uiconfig/ui/templatedlg.ui:423
+#: sfx2/uiconfig/ui/templatedlg.ui:408
msgctxt "templatedlg|export_btn|tooltip_text"
msgid "Export Templates"
msgstr "Vie mallit"
-#. PXRa3
-#: sfx2/uiconfig/ui/templatedlg.ui:436
-msgctxt "templatedlg|import_btn"
-msgid "Import"
-msgstr "Tuo"
+#. EZBF9
+#: sfx2/uiconfig/ui/templatedlg.ui:422
+msgctxt "templatedlg|move_btn"
+msgid "Move"
+msgstr "Siirrä"
-#. Lr9os
-#: sfx2/uiconfig/ui/templatedlg.ui:440
-msgctxt "templatedlg|import_btn|tooltip_text"
-msgid "Import Templates"
-msgstr "Tuo mallit"
+#. xQMAz
+#: sfx2/uiconfig/ui/templatedlg.ui:426
+msgctxt "templatedlg|move_btn|tooltip_text"
+msgid "Move Templates"
+msgstr "Siirrä mallit"
#. pm89q
#: sfx2/uiconfig/ui/templatepanel.ui:134
@@ -3968,17 +4358,23 @@ msgid "Insert Version Comment"
msgstr "Lisää versiohuomautus"
#. CPwta
-#: sfx2/uiconfig/ui/versioncommentdialog.ui:103
+#: sfx2/uiconfig/ui/versioncommentdialog.ui:102
msgctxt "versioncommentdialog|timestamp"
msgid "Date and time: "
msgstr "Päivämäärä ja aika: "
#. 2mDfC
-#: sfx2/uiconfig/ui/versioncommentdialog.ui:115
+#: sfx2/uiconfig/ui/versioncommentdialog.ui:114
msgctxt "versioncommentdialog|author"
msgid "Saved by: "
msgstr "Tallentanut: "
+#. T5AY5
+#: sfx2/uiconfig/ui/versioncommentdialog.ui:163
+msgctxt "versioncommentdialog|extended_tip|VersionCommentDialog"
+msgid "Enter a comment here when you are saving a new version. If you clicked Show to open this dialog, you cannot edit the comment."
+msgstr ""
+
#. oBSSb
#: sfx2/uiconfig/ui/versionscmis.ui:51
msgctxt "versionscmis|compare"
@@ -4016,61 +4412,109 @@ msgid "Existing Versions"
msgstr "Nykyiset versiot"
#. A4BT2
-#: sfx2/uiconfig/ui/versionsofdialog.ui:36
+#: sfx2/uiconfig/ui/versionsofdialog.ui:33
msgctxt "versionsofdialog|cmis"
msgid "CMIS"
msgstr "CMIS"
+#. EqmYX
+#: sfx2/uiconfig/ui/versionsofdialog.ui:54
+msgctxt "versionsofdialog|extended_tip|delete"
+msgid "Deletes the selected version."
+msgstr "Poistetaan valittu versio."
+
#. erGHD
-#: sfx2/uiconfig/ui/versionsofdialog.ui:64
+#: sfx2/uiconfig/ui/versionsofdialog.ui:66
msgctxt "versionsofdialog|compare"
msgid "_Compare"
msgstr "Vertaile"
+#. TKEzJ
+#: sfx2/uiconfig/ui/versionsofdialog.ui:73
+msgctxt "versionsofdialog|extended_tip|compare"
+msgid "Compare the changes that were made in each version."
+msgstr "Verrataan kuhunkin versioon tehtyjä muutoksia."
+
#. UkbhC
-#: sfx2/uiconfig/ui/versionsofdialog.ui:78
+#: sfx2/uiconfig/ui/versionsofdialog.ui:85
msgctxt "versionsofdialog|show"
msgid "_Show..."
msgstr "Näytä..."
+#. 4SD7F
+#: sfx2/uiconfig/ui/versionsofdialog.ui:92
+msgctxt "versionsofdialog|extended_tip|show"
+msgid "Displays the entire comment for the selected version."
+msgstr "Esitetään valitun version huomautus kokonaan."
+
+#. ASJac
+#: sfx2/uiconfig/ui/versionsofdialog.ui:127
+msgctxt "versionsofdialog|extended_tip|open"
+msgid "Opens the selected version in a read-only window."
+msgstr ""
+
#. qKnKv
-#: sfx2/uiconfig/ui/versionsofdialog.ui:170
+#: sfx2/uiconfig/ui/versionsofdialog.ui:187
msgctxt "versionsofdialog|save"
msgid "Save _New Version"
msgstr "Tallenna uusi versio"
+#. gTR6x
+#: sfx2/uiconfig/ui/versionsofdialog.ui:194
+msgctxt "versionsofdialog|extended_tip|save"
+msgid "Saves the current state of the document as a new version. If you want, you can also enter comments in the Insert Version Comment dialog before you save the new version."
+msgstr ""
+
#. aCeEr
-#: sfx2/uiconfig/ui/versionsofdialog.ui:183
+#: sfx2/uiconfig/ui/versionsofdialog.ui:205
msgctxt "versionsofdialog|always"
msgid "_Always save a new version on closing"
msgstr "Tallenna aina uusi versio suljettaessa"
+#. GCMVZ
+#: sfx2/uiconfig/ui/versionsofdialog.ui:214
+msgctxt "versionsofdialog|extended_tip|always"
+msgid "If you have made changes to your document, %PRODUCTNAME automatically saves a new version when you close the document."
+msgstr "Kun asiakirjaan on tehty muutoksia, %PRODUCTNAME tallentaa aina uuden version asiakirjaa suljettaessa."
+
#. vuHjH
-#: sfx2/uiconfig/ui/versionsofdialog.ui:204
+#: sfx2/uiconfig/ui/versionsofdialog.ui:231
msgctxt "versionsofdialog|label1"
msgid "New Versions"
msgstr "Uudet versiot"
#. nDGNv
-#: sfx2/uiconfig/ui/versionsofdialog.ui:264
+#: sfx2/uiconfig/ui/versionsofdialog.ui:290
msgctxt "versionsofdialog|datetime"
msgid "Date and time"
msgstr "Päivämäärä ja aika"
#. MBoBZ
-#: sfx2/uiconfig/ui/versionsofdialog.ui:277
+#: sfx2/uiconfig/ui/versionsofdialog.ui:303
msgctxt "versionsofdialog|savedby"
msgid "Saved by"
msgstr "Tallentanut"
#. kqEcm
-#: sfx2/uiconfig/ui/versionsofdialog.ui:290
+#: sfx2/uiconfig/ui/versionsofdialog.ui:316
msgctxt "versionsofdialog|comments"
msgid "Comments"
msgstr "Huomautukset"
+#. GLD85
+#: sfx2/uiconfig/ui/versionsofdialog.ui:327
+msgctxt "versionsofdialog|extended_tip|versions"
+msgid "Lists the existing versions of the current document, the date and the time they were created, the author and the associated comments."
+msgstr "Luettelo käsiteltävän asiakirjan versioista. Niistä näkyy tallennuspäivämäärä ja -kellonaika, tallentaja ja liitetyt huomautukset."
+
#. EbijK
-#: sfx2/uiconfig/ui/versionsofdialog.ui:315
+#: sfx2/uiconfig/ui/versionsofdialog.ui:346
msgctxt "versionsofdialog|label2"
msgid "Existing Versions"
msgstr "Nykyiset versiot"
+
+#. 5BdCA
+#: sfx2/uiconfig/ui/versionsofdialog.ui:381
+msgctxt "versionsofdialog|extended_tip|VersionsOfDialog"
+msgid "Saves and organizes multiple versions of the current document in the same file. You can also open, delete and compare previous versions."
+msgstr ""
diff --git a/source/fi/starmath/messages.po b/source/fi/starmath/messages.po
index 2b9656a92f9..c34af3c1154 100644
--- a/source/fi/starmath/messages.po
+++ b/source/fi/starmath/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-09-08 17:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/fi/>\n"
@@ -760,1592 +760,1628 @@ msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Ei ylijoukko tai sama kuin"
-#. AcgYW
+#. GF9zf
#: starmath/inc/strings.hrc:81
+msgctxt "RID_FUNCX_HELP"
+msgid "General function"
+msgstr ""
+
+#. AcgYW
+#: starmath/inc/strings.hrc:82
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Itseisarvo"
#. rFEx7
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:83
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Kertoma"
#. Cj4hL
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:84
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Neliöjuuri"
#. QtrqZ
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:85
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N:s juuri"
#. JLBAS
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:86
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponentiaalifunktio"
#. AEQ38
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:87
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponentiaalifunktio"
#. GjNwW
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:88
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Luonnollinen logaritmi"
#. FkUgL
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:89
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritmi"
#. EChK8
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:90
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sini"
#. MQGzb
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:91
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosini"
#. 8zgCh
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:92
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangentti"
#. BBRxx
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:93
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangentti"
#. DsTBd
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:94
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Arkussini"
#. FPzbg
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:95
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arkuskosini"
#. EFP3E
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:96
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arkustangentti"
#. mpBY2
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:97
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arkuskotangentti"
#. gpCNS
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hyperbolinen sini"
#. QXCBa
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hyperbolinen kosini"
#. F4ad5
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hyperbolinen tangentti"
#. vtxUA
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hyperbolinen kotangentti"
#. afq2C
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Areasini"
#. bYkRi
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Areakosini"
#. acsCE
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Areatangentti"
#. v9ccB
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Areakotangentti"
+#. G2RAG
+#: starmath/inc/strings.hrc:106
+msgctxt "RID_OPERX_HELP"
+msgid "General operator"
+msgstr ""
+
+#. EZ2X2
+#: starmath/inc/strings.hrc:107
+msgctxt "RID_OPER_FROMX_HELP"
+msgid "General operator Subscript Bottom"
+msgstr ""
+
+#. HaUqv
+#: starmath/inc/strings.hrc:108
+msgctxt "RID_OPER_TOX_HELP"
+msgid "General operator Superscript Top"
+msgstr ""
+
+#. Pch4L
+#: starmath/inc/strings.hrc:109
+msgctxt "RID_OPER_FROMTOX_HELP"
+msgid "General operator Sup/Sub script"
+msgstr ""
+
#. 4eGMf
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:110
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Summa"
#. gV6ns
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:111
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Summa alarajalla"
#. C3yFy
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:112
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Summa ylärajalla"
#. oTcL9
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:113
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Summa ylä/alarajalla"
#. zAAwA
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:114
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Tulo"
#. 8GA67
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:115
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Tulo alarajalla"
#. EYVB4
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:116
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Tulo ylärajalla"
#. 73BFU
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:117
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Tulo ylä/alarajalla"
#. wAwFG
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:118
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Liittotulo"
#. MLtkV
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:119
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Liittotulo alarajalla"
#. kCvEu
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:120
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Liittotulo ylärajalla"
#. PGH59
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:121
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Liittotulo ylä/alarajalla"
#. eyBRm
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:122
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Raja-arvo"
#. 7zDvY
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:123
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Raja-arvo alarajalla"
#. CbG7y
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:124
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Raja-arvo ylärajalla"
#. EWw4P
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:125
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Raja-arvo ylä/alarajalla"
#. wL7Ae
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:126
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "alaraja-arvo"
#. YMCGq
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:127
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "alaraja-arvo alaindeksi alhaalla"
#. GtSiM
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:128
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "alaraja-arvo yläindeksi ylhäällä"
#. xGGCw
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:129
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "alaraja-arvo ylä/alaindeksi"
#. pZzYb
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:130
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "yläraja-arvo"
#. Wi8KX
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "yläraja-arvo alaindeksi alhaalla"
#. KVDSH
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "yläraja-arvo yläindeksi ylhäällä"
#. fpZ2c
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "yläraja-arvo ylä/alaindeksi"
#. F7Cc3
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:134
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "On olemassa"
#. Nhgso
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:135
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Ei ole olemassa"
#. yrnBf
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:136
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Kaikille"
#. NkTAp
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:137
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integraali"
#. vQmDp
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:138
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integraali alarajalla"
#. y7z9u
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:139
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integraali ylärajalla"
#. 6k5sb
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:140
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integraali ylä/alarajalla"
#. p3RZE
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:141
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Kaksoisintegraali"
#. BGTdj
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:142
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Kaksoisintegraali alarajalla"
#. sm97q
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:143
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Kaksoisintegraali ylärajalla"
#. pfQHq
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:144
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Kaksoisintegraali ylä/alarajalla"
#. rSSzV
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:145
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Kolmoisintegraali"
#. 8kQA9
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:146
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Kolmoisintegraali alarajalla"
#. B9bYA
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:147
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Kolmoisintegraali ylärajalla"
#. tBhDK
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:148
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Kolmoisintegraali ylä/alarajalla"
#. FAhtN
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:149
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Viivaintegraali"
#. QX8QP
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:150
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Viivaintegraali alarajalla"
#. x9KBD
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:151
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Viivaintegraali ylärajalla"
#. FRxLN
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:152
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Viivaintegraali ylä/alarajalla"
#. u6fSm
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:153
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Kaksoisviivaintegraali"
#. tGPd3
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:154
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Kaksoisviivaintegraali alarajalla"
#. WbgY4
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:155
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Kaksoisviivaintegraali ylärajalla"
#. Fb8Ag
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:156
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Kaksoisviivaintegraali ylä/alarajalla"
#. SGAUu
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Kolmoisviivaintegraali"
#. 8RRj4
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Kolmoisviivaintegraali alarajalla"
#. hDzUB
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Kolmoisviivaintegraali ylärajalla"
#. 53vdH
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Kolmoisviivaintegraali ylä/alarajalla"
#. L2GPS
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:161
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Akuuttiaksentti"
#. iNBv6
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:162
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Yläviiva"
#. 4bj8T
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:163
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Yläkaari"
#. KCnAL
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:164
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Käänteinen sirkumfleksi"
#. JGDsk
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:165
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Ympyrä"
#. NFE9t
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:166
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Piste"
#. 3nLRD
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:167
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Kaksi pistettä"
#. vyBoF
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:168
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Kolme pistettä"
#. B6Bdu
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:169
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Gravis-aksentti"
#. NsttC
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:170
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Sirkumfleksi"
#. uwDf4
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:171
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:172
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektorinuoli"
#. ttFJH
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:173
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harppuuna"
#. BLziR
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:174
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Alaviiva"
#. Ao3kR
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:175
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Pitkä yläviiva"
#. CGexE
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:176
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Yliviivaus"
#. ocuzq
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:177
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Läpinäkyvä"
#. CkgdF
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:178
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Lihavoitu fontti"
#. 9HXmb
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:179
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Kursivoitu fontti"
#. wHZAL
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:180
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Muuta kokoa"
#. dFJdi
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:181
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Fontin vaihtaminen"
#. EGfMH
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:182
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Väri musta"
#. GrXZS
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:183
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Väri sininen"
#. DRFYB
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:184
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Väri vihreä"
#. MJhTE
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:185
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Väri punainen"
#. xDnZV
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:186
msgctxt "RID_COLORX_CYAN_HELP"
msgid "Color Cyan"
msgstr "Väri syaani"
#. 2cGVK
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:187
msgctxt "RID_COLORX_MAGENTA_HELP"
msgid "Color Magenta"
msgstr "Väri magenta"
#. em3aA
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:188
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Väri harmaa"
#. 8Pn5t
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:189
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Väri limetti"
#. xGjXA
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Väri punaruskea"
#. Cmhuj
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Väri laivasto"
#. XL3XB
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Väri oliivi"
#. yZ9RF
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Väri purppura"
#. 2zE5Z
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Väri hopea"
#. vMBoD
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Väri sinivihreä"
#. U7bEA
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Väri keltainen"
#. 6mDX7
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Väri RGB"
#. A2GQ4
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:198
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Ryhmäsulkeet"
#. X7CEt
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:199
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Kaarisulkeet"
#. AYBJ3
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:200
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Hakasulkeet"
#. 72tg7
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:201
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Kaksoishakasulkeet"
#. 8q7SE
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:202
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Aaltosulkeet"
#. bR8zw
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:203
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Kulmasulkeet"
#. BeDY5
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:204
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Katto"
#. EgGfR
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:205
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Lattia"
#. L4q5e
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:206
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Yksinkertaiset pystyviivat"
#. pxcsk
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:207
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Kaksoispystyviivat"
#. QpgTC
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:208
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Operaattorisulkeet"
#. 26fDL
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:209
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Kaarisulkeet (skaalattavat)"
#. hYSwY
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:210
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Hakasulkeet (skaalattavat)"
#. GYgVC
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:211
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Kaksoishakasulkeet (skaalattavat)"
#. yAB5Z
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:212
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Aaltosulkeet (skaalattavat)"
#. gVyvk
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:213
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Kulmasulkeet (skaalattavat)"
#. TQgEE
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:214
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Katto (skaalattava)"
#. JD7hz
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:215
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Lattia (skaalattava)"
#. zefYy
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:216
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Yksinkertaiset pystyviivat (skaalattavat)"
#. xRAGP
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:217
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Kaksoispystyviivat (skaalattavat)"
#. EzvMA
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:218
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Operaattorisulkeet (skaalattavat)"
#. ZurRw
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:219
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Arvolla"
#. aHELy
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:220
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Aaltosulkeet ylhäällä (skaalattavat)"
#. LUhCa
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:221
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Aaltosulkeet alhaalla (skaalattavat)"
#. wePDA
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:222
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Alaindeksi oikealla"
#. tAk6B
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:223
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potenssi"
#. fkDc3
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Alaindeksi vasemmalla"
#. diRUE
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Yläindeksi vasemmalla"
#. cA8up
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:226
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Alaindeksi alla"
#. BmFm5
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:227
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Yläindeksi päällä"
#. WTF6i
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:228
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Kapea väli"
#. 3GBzt
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:229
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Tyhjä"
#. Tv29B
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:230
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Rivinvaihto"
#. tnBvX
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:231
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Pystypino (2 elementtiä)"
#. uAfzF
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:232
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Pystypino"
#. GZoUk
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:233
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matriisipino"
#. qGAFn
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:234
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Tasaa vasemmalle"
#. BpAbA
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:235
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Tasaa keskelle"
#. RTRN9
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:236
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Tasaa oikealle"
#. rBXQx
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:237
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:238
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Tyhjä joukko"
#. fbVuw
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:239
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Reaaliosa"
#. DjahE
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:240
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Imaginaariosa"
#. LwDCX
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:241
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Ääretön"
#. 5TTyg
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:242
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Osittaisderivaatan merkki"
#. gkq7i
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:243
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
-#. zEdDp
-#: starmath/inc/strings.hrc:239
+#. DzGXD
+#: starmath/inc/strings.hrc:244
msgctxt "RID_LAPLACE_HELP"
-msgid "Laplace"
-msgstr "Laplace"
+msgid "Laplace transform"
+msgstr "Laplace-muunnos"
+
+#. ajf9X
+#: starmath/inc/strings.hrc:245
+msgctxt "RID_FOURIER_HELP"
+msgid "Fourier transform"
+msgstr "Fourier-muunnos"
#. aQpTD
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:246
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrassin p-funktio"
#. f9sfv
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:247
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Pisteet keskellä"
#. C3nbh
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:248
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Nousevat pisteet"
#. tzBF5
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:249
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Laskevat pisteet"
#. XDsJg
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:250
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Pisteet alhaalla"
#. TtFD4
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:251
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Pisteet pystysuunnassa"
#. YsuWX
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:252
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Yhdistetty kuvaus"
#. JAGx5
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:253
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Jako (vinoviiva)"
#. YeJSK
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:254
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Jako (kenoviiva)"
#. wfbfE
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:255
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Jakaa"
#. 3BFDd
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:256
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ei jaa"
#. CCvBP
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:257
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Kaksoisnuoli vasemmalle"
#. UJYMA
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:258
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Kaksoisnuoli vasemmalle ja oikealle"
#. xEGRt
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:259
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Kaksoisnuoli oikealle"
#. 9fdkb
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:260
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Luonnollisten lukujen joukko"
#. rCVLA
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:261
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Kokonaislukujen joukko"
#. bPiC2
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:262
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Rationaalilukujen joukko"
#. ftype
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:263
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Reaalilukujen joukko"
#. i4knq
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:264
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Kompleksilukujen joukko"
#. EsxDq
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:265
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Suuri sirkumfleksi"
#. Ho4gN
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:266
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Suuri tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:267
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Suuri vektorinuoli"
#. Ew4TJ
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:268
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Suuri harppuuna"
#. 5Ce5n
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:269
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h-viiva"
#. PAJLg
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:270
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda-viiva"
#. obBGe
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:271
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Nuoli vasemmalle"
#. krnEB
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:272
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Nuoli oikealle"
#. gADL7
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:273
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Ylänuoli"
#. oTVat
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Alanuoli"
#. xVkoU
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:275
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Ei välejä"
#. gSrMz
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:276
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Edeltää"
#. yiATA
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:277
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Edeltää tai sama kuin"
#. ZY4XE
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Edeltää tai ekvivalentti"
#. Br8e9
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Seuraa"
#. VraAq
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Seuraa tai sama kuin"
#. bRiLq
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Seuraa tai ekvivalentti"
#. Cy5fB
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Ei edellä"
#. ihTrN
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:283
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Ei seuraa"
#. eu7va
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:284
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Yksi- ja kaksipaikkaiset operaattorit"
#. qChkW
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:285
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relaatiot"
#. UCQER
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:286
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Joukko-operaatiot"
#. H7MZE
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:287
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funktiot"
#. zAeXx
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:288
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operaattorit"
#. GGitA
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:289
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Määritteet"
#. B29Ad
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:290
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Sulkeet"
#. UAdpn
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:291
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Muotoilu"
#. Yif8p
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Muut"
#. 3fzNy
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Esimerkkejä"
#. qPycE
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Kehä"
#. FhGWC
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Massan ja energian ekvivalenssi"
#. nwdFs
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Pythagoraan lause"
#. CztTS
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
msgid "A simple series"
msgstr "Yksinkertainen sarja"
#. MuqjR
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gaussin jakauma"
#. u47dF
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Normaali"
#. aZbaD
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursivointi"
#. 7t5Hn
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Lihavointi"
#. urCxA
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_BLACK"
msgid "black"
msgstr "musta"
#. n4qFR
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_BLUE"
msgid "blue"
msgstr "sininen"
#. ZS9Ma
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_GREEN"
msgid "green"
msgstr "vihreä"
#. SAB9J
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_RED"
msgid "red"
msgstr "punainen"
#. XhTrQ
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "syaani"
#. RpDMb
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
#. fZKES
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_GRAY"
msgid "gray"
msgstr "harmaa"
#. BaoAG
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_LIME"
msgid "lime"
msgstr "limetti"
#. MERnK
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "punaruskea"
#. CEYFL
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_NAVY"
msgid "navy"
msgstr "laivasto"
#. DDWH3
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliivi"
#. dZoUG
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purppura"
#. 7JFDe
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "STR_SILVER"
msgid "silver"
msgstr "hopea"
#. enQJY
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_TEAL"
msgid "teal"
msgstr "sinivihreä"
#. QkBT2
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "keltainen"
#. NNmRT
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. CCpNs
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "STR_HIDE"
msgid "hide"
msgstr "piilota"
#. FtCHm
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "STR_SIZE"
msgid "size"
msgstr "koko"
#. qFRcG
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "STR_FONT"
msgid "font"
msgstr "fontti"
#. TEnpE
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "vasen"
#. dBczP
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "keskellä"
#. U9mzR
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "oikea"
#. C3cxx
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Komennot"
#. Sgayv
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Kaava"
#. veG66
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Tallennetaan asiakirjaa..."
#. M6rLx
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION -kaava"
#. AFFdK
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "VIRHE: "
#. p2FHe
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Odottamaton merkki"
#. CgyFQ
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Odottamaton merkki"
#. RGAFy
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Tähän tarvitaan '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Tähän tarvitaan '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Tähän tarvitaan '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Tähän tarvitaan ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Vasen ja oikea symboli ristiriidassa"
#. FYFE5
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Vaaditaan 'fixed', 'sans' tai 'serif'"
#. jGZdh
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' ja sen perässä odottamaton merkki"
#. 6DqgC
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Kaksinkertainen tasaus ei ole sallittu"
#. aoufx
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Kaksinkertainen ala/yläindeksi ei ole sallittu"
#. ZWBDD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Tähän tarvitaan '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:343
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Tähän tarvitaan väri"
#. GboH7
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:344
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Tähän tarvitaan 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:345
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:346
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Sisältö"
#. Dwn4W
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:347
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Otsikko"
#. LSV24
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:348
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Kaavan teksti"
#. XnVAD
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:349
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Reunat"
#. TfBWF
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:350
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Koko"
#. egvJg
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:351
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Alkuperäinen koko"
#. ZSF52
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:352
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Sovita sivulle"
#. ZVcSf
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:353
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Skaalaus"
@@ -2362,30 +2398,60 @@ msgctxt "alignmentdialog|default"
msgid "_Default"
msgstr "Oletus"
+#. RK3fb
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:30
+msgctxt "alignmentdialog|extended_tip|default"
+msgid "Click here to save your changes as the default settings for new formulas."
+msgstr "Muutokset tallennetaan oletuksiksi kaikille uusille kaavoille tästä painikkeesta napsauttamalla."
+
#. kGsuJ
-#: starmath/uiconfig/smath/ui/alignmentdialog.ui:112
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:117
msgctxt "alignmentdialog|left"
msgid "_Left"
msgstr "Vasen"
+#. emVv4
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:127
+msgctxt "alignmentdialog|extended_tip|left"
+msgid "Aligns the selected elements of a formula to the left."
+msgstr "Kohdistaa kaavan osat vasemmalle."
+
#. v8DVF
-#: starmath/uiconfig/smath/ui/alignmentdialog.ui:129
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:139
msgctxt "alignmentdialog|center"
msgid "_Centered"
msgstr "Keskitetty"
+#. Cppmw
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:149
+msgctxt "alignmentdialog|extended_tip|center"
+msgid "Aligns the elements of a formula to the center."
+msgstr "Keskittää kaavan."
+
#. 5TgYZ
-#: starmath/uiconfig/smath/ui/alignmentdialog.ui:146
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:161
msgctxt "alignmentdialog|right"
msgid "_Right"
msgstr "Oikea"
+#. atNoc
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:171
+msgctxt "alignmentdialog|extended_tip|right"
+msgid "Aligns the elements of a formula to the right."
+msgstr "Kohdistaa kaavan osat oikealle."
+
#. LbzHM
-#: starmath/uiconfig/smath/ui/alignmentdialog.ui:169
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:189
msgctxt "alignmentdialog|label1"
msgid "Horizontal"
msgstr "Vaakataso"
+#. qV2H7
+#: starmath/uiconfig/smath/ui/alignmentdialog.ui:215
+msgctxt "alignmentdialog|extended_tip|AlignmentDialog"
+msgid "You can define the alignment of multi-line formulas as well as formulas with several elements in one line."
+msgstr "Sekä monirivisten kaavojen, että monikaavaisten rivien tasaus voidaan asettaa"
+
#. NqNaF
#: starmath/uiconfig/smath/ui/catalogdialog.ui:8
msgctxt "catalogdialog|CatalogDialog"
@@ -2398,24 +2464,54 @@ msgctxt "catalogdialog|edit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. TZoCR
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:31
+msgctxt "catalogdialog|extended_tip|edit"
+msgid "Click here to open the Edit Symbols dialog."
+msgstr "Napsauttamalla avataan Muokkaa symboleja -valintaikkuna."
+
#. F86fN
-#: starmath/uiconfig/smath/ui/catalogdialog.ui:38
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:43
msgctxt "catalogdialog|insert"
msgid "_Insert"
msgstr "_Lisää"
+#. w4mRB
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:52
+msgctxt "catalogdialog|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
#. zzUYb
-#: starmath/uiconfig/smath/ui/catalogdialog.ui:103
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:113
msgctxt "catalogdialog|label1"
msgid "_Symbol set:"
msgstr "Symbolijoukko:"
+#. UA5cZ
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:129
+msgctxt "catalogdialog|extended_tip|symbolset"
+msgid "All symbols are organized into symbol sets. Select the desired symbol set from the list box. The corresponding group of symbols appear in the field below."
+msgstr "Kaikki symbolit on järjestetty merkistöiksi. Haluttu symbolijoukko poimitaan valintalistasta. Vastaava merkkien ryhmä ilmestyy alla olevaan kenttään."
+
#. Gu3DC
-#: starmath/uiconfig/smath/ui/catalogdialog.ui:127
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:142
msgctxt "catalogdialog|symbolname"
msgid "Unknown"
msgstr "Tuntematon"
+#. znrh2
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:205
+msgctxt "catalogdialog|extended_tip|preview"
+msgid "Displays a preview of the current selection."
+msgstr ""
+
+#. DSYgZ
+#: starmath/uiconfig/smath/ui/catalogdialog.ui:246
+msgctxt "catalogdialog|extended_tip|CatalogDialog"
+msgid "Opens the Symbols dialog, in which you can select a symbol to insert in the formula."
+msgstr ""
+
#. P3rFo
#: starmath/uiconfig/smath/ui/dockingelements.ui:16
msgctxt "dockingelements|ElementCategories|tooltip_text"
@@ -2428,30 +2524,54 @@ msgctxt "fontdialog|FontDialog"
msgid "Fonts"
msgstr "Fontit"
+#. x7cHX
+#: starmath/uiconfig/smath/ui/fontdialog.ui:157
+msgctxt "fontdialog|extended_tip|font"
+msgid "Select a font from the list."
+msgstr "Valitse kirjasintyyppi luettelosta."
+
#. eepux
-#: starmath/uiconfig/smath/ui/fontdialog.ui:172
+#: starmath/uiconfig/smath/ui/fontdialog.ui:174
msgctxt "fontdialog|formulaL"
msgid "Font"
msgstr "Fontti"
#. rEsKd
-#: starmath/uiconfig/smath/ui/fontdialog.ui:208
+#: starmath/uiconfig/smath/ui/fontdialog.ui:210
msgctxt "fontdialog|bold"
msgid "_Bold"
msgstr "Lihavoi"
+#. XACty
+#: starmath/uiconfig/smath/ui/fontdialog.ui:219
+msgctxt "fontdialog|extended_tip|bold"
+msgid "Check this box to assign the bold attribute to the font."
+msgstr "Valintaruudun rastiminen lihavoi fontin."
+
#. mBw2w
-#: starmath/uiconfig/smath/ui/fontdialog.ui:223
+#: starmath/uiconfig/smath/ui/fontdialog.ui:230
msgctxt "fontdialog|italic"
msgid "_Italic"
msgstr "Kursivoi"
+#. W4VUL
+#: starmath/uiconfig/smath/ui/fontdialog.ui:239
+msgctxt "fontdialog|extended_tip|italic"
+msgid "Check this box to assign the italic attribute to the font."
+msgstr "Valintamerkki ruudussa tuottaa fonttiin kursivointileikkauksen."
+
#. uvvT5
-#: starmath/uiconfig/smath/ui/fontdialog.ui:244
+#: starmath/uiconfig/smath/ui/fontdialog.ui:256
msgctxt "fontdialog|formulaL1"
msgid "Attributes"
msgstr "Määritteet"
+#. pwqjH
+#: starmath/uiconfig/smath/ui/fontdialog.ui:316
+msgctxt "fontdialog|extended_tip|FontDialog"
+msgid "Use this dialog to select the font for the respective category in the Fonts dialog."
+msgstr "Tätä valintaikkunaa käytetään, kun valitaan fonttia ylemmän tason Fontit-valintaikkunassa määritettyyn kategoriaan."
+
#. AhkAD
#: starmath/uiconfig/smath/ui/fontsizedialog.ui:44
msgctxt "fontsizedialog|FontSizeDialog"
@@ -2464,48 +2584,96 @@ msgctxt "fontsizedialog|default"
msgid "_Default"
msgstr "Oletus"
+#. BywFC
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:68
+msgctxt "fontsizedialog|extended_tip|default"
+msgid "Click this button to save your changes as a default for all new formulas."
+msgstr "Muutokset tallennetaan oletuksiksi kaikille uusille kaavoille tästä painikkeesta napsauttamalla."
+
#. xePRa
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:148
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:153
msgctxt "fontsizedialog|label4"
msgid "Base _size:"
msgstr "Peruskoko:"
+#. TEGqP
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:173
+msgctxt "fontsizedialog|extended_tip|spinB_baseSize"
+msgid "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 metrics, which are then automatically converted to points."
+msgstr ""
+
+#. RtP4G
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:222
+msgctxt "fontsizedialog|extended_tip|spinB_function"
+msgid "Select the relative size for names and other function elements in a formula in proportion to the base size."
+msgstr "Funktion nimen ja muiden osien koon suhde peruskokoon kaavassa valitaan tästä."
+
#. AfHYB
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:220
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:235
msgctxt "fontsizedialog|label2"
msgid "_Operators:"
msgstr "Operaattorit:"
#. 3zJD3
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:234
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:249
msgctxt "fontsizedialog|label3"
msgid "_Limits:"
msgstr "Rajat:"
+#. FCfRf
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:268
+msgctxt "fontsizedialog|extended_tip|spinB_operator"
+msgid "Select the relative size of the mathematical operators in a formula in proportion to the base size."
+msgstr "Matemaattisten operaattoreiden koon suhde peruskokoon kaavassa valitaan tästä.."
+
+#. gK2LX
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:286
+msgctxt "fontsizedialog|extended_tip|spinB_limit"
+msgid "Select the relative size for the limits in a formula in proportion to the base size."
+msgstr "Kaavassa esiintyvien raja-arvojen koon suhde peruskokoon valitaan tästä."
+
#. Dxb8V
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:274
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:299
msgctxt "fontsizedialog|label5"
msgid "_Text:"
msgstr "Teksti:"
#. NydaV
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:288
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:313
msgctxt "fontsizedialog|label7"
msgid "_Functions:"
msgstr "Funktiot:"
#. nPkA2
-#: starmath/uiconfig/smath/ui/fontsizedialog.ui:302
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:327
msgctxt "fontsizedialog|label6"
msgid "_Indexes:"
msgstr "Indeksit:"
-#. Gj8QQ
+#. 2bdgv
#: starmath/uiconfig/smath/ui/fontsizedialog.ui:346
+msgctxt "fontsizedialog|extended_tip|spinB_text"
+msgid "Select the size for text in a formula relative to the base size."
+msgstr "Tekstin koon suhde peruskokoon kaavassa valitaan tästä."
+
+#. AqFSQ
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:364
+msgctxt "fontsizedialog|extended_tip|spinB_index"
+msgid "Select the relative size for the indexes in a formula in proportion to the base size."
+msgstr "Indeksien koon suhde peruskokoon kaavassa valitaan tästä."
+
+#. Gj8QQ
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:381
msgctxt "fontsizedialog|label1"
msgid "Relative Sizes"
msgstr "Suhteelliset koot"
+#. 5Tw56
+#: starmath/uiconfig/smath/ui/fontsizedialog.ui:413
+msgctxt "fontsizedialog|extended_tip|FontSizeDialog"
+msgid "Use this dialog to specify the font sizes for your formula. Select a base size and all elements of the formula will be scaled in relation to this base."
+msgstr "Tätä valintaikkunaa käytetään kaavan kirjasinten kokojen määrittämiseen. Valittu peruskoko skaalautuu suhteellisena kaikkiin kaavan elementteihin."
+
#. Ahejh
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:12
msgctxt "fonttypedialog|menuitem1"
@@ -2555,71 +2723,131 @@ msgid "Fonts"
msgstr "Fontit"
#. p43oF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:83
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:98
msgctxt "fonttypedialog|modify"
msgid "_Modify"
msgstr "Muuta"
+#. uQCNw
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:111
+msgctxt "fonttypedialog|extended_tip|modify"
+msgid "Click one of the choices from this pop-up menu to access the Fonts dialog, where you can define the font and attributes for the respective formula and for custom fonts."
+msgstr "Valitse joku tämän ponnahdusvalikon vaihtoehto päästäksesi Fontit-valintaikkunaan, josta voidaan poimia vastaavan kaava- tai mukautetun fontin kirjasintyyppi ja leikkausmääritteitä."
+
#. sdTfG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:118
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:123
msgctxt "fonttypedialog|default"
msgid "_Default"
msgstr "Oletus"
+#. gAvNx
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:130
+msgctxt "fonttypedialog|extended_tip|default"
+msgid "Click this button to save your changes as the default for all new formulas."
+msgstr "Muutokset tallennetaan oletuksiksi kaikille uusille kaavoille tästä painikkeesta napsauttamalla."
+
#. EhoBp
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:200
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:210
msgctxt "fonttypedialog|label1"
msgid "_Variables:"
msgstr "Muuttujat:"
#. BCVC9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:217
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:227
msgctxt "fonttypedialog|label2"
msgid "_Functions:"
msgstr "Funktiot:"
#. zFooF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:234
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:244
msgctxt "fonttypedialog|label3"
msgid "_Numbers:"
msgstr "Numerot:"
#. bYvD9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:251
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:261
msgctxt "fonttypedialog|label4"
msgid "_Text:"
msgstr "Teksti:"
+#. WCsoh
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:281
+msgctxt "fonttypedialog|extended_tip|variableCB"
+msgid "You can select the fonts for the variables in your formula."
+msgstr "Kaavan muuttujille voidaan valita oma fonttinsa."
+
+#. gGFop
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:297
+msgctxt "fonttypedialog|extended_tip|functionCB"
+msgid "Select the fonts for names and properties of functions."
+msgstr "Valitaan fontti funktioiden nimille ja ominaisuuksille."
+
+#. NAw7A
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:313
+msgctxt "fonttypedialog|extended_tip|numberCB"
+msgid "You can select the fonts for the numbers in your formula."
+msgstr "Kaavan luvuille on valittavissa oma fonttinsa"
+
+#. WiP2E
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:329
+msgctxt "fonttypedialog|extended_tip|textCB"
+msgid "Define the fonts for the text in your formula here."
+msgstr "Tässä määritetään kaavadokumentit tekstiosan kirjasintyyppi."
+
#. PEDax
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:316
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:346
msgctxt "fonttypedialog|formulaL"
msgid "Formula Fonts"
msgstr "Kaavafontit"
#. FZyFB
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:353
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:383
msgctxt "fonttypedialog|label5"
msgid "_Serif:"
msgstr "Antiikva:"
#. TAgaq
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:370
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:400
msgctxt "fonttypedialog|label6"
msgid "S_ans-serif:"
msgstr "Groteski:"
#. qzEea
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:387
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:417
msgctxt "fonttypedialog|label7"
msgid "F_ixed-width:"
msgstr "Kiinteälevyinen:"
+#. mHEyL
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:437
+msgctxt "fonttypedialog|extended_tip|serifCB"
+msgid "You can specify the font to be used for the font serif format."
+msgstr "Määrätään, mitä fonttia käytetään päätteellisenä kirjasintyyppinä."
+
+#. obFF5
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:453
+msgctxt "fonttypedialog|extended_tip|sansCB"
+msgid "You can specify the font to be used for sans font formatting."
+msgstr "Voidaan määrätä kirjasin, jota käytetään päätteettömänä fonttityyppinä."
+
+#. bqAxu
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:469
+msgctxt "fonttypedialog|extended_tip|fixedCB"
+msgid "You can specify the font to be used for fixed font formatting."
+msgstr "Määrätään, mitä kirjasinta käytetään tasavälisenä kirjasintyyppinä."
+
#. PgQfV
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:441
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:486
msgctxt "fonttypedialog|customL"
msgid "Custom Fonts"
msgstr "Mukautetut fontit"
+#. gXDAz
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:518
+msgctxt "fonttypedialog|extended_tip|FontsDialog"
+msgid "Defines the fonts that can be applied to formula elements."
+msgstr "Esitellään kaavoissa käytettävät fontit."
+
#. LBpEX
#: starmath/uiconfig/smath/ui/printeroptions.ui:39
msgctxt "printeroptions|title"
@@ -2692,72 +2920,126 @@ msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "Otsikkorivi"
+#. C2ppj
+#: starmath/uiconfig/smath/ui/smathsettings.ui:48
+msgctxt "extended_tip|title"
+msgid "Specifies whether you want the name of the document to be included in the printout."
+msgstr "Merkinnällä määrätään, että asiakirjan nimi on tulosteessa."
+
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:60
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "Kaavan teksti"
+#. MkGvA
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
+msgctxt "extended_tip|text"
+msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
+msgstr "Merkinnällä määrätään, että Komento-ikkunan sisältö on tulosteessa, sen loppuosassa."
+
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:71
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "Reunus"
+#. EYcyA
+#: starmath/uiconfig/smath/ui/smathsettings.ui:90
+msgctxt "extended_tip|frame"
+msgid "Applies a thin border to the formula area in the printout."
+msgstr "Käytetään ohutta kehystä kaava-alueen ympärille tulosteessa."
+
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:93
+#: starmath/uiconfig/smath/ui/smathsettings.ui:108
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "Tulostusasetukset"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:127
+#: starmath/uiconfig/smath/ui/smathsettings.ui:142
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "Alkuperäinen koko"
+#. sDAYF
+#: starmath/uiconfig/smath/ui/smathsettings.ui:152
+msgctxt "extended_tip|sizenormal"
+msgid "Prints the formula without adjusting the current font size."
+msgstr "Tulostetaan kaava ilman käytetyn fonttikoon sovitusta."
+
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:144
+#: starmath/uiconfig/smath/ui/smathsettings.ui:164
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "Sovita sivulle"
+#. zhmgc
+#: starmath/uiconfig/smath/ui/smathsettings.ui:174
+msgctxt "extended_tip|sizescaled"
+msgid "Adjusts the formula to the page format used in the printout."
+msgstr "Kaava sovitetaan tulostesivun muotoon."
+
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:166
+#: starmath/uiconfig/smath/ui/smathsettings.ui:191
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "Skaalaus:"
+#. vFT2d
+#: starmath/uiconfig/smath/ui/smathsettings.ui:214
+msgctxt "extended_tip|zoom"
+msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
+msgstr "Pienennetään tai suurennetaan tulostettavan kaavan kokoa määritettävän kertoimen mukaan."
+
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:209
+#: starmath/uiconfig/smath/ui/smathsettings.ui:239
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Tulostusmuoto"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:242
+#: starmath/uiconfig/smath/ui/smathsettings.ui:272
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "Ohita merkit ~~ ja ' rivin lopussa"
+#. VjvrA
+#: starmath/uiconfig/smath/ui/smathsettings.ui:281
+msgctxt "extended_tip|norightspaces"
+msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
+msgstr "Merkinnällä määrätään, että nämä välin korvausmerkit poistetaan, jos ne ovat rivin lopussa."
+
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:258
+#: starmath/uiconfig/smath/ui/smathsettings.ui:293
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "Sisällytä vain käytetyt symbolit (pienempi tiedostokoko)"
+#. BkZLa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:302
+msgctxt "extended_tip|saveonlyusedsymbols"
+msgid "Saves only those symbols with each formula that are used in that formula."
+msgstr "Tallentaa kaavan mukana vain ne symbolit, joita kaavassa käytetään."
+
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:274
+#: starmath/uiconfig/smath/ui/smathsettings.ui:314
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "Sulje haka-, kaari- ja aaltosulkeet automaattisesti"
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:296
+#: starmath/uiconfig/smath/ui/smathsettings.ui:336
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Sekalaiset valinnat"
+#. BZ6a3
+#: starmath/uiconfig/smath/ui/smathsettings.ui:351
+msgctxt "extended_tip|SmathSettings"
+msgid "Defines formula settings that will be valid for all documents."
+msgstr "Määritetään kaikkien kaava-asiakirjojen asetuksia."
+
#. AQFsm
#: starmath/uiconfig/smath/ui/spacingdialog.ui:28
msgctxt "spacingdialog|menuitem1"
@@ -3059,49 +3341,115 @@ msgid "Edit Symbols"
msgstr "Muokkaa symboleja"
#. GV4Ah
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:102
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:99
msgctxt "symdefinedialog|oldSymbolSetText"
msgid "O_ld symbol set:"
msgstr "Vanha symbolijoukko:"
+#. JxmGU
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:123
+msgctxt "symdefinedialog|extended_tip|oldSymbolSets"
+msgid "This list box contains the name of the current symbol set. If you want, you can also select a different symbol set."
+msgstr "Tässä luetteloruudussa on nykyisen merkistön nimi. Symbolijoukkoa voi myös vaihtaa."
+
#. WTEBG
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:148
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:150
msgctxt "symdefinedialog|oldSymbolText"
msgid "_Old symbol:"
msgstr "Vanha symboli:"
-#. CGCTr
+#. xKmjs
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:174
+msgctxt "symdefinedialog|extended_tip|oldSymbols"
+msgid "Select the name of the current symbol."
+msgstr "Valitaan työstettävän merkin nimi."
+
+#. zhpVT
#: starmath/uiconfig/smath/ui/symdefinedialog.ui:247
+msgctxt "symdefinedialog|extended_tip|add"
+msgid "Click this button to add the symbol shown in the right preview window to the current symbol set."
+msgstr "Painikkeen napsautus lisää oikealla olevassa esikatseluikkunassa näkyvän merkin käsiteltävään symbolijoukkoon."
+
+#. CGCTr
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:259
msgctxt "symdefinedialog|modify"
msgid "_Modify"
msgstr "Muuta"
+#. 7FFzu
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:266
+msgctxt "symdefinedialog|extended_tip|modify"
+msgid "Click this button to replace the name of the symbol shown in the left preview window (the old name is displayed in the Old symbol list box) with the new name you have entered in the Symbol list box."
+msgstr "Painikkeella vaihdetaan vasemmassa esikatseluikkunassa näkyvän symbolin nimi (vanha nimi näkyy Vanha symboli -luettelossa) uuteen nimeen, joka on kirjoitettuna Symboli-valintaruudussa."
+
+#. 3GfeR
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:285
+msgctxt "symdefinedialog|extended_tip|delete"
+msgid "Click to remove the symbol shown in the left preview window from the current symbol set."
+msgstr "Napsautus poistaa vasemmassa esikatseluikkunassa näkyvän merkin käsiteltävästä symbolijoukosta."
+
#. jwzjd
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:302
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:324
msgctxt "symdefinedialog|symbolText"
msgid "_Symbol:"
msgstr "Symboli:"
#. 9WqPA
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:316
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:338
msgctxt "symdefinedialog|symbolSetText"
msgid "Symbol s_et:"
msgstr "Symbolijoukko:"
#. G4GCV
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:330
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:352
msgctxt "symdefinedialog|fontText"
msgid "_Font:"
msgstr "Fontti:"
#. wTEhB
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:344
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:366
msgctxt "symdefinedialog|styleText"
msgid "S_tyle:"
msgstr "Tyyli:"
#. TENFM
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:358
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:380
msgctxt "symdefinedialog|fontsSubsetFT"
msgid "S_ubset:"
msgstr "Osajoukko:"
+
+#. jS9Ny
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:398
+msgctxt "symdefinedialog|extended_tip|fonts"
+msgid "Displays the name of the current font and enables you to select a different font."
+msgstr "Näyttää käsiteltävän kirjasintyypin nimen ja mahdollistaa sen vaihdon."
+
+#. UEdYh
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:415
+msgctxt "symdefinedialog|extended_tip|fontsSubsetLB"
+msgid "If you selected a non-symbol font in the Font list box, you can select a Unicode subset in which to place your new or edited symbol. When a subset has been selected, all symbols belonging to this subset of the current symbol set are displayed in the symbols list above."
+msgstr "Kun valitan tavallinen kirjoitusfontti Fontti-luetteloruudusta, voidaan valita Unicode-osajoukko. Sen kaikki symbolit ovat nähtävillä merkkiluettelossa ylempänä."
+
+#. 8XjkA
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:439
+msgctxt "symdefinedialog|extended_tip|symbols"
+msgid "Lists the names for the symbols in the current symbol set. Select a name from the list or type a name for a newly added symbol."
+msgstr "Käsiteltävän symbolijoukon merkkien nimilista. Valitse nimi luettelosta tai kirjoita nimi uudelle lisättävälle merkille"
+
+#. G8wv3
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:463
+msgctxt "symdefinedialog|extended_tip|symbolSets"
+msgid "The Symbol set list box contains the names of all existing symbol sets. You can modify a symbol set or create a new one."
+msgstr "Symbolijoukko-luetteloruudussa on nimet kaikille käytettäville merkistöille. Symbolijoukkoa voi muokata tai luoda kokonaan uuden."
+
+#. BG98q
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:480
+msgctxt "symdefinedialog|extended_tip|styles"
+msgid "The current typeface is displayed. You can change the typeface by selecting one from the list box."
+msgstr "Vallitseva kirjasinleikkaus on näkyvillä. Leikkaustyyppiä voi vaihtaa luetteloruudussa."
+
+#. zBbJC
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:635
+msgctxt "symdefinedialog|extended_tip|EditSymbols"
+msgid "Use this dialog to add symbols to a symbol set, to edit symbol sets, or to modify symbol notations."
+msgstr "Tässä valintaikkunassa lisätään merkkejä symbolijoukkoon, muokataan symbolijoukkoja eli merkistöjä ja mukautetaan symbolin merkintöjä."
diff --git a/source/fi/svtools/messages.po b/source/fi/svtools/messages.po
index 4bad65a4792..dd8316d5e80 100644
--- a/source/fi/svtools/messages.po
+++ b/source/fi/svtools/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-22 22:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/fi/>\n"
@@ -648,1102 +648,1090 @@ msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneettinen (aakkosnumeeriset viimeiseksi, konsonanteittain ryhmiteltynä)"
-#. 5Eyy3
-#: include/svtools/strings.hrc:153
-msgctxt "STR_SVT_CALENDAR_TODAY"
-msgid "Today"
-msgstr "Tänään"
-
-#. dQdJw
-#: include/svtools/strings.hrc:154
-msgctxt "STR_SVT_CALENDAR_NONE"
-msgid "None"
-msgstr ""
-
#. KBGLa
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:153
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Kevyt"
#. mZkDz
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Kevyt kursivoitu"
#. QBxYq
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:155
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Tavallinen"
#. u5Gop
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursivoitu"
#. tHu3B
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Lihavoitu"
#. cbXrP
-#: include/svtools/strings.hrc:161
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Lihavoitu ja kursivoitu"
#. yHZD2
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Musta"
#. 4eGUH
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Musta kursivoitu"
#. zhoAB
-#: include/svtools/strings.hrc:164
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Kirja"
#. sqXRb
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Lihavoitu kallistettu"
#. QUBiF
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Tiivistetty"
#. LTVdC
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Tiivistetty lihavoitu"
#. Guayv
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Tiivistetty lihavoitu kursivoitu"
#. AoubP
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:166
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Tiivistetty lihavoitu kallistettu"
#. bpDXQ
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Tiivistetty kursivoitu"
#. YDMtz
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Tiivistetty kallistettu"
#. MouF8
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstraohut"
#. zurf4
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstraohut kursivoitu"
#. apfoW
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Kallistettu"
#. TJsAw
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Puolilihava"
#. LRtri
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Puolilihava kursivoitu"
#. bBXFx
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Samaa fonttia käytetään sekä tulostimessa että näytöllä."
#. HFBCn
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Tämä on tulostinfontti. Se saattaa näyttää erilaiselta näytöllä."
#. iceoL
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Tämä fonttityyli simuloidaan tai käytetään lähintä vastaavaa tyyliä."
#. hBbuZ
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Tätä fonttia ei ole asennettu. Käytetään lähintä asennettua fonttia."
#. KCmDe
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:179
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Siirry kotikansioon"
#. f6NAc
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:180
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Siirrä vasemmalle"
#. nrvoV
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:181
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Siirrä oikealle"
#. ZQgUu
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Siirry loppuun"
#. mZ4Ln
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:183
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Lisää"
#. 4K4AF
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vaakaviivain"
#. PG9qt
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Pystyviivain"
#. WKngA
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bittinen kynnysarvo"
#. dByxQ
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bittinen rasteroitu"
#. kciH5
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bittiset harmaasävyt"
#. TrBvg
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bittiset värit"
#. q6mH9
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:192
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bittiset harmaasävyt"
#. 8u2Zf
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:193
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bittiset värit"
#. DZVK4
-#: include/svtools/strings.hrc:197
+#: include/svtools/strings.hrc:194
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bittiset täysvärit"
#. Grnub
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:195
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Kuva tarvitsee noin %1 Kt muistia."
#. FCnVT
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:196
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Kuva tarvitsee noin %1 Kt muistia, tiedostokoko on %2 Kt."
#. CdHU8
-#: include/svtools/strings.hrc:200
+#: include/svtools/strings.hrc:197
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Tiedostokoko on %1 Kt."
#. TaCaF
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:198
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "palvelin"
#. ERaxD
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:199
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "portti"
#. W88Be
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Muu CMIS"
#. E9JF5
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Valmis"
#. 6zER8
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:202
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Keskeytetty"
#. nqqYs
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Odottaa poistamista"
#. CGn9R
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Varattu"
#. nyGEq
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Alustetaan"
#. hduW4
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Odotetaan"
#. FYGFz
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Lämpenee"
#. qntFR
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Käsitellään"
#. tUmmx
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Tulostetaan"
#. BMWJx
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline-tila"
#. drDMK
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Virhe"
#. FnMTQ
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Tuntematon palvelin"
#. vuLYa
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paperitukos"
#. qG4ZG
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ei tarpeeksi paperia"
#. bB9PC
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuaalinen syöttö"
#. eMZJo
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paperiongelma"
#. RU3Li
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktiivinen"
#. VEuAd
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Tulostuslokero täynnä"
#. MinDm
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Väriaine vähissä"
#. AjnQj
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Väri lopussa"
#. CtvCS
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Poista sivu"
#. iGWiT
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Käyttäjän toimia tarvitaan"
#. 7xg4W
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ei riittävästi muistia"
#. DcNFt
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Avoin kansi"
#. CHiEH
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Virransäästötila"
#. bYbeA
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Oletustulostin"
#. 9QCL5
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d asiakirjaa"
#. yobGc
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:229
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ei mitään>"
#. Fa4nQ
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:230
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Yritys"
#. DdDzQ
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:231
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Osasto"
#. LXmyi
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:232
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Etunimi"
#. 2MkxF
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:233
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Sukunimi"
#. VyyM6
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:234
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Katuosoite"
#. wUdSC
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:235
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Maa"
#. tAg9k
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:236
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postinumero"
#. UYGgj
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:237
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Postitoimipaikka"
#. vTYyD
-#: include/svtools/strings.hrc:241
+#: include/svtools/strings.hrc:238
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titteli"
#. E7qqB
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:239
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Asema"
#. NiFzB
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:240
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Os. muoto"
#. CFDX6
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:241
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Nimikirjaimet"
#. 2DADo
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:242
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Lopputervehdys"
#. 8MWGd
-#: include/svtools/strings.hrc:246
+#: include/svtools/strings.hrc:243
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Puhelin (koti)"
#. fX9J4
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:244
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Puhelin (työ)"
#. Ss9vd
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:245
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faksi"
#. MgbsU
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Sähköposti"
#. aHNGY
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:247
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL-osoite"
#. CGutA
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:248
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Huomautus"
#. btBDG
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Käyttäjä 1"
#. A4nkT
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Käyttäjä 2"
#. J48Kt
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Käyttäjä 3"
#. 3BxjF
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Käyttäjä 4"
#. tBBKp
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Tunnus"
#. H3ygA
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Osavaltio"
#. xP2AC
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Puhelin (toimisto)"
#. P6Vm5
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Hakulaite"
#. ayErk
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Matkapuhelin"
#. 26wjz
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Puhelin (muu)"
#. runZ4
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalenteri"
#. 7niGM
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Kutsu"
#. Fqcgq
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:262
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$:n $service$"
#. 8TFP9
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:264
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME vaatii Java-ajoympäristön (JRE) tämän toiminnon suorittamiseen. Ole hyvä ja asenna JRE ja käynnistä %PRODUCTNAME uudelleen."
#. EmFJc
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:265
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME vaatii %BITNESS-bittisen Java-suoritusympäristön (JRE) tämän toimenpiteen suorittamiseksi. Asenna JRE ja käynnistä %PRODUCTNAME uudelleen."
#. 7Adh2
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:266
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Tämän toiminnon suorittamiseksi %PRODUCTNAME vaatii Oraclen Java-kehitystyökalut (JDK) macOS 10.10 -käyttöjärjestelmässä sekä uudemmissa versioissa. Asenna ne ja käynnistä %PRODUCTNAME uudelleen."
#. 76BEm
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:267
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAMEn kokoonpano on muuttunut. Valitse se Java-ajoympäristö, jota haluat %PRODUCTNAMEn käyttävän asetuksista valikosta %PRODUCTNAME - Asetukset - %PRODUCTNAME - Lisäasetukset."
#. BZvFF
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:268
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAMEn kokoonpano on muuttunut. Valitse se Java-ajoympäristö, jota haluat %PRODUCTNAMEn käyttävän asetuksista valikosta Työkalut - Asetukset - %PRODUCTNAME - Lisäasetukset."
#. Tunzz
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:269
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vaatii Java-ajoympäristön (JRE) tämän toiminnon suorittamiseen. Valittu JRE on viallinen. Valitse toinen versio tai asenna uusi JRE ja ota se käyttöön asetuksista valikosta %PRODUCTNAME - Asetukset - %PRODUCTNAME - Lisäasetukset."
#. rKxCS
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:270
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vaatii Java-ajoympäristön (JRE) tämän toiminnon suorittamiseen. Valittu JRE on viallinen. Valitse toinen versio tai asenna uusi JRE ja ota se käyttöön asetuksista valikosta Työkalut - Asetukset - %PRODUCTNAME - Lisäasetukset."
#. QPEUX
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:271
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE vaaditaan"
#. XD3FG
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:272
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Valitse JRE"
#. WETqJ
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:273
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE on viallinen"
#. q7s6f
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:275
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Lähdekoodi"
#. PZmAB
-#: include/svtools/strings.hrc:279
+#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Kirjanmerkkitiedosto"
#. eNRzD
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:277
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafiikka"
#. Enc4X
-#: include/svtools/strings.hrc:281
+#: include/svtools/strings.hrc:278
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Kokoonpanotiedosto"
#. sP5AK
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:279
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Sovellus"
#. jAA7S
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:280
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tietokantataulukko"
#. CEhUy
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:281
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Järjestelmätiedosto"
#. E2Kzj
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:282
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word -asiakirja"
#. BU7Pw
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:283
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ohjetiedosto"
#. kBbwy
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:284
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-asiakirja"
#. 6W6tY
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:285
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arkistotiedosto"
#. c9WiE
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:286
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Lokitiedosto"
#. gBQzN
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:287
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice-tietokanta"
#. J4Pki
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:288
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 -perusasiakirja"
#. 33Dez
-#: include/svtools/strings.hrc:292
+#: include/svtools/strings.hrc:289
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice-kuva"
#. pcLE6
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:290
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstitiedosto"
#. 7bMJT
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:291
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Linkki"
#. hDFtd
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 – 5.0 -malli"
#. Xcec2
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel -asiakirja"
#. FWiWT
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:294
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel -malli"
#. WBsxH
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Eräajotiedosto"
#. SPQtV
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Tiedosto"
#. Vh78a
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Kansio"
#. ZK69j
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstiasiakirja"
#. p2aL6
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Laskentataulukko"
#. SCtHH
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Esitys"
#. 5gtdF
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Piirros"
#. suagX
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-asiakirja"
#. iLqe2
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Perusasiakirja"
#. FF4fa
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Kaava"
#. t58zy
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Tietokanta"
#. DiNGB
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 -laskentataulukkomalli"
#. FYKGV
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 -piirrosmalli"
#. CTUQg
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 -esitysmalli"
#. Cbvtx
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 -tekstimalli"
#. FBCWx
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Paikallinen asema"
#. MEF3h
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Levyasema"
#. 55Dof
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-asema"
#. 82Acc
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Verkkoyhteys"
#. 3CBfJ
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint -asiakirja"
#. DS7CP
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint -malli"
#. syag8
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint -esitys"
#. fHGcD
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 -kaava"
#. CFw78
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 -kaavio"
#. tJhDC
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 -piirros"
#. f9ZNL
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 -laskentataulukko"
#. PCBqi
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 -esitys"
#. Npija
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 -tekstiasiakirja"
#. tVnQQ
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 -perusasiakirja"
#. t6krU
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-asiakirja"
#. ims8J
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-tietokanta"
#. oEsdN
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-piirros"
#. Bt5dS
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-kaava"
#. sMAZA
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-perusasiakirja"
#. ufLx7
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-esitys"
#. TjbnG
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-laskentataulukko"
#. FbCGb
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-teksti"
#. JRP2W
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-laskentataulukkomalli"
#. 3QUto
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-piirrosmalli"
#. 5CfAm
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-esitysmalli"
#. PBGYD
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekstimalli"
#. RgRyf
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-lisäosa"
#. b8JK6
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell-oikoluku"
#. do26f
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen-tavutus"
#. aGFNy
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Mythes-synonyymisanasto"
#. RwS4n
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Ohitettujen sanojen luettelo"
@@ -4909,76 +4897,16 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sundanese"
msgstr "sunda"
-#. Fsz7D
-#: svtools/inc/templwin.hrc:41
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Title"
-msgstr "Otsikko"
-
-#. zo57j
-#: svtools/inc/templwin.hrc:42
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "By"
-msgstr "Tekijä"
-
-#. Zh8Ni
-#: svtools/inc/templwin.hrc:43
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Date"
-msgstr "Päivämäärä"
-
-#. eHFA4
-#: svtools/inc/templwin.hrc:44
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Keywords"
-msgstr "Avainsanat"
-
-#. eYGnQ
-#: svtools/inc/templwin.hrc:45
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Description"
-msgstr "Kuvaus"
-
-#. Eg2eG
-#: svtools/inc/templwin.hrc:46
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Type"
-msgstr "Tyyppi"
-
-#. hokZy
-#: svtools/inc/templwin.hrc:47
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Modified on"
-msgstr "Muokattu viimeksi"
-
-#. XMEJb
-#: svtools/inc/templwin.hrc:48
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Modified by"
-msgstr "Muokkaaja"
-
-#. MWkd5
-#: svtools/inc/templwin.hrc:49
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Printed on"
-msgstr "Tulostuspäivä"
-
-#. BBEEC
-#: svtools/inc/templwin.hrc:50
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Printed by"
-msgstr "Tulostanut"
-
-#. VCGe3
-#: svtools/inc/templwin.hrc:51
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Subject"
-msgstr "Aihe"
-
-#. HVYdE
-#: svtools/inc/templwin.hrc:52
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Size"
+#. wGEAB
+#: svtools/inc/langtab.hrc:429
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "English (Hong Kong)"
+msgstr "englanti (Hongkong)"
+
+#. qTMB2
+#: svtools/inc/langtab.hrc:430
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "English (Kenya)"
msgstr ""
#. fXSja
@@ -4989,35 +4917,65 @@ msgid "Templates: Address Book Assignment"
msgstr "Mallit: Osoitekirjan valinta"
#. AhGyN
-#: svtools/uiconfig/ui/addresstemplatedialog.ui:109
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:106
msgctxt "addresstemplatedialog|label33"
msgid "Data source:"
msgstr "Tietolähde:"
#. FSgAi
-#: svtools/uiconfig/ui/addresstemplatedialog.ui:123
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:120
msgctxt "addresstemplatedialog|label43"
msgid "Table:"
msgstr "Taulukko:"
+#. z3CHk
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:144
+msgctxt "addresstemplatedialog|extended_tip|datasource"
+msgid "Select the data source for your address book."
+msgstr "Valitse osoitekirjasi tietolähde."
+
+#. UTY6t
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:167
+msgctxt "addresstemplatedialog|extended_tip|datatable"
+msgid "Select the data table for your address book."
+msgstr "Valitse taulu osoitekirjallesi."
+
#. xkk5e
-#: svtools/uiconfig/ui/addresstemplatedialog.ui:171
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:178
msgctxt "addresstemplatedialog|admin"
msgid "_Assign"
msgstr ""
+#. TG8ad
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:185
+msgctxt "addresstemplatedialog|extended_tip|admin"
+msgid "Add a new data source to the Address Book Source list."
+msgstr ""
+
#. sws8j
-#: svtools/uiconfig/ui/addresstemplatedialog.ui:193
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:205
msgctxt "addresstemplatedialog|label100"
msgid "Address Book Source"
msgstr "Osoitekirjan lähde"
#. K4oiz
-#: svtools/uiconfig/ui/addresstemplatedialog.ui:540
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:552
msgctxt "addresstemplatedialog|label23"
msgid "Field Assignment"
msgstr "Kenttämääritys"
+#. zEPAf
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:560
+msgctxt "addresstemplatedialog|extended_tip|assign"
+msgid "Select the field in the data table that corresponds to the address book entry."
+msgstr "Valitaan tietotaulun kentän nimi, joka vastaa osoitekirjan kenttää."
+
+#. qKBRS
+#: svtools/uiconfig/ui/addresstemplatedialog.ui:588
+msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
+msgid "Edit the field assignments and the data source for your address book."
+msgstr "Muokataan osoitekirjan kentänmäärityksiä ja tietolähdevalintoja."
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
@@ -5037,223 +4995,349 @@ msgid "%1 Options"
msgstr "%1-asetukset"
#. pyd6J
-#: svtools/uiconfig/ui/graphicexport.ui:135
+#: svtools/uiconfig/ui/graphicexport.ui:132
msgctxt "graphicexport|label5"
msgid "Width:"
msgstr "Leveys:"
#. drQDY
-#: svtools/uiconfig/ui/graphicexport.ui:149
+#: svtools/uiconfig/ui/graphicexport.ui:146
msgctxt "graphicexport|label6"
msgid "Height:"
msgstr "Korkeus:"
#. ZWxGB
-#: svtools/uiconfig/ui/graphicexport.ui:163
+#: svtools/uiconfig/ui/graphicexport.ui:160
msgctxt "graphicexport|resolutionft"
msgid "Resolution:"
msgstr "Tarkkuus:"
+#. 2rwEJ
+#: svtools/uiconfig/ui/graphicexport.ui:180
+msgctxt "graphicexport|extended_tip|widthmf"
+msgid "Specifies the measurement units."
+msgstr "Asettaa mittayksiköt."
+
+#. BPaB3
+#: svtools/uiconfig/ui/graphicexport.ui:199
+msgctxt "graphicexport|extended_tip|heightmf"
+msgid "Specifies the height."
+msgstr "Määritetään kuvan korkeus."
+
+#. Da3fv
+#: svtools/uiconfig/ui/graphicexport.ui:217
+msgctxt "graphicexport|extended_tip|resolutionmf"
+msgid "Enter the image resolution. Select the measurement units from the list box."
+msgstr "Anna kuvan resoluutio ja valitse mittayksikkö valintalistasta."
+
#. S9aHs
-#: svtools/uiconfig/ui/graphicexport.ui:219
+#: svtools/uiconfig/ui/graphicexport.ui:231
msgctxt "graphicexport|liststore2"
msgid "inches"
msgstr "tuumaa"
#. dCstP
-#: svtools/uiconfig/ui/graphicexport.ui:220
+#: svtools/uiconfig/ui/graphicexport.ui:232
msgctxt "graphicexport|liststore2"
msgid "cm"
msgstr "cm"
#. X5dLV
-#: svtools/uiconfig/ui/graphicexport.ui:221
+#: svtools/uiconfig/ui/graphicexport.ui:233
msgctxt "graphicexport|liststore2"
msgid "mm"
msgstr "mm"
#. 6vWVJ
-#: svtools/uiconfig/ui/graphicexport.ui:222
+#: svtools/uiconfig/ui/graphicexport.ui:234
msgctxt "graphicexport|liststore2"
msgid "points"
msgstr "pistettä"
#. ZqyAj
-#: svtools/uiconfig/ui/graphicexport.ui:223
+#: svtools/uiconfig/ui/graphicexport.ui:235
msgctxt "graphicexport|liststore2"
msgid "pixels"
msgstr "kuvapistettä"
+#. QL8mE
+#: svtools/uiconfig/ui/graphicexport.ui:239
+msgctxt "graphicexport|extended_tip|widthlb"
+msgid "Specifies the width."
+msgstr "Määritetään kuvan leveys."
+
#. kYLvv
-#: svtools/uiconfig/ui/graphicexport.ui:236
+#: svtools/uiconfig/ui/graphicexport.ui:253
msgctxt "graphicexport|liststore1"
msgid "pixels/cm"
msgstr "kuvapistettä/cm"
#. zjmFd
-#: svtools/uiconfig/ui/graphicexport.ui:237
+#: svtools/uiconfig/ui/graphicexport.ui:254
msgctxt "graphicexport|liststore1"
msgid "pixels/inch"
msgstr "kuvapistettä/tuuma"
#. iMZW3
-#: svtools/uiconfig/ui/graphicexport.ui:238
+#: svtools/uiconfig/ui/graphicexport.ui:255
msgctxt "graphicexport|liststore1"
msgid "pixels/meter"
msgstr "kuvapistettä/metri"
+#. ND5ki
+#: svtools/uiconfig/ui/graphicexport.ui:259
+msgctxt "graphicexport|extended_tip|resolutionlb"
+msgid "Enter the image resolution. Select the measurement units from the list box."
+msgstr "Anna kuvan resoluutio ja valitse mittayksikkö valintalistasta."
+
#. ENaqm
-#: svtools/uiconfig/ui/graphicexport.ui:257
+#: svtools/uiconfig/ui/graphicexport.ui:279
msgctxt "graphicexport|label1"
msgid "Size"
msgstr "Koko"
+#. Dc5fy
+#: svtools/uiconfig/ui/graphicexport.ui:309
+msgctxt "graphicexport|extended_tip|colordepthlb"
+msgid "Select the color depth from 8 bit grayscale or 24 bit true color."
+msgstr "Valitaan värisyvyys 8 bitin harmaasävyn ja 24 bitin täysvärin väliltä."
+
#. hFaPC
-#: svtools/uiconfig/ui/graphicexport.ui:293
+#: svtools/uiconfig/ui/graphicexport.ui:320
msgctxt "graphicexport|label2"
msgid "Color Depth"
msgstr "Värisyvyys"
+#. EFn8k
+#: svtools/uiconfig/ui/graphicexport.ui:358
+msgctxt "graphicexport|extended_tip|compressionjpgnf"
+msgid "Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size"
+msgstr "Asettaa vietävän kuvatiedoston laadun. Valittavissa on heikosta laadusta pienen tiedostokokoon kanssa korkealaatuiseen kuvaan ison tiedostokoon kanssa"
+
#. Tk5y2
-#: svtools/uiconfig/ui/graphicexport.ui:357
+#: svtools/uiconfig/ui/graphicexport.ui:389
msgctxt "graphicexport|label9"
msgid "Quality"
msgstr "Laatu"
+#. AHkNV
+#: svtools/uiconfig/ui/graphicexport.ui:427
+msgctxt "graphicexport|extended_tip|compressionpngnf"
+msgid "Sets the compression for the export. A high compression means a smaller, but slower to load image."
+msgstr "Asettaa vietävän kuvatiedoston pakkaustehokkuuden. Suuri pakkaustiheys tarkoittaa pienempää mutta hitaammin purettavaa kuvaa."
+
#. f4LYz
-#: svtools/uiconfig/ui/graphicexport.ui:421
+#: svtools/uiconfig/ui/graphicexport.ui:458
msgctxt "graphicexport|label"
msgid "Compression"
msgstr "Tiivistys"
#. hQadL
-#: svtools/uiconfig/ui/graphicexport.ui:447
+#: svtools/uiconfig/ui/graphicexport.ui:484
msgctxt "graphicexport|rlecb"
msgid "RLE encoding"
msgstr "RLE-koodaus"
+#. DqpKW
+#: svtools/uiconfig/ui/graphicexport.ui:494
+msgctxt "graphicexport|extended_tip|rlecb"
+msgid "Applies RLE (Run Length Encoding) to the BMP graphics."
+msgstr "Käytetään häviötöntä RLE-pakkausta BMP-kuviin."
+
#. EA7BF
-#: svtools/uiconfig/ui/graphicexport.ui:463
+#: svtools/uiconfig/ui/graphicexport.ui:505
msgctxt "graphicexport|label3"
msgid "Compression"
msgstr "Tiivistys"
#. qiLZK
-#: svtools/uiconfig/ui/graphicexport.ui:489
+#: svtools/uiconfig/ui/graphicexport.ui:531
msgctxt "graphicexport|interlacedcb"
msgid "Interlaced"
msgstr "Lomitettu"
+#. cLvu6
+#: svtools/uiconfig/ui/graphicexport.ui:541
+msgctxt "graphicexport|extended_tip|interlacedcb"
+msgid "Specifies whether the graphic is to be saved in interlaced mode."
+msgstr "Merkinnällä määrätään, että kuva tallennetaan lomitetussa muodossa."
+
#. BkbD3
-#: svtools/uiconfig/ui/graphicexport.ui:505
+#: svtools/uiconfig/ui/graphicexport.ui:552
msgctxt "graphicexport|label12"
msgid "Mode"
msgstr "Tila"
#. Nhj88
-#: svtools/uiconfig/ui/graphicexport.ui:531
+#: svtools/uiconfig/ui/graphicexport.ui:578
msgctxt "graphicexport|savetransparencycb"
msgid "Save transparency"
msgstr "Tallenna läpinäkyvyys"
+#. kZ3uW
+#: svtools/uiconfig/ui/graphicexport.ui:588
+msgctxt "graphicexport|extended_tip|savetransparencycb"
+msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
+msgstr "Määritetään, tallennetaanko kuvan tausta läpinäkyvänä. Vain objektit ovat näkyviä GIF-kuvassa. Käytetään värinvalitsinta värin läpinäkyväksi asettamiseen kuvassa."
+
#. ZPmXf
-#: svtools/uiconfig/ui/graphicexport.ui:547
+#: svtools/uiconfig/ui/graphicexport.ui:599
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
msgstr "Piirrosobjektit"
#. KMCxb
-#: svtools/uiconfig/ui/graphicexport.ui:577
+#: svtools/uiconfig/ui/graphicexport.ui:629
msgctxt "graphicexport|binarycb"
msgid "Binary"
msgstr "Binääri"
+#. qFTuj
+#: svtools/uiconfig/ui/graphicexport.ui:639
+msgctxt "graphicexport|extended_tip|binarycb"
+msgid "Exports the file in binary format. The resulting file is smaller than a text file."
+msgstr "Viedään tiedosto binäärimuodossa. Syntyvä tiedosto on pienempi kuin tekstitiedosto."
+
#. 8cZsH
-#: svtools/uiconfig/ui/graphicexport.ui:593
+#: svtools/uiconfig/ui/graphicexport.ui:650
msgctxt "graphicexport|textcb"
msgid "Text"
msgstr "Teksti"
+#. GFbg2
+#: svtools/uiconfig/ui/graphicexport.ui:660
+msgctxt "graphicexport|extended_tip|textcb"
+msgid "Exports the file in ASCII text format. The resulting file is larger than a binary file."
+msgstr "Viedään tiedosto ASCII-tekstimuodossa. Syntyvä tiedosto on suurempi kuin binäärinen."
+
#. ECUb9
-#: svtools/uiconfig/ui/graphicexport.ui:615
+#: svtools/uiconfig/ui/graphicexport.ui:677
msgctxt "graphicexport|label16"
msgid "Encoding"
msgstr "Merkistökoodaus"
#. aeV52
-#: svtools/uiconfig/ui/graphicexport.ui:649
+#: svtools/uiconfig/ui/graphicexport.ui:711
msgctxt "graphicexport|tiffpreviewcb"
msgid "Image preview (TIFF)"
msgstr "Kuvan esikatselu (TIFF)"
+#. H8vtD
+#: svtools/uiconfig/ui/graphicexport.ui:721
+msgctxt "graphicexport|extended_tip|tiffpreviewcb"
+msgid "Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file."
+msgstr "Määrätään, viedäänkö TIFF-muotoinen esikatselukuva varsinaisen PostScript-tiedoston mukana."
+
#. AeEJu
-#: svtools/uiconfig/ui/graphicexport.ui:665
+#: svtools/uiconfig/ui/graphicexport.ui:732
msgctxt "graphicexport|epsipreviewcb"
msgid "Interchange (EPSI)"
msgstr "Siirto (EPSI)"
+#. gLbUQ
+#: svtools/uiconfig/ui/graphicexport.ui:741
+msgctxt "graphicexport|extended_tip|epsipreviewcb"
+msgid "Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code."
+msgstr "Määrätään, viedäänkö yksivärinen EPSI-muotoinen esikatselukuva PostScript-tiedostossa. Tässä tiedostomuodossa on vain 7-bittisen ASCII-koodin tulostuvia merkkejä."
+
#. sRbZb
-#: svtools/uiconfig/ui/graphicexport.ui:686
+#: svtools/uiconfig/ui/graphicexport.ui:758
msgctxt "graphicexport|label17"
msgid "Preview"
msgstr "Esikatselu"
#. Jfbgx
-#: svtools/uiconfig/ui/graphicexport.ui:716
+#: svtools/uiconfig/ui/graphicexport.ui:788
msgctxt "graphicexport|color1rb"
msgid "Color"
msgstr "Väri"
+#. LNHEi
+#: svtools/uiconfig/ui/graphicexport.ui:798
+msgctxt "graphicexport|extended_tip|color1rb"
+msgid "Exports the file in color."
+msgstr "Tiedosto viedään värillisenä."
+
#. VeZFK
-#: svtools/uiconfig/ui/graphicexport.ui:732
+#: svtools/uiconfig/ui/graphicexport.ui:809
msgctxt "graphicexport|color2rb"
msgid "Grayscale"
msgstr "Harmaasävy"
+#. TWEx8
+#: svtools/uiconfig/ui/graphicexport.ui:819
+msgctxt "graphicexport|extended_tip|color2rb"
+msgid "Exports the file in grayscale tones."
+msgstr "Tiedosto viedään harmaasävyisenä."
+
#. BbSGF
-#: svtools/uiconfig/ui/graphicexport.ui:754
+#: svtools/uiconfig/ui/graphicexport.ui:836
msgctxt "graphicexport|label18"
msgid "Color Format"
msgstr "Värimuoto"
#. b6J7X
-#: svtools/uiconfig/ui/graphicexport.ui:784
+#: svtools/uiconfig/ui/graphicexport.ui:866
msgctxt "graphicexport|level1rb"
msgid "Level 1"
msgstr "Taso 1"
+#. pEcBC
+#: svtools/uiconfig/ui/graphicexport.ui:876
+msgctxt "graphicexport|extended_tip|level1rb"
+msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
+msgstr "Pakkausta ei käytetä tällä tasolla. Valitaan Taso 1, jos PostScript-tulostimessa ei ole tason 2 ominaisuuksia."
+
#. kuCNX
-#: svtools/uiconfig/ui/graphicexport.ui:800
+#: svtools/uiconfig/ui/graphicexport.ui:887
msgctxt "graphicexport|level2rb"
msgid "Level 2"
msgstr "Taso 2"
+#. wiWrE
+#: svtools/uiconfig/ui/graphicexport.ui:897
+msgctxt "graphicexport|extended_tip|level2rb"
+msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
+msgstr "Valitaan Taso 2, jos tulostuslaite tukee värillisiä bittikarttakuvia, väripalettikuvia ja pakattuja kuvia."
+
#. JUuBZ
-#: svtools/uiconfig/ui/graphicexport.ui:822
+#: svtools/uiconfig/ui/graphicexport.ui:914
msgctxt "graphicexport|label19"
msgid "Version"
msgstr "Versio"
#. FjkbL
-#: svtools/uiconfig/ui/graphicexport.ui:852
+#: svtools/uiconfig/ui/graphicexport.ui:944
msgctxt "graphicexport|compresslzw"
msgid "LZW encoding"
msgstr "LZW-koodaus"
+#. 5cYFM
+#: svtools/uiconfig/ui/graphicexport.ui:954
+msgctxt "graphicexport|extended_tip|compresslzw"
+msgid "LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm."
+msgstr "LZW-pakkaus tekee tiedostosta pienemmän käyttäen hakutaulukkoon perustuvaa algoritmia."
+
#. vXGXe
-#: svtools/uiconfig/ui/graphicexport.ui:868
+#: svtools/uiconfig/ui/graphicexport.ui:965
msgctxt "graphicexport|compressnone"
msgid "None"
msgstr "Ei mikään"
+#. kW3QD
+#: svtools/uiconfig/ui/graphicexport.ui:975
+msgctxt "graphicexport|extended_tip|compressnone"
+msgid "Specifies that you do not wish to use compression."
+msgstr "Merkinnällä määrätään, ettei pakkausta käytetä."
+
#. ghAqZ
-#: svtools/uiconfig/ui/graphicexport.ui:890
+#: svtools/uiconfig/ui/graphicexport.ui:992
msgctxt "graphicexport|label20"
msgid "Compression"
msgstr "Tiivistys"
#. LmAeC
-#: svtools/uiconfig/ui/graphicexport.ui:936
+#: svtools/uiconfig/ui/graphicexport.ui:1038
msgctxt "graphicexport|label4"
msgid "Information"
msgstr "Tietoja"
@@ -5283,91 +5367,91 @@ msgid "File Services"
msgstr "Tiedostopalvelut"
#. sz9uP
-#: svtools/uiconfig/ui/placeedit.ui:111
+#: svtools/uiconfig/ui/placeedit.ui:110
msgctxt "placeedit|typeLabel"
msgid "Type:"
msgstr "Tyyppi:"
#. AkqhA
-#: svtools/uiconfig/ui/placeedit.ui:127
+#: svtools/uiconfig/ui/placeedit.ui:126
msgctxt "placeedit|liststore1"
msgid "WebDAV"
msgstr "WebDAV"
#. uYEwE
-#: svtools/uiconfig/ui/placeedit.ui:128
+#: svtools/uiconfig/ui/placeedit.ui:127
msgctxt "placeedit|liststore1"
msgid "FTP"
msgstr "FTP"
#. jtCfC
-#: svtools/uiconfig/ui/placeedit.ui:129
+#: svtools/uiconfig/ui/placeedit.ui:128
msgctxt "placeedit|liststore1"
msgid "SSH"
msgstr "SSH"
#. 5aYwy
-#: svtools/uiconfig/ui/placeedit.ui:130
+#: svtools/uiconfig/ui/placeedit.ui:129
msgctxt "placeedit|liststore1"
msgid "Windows Share"
msgstr "Windows-verkkojako"
#. NFxzA
-#: svtools/uiconfig/ui/placeedit.ui:155
+#: svtools/uiconfig/ui/placeedit.ui:154
msgctxt "placeedit|hostLabel"
msgid "Host:"
msgstr "Palvelin:"
#. YuAy3
-#: svtools/uiconfig/ui/placeedit.ui:169
+#: svtools/uiconfig/ui/placeedit.ui:168
msgctxt "placeedit|pathLabel"
msgid "Root:"
msgstr "Juuri:"
#. uEUaM
-#: svtools/uiconfig/ui/placeedit.ui:195
+#: svtools/uiconfig/ui/placeedit.ui:194
msgctxt "placeedit|shareLabel"
msgid "Share:"
msgstr "Jako:"
#. xJNi8
-#: svtools/uiconfig/ui/placeedit.ui:221
+#: svtools/uiconfig/ui/placeedit.ui:220
msgctxt "placeedit|repositoryLabel"
msgid "Repository:"
msgstr "Tietovarasto:"
#. 6xp54
-#: svtools/uiconfig/ui/placeedit.ui:233
+#: svtools/uiconfig/ui/placeedit.ui:232
msgctxt "placeedit|webdavs"
msgid "Secure connection"
msgstr "Suojattu yhteys"
#. B8mT8
-#: svtools/uiconfig/ui/placeedit.ui:250
+#: svtools/uiconfig/ui/placeedit.ui:249
msgctxt "placeedit|loginLabel"
msgid "User:"
msgstr "Käyttäjä:"
#. jRt98
-#: svtools/uiconfig/ui/placeedit.ui:276
+#: svtools/uiconfig/ui/placeedit.ui:275
msgctxt "placeedit|nameLabel"
msgid "Label:"
msgstr "Selite:"
#. 6QfCF
-#: svtools/uiconfig/ui/placeedit.ui:320
+#: svtools/uiconfig/ui/placeedit.ui:319
msgctxt "placeedit|portLabel"
msgid "Port:"
msgstr "Portti:"
#. 8boor
-#: svtools/uiconfig/ui/placeedit.ui:392
+#: svtools/uiconfig/ui/placeedit.ui:391
msgctxt "placeedit|passwordLabel"
msgid "Password:"
msgstr "Salasana:"
#. DFwBC
-#: svtools/uiconfig/ui/placeedit.ui:415
+#: svtools/uiconfig/ui/placeedit.ui:414
msgctxt "placeedit|rememberPassword"
msgid "Remember password"
msgstr "Muista salasana"
@@ -5384,48 +5468,72 @@ msgctxt "printersetupdialog|options"
msgid "Options..."
msgstr "Asetukset..."
+#. BAnmG
+#: svtools/uiconfig/ui/printersetupdialog.ui:46
+msgctxt "printersetupdialog|extended_tip|options"
+msgid "Opens the Printer Options dialog where you can override the global printer options set on the Tools - Options - %PRODUCTNAME Writer/Web - Print panel for the current document."
+msgstr ""
+
#. NCVY4
-#: svtools/uiconfig/ui/printersetupdialog.ui:112
+#: svtools/uiconfig/ui/printersetupdialog.ui:117
msgctxt "printersetupdialog|label2"
msgid "Name:"
msgstr "Nimi:"
#. utGE2
-#: svtools/uiconfig/ui/printersetupdialog.ui:126
+#: svtools/uiconfig/ui/printersetupdialog.ui:131
msgctxt "printersetupdialog|label3"
msgid "Status:"
msgstr "Tila:"
#. GxvkC
-#: svtools/uiconfig/ui/printersetupdialog.ui:138
+#: svtools/uiconfig/ui/printersetupdialog.ui:143
msgctxt "printersetupdialog|label4"
msgid "Type:"
msgstr "Tyyppi:"
#. amoGB
-#: svtools/uiconfig/ui/printersetupdialog.ui:150
+#: svtools/uiconfig/ui/printersetupdialog.ui:155
msgctxt "printersetupdialog|label5"
msgid "Location:"
msgstr "Sijainti:"
#. B66Zc
-#: svtools/uiconfig/ui/printersetupdialog.ui:162
+#: svtools/uiconfig/ui/printersetupdialog.ui:167
msgctxt "printersetupdialog|label6"
msgid "Comment:"
msgstr "Huomautus:"
#. 3uJUu
-#: svtools/uiconfig/ui/printersetupdialog.ui:220
+#: svtools/uiconfig/ui/printersetupdialog.ui:225
msgctxt "printersetupdialog|properties"
msgid "Properties..."
msgstr "Ominaisuudet..."
+#. DFBtc
+#: svtools/uiconfig/ui/printersetupdialog.ui:231
+msgctxt "printersetupdialog|extended_tip|properties"
+msgid "Changes the printer settings of your operating system for the current document."
+msgstr ""
+
+#. TrFGR
+#: svtools/uiconfig/ui/printersetupdialog.ui:247
+msgctxt "printersetupdialog|extended_tip|name"
+msgid "Lists the installed printers on your operating system. To change the default printer, select a printer name from the list."
+msgstr ""
+
#. XHe8U
-#: svtools/uiconfig/ui/printersetupdialog.ui:249
+#: svtools/uiconfig/ui/printersetupdialog.ui:264
msgctxt "printersetupdialog|label1"
msgid "Printer"
msgstr "Tulostin"
+#. sR2LP
+#: svtools/uiconfig/ui/printersetupdialog.ui:289
+msgctxt "printersetupdialog|extended_tip|PrinterSetupDialog"
+msgid "Select the default printer for the current document."
+msgstr ""
+
#. psFPB
#: svtools/uiconfig/ui/querydeletedialog.ui:7
msgctxt "querydeletedialog|QueryDeleteDialog"
@@ -5540,38 +5648,38 @@ msgctxt "restartdialog|reason_extension_install"
msgid "For the extension to work properly, %PRODUCTNAME must be restarted."
msgstr "Jotta lisäosa toimisi oikein, täytyy %PRODUCTNAME käynnistää uudelleen."
-#. 8WEDo
-#: svtools/uiconfig/ui/restartdialog.ui:220
-msgctxt "restartdialog|reason_opengl"
-msgid "For the OpenGL changes to take effect, %PRODUCTNAME must be restarted."
-msgstr "Jotta OpenGL-muutokset tulisivat voimaan, täytyy %PRODUCTNAME käynnistää uudelleen."
-
#. AGbvD
-#: svtools/uiconfig/ui/restartdialog.ui:235
+#: svtools/uiconfig/ui/restartdialog.ui:220
msgctxt "restartdialog|reason_opencl"
msgid "For the OpenCL changes to take effect, %PRODUCTNAME must be restarted."
msgstr "OpenCL-muutokset vaativat, että %PRODUCTNAME käynnistetään uudelleen."
#. sGe6v
-#: svtools/uiconfig/ui/restartdialog.ui:250
+#: svtools/uiconfig/ui/restartdialog.ui:235
msgctxt "restartdialog|reason_threading"
msgid "For the multi-threaded calculation changes to take effect, %PRODUCTNAME must be restarted."
msgstr "Monisäikeisen laskennan muutokset vaativat, että %PRODUCTNAME käynnistetään uudelleen."
#. nUonf
-#: svtools/uiconfig/ui/restartdialog.ui:265
+#: svtools/uiconfig/ui/restartdialog.ui:250
msgctxt "restartdialog|reason_mscompatible_formsmenu"
msgid "For restructuring the Form menu, %PRODUCTNAME must be restarted."
msgstr "Lomake-valikon uudelleenjärjestely vaatii %PRODUCTNAMEn uudelleenkäynnistyksen."
#. weAzr
-#: svtools/uiconfig/ui/restartdialog.ui:280
+#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|label"
msgid "Do you want to restart %PRODUCTNAME now?"
msgstr "Haluatko käynnistää %PRODUCTNAMEn uudelleen nyt?"
#. fpc8k
-#: svtools/uiconfig/ui/restartdialog.ui:294
+#: svtools/uiconfig/ui/restartdialog.ui:279
msgctxt "restartdialog|reason_skia"
msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr "%PRODUCTNAME täytyy käynnistää uudelleen, jotta Skia-muutokset tulevat voimaan."
+
+#. v9FjK
+#: svtools/uiconfig/ui/thineditcontrol.ui:63
+msgctxt "thineditcontrol|button"
+msgid "Pick Date"
+msgstr "Valitse päivämäärä"
diff --git a/source/fi/svx/messages.po b/source/fi/svx/messages.po
index 70154cd2739..621dc52038c 100644
--- a/source/fi/svx/messages.po
+++ b/source/fi/svx/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/fi/>\n"
@@ -2053,4446 +2053,4490 @@ msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "Varjon läpinäkyvyys"
-#. sDFuG
+#. AtDxf
#: include/svx/strings.hrc:367
+msgctxt "SIP_SA_SHADOWBLUR"
+msgid "Shadow blur"
+msgstr "Varjon sumeus"
+
+#. sDFuG
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "3D-varjo"
#. FGU8f
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "Perspektiivivarjo"
#. MV529
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "Selitteen laji"
#. GAtWb
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "Kiinteä selitteen kulma"
#. SgHKq
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "Selitteen kulma"
#. gwcQp
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "Selitteen riviväli"
#. 6uEae
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "Selitteen lopun tasaus"
#. TXjGv
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "Suhteellinen poistumaselite"
#. Z5bQB
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "Suhteellinen poistumaselite"
#. 4TmFK
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "Absoluuttinen poistumaselite"
#. V9TG8
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "Selitteen rivipituus"
#. haQgi
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "Seliterivien automaattinen pituus"
#. DGKz5
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr "Kulmasäde"
#. GEA3m
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "Kehyksen vähimmäiskorkeus"
#. 3jdRR
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "Automaattinen korkeuden sovitus"
#. NoJR4
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "Sovita teksti kehykseen"
#. EexDC
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "Vasemman tekstikehyksen välit"
#. 3thvB
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "Oikean tekstikehyksen välit"
#. 8x2Xa
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "Ylemmän tekstikehyksen välit"
#. WyymX
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "Alemman tekstikehyksen välit"
#. vdbvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "Pystysuuntainen tekstiankkuri"
#. QzTNc
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "Kehyksen enimmäiskorkeus"
#. CcAnR
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "Kehyksen vähimmäisleveys"
#. i6nqD
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "Kehyksen enimmäisleveys"
#. irtVb
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "Automaattinen leveyden sovitus"
#. BGR8n
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "Vaakatason tekstiankkuri"
#. ruk5J
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "Vierivä teksti"
#. cvDiA
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "Vierivän tekstin suunta"
#. GuCC5
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "Vierivän tekstin käynnistys sisältä"
#. ipog5
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "Vierivän tekstin pysäytys sisällä"
#. pWAHL
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "Vierivän tekstin suorituskertojen määrä"
#. vGEjP
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "Vierivän tekstin nopeus"
#. SdHEU
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "Vierivän tekstin askelkoko"
#. LzoA5
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "Jäsennyksen rivitys"
#. HDtDf
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "Käyttäjän määritteet"
#. F9FzF
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "Käytä fonttiriippumatonta riviväliä"
#. jTAhz
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "Rivitä teksti muodossa"
#. QDaB6
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr "Seuraava linkki tekstiketjussa"
#. BA5dh
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "Yhdysviivan tyyppi"
#. CoYH2
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "Vaakaväliobjekti 1"
#. xdvs2
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "Pystyväliobjekti 1"
#. FB4Cj
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "Vaakaväliobjekti 2"
#. uGKvj
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "Pystyväliobjekti 2"
#. FSkBP
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "Liimaväliobjekti 1"
#. 845KH
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "Liimaväliobjekti 2"
#. FEDAf
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "Siirrettävien rivien määrä"
#. EnGaG
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "Siirtymärivi 1"
#. 5XFzK
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "Siirtymärivi 2"
#. nBFrd
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "Siirtymärivi 3"
#. x7oEC
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Mitoituslaji"
#. 2XCPo
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "Mitoitusarvo - vaakasijainti"
#. DxA8Z
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "Mitoitusarvo - pystysijainti"
#. LQCsj
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "Mittajanan väli"
#. jZBoK
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
#, fuzzy
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "Leijuva ohjemittaviiva"
#. Bhboy
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
#, fuzzy
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "Ohjemittaviivan välit"
#. jw9E7
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
#, fuzzy
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "Ohjemittaviivan taustaloki 1"
#. CYFg6
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
#, fuzzy
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "Ohjemittaviivan taustaloki 2"
#. ocvCK
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "Alareunan mitoitus"
#. cFVVA
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
#, fuzzy
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "Mittaviivojen mitta-arvo"
#. VVAgC
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "Kierrä mitta-arvoa 180 astetta"
#. iFX7y
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "Mittajanan ulkonema"
#. DoBGo
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "Mittayksikkö"
#. 2NBMp
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "Lisäskaalauskerroin"
#. 4yTAW
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "Mittayksikön näyttö"
#. NFDC3
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "Mitoitusarvon muoto"
#. UBjQk
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "Mitta-arvon automaattinen sijoittelu"
#. GDQC3
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "Mitta-arvon automaattisen sijoituksen kulma"
#. DB243
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "Mitta-arvon kulman määritys"
#. i3Bah
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "Mitta-arvon kulma"
#. qWKC7
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "Desimaaleja"
#. wkrNX
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "Ympyrän tyyppi"
#. FRFU8
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "Aloituskulma"
#. FmSKG
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "Loppukulma"
#. ejn6F
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "Suojattu objektisijainti"
#. ZPEB9
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "Suojattu objektikoko"
#. BN5CM
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "Objekti, tulostettava"
#. 3Digj
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "Objekti, näkyvä"
#. nZLtM
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "Tasotunnus"
#. f3ed2
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "Kerros"
#. rb6GC
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "Objektin nimi"
#. 5zRFi
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "Sijainti X, valmis"
#. 5enZ7
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "Sijainti Y, valmis"
#. 2V5Mn
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "Kokonaisleveys"
#. P6Y6W
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "Korkeus, täydellinen"
#. yFnnC
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "Yksittäinen sijainti X"
#. jEGfd
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "Yksittäinen sijainti Y"
#. YJFnY
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "Yksittäinen leveys"
#. bZFkM
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "Yksittäinen korkeus"
#. K5Xuq
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "Looginen leveys"
#. 9Niyk
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "Looginen korkeus"
#. yFmvh
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "Yksittäinen kiertokulma"
#. zNyKY
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "Yksittäinen murtumakulma"
#. bJv8D
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "Siirrä vaakatasossa"
#. z7EPp
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "Siirrä pystysuunnassa"
#. Qn4GS
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "Muuta X:n kokoa, yksittäinen"
#. VCtZa
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Muuta Y:n kokoa, yksittäinen"
#. NxatH
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "Yksittäinen kierto"
#. gNVw9
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "Yksittäinen vaakasuora murtuma"
#. iCzED
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "Yksittäinen pystysuora murtuma"
#. HQcJt
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "Muuta X:n kokoa, täysin"
#. VcK8z
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Muuta Y:n kokoa, täysin"
#. vgGU4
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "Kierrä kaikkia"
#. 3faE4
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "Vaakamurtuma, täydellinen"
#. RAEPz
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "Pystymurtuma, täydellinen"
#. gtXM3
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "Viitepiste 1 X"
#. YpQDc
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "Viitepiste 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "Viitepiste 2 X"
#. Rty4j
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "Viitepiste 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "Tavutus"
#. HMmA6
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "Näytä luettelomerkit"
#. 8Q88u
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "Numeroinnin sisennys"
#. inGxX
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "Numerointitaso"
#. 2CtLK
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "Luettelomerkit ja numeroinnit"
#. hCE5d
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "Sisennykset"
#. Y5YFm
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "Kappaleväli"
#. feirn
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Riviväli"
#. gjAVE
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "Kappaleen tasaus"
#. offnT
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "Sarkaimet"
#. kpiTD
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "Tekstin väri"
#. X535C
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Merkistö"
#. AEbEz
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "Fonttikoko"
#. UKHSM
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "Fontin leveys"
#. SQWpD
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "Lihavoitu (paksuus)"
#. AUR7N
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "Alleviivaa"
#. v2AEJ
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "Ylleviivaus"
#. ARvwR
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "Yliviivaus"
#. gcVzb
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "Kursivointi"
#. kJVaV
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "Ääriviiva"
#. CZR4e
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "Fontin varjo"
#. PFSUR
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "Yläindeksi/alaindeksi"
#. DrBio
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Parivälistys"
#. tUVvP
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "Manuaalinen parivälistys"
#. S9QCU
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "Ei alleviivausta väleihin"
#. GuTzF
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "Sarkain"
#. U4qgA
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "Valinnainen rivinvaihto"
#. jzBEA
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "Merkkiä ei voi muuntaa"
#. tZd9C
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Kentät"
#. GeKPD
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Punainen"
#. EzAu7
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Vihreä"
#. TmBML
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "Sininen"
#. 7Gqzs
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Kirkkaus"
#. rziVW
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Kontrasti"
#. CHepz
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. 2ESVA
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. uZYFG
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Käännä"
#. 6aFx2
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "Kuvatila"
#. Ni9KZ
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "Rajaa"
#. kVnke
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr "Hehkutehosteen säde"
#. 3hvai
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr "Hehkutehosteen väri"
#. eCSE2
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr "Hehkutehosteen läpinäkyvyys"
#. 8qNHk
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr "Reunojen pehmennys -tehosteen säde"
#. nVcjU
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "Mediaobjekti"
#. nbHgw
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "Mediaobjektit"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "Lisää sarake"
#. SAmd8
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "Lisää rivi"
#. yFDYp
-#: include/svx/strings.hrc:523
+#: include/svx/strings.hrc:524
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Poista sarake"
#. 9SF9L
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Poista rivi"
#. iBbtT
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "Jaa solut"
#. vmzqf
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "Yhdistä solut"
#. 3VVmF
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Muotoile solu"
#. pSCJC
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "Sovita rivit"
#. GdLHf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "Sovita sarakkeet"
#. fGNto
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "Poista solun sisältö"
#. B33Cb
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "Taulukkotyyli"
#. ZHBAC
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "Taulukkotyylin asetukset"
#. eERmE
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Taulukko"
#. XjgSV
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Taulukot"
#. mLDqP
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr "Fonttipajateksti"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "Jatkuva"
#. uNL7M
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "Liukuvärjäys"
#. a8YoL
-#: include/svx/strings.hrc:539
+#: include/svx/strings.hrc:540
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Bittikartta"
#. FDmra
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "Kuvio"
#. HcGBQ
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr "Nimetön kuvio"
#. GHj4Q
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "Viivatyyli"
#. fa7EG
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "Ei mikään"
#. mrTdk
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "Väri"
#. 5bjE5
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "Viivoitus"
#. yGRGW
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "Nuolenkärjet"
#. snuCi
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "Nuoli"
#. 6EvQ7
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "Neliö"
#. i6cva
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "Ympyrä"
#. emz9g
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- ei mitään -"
#. hGaEK
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. X4EFw
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "Keskitetty"
#. FFe8m
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "Ei keskitetty"
#. hFhmH
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Oletus"
#. DdAzc
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "Harmaasävy"
#. RHEXM
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "Mustavalkoinen"
#. bcXbA
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "Vesileima"
#. ZWz8Y
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr "Aseta taustaväriksi napsauttamalla hiiren vasemmalla painikkeella, aseta viivan väri hiiren oikealla painikkeella"
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr "Tummanpunainen 2"
#. Rw7nG
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr "Sininen"
#. UdEYr
-#: include/svx/strings.hrc:562
+#: include/svx/strings.hrc:563
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "Keltainen"
#. 9AUDK
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr "Tummansininen 1"
#. aSWwv
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr "Vaaleansininen 2"
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "Musta"
#. PwGvV
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Harmaa"
#. Dp9Az
-#: include/svx/strings.hrc:568
+#: include/svx/strings.hrc:569
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "Valkoinen"
#. TGLmD
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "Keltainen"
#. YpDke
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "Kulta"
#. 7aJCZ
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Oranssi"
#. mZMFN
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr "Tiili"
#. juJeM
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Punainen"
#. 7xMrN
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Magenta"
#. ELXiM
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "Purppura"
#. UTexf
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "Indigo"
#. qbcF9
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "Sininen"
#. hQ44j
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "Sinivihreä"
#. JpxBr
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Vihreä"
#. A3aCJ
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "Limetti"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Vaalea harmaa"
#. YF2ud
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr "Vaaleankeltainen"
#. BaXBj
-#: include/svx/strings.hrc:584
+#: include/svx/strings.hrc:585
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr "Vaalea kulta"
#. masPL
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr "Vaaleanoranssi"
#. k5GY4
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr "Vaalea tiili"
#. KGDDj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "Vaalea punainen"
#. nvB2W
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr "Vaalea magenta"
#. y96HS
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr "Vaaleanpurppura"
#. 8Bg8h
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "Vaalea indigo"
#. suGUh
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Vaalea sininen"
#. 5VFSV
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr "Vaalean sinivihreä"
#. 3Z7KA
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "Vaalea vihreä"
#. HVPnD
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr "Vaalea limetti"
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr "Tummanharmaa"
#. EaFik
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr "Tummankeltainen"
#. AFByn
-#: include/svx/strings.hrc:598
+#: include/svx/strings.hrc:599
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr "Tumma kulta"
#. qAGnF
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr "Tummanoranssi"
#. NC62Q
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr "Tumma tiili"
#. st4Zy
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "Tummanpunainen"
#. indkC
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr "Tumma magenta"
#. AE9Ya
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr "Tummanpurppura"
#. VFKuJ
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr "Tumma indigo"
#. U3qfW
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr "Tummansininen"
#. dYdEW
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr "Tumma sinivihreä"
#. qFAAB
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr "Tummanvihreä"
#. C3U7v
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "Tumma limetti"
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "Violetti"
#. GgboW
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violetti (ei väriskaalalla)"
#. mz3Eo
-#: include/svx/strings.hrc:612
+#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Sininen (ei väriskaalalla)"
#. SGvfY
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Taivaansininen (ei väriskaalalla)"
#. dYBjC
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Keväänvihreä (ei väriskaalalla)"
#. GCcWR
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Vihreä (ei väriskaalalla)"
#. DLuCh
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Chartreusenvihreä (ei väriskaalalla)"
#. s3ZaC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oranssi (ei väriskaalalla)"
#. A8i2G
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Punainen (ei väriskaalalla)"
#. j4oEv
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Ruusunpunainen (ei väriskaalalla)"
#. qBpvR
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr "Taivaansininen"
#. Y6vVA
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "Syaani"
#. 583vY
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr "Keväänvihreä"
#. jtKm8
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr "Chartreusenvihreä"
#. RkAmE
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr "Ruusunpunainen"
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr "Harmaa A"
#. 3b7sB
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr "Keltainen A"
#. DbqvY
-#: include/svx/strings.hrc:628
+#: include/svx/strings.hrc:629
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr "Meripihka A"
#. nFENC
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr "Meripihka"
#. i8Tx3
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr "Oranssi A"
#. DMVTT
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr "Syvä oranssi A"
#. LgNfg
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr "Syvä oranssi"
#. A4JAB
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr "Punainen A"
#. jsEPc
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr "Purppura A"
#. p6AAX
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr "Syvä purppura A"
#. WcMy9
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr "Syvä purppura"
#. e4rqj
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr "Sininen A"
#. dDQEi
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr "Syaani A"
#. PvkCw
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr "Sinivihreä A"
#. znZyu
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr "Vihreä A"
#. nZDMp
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr "Ruskea A"
#. wcNMK
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr "Ruskea"
#. RA8KB
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr "Siniharmaa A"
#. yXhED
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr "Siniharmaa"
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "Klassisen sininen"
#. CWbzY
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "Siniharmaa"
#. DkKFF
-#: include/svx/strings.hrc:653
+#: include/svx/strings.hrc:654
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Bordeaux"
#. 5hZu8
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "Vaaleankeltainen"
#. wSEGQ
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "Vaaleanvihreä"
#. pUEkF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "Tummanvioletti"
#. qVhW9
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Lohenpunainen"
#. QV77P
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "Merensininen"
#. gYFV6
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Kaavio"
#. LXcFL
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "Taivaansininen"
#. QbGU3
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "Keltavihreä"
#. UDfTh
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "Vaaleanpunainen"
#. FXDuA
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "Turkoosi"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "Kolmiulotteinen"
#. GtMuR
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Musta 1"
#. AhPLy
-#: include/svx/strings.hrc:667
+#: include/svx/strings.hrc:668
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Musta 2"
#. jVxFC
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Sininen"
#. FacjB
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "Ruskea"
#. uQSDF
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "Valuutta"
#. sQpNL
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "Valuutta kolmiulotteisena"
#. ACACr
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "Valuutta harmaana"
#. yy7mJ
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "Valuutta laventelinvihreänä"
#. 4THUt
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "Valuutta turkoosina"
#. a8AGf
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Harmaa"
#. B4e9f
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Vihreä"
#. 3mz4G
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "Laventelinvihreä"
#. gdfFF
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Punainen"
#. GsAVb
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "Turkoosi"
#. sZbit
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Keltainen"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr "Akateeminen"
#. CYMbi
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr "Siniset väripalkit"
#. njUDn
-#: include/svx/strings.hrc:684
+#: include/svx/strings.hrc:685
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr "Vihreät väripalkit"
#. GUk5r
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr "Punaiset väripalkit"
#. oNMgD
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr "Keltaiset väripalkit"
#. YVY2f
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "Elegantti"
#. Q9rDT
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Rahoitus"
#. 3qSCd
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr "Yksinkertainen ruudukko, sarakkeet"
#. hksaM
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr "Yksinkertainen ruudukko, rivit"
#. CHXkk
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr "Yksinkertainen lista varjostuksella"
#. XrHFB
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "Viivaliitos, keskiarvo"
#. zbAG7
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "Viivaliitos, viiste"
#. EtQJT
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "Viivaliitos, jiiri"
#. YUtBv
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "Viivaliitos, pyöreä"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "Viivan pää tasainen"
#. zKt6C
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "Viivan pää pyöreä"
#. 5Lbx4
-#: include/svx/strings.hrc:699
+#: include/svx/strings.hrc:700
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "Viivan pää neliö"
#. YXbPg
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Liukuvärjäys"
#. mZwMD
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "Lineaarinen sininen/valkoinen"
#. WyGuh
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "Lineaarinen magenta/vihreä"
#. cLHvA
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "Lineaarinen keltainen/ruskea"
#. Kfkbm
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "Säteittäinen vihreä/musta"
#. uiTTS
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "Säteittäinen punainen/keltainen"
#. SsUvr
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "Suorakulmio punainen/valkoinen"
#. CKwQP
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "Neliö keltainen/valkoinen"
#. hi3tb
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "Ellipsoidi siniharmaa / vaalea sininen"
#. b6AwV
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Akselivalaistus punainen/valkoinen"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Diagonaali 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:713
+#: include/svx/strings.hrc:714
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Diagonaali 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:715
+#: include/svx/strings.hrc:716
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Diagonaali 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:717
+#: include/svx/strings.hrc:718
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Diagonaali 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:719
+#: include/svx/strings.hrc:720
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Diagonaali 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:721
+#: include/svx/strings.hrc:722
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Diagonaali 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:723
+#: include/svx/strings.hrc:724
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Diagonaali 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:725
+#: include/svx/strings.hrc:726
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Diagonaali 4r"
#. yqda8
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Diagonaali sininen"
#. GCtJC
-#: include/svx/strings.hrc:727
+#: include/svx/strings.hrc:728
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "Diagonaali vihreä"
#. LCQEB
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "Diagonaali oranssi"
#. oD7FW
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Diagonaali punainen"
#. vuyUG
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "Diagonaali turkoosi"
#. mGtyc
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "Diagonaali violetti"
#. cArVy
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "Kulmasta"
#. gvXLL
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "Kulmasta, sininen"
#. GaTPh
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "Kulmasta, vihreä"
#. GE5vm
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "Kulmasta, oranssi"
#. BFTnr
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "Kulmasta, punainen"
#. AFKRL
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "Kulmasta, turkoosi"
#. djBGe
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "Kulmasta, violetti"
#. pwDuE
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "Keskeltä"
#. y8qpL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "Keskeltä, sininen"
#. PGt5w
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "Keskeltä, vihreä"
#. CyLXB
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "Keskeltä, oranssi"
#. vkERJ
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "Keskeltä, punainen"
#. Sq2SE
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "Keskeltä, turkoosi"
#. DoSmH
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "Keskeltä, violetti"
#. 9XHkg
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Vaakasuuntainen"
#. FDG7B
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "Vaakasuuntainen sininen"
#. ZEfzF
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "Vaakasuuntainen vihreä"
#. GFRCF
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "Vaakasuuntainen oranssi"
#. iouxG
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "Vaakasuuntainen punainen"
#. Gta9k
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "Vaakasuuntainen turkoosi"
#. Tdpw4
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "Vaakasuuntainen violetti"
#. DyVEP
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "Säteittäinen"
#. Uyhuj
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "Säteittäinen sininen"
#. MA6Qs
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "Säteittäinen vihreä"
#. Pt24U
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "Säteittäinen oranssi"
#. 37T3A
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "Säteittäinen punainen"
#. gLwZp
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "Säteittäinen turkoosi"
#. gka9C
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "Säteittäinen violetti"
#. BaGs9
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "Pystysuuntainen"
#. DqGbG
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "Pystysuuntainen sininen"
#. FCa2X
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "Pystysuuntainen vihreä"
#. BNSiE
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "Pystysuuntainen oranssi"
#. DfiaF
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "Pystysuuntainen punainen"
#. 4htXp
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "Pystysuuntainen turkoosi"
#. FVCCq
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "Pystysuuntainen violetti"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "Harmaa liukuvärjäys"
#. CDxDN
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "Keltainen liukuvärjäys"
#. amMze
-#: include/svx/strings.hrc:770
+#: include/svx/strings.hrc:771
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "Oranssi liukuvärjäys"
#. bodAW
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "Punainen liukuvärjäys"
#. Zn2x3
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "Vaaleanpunainen liukuvärjäys"
#. xXMfH
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Taivas"
#. RYfTi
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "Syaani liukuvärjäys"
#. jAu7g
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "Sininen liukuvärjäys"
#. idyKS
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "Purppura putki"
#. fFZia
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Yö"
#. 4ECED
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "Vihreä liukuvärjäys"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr "Pastelli kukkakimppu"
#. 9BV4L
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr "Pastelli unelma"
#. jEVDi
-#: include/svx/strings.hrc:782
+#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr "Sininen säväys"
#. ZAj48
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr "Tyhjä harmaa"
#. CJqu3
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr "Täplikäs harmaa"
#. s6Z54
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr "Lontoon usva"
#. nk99S
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr "Sinivihreästä siniseen"
#. ud3Bc
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr "Keskiyö"
#. 3DFV9
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr "Syvä meri"
#. beAAG
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr "Sukellusvene"
#. LCJCH
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr "Vihreä ruoho"
#. wiGu5
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr "Neonvalo"
#. EGqXT
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr "Auringonpaiste"
#. WCs3M
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr "Lahja"
#. 99B5Z
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr "Mahonki"
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr "Musta, 0 astetta"
#. BUCv6
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr "Musta, 90 astetta"
#. gyzNu
-#: include/svx/strings.hrc:798
+#: include/svx/strings.hrc:799
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr "Musta, 180 astetta, ristikkäin"
#. KYmyj
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr "Sininen, 45 astetta"
#. 2qkyC
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr "Sininen, -45 astetta"
#. GFqzJ
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr "Sininen, 45 astetta, ristikkäin"
#. wRXH2
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr "Vihreä, 30 astetta"
#. JAkb9
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr "Vihreä, 60 astetta"
#. DnKyA
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr "Vihreä, 90 astetta, kolminkertainen"
#. oTAUx
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr "Punainen, 45 astetta"
#. xcHED
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr "Punainen, 90 astetta, ristikkäin"
#. UZM2R
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr "Punainen, -45 astetta, kolminkertainen"
#. TypfV
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr "Keltainen, 45 astetta"
#. eRFD8
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr "Keltainen, 45 astetta, ristikkäin"
#. JhXx3
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr "Keltainen, 45 astetta, kolminkertainen"
#. 78jyB
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr "Viivoitus"
#. FJati
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "Tyhjä"
#. Q4jUs
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr "Maalattu valkoinen"
#. iHX2t
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr "Paperitekstuuri"
#. mAyG3
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr "Rypistetty paperi"
#. i3ARe
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr "Ruutupaperi"
#. 6izYJ
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr "Pergamenttipaperi"
#. mQCXG
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr "Aita"
#. TriUQ
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr "Lauta"
#. Hp2Gp
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr "Vaahteranlehdet"
#. 2B5Wr
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr "Nurmikko"
#. bAE9x
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr "Värikkäät pikkukivet"
#. nqBbP
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr "Kahvipavut"
#. CQS6y
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr "Pikkupilvet"
#. 2hE6A
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr "Kylpyhuoneen kaakelit"
#. KZeGr
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr "Kivimuuri"
#. wAELs
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr "Seepra"
#. AVGfC
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr "Väriraidat"
#. ZoUmP
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr "Sora"
#. 5FiBd
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr "Pergamenttistudio"
#. HYfqK
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr "Yötaivas"
#. NkYV3
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr "Allas"
#. Co6U3
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Bittikartta"
#. KFEX5
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr "Betoni"
#. RxiMA
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr "Tiiliseinä"
#. WNEfT
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr "Kiviseinä"
#. dFqW3
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr "Kukallinen"
#. FzePv
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr "Avaruus"
#. FzVch
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr "Vaalea jää"
#. YGtzc
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr "Marmori"
#. Rzgwp
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr "Vaalea hiekka"
#. cK72d
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr "Kivi"
#. TnkWd
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr "Valkoinen diffuusio"
#. kksvW
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr "Pinta"
#. BQj9p
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr "Pahvi"
#. poA6e
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr "Studio"
#. YEbqw
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 prosenttia"
#. AAn36
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "10 prosenttia"
#. NLTbt
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "20 prosenttia"
#. vx2XC
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "25 prosenttia"
#. weQqs
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "30 prosenttia"
#. CAdAS
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "40 prosenttia"
#. 5T5vP
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "50 prosenttia"
#. aNdJE
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "60 prosenttia"
#. 3vD8U
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "70 prosenttia"
#. UJmCD
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "75 prosenttia"
#. i9RCR
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "80 prosenttia"
#. 2oEkC
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "90 prosenttia"
#. a3yZ5
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr "Vaalea alaviisto"
#. oiGTx
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr "Vaalea yläviisto"
#. CGpy7
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr "Tumma alaviisto"
#. cucpa
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr "Tumma yläviisto"
#. EFDcT
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr "Harva alaviisto"
#. CWmH5
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr "Harva yläviisto"
#. BZJUK
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr "Vaalea pystysuuntainen"
#. B5FVF
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "Vaalea vaakasuuntainen"
#. daP9i
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "Tiheä pystysuuntainen"
#. JD5FJ
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "Tiheä vaakasuuntainen"
#. eB4wk
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "Tumma pystysuuntainen"
#. MeoCx
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "Tumma vaakasuuntainen"
#. gAqnG
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "Alaviisto katkoviiva"
#. DGB5k
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "Yläviisto katkoviiva"
#. JC7je
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "Vaakasuuntainen katkoviiva"
#. iFiBq
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "Pystysuuntainen katkoviiva"
#. gWDnG
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "Pieni konfetti"
#. vbh6h
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "Suuri konfetti"
#. XFemm
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr "Siksak"
#. mC3BE
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Aalto"
#. icCPR
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "Viisto tiili"
#. 8CqPG
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "Vaakasuora tiili"
#. GFUZF
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "Kudelma"
#. bp9ZY
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "Huoparuudukko"
#. ZrVMS
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "Väkäset"
#. tFas9
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr "Pisteruudukko"
#. SECdZ
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr "Pistevinoneliö"
#. ri3Ge
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "Paanu"
#. jD9er
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr "Säleikkö"
#. aemFS
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "Pallo"
#. Ds8Ae
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "Pieni ruudukko"
#. a33Ci
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "Suuri ruudukko"
#. BCSZY
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr "Pieni šakkilauta"
#. Bgczw
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr "Suuri šakkilauta"
#. sD7Mf
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "Vinoneliön ääriviivat"
#. RNNkR
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr "Täytetty vinoneliö"
#. HJkgr
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "Pystyviiva"
#. ED3Ga
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "Vaakaviiva"
#. ENYtZ
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "Alaviisto"
#. mbjPX
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "Yläviisto"
#. TxAfM
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "Risti"
#. 4mGJX
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "Viisto ristikko"
#. J4CJa
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr "Viiva-piste"
#. Rno6q
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr "Yläviisto viiva-piste"
#. pFZkq
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. utrkH
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr "Hienonhienot pisteet"
#. s3rBZ
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr "Viivatyyli 9"
#. evPXr
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr "Kolme pistettä, kolme viivaa"
#. H7iUz
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr "Kaksi pistettä, yksi viiva"
#. zbWk3
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. ibALA
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr "Katkoviiva"
#. qEZc6
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr "Viivatyyli"
#. iKAwD
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr "Kaikki muodot"
#. UydWB
-#: include/svx/strings.hrc:928
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr "Kovera lyhyt"
#. grGoP
-#: include/svx/strings.hrc:929
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:932
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Neliö 45"
#. Hu6DB
-#: include/svx/strings.hrc:930
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:934
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr "Nuoli, lyhyt"
#. j6u8M
-#: include/svx/strings.hrc:931
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:936
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr "Mittajanat"
#. JKxZ6
-#: include/svx/strings.hrc:932
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:938
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "Kaksoisnuoli"
#. o38zt
-#: include/svx/strings.hrc:933
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:940
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr "Kolmio"
#. XvcqE
-#: include/svx/strings.hrc:934
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:942
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr "Kovera"
#. JD6qL
-#: include/svx/strings.hrc:935
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:944
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr "Nuoli, suuri"
#. 3CPw6
-#: include/svx/strings.hrc:936
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:946
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr "Mittajana"
#. EBEY5
-#: include/svx/strings.hrc:937
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:948
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Ympyrä"
#. H9DDA
-#: include/svx/strings.hrc:938
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:950
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Neliö"
#. AWHmD
-#: include/svx/strings.hrc:939
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:952
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Nuoli"
#. CXazS
-#: include/svx/strings.hrc:940
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:954
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr "Puoliympyrä"
#. VNaKi
-#: include/svx/strings.hrc:941
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:956
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "Kolmio, täyttämätön"
#. LRmKQ
-#: include/svx/strings.hrc:942
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:958
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "Vinoneliö, täyttämätön"
#. L2kus
-#: include/svx/strings.hrc:943
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:960
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Vinoneliö"
#. P2Raq
-#: include/svx/strings.hrc:944
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:962
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "Ympyrä, täyttämätön"
#. FNaHF
-#: include/svx/strings.hrc:945
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:964
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "Neliö, 45, täyttämätön"
#. ECeBc
-#: include/svx/strings.hrc:946
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:966
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "Neliö, täyttämätön"
#. ALFbk
-#: include/svx/strings.hrc:947
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:968
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr "Puoliympyrä, täyttämätön"
#. mfGCE
-#: include/svx/strings.hrc:948
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:970
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr "Mittajananuoli"
#. epSjr
-#: include/svx/strings.hrc:949
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:972
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr "Viiva, lyhyt"
#. yVmQp
-#: include/svx/strings.hrc:950
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:974
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr "Viiva"
#. im8fN
-#: include/svx/strings.hrc:951
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:976
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr "Puolikas nuoli vasemmalle"
#. EVYD7
-#: include/svx/strings.hrc:952
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:978
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr "Puolikas nuoli oikealle"
#. VZ8vx
-#: include/svx/strings.hrc:953
+#. To translators: this is an arrow head style
+#: include/svx/strings.hrc:980
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr "Käänteinen nuoli"
#. yTXvH
-#: include/svx/strings.hrc:954
+#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
+#: include/svx/strings.hrc:982
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
-#: include/svx/strings.hrc:955
+#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
+#: include/svx/strings.hrc:984
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
-#: include/svx/strings.hrc:956
+#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
+#: include/svx/strings.hrc:986
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
-#: include/svx/strings.hrc:957
+#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
+#: include/svx/strings.hrc:988
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
-#: include/svx/strings.hrc:958
+#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
+#: include/svx/strings.hrc:990
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
-#: include/svx/strings.hrc:959
+#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
+#: include/svx/strings.hrc:992
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. hGytB
-#: include/svx/strings.hrc:961
+#: include/svx/strings.hrc:994
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr "Vihreä 1 (%PRODUCTNAME-pääväri)"
#. Msh88
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "Vihreä sävy"
#. opj2M
-#: include/svx/strings.hrc:963
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "Sininen sävy"
#. tC5jE
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "Oranssi sävy"
#. 3T9pJ
-#: include/svx/strings.hrc:965
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Purppura"
#. N5FWG
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "Purppura sävy"
#. Nhtbq
-#: include/svx/strings.hrc:967
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "Keltainen sävy"
#. apBBr
-#: include/svx/strings.hrc:969
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "Galleriateema"
#. BseGn
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Palautettu onnistuneesti"
#. LfjDh
-#: include/svx/strings.hrc:971
+#: include/svx/strings.hrc:1004
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "Alkuperäinen asiakirja palautettu"
#. BEAbm
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "Palautus epäonnistui"
#. 5ye7z
-#: include/svx/strings.hrc:973
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "Palautus kesken"
#. tEbUT
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "Ei vielä palautettu"
#. EaAMF
-#: include/svx/strings.hrc:975
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION on aloittanut asiakirjojesi palautuksen. Palautus saattaa kestää jonkin aikaa, riippuen asiakirjojen koosta."
#. AicJe
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "Asiakirjojesi palautus valmistui. Paina 'Valmis' nähdäksesi asiakirjasi."
#. ZbeCG
-#: include/svx/strings.hrc:977
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "Valmis"
#. BBeKk
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "Viimeisin mukautettu"
#. mENBU
-#: include/svx/strings.hrc:979
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "pt"
#. fRyqX
-#: include/svx/strings.hrc:981
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "Kuvan vienti"
#. xXhtG
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "Tallenna kuvana"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:985
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Lisää objekti(t)"
#. Heqmn
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:1019
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "Kierrä 3D-kappaletta"
#. AC56T
-#: include/svx/strings.hrc:987
+#: include/svx/strings.hrc:1020
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "Luo pursotuskappale"
#. 4DonY
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "Luo pyörähdyskappale"
#. EL9V9
-#: include/svx/strings.hrc:989
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "Pura 3D-kappale"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[Kaikki]"
#. RZVDm
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:1027
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Grafiikkasuodatin"
#. YNjeD
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Uusi teema"
#. 5uYha
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:1030
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "Kolmiulotteiset tehosteet"
#. 78DGx
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:1031
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "Animaatiot"
#. zGEez
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1032
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Luettelomerkit"
#. MwX9z
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Toimisto"
#. dAwiC
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Tunnisteet"
#. Ccn8V
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Vuokaaviot"
#. 6ouMS
-#: include/svx/strings.hrc:1003
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "Hymiöt"
#. 8GPFu
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Kuvat"
#. sqh2w
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Taustat"
#. B3KuT
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Kotisivu"
#. WR8JQ
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1040
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "Toimintoasetukset"
#. EbEZ6
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "Kartat"
#. GALA8
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "Ihmiset"
#. ZMoiA
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "Pinnat"
#. hNaiH
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Tietokoneet"
#. mrvvG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "Kaaviot"
#. HhrDx
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "Ympäristö"
#. 2jVzE
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Rahoitus"
#. cmF3B
-#: include/svx/strings.hrc:1015
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "Liikenne"
#. as3XM
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "Tekstimuodot"
#. gGyFP
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "Äänet"
#. 5NrPj
-#: include/svx/strings.hrc:1018
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Symbolit"
#. AiXUK
-#: include/svx/strings.hrc:1019
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "Oma teema"
#. uRxP4
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Nuolet"
#. c3WXh
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "Puhekuplat"
#. pmiE7
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Näppäimistö"
#. LYdAf
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Aika"
#. 4UGrY
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Esitys"
#. a46Xm
-#: include/svx/strings.hrc:1025
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Kalenteri"
#. YpuGv
-#: include/svx/strings.hrc:1026
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Siirtyminen"
#. gAJH4
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "Yhteydenpito"
#. ETEJu
-#: include/svx/strings.hrc:1028
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Talous"
#. rNez6
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Tietokoneet"
#. ioX7y
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "Ympäristö"
#. MmYFp
-#: include/svx/strings.hrc:1031
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "Koulu ja yliopisto"
#. EKFgg
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "Ongelmanratkaisu"
#. GgrBp
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Screen Beans -kuvat"
#. E6onK
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1068
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Tulostusvalinta"
#. HzX9m
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1069
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "Haluatko tulostaa vain valinnan vai koko asiakirjan?"
#. 3UyC8
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1070
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~Kaikki"
#. UxfS3
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "V~alinta"
#. KTgDd
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1073
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "Pursotus luoteeseen"
#. N6KLd
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "Pursotus pohjoiseen"
#. AB6Vj
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1075
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "Pursotus koilliseen"
#. NBBEB
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "Pursotus länteen"
#. d9n5U
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "Pursotus taaksepäin"
#. A2mcf
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "Pursotus itään"
#. onGib
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "Pursotus lounaaseen"
#. XLQFD
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "Pursotus etelään"
#. v5wRm
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "Pursotus kaakkoon"
#. 4DGjm
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 cm"
#. kRzVE
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 cm"
#. CSmTh
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2,5 cm"
#. eYrvo
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 cm"
#. G4Ckx
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~cm"
#. LGHsL
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 ~tuumaa"
#. HPevm
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0,~5 tuumaa"
#. GvKjC
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "1 tuuma"
#. gmzHb
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 tuumaa"
#. DE5kt
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 tuumaa"
#. K5dY9
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "Ei täyttöä"
#. TFBK3
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "Läpinäkyvä"
#. c7adj
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1095
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Oletus"
#. djHis
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Reunat"
#. PURr6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "Reunan tyyli"
#. 9Ckww
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "Lisää numerointeja..."
#. cDG4s
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "Lisää luettelomerkkejä..."
#. uDT6G
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "Tekijän mukaan"
#. q2Le9
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Sivut"
#. jfL9n
-#: include/svx/strings.hrc:1069
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Tyhjennä muotoilu"
#. f6nP8
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "Lisää tyylejä..."
#. DPbrc
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "Lisää valintoja..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "Fontin nimi"
#. SKCYy
-#: include/svx/strings.hrc:1074
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "Fontin nimi. Tämä fontti ei ole saatavilla ja korvataan käytössä."
#. CVvXU
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1108
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "mukautettu"
#. xqzJj
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "Asiakirjan värit"
#. 6BoWp
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "Asiakirjan väri"
#. DJGyY
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Pursotus"
#. TyWTi
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Pursotus päälle/pois"
#. DKFYE
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1114
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Kallista alas"
#. 2Rrxc
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Kallista ylös"
#. eDpJK
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Kallista vasempaan"
#. CWDSN
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Kallista oikealle"
#. CxYgt
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Muuta pursotussyvyyttä"
#. c5JCp
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Muuta suuntaa"
#. KDSyh
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Muuta projektiotyyppiä"
#. JpzeS
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Muuta valaistusta"
#. j4AR9
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Muuta kirkkautta"
#. yA2xm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "Muuta pursotuspintaa"
#. DFEZP
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Muuta pursotusväriä"
#. hXNfG
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "Suosikki"
#. uPyWe
-#: include/svx/strings.hrc:1094
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1128
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Fonttipaja"
#. 7RVov
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Lisää fonttipaja-muoto"
#. h3CLw
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1133
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Lisää fonttipaja käyttäen samaa kirjainkokoa"
#. 6h2dG
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Lisää fonttipaja-tasaus"
#. eKHcV
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "Lisää fonttipaja-merkkiväli"
#. oo88Y
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "yhdessä"
#. 4sz83
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Tyyli"
#. fEHXC
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1139
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "ja"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "Nurkan hallinta"
#. CUEEW
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Nurkkapisteen valinta."
#. cQmVp
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Ylävasemmalla"
#. TtnJn
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "Ylhäällä keskellä"
#. UERVC
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Yläoikealla"
#. CznfN
-#: include/svx/strings.hrc:1113
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "Vasemmalla keskellä"
#. jvzC7
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Keskellä"
#. HPtYD
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "Oikealla keskellä"
#. v4SqB
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Alhaalla vasemmalla"
#. daA8a
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "Alhaalla keskellä"
#. DGWf8
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Alhaalla oikealla"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "Ääriviivan hallinta"
#. aMva8
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Tässä voit muokata ääriviivaa."
#. DXEuF
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1155
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Erikoismerkin valinta"
#. JfRzP
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "Voit valita erikoismerkkejä tästä alueesta."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Merkin koodi "
#. HECeC
-#: include/svx/strings.hrc:1127
+#: include/svx/strings.hrc:1160
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Kenttään '#' vaaditaan syöte. Syötä arvo."
#. w4wm8
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1161
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Lomakkeet"
#. cz8aS
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1162
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Ohjausobjektia ei ole valittu"
#. JG7Es
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1163
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Ominaisuudet: "
#. YQvBF
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Lomakkeen ominaisuudet"
#. qS9Rn
-#: include/svx/strings.hrc:1132
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Lomakeselain"
#. PzEVD
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Lomake"
+#. FWPxF
+#: include/svx/strings.hrc:1167
+msgctxt "RID_STR_HIDDEN"
+msgid "Hidden"
+msgstr "Piilotettu"
+
#. DnoDH
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Lomake"
#. Ba4Gy
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Piilotettu ohjausobjekti"
#. wtZqP
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Ohjausobjekti"
#. HvXRK
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Tietue"
#. HmTfB
-#: include/svx/strings.hrc:1138
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "/"
#. NZ68L
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Kenttävalinta:"
#. vGXiw
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Virhe kirjoitettaessa tietoja tietokantaan"
#. zzFRi
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Syntaksivirhe kyselylausekkeessa"
#. fS8JJ
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "Olet valinnut poistettavaksi 1 tietueen."
#. Qb4Gk
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# tietuetta poistetaan."
#. zSJQe
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6502,331 +6546,331 @@ msgstr ""
"Haluatko kuitenkin jatkaa?"
#. Kb7sF
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Siirtymistyökalurivi"
#. pKEQb
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Sar"
#. FXRKA
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Määritä ominaisuus '#'"
#. hXjTN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Lisää säiliöön"
#. BWpyC
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Poista #"
#. ZeaDk
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Poista # objektia"
#. VgGrE
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Korvaa säiliöelementti"
#. FoXgt
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Korvaa ohjausobjekti"
#. V4iMu
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "Painike"
#. TreFC
-#: include/svx/strings.hrc:1154
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "Valintapainike"
#. CBmAL
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Valintaruutu"
#. NFysA
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "Selitekenttä"
#. E5mMK
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "Ryhmäkehys"
#. ZGDAr
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "Tekstikenttä"
#. DEn9D
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "Muotoiltu kenttä"
#. WiNUf
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Luetteloruutu"
#. xwuJF
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "Yhdistelmäruutu"
#. 5474w
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "Kuvapainike"
#. qT2Ed
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "Kuvan ohjausobjekti"
#. 6Qvho
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "Tiedoston valinta"
#. a7gAj
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Päivämääräkenttä"
#. EaBTj
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Aikakenttä"
#. DWfsm
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Numeerinen kenttä"
#. TYjnr
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Valuuttakenttä"
#. B6MEP
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Rajoitettu kenttä"
#. uEYBR
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Taulukon ohjausobjekti "
#. 3SUEn
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "Vierityspalkki"
#. VtEN6
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Askelluspainike"
#. eGgm4
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Siirtymistyökalurivi"
#. yME46
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Monivalinta"
#. PzA5d
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "Tässä lomakkeessa ei ole tietoihin liittyviä ohjausobjekteja!"
#. ZyBEz
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Päivämäärä)"
#. guA5u
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Aika)"
#. 2wgdY
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Suodattimen rakenneselain"
#. BUYuD
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Suodatus -"
#. AcTBB
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1214
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Tai"
#. 6RPtu
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "Nykyisessä lomakkeessa ei ole kelvollisia ohjausobjekteja, joita voisi käyttää taulukkonäkymässä."
#. iEoGb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1216
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<Automaattinen kenttä>"
#. Da6gx
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Syntaksivirhe SQL-lauseessa"
#. ZoEuu
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "Arvoa #1 ei voi käyttää funktion LIKE kanssa."
#. 75ECE
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "Funktiota LIKE ei voi käyttää tässä kentässä."
#. tzFv5
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "Annettu arvo ei ole kelvollinen päivämäärä. Anna päivämäärä oikeassa muodossa, esimerkiksi KK/PP/VV."
#. y6Z26
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "Kenttää ei voi verrata kokonaislukuun."
#. F8FgA
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Tietokannassa ei ole taulua nimeltä \"#\"."
#. EDcU7
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "Tietokannassa ei ole taulua eikä kyselyä nimeltä \"#\"."
#. YBFF5
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "Tietokannassa on ennestään taulu tai näkymä nimeltä \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "Tietokannassa on ennestään kysely nimeltä \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "Saraketta \"#1\" ei ole taulukossa \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "Kenttää ei voi verrata liukulukuun."
#. CEg85
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "Syötettyä ehtoa ei voi verrata tähän kenttään."
#. ZGAAQ
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Tietoselain"
#. W4uM2
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr "(kirjoitussuojattu)"
#. DgfNh
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Tiedosto on jo olemassa. Korvataanko?"
#. dSYCi
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#objekti# selite"
#. JpaM6
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -6836,7 +6880,7 @@ msgstr ""
"Haluatko varmasti poistaa tämän mallin?"
#. y5Dyt
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -6846,7 +6890,7 @@ msgstr ""
"Haluatko varmasti poistaa tämän instanssin?"
#. VEzGF
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6856,13 +6900,13 @@ msgstr ""
"Haluatko varmasti poistaa tämän elementin?"
#. 3hF6H
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "Haluatko varmasti poistaa attribuutin '$ATTRIBUTENAME'?"
#. AWEbJ
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -6874,7 +6918,7 @@ msgstr ""
"Haluatko varmasti poistaa lähetyksen?"
#. SGiK5
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -6886,994 +6930,1000 @@ msgstr ""
"Haluatko varmasti poistaa sidoksen?"
#. 2zzHP
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "Nimi '%1' ei ole kelvollinen XML:ssä. Anna toinen nimi."
#. 4nAtc
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "Etuliite '%1' ei ole kelvollinen XML:ssä. Anna toinen etuliite."
#. qrFQD
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Nimi '%1' on jo olemassa. Anna uusi nimi."
#. DKkaw
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "Lähetyksellä täytyy olla nimi."
#. xcAaD
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "Put"
#. tkRR3
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "Get"
#. fsyAL
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Ei mitään"
#. Bjxmg
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "Instanssi"
#. affmF
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Asiakirja"
#. gJLHj
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Sidos: "
#. AEHco
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Viite: "
#. iLaBC
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Toiminto: "
#. HBV5Q
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Menetelmä: "
#. dAN2F
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Korvaa: "
#. QMiqA
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Lisää elementti"
#. C9YBB
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Muokkaa elementtiä"
#. XAh7B
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Poista elementti"
#. CLHER
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Lisää attribuutti"
#. 6Ycoo
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Muokkaa attribuuttia"
#. 6dSAd
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Poista attribuutti"
#. Ljhja
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "Lisää sidos"
#. CHTrw
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "Muokkaa sidosta"
#. yYwEG
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "Poista sidos"
#. yVch8
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "Lisää lähetys"
#. AX58u
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "Muokkaa lähetystä"
#. DFxmD
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "Poista lähetys"
#. qvvD7
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Elementti"
#. U4Btb
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Attribuutti"
#. Prceg
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Sidos"
#. iFARB
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "Sidoslauseke"
#. BTmNa
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1272
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "Haluatko varmasti luopua %PRODUCTNAMEn asiakirjojen palautustiedoista?"
#. 5WjQZ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Vasen"
#. JC7pc
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Oikea"
#. MhfuC
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1276
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Keskellä"
#. kX7GR
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1277
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Desimaali"
#. 7vecp
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1279
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "Lisäystila. Napsauta siirtyäksesi päällekirjoitustilaan."
#. ZCWNC
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1280
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "Päällekirjoitustila. Napsauta siirtyäksesi lisäystilaan."
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "Päällekirj."
#. qqCSF
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "Lisää"
#. Dh5A2
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Sähköinen allekirjoitus: Asiakirjan allekirjoitus on kelvollinen."
#. xZprv
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Sähköinen allekirjoitus: Asiakirjan allekirjoitus on kelvollinen, mutta varmenteita ei saatu tarkistettua."
#. Yydkh
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1286
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr "Sähköinen allekirjoitus: Asiakirjan allekirjoitus ei täsmää asiakirjan sisältöön. Suosittelemme vahvasti, että et luota tähän asiakirjaan."
#. X7CjP
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Sähköinen allekirjoitus: Asiakirjaa ei ole allekirjoitettu."
#. BRmFY
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "Sähköinen allekirjoitus: Asiakirjan allekirjoitus ja varmenne ovat kelvollisia, mutta kaikkia asiakirjan osia ei ole allekirjoitettu."
#. Swq5S
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1289
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "Asiakirjaa on muokattu. Napsauta tallentaaksesi asiakirjan."
#. tRWKa
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "Asiakirjaa ei ole muokattu viimeisimmän tallennuksen jälkeen."
#. 7C8GH
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Ladataan asiakirjaa..."
#. YbNsP
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Sovita dia nykyiseen ikkunaan."
#. jYTMN
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "Kaikkien SmartArt-objektien lataaminen ei onnistunut. Ongelman voi välttää tallentamalla Microsoft Office 2010 tai myöhempien tiedostomuotoon."
#. Bc5Sg
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "Zoomauskerroin. Napsauta oikealla vaihtaaksesi zoomauskerrointa tai napsauta avataksesi zoomausvalintaikkuna."
#. HCjAM
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Lähennä"
#. 2YBJE
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Loitonna"
#. n9EyG
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1297
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25 %"
#. vNTaU
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50 %"
#. D6jxs
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75 %"
#. 2Bufm
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100 %"
#. E5Xj8
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150 %"
#. DjBVG
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200 %"
#. 6Axop
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Koko sivu"
#. 2UBAF
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Sivun leveys"
#. YBg9X
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "Optimaalinen näkymä"
#. Wi5Fy
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Sisällytetään tyylit"
#. BJSzf
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Kappaletyylit"
#. ARuQM
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Solutyylit"
#. 7ChAu
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "Etsi muotoilua"
#. K6Ave
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "Korvaa muotoilulla"
#. USdBy
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "Asiakirjan loppu saavutettiin"
#. CVSwo
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "Päästiin asiakirjan loppuun, jatketaan alusta"
#. yCJzd
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "Taulukon loppu saavutettiin"
#. Diftw
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Etsittävää ei löytynyt"
#. xACuY
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "Navigointielementtiä ei löytynyt"
#. CGo5w
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "Päästiin asiakirjan alkuun"
#. nDCC4
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "Päästiin asiakirjan alkuun, jatketaan lopusta"
#. FNdxE
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr "Päästiin ensimmäiseen muistutukseen, jatketaan viimeisestä"
#. hAzCn
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr "Päästiin viimeiseen muistutukseen, jatketaan ensimmäisestä"
#. ihDqY
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "Väripaletti"
#. sDL47
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "Värien korvaaminen"
#. 7FcWA
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Virheellinen salasana"
#. JGJ9F
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Salasanat eivät vastaa toisiaan"
#. VHTRb
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Täytetyt pienet pyöreät luettelomerkit"
#. AiNrB
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Täytetyt suuret pyöreät luettelomerkit"
#. Vtk8J
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Täytetyt vinoneliön muotoiset luettelomerkit"
#. bQFBw
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Täytetyt suuret neliönmuotoiset luettelomerkit"
#. 5eJDd
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Oikealle osoittavat täytetyt nuolenmuotoiset luettelomerkit"
#. D8zQC
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Oikealle osoittavat nuolenmuotoiset luettelomerkit"
#. QCULV
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "Rastit"
#. XuXC7
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "Väkäset"
#. cUEoG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Numerot 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Numerot 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Numerot (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Isot roomalaiset numerot I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Isot kirjaimet A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Pienet kirjaimet a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Pienet kirjaimet (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Pienet roomalaiset numerot i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numerot, numerot, pienet kirjaimet, täytetyt pienet pyöreät luettelomerkit"
#. m56fN
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Numerot, pienet kirjaimet, täytetyt pienet pyöreät luettelomerkit"
#. RyTLW
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Numerot, pienet kirjaimet, pienet roomalaiset numerot, isot kirjaimet, täytetyt pienet pyöreät luettelomerkit"
#. GAfTp
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Numerot"
#. gjEgN
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Isot roomalaiset numerot, isot kirjaimet, pienet roomalaiset numerot, pienet kirjaimet, täytetyt pienet pyöreät luettelomerkit"
#. DZ2kE
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Isot kirjaimet, isot roomalaiset numerot, pienet kirjaimet, pienet roomalaiset numerot, täytetyt pienet pyöreät luettelomerkit"
#. TV9Mc
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numerot ja alanumerot"
#. tiXu5
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Oikealle osoittavat luettelomerkit, oikealle osoittavat nuolet, täytetyt vinoneliöt, täytetyt pienet pyöreät luettelomerkit"
#. nEJiF
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "Zip-tiedoston luominen ei onnistunut."
#. CC6Sw
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "Taulukon muotoilutyylit"
#. c69eB
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "Kumottavat toiminnot: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "Kumottavat toiminnot: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "Uudelleen tehtävät toiminnot: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1362
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "Uudelleen tehtävät toiminnot: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1364
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Etsi"
#. WbEFL
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "Sama kirjainkoko"
#. 59ENV
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "Muotoiltu esitystapa"
#. vYw6p
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1368
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
#. JEkzY
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1369
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) tarkkuudella $(DPI) DPI"
#. n8VBe
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1370
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) kiB"
+#. Xgeqc
+#: include/svx/strings.hrc:1371
+msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
+msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
+msgstr ""
+
#. 8GqWz
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1372
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "GIF-kuva"
#. G2q7M
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1373
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "JPEG-kuva"
#. oGKBg
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1374
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "PNG-kuva"
#. Fkrjs
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1375
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "TIFF-kuva"
#. VWyEb
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "WMF-kuva"
#. pCpoE
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "MET-kuva"
#. DELaB
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "PCT-kuva"
#. 3AZAG
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "SVG-kuva"
#. aCEJW
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "BMP-kuva"
#. p2L8C
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "Tuntematon"
#. 8LBFX
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1383
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "Vaihda"
#. xLF42
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "Kuvatila"
#. fw5hA
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Punainen"
#. CiQvY
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Vihreä"
#. BhvBe
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Sininen"
#. HSP36
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1389
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Kirkkaus"
#. w5BYP
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1390
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Kontrasti"
#. EZUjS
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1391
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. ernMB
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. LdkNB
-#: include/svx/strings.hrc:1358
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Rajaa"
#. TJmBu
-#: include/svx/strings.hrc:1360
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Oletussuunta"
#. WQqju
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "Ylhäältä alas"
#. ipfz6
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "Alhaalta ylös"
#. MLR44
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "Pinottuna"
#. vUDeh
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Vasen marginaali: "
#. EFBbE
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Ylämarginaali: "
#. 7HeyP
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Oikea marginaali: "
#. HCuWQ
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1402
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Alamarginaali: "
#. zD9BB
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Sivun kuvaus: "
#. a4eSJ
-#: include/svx/strings.hrc:1369
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Isot kirjaimet"
#. DuQGP
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Pienet kirjaimet"
#. nWQ7R
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Isot roomalaiset"
#. PxkPZ
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Pienet roomalaiset"
#. B7YEa
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Arabialaiset"
#. vPbGB
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Ei mitään"
#. akGGo
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Vaaka"
#. bbcaZ
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Pysty"
#. BQtGg
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Vasen"
#. JWFLj
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Oikea"
#. bxvGx
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Kaikki"
#. S3nm4
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "Peilattu"
#. dcvEJ
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Tekijä: "
#. 2siC9
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Päivämäärä: "
#. pWoLe
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Teksti: "
#. pAABc
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Merkin tausta"
#. Deknh
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1421
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Väripaletti"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1424
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr "Dianumerot:"
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7883,1909 +7933,1921 @@ msgstr ""
"Haluatko sen sijaan tallentaa muokatun version?"
#. KycVH
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1429
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Latinalainen perusosa"
#. bcjRA
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1430
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Latin-1-täydennysosa"
#. h6THj
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1431
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Latinalaisia (laajennus A)"
#. o4EF9
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1432
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Latinalaisia (laajennus B)"
#. W3CGs
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1433
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA-laajennuksia"
#. yZjF6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1434
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "Tarkkeenomaisia merkkejä"
#. EASZR
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1435
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "Tarkkeita"
#. wBjC4
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1436
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Kreikkalaisia (perusosa)"
#. Dh8Es
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Kreikkalaisia ja koptilaisia merkkejä"
#. jGT5E
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Kyrillisiä (perusosa)"
#. DQgLS
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armenia"
#. kXEQY
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Heprealaisia (perusosa)"
#. Cb8g4
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Heprealaisia (laajennus)"
#. ZmDCd
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Arabialaisia (perusosa)"
#. hZDFV
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabialaisia (laajennus)"
#. c3CqD
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
#. EfVnG
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengali"
#. iWzLc
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
#. omacG
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Gudžarati"
#. Cdwzw
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "Orija"
#. BhEGN
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamili"
#. 6YkEo
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Telugu"
#. J5qn4
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malajalam"
#. C5yzo
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Thai"
#. EvjbD
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Lao"
#. HqFTh
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Georgialaisia (perusosa)"
#. npAc8
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Georgialaisia (laajennus)"
#. AHAB4
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangul jamo"
#. gMEFL
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Latinalaisia (lisälaajennus)"
#. uVYXp
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Kreikkalaisia (laajennus)"
#. LEQg6
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "Yleisiä välimerkkejä"
#. D9KFj
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Ylä- ja alaindeksejä"
#. yaxYV
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Valuuttamerkkejä"
#. jzA5i
-#: include/svx/strings.hrc:1428
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "Symbolien tarkkeita"
#. CHNBZ
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Kirjainsymboleita"
#. cDkEd
-#: include/svx/strings.hrc:1430
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Lukuilmaisuja"
#. j25Fp
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Nuolia"
#. p5Tbx
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Matemaattisia operaattoreita"
#. ckgof
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Sekalaisia teknisiä merkkejä"
#. 8rXdw
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "Ohjausmerkkien symboleita"
#. D4J8A
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "OCR-merkkejä"
#. hXwgf
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Ympäröityjä aakkosnumeerisia merkkejä"
#. AD9HJ
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Viivapiirrosmerkkejä"
#. vViaR
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Lohko-osia"
#. ok7ks
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Geometrisia muotoja"
#. sKty5
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Sekalaisia symboleita"
#. yDpNT
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats-leikkeet"
#. Cth4P
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "CJK-merkkejä ja -välimerkkejä"
#. Bo4iK
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofo"
#. F9UFG
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Hangulin jamo-erillismerkkejä"
#. yeRDE
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "Sekalaisia CJK-merkkejä"
#. kPFs9
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "Ympäröityjä CJK-kirjaimia ja kuukausimerkkejä"
#. 6tAx6
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "CJK-yhteensopivia merkkejä"
#. VakXP
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangul"
#. XzS6D
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK-ideogrammeja"
#. JVCP5
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK-ideogrammeja (laajennus A)"
#. Y33VK
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Yksityiskäytön lohko"
#. 8yYiM
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK-yhteensopivuusideogrammeja"
#. BEfFQ
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Aakkoselliset esitysmuodot"
#. NCsAG
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Arabialaisten merkkien esitysmuotoja A"
#. adi8G
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Tarkkeiden puolikkaita"
#. vLBhn
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "CJK-yhteensopivuusmuotoja"
#. i6R3B
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Pienikokoisia muunnelmia"
#. 7EDCh
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Arabialaisten merkkien esitysmuotoja B"
#. WWoWx
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "Puoli- ja täyslevyisiä esitysmuotoja"
#. dkDXh
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Erikoismerkkejä"
#. GQSEx
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Yi-kirjainmerkit"
#. BL66x
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Yi-radikaaleja"
#. cuQ2k
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Vanhoja italialaisia kirjainmerkkejä"
#. wtKAB
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Goottilaisia merkkejä"
#. GPFqC
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret-merkkejä"
#. 7AovD
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Bysanttilaisia musiikkisymboleita"
#. G3GQF
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "Musiikkisymboleita"
#. YzBDD
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "Matemaattisia aakkosnumeerisia merkkejä"
#. 3XZRw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK-ideogrammeja (laajennus B)"
#. nZnQc
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK-ideogrammeja (laajennus C)"
#. HBwZE
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK-ideogrammeja (laajennus D)"
#. TTFkh
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "Lisää CJK-yhteensopivuusideogrammeja"
#. 2jALB
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Tagimerkkejä"
#. 2iHJN
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Kyrillisiä (laajennus)"
#. ABgr9
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "Variaatiovalitsimia"
#. a4q6S
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "Yksityiskäytön lohko (laajennus A)"
#. k638K
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "Yksityiskäytön lohko (laajennus B)"
#. pKFTg
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "limbu"
#. TJHGp
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Tai le"
#. nujxa
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Khmer-merkkejä"
#. neD93
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Foneettisia laajennuksia"
#. C6LwC
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "Sekalaisia symboleita ja nuolia"
#. giR4r
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Yijing-heksagrammeja"
#. EqFxm
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Lineaari-B-tavumerkkejä"
#. VeZNe
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Lineaari-B-logogrammeja"
#. Tvkgh
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Egean numeroita"
#. CuThH
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugariti"
#. nBtk5
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shawilaisia kirjaimia"
#. vvMNk
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmanya"
#. aiySp
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Sinhala"
#. PEGiu
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tiibet"
#. tRBTP
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Myanmar"
#. 8sgGF
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Khmer"
#. CdXvH
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
#. jFWRQ
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Riimukirjoitus"
#. jhzoc
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Syyria"
#. B66QG
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
#. j8cuG
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Etiopia"
#. AE5wq
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cherokee"
#. 9mgNF
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Kanadan alkuperäiskansojen kirjainmerkit"
#. d5JWE
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongoli"
#. XnzyB
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Sekalaisia matemaattisia symboleita A"
#. R5W9H
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "Lisänuolia A"
#. QYf7A
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Braille-merkkejä"
#. 63BBg
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "Lisänuolia B"
#. ykowm
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Sekalaisia matemaattisia symboleita B"
#. GGdze
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK-radikaalien lisäosa"
#. WLLAP
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Kangxi-radikaaleja"
#. EyZR2
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Ideogrammien kuvailumerkkejä"
#. o3AQ6
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalog"
#. BVieL
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
#. DwAEz
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
#. 3GDP5
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
#. BfGBm
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
#. cL7Vo
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofo (laajennus)"
#. MQoBs
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Katakana (foneettiset)"
#. fCpRM
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "Kiinan, japanin ja korean (CJK) vetomerkkejä"
#. zyW2q
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Kyproslaisia tavumerkkejä"
#. GWxb8
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Tai Xuan Jing -symboleita"
#. 8ZJmr
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Lisää variaatiovalitsimia"
#. RR6Er
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Muinaiskreikan nuottimerkkejä"
#. K3GsF
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Muinaiskreikan numeromerkkejä"
#. y4HCg
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Lisää arabialaisia merkkejä"
#. KUnXb
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Bugi"
#. zDaXa
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "Lisää tarkkeita"
#. 9Z24A
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "kopti"
#. CANHf
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "Etiopia (laajennus)"
#. X8DEc
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "Lisää etiopialaisia merkkejä"
#. fYpFz
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Lisää georgialaisia merkkejä"
#. 3Gzxx
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagoliittisia kirjaimia"
#. zKCVG
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "Tarkkeenomaisia sävymerkkejä"
#. B2yF8
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "Uusi Tai lue"
#. J4KdA
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Muinaispersia"
#. eGPjC
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Lisää foneettisia laajennuksia"
#. XboFE
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Lisää välimerkkejä"
#. tBJi3
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Pystysuuntaisia muotoja"
#. ihUDF
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Nko"
#. Z3AAi
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Bali"
#. 428ER
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Latinalaisia (laajennus C)"
#. SqFfT
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Latinalaisia (laajennus D)"
#. yMmow
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phags-pa"
#. V6CsB
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Foinikia"
#. GNBwz
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Nuolenpääkirjoitus"
#. VBPZE
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Nuolenpäänumeroita ja -välimerkkejä"
#. 9msGJ
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Puikkolaskentanumeroita"
#. i6Gx9
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Sunda"
#. WrXXX
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Kyrillisiä (laajennus A)"
#. ZkKwE
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Kyrillisiä (laajennus B)"
#. GoQpd
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Cham"
#. qYaAV
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Antiikin symboleita"
#. At8Tk
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Faistoksen kiekko"
#. ryGAF
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Lyykia"
#. EYLa8
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Kaaria"
#. TPN6m
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lyydia"
#. G5GLd
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Mahjong-palikat"
#. EyMaF
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Dominopalikat"
#. r2YQs
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Samaria"
#. feZ2Q
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Kanadan alkuperäiskansojen kirjainmerkit (laajennus)"
#. H4FpF
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Veda-laajennuksia"
#. bVNYf
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu"
#. riEM3
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamum"
#. CQMqK
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Yhteisiä intialaisia numeromerkkejä"
#. gDEUp
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari (laajennus)"
#. UsAq2
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul jamo (laajennus A)"
#. g5H7j
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Jaava"
#. upBjC
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Myanmar (laajennus A)"
#. GQ3XX
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul jamo (laajennus B)"
#. RTxUc
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Valtakunnan aramea"
#. 7E6G8
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Vanha eteläarabia"
#. Ab3wu
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Avesta"
#. 5gN8e
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Parthian kaiverrusmerkkejä"
#. D7rcV
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Pahlavin kaiverrusmerkkejä"
#. d44Dq
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Vanha turkki"
#. CLuJC
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Rumi-numeromerkkejä"
#. FpFeH
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Egyptin hieroglyfejä"
#. bMYVC
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Lisää ympäröityjä aakkosnumeerisia merkkejä"
#. Dqcpa
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Lisää ympyröityjä ideografisia merkkejä"
#. 8eCZn
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaic"
#. 8LVFp
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Etiopia (laajennus A)"
#. cQEzt
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Lisää bamum-merkkejä"
#. xibkG
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Lisää kana-merkkejä"
#. xyswt
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Pelikortit"
#. TqExt
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "Sekalaisia symboleita ja piktogrammeja"
#. wtMts
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "Hymiöt"
#. WgGuX
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "Liikenne- ja karttamerkkejä"
#. fBitP
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "Alkemistisia merkkejä"
#. CWvjP
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Arabialaisia (laajennus A)"
#. D7mEf
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "Arabialaisia matemaattisia kirjoitusmerkkejä"
#. 8ouWH
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Meetei Mayek (laajennus)"
#. mFAeA
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Meroiittinen kursiivi"
#. b5m8K
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Meroiittisia hieroglyfejä"
#. Xrkei
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sora Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Lisää sunda-merkkejä"
#. pTsMT
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr "Bassa vah"
#. GWufB
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr "Kaukasian albania"
#. t8Bfn
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr "Koptin epact-numerot"
#. kAeYs
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "Tarkkeita (laajennusosa)"
#. 8TGuM
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr "Duployén pikakirjoitus"
#. Yaq3z
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr "Elbasan"
#. QmkME
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr "Geometrisiä muotoja (laajennusosa)"
#. R9PgF
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr "Grantha"
#. tpSqU
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr "Khojki"
#. 4pjBM
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr "Khudawadi"
#. GoPep
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Latinalaisia (laajennus E)"
#. wNozk
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Lineaari-A"
#. SjAev
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr "Mahajani"
#. CA7vw
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr "Manikealainen"
#. UUKC4
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr "Mende-kirjoitus"
#. ZhzBz
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Modi"
#. jC4Ue
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr "Mro"
#. TiWmd
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Myanmar (laajennus B)"
#. y7tCX
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr "Nabatealainen"
#. T29Cw
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Vanha pohjoisarabia"
#. EZADa
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr "Vanha permiläinen"
#. 9oFL2
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1671
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr "Ornamentaaliset Dingbats-leikkeet"
#. TYGv3
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr "Pahawh Hmong"
#. wd8bD
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr "Palmyralainen"
#. dkSnn
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr "Pau Cin Hau"
#. bts3U
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr "Psalttari-pahlavi"
#. XSwsB
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr "Muotoilun ohjausmerkkejä (lyhenteitä)"
#. rdXCX
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr "Siddham"
#. GwT8c
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr "Sinhalilaisia vanhoja numeromerkkejä"
#. mz3Cs
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Lisänuolia C"
#. iGUzh
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr "Tirhuta"
#. HRBEN
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr "Warang Citi"
#. 9NCBd
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr "Ahom"
#. cPJhp
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr "Anatolialaiset hieroglyfit"
#. GAd7H
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr "Cherokee (laajennus)"
#. TDgY4
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK-ideogrammeja (laajennus E)"
#. ho93C
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr "Varhaisdynastinen nuolenpääkirjoitus"
#. La5yr
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr "Hatra"
#. e3aXA
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr "Multani"
#. D6qsK
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr "Unkarilaiset riimut"
#. aVhdm
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr "Symboleita ja piktogrammeja (laajennus)"
#. B6UHz
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr "Suttonin viittomakirjoitus"
#. rFgRw
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr "Adlam"
#. F2AJT
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr "Bhaiksuki"
#. zDLT2
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Kyrillisiä (laajennus C)"
#. S69GG
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr "Glagoliittinen (laajennus)"
#. QeCxG
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr "Ideografisia symboleita ja välimerkkejä"
#. 45hVB
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr "Marchen"
#. Mr7RB
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Lisää mongolin merkkejä"
#. RTgGA
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Newa"
#. JJrpR
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Osage"
#. o3qMt
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr "Tanguutti"
#. nRMFd
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr "Tanguutin komponentteja"
#. uFMWt
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK-ideogrammeja (laajennus F)"
#. DH39v
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Kana (laajennus A)"
#. jPSFu
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr "Masaram Gondi"
#. TGJHU
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr "Nüshu"
#. DHbMR
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr "Soyombo"
#. gPnhH
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Syyria (laajennus)"
#. rbMNp
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr "Zanabazar-neliökirjaimisto"
#. i5evF
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr "Shakkisymbolit"
#. BYA5Y
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr "makassar"
#. abFR5
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr "Mayanumerot"
#. aDjHx
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr "medefaidrin"
#. qMf5N
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr "vanha sogdi"
#. rUG8e
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr "sogdi"
#. B6UKP
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr "Vanhan tietotekniikan symboleita"
#. SZmB5
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1738
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "Vasemmalta oikealle (LTR)"
#. Ct9UG
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1739
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "Oikealta vasemmalle (RTL)"
#. XFhAz
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1740
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "Käytä ensisijaista objektiasetusta"
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1742
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "Vasemmalta oikealle (vaaka)"
#. b6Guf
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1743
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "Oikealta vasemmalle (vaaka)"
#. yQGoC
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1744
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "Oikealta vasemmalle (pysty)"
#. k7B2r
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1745
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Vasemmalta oikealle (pysty)"
#. DF4B8
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr "Alhaalta ylös, vasemmalta oikealle (pysty)"
#. siSmL
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr "Fonttipaja"
+#. Eg8QT
+#: include/svx/strings.hrc:1750
+msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
+msgid "Digitally signed by:"
+msgstr "Sähköisesti allekirjoittanut:"
+
+#. NyP2E
+#: include/svx/strings.hrc:1751
+msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
+msgid "Date: %1"
+msgstr "Päivämäärä: %1"
+
#. oFcMf
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
@@ -10338,6 +10400,126 @@ msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Intersection"
msgstr "Intersection"
+#. 8DMsd
+#: svx/inc/formnavi.hrc:29
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit"
+msgid "~Text Box"
+msgstr ""
+
+#. LaRik
+#: svx/inc/formnavi.hrc:30
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
+msgid "~Button"
+msgstr "Painike"
+
+#. qjKaG
+#: svx/inc/formnavi.hrc:31
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
+msgid "La~bel field"
+msgstr ""
+
+#. sq3AT
+#: svx/inc/formnavi.hrc:32
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
+msgid "L~ist Box"
+msgstr ""
+
+#. agpbk
+#: svx/inc/formnavi.hrc:33
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
+msgid "~Check Box"
+msgstr "Valintaruutu"
+
+#. 9WA4B
+#: svx/inc/formnavi.hrc:34
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
+msgid "~Radio Button"
+msgstr ""
+
+#. PpgmW
+#: svx/inc/formnavi.hrc:35
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
+msgid "G~roup Box"
+msgstr ""
+
+#. A8Dbz
+#: svx/inc/formnavi.hrc:36
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
+msgid "Combo Bo~x"
+msgstr ""
+
+#. HRAoH
+#: svx/inc/formnavi.hrc:37
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
+msgid "I~mage Button"
+msgstr "Kuvapainike"
+
+#. gZZqq
+#: svx/inc/formnavi.hrc:38
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
+msgid "~File Selection"
+msgstr "Tiedoston valinta"
+
+#. EEADE
+#: svx/inc/formnavi.hrc:39
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
+msgid "~Date Field"
+msgstr "Päivämääräkenttä"
+
+#. gDr8N
+#: svx/inc/formnavi.hrc:40
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
+msgid "Tim~e Field"
+msgstr "Aikakenttä"
+
+#. jAbfP
+#: svx/inc/formnavi.hrc:41
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
+msgid "~Numerical Field"
+msgstr "Numeerinen kenttä"
+
+#. ryXjj
+#: svx/inc/formnavi.hrc:42
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
+msgid "C~urrency Field"
+msgstr "Valuuttakenttä"
+
+#. GXHFr
+#: svx/inc/formnavi.hrc:43
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
+msgid "~Pattern Field"
+msgstr ""
+
+#. a7jCc
+#: svx/inc/formnavi.hrc:44
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
+msgid "Ima~ge Control"
+msgstr ""
+
+#. WDsBh
+#: svx/inc/formnavi.hrc:45
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
+msgid "Fo~rmatted Field"
+msgstr "Muotoiltu kenttä"
+
+#. aEXn5
+#: svx/inc/formnavi.hrc:46
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
+msgid "Scroll bar"
+msgstr ""
+
+#. cGxjA
+#: svx/inc/formnavi.hrc:47
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
+msgid "Spin Button"
+msgstr "Askelluspainike"
+
+#. HYbc6
+#: svx/inc/formnavi.hrc:48
+msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
+msgid "Navigation Bar"
+msgstr ""
+
#. d7vkX
#: svx/inc/frmsel.hrc:29
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
@@ -10447,244 +10629,245 @@ msgid "Diagonal border line from bottom left to top right"
msgstr "Lävistävä rajaviiva vasemmalta alhaalta oikealle ylhäälle"
#. hPpj7
+#. SVX_NUM_NUMBER_NONE
#: svx/inc/numberingtype.hrc:29
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "None"
msgstr "Ei mitään"
#. dQWBh
-#. SVX_NUM_NUMBER_NONE
+#. SVX_NUM_CHAR_SPECIAL
#: svx/inc/numberingtype.hrc:30
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Bullet"
msgstr "Luettelomerkki"
#. GfQQK
-#. SVX_NUM_CHAR_SPECIAL
+#. SVX_NUM_BITMAP
#: svx/inc/numberingtype.hrc:31
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Graphics"
msgstr "Kuvat"
#. DfEKa
-#. SVX_NUM_BITMAP
+#. SVX_NUM_BITMAP|0x80
#: svx/inc/numberingtype.hrc:32
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Linked graphics"
msgstr "Linkitetyt kuvat"
#. AF3ts
-#. SVX_NUM_BITMAP|0x80
+#. SVX_NUM_ARABIC
#: svx/inc/numberingtype.hrc:33
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
#. bBGa7
-#. SVX_NUM_ARABIC
+#. SVX_NUM_CHARS_UPPER_LETTER
#: svx/inc/numberingtype.hrc:34
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
#. 5MDDu
-#. SVX_NUM_CHARS_UPPER_LETTER
+#. SVX_NUM_CHARS_LOWER_LETTER
#: svx/inc/numberingtype.hrc:35
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, b, c, ..."
msgstr "a, b, c, ..."
#. qGL48
-#. SVX_NUM_CHARS_LOWER_LETTER
+#. SVX_NUM_ROMAN_UPPER
#: svx/inc/numberingtype.hrc:36
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
#. tZAzS
-#. SVX_NUM_ROMAN_UPPER
+#. SVX_NUM_ROMAN_LOWER
#: svx/inc/numberingtype.hrc:37
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
#. hbCEG
-#. SVX_NUM_ROMAN_LOWER
+#. TEXT_NUMBER
#: svx/inc/numberingtype.hrc:38
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
msgstr "1., 2., 3., ..."
#. ymefj
-#. TEXT_NUMBER
+#. TEXT_CARDINAL
#: svx/inc/numberingtype.hrc:39
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
msgstr "Yksi, Kaksi, Kolme, ..."
#. uPBZs
-#. TEXT_CARDINAL
+#. TEXT_ORDINAL
#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
msgstr "Ensimmäinen, Toinen, Kolmas, ..."
#. 2QoAG
-#. TEXT_ORDINAL
+#. SVX_NUM_CHARS_UPPER_LETTER_N
#: svx/inc/numberingtype.hrc:41
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ..."
#. 7Snqt
-#. SVX_NUM_CHARS_UPPER_LETTER_N
+#. SVX_NUM_CHARS_LOWER_LETTER_N
#: svx/inc/numberingtype.hrc:42
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
#. 2jYQi
-#. SVX_NUM_CHARS_LOWER_LETTER_N
+#. SYMBOL_CHICAGO
#: svx/inc/numberingtype.hrc:43
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "*, †, ‡, §, **, ††, ..."
msgstr "*, †, ‡, §, **, ††, ..."
#. GG8gr
-#. SYMBOL_CHICAGO
+#. NATIVE_NUMBERING
#: svx/inc/numberingtype.hrc:44
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Native Numbering"
msgstr "Kielikohtainen numerointi"
#. yLB7R
-#. NATIVE_NUMBERING
+#. CHARS_CYRILLIC_UPPER_LETTER_BG
#: svx/inc/numberingtype.hrc:45
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (bulgaria)"
#. JHskj
-#. CHARS_CYRILLIC_UPPER_LETTER_BG
+#. CHARS_CYRILLIC_LOWER_LETTER_BG
#: svx/inc/numberingtype.hrc:46
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (bulgaria)"
#. sqKyt
-#. CHARS_CYRILLIC_LOWER_LETTER_BG
+#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
#: svx/inc/numberingtype.hrc:47
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (bulgaria)"
#. QtcCE
-#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
+#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
#: svx/inc/numberingtype.hrc:48
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (bulgaria)"
#. DeUDb
-#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
+#. CHARS_CYRILLIC_UPPER_LETTER_RU
#: svx/inc/numberingtype.hrc:49
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (venäjä)"
#. kAHJb
-#. CHARS_CYRILLIC_UPPER_LETTER_RU
+#. CHARS_CYRILLIC_LOWER_LETTER_RU
#: svx/inc/numberingtype.hrc:50
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (venäjä)"
#. kHAr7
-#. CHARS_CYRILLIC_LOWER_LETTER_RU
+#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
#: svx/inc/numberingtype.hrc:51
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (venäjä)"
#. Dkve7
-#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
+#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
#: svx/inc/numberingtype.hrc:52
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (venäjä)"
#. EdfYn
-#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
+#. CHARS_CYRILLIC_UPPER_LETTER_SR
#: svx/inc/numberingtype.hrc:53
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (serbia)"
#. oFJkn
-#. CHARS_CYRILLIC_UPPER_LETTER_SR
+#. CHARS_CYRILLIC_LOWER_LETTER_SR
#: svx/inc/numberingtype.hrc:54
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (serbia)"
#. oA7CM
-#. CHARS_CYRILLIC_LOWER_LETTER_SR
+#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
#: svx/inc/numberingtype.hrc:55
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (serbia)"
#. Eom7M
-#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
+#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
#: svx/inc/numberingtype.hrc:56
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (serbia)"
#. p4hKs
-#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
+#. CHARS_GREEK_UPPER_LETTER
#: svx/inc/numberingtype.hrc:57
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
msgstr "Α, Β, Γ, ... (kreikkalaiset isot kirjaimet)"
#. HYhns
-#. CHARS_GREEK_UPPER_LETTER
+#. CHARS_GREEK_LOWER_LETTER
#: svx/inc/numberingtype.hrc:58
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "α, β, γ, ... (Greek Lower Letter)"
msgstr "α, β, γ, ... (kreikkalaiset pienet kirjaimet)"
#. 8Cxkk
-#. CHARS_GREEK_LOWER_LETTER
+#. NUMBER_HEBREW
#: svx/inc/numberingtype.hrc:59
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...י, יא...כ, ..."
msgstr "א...י, יא...כ, ..."
#. n2sV8
-#. NUMBER_HEBREW
+#. CHARS_HEBREW
#: svx/inc/numberingtype.hrc:60
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...ת, אא...תת, ..."
msgstr "א...ת, אא...תת, ..."
#. nR8RG
-#. CHARS_HEBREW
+#. NUMBER_ARABIC_INDIC
#: svx/inc/numberingtype.hrc:61
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "١, ٢, ٣, ٤, ... (Arabic)"
msgstr "١, ٢, ٣, ٤, ... (arabia)"
#. jEE4r
-#. NUMBER_ARABIC_INDIC
+#. NUMBER_EAST_ARABIC_INDIC
#: svx/inc/numberingtype.hrc:62
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "۱, ۲, ۳, ۴, ... (Farsi)"
msgstr ""
#. YFYp2
-#. NUMBER_EAST_ARABIC_INDIC
+#. NUMBER_INDIC_DEVANAGARI
#: svx/inc/numberingtype.hrc:63
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "१, २, ३, ..."
@@ -12168,109 +12351,151 @@ msgid "Manage Changes"
msgstr "Hallinnoi muutoksia"
#. RMm2g
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:26
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:23
msgctxt "acceptrejectchangesdialog|accept"
msgid "_Accept"
msgstr "_Hyväksy"
+#. vxNLK
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:30
+msgctxt "acceptrejectchangesdialog|extended_tip|accept"
+msgid "Accepts the selected change and removes the highlighting from the change in the document."
+msgstr ""
+
#. UEZKm
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:41
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:43
msgctxt "acceptrejectchangesdialog|reject"
msgid "_Reject"
msgstr "H_ylkää"
+#. rDjqw
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:50
+msgctxt "acceptrejectchangesdialog|extended_tip|reject"
+msgid "Rejects the selected change and removes the highlighting from the change in the document."
+msgstr ""
+
#. CY86f
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:56
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:63
msgctxt "acceptrejectchangesdialog|acceptall"
msgid "A_ccept All"
msgstr "Hyväksy _kaikki"
+#. At7GQ
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:70
+msgctxt "acceptrejectchangesdialog|extended_tip|acceptall"
+msgid "Accepts all of the changes and removes the highlighting from the document."
+msgstr "Hyväksytään kaikki muutokset ja poistetaan korostus asiakirjasta."
+
#. debjw
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:71
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:83
msgctxt "acceptrejectchangesdialog|rejectall"
msgid "R_eject All"
msgstr "Hylkää kai_kki"
+#. ZSHyG
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:90
+msgctxt "acceptrejectchangesdialog|extended_tip|rejectall"
+msgid "Rejects all of the changes and removes the highlighting from the document."
+msgstr "Hylätään kaikki muutokset ja poistetaan korostus asiakirjasta."
+
+#. phEJs
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:110
+msgctxt "acceptrejectchangesdialog|extended_tip|undo"
+msgid "Reverse the last Accept or Reject command."
+msgstr ""
+
#. Jyka9
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:144
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:169
msgctxt "acceptrejectchangesdialog|calcedit"
msgid "Edit Comment..."
msgstr "Muokkaa huomautusta..."
+#. EnZSS
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:172
+msgctxt "acceptrejectchangesdialog|extended_tip|calcedit"
+msgid "Edit the comment for the selected change."
+msgstr ""
+
#. kqtia
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:151
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:181
msgctxt "acceptrejectchangesdialog|calcsort"
msgid "Sorting"
msgstr "Lajittelu"
#. 2DLpG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:161
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:191
msgctxt "acceptrejectchangesdialog|calcaction"
msgid "Action"
msgstr "Toiminto"
#. 3YNZ7
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:169
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:199
msgctxt "acceptrejectchangesdialog|calcposition"
msgid "Position"
msgstr "Sijainti"
#. wzRCk
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:178
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:208
msgctxt "acceptrejectchangesdialog|calcauthor"
msgid "Author"
msgstr "Tekijä"
#. xavjS
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:187
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:217
msgctxt "acceptrejectchangesdialog|calcdate"
msgid "Date"
msgstr "Päivämäärä"
#. CyvEG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:196
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:226
msgctxt "acceptrejectchangesdialog|calcdesc"
msgid "Description"
msgstr "Kuvaus"
#. VDtBL
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:213
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:243
msgctxt "acceptrejectchangesdialog|writeredit"
msgid "Edit Comment..."
msgstr "Muokkaa huomautusta..."
+#. eRArW
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:246
+msgctxt "acceptrejectchangesdialog|extended_tip|writeredit"
+msgid "Edit the comment for the selected change."
+msgstr ""
+
#. 75VLB
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:220
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:255
msgctxt "acceptrejectchangesdialog|writersort"
msgid "Sort By"
msgstr "Lajitteluperuste"
#. EYaEE
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:230
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:265
msgctxt "acceptrejectchangesdialog|writeraction"
msgid "Action"
msgstr "Toiminto"
#. acfbi
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:238
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:273
msgctxt "acceptrejectchangesdialog|writerauthor"
msgid "Author"
msgstr "Tekijä"
#. WNQ9L
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:247
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:282
msgctxt "acceptrejectchangesdialog|writerdate"
msgid "Date"
msgstr "Päivämäärä"
#. 8qG3o
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:256
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:291
msgctxt "acceptrejectchangesdialog|writerdesc"
msgid "Comment"
msgstr "Huomautus"
#. Z9yjZ
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:265
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:300
msgctxt "acceptrejectchangesdialog|writerposition"
msgid "Document Position"
msgstr "Sijainti asiakirjassa"
@@ -12294,119 +12519,227 @@ msgid "Add Condition"
msgstr "Lisää ehto"
#. zVZ7P
-#: svx/uiconfig/ui/addconditiondialog.ui:90
+#: svx/uiconfig/ui/addconditiondialog.ui:87
msgctxt "addconditiondialog|label1"
msgid "_Condition:"
msgstr "Ehto:"
+#. CBWg9
+#: svx/uiconfig/ui/addconditiondialog.ui:113
+msgctxt "addconditiondialog|extended_tip|condition"
+msgid "Enter a condition."
+msgstr "Syötä ehto."
+
#. GztAA
-#: svx/uiconfig/ui/addconditiondialog.ui:140
+#: svx/uiconfig/ui/addconditiondialog.ui:142
msgctxt "addconditiondialog|label2"
msgid "_Result:"
msgstr "Tulos:"
#. 2aknP
-#: svx/uiconfig/ui/addconditiondialog.ui:152
+#: svx/uiconfig/ui/addconditiondialog.ui:154
msgctxt "addconditiondialog|edit"
msgid "_Edit Namespaces..."
msgstr "Muokkaa nimiavaruuksia..."
+#. YARAf
+#: svx/uiconfig/ui/addconditiondialog.ui:162
+msgctxt "addconditiondialog|extended_tip|edit"
+msgid "Opens the Form Namespaces dialog where you can add, edit, or delete namespaces."
+msgstr "Lomakkeiden nimiavaruudet -valintaikkuna avataan, jossa voidaan lisätä, muokata tai poistaa nimiavaruuksia."
+
+#. At9nJ
+#: svx/uiconfig/ui/addconditiondialog.ui:189
+msgctxt "addconditiondialog|extended_tip|result"
+msgid "Displays a preview of the result."
+msgstr "Näytetään tuloksen ennakkoesitys."
+
+#. obZQs
+#: svx/uiconfig/ui/addconditiondialog.ui:219
+msgctxt "addconditiondialog|extended_tip|AddConditionDialog"
+msgid "Add a condition in this subdialog of the Add Item / Edit Item dialog of the Data Navigator."
+msgstr "Lisätään ehto tähän tietoselaimen Lisää nimike / Muokkaa nimike -ikkunan alavalintaikkunaan."
+
+#. AVvdB
+#: svx/uiconfig/ui/adddataitemdialog.ui:102
+msgctxt "adddataitemdialog|extended_tip|name"
+msgid "Enter the name of the item."
+msgstr "Kirjoitetaan nimikkeen nimi."
+
#. Ac8VD
-#: svx/uiconfig/ui/adddataitemdialog.ui:114
+#: svx/uiconfig/ui/adddataitemdialog.ui:116
msgctxt "adddataitemdialog|nameft"
msgid "_Name:"
msgstr "Nimi:"
#. C2HJB
-#: svx/uiconfig/ui/adddataitemdialog.ui:128
+#: svx/uiconfig/ui/adddataitemdialog.ui:130
msgctxt "adddataitemdialog|valueft"
msgid "_Default value:"
msgstr "Oletusarvo:"
#. 6XN5s
-#: svx/uiconfig/ui/adddataitemdialog.ui:140
+#: svx/uiconfig/ui/adddataitemdialog.ui:142
msgctxt "adddataitemdialog|browse"
msgid "_Add..."
msgstr "Lisää..."
+#. qt9Aw
+#: svx/uiconfig/ui/adddataitemdialog.ui:163
+msgctxt "adddataitemdialog|extended_tip|value"
+msgid "Enter a default value for the selected item."
+msgstr "Annettaan valitun nimikkeen oletusarvo."
+
#. kDPzz
-#: svx/uiconfig/ui/adddataitemdialog.ui:173
+#: svx/uiconfig/ui/adddataitemdialog.ui:180
msgctxt "adddataitemdialog|label1"
msgid "Item"
msgstr "Nimike"
#. 5eBHo
-#: svx/uiconfig/ui/adddataitemdialog.ui:210
+#: svx/uiconfig/ui/adddataitemdialog.ui:217
msgctxt "adddataitemdialog|datatypeft"
msgid "_Data type:"
msgstr "Tietotyyppi:"
+#. cSxmt
+#: svx/uiconfig/ui/adddataitemdialog.ui:235
+msgctxt "adddataitemdialog|extended_tip|datatype"
+msgid "Select the data type for the selected item."
+msgstr "Valitaan valitun nimikkeen tietotyyppi."
+
#. CDawq
-#: svx/uiconfig/ui/adddataitemdialog.ui:234
+#: svx/uiconfig/ui/adddataitemdialog.ui:246
msgctxt "adddataitemdialog|required"
msgid "_Required"
msgstr "Pakollinen"
+#. RoGeb
+#: svx/uiconfig/ui/adddataitemdialog.ui:255
+msgctxt "adddataitemdialog|extended_tip|required"
+msgid "Specifies if the item must be included on the XForm."
+msgstr "Merkitsemällä määrätään, että nimike on oltava XForm-lomakkeessa."
+
#. xFrP8
-#: svx/uiconfig/ui/adddataitemdialog.ui:249
+#: svx/uiconfig/ui/adddataitemdialog.ui:266
msgctxt "adddataitemdialog|requiredcond"
msgid "Condition"
msgstr "Ehto"
+#. ZmXJi
+#: svx/uiconfig/ui/adddataitemdialog.ui:274
+msgctxt "adddataitemdialog|extended_tip|requiredcond"
+msgid "The Condition button opens the Add Condition dialog where you can enter used namespaces and full XPath expressions."
+msgstr ""
+
#. Rqtm8
-#: svx/uiconfig/ui/adddataitemdialog.ui:263
+#: svx/uiconfig/ui/adddataitemdialog.ui:285
msgctxt "adddataitemdialog|relevant"
msgid "R_elevant"
msgstr "Relevantti"
+#. QwPmR
+#: svx/uiconfig/ui/adddataitemdialog.ui:294
+msgctxt "adddataitemdialog|extended_tip|relevant"
+msgid "Declares the item as relevant."
+msgstr "Määritetään nimike relevantiksi."
+
#. ZpbVz
-#: svx/uiconfig/ui/adddataitemdialog.ui:278
+#: svx/uiconfig/ui/adddataitemdialog.ui:305
msgctxt "adddataitemdialog|relevantcond"
msgid "Condition"
msgstr "Ehto"
+#. ZzhU6
+#: svx/uiconfig/ui/adddataitemdialog.ui:313
+msgctxt "adddataitemdialog|extended_tip|relevantcond"
+msgid "Declares the item as a constraint."
+msgstr "Määritetään nimike rajoitteeksi."
+
#. gLAEV
-#: svx/uiconfig/ui/adddataitemdialog.ui:292
+#: svx/uiconfig/ui/adddataitemdialog.ui:324
msgctxt "adddataitemdialog|constraint"
msgid "_Constraint"
msgstr "Rajoite"
+#. jspHN
+#: svx/uiconfig/ui/adddataitemdialog.ui:333
+msgctxt "adddataitemdialog|extended_tip|constraint"
+msgid "Declares the item as a constraint."
+msgstr "Määritetään nimike rajoitteeksi."
+
#. k7xDZ
-#: svx/uiconfig/ui/adddataitemdialog.ui:307
+#: svx/uiconfig/ui/adddataitemdialog.ui:344
msgctxt "adddataitemdialog|readonly"
msgid "Read-_only"
msgstr "Kirjoitussuojattu"
+#. YYuo9
+#: svx/uiconfig/ui/adddataitemdialog.ui:353
+msgctxt "adddataitemdialog|extended_tip|readonly"
+msgid "Declares the item as read-only."
+msgstr "Määritetään nimike kirjoitussuojatuksi."
+
#. aAGTh
-#: svx/uiconfig/ui/adddataitemdialog.ui:322
+#: svx/uiconfig/ui/adddataitemdialog.ui:364
msgctxt "adddataitemdialog|calculate"
msgid "Calc_ulate"
msgstr "Laskenta"
+#. Ct5yr
+#: svx/uiconfig/ui/adddataitemdialog.ui:373
+msgctxt "adddataitemdialog|extended_tip|calculate"
+msgid "Declares that the item is calculated."
+msgstr "Määritetään nimike lasketuksi."
+
#. Rxz2f
-#: svx/uiconfig/ui/adddataitemdialog.ui:337
+#: svx/uiconfig/ui/adddataitemdialog.ui:384
msgctxt "adddataitemdialog|constraintcond"
msgid "Condition"
msgstr "Ehto"
+#. HFeZa
+#: svx/uiconfig/ui/adddataitemdialog.ui:392
+msgctxt "adddataitemdialog|extended_tip|constraintcond"
+msgid "The Condition button opens the Add Condition dialog where you can specify the constraint condition."
+msgstr ""
+
#. wDmeB
-#: svx/uiconfig/ui/adddataitemdialog.ui:351
+#: svx/uiconfig/ui/adddataitemdialog.ui:403
msgctxt "adddataitemdialog|readonlycond"
msgid "Condition"
msgstr "Ehto"
+#. DvGPL
+#: svx/uiconfig/ui/adddataitemdialog.ui:411
+msgctxt "adddataitemdialog|extended_tip|readonlycond"
+msgid "Declares that the item is calculated."
+msgstr "Määritetään nimike lasketuksi."
+
#. PTPGq
-#: svx/uiconfig/ui/adddataitemdialog.ui:365
+#: svx/uiconfig/ui/adddataitemdialog.ui:422
msgctxt "adddataitemdialog|calculatecond"
msgid "Condition"
msgstr "Ehto"
+#. F6JBe
+#: svx/uiconfig/ui/adddataitemdialog.ui:430
+msgctxt "adddataitemdialog|extended_tip|calculatecond"
+msgid "The Condition button opens the Add Condition dialog where you can enter the calculation."
+msgstr ""
+
#. JEwfa
-#: svx/uiconfig/ui/adddataitemdialog.ui:385
+#: svx/uiconfig/ui/adddataitemdialog.ui:447
msgctxt "adddataitemdialog|label4"
msgid "Settings"
msgstr "Asetukset"
+#. dYE4K
+#: svx/uiconfig/ui/adddataitemdialog.ui:472
+msgctxt "adddataitemdialog|extended_tip|AddDataItemDialog"
+msgid "Adds a new item or edits the selected item in the XForms Data Navigator."
+msgstr "Lisätään uusi nimike tai muokataan valittua nimikettä XForms-tietoselaimessa."
+
#. kGDkZ
#: svx/uiconfig/ui/addinstancedialog.ui:8
msgctxt "addinstancedialog|AddInstanceDialog"
@@ -12450,19 +12783,31 @@ msgid "Add Model"
msgstr "Lisää malli"
#. BVA6X
-#: svx/uiconfig/ui/addmodeldialog.ui:87
+#: svx/uiconfig/ui/addmodeldialog.ui:84
msgctxt "addmodeldialog|modify"
msgid "Model data updates change document's modification status"
msgstr "Jos mallin tietoja muutetaan, asiakirja tulkitaan muuttuneeksi"
+#. hngBo
+#: svx/uiconfig/ui/addmodeldialog.ui:93
+msgctxt "addmodeldialog|extended_tip|modify"
+msgid "When enabled, the document status will be set to \"modified\" when you change any form control that is bound to any data in the model. When not enabled, such a change does not set the document status to \"modified\"."
+msgstr "Kun käytössä, asiakirjan asetetaan \"muokattu\"-tilaan muutettaessa mitä tahansa lomakkeen ohjausobjektia, joka on kytketty mallin aineistoon. Kun ei käytössä, mainitut muutokset eivät aseta asiakirjaa \"muokattu\"-tilaan."
+
+#. rNsqB
+#: svx/uiconfig/ui/addmodeldialog.ui:111
+msgctxt "addmodeldialog|extended_tip|name"
+msgid "Enter the name."
+msgstr "Kirjoitetaan nimi."
+
#. SDrTB
-#: svx/uiconfig/ui/addmodeldialog.ui:117
+#: svx/uiconfig/ui/addmodeldialog.ui:124
msgctxt "addmodeldialog|label2"
msgid "_Name:"
msgstr "Nimi:"
#. BCjAN
-#: svx/uiconfig/ui/addmodeldialog.ui:131
+#: svx/uiconfig/ui/addmodeldialog.ui:138
msgctxt "addmodeldialog|alttitle"
msgid "Edit Model"
msgstr "Muokkaa mallia"
@@ -12546,131 +12891,209 @@ msgid "Asian Phonetic Guide"
msgstr "Aasialaisen ääntämisen opas"
#. Hj3z4
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:93
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:90
msgctxt "asianphoneticguidedialog|basetextft"
msgid "Base text"
msgstr "Perusteksti"
#. ob9GM
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:105
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:102
msgctxt "asianphoneticguidedialog|rubytextft"
msgid "Ruby text"
msgstr "Ruby-teksti"
#. 5i2SB
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:152
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:149
msgctxt "asianphoneticguidedialog|Left2ED-atkobject"
msgid "Base text"
msgstr "Perusteksti"
+#. AmySt
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:150
+msgctxt "asianphoneticguidedialog|extended_tip|Left2ED"
+msgid "Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here."
+msgstr "Esitetään käytettävästä tiedostosta valittu perusteksti. Tarvittaessa perustekstiä voidaan muokata kirjoittamalla uutta tekstiä tässä."
+
+#. CgQBG
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:166
+msgctxt "asianphoneticguidedialog|extended_tip|Left1ED"
+msgid "Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here."
+msgstr "Esitetään käytettävästä tiedostosta valittu perusteksti. Tarvittaessa perustekstiä voidaan muokata kirjoittamalla uutta tekstiä tässä."
+
+#. NWo3X
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:183
+msgctxt "asianphoneticguidedialog|extended_tip|Right1ED"
+msgid "Enter the text that you want to use as a pronunciation guide for the base text."
+msgstr "Kirjoitetaan perustekstin ääntämisohjeena käytettävä teksti."
+
#. kmxtU
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:191
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:199
msgctxt "asianphoneticguidedialog|Right2ED-atkobject"
msgid "Ruby text"
msgstr "Ruby-teksti"
+#. QikUh
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:200
+msgctxt "asianphoneticguidedialog|extended_tip|Right2ED"
+msgid "Enter the text that you want to use as a pronunciation guide for the base text."
+msgstr "Kirjoitetaan perustekstin ääntämisohjeena käytettävä teksti."
+
#. iMRNj
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:207
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:216
msgctxt "asianphoneticguidedialog|Left3ED-atkobject"
msgid "Base text"
msgstr "Perusteksti"
+#. YGAWS
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:217
+msgctxt "asianphoneticguidedialog|extended_tip|Left3ED"
+msgid "Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here."
+msgstr "Esitetään käytettävästä tiedostosta valittu perusteksti. Tarvittaessa perustekstiä voidaan muokata kirjoittamalla uutta tekstiä tässä."
+
#. 7JS7K
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:223
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:233
msgctxt "asianphoneticguidedialog|Right3ED-atkobject"
msgid "Ruby text"
msgstr "Ruby-teksti"
+#. z4hPb
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:234
+msgctxt "asianphoneticguidedialog|extended_tip|Right3ED"
+msgid "Enter the text that you want to use as a pronunciation guide for the base text."
+msgstr "Kirjoitetaan perustekstin ääntämisohjeena käytettävä teksti."
+
#. atKaG
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:239
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:250
msgctxt "asianphoneticguidedialog|Right4ED-atkobject"
msgid "Ruby text"
msgstr "Ruby-teksti"
+#. LJwUL
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:251
+msgctxt "asianphoneticguidedialog|extended_tip|Right4ED"
+msgid "Enter the text that you want to use as a pronunciation guide for the base text."
+msgstr "Kirjoitetaan perustekstin ääntämisohjeena käytettävä teksti."
+
#. QsYkZ
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:255
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:267
msgctxt "asianphoneticguidedialog|Left4ED-atkobject"
msgid "Base text"
msgstr "Perusteksti"
+#. 8BDyd
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:268
+msgctxt "asianphoneticguidedialog|extended_tip|Left4ED"
+msgid "Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here."
+msgstr "Esitetään käytettävästä tiedostosta valittu perusteksti. Tarvittaessa perustekstiä voidaan muokata kirjoittamalla uutta tekstiä tässä."
+
#. opK8r
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:292
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:305
msgctxt "asianphoneticguidedialog|label4"
msgid "Alignment:"
msgstr "Tasaus:"
#. o66DA
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:306
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:319
msgctxt "asianphoneticguidedialog|label5"
msgid "Position:"
msgstr "Sijainti:"
#. U8p5i
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:320
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:333
msgctxt "asianphoneticguidedialog|styleft"
msgid "Character style for ruby text:"
msgstr "Ruby-tekstin merkkityyli:"
+#. cLDc6
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:350
+msgctxt "asianphoneticguidedialog|extended_tip|stylelb"
+msgid "Select a character style for the ruby text."
+msgstr "Valitaan ruby-tekstin merkkityyli."
+
#. VmD7B
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:343
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:361
msgctxt "asianphoneticguidedialog|styles"
msgid "Styles"
msgstr "Tyylit"
+#. v8dzx
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:368
+msgctxt "asianphoneticguidedialog|extended_tip|styles"
+msgid "Opens the Styles deck of the Sidebar where you can select a character style for the ruby text."
+msgstr ""
+
#. Ruh4F
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:359
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:382
msgctxt "asianphoneticguidedialog|adjustlb"
msgid "Left"
msgstr "Vasen"
#. AoQvC
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:360
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:383
msgctxt "asianphoneticguidedialog|adjustlb"
msgid "Center"
msgstr "Keskelle"
#. CoQRD
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:361
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:384
msgctxt "asianphoneticguidedialog|adjustlb"
msgid "Right"
msgstr "Oikea"
#. gjvDa
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:362
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:385
msgctxt "asianphoneticguidedialog|adjustlb"
msgid "0 1 0"
msgstr "0 1 0"
#. jD75S
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:363
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:386
msgctxt "asianphoneticguidedialog|adjustlb"
msgid "1 2 1"
msgstr "1 2 1"
+#. fE2Tk
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:390
+msgctxt "asianphoneticguidedialog|extended_tip|adjustlb"
+msgid "Select the horizontal alignment for the Ruby text."
+msgstr "Valitaan vaakasuuntainen ruby-tekstin tasaus."
+
#. 68NYJ
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:376
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:404
msgctxt "asianphoneticguidedialog|positionlb"
msgid "Top"
msgstr "Yläreuna"
#. 5Ue7R
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:377
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:405
msgctxt "asianphoneticguidedialog|positionlb"
msgid "Bottom"
msgstr "Alareuna"
#. TsZ3E
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:378
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:406
msgctxt "asianphoneticguidedialog|positionlb"
msgid "Right"
msgstr "Oikealle"
+#. GmE6A
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:410
+msgctxt "asianphoneticguidedialog|extended_tip|positionlb"
+msgid "Select where you want to place the ruby text."
+msgstr "Valitaan ruby-tekstin sijoituspaikka."
+
#. BpTFn
-#: svx/uiconfig/ui/asianphoneticguidedialog.ui:401
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:434
msgctxt "asianphoneticguidedialog|label1"
msgid "Preview:"
msgstr "Esikatselu:"
+#. HG9Rn
+#: svx/uiconfig/ui/asianphoneticguidedialog.ui:494
+msgctxt "asianphoneticguidedialog|extended_tip|AsianPhoneticGuideDialog"
+msgid "Allows you to add comments next to Asian characters to serve as a pronunciation guide."
+msgstr ""
+
#. pCrNF
#: svx/uiconfig/ui/cellmenu.ui:12
msgctxt "cellmenu|copy"
@@ -12708,41 +13131,71 @@ msgid "Chinese Conversion"
msgstr "Kiinan muunnos"
#. SdvGz
-#: svx/uiconfig/ui/chineseconversiondialog.ui:109
+#: svx/uiconfig/ui/chineseconversiondialog.ui:106
msgctxt "chineseconversiondialog|tosimplified"
msgid "_Traditional Chinese to simplified Chinese"
msgstr "_Perinteinen kiina yksinkertaistetuksi kiinaksi"
+#. TF3Zx
+#: svx/uiconfig/ui/chineseconversiondialog.ui:116
+msgctxt "chineseconversiondialog|extended_tip|tosimplified"
+msgid "Converts traditional Chinese text characters to simplified Chinese text characters. Click OK to convert the selected text. If no text is selected, the whole document is converted."
+msgstr "Muunnetaan kiinan perinteiset kirjoitusmerkit yksinkertaistetuiksi kirjoitusmerkeiksi. Napsautetaan OK-painiketta valitun tekstin muuntamiseksi. Jos tekstiä ei ole valittuna, koko asiakirja muunnetaan."
+
#. aDmx8
-#: svx/uiconfig/ui/chineseconversiondialog.ui:125
+#: svx/uiconfig/ui/chineseconversiondialog.ui:127
msgctxt "chineseconversiondialog|totraditional"
msgid "_Simplified Chinese to traditional Chinese"
msgstr "_Yksinkertaistettu kiina perinteiseksi kiinaksi"
+#. WcnMD
+#: svx/uiconfig/ui/chineseconversiondialog.ui:137
+msgctxt "chineseconversiondialog|extended_tip|totraditional"
+msgid "Converts simplified Chinese text characters to traditional Chinese text characters. Click OK to convert the selected text. If no text is selected, the whole document is converted."
+msgstr "Muunnetaan kiinan yksinkertaistetut kirjoitusmerkit perinteisiksi kirjoitusmerkeiksi. Napsautetaan OK-painiketta valitun tekstin kääntämiseksi.Jos tekstiä ei ole valittuna, koko asiakirja käännetään."
+
#. dKQjR
-#: svx/uiconfig/ui/chineseconversiondialog.ui:147
+#: svx/uiconfig/ui/chineseconversiondialog.ui:154
msgctxt "chineseconversiondialog|label1"
msgid "Conversion Direction"
msgstr "Muunnossuunta"
#. RPpp4
-#: svx/uiconfig/ui/chineseconversiondialog.ui:184
+#: svx/uiconfig/ui/chineseconversiondialog.ui:191
msgctxt "chineseconversiondialog|commonterms"
msgid "Translate _common terms"
msgstr "Käännä _yhteiset termit"
+#. BhE3k
+#: svx/uiconfig/ui/chineseconversiondialog.ui:201
+msgctxt "chineseconversiondialog|extended_tip|commonterms"
+msgid "Converts words with two or more characters that are in the list of common terms. After the list is scanned, the remaining text is converted character by character."
+msgstr "Muunnetaan sanat, joissa on kaksi tai useampia yhteisiä merkkejä yhteisten termien luettelossa. Kun luettelo on käyty läpi, jäljelle jäänyt teksti käännetään merkki kerrallaan."
+
#. cEs8M
-#: svx/uiconfig/ui/chineseconversiondialog.ui:200
+#: svx/uiconfig/ui/chineseconversiondialog.ui:212
msgctxt "chineseconversiondialog|editterms"
msgid "_Edit Terms..."
msgstr "_Muokkaa termejä..."
-#. dEHH2
+#. RpF9A
#: svx/uiconfig/ui/chineseconversiondialog.ui:219
+msgctxt "chineseconversiondialog|extended_tip|editterms"
+msgid "Opens the Edit Dictionary dialog where you can edit the list of conversion terms."
+msgstr "Avataan Muokkaa sanastoa -valintaikkuna, jossa voidaan muokata muunnostermien luetteloa."
+
+#. dEHH2
+#: svx/uiconfig/ui/chineseconversiondialog.ui:236
msgctxt "chineseconversiondialog|label2"
msgid "Common Terms"
msgstr "Yhteiset termit"
+#. FAEyQ
+#: svx/uiconfig/ui/chineseconversiondialog.ui:267
+msgctxt "chineseconversiondialog|extended_tip|ChineseConversionDialog"
+msgid "Converts the selected Chinese text from one Chinese writing system to the other. If no text is selected, the entire document is converted."
+msgstr ""
+
#. AdAdK
#: svx/uiconfig/ui/chinesedictionary.ui:32
msgctxt "chinesedictionary|ChineseDictionaryDialog"
@@ -12750,143 +13203,203 @@ msgid "Edit Dictionary"
msgstr "Muokkaa sanastoa"
#. 9ETP9
-#: svx/uiconfig/ui/chinesedictionary.ui:116
+#: svx/uiconfig/ui/chinesedictionary.ui:113
msgctxt "chinesedictionary|tradtosimple"
msgid "_Traditional Chinese to simplified Chinese"
msgstr "_Perinteinen kiina yksinkertaistetuksi kiinaksi"
+#. tG23L
+#: svx/uiconfig/ui/chinesedictionary.ui:124
+msgctxt "chinesedictionary|extended_tip|tradtosimple"
+msgid "Converts traditional Chinese to simplified Chinese."
+msgstr "Muunnetaan perinteinen kiina yksinkertaistetuksi kiinankieleksi."
+
#. SqsBj
-#: svx/uiconfig/ui/chinesedictionary.ui:133
+#: svx/uiconfig/ui/chinesedictionary.ui:135
msgctxt "chinesedictionary|simpletotrad"
msgid "_Simplified Chinese to traditional Chinese"
msgstr "_Yksinkertaistettu kiina perinteiseksi kiinaksi"
+#. JddGF
+#: svx/uiconfig/ui/chinesedictionary.ui:145
+msgctxt "chinesedictionary|extended_tip|simpletotrad"
+msgid "Converts simplified Chinese to traditional Chinese."
+msgstr "Muunnetaan yksinkertaistettu kiina perinteiseksi kiinankieleksi."
+
#. YqoXf
-#: svx/uiconfig/ui/chinesedictionary.ui:149
+#: svx/uiconfig/ui/chinesedictionary.ui:156
msgctxt "chinesedictionary|reverse"
msgid "Reverse mapping"
msgstr "Käänteinen korvausosoitus"
+#. 8WbJh
+#: svx/uiconfig/ui/chinesedictionary.ui:165
+msgctxt "chinesedictionary|extended_tip|reverse"
+msgid "Automatically adds the reverse mapping direction to the list for each modification that you enter."
+msgstr "Käänteinen korvausosoitus lisäytyy luetteloon jokaiselle syötetylle muutokselle."
+
#. 4Y5b9
-#: svx/uiconfig/ui/chinesedictionary.ui:180
-#: svx/uiconfig/ui/chinesedictionary.ui:354
-#: svx/uiconfig/ui/chinesedictionary.ui:426
+#: svx/uiconfig/ui/chinesedictionary.ui:192
+#: svx/uiconfig/ui/chinesedictionary.ui:396
+#: svx/uiconfig/ui/chinesedictionary.ui:468
msgctxt "chinesedictionary|termft"
msgid "Term"
msgstr "Termi"
#. ETDYE
-#: svx/uiconfig/ui/chinesedictionary.ui:194
-#: svx/uiconfig/ui/chinesedictionary.ui:369
-#: svx/uiconfig/ui/chinesedictionary.ui:441
+#: svx/uiconfig/ui/chinesedictionary.ui:206
+#: svx/uiconfig/ui/chinesedictionary.ui:411
+#: svx/uiconfig/ui/chinesedictionary.ui:483
msgctxt "chinesedictionary|mappingft"
msgid "Mapping"
msgstr "Korvausosoitus"
+#. P3DiF
+#: svx/uiconfig/ui/chinesedictionary.ui:232
+msgctxt "chinesedictionary|extended_tip|add"
+msgid "Adds the term to the conversion dictionary. If the term is already in the dictionary, the new term receives precedence."
+msgstr "Lisätään termi muunnossanastoon. Jos termi on jo sanastossa, uusi termi saa etusijan."
+
#. XZbeq
-#: svx/uiconfig/ui/chinesedictionary.ui:227
+#: svx/uiconfig/ui/chinesedictionary.ui:244
msgctxt "chinesedictionary|modify"
msgid "_Modify"
msgstr "Muuta"
+#. ccyfm
+#: svx/uiconfig/ui/chinesedictionary.ui:251
+msgctxt "chinesedictionary|extended_tip|modify"
+msgid "Saves the modified entry to the database file."
+msgstr "Tallennetaan muutettu merkintä tietokantatiedostoon."
+
+#. FcqXr
+#: svx/uiconfig/ui/chinesedictionary.ui:270
+msgctxt "chinesedictionary|extended_tip|delete"
+msgid "Removes the selected user-defined entry from the dictionary."
+msgstr "Poistetaan valittu käyttäjän määrittämä rivi sanastosta."
+
#. cUcgH
-#: svx/uiconfig/ui/chinesedictionary.ui:264
-#: svx/uiconfig/ui/chinesedictionary.ui:383
-#: svx/uiconfig/ui/chinesedictionary.ui:455
+#: svx/uiconfig/ui/chinesedictionary.ui:291
+#: svx/uiconfig/ui/chinesedictionary.ui:425
+#: svx/uiconfig/ui/chinesedictionary.ui:497
msgctxt "chinesedictionary|propertyft"
msgid "Property"
msgstr "Ominaisuus"
#. nDmEW
-#: svx/uiconfig/ui/chinesedictionary.ui:279
+#: svx/uiconfig/ui/chinesedictionary.ui:306
msgctxt "chinesedictionary|property"
msgid "Other"
msgstr "Muu"
#. zEzUA
-#: svx/uiconfig/ui/chinesedictionary.ui:280
+#: svx/uiconfig/ui/chinesedictionary.ui:307
msgctxt "chinesedictionary|property"
msgid "Foreign"
msgstr "Vieras"
#. fG6PM
-#: svx/uiconfig/ui/chinesedictionary.ui:281
+#: svx/uiconfig/ui/chinesedictionary.ui:308
msgctxt "chinesedictionary|property"
msgid "First name"
msgstr "Etunimi"
#. HbNRg
-#: svx/uiconfig/ui/chinesedictionary.ui:282
+#: svx/uiconfig/ui/chinesedictionary.ui:309
msgctxt "chinesedictionary|property"
msgid "Last name"
msgstr "Sukunimi"
#. yKHhp
-#: svx/uiconfig/ui/chinesedictionary.ui:283
+#: svx/uiconfig/ui/chinesedictionary.ui:310
msgctxt "chinesedictionary|property"
msgid "Title"
msgstr "Otsikko"
#. RvQrD
-#: svx/uiconfig/ui/chinesedictionary.ui:284
+#: svx/uiconfig/ui/chinesedictionary.ui:311
msgctxt "chinesedictionary|property"
msgid "Status"
msgstr "Tila"
#. FAKe7
-#: svx/uiconfig/ui/chinesedictionary.ui:285
+#: svx/uiconfig/ui/chinesedictionary.ui:312
msgctxt "chinesedictionary|property"
msgid "Place name"
msgstr "Paikan nimi"
#. waJRm
-#: svx/uiconfig/ui/chinesedictionary.ui:286
+#: svx/uiconfig/ui/chinesedictionary.ui:313
msgctxt "chinesedictionary|property"
msgid "Business"
msgstr "Liiketoiminta"
#. ZiUmc
-#: svx/uiconfig/ui/chinesedictionary.ui:287
+#: svx/uiconfig/ui/chinesedictionary.ui:314
msgctxt "chinesedictionary|property"
msgid "Adjective"
msgstr "Adjektiivi"
#. VKjdE
-#: svx/uiconfig/ui/chinesedictionary.ui:288
+#: svx/uiconfig/ui/chinesedictionary.ui:315
msgctxt "chinesedictionary|property"
msgid "Idiom"
msgstr "Idiomi"
#. dB4SG
-#: svx/uiconfig/ui/chinesedictionary.ui:289
+#: svx/uiconfig/ui/chinesedictionary.ui:316
msgctxt "chinesedictionary|property"
msgid "Abbreviation"
msgstr "Lyhenne"
#. sBYxF
-#: svx/uiconfig/ui/chinesedictionary.ui:290
+#: svx/uiconfig/ui/chinesedictionary.ui:317
msgctxt "chinesedictionary|property"
msgid "Numerical"
msgstr "Numeerinen"
#. rWJge
-#: svx/uiconfig/ui/chinesedictionary.ui:291
+#: svx/uiconfig/ui/chinesedictionary.ui:318
msgctxt "chinesedictionary|property"
msgid "Noun"
msgstr "Substantiivi"
#. kXcwC
-#: svx/uiconfig/ui/chinesedictionary.ui:292
+#: svx/uiconfig/ui/chinesedictionary.ui:319
msgctxt "chinesedictionary|property"
msgid "Verb"
msgstr "Verbi"
#. YSxrd
-#: svx/uiconfig/ui/chinesedictionary.ui:293
+#: svx/uiconfig/ui/chinesedictionary.ui:320
msgctxt "chinesedictionary|property"
msgid "Brand name"
msgstr "Kauppamerkki"
+#. CsQsq
+#: svx/uiconfig/ui/chinesedictionary.ui:324
+msgctxt "chinesedictionary|extended_tip|property"
+msgid "Defines the class of the selected term."
+msgstr "Määritetään valitun termin luokka."
+
+#. GvFwf
+#: svx/uiconfig/ui/chinesedictionary.ui:341
+msgctxt "chinesedictionary|extended_tip|mapping"
+msgid "Enter the text that you want to replace the Term with."
+msgstr "Annetaan teksti, jolla termi korvataan."
+
+#. SBYjj
+#: svx/uiconfig/ui/chinesedictionary.ui:358
+msgctxt "chinesedictionary|extended_tip|term"
+msgid "Enter the text that you want to replace with the Mapping term."
+msgstr "Syötetään teksti, joka korvataan Korvausosoitus-termillä."
+
+#. 3qHaK
+#: svx/uiconfig/ui/chinesedictionary.ui:551
+msgctxt "chinesedictionary|extended_tip|ChineseDictionaryDialog"
+msgid "Edit the Chinese conversion terms."
+msgstr "Muokataan kiinan muunnoksen termejä."
+
#. TZEqZ
#: svx/uiconfig/ui/classificationdialog.ui:37
msgctxt "classificationdialog|dialogname"
@@ -13386,49 +13899,49 @@ msgid "Tim_e Field"
msgstr "Aikakenttä"
#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:120
+#: svx/uiconfig/ui/convertmenu.ui:121
msgctxt "convertmenu|ConvertToNumeric"
msgid "_Numerical Field"
msgstr "Numeerinen kenttä"
#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:128
+#: svx/uiconfig/ui/convertmenu.ui:130
msgctxt "convertmenu|ConvertToCurrency"
msgid "C_urrency Field"
msgstr "Valuuttakenttä"
#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:137
+#: svx/uiconfig/ui/convertmenu.ui:139
msgctxt "convertmenu|ConvertToPattern"
msgid "_Pattern Field"
msgstr "Rajoitettu kenttä"
#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:146
+#: svx/uiconfig/ui/convertmenu.ui:148
msgctxt "convertmenu|ConvertToImageControl"
msgid "Ima_ge Control"
msgstr "Kuvan ohjausobjekti"
#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:155
+#: svx/uiconfig/ui/convertmenu.ui:157
msgctxt "convertmenu|ConvertToFormatted"
msgid "Fo_rmatted Field"
msgstr "Muotoiltu kenttä"
#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:164
+#: svx/uiconfig/ui/convertmenu.ui:166
msgctxt "convertmenu|ConvertToScrollBar"
msgid "Scroll bar"
msgstr "Vierityspalkki"
#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:173
+#: svx/uiconfig/ui/convertmenu.ui:175
msgctxt "convertmenu|ConvertToSpinButton"
msgid "Spin Button"
msgstr "Askelluspainike"
#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:182
+#: svx/uiconfig/ui/convertmenu.ui:184
msgctxt "convertmenu|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Siirtymistyökalurivi"
@@ -13499,78 +14012,144 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr "Käynnistä %PRODUCTNAME uudelleen vikasietotilaan siirtymiseksi"
-#. BAMs9
-#: svx/uiconfig/ui/datanavigator.ui:37
-msgctxt "datanavigator|modelsbutton"
-msgid "_Models"
-msgstr "Mallit"
-
-#. BF3zW
-#: svx/uiconfig/ui/datanavigator.ui:77
-msgctxt "datanavigator|instance"
-msgid "Instance"
-msgstr "Instanssi"
-
-#. 3Yg5b
-#: svx/uiconfig/ui/datanavigator.ui:99
-msgctxt "datanavigator|submissions"
-msgid "Submissions"
-msgstr "Lähetykset"
-
-#. hHddS
-#: svx/uiconfig/ui/datanavigator.ui:122
-msgctxt "datanavigator|bindings"
-msgid "Bindings"
-msgstr "Sidokset"
-
-#. KaGD7
-#: svx/uiconfig/ui/datanavigator.ui:138
-msgctxt "datanavigator|instances"
-msgid "_Instances"
-msgstr "Instanssit"
-
#. gsFSM
-#: svx/uiconfig/ui/datanavigator.ui:166
+#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
msgid "_Add..."
msgstr "Lisää..."
+#. MFX47
+#: svx/uiconfig/ui/datanavigator.ui:16
+msgctxt "datanavigator|extended_tip|instancesadd"
+msgid "Opens a dialog where you can add a new instance."
+msgstr "Avataan valintaikkuna, jossa voidaan lisätä uusi instanssi."
+
#. BdRnW
-#: svx/uiconfig/ui/datanavigator.ui:173
+#: svx/uiconfig/ui/datanavigator.ui:25
msgctxt "datanavigator|instancesedit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. cJYQx
+#: svx/uiconfig/ui/datanavigator.ui:29
+msgctxt "datanavigator|extended_tip|instancesedit"
+msgid "Opens a dialog where you can modify the current instance."
+msgstr "Avataan valintaikkuna, jossa voidaan muokata nykyistä instanssia."
+
#. GJFJh
-#: svx/uiconfig/ui/datanavigator.ui:180
+#: svx/uiconfig/ui/datanavigator.ui:38
msgctxt "datanavigator|instancesremove"
msgid "_Remove..."
msgstr "Poista..."
+#. tGyCY
+#: svx/uiconfig/ui/datanavigator.ui:42
+msgctxt "datanavigator|extended_tip|instancesremove"
+msgid "Deletes the current instance. You cannot delete the last instance."
+msgstr "Poistetaan käsiteltävä instanssi. Viimeistä instanssia ei voi poistaa."
+
#. YM7Tk
-#: svx/uiconfig/ui/datanavigator.ui:193
+#: svx/uiconfig/ui/datanavigator.ui:57
msgctxt "datanavigator|instancesdetails"
msgid "_Show Details"
msgstr "Näytä tiedot"
+#. W459x
+#: svx/uiconfig/ui/datanavigator.ui:61
+msgctxt "datanavigator|extended_tip|instancesdetails"
+msgid "Switches the display to show or hide details."
+msgstr "Vuorotellaan yksityiskohtien esittämistä ja piilottamista näytöllä."
+
#. rMqsT
-#: svx/uiconfig/ui/datanavigator.ui:205
+#: svx/uiconfig/ui/datanavigator.ui:74
msgctxt "datanavigator|modelsadd"
msgid "_Add..."
msgstr "Lisää..."
+#. QMNcJ
+#: svx/uiconfig/ui/datanavigator.ui:78
+msgctxt "datanavigator|extended_tip|modelsadd"
+msgid "Opens the Add Model dialog where you can add an XForm model."
+msgstr "Avataan Lisää malli -valintaikkuna, jossa voidaan lisätä XForm-malli."
+
#. m8vxV
-#: svx/uiconfig/ui/datanavigator.ui:213
+#: svx/uiconfig/ui/datanavigator.ui:87
msgctxt "datanavigator|modelsedit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. kPjSf
+#: svx/uiconfig/ui/datanavigator.ui:91
+msgctxt "datanavigator|extended_tip|modelsedit"
+msgid "Renames the selected Xform model."
+msgstr "Nimetään uudelleen valittu Xform-malli."
+
#. VqB4m
-#: svx/uiconfig/ui/datanavigator.ui:221
+#: svx/uiconfig/ui/datanavigator.ui:100
msgctxt "datanavigator|modelsremove"
msgid "_Remove"
msgstr "Poista"
+#. RWG4G
+#: svx/uiconfig/ui/datanavigator.ui:104
+msgctxt "datanavigator|extended_tip|modelsremove"
+msgid "Deletes the selected XForm model. You cannot delete the last model."
+msgstr "Poistetaan valittu XForm-malli. Viimeistä mallia ei voi poistaa."
+
+#. nDrEE
+#: svx/uiconfig/ui/datanavigator.ui:136
+msgctxt "datanavigator|extended_tip|modelslist"
+msgid "Selects the XForms model that you want to use."
+msgstr "Valitaan käytettävä XForms-malli."
+
+#. BAMs9
+#: svx/uiconfig/ui/datanavigator.ui:147
+msgctxt "datanavigator|modelsbutton"
+msgid "_Models"
+msgstr "Mallit"
+
+#. VnGCB
+#: svx/uiconfig/ui/datanavigator.ui:161
+msgctxt "datanavigator|extended_tip|modelsbutton"
+msgid "Adds, renames, and removes XForms models."
+msgstr "Lisätään, nimetään uudestaan ja poistetaan XForms-malleja."
+
+#. BF3zW
+#: svx/uiconfig/ui/datanavigator.ui:222
+msgctxt "datanavigator|instance"
+msgid "Instance"
+msgstr "Instanssi"
+
+#. 3Yg5b
+#: svx/uiconfig/ui/datanavigator.ui:268
+msgctxt "datanavigator|submissions"
+msgid "Submissions"
+msgstr "Lähetykset"
+
+#. hHddS
+#: svx/uiconfig/ui/datanavigator.ui:315
+msgctxt "datanavigator|bindings"
+msgid "Bindings"
+msgstr "Sidokset"
+
+#. KaGD7
+#: svx/uiconfig/ui/datanavigator.ui:331
+msgctxt "datanavigator|instances"
+msgid "_Instances"
+msgstr "Instanssit"
+
+#. VtqeQ
+#: svx/uiconfig/ui/datanavigator.ui:345
+msgctxt "datanavigator|extended_tip|instances"
+msgid "This button has submenus to add, edit or remove instances."
+msgstr "Painikkeella on alavalikko instanssien lisäämiseen, muokkaamiseen tai poistamiseen."
+
+#. f7Awc
+#: svx/uiconfig/ui/datanavigator.ui:364
+msgctxt "datanavigator|extended_tip|DataNavigator"
+msgid "Specifies the data structure of the current XForms document."
+msgstr "Määritetään käsiteltävän XForms-asiakirjan tietorakenne."
+
#. 2xX4C
#: svx/uiconfig/ui/defaultshapespanel.ui:48
msgctxt "defaultshapespanel|label1"
@@ -13692,569 +14271,893 @@ msgid "P_arallel"
msgstr ""
#. nEw4G
-#: svx/uiconfig/ui/docking3deffects.ui:294
+#: svx/uiconfig/ui/docking3deffects.ui:293
msgctxt "docking3deffects|diagonalft"
msgid "R_ounded edges"
msgstr "Pyöristetyt särmät"
#. MozLP
-#: svx/uiconfig/ui/docking3deffects.ui:308
+#: svx/uiconfig/ui/docking3deffects.ui:307
msgctxt "docking3deffects|scaleddepthft"
msgid "_Scaled depth"
msgstr "Skaalattu syvyys"
#. uK3Fv
-#: svx/uiconfig/ui/docking3deffects.ui:322
+#: svx/uiconfig/ui/docking3deffects.ui:321
msgctxt "docking3deffects|angleft"
msgid "_Rotation angle"
msgstr "Kiertokulma"
#. 2YAH9
-#: svx/uiconfig/ui/docking3deffects.ui:336
+#: svx/uiconfig/ui/docking3deffects.ui:335
msgctxt "docking3deffects|depthft"
msgid "_Depth"
msgstr "Syvyys"
+#. Mk8WM
+#: svx/uiconfig/ui/docking3deffects.ui:352
+msgctxt "docking3deffects|extended_tip|diagonal"
+msgid "Enter the amount by which you want to round the corners of the selected 3D object."
+msgstr "Annetaan määrä, jolla 3D-virtuaalikappaleen kulmia pyöristetään."
+
+#. W4Agm
+#: svx/uiconfig/ui/docking3deffects.ui:369
+msgctxt "docking3deffects|extended_tip|scaleddepth"
+msgid "Enter the amount by which to increase or decrease the area of the front side of the selected 3D object."
+msgstr "Annetaan osuus, jolla lisätään tai vähennetään valitun 3D-objektin etusivun pinta-alaa."
+
+#. zHDZb
+#: svx/uiconfig/ui/docking3deffects.ui:387
+msgctxt "docking3deffects|extended_tip|angle"
+msgid "Enter the angle in degrees to rotate the selected 3D rotation object."
+msgstr "Annetaan valitun 3D-pyörähdysobjektin kiertokulma asteissa."
+
+#. 8x6QY
+#: svx/uiconfig/ui/docking3deffects.ui:405
+msgctxt "docking3deffects|extended_tip|depth"
+msgid "Enter the extrusion depth for the selected 3D object. This option is not valid for 3D rotation objects."
+msgstr "Annetaan valitun virtuaalikappaleen pursotussyvyys. Asetusta ei käytetä 3D-pyörähdyskappaleille."
+
#. LKo3e
-#: svx/uiconfig/ui/docking3deffects.ui:403
+#: svx/uiconfig/ui/docking3deffects.ui:422
msgctxt "docking3deffects|label1"
msgid "Geometry"
msgstr "Geometria"
#. b7NAE
-#: svx/uiconfig/ui/docking3deffects.ui:444
+#: svx/uiconfig/ui/docking3deffects.ui:463
msgctxt "docking3deffects|label6"
msgid "_Horizontal"
msgstr "Vaakasuunnassa"
+#. zDoUt
+#: svx/uiconfig/ui/docking3deffects.ui:481
+msgctxt "docking3deffects|extended_tip|hori"
+msgid "Enter the number of horizontal segments to use in the selected 3D rotation object."
+msgstr "Annetaan valitun 3D-pyörähdyskappaleen piirtämiseen käytettävien segmenttien lukumäärä vaakasuunnassa."
+
#. 9HFzC
-#: svx/uiconfig/ui/docking3deffects.ui:483
+#: svx/uiconfig/ui/docking3deffects.ui:507
msgctxt "docking3deffects|label7"
msgid "_Vertical"
msgstr "Pystysuunnassa"
+#. eECGL
+#: svx/uiconfig/ui/docking3deffects.ui:525
+msgctxt "docking3deffects|extended_tip|veri"
+msgid "Enter the number of vertical segments to use in the selected 3D rotation object"
+msgstr "Annetaan valitun 3D-pyörähdyskappaleen piirtämiseen käytettävien pystysegmenttien lukumäärä"
+
#. G67Pd
-#: svx/uiconfig/ui/docking3deffects.ui:519
+#: svx/uiconfig/ui/docking3deffects.ui:548
msgctxt "docking3deffects|label10"
msgid "Segments"
msgstr "Tahkoja"
#. uGbYJ
-#: svx/uiconfig/ui/docking3deffects.ui:571
+#: svx/uiconfig/ui/docking3deffects.ui:600
msgctxt "docking3deffects|objspecific|tooltip_text"
msgid "Object-Specific"
msgstr "Objektikohtainen"
+#. 6Eqby
+#: svx/uiconfig/ui/docking3deffects.ui:605
+msgctxt "docking3deffects|extended_tip|objspecific"
+msgid "Renders the 3D surface according to the shape of the object. For example, a circular shape is rendered with a spherical surface."
+msgstr "Hahmonnetaan 3D-pinnan objektin muodon mukaisesti. Esimerkiksi pyöreät muodot hahmonnetaan pallopinnoilla."
+
#. Fc9DB
-#: svx/uiconfig/ui/docking3deffects.ui:585
+#: svx/uiconfig/ui/docking3deffects.ui:619
msgctxt "docking3deffects|flat|tooltip_text"
msgid "Flat"
msgstr "Litteä"
+#. MgFbn
+#: svx/uiconfig/ui/docking3deffects.ui:624
+msgctxt "docking3deffects|extended_tip|flat"
+msgid "Renders the 3D surface as polygons."
+msgstr "Hahmonnetaan 3D-pinta monikulmioina."
+
#. aLmTz
-#: svx/uiconfig/ui/docking3deffects.ui:599
+#: svx/uiconfig/ui/docking3deffects.ui:638
msgctxt "docking3deffects|spherical|tooltip_text"
msgid "Spherical"
msgstr "Pallomainen"
+#. Ant38
+#: svx/uiconfig/ui/docking3deffects.ui:643
+msgctxt "docking3deffects|extended_tip|spherical"
+msgid "Renders a smooth 3D surface."
+msgstr "Hahmonnetaan kaareva 3D-pinta."
+
#. a9hYr
-#: svx/uiconfig/ui/docking3deffects.ui:613
+#: svx/uiconfig/ui/docking3deffects.ui:657
msgctxt "docking3deffects|invertnormals|tooltip_text"
msgid "Invert Normals"
msgstr "Käännä normaalit"
+#. mbsm2
+#: svx/uiconfig/ui/docking3deffects.ui:662
+msgctxt "docking3deffects|extended_tip|invertnormals"
+msgid "Inverts the light source."
+msgstr ""
+
#. kBScz
-#: svx/uiconfig/ui/docking3deffects.ui:627
+#: svx/uiconfig/ui/docking3deffects.ui:676
msgctxt "docking3deffects|doublesidedillum|tooltip_text"
msgid "Double-Sided Illumination"
msgstr "Kaksipuolinen valaistus"
+#. Du7J2
+#: svx/uiconfig/ui/docking3deffects.ui:681
+msgctxt "docking3deffects|extended_tip|doublesidedillum"
+msgid "Lights the object from the outside and the inside. To use an ambient light source, click this button, and then click the Invert Normals button."
+msgstr "Objektia valaistaan sekä ulko- että sisäpuolelta. Taustavalon käyttämiseksi, napsautetaan tätä painiketta ja sitten Käännä normaalit -painiketta."
+
#. Jq33F
-#: svx/uiconfig/ui/docking3deffects.ui:641
+#: svx/uiconfig/ui/docking3deffects.ui:695
msgctxt "docking3deffects|doublesided|tooltip_text"
msgid "Double-Sided"
msgstr "Kaksipuolinen"
+#. KhQUE
+#: svx/uiconfig/ui/docking3deffects.ui:700
+msgctxt "docking3deffects|extended_tip|doublesided"
+msgid "Closes the shape of a 3D object that was created by extruding a freeform line (Convert - To 3D)."
+msgstr "Suljetaan sellaisen 3D- eli virtuaalikappaleen muoto, joka on luotu pursottamalla vapaamuotoinen viiva (Muunna - Pursota 3D-kappaleeksi)."
+
#. 2xzfy
-#: svx/uiconfig/ui/docking3deffects.ui:667
+#: svx/uiconfig/ui/docking3deffects.ui:726
msgctxt "docking3deffects|label11"
msgid "Normals"
msgstr "Normaalit"
#. XjqvC
-#: svx/uiconfig/ui/docking3deffects.ui:699
+#: svx/uiconfig/ui/docking3deffects.ui:758
msgctxt "docking3deffects|to3d|tooltip_text"
msgid "Convert to 3D"
msgstr "Muunna kolmiulotteiseksi"
+#. jGHSC
+#: svx/uiconfig/ui/docking3deffects.ui:762
+msgctxt "docking3deffects|extended_tip|to3d"
+msgid "Use this icon to convert a selected 2D object to a 3D object."
+msgstr ""
+
#. v5fdY
-#: svx/uiconfig/ui/docking3deffects.ui:712
+#: svx/uiconfig/ui/docking3deffects.ui:776
msgctxt "docking3deffects|tolathe|tooltip_text"
msgid "Convert to Rotation Object"
msgstr "Muunna pyörähdyskappaleeksi"
+#. 3tj7D
+#: svx/uiconfig/ui/docking3deffects.ui:780
+msgctxt "docking3deffects|extended_tip|tolathe"
+msgid "Click here to convert a selected 2D object to a 3D rotation object."
+msgstr ""
+
#. Tk7Vb
-#: svx/uiconfig/ui/docking3deffects.ui:725
+#: svx/uiconfig/ui/docking3deffects.ui:794
msgctxt "docking3deffects|perspective|tooltip_text"
msgid "Perspective On/Off"
msgstr "Perspektiivi päälle/pois"
#. S27FV
-#: svx/uiconfig/ui/docking3deffects.ui:765
+#: svx/uiconfig/ui/docking3deffects.ui:834
msgctxt "docking3deffects|preview-atkobject"
msgid "3D Preview"
msgstr "3D-esikatselu"
#. snUGf
-#: svx/uiconfig/ui/docking3deffects.ui:797
+#: svx/uiconfig/ui/docking3deffects.ui:866
msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
msgid "Light Preview"
msgstr "Valaistuksen esikatselu"
#. c86Xg
-#: svx/uiconfig/ui/docking3deffects.ui:802
+#: svx/uiconfig/ui/docking3deffects.ui:871
msgctxt "docking3deffects|lightpreview-atkobject"
msgid "Color Light Preview"
msgstr "Värivalaistuksen esikatselu"
#. ysdwL
-#: svx/uiconfig/ui/docking3deffects.ui:893
+#: svx/uiconfig/ui/docking3deffects.ui:962
msgctxt "docking3deffects|label8"
msgid "_Mode"
msgstr "Tila"
#. BW2hR
-#: svx/uiconfig/ui/docking3deffects.ui:908
+#: svx/uiconfig/ui/docking3deffects.ui:977
msgctxt "docking3deffects|mode"
msgid "Flat"
msgstr "Tasainen"
#. 6Esbf
-#: svx/uiconfig/ui/docking3deffects.ui:909
+#: svx/uiconfig/ui/docking3deffects.ui:978
msgctxt "docking3deffects|mode"
msgid "Phong"
msgstr "Phong"
#. D6L7i
-#: svx/uiconfig/ui/docking3deffects.ui:910
+#: svx/uiconfig/ui/docking3deffects.ui:979
msgctxt "docking3deffects|mode"
msgid "Gouraud"
msgstr "Gouraud"
+#. oq9Aj
+#: svx/uiconfig/ui/docking3deffects.ui:983
+msgctxt "docking3deffects|extended_tip|mode"
+msgid "Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power."
+msgstr "Valitaan käytettävä varjostusmenetelmä. Litteä varjostus käyttää yhtä väriä yhdelle pinnan monikulmio-osalle. Gouraud-varjostus interpoloi monikulmion väriseokset kärkipisteistä laskien. Phong-varjostus interpoloi väriseoksen kuvapisteittäin normaaleista laskien ja on eniten laskentatehoa vaativa."
+
#. fEdS2
-#: svx/uiconfig/ui/docking3deffects.ui:926
+#: svx/uiconfig/ui/docking3deffects.ui:1000
msgctxt "docking3deffects|label12"
msgid "Shading"
msgstr "Varjostus"
#. sT4FD
-#: svx/uiconfig/ui/docking3deffects.ui:962
+#: svx/uiconfig/ui/docking3deffects.ui:1036
msgctxt "docking3deffects|slantft"
msgid "S_urface angle"
msgstr "Pintakulma"
+#. QiGD2
+#: svx/uiconfig/ui/docking3deffects.ui:1053
+msgctxt "docking3deffects|extended_tip|slant"
+msgid "Enter an angle from 0 to 90 degrees for casting the shadow."
+msgstr "Annetaan 0 ... 90 asteen kulma varjon lankeamispinnalle."
+
#. 4yMr6
-#: svx/uiconfig/ui/docking3deffects.ui:988
+#: svx/uiconfig/ui/docking3deffects.ui:1067
msgctxt "docking3deffects|shadow|tooltip_text"
msgid "3D Shadowing On/Off"
msgstr "Kolmiulotteinen varjostus päälle/pois"
+#. uPZTo
+#: svx/uiconfig/ui/docking3deffects.ui:1071
+msgctxt "docking3deffects|extended_tip|shadow"
+msgid "Adds or removes a shadow from the selected 3D object."
+msgstr "Lisätään tai poistetaan valitun 3D-kappaleen varjo."
+
#. kczsC
-#: svx/uiconfig/ui/docking3deffects.ui:1004
+#: svx/uiconfig/ui/docking3deffects.ui:1088
msgctxt "docking3deffects|label13"
msgid "Shadow"
msgstr "Varjo"
+#. 84Xfy
+#: svx/uiconfig/ui/docking3deffects.ui:1127
+msgctxt "docking3deffects|extended_tip|focal"
+msgid "Enter the focal length of the camera, where a small value corresponds to a \"fisheye\" lens, and a large value to a telephoto lens."
+msgstr "Annetaan kameran polttoväli. Tässä pienet arvot vastaavat \"kalansilmä\"-objektiivia ja suuret arvot teleobjektiivia."
+
+#. QDWn9
+#: svx/uiconfig/ui/docking3deffects.ui:1144
+msgctxt "docking3deffects|extended_tip|distance"
+msgid "Enter the distance to leave between the camera and the center of the selected object."
+msgstr "Annetaan etäisyys, joka jää kameran ja valitun kappaleen keskikohdan väliin."
+
#. MHwmD
-#: svx/uiconfig/ui/docking3deffects.ui:1063
+#: svx/uiconfig/ui/docking3deffects.ui:1157
msgctxt "docking3deffects|label15"
msgid "_Focal length"
msgstr "Polttoväli"
#. sqNyn
-#: svx/uiconfig/ui/docking3deffects.ui:1077
+#: svx/uiconfig/ui/docking3deffects.ui:1171
msgctxt "docking3deffects|label14"
msgid "_Distance"
msgstr "Etäisyys"
#. xVYME
-#: svx/uiconfig/ui/docking3deffects.ui:1095
+#: svx/uiconfig/ui/docking3deffects.ui:1189
msgctxt "docking3deffects|label16"
msgid "Camera"
msgstr "Kamera"
#. GDAcC
-#: svx/uiconfig/ui/docking3deffects.ui:1129
+#: svx/uiconfig/ui/docking3deffects.ui:1223
msgctxt "docking3deffects|label17"
msgid "_Light source"
msgstr "Valonlähde"
#. DNnED
-#: svx/uiconfig/ui/docking3deffects.ui:1154
+#: svx/uiconfig/ui/docking3deffects.ui:1248
msgctxt "docking3deffects|colorbutton1|tooltip_text"
msgid "Colors Dialog"
msgstr "Värien valintaikkuna"
+#. fbmBv
+#: svx/uiconfig/ui/docking3deffects.ui:1253
+msgctxt "docking3deffects|extended_tip|colorbutton1"
+msgid "Select a color for the ambient light."
+msgstr "Valitaan taustavalon väri luettelosta."
+
+#. yWUfc
+#: svx/uiconfig/ui/docking3deffects.ui:1277
+msgctxt "docking3deffects|extended_tip|ambientcolor"
+msgid "Select a color for the ambient light."
+msgstr "Valitaan taustavalon väri luettelosta."
+
#. nSELF
-#: svx/uiconfig/ui/docking3deffects.ui:1186
+#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|colorbutton2|tooltip_text"
msgid "Colors Dialog"
msgstr "Värien valintaikkuna"
#. m2KFe
-#: svx/uiconfig/ui/docking3deffects.ui:1199
+#: svx/uiconfig/ui/docking3deffects.ui:1304
msgctxt "docking3deffects|label18"
msgid "_Ambient light"
msgstr "Taustavalo"
#. m9fpD
-#: svx/uiconfig/ui/docking3deffects.ui:1220
+#: svx/uiconfig/ui/docking3deffects.ui:1325
msgctxt "docking3deffects|light1|tooltip_text"
msgid "Light Source 1"
msgstr "Valonlähde 1"
+#. 9QFz2
+#: svx/uiconfig/ui/docking3deffects.ui:1332
+msgctxt "docking3deffects|extended_tip|light1"
+msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
+msgstr "Napsautetaan kahdesti valon sytyttämiseksi ja valitaan sitten valon väri luettelosta. Tarvittaessa voidaan myös ympäristön valon väriä säätää valitsemalla väri Taustavalo-ruudusta."
+
#. 6VQpA
-#: svx/uiconfig/ui/docking3deffects.ui:1236
+#: svx/uiconfig/ui/docking3deffects.ui:1346
msgctxt "docking3deffects|light2|tooltip_text"
msgid "Light Source 2"
msgstr "Valonlähde 2"
+#. jwgPB
+#: svx/uiconfig/ui/docking3deffects.ui:1353
+msgctxt "docking3deffects|extended_tip|light2"
+msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
+msgstr "Napsautetaan kahdesti valon sytyttämiseksi ja valitaan sitten valon väri luettelosta. Tarvittaessa voidaan myös ympäristön valon väriä säätää valitsemalla väri Taustavalo-ruudusta."
+
#. H6ApW
-#: svx/uiconfig/ui/docking3deffects.ui:1252
+#: svx/uiconfig/ui/docking3deffects.ui:1367
msgctxt "docking3deffects|light3|tooltip_text"
msgid "Light Source 3"
msgstr "Valonlähde 3"
+#. sCqw6
+#: svx/uiconfig/ui/docking3deffects.ui:1374
+msgctxt "docking3deffects|extended_tip|light3"
+msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
+msgstr "Napsautetaan kahdesti valon sytyttämiseksi ja valitaan sitten valon väri luettelosta. Tarvittaessa voidaan myös ympäristön valon väriä säätää valitsemalla väri Taustavalo-ruudusta."
+
#. bFsp9
-#: svx/uiconfig/ui/docking3deffects.ui:1268
+#: svx/uiconfig/ui/docking3deffects.ui:1388
msgctxt "docking3deffects|light4|tooltip_text"
msgid "Light Source 4"
msgstr "Valonlähde 4"
+#. Vus8w
+#: svx/uiconfig/ui/docking3deffects.ui:1395
+msgctxt "docking3deffects|extended_tip|light4"
+msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
+msgstr "Napsautetaan kahdesti valon sytyttämiseksi ja valitaan sitten valon väri luettelosta. Tarvittaessa voidaan myös ympäristön valon väriä säätää valitsemalla väri Taustavalo-ruudusta."
+
#. umqpv
-#: svx/uiconfig/ui/docking3deffects.ui:1284
+#: svx/uiconfig/ui/docking3deffects.ui:1409
msgctxt "docking3deffects|light5|tooltip_text"
msgid "Light Source 5"
msgstr "Valonlähde 5"
+#. dESZk
+#: svx/uiconfig/ui/docking3deffects.ui:1416
+msgctxt "docking3deffects|extended_tip|light5"
+msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
+msgstr "Napsautetaan kahdesti valon sytyttämiseksi ja valitaan sitten valon väri luettelosta. Tarvittaessa voidaan myös ympäristön valon väriä säätää valitsemalla väri Taustavalo-ruudusta."
+
#. EJ5pS
-#: svx/uiconfig/ui/docking3deffects.ui:1300
+#: svx/uiconfig/ui/docking3deffects.ui:1430
msgctxt "docking3deffects|light6|tooltip_text"
msgid "Light Source 6"
msgstr "Valonlähde 6"
+#. CgMts
+#: svx/uiconfig/ui/docking3deffects.ui:1437
+msgctxt "docking3deffects|extended_tip|light6"
+msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
+msgstr "Napsautetaan kahdesti valon sytyttämiseksi ja valitaan sitten valon väri luettelosta. Tarvittaessa voidaan myös ympäristön valon väriä säätää valitsemalla väri Taustavalo-ruudusta."
+
#. RxBpE
-#: svx/uiconfig/ui/docking3deffects.ui:1316
+#: svx/uiconfig/ui/docking3deffects.ui:1451
msgctxt "docking3deffects|light7|tooltip_text"
msgid "Light Source 7"
msgstr "Valonlähde 7"
+#. LJ3Lp
+#: svx/uiconfig/ui/docking3deffects.ui:1458
+msgctxt "docking3deffects|extended_tip|light7"
+msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
+msgstr "Napsautetaan kahdesti valon sytyttämiseksi ja valitaan sitten valon väri luettelosta. Tarvittaessa voidaan myös ympäristön valon väriä säätää valitsemalla väri Taustavalo-ruudusta."
+
#. BrqqJ
-#: svx/uiconfig/ui/docking3deffects.ui:1332
+#: svx/uiconfig/ui/docking3deffects.ui:1472
msgctxt "docking3deffects|light8|tooltip_text"
msgid "Light Source 8"
msgstr "Valonlähde 8"
+#. 7GZgb
+#: svx/uiconfig/ui/docking3deffects.ui:1479
+msgctxt "docking3deffects|extended_tip|light8"
+msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box."
+msgstr "Napsautetaan kahdesti valon sytyttämiseksi ja valitaan sitten valon väri luettelosta. Tarvittaessa voidaan myös ympäristön valon väriä säätää valitsemalla väri Taustavalo-ruudusta."
+
#. FN3e6
-#: svx/uiconfig/ui/docking3deffects.ui:1363
+#: svx/uiconfig/ui/docking3deffects.ui:1504
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
msgstr "Valon 1 väri"
+#. djVxQ
+#: svx/uiconfig/ui/docking3deffects.ui:1515
+msgctxt "docking3deffects|extended_tip|lightcolor1"
+msgid "Select a color for the current light source."
+msgstr "Valitaan käsiteltävän valonlähteen väri."
+
#. EBVTG
-#: svx/uiconfig/ui/docking3deffects.ui:1383
+#: svx/uiconfig/ui/docking3deffects.ui:1529
msgctxt "docking3deffects|lightcolor2|tooltip_text"
msgid "Light 2 color"
msgstr "Valon 2 väri"
#. wiDjj
-#: svx/uiconfig/ui/docking3deffects.ui:1403
+#: svx/uiconfig/ui/docking3deffects.ui:1549
msgctxt "docking3deffects|lightcolor3|tooltip_text"
msgid "Light 3 color"
msgstr "Valon 3 väri"
#. zZSLi
-#: svx/uiconfig/ui/docking3deffects.ui:1423
+#: svx/uiconfig/ui/docking3deffects.ui:1569
msgctxt "docking3deffects|lightcolor4|tooltip_text"
msgid "Light 4 color"
msgstr "Valon 4 väri"
#. bPGBH
-#: svx/uiconfig/ui/docking3deffects.ui:1443
+#: svx/uiconfig/ui/docking3deffects.ui:1589
msgctxt "docking3deffects|lightcolor5|tooltip_text"
msgid "Light 5 color"
msgstr "Valon 5 väri"
#. mCg85
-#: svx/uiconfig/ui/docking3deffects.ui:1463
+#: svx/uiconfig/ui/docking3deffects.ui:1609
msgctxt "docking3deffects|lightcolor6|tooltip_text"
msgid "Light 6 color"
msgstr "Valon 6 väri"
#. Lj2HV
-#: svx/uiconfig/ui/docking3deffects.ui:1483
+#: svx/uiconfig/ui/docking3deffects.ui:1629
msgctxt "docking3deffects|lightcolor7|tooltip_text"
msgid "Light 7 color"
msgstr "Valon 7 väri"
#. aNZDv
-#: svx/uiconfig/ui/docking3deffects.ui:1503
+#: svx/uiconfig/ui/docking3deffects.ui:1649
msgctxt "docking3deffects|lightcolor8|tooltip_text"
msgid "Light 8 color"
msgstr "Valon 8 väri"
#. HqaQ2
-#: svx/uiconfig/ui/docking3deffects.ui:1528
+#: svx/uiconfig/ui/docking3deffects.ui:1679
msgctxt "docking3deffects|label19"
msgid "Illumination"
msgstr "Valaistus"
#. BrBDG
-#: svx/uiconfig/ui/docking3deffects.ui:1562
+#: svx/uiconfig/ui/docking3deffects.ui:1713
msgctxt "docking3deffects|label20"
msgid "_Type"
msgstr "Tyyppi"
#. txLj4
-#: svx/uiconfig/ui/docking3deffects.ui:1579
+#: svx/uiconfig/ui/docking3deffects.ui:1730
msgctxt "docking3deffects|label22"
msgid "_Mode"
msgstr "Tila"
#. pPQLp
-#: svx/uiconfig/ui/docking3deffects.ui:1597
+#: svx/uiconfig/ui/docking3deffects.ui:1748
msgctxt "docking3deffects|label23"
msgid "_Projection X"
msgstr "X-projektio"
#. xcs3h
-#: svx/uiconfig/ui/docking3deffects.ui:1615
+#: svx/uiconfig/ui/docking3deffects.ui:1766
msgctxt "docking3deffects|label24"
msgid "P_rojection Y"
msgstr "Y-projektio"
#. bxSBA
-#: svx/uiconfig/ui/docking3deffects.ui:1633
+#: svx/uiconfig/ui/docking3deffects.ui:1784
msgctxt "docking3deffects|label25"
msgid "_Filtering"
msgstr "Suodatus"
#. Gq2zg
-#: svx/uiconfig/ui/docking3deffects.ui:1650
+#: svx/uiconfig/ui/docking3deffects.ui:1801
msgctxt "docking3deffects|textype|tooltip_text"
msgid "Black & White"
msgstr "Mustavalkoinen"
+#. S5ACF
+#: svx/uiconfig/ui/docking3deffects.ui:1809
+msgctxt "docking3deffects|extended_tip|textype"
+msgid "Converts the texture to black and white."
+msgstr "Pintakuvio muunnetaan mustavalkoiseksi."
+
#. rfdVf
-#: svx/uiconfig/ui/docking3deffects.ui:1667
+#: svx/uiconfig/ui/docking3deffects.ui:1823
msgctxt "docking3deffects|texcolor|tooltip_text"
msgid "Color"
msgstr "Väri"
+#. dkTiY
+#: svx/uiconfig/ui/docking3deffects.ui:1831
+msgctxt "docking3deffects|extended_tip|texcolor"
+msgid "Converts the texture to color."
+msgstr "Pintakuvio muunnetaan värilliseksi."
+
#. aqP2z
-#: svx/uiconfig/ui/docking3deffects.ui:1684
+#: svx/uiconfig/ui/docking3deffects.ui:1845
msgctxt "docking3deffects|texreplace|tooltip_text"
msgid "Only Texture"
msgstr "Vain pintakuvio"
+#. hMAv6
+#: svx/uiconfig/ui/docking3deffects.ui:1853
+msgctxt "docking3deffects|extended_tip|texreplace"
+msgid "Applies the texture without shading."
+msgstr "Pintakuviota käytetään ilman varjostusta."
+
#. HCKdG
-#: svx/uiconfig/ui/docking3deffects.ui:1701
+#: svx/uiconfig/ui/docking3deffects.ui:1867
msgctxt "docking3deffects|texmodulate|tooltip_text"
msgid "Texture and Shading"
msgstr "Pintakuvio ja varjostus"
+#. 3g4zG
+#: svx/uiconfig/ui/docking3deffects.ui:1875
+msgctxt "docking3deffects|extended_tip|texmodulate"
+msgid "Applies the texture with shading. To define the shading options for the texture, click the Shading button in this dialog."
+msgstr "Käytetään varjostettua pintakuviota. Varjostusasetusten määrittämiseksi napsautetaan valintaikkunan Varjostus-painiketta."
+
#. ycQqQ
-#: svx/uiconfig/ui/docking3deffects.ui:1718
+#: svx/uiconfig/ui/docking3deffects.ui:1889
msgctxt "docking3deffects|texblend|tooltip_text"
msgid "Texture, Shadow and Color"
msgstr "Pintakuvio, varjostus ja väri"
#. 65J8K
-#: svx/uiconfig/ui/docking3deffects.ui:1736
+#: svx/uiconfig/ui/docking3deffects.ui:1907
msgctxt "docking3deffects|texobjx|tooltip_text"
msgid "Object-Specific"
msgstr "Objektikohtainen"
+#. y9Kai
+#: svx/uiconfig/ui/docking3deffects.ui:1915
+msgctxt "docking3deffects|extended_tip|texobjx"
+msgid "Automatically adjusts the texture based on the shape and size of the object."
+msgstr "Pintakuvio säätyy kappaleen muodon ja koon mukaisesti."
+
#. iTKyD
-#: svx/uiconfig/ui/docking3deffects.ui:1753
+#: svx/uiconfig/ui/docking3deffects.ui:1929
msgctxt "docking3deffects|texparallelx|tooltip_text"
msgid "Parallel"
msgstr "Yhdensuuntainen"
+#. SjaUF
+#: svx/uiconfig/ui/docking3deffects.ui:1937
+msgctxt "docking3deffects|extended_tip|texparallelx"
+msgid "Applies the texture parallel to the horizontal axis."
+msgstr "Pintakuviota käytetään vaaka-akselin suuntaisesti."
+
#. MhgUE
-#: svx/uiconfig/ui/docking3deffects.ui:1770
+#: svx/uiconfig/ui/docking3deffects.ui:1951
msgctxt "docking3deffects|texcirclex|tooltip_text"
msgid "Circular"
msgstr "Ympyrän muotoinen"
+#. pfLqS
+#: svx/uiconfig/ui/docking3deffects.ui:1960
+msgctxt "docking3deffects|extended_tip|texcirclex"
+msgid "Wraps the horizontal axis of the texture pattern around a sphere."
+msgstr "Pintakuvion vaaka-akseli kääritään pallon ympäri."
+
#. E9Gy6
-#: svx/uiconfig/ui/docking3deffects.ui:1788
+#: svx/uiconfig/ui/docking3deffects.ui:1974
msgctxt "docking3deffects|texobjy|tooltip_text"
msgid "Object-Specific"
msgstr "Objektikohtainen"
+#. Li9zf
+#: svx/uiconfig/ui/docking3deffects.ui:1982
+msgctxt "docking3deffects|extended_tip|texobjy"
+msgid "Automatically adjusts the texture based on the shape and size of the object."
+msgstr "Pintakuvio säätyy kappaleen muodon ja koon mukaisesti."
+
#. 5B84a
-#: svx/uiconfig/ui/docking3deffects.ui:1805
+#: svx/uiconfig/ui/docking3deffects.ui:1996
msgctxt "docking3deffects|texparallely|tooltip_text"
msgid "Parallel"
msgstr "Yhdensuuntainen"
+#. UuRg4
+#: svx/uiconfig/ui/docking3deffects.ui:2004
+msgctxt "docking3deffects|extended_tip|texparallely"
+msgid "Applies the texture parallel to the vertical axis."
+msgstr "Pintakuviota käytetään pystyakselin suuntaisesti."
+
#. h5iQh
-#: svx/uiconfig/ui/docking3deffects.ui:1822
+#: svx/uiconfig/ui/docking3deffects.ui:2018
msgctxt "docking3deffects|texcircley|tooltip_text"
msgid "Circular"
msgstr "Ympyrän muotoinen"
+#. FyRf5
+#: svx/uiconfig/ui/docking3deffects.ui:2026
+msgctxt "docking3deffects|extended_tip|texcircley"
+msgid "Wraps the vertical axis of the texture pattern around a sphere."
+msgstr "Pintakuvion pystyakseli kääritään pallon ympäri."
+
#. cKvPt
-#: svx/uiconfig/ui/docking3deffects.ui:1839
+#: svx/uiconfig/ui/docking3deffects.ui:2040
msgctxt "docking3deffects|texfilter|tooltip_text"
msgid "Filtering On/Off"
msgstr "Suodatus päälle/pois"
+#. mMhpy
+#: svx/uiconfig/ui/docking3deffects.ui:2048
+msgctxt "docking3deffects|extended_tip|texfilter"
+msgid "Blurs the texture slightly to remove unwanted speckles."
+msgstr "Sumennetaan pintakuviota lievästi epätoivottujen täplien poistamiseksi."
+
#. GKiZx
-#: svx/uiconfig/ui/docking3deffects.ui:1868
+#: svx/uiconfig/ui/docking3deffects.ui:2074
msgctxt "docking3deffects|label21"
msgid "Textures"
msgstr "Pintakuviot"
#. fYX37
-#: svx/uiconfig/ui/docking3deffects.ui:1902
+#: svx/uiconfig/ui/docking3deffects.ui:2108
msgctxt "docking3deffects|label26"
msgid "_Favorites"
msgstr "Suosikit"
#. mNa7V
-#: svx/uiconfig/ui/docking3deffects.ui:1918
+#: svx/uiconfig/ui/docking3deffects.ui:2124
msgctxt "docking3deffects|label27"
msgid "_Object color"
msgstr "Objektin väri"
#. rGGJC
-#: svx/uiconfig/ui/docking3deffects.ui:1932
+#: svx/uiconfig/ui/docking3deffects.ui:2138
msgctxt "docking3deffects|label29"
msgid "_Illumination color"
msgstr "Valaistuksen väri"
+#. UmpFS
+#: svx/uiconfig/ui/docking3deffects.ui:2163
+msgctxt "docking3deffects|extended_tip|objcolor"
+msgid "Select the color that you want to apply to the object."
+msgstr "Valitaan objektiin käytettävä väri."
+
+#. 8ufuo
+#: svx/uiconfig/ui/docking3deffects.ui:2187
+msgctxt "docking3deffects|extended_tip|illumcolor"
+msgid "Select the color to illuminate the object."
+msgstr "Valitaan objektin valaistuksen väri."
+
#. EeS7C
-#: svx/uiconfig/ui/docking3deffects.ui:1983
+#: svx/uiconfig/ui/docking3deffects.ui:2201
msgctxt "docking3deffects|favorites"
msgid "User-defined"
msgstr "Käyttäjän määrittämä"
#. RcCQG
-#: svx/uiconfig/ui/docking3deffects.ui:1984
+#: svx/uiconfig/ui/docking3deffects.ui:2202
msgctxt "docking3deffects|favorites"
msgid "Metal"
msgstr "Metalli"
#. JxUiT
-#: svx/uiconfig/ui/docking3deffects.ui:1985
+#: svx/uiconfig/ui/docking3deffects.ui:2203
msgctxt "docking3deffects|favorites"
msgid "Gold"
msgstr "Kulta"
#. Mnmop
-#: svx/uiconfig/ui/docking3deffects.ui:1986
+#: svx/uiconfig/ui/docking3deffects.ui:2204
msgctxt "docking3deffects|favorites"
msgid "Chrome"
msgstr "Kromi"
#. fa9bg
-#: svx/uiconfig/ui/docking3deffects.ui:1987
+#: svx/uiconfig/ui/docking3deffects.ui:2205
msgctxt "docking3deffects|favorites"
msgid "Plastic"
msgstr "Muovi"
#. WGUwt
-#: svx/uiconfig/ui/docking3deffects.ui:1988
+#: svx/uiconfig/ui/docking3deffects.ui:2206
msgctxt "docking3deffects|favorites"
msgid "Wood"
msgstr "Puu"
+#. KDxBg
+#: svx/uiconfig/ui/docking3deffects.ui:2213
+msgctxt "docking3deffects|extended_tip|favorites"
+msgid "Select a predefined color scheme, or select User-defined to define a custom color scheme."
+msgstr "Valitaan valmis värikaavio tai valitaan Käyttäjän määrittämä -vaihtoehto mukautetun värikaavion määrittämiseksi."
+
#. AndqG
-#: svx/uiconfig/ui/docking3deffects.ui:2005
+#: svx/uiconfig/ui/docking3deffects.ui:2228
msgctxt "docking3deffects|colorbutton3|tooltip_text"
msgid "Colors Dialog"
msgstr "Värien valintaikkuna"
+#. BT3GD
+#: svx/uiconfig/ui/docking3deffects.ui:2232
+msgctxt "docking3deffects|extended_tip|colorbutton3"
+msgid "Select the color to illuminate the object."
+msgstr "Valitaan objektin valaistuksen väri."
+
#. tsEoC
-#: svx/uiconfig/ui/docking3deffects.ui:2018
+#: svx/uiconfig/ui/docking3deffects.ui:2246
msgctxt "docking3deffects|colorbutton4|tooltip_text"
msgid "Colors Dialog"
msgstr "Värien valintaikkuna"
#. RWxeM
-#: svx/uiconfig/ui/docking3deffects.ui:2034
+#: svx/uiconfig/ui/docking3deffects.ui:2262
msgctxt "docking3deffects|label28"
msgid "Material"
msgstr "Materiaali"
#. wY3tE
-#: svx/uiconfig/ui/docking3deffects.ui:2068
+#: svx/uiconfig/ui/docking3deffects.ui:2296
msgctxt "docking3deffects|label30"
msgid "_Color"
msgstr "Väri"
#. ngqfq
-#: svx/uiconfig/ui/docking3deffects.ui:2082
+#: svx/uiconfig/ui/docking3deffects.ui:2310
msgctxt "docking3deffects|label31"
msgid "I_ntensity"
msgstr "Intensiteetti"
+#. TAoRf
+#: svx/uiconfig/ui/docking3deffects.ui:2335
+msgctxt "docking3deffects|extended_tip|speccolor"
+msgid "Select the color that you want the object to reflect."
+msgstr "Valitaan objektin heijastama väri"
+
#. 8fdJB
-#: svx/uiconfig/ui/docking3deffects.ui:2115
+#: svx/uiconfig/ui/docking3deffects.ui:2349
msgctxt "docking3deffects|colorbutton5|tooltip_text"
msgid "Colors Dialog"
msgstr "Värien valintaikkuna"
+#. GjQ2i
+#: svx/uiconfig/ui/docking3deffects.ui:2353
+msgctxt "docking3deffects|extended_tip|colorbutton5"
+msgid "Enter the intensity of the specular effect."
+msgstr "Annetaan peiliheijastuksen voimakkuus."
+
+#. tcm3D
+#: svx/uiconfig/ui/docking3deffects.ui:2369
+msgctxt "docking3deffects|extended_tip|intensity"
+msgid "Enter the intensity of the specular effect."
+msgstr "Annetaan peiliheijastuksen voimakkuus."
+
#. L8GqV
-#: svx/uiconfig/ui/docking3deffects.ui:2143
+#: svx/uiconfig/ui/docking3deffects.ui:2387
msgctxt "docking3deffects|label32"
msgid "Specular"
msgstr "Heijastus"
#. Qkzsq
-#: svx/uiconfig/ui/docking3deffects.ui:2165
+#: svx/uiconfig/ui/docking3deffects.ui:2409
msgctxt "docking3deffects|assign|tooltip_text"
msgid "Assign"
msgstr "Käytä asetuksia"
#. cjrJ9
-#: svx/uiconfig/ui/docking3deffects.ui:2178
+#: svx/uiconfig/ui/docking3deffects.ui:2422
msgctxt "docking3deffects|update|tooltip_text"
msgid "Update"
msgstr "Päivitä"
#. AgKU4
-#: svx/uiconfig/ui/docking3deffects.ui:2193
+#: svx/uiconfig/ui/docking3deffects.ui:2437
msgctxt "docking3deffects|material|tooltip_text"
msgid "Material"
msgstr "Materiaali"
+#. xN7Sr
+#: svx/uiconfig/ui/docking3deffects.ui:2441
+msgctxt "docking3deffects|extended_tip|material"
+msgid "Changes the coloring of the selected 3D object."
+msgstr "Vaihdetaan valitun kolmiulotteisen objektin väritystä."
+
#. 3Av3h
-#: svx/uiconfig/ui/docking3deffects.ui:2206
+#: svx/uiconfig/ui/docking3deffects.ui:2455
msgctxt "docking3deffects|texture|tooltip_text"
msgid "Textures"
msgstr "Pintakuviot"
+#. DVwWG
+#: svx/uiconfig/ui/docking3deffects.ui:2459
+msgctxt "docking3deffects|extended_tip|texture"
+msgid "Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface texture to the selected object. To quickly apply a surface texture, open the Gallery, hold down Shift+Ctrl, and then drag an image onto the selected 3D object."
+msgstr "Tehdään valitun kolmiulotteisen objektin pintakuvioinnin ominaisuusasetukset. Tämä piirre on käytettävissä vasta sitten, kun pintakuviointia on käytetty valittuun objektiin. Pintakuvion käyttämiseksi sujuvasti avataan galleria ja pitäen pohjassa Vaihto+Ctrl (Mac: Vaihto+Komento) vedetään kuva valitun 3D-objektin päälle."
+
#. J4WKj
-#: svx/uiconfig/ui/docking3deffects.ui:2219
+#: svx/uiconfig/ui/docking3deffects.ui:2473
msgctxt "docking3deffects|light|tooltip_text"
msgid "Illumination"
msgstr "Valaistus"
+#. 9WEJD
+#: svx/uiconfig/ui/docking3deffects.ui:2477
+msgctxt "docking3deffects|extended_tip|light"
+msgid "Define the light source for the selected 3D object."
+msgstr "Määritetään valitun 3D-kappaleen valonlähde."
+
#. ctHgb
-#: svx/uiconfig/ui/docking3deffects.ui:2232
+#: svx/uiconfig/ui/docking3deffects.ui:2491
msgctxt "docking3deffects|representation|tooltip_text"
msgid "Shading"
msgstr "Varjostus"
+#. HF3KP
+#: svx/uiconfig/ui/docking3deffects.ui:2495
+msgctxt "docking3deffects|extended_tip|representation"
+msgid "Sets the shading and shadow options for the selected 3D object."
+msgstr "Tehdään valitun 3D-kappaleen varjostus- ja varjoasetukset."
+
#. HxxSF
-#: svx/uiconfig/ui/docking3deffects.ui:2245
+#: svx/uiconfig/ui/docking3deffects.ui:2509
msgctxt "docking3deffects|geometry|tooltip_text"
msgid "Geometry"
msgstr "Geometria"
+#. h4c39
+#: svx/uiconfig/ui/docking3deffects.ui:2513
+msgctxt "docking3deffects|extended_tip|geometry"
+msgid "Adjusts the shape of the selected 3D object. You can only modify the shape of a 3D object that was created by converting a 2D object. To convert a 2D object to 3D, select the object, right-click, and then choose Convert - To 3D, or Convert - To 3D Rotation Object."
+msgstr "Valitun 3D-objektin muoto säädetään. Muotoa voi muokata vain sellaisista 3D-objekteista, jotka on luotu muuntamalla tasokuvio. Tasokuvion muuntamiseksi kolmiulotteiseksi, valitaan piirrosobjekti, napsautetaan kakkospainikkeella ja valitaan sitten Muunna - Pursota 3D-kappaleeksi tai Muunna - 3D-pyörähdyskappaleeksi."
+
+#. 4D9WF
+#: svx/uiconfig/ui/docking3deffects.ui:2530
+msgctxt "docking3deffects|extended_tip|Docking3DEffects"
+msgid "Specifies the properties of 3D object(s) in the current document or converts a 2D object to 3D."
+msgstr ""
+
#. dzpTm
#: svx/uiconfig/ui/dockingcolorreplace.ui:60
msgctxt "dockingcolorreplace|label2"
@@ -14275,224 +15178,458 @@ msgstr "Korvaa värillä..."
#. 7BFw2
#. This string is used by the eyedropper dialog to denote a color in an image that will be replaced by another color.
-#: svx/uiconfig/ui/dockingcolorreplace.ui:104
+#: svx/uiconfig/ui/dockingcolorreplace.ui:103
msgctxt "dockingcolorreplace|cbx2-atkobject"
msgid "Source Color 2"
msgstr "Lähdeväri 2"
+#. PQMJr
+#: svx/uiconfig/ui/dockingcolorreplace.ui:104
+msgctxt "dockingcolorreplace|extended_tip|cbx2"
+msgid "Select this checkbox to replace the current Source color with the color that you specify in the Replace with box."
+msgstr ""
+
#. 8kZuj
#. This string is used by the eyedropper dialog to denote a color in an image that will be replaced by another color.
-#: svx/uiconfig/ui/dockingcolorreplace.ui:124
+#: svx/uiconfig/ui/dockingcolorreplace.ui:123
msgctxt "dockingcolorreplace|cbx3-atkobject"
msgid "Source Color 3"
msgstr "Lähdeväri 3"
+#. N86Pu
+#: svx/uiconfig/ui/dockingcolorreplace.ui:124
+msgctxt "dockingcolorreplace|extended_tip|cbx3"
+msgid "Select this checkbox to replace the current Source color with the color that you specify in the Replace with box."
+msgstr ""
+
#. 3asCq
#. This string is used by the eyedropper dialog to denote a color in an image that will be replaced by another color.
-#: svx/uiconfig/ui/dockingcolorreplace.ui:144
+#: svx/uiconfig/ui/dockingcolorreplace.ui:143
msgctxt "dockingcolorreplace|cbx4-atkobject"
msgid "Source Color 4"
msgstr "Lähdeväri 4"
+#. LBfJA
+#: svx/uiconfig/ui/dockingcolorreplace.ui:144
+msgctxt "dockingcolorreplace|extended_tip|cbx4"
+msgid "Select this checkbox to replace the current Source color with the color that you specify in the Replace with box."
+msgstr ""
+
#. 5MXBc
#. This string is used by the eyedropper dialog to denote a color in an image that will be replaced by another color.
-#: svx/uiconfig/ui/dockingcolorreplace.ui:164
+#: svx/uiconfig/ui/dockingcolorreplace.ui:163
msgctxt "dockingcolorreplace|cbx1-atkobject"
msgid "Source Color 1"
msgstr "Lähdeväri 1"
+#. QFJGw
+#: svx/uiconfig/ui/dockingcolorreplace.ui:164
+msgctxt "dockingcolorreplace|extended_tip|cbx1"
+msgid "Select this checkbox to replace the current Source color with the color that you specify in the Replace with box."
+msgstr ""
+
#. myTap
#: svx/uiconfig/ui/dockingcolorreplace.ui:175
msgctxt "dockingcolorreplace|cbx5"
msgid "Tr_ansparency"
msgstr "Läpinäkyvyys"
+#. GTTDs
+#: svx/uiconfig/ui/dockingcolorreplace.ui:187
+msgctxt "dockingcolorreplace|extended_tip|cbx5"
+msgid "Replaces transparent areas in the current image with the color that you select."
+msgstr "Ruudun merkintä tarkoittaa, että korvataan työstettävän kuvan läpinäkyvät alueet valittavalla värillä."
+
#. ebshb
-#: svx/uiconfig/ui/dockingcolorreplace.ui:199
+#: svx/uiconfig/ui/dockingcolorreplace.ui:204
msgctxt "dockingcolorreplace|tol1-atkobject"
msgid "Tolerance 1"
msgstr "Toleranssi 1"
+#. 5yRXd
+#: svx/uiconfig/ui/dockingcolorreplace.ui:205
+msgctxt "dockingcolorreplace|extended_tip|tol1"
+msgid "Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value."
+msgstr ""
+
#. dCyn7
-#: svx/uiconfig/ui/dockingcolorreplace.ui:217
+#: svx/uiconfig/ui/dockingcolorreplace.ui:223
msgctxt "dockingcolorreplace|tol2-atkobject"
msgid "Tolerance 2"
msgstr "Toleranssi 2"
+#. meE29
+#: svx/uiconfig/ui/dockingcolorreplace.ui:224
+msgctxt "dockingcolorreplace|extended_tip|tol2"
+msgid "Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value."
+msgstr ""
+
#. bUkAc
-#: svx/uiconfig/ui/dockingcolorreplace.ui:235
+#: svx/uiconfig/ui/dockingcolorreplace.ui:242
msgctxt "dockingcolorreplace|tol3-atkobject"
msgid "Tolerance 3"
msgstr "Toleranssi 3"
+#. TFmby
+#: svx/uiconfig/ui/dockingcolorreplace.ui:243
+msgctxt "dockingcolorreplace|extended_tip|tol3"
+msgid "Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value."
+msgstr ""
+
#. Wp3Q3
-#: svx/uiconfig/ui/dockingcolorreplace.ui:253
+#: svx/uiconfig/ui/dockingcolorreplace.ui:261
msgctxt "dockingcolorreplace|tol4-atkobject"
msgid "Tolerance 4"
msgstr "Toleranssi 4"
+#. PBa9G
+#: svx/uiconfig/ui/dockingcolorreplace.ui:262
+msgctxt "dockingcolorreplace|extended_tip|tol4"
+msgid "Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value."
+msgstr ""
+
#. CTGcU
-#: svx/uiconfig/ui/dockingcolorreplace.ui:275
+#: svx/uiconfig/ui/dockingcolorreplace.ui:285
msgctxt "dockingcolorreplace|color1-atkobject"
msgid "Replace with 1"
msgstr "Korvaa värillä 1"
+#. HHM3q
+#: svx/uiconfig/ui/dockingcolorreplace.ui:286
+msgctxt "dockingcolorreplace|extended_tip|color1"
+msgid "Lists the available replacement colors. To modify the current list of colors, deselect the image, choose Format - Area, and then click the Colors tab."
+msgstr ""
+
#. AiWPA
-#: svx/uiconfig/ui/dockingcolorreplace.ui:297
+#: svx/uiconfig/ui/dockingcolorreplace.ui:309
msgctxt "dockingcolorreplace|color2-atkobject"
msgid "Replace with 2"
msgstr "Korvaa värillä 2"
+#. Xov5N
+#: svx/uiconfig/ui/dockingcolorreplace.ui:310
+msgctxt "dockingcolorreplace|extended_tip|color2"
+msgid "Lists the available replacement colors. To modify the current list of colors, deselect the image, choose Format - Area, and then click the Colors tab."
+msgstr ""
+
#. 99EMs
-#: svx/uiconfig/ui/dockingcolorreplace.ui:319
+#: svx/uiconfig/ui/dockingcolorreplace.ui:333
msgctxt "dockingcolorreplace|color3-atkobject"
msgid "Replace with 3"
msgstr "Korvaa värillä 3"
+#. n4BEe
+#: svx/uiconfig/ui/dockingcolorreplace.ui:334
+msgctxt "dockingcolorreplace|extended_tip|color3"
+msgid "Lists the available replacement colors. To modify the current list of colors, deselect the image, choose Format - Area, and then click the Colors tab."
+msgstr ""
+
#. ECDky
-#: svx/uiconfig/ui/dockingcolorreplace.ui:341
+#: svx/uiconfig/ui/dockingcolorreplace.ui:357
msgctxt "dockingcolorreplace|color4-atkobject"
msgid "Replace with 4"
msgstr "Korvaa värillä 4"
+#. 2jmAc
+#: svx/uiconfig/ui/dockingcolorreplace.ui:358
+msgctxt "dockingcolorreplace|extended_tip|color4"
+msgid "Lists the available replacement colors. To modify the current list of colors, deselect the image, choose Format - Area, and then click the Colors tab."
+msgstr ""
+
+#. JaAwK
+#: svx/uiconfig/ui/dockingcolorreplace.ui:383
+msgctxt "dockingcolorreplace|extended_tip|color5"
+msgid "Select the color to replace the transparent areas in the current image."
+msgstr "Valitaan väri, joka korvaa työstettävän kuvan läpinäkyvät alueet."
+
#. EeBXP
-#: svx/uiconfig/ui/dockingcolorreplace.ui:429
+#: svx/uiconfig/ui/dockingcolorreplace.ui:452
msgctxt "dockingcolorreplace|label1"
msgid "Colors"
msgstr "Värit"
#. 7cuei
-#: svx/uiconfig/ui/dockingcolorreplace.ui:449
+#: svx/uiconfig/ui/dockingcolorreplace.ui:472
msgctxt "dockingcolorreplace|replace"
msgid "_Replace"
msgstr "_Korvaa"
+#. 8uHoS
+#: svx/uiconfig/ui/dockingcolorreplace.ui:482
+msgctxt "dockingcolorreplace|extended_tip|replace"
+msgid "Replaces the selected source colors in the current image with the colors that you specify in the Replace with boxes."
+msgstr "Korvataan työstettävän kuvan valitut lähdevärit väreillä, jotka on määritelty Korvaa värillä -ruutuihin."
+
#. qFwAs
-#: svx/uiconfig/ui/dockingcolorreplace.ui:480
+#: svx/uiconfig/ui/dockingcolorreplace.ui:508
msgctxt "dockingcolorreplace|pipette"
msgid "Pipette"
msgstr "Pipetti"
+#. CQGvD
+#: svx/uiconfig/ui/dockingcolorreplace.ui:513
+msgctxt "dockingcolorreplace|extended_tip|pipette"
+msgid "Select one of the four source color boxes. Move the mouse pointer over the selected image, and then click the color that you want to replace."
+msgstr "Valitaan joku neljästä lähdeväriruudusta. Siirretään hiiren osoitin valitun kuvan päälle ja napsautetaan sitten korvattavaa väriä."
+
+#. ErWSB
+#: svx/uiconfig/ui/dockingcolorreplace.ui:557
+msgctxt "dockingcolorreplace|extended_tip|toolgrid"
+msgid "Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected."
+msgstr "Näytetään se väri, joka on valitussa kuvassa täsmälleen hiiren osoittimen alla. Ominaisuus toimii vain, kun pipetti-työkalu on valittuna."
+
+#. gbska
+#: svx/uiconfig/ui/dockingcolorreplace.ui:574
+msgctxt "dockingcolorreplace|extended_tip|DockingColorReplace"
+msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics."
+msgstr ""
+
#. cXHxL
#: svx/uiconfig/ui/dockingfontwork.ui:42
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Ei käytössä"
+#. toQVa
+#: svx/uiconfig/ui/dockingfontwork.ui:48
+msgctxt "dockingfontwork|extended_tip|off"
+msgid "Removes baseline formatting."
+msgstr "Poistetaan jalkalinjan muotoilu."
+
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:66
+#: svx/uiconfig/ui/dockingfontwork.ui:71
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Kierrä"
+#. 8SRC7
+#: svx/uiconfig/ui/dockingfontwork.ui:77
+msgctxt "dockingfontwork|extended_tip|rotate"
+msgid "Uses the top or the bottom edge of the selected object as the text baseline."
+msgstr "Tekstin jalkalinjana käytetään valitun objektin ylä- tai alareunaa."
+
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:80
+#: svx/uiconfig/ui/dockingfontwork.ui:90
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Pystyssä"
+#. T5AzQ
+#: svx/uiconfig/ui/dockingfontwork.ui:96
+msgctxt "dockingfontwork|extended_tip|upright"
+msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
+msgstr "Tekstin jalkalinjana käytetään valitun objektin ylä- tai alareunaa ja kirjainten alkuperäinen pystysuunta säilytetään."
+
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:94
+#: svx/uiconfig/ui/dockingfontwork.ui:109
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Kallista vaakasuunnassa"
+#. HCLXn
+#: svx/uiconfig/ui/dockingfontwork.ui:115
+msgctxt "dockingfontwork|extended_tip|hori"
+msgid "Horizontally slants the characters in the text object."
+msgstr ""
+
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:108
+#: svx/uiconfig/ui/dockingfontwork.ui:128
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Kallista pystysuunnassa"
+#. YuPLk
+#: svx/uiconfig/ui/dockingfontwork.ui:134
+msgctxt "dockingfontwork|extended_tip|vert"
+msgid "Vertically slants the characters in the text object."
+msgstr ""
+
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:133
+#: svx/uiconfig/ui/dockingfontwork.ui:158
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Asento"
+#. JmdEd
+#: svx/uiconfig/ui/dockingfontwork.ui:163
+msgctxt "dockingfontwork|extended_tip|orientation"
+msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
+msgstr "Vaihdetaan tekstin kirjoitussuunta ja käännetään tekstiä vaaka- tai pystysuunnassa. Käskyn käyttämiseksi pitää ensin ottaa käyttöön uusi jalkalinja."
+
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:156
+#: svx/uiconfig/ui/dockingfontwork.ui:186
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Tasaa vasemmalle"
+#. Kf8Ro
+#: svx/uiconfig/ui/dockingfontwork.ui:192
+msgctxt "dockingfontwork|extended_tip|left"
+msgid "Aligns the text to the left end of the text baseline."
+msgstr "Kohdistetaan teksti jalkalinjan vasempaan päähän."
+
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:170
+#: svx/uiconfig/ui/dockingfontwork.ui:205
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Keskelle"
+#. QvAnd
+#: svx/uiconfig/ui/dockingfontwork.ui:211
+msgctxt "dockingfontwork|extended_tip|center"
+msgid "Centers the text on the text baseline."
+msgstr "Keskitetään teksti tekstin jalkalinjalle."
+
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:184
+#: svx/uiconfig/ui/dockingfontwork.ui:224
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Tasaa oikealle"
+#. 5HCvt
+#: svx/uiconfig/ui/dockingfontwork.ui:230
+msgctxt "dockingfontwork|extended_tip|right"
+msgid "Aligns the text to the right end of the text baseline."
+msgstr "Kohdistetaan teksti jalkalinjan oikeaan päähän."
+
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:198
+#: svx/uiconfig/ui/dockingfontwork.ui:243
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Automaattinen tekstin koon määritys"
+#. 3eAum
+#: svx/uiconfig/ui/dockingfontwork.ui:249
+msgctxt "dockingfontwork|extended_tip|autosize"
+msgid "Resizes the text to fit the length of the text baseline."
+msgstr "Muutetaan tekstin kokoa, niin että se sopii jalkalinjan pituuteen."
+
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:236
+#: svx/uiconfig/ui/dockingfontwork.ui:286
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Etäisyys"
+#. tZx4a
+#: svx/uiconfig/ui/dockingfontwork.ui:291
+msgctxt "dockingfontwork|extended_tip|distance"
+msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
+msgstr "Annetaan jalkalinjan ja yksittäisten merkkien pohjan välin suuruus."
+
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:273
+#: svx/uiconfig/ui/dockingfontwork.ui:328
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Sisennys"
+#. nQpqX
+#: svx/uiconfig/ui/dockingfontwork.ui:334
+msgctxt "dockingfontwork|extended_tip|indent"
+msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
+msgstr "Annetaan jalkalinjan alun ja tekstin alun välin (sisennyksen) suuruus."
+
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:298
+#: svx/uiconfig/ui/dockingfontwork.ui:358
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Ääriviiva"
+#. hwZ5Q
+#: svx/uiconfig/ui/dockingfontwork.ui:363
+msgctxt "dockingfontwork|extended_tip|contour"
+msgid "Shows or hides the text baseline, or the edges of the selected object."
+msgstr "Näytetään tai piilotetaan tekstin jalkalinja tai valitun objektin reunat."
+
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:311
+#: svx/uiconfig/ui/dockingfontwork.ui:376
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Tekstin ääriviiva"
+#. ZjKrD
+#: svx/uiconfig/ui/dockingfontwork.ui:381
+msgctxt "dockingfontwork|extended_tip|textcontour"
+msgid "Shows or hides the borders of the individual characters in the text."
+msgstr "Näytetään tai piilotetaan yksittäisten merkkien reunat tekstissä."
+
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:334
+#: svx/uiconfig/ui/dockingfontwork.ui:404
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Ei varjoa"
+#. WfHcG
+#: svx/uiconfig/ui/dockingfontwork.ui:410
+msgctxt "dockingfontwork|extended_tip|noshadow"
+msgid "Removes the shadow effects that you applied to the text."
+msgstr "Poistetaan käytetty varjostustehoste tekstistä."
+
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:348
+#: svx/uiconfig/ui/dockingfontwork.ui:423
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "Pystysuuntainen"
+#. yAtee
+#: svx/uiconfig/ui/dockingfontwork.ui:429
+msgctxt "dockingfontwork|extended_tip|vertical"
+msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
+msgstr "Lisätään valitun objektin tekstiin varjo. Napsautetaan painiketta ja syötetään sitten varjon mitat Etäisyys X ja Etäisyys Y -ruutuihin."
+
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:362
+#: svx/uiconfig/ui/dockingfontwork.ui:442
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Kallista"
+#. WxAZv
+#: svx/uiconfig/ui/dockingfontwork.ui:448
+msgctxt "dockingfontwork|extended_tip|slant"
+msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
+msgstr "Lisätään valitun objektin tekstin varjon kallistus. Napsautetaan painiketta ja syötetään sitten varjon mitat Etäisyys X ja Etäisyys Y -ruutuihin."
+
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:400
+#: svx/uiconfig/ui/dockingfontwork.ui:485
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Etäisyys X"
+#. foUKw
+#: svx/uiconfig/ui/dockingfontwork.ui:491
+msgctxt "dockingfontwork|extended_tip|distancex"
+msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
+msgstr "Annetaan tekstin merkin ja varjon reunan vaakasuuntainen etäisyys."
+
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:438
+#: svx/uiconfig/ui/dockingfontwork.ui:528
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Etäisyys Y"
+#. WhqTH
+#: svx/uiconfig/ui/dockingfontwork.ui:534
+msgctxt "dockingfontwork|extended_tip|distancey"
+msgid "Enter the vertical distance between the text characters and the edge of the shadow."
+msgstr "Annetaan tekstin merkin ja varjon reunan pystysuuntainen etäisyys."
+
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:459
+#: svx/uiconfig/ui/dockingfontwork.ui:554
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Varjon väri"
+#. bNpUP
+#: svx/uiconfig/ui/dockingfontwork.ui:564
+msgctxt "dockingfontwork|extended_tip|color"
+msgid "Select a color for the text shadow."
+msgstr "Valitaan tekstin varjon väri."
+
+#. Eovtw
+#: svx/uiconfig/ui/dockingfontwork.ui:575
+msgctxt "dockingfontwork|extended_tip|DockingFontwork"
+msgid "Simple tool for putting text along a curve without any fancy effects."
+msgstr ""
+
#. ASETE
#: svx/uiconfig/ui/docrecoverybrokendialog.ui:16
msgctxt "docrecoverybrokendialog|DocRecoveryBrokenDialog"
@@ -14614,17 +15751,23 @@ msgid "Extrusion Depth"
msgstr "Pursotuksen syvyys"
#. b6kQz
-#: svx/uiconfig/ui/extrustiondepthdialog.ui:122
+#: svx/uiconfig/ui/extrustiondepthdialog.ui:119
msgctxt "extrustiondepthdialog|label1"
msgid "_Value"
msgstr "Arvo"
#. ADHDq
-#: svx/uiconfig/ui/extrustiondepthdialog.ui:139
+#: svx/uiconfig/ui/extrustiondepthdialog.ui:136
msgctxt "extrustiondepthdialog|label2"
msgid "Depth"
msgstr "Syvyys"
+#. pFxTG
+#: svx/uiconfig/ui/extrustiondepthdialog.ui:161
+msgctxt "extrustiondepthdialog|extended_tip|ExtrustionDepthDialog"
+msgid "Enter an extrusion depth."
+msgstr ""
+
#. HDhiV
#: svx/uiconfig/ui/filtermenu.ui:12
msgctxt "filtermenu|delete"
@@ -14649,240 +15792,618 @@ msgctxt "filtermenu|isnotnull"
msgid "I_s not Null"
msgstr "_Ei ole tyhjä"
+#. v3yEp
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:8
+msgctxt "findreplacedialog-mobile|FindReplaceDialog"
+msgid "Find & Replace"
+msgstr "Etsi ja korvaa"
+
+#. eByBj
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:140
+msgctxt "findreplacedialog-mobile|label4"
+msgid "_Find:"
+msgstr ""
+
+#. oNJkY
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:194
+msgctxt "findreplacedialog-mobile|matchcase"
+msgid "Ma_tch case"
+msgstr ""
+
+#. uiV7G
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:210
+msgctxt "findreplacedialog-mobile|searchformatted"
+msgid "For_matted display"
+msgstr ""
+
+#. 3KibH
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:230
+msgctxt "findreplacedialog-mobile|wholewords"
+msgid "Whole wor_ds only"
+msgstr ""
+
+#. BRbAi
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:248
+msgctxt "findreplacedialog-mobile|entirecells"
+msgid "_Entire cells"
+msgstr ""
+
+#. xFvzF
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:266
+msgctxt "findreplacedialog-mobile|allsheets"
+msgid "All _sheets"
+msgstr ""
+
+#. 8a3TB
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:305
+msgctxt "findreplacedialog-mobile|label1"
+msgid "_Search For"
+msgstr ""
+
+#. aHAoN
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:390
+msgctxt "findreplacedialog-mobile|label5"
+msgid "Re_place:"
+msgstr ""
+
+#. PhyMv
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:430
+msgctxt "findreplacedialog-mobile|label2"
+msgid "Re_place With"
+msgstr ""
+
+#. gi3jL
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:456
+msgctxt "findreplacedialog-mobile|searchall"
+msgid "Find _All"
+msgstr ""
+
+#. xizGS
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:470
+msgctxt "findreplacedialog-mobile|backsearch"
+msgid "Find Pre_vious"
+msgstr ""
+
+#. Fnoy9
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:484
+msgctxt "findreplacedialog-mobile|search"
+msgid "Find Ne_xt"
+msgstr ""
+
+#. 4xbpA
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:500
+msgctxt "findreplacedialog-mobile|replace"
+msgid "_Replace"
+msgstr "Korvaa"
+
+#. LXUGG
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:514
+msgctxt "findreplacedialog-mobile|replaceall"
+msgid "Replace A_ll"
+msgstr ""
+
+#. 8pjvL
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:670
+msgctxt "findreplacedialog-mobile|selection"
+msgid "C_urrent selection only"
+msgstr ""
+
+#. kXCyp
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:685
+msgctxt "findreplacedialog-mobile|regexp"
+msgid "Re_gular expressions"
+msgstr ""
+
+#. PHsrD
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:707
+msgctxt "findreplacedialog-mobile|attributes"
+msgid "Attribut_es..."
+msgstr ""
+
+#. GRaeC
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:721
+msgctxt "findreplacedialog-mobile|format"
+msgid "For_mat..."
+msgstr ""
+
+#. cx7u7
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:735
+msgctxt "findreplacedialog-mobile|noformat"
+msgid "_No Format"
+msgstr ""
+
+#. TnTGs
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:756
+msgctxt "findreplacedialog-mobile|layout"
+msgid "Search for st_yles"
+msgstr ""
+
+#. QZvqy
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:771
+msgctxt "findreplacedialog-mobile|includediacritics"
+msgid "Diac_ritic-sensitive"
+msgstr ""
+
+#. jgEBu
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:786
+msgctxt "findreplacedialog-mobile|includekashida"
+msgid "_Kashida-sensitive"
+msgstr ""
+
+#. HEtSQ
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:801
+msgctxt "findreplacedialog-mobile|matchcharwidth"
+msgid "Match character _width"
+msgstr ""
+
+#. PeENq
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:821
+msgctxt "findreplacedialog-mobile|similarity"
+msgid "S_imilarity search"
+msgstr ""
+
+#. BxPGW
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:837
+msgctxt "findreplacedialog-mobile|similaritybtn"
+msgid "Similarities..."
+msgstr ""
+
+#. z8Uiz
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:864
+msgctxt "findreplacedialog-mobile|soundslike"
+msgid "Sounds like (_Japanese)"
+msgstr ""
+
+#. e7EkJ
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:880
+msgctxt "findreplacedialog-mobile|soundslikebtn"
+msgid "Sounds..."
+msgstr ""
+
+#. ZvWKZ
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:906
+msgctxt "findreplacedialog-mobile|wildcard"
+msgid "Wil_dcards"
+msgstr ""
+
+#. jCtqG
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:922
+msgctxt "findreplacedialog-mobile|notes"
+msgid "_Comments"
+msgstr ""
+
+#. CABZs
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:944
+msgctxt "findreplacedialog-mobile|replace_backwards"
+msgid "Replace _backwards"
+msgstr ""
+
+#. EjXBb
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:980
+msgctxt "findreplacedialog-mobile|searchinlabel"
+msgid "Search i_n:"
+msgstr ""
+
+#. vHG2V
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:995
+msgctxt "findreplacedialog-mobile|calcsearchin"
+msgid "Formulas"
+msgstr ""
+
+#. BC8U6
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:996
+msgctxt "findreplacedialog-mobile|calcsearchin"
+msgid "Values"
+msgstr ""
+
+#. BkByZ
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:997
+msgctxt "findreplacedialog-mobile|calcsearchin"
+msgid "Notes"
+msgstr ""
+
+#. a8BE2
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1022
+msgctxt "findreplacedialog-mobile|searchdir"
+msgid "Direction:"
+msgstr ""
+
+#. GPC8q
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1039
+msgctxt "findreplacedialog-mobile|rows"
+msgid "Ro_ws"
+msgstr ""
+
+#. xCeTz
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1059
+msgctxt "findreplacedialog-mobile|cols"
+msgid "Colum_ns"
+msgstr ""
+
+#. fPE4f
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1106
+msgctxt "findreplacedialog-mobile|label3"
+msgid "Other _options"
+msgstr ""
+
#. 2B7FQ
#: svx/uiconfig/ui/findreplacedialog.ui:8
msgctxt "findreplacedialog|FindReplaceDialog"
msgid "Find and Replace"
msgstr "Etsi ja korvaa"
+#. 52T26
+#: svx/uiconfig/ui/findreplacedialog.ui:109
+msgctxt "findreplacedialog|extended_tip|searchterm"
+msgid "Enter the text that you want to find, or select a previous search from the list."
+msgstr ""
+
+#. qZujP
+#: svx/uiconfig/ui/findreplacedialog.ui:125
+msgctxt "findreplacedialog|extended_tip|searchlist"
+msgid "Enter the text that you want to find, or select a previous search from the list."
+msgstr ""
+
#. bathy
-#: svx/uiconfig/ui/findreplacedialog.ui:141
+#: svx/uiconfig/ui/findreplacedialog.ui:147
msgctxt "findreplacedialog|label4"
msgid "_Find:"
msgstr "Etsi:"
#. 75TZD
-#: svx/uiconfig/ui/findreplacedialog.ui:196
+#: svx/uiconfig/ui/findreplacedialog.ui:202
msgctxt "findreplacedialog|matchcase"
msgid "Ma_tch case"
msgstr "Sama kir_jainkoko"
+#. mMSX7
+#: svx/uiconfig/ui/findreplacedialog.ui:211
+msgctxt "findreplacedialog|extended_tip|matchcase"
+msgid "Distinguishes between uppercase and lowercase characters."
+msgstr ""
+
#. EP8P3
-#: svx/uiconfig/ui/findreplacedialog.ui:212
+#: svx/uiconfig/ui/findreplacedialog.ui:223
msgctxt "findreplacedialog|searchformatted"
msgid "For_matted display"
msgstr "Muotoiltu esitystapa"
-#. eTjvm
+#. vzB7B
#: svx/uiconfig/ui/findreplacedialog.ui:232
+msgctxt "findreplacedialog|extended_tip|searchformatted"
+msgid "Includes number formatting characters in the search."
+msgstr ""
+
+#. eTjvm
+#: svx/uiconfig/ui/findreplacedialog.ui:248
msgctxt "findreplacedialog|wholewords"
msgid "Whole wor_ds only"
msgstr "Vai_n kokonaiset sanat"
+#. FgEuC
+#: svx/uiconfig/ui/findreplacedialog.ui:257
+msgctxt "findreplacedialog|extended_tip|wholewords"
+msgid "Searches for whole words or cells that are identical to the search text."
+msgstr ""
+
#. wfECE
-#: svx/uiconfig/ui/findreplacedialog.ui:250
+#: svx/uiconfig/ui/findreplacedialog.ui:271
msgctxt "findreplacedialog|entirecells"
msgid "_Entire cells"
msgstr "Solun _koko sisältö"
#. EG6Fy
-#: svx/uiconfig/ui/findreplacedialog.ui:268
+#: svx/uiconfig/ui/findreplacedialog.ui:289
msgctxt "findreplacedialog|allsheets"
msgid "All _sheets"
msgstr "Kaikki taulukot"
-#. GzEGb
-#: svx/uiconfig/ui/findreplacedialog.ui:307
+#. L5FnC
+#: svx/uiconfig/ui/findreplacedialog.ui:328
msgctxt "findreplacedialog|label1"
-msgid "_Search For"
-msgstr "_Etsittävä"
+msgid "Search For"
+msgstr ""
+
+#. YCdJW
+#: svx/uiconfig/ui/findreplacedialog.ui:385
+msgctxt "findreplacedialog|extended_tip|replaceterm"
+msgid "Enter the replacement text, or select a recent replacement text or style from the list."
+msgstr "Kirjoitetaan korvaava teksti tai valitaan joku aiemmin käytetty teksti tai tyyli luettelosta."
+
+#. AB9nr
+#: svx/uiconfig/ui/findreplacedialog.ui:401
+msgctxt "findreplacedialog|extended_tip|replacelist"
+msgid "Enter the replacement text, or select a recent replacement text or style from the list."
+msgstr "Kirjoitetaan korvaava teksti tai valitaan joku aiemmin käytetty teksti tai tyyli luettelosta."
#. Dmocx
-#: svx/uiconfig/ui/findreplacedialog.ui:392
+#: svx/uiconfig/ui/findreplacedialog.ui:423
msgctxt "findreplacedialog|label5"
msgid "Re_place:"
msgstr "Korvaa:"
#. edBnK
-#: svx/uiconfig/ui/findreplacedialog.ui:433
+#: svx/uiconfig/ui/findreplacedialog.ui:464
msgctxt "findreplacedialog|label2"
msgid "Re_place With"
msgstr "Korvaa tekstillä"
#. GEGyE
-#: svx/uiconfig/ui/findreplacedialog.ui:459
+#: svx/uiconfig/ui/findreplacedialog.ui:490
msgctxt "findreplacedialog|searchall"
msgid "Find _All"
msgstr "Etsi k_aikki"
+#. aqct9
+#: svx/uiconfig/ui/findreplacedialog.ui:497
+msgctxt "findreplacedialog|extended_tip|searchall"
+msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)."
+msgstr "Etsitään ja merkitään valituiksi kaikki teksti- tai muotoiluosumat asiakirjassa (vain Writer- ja Calc-dokumenteissa)."
+
#. A3wE5
-#: svx/uiconfig/ui/findreplacedialog.ui:473
+#: svx/uiconfig/ui/findreplacedialog.ui:509
msgctxt "findreplacedialog|backsearch"
msgid "Find Pre_vious"
msgstr "Etsi edellinen"
+#. iuwJD
+#: svx/uiconfig/ui/findreplacedialog.ui:516
+msgctxt "findreplacedialog|extended_tip|backsearch"
+msgid "Finds and selects the previous occurrence of the text or format that you are searching for in the document."
+msgstr ""
+
#. PQ58E
-#: svx/uiconfig/ui/findreplacedialog.ui:487
+#: svx/uiconfig/ui/findreplacedialog.ui:528
msgctxt "findreplacedialog|search"
msgid "Find Ne_xt"
msgstr "Etsi seuraava"
+#. YCMFa
+#: svx/uiconfig/ui/findreplacedialog.ui:537
+msgctxt "findreplacedialog|extended_tip|search"
+msgid "Finds and selects the next occurrence of the text or format that you are searching for in the document."
+msgstr ""
+
#. ZLDbk
-#: svx/uiconfig/ui/findreplacedialog.ui:503
+#: svx/uiconfig/ui/findreplacedialog.ui:549
msgctxt "findreplacedialog|replace"
msgid "_Replace"
msgstr "_Korvaa"
+#. WEsqD
+#: svx/uiconfig/ui/findreplacedialog.ui:556
+msgctxt "findreplacedialog|extended_tip|replace"
+msgid "Replaces the selected text or format that you searched for, and then searches for the next occurrence."
+msgstr "Korvataan valittu teksti- tai muotoiluosuma ja jatketaan sitten seuraavaan esiintymään."
+
#. QBdSz
-#: svx/uiconfig/ui/findreplacedialog.ui:517
+#: svx/uiconfig/ui/findreplacedialog.ui:568
msgctxt "findreplacedialog|replaceall"
msgid "Replace A_ll"
msgstr "Kor_vaa kaikki"
+#. EhyYm
+#: svx/uiconfig/ui/findreplacedialog.ui:575
+msgctxt "findreplacedialog|extended_tip|replaceall"
+msgid "Replaces all of the occurrences of the text or format that you want to replace."
+msgstr ""
+
#. gRMJL
-#: svx/uiconfig/ui/findreplacedialog.ui:668
+#: svx/uiconfig/ui/findreplacedialog.ui:724
msgctxt "findreplacedialog|selection"
msgid "C_urrent selection only"
msgstr "_Vain nykyinen valinta"
+#. Fkfjb
+#: svx/uiconfig/ui/findreplacedialog.ui:733
+msgctxt "findreplacedialog|extended_tip|selection"
+msgid "Searches only the selected text or cells."
+msgstr ""
+
#. CwXAb
-#: svx/uiconfig/ui/findreplacedialog.ui:683
+#: svx/uiconfig/ui/findreplacedialog.ui:744
msgctxt "findreplacedialog|regexp"
msgid "Re_gular expressions"
msgstr "Säännölliset lausekkeet"
#. cX5ta
-#: svx/uiconfig/ui/findreplacedialog.ui:705
+#: svx/uiconfig/ui/findreplacedialog.ui:766
msgctxt "findreplacedialog|attributes"
msgid "Attribut_es..."
msgstr "Määritteet..."
#. QoKEH
-#: svx/uiconfig/ui/findreplacedialog.ui:719
+#: svx/uiconfig/ui/findreplacedialog.ui:780
msgctxt "findreplacedialog|format"
msgid "For_mat..."
msgstr "M_uotoilu..."
+#. Eaomj
+#: svx/uiconfig/ui/findreplacedialog.ui:787
+msgctxt "findreplacedialog|extended_tip|format"
+msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics."
+msgstr ""
+
#. C4Co9
-#: svx/uiconfig/ui/findreplacedialog.ui:733
+#: svx/uiconfig/ui/findreplacedialog.ui:799
msgctxt "findreplacedialog|noformat"
msgid "_No Format"
msgstr "Ei _muotoilua"
#. G7NEP
-#: svx/uiconfig/ui/findreplacedialog.ui:754
+#: svx/uiconfig/ui/findreplacedialog.ui:820
msgctxt "findreplacedialog|layout"
msgid "Search for st_yles"
msgstr "Etsittävät t_yylit"
-#. G6whe
-#: svx/uiconfig/ui/findreplacedialog.ui:769
+#. JEwqr
+#: svx/uiconfig/ui/findreplacedialog.ui:829
+msgctxt "findreplacedialog|extended_tip|layout"
+msgid "Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Find list. To specify a replacement style, select a style from the Replace list."
+msgstr ""
+
+#. wjEUp
+#: svx/uiconfig/ui/findreplacedialog.ui:840
msgctxt "findreplacedialog|includediacritics"
-msgid "Diac_ritic-sensitive"
+msgid "Diacritic-_sensitive"
msgstr "Huomioi tarkkeet"
#. J8Zou
-#: svx/uiconfig/ui/findreplacedialog.ui:784
+#: svx/uiconfig/ui/findreplacedialog.ui:855
msgctxt "findreplacedialog|includekashida"
msgid "_Kashida-sensitive"
msgstr "Huomioi kashidat"
#. AtLV3
-#: svx/uiconfig/ui/findreplacedialog.ui:799
+#: svx/uiconfig/ui/findreplacedialog.ui:870
msgctxt "findreplacedialog|matchcharwidth"
msgid "Match character _width"
msgstr "Täsmäytä puoli- ja täysleveät muodot"
+#. uauDF
+#: svx/uiconfig/ui/findreplacedialog.ui:879
+msgctxt "findreplacedialog|extended_tip|matchcharwidth"
+msgid "Distinguishes between half-width and full-width character forms."
+msgstr "Erotellaan puoli- ja täysleveät merkkimuodot toisistaan."
+
#. WCsiC
-#: svx/uiconfig/ui/findreplacedialog.ui:819
+#: svx/uiconfig/ui/findreplacedialog.ui:895
msgctxt "findreplacedialog|similarity"
msgid "S_imilarity search"
msgstr "Vastaavuus_haku"
+#. 9Div9
+#: svx/uiconfig/ui/findreplacedialog.ui:904
+msgctxt "findreplacedialog|extended_tip|similarity"
+msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options."
+msgstr ""
+
#. mKiVJ
-#: svx/uiconfig/ui/findreplacedialog.ui:835
+#: svx/uiconfig/ui/findreplacedialog.ui:916
msgctxt "findreplacedialog|similaritybtn"
msgid "Similarities..."
msgstr "Samankaltaisuudet..."
+#. 4MK8M
+#: svx/uiconfig/ui/findreplacedialog.ui:925
+msgctxt "findreplacedialog|extended_tip|similaritybtn"
+msgid "Set the options for the similarity search."
+msgstr "Asetetaan vastaavuushaun ehtoja."
+
#. pc7dE
-#: svx/uiconfig/ui/findreplacedialog.ui:862
+#: svx/uiconfig/ui/findreplacedialog.ui:948
msgctxt "findreplacedialog|soundslike"
msgid "Sounds like (_Japanese)"
msgstr "Samankuuloinen kuin (japani)"
+#. 2Sw86
+#: svx/uiconfig/ui/findreplacedialog.ui:957
+msgctxt "findreplacedialog|extended_tip|soundslike"
+msgid "Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the Sounds button to specify the search options."
+msgstr "Voidaan määritellä japanin kielessä hakuehtoja samantapaisille merkinnöille. Kun ruutu on merkitty, valitaan ... -painike ja määritellään haun ehtoja. "
+
#. ak55F
-#: svx/uiconfig/ui/findreplacedialog.ui:878
+#: svx/uiconfig/ui/findreplacedialog.ui:969
msgctxt "findreplacedialog|soundslikebtn"
msgid "Sounds..."
msgstr "Äänteet..."
+#. 86WMC
+#: svx/uiconfig/ui/findreplacedialog.ui:978
+msgctxt "findreplacedialog|extended_tip|soundslikebtn"
+msgid "Sets the search options for similar notation used in Japanese text."
+msgstr "Asetetaan hakuehtoja japanin kielen samankaltaisten merkintöjen pohjalta."
+
#. R2bHb
-#: svx/uiconfig/ui/findreplacedialog.ui:904
+#: svx/uiconfig/ui/findreplacedialog.ui:1000
msgctxt "findreplacedialog|wildcard"
msgid "Wil_dcards"
msgstr "Jokerimerkit"
#. Eyo7o
-#: svx/uiconfig/ui/findreplacedialog.ui:920
+#: svx/uiconfig/ui/findreplacedialog.ui:1016
msgctxt "findreplacedialog|notes"
msgid "_Comments"
msgstr "Huomautukset"
+#. z68pk
+#: svx/uiconfig/ui/findreplacedialog.ui:1025
+msgctxt "findreplacedialog|extended_tip|notes"
+msgid "In Writer, you can select to include the comment texts in your searches."
+msgstr "Writerissa voidaan valita huomautusten tekstit sisällytettäviksi hakuun."
+
#. hj5vn
-#: svx/uiconfig/ui/findreplacedialog.ui:942
+#: svx/uiconfig/ui/findreplacedialog.ui:1043
msgctxt "findreplacedialog|replace_backwards"
msgid "Replace _backwards"
msgstr "Korvaa taaksepäin"
+#. qrgkN
+#: svx/uiconfig/ui/findreplacedialog.ui:1052
+msgctxt "findreplacedialog|extended_tip|replace_backwards"
+msgid "Search starts at the current cursor position and goes backwards to the beginning of the file."
+msgstr ""
+
#. t4J9E
-#: svx/uiconfig/ui/findreplacedialog.ui:978
+#: svx/uiconfig/ui/findreplacedialog.ui:1084
msgctxt "findreplacedialog|searchinlabel"
msgid "Search i_n:"
msgstr "_Etsi kohteesta:"
#. GGhEA
-#: svx/uiconfig/ui/findreplacedialog.ui:993
+#: svx/uiconfig/ui/findreplacedialog.ui:1099
msgctxt "findreplacedialog|calcsearchin"
msgid "Formulas"
msgstr "Kaavat"
#. bpBeC
-#: svx/uiconfig/ui/findreplacedialog.ui:994
+#: svx/uiconfig/ui/findreplacedialog.ui:1100
msgctxt "findreplacedialog|calcsearchin"
msgid "Values"
msgstr "Arvot"
#. zSUYq
-#: svx/uiconfig/ui/findreplacedialog.ui:995
+#: svx/uiconfig/ui/findreplacedialog.ui:1101
msgctxt "findreplacedialog|calcsearchin"
msgid "Comments"
msgstr "Huomautukset"
#. K4WuW
-#: svx/uiconfig/ui/findreplacedialog.ui:1020
+#: svx/uiconfig/ui/findreplacedialog.ui:1126
msgctxt "findreplacedialog|searchdir"
msgid "Direction:"
msgstr "Suunta:"
#. p2HBA
-#: svx/uiconfig/ui/findreplacedialog.ui:1037
+#: svx/uiconfig/ui/findreplacedialog.ui:1143
msgctxt "findreplacedialog|rows"
msgid "Ro_ws"
msgstr "_Rivit"
#. uib5F
-#: svx/uiconfig/ui/findreplacedialog.ui:1057
+#: svx/uiconfig/ui/findreplacedialog.ui:1163
msgctxt "findreplacedialog|cols"
msgid "Colum_ns"
msgstr "Sarakkeet"
#. Q6fG8
-#: svx/uiconfig/ui/findreplacedialog.ui:1104
+#: svx/uiconfig/ui/findreplacedialog.ui:1210
msgctxt "findreplacedialog|label3"
msgid "Other _options"
msgstr "Muut valinnat"
+#. CPpFA
+#: svx/uiconfig/ui/findreplacedialog.ui:1217
+msgctxt "findreplacedialog|extended_tip|label3"
+msgid "Shows more or fewer search options. Click this label again to hide the extended search options."
+msgstr ""
+
+#. YpLau
+#: svx/uiconfig/ui/findreplacedialog.ui:1253
+msgctxt "findreplacedialog|extended_tip|FindReplaceDialog"
+msgid "Finds or replaces text or formats in the current document."
+msgstr ""
+
#. j63XL
#: svx/uiconfig/ui/floatingareastyle.ui:57
msgctxt "floatingareastyle|label1"
@@ -14975,101 +16496,203 @@ msgid "Contour Editor"
msgstr "Ääriviivaeditori"
#. kFDBb
-#: svx/uiconfig/ui/floatingcontour.ui:44
+#: svx/uiconfig/ui/floatingcontour.ui:41
msgctxt "floatingcontour|statuscolor"
msgid "Color"
msgstr "Väri"
#. 5AhLE
-#: svx/uiconfig/ui/floatingcontour.ui:161
+#: svx/uiconfig/ui/floatingcontour.ui:158
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Käytä"
+#. nEeWF
+#: svx/uiconfig/ui/floatingcontour.ui:162
+msgctxt "floatingcontour|extended_tip|TBI_APPLY"
+msgid "Applies the contour to the selected object."
+msgstr "Käytetään valittuun objektiin ääriviivaa."
+
#. 5LMTC
-#: svx/uiconfig/ui/floatingcontour.ui:184
+#: svx/uiconfig/ui/floatingcontour.ui:186
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Työtila"
+#. AG2Cz
+#: svx/uiconfig/ui/floatingcontour.ui:190
+msgctxt "floatingcontour|extended_tip|TBI_WORKPLACE"
+msgid "Deletes the custom contour. Click here, and then click in the preview area."
+msgstr "Poistetaan mukautettu ääriviiva. Napsautetaan ensin tässä ja sitten napsautetaan esikatselualuetta."
+
#. qesJi
-#: svx/uiconfig/ui/floatingcontour.ui:207
+#: svx/uiconfig/ui/floatingcontour.ui:214
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Valitse"
+#. S2yDP
+#: svx/uiconfig/ui/floatingcontour.ui:218
+msgctxt "floatingcontour|extended_tip|TBI_SELECT"
+msgid "Changes to selection mode, so that you can select the contour."
+msgstr "Vaihdetaan valintatilaan, jossa ääriviiva voidaan valita."
+
#. NZzCK
-#: svx/uiconfig/ui/floatingcontour.ui:220
+#: svx/uiconfig/ui/floatingcontour.ui:232
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Suorakulmio"
+#. XF9CF
+#: svx/uiconfig/ui/floatingcontour.ui:236
+msgctxt "floatingcontour|extended_tip|TBI_RECT"
+msgid "Draws a rectangular contour where you drag in the object preview. To draw a square, hold down Shift while you drag."
+msgstr "Piirretään suorakulmainen ääriviiva vetämällä objektin esikatselualueelle. Neliön piirtämiseksi painetaan Vaihto-näppäintä vedettäessä."
+
#. F6orK
-#: svx/uiconfig/ui/floatingcontour.ui:233
+#: svx/uiconfig/ui/floatingcontour.ui:250
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipsi"
+#. pCBdN
+#: svx/uiconfig/ui/floatingcontour.ui:254
+msgctxt "floatingcontour|extended_tip|TBI_CIRCLE"
+msgid "Draws an oval contour where you drag in the object preview."
+msgstr "Piirretään valittuun kohtaan dialle vetämällä soikion ääriviiva."
+
#. 38Cmn
-#: svx/uiconfig/ui/floatingcontour.ui:246
+#: svx/uiconfig/ui/floatingcontour.ui:268
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Monikulmio"
+#. AGdHQ
+#: svx/uiconfig/ui/floatingcontour.ui:272
+msgctxt "floatingcontour|extended_tip|TBI_POLY"
+msgid "Draws a closed contour consisting of straight line segments. Click where you want to start the polygon, and drag to draw a line segment. Click again to define the end of the line segment, and continue clicking to define the remaining line segments of the polygon. Double-click to finish drawing the polygon. To constrain the polygon to angles of 45 degree, hold down Shift when you click."
+msgstr "Piirretään suljettu ääriviiva, joka koostuu suorista monikulmion sivuista. Napsautetaan monikulmion alkukohdassa ja piirretään sivu vetämällä. Napsautetaan uudestaan sivun loppupisteen määrittämiseksi. Tämä jälkeen piirretään vetämällä ja napsauttamalla loput monikulmion sivut. Kaksoisnapsautus viimeistelee monikulmion piirtämisen. Painamalla Vaihto-näppäintä vedettäessä, viivan suunta rajoittuu 45 asteen kerrannaisiin."
+
#. 2MqpD
-#: svx/uiconfig/ui/floatingcontour.ui:269
+#: svx/uiconfig/ui/floatingcontour.ui:296
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Muokkaa pisteitä"
+#. W7PxN
+#: svx/uiconfig/ui/floatingcontour.ui:300
+msgctxt "floatingcontour|extended_tip|TBI_POLYEDIT"
+msgid "Lets you change the shape of the contour. Click here, and then drag the handles of the contour."
+msgstr "Muutetaan ääriviivan muotoa. Napsautetaan ensin tätä kuvaketta ja vedetään sitten ääriviivan kahvoista."
+
#. krTiK
-#: svx/uiconfig/ui/floatingcontour.ui:282
+#: svx/uiconfig/ui/floatingcontour.ui:314
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Siirrä pisteitä"
+#. RGiWu
+#: svx/uiconfig/ui/floatingcontour.ui:318
+msgctxt "floatingcontour|extended_tip|TBI_POLYMOVE"
+msgid "Lets you drag the handles of the contour to change the shape of the contour."
+msgstr "Vedetään kahvoista ääriviivan muodon muuttamiseksi."
+
#. ZbN5c
-#: svx/uiconfig/ui/floatingcontour.ui:295
+#: svx/uiconfig/ui/floatingcontour.ui:332
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Lisää pisteitä"
+#. LPYnV
+#: svx/uiconfig/ui/floatingcontour.ui:336
+msgctxt "floatingcontour|extended_tip|TBI_POLYINSERT"
+msgid "Inserts a handle that you can drag to change the shape of the contour. Click here, and then click on the contour outline."
+msgstr "Lisätään kahva, jota vetämällä ääriviivan muotoa voidaan muuttaa. Napsautetaan ensin tätä kuvaketta ja napsautetaan sitten ääriviivaa."
+
#. qLVG9
-#: svx/uiconfig/ui/floatingcontour.ui:308
+#: svx/uiconfig/ui/floatingcontour.ui:350
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Poista pisteet"
+#. 9Foex
+#: svx/uiconfig/ui/floatingcontour.ui:354
+msgctxt "floatingcontour|extended_tip|TBI_POLYDELETE"
+msgid "Removes a point from the contour outline. Click here, and then click the point that you want to delete."
+msgstr "Poistetaan piste ääriviivasta. Napsautetaan ensin tätä kuvaketta ja napsautetaan sitten poistettavaa pistettä."
+
#. YU8oB
-#: svx/uiconfig/ui/floatingcontour.ui:330
+#: svx/uiconfig/ui/floatingcontour.ui:377
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Automaattinen ääriviiva"
+#. Udp62
+#: svx/uiconfig/ui/floatingcontour.ui:382
+msgctxt "floatingcontour|extended_tip|TBI_AUTOCONTOUR"
+msgid "Automatically draws a contour around the object that you can edit."
+msgstr "Objektille piirtyy muokattavissa oleva ääriviiva."
+
#. DxL3U
-#: svx/uiconfig/ui/floatingcontour.ui:354
+#: svx/uiconfig/ui/floatingcontour.ui:406
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Kumoa "
+#. FMmZZ
+#: svx/uiconfig/ui/floatingcontour.ui:410
+msgctxt "floatingcontour|extended_tip|TBI_UNDO"
+msgid "Reverses the last action."
+msgstr "Peruutetaan viimeisin toiminto."
+
#. qmc4k
-#: svx/uiconfig/ui/floatingcontour.ui:367
+#: svx/uiconfig/ui/floatingcontour.ui:424
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Tee uudelleen"
+#. B2hrL
+#: svx/uiconfig/ui/floatingcontour.ui:428
+msgctxt "floatingcontour|extended_tip|TBI_REDO"
+msgid "Reverses the action of the last Undo command."
+msgstr "Peruutetaan viimeisin Kumoa-komento."
+
#. eBWRW
-#: svx/uiconfig/ui/floatingcontour.ui:380
+#: svx/uiconfig/ui/floatingcontour.ui:442
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipetti"
+#. A6v7a
+#: svx/uiconfig/ui/floatingcontour.ui:446
+msgctxt "floatingcontour|extended_tip|TBI_PIPETTE"
+msgid "Selects the parts of the bitmap that are the same color. Click here, and then click a color in the bitmap. To increase the color range that is selected, increase the value in the Tolerance box."
+msgstr "Valitaan bittikarttakuvan samanväriset alueet. Napsautetaan ensin tätä kuvaketta ja napsautetaan sitten bittikarttakuvaa. Valitun sävyalueen laajentamiseksi lisätään Väritoleranssi-ruudun arvoa."
+
#. vRR3B
-#: svx/uiconfig/ui/floatingcontour.ui:398
+#: svx/uiconfig/ui/floatingcontour.ui:465
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Väritoleranssi"
+#. o4Dxq
+#: svx/uiconfig/ui/floatingcontour.ui:469
+msgctxt "floatingcontour|extended_tip|spinbutton"
+msgid "Enter the color tolerance for the Color Replacer as a percentage. To increase the color range that the Color Replacer selects, enter a high percentage."
+msgstr "Annetaan värinvalitsimen käyttämä väritoleranssi arvo prosentteina. Värinvalitsimen valinnan värikirjo tulee kattavammaksi kasvattamalla prosenttilukua."
+
+#. CFqCa
+#: svx/uiconfig/ui/floatingcontour.ui:509
+msgctxt "floatingcontour|extended_tip|container"
+msgid "Displays a preview of the contour."
+msgstr "Esikatsellaan valittu ääriviiva."
+
+#. K5FKA
+#: svx/uiconfig/ui/floatingcontour.ui:540
+msgctxt "floatingcontour|extended_tip|FloatingContour"
+msgid "Changes the contour of the selected object. %PRODUCTNAME uses the contour when determining the text wrap options for the object."
+msgstr "Muutetaan valitun objektin ääriviivaa. %PRODUCTNAME käyttää tätä ääriviivaa objektin kohdalla tekstin rivityksen asetuksiin."
+
#. zn8AW
#: svx/uiconfig/ui/floatinglineproperty.ui:55
msgctxt "floatinglineproperty|label1"
@@ -15232,74 +16855,62 @@ msgctxt "formnavimenu|new"
msgid "_New"
msgstr "_Uusi"
-#. mGGBS
-#: svx/uiconfig/ui/formnavimenu.ui:22
-msgctxt "formnavimenu|form"
-msgid "Form"
-msgstr "Lomake"
-
-#. rEpSY
-#: svx/uiconfig/ui/formnavimenu.ui:30
-msgctxt "formnavimenu|hidden"
-msgid "Hidden Control"
-msgstr "Piilotettu ohjausobjekti"
-
#. M2EPw
-#: svx/uiconfig/ui/formnavimenu.ui:42
+#: svx/uiconfig/ui/formnavimenu.ui:26
msgctxt "formnavimenu|change"
msgid "Replace with"
msgstr "Korvaa objektilla"
#. fUsYD
-#: svx/uiconfig/ui/formnavimenu.ui:50
+#: svx/uiconfig/ui/formnavimenu.ui:40
msgctxt "formnavimenu|cut"
msgid "Cu_t"
msgstr "Leikkaa"
#. aJG4y
-#: svx/uiconfig/ui/formnavimenu.ui:58
+#: svx/uiconfig/ui/formnavimenu.ui:48
msgctxt "formnavimenu|copy"
msgid "_Copy"
msgstr "Kopioi"
#. 9cNjB
-#: svx/uiconfig/ui/formnavimenu.ui:66
+#: svx/uiconfig/ui/formnavimenu.ui:56
msgctxt "formnavimenu|paste"
msgid "_Paste"
msgstr "Liitä"
#. CBM3m
-#: svx/uiconfig/ui/formnavimenu.ui:74
+#: svx/uiconfig/ui/formnavimenu.ui:64
msgctxt "formnavimenu|delete"
msgid "_Delete"
msgstr "Poista"
#. mAEnN
-#: svx/uiconfig/ui/formnavimenu.ui:82
+#: svx/uiconfig/ui/formnavimenu.ui:72
msgctxt "formnavimenu|taborder"
msgid "Tab Order..."
msgstr "Sarkainjärjestys..."
#. Zjtdb
-#: svx/uiconfig/ui/formnavimenu.ui:90
+#: svx/uiconfig/ui/formnavimenu.ui:80
msgctxt "formnavimenu|rename"
msgid "_Rename"
msgstr "Nimeä uudelleen"
#. T7dN7
-#: svx/uiconfig/ui/formnavimenu.ui:98
+#: svx/uiconfig/ui/formnavimenu.ui:88
msgctxt "formnavimenu|props"
msgid "Propert_ies"
msgstr "Ominaisuudet"
#. E4cAk
-#: svx/uiconfig/ui/formnavimenu.ui:106
+#: svx/uiconfig/ui/formnavimenu.ui:96
msgctxt "formnavimenu|designmode"
msgid "Open in Design Mode"
msgstr "Avaa suunnittelutilassa"
#. hDzDd
-#: svx/uiconfig/ui/formnavimenu.ui:114
+#: svx/uiconfig/ui/formnavimenu.ui:104
msgctxt "formnavimenu|controlfocus"
msgid "Automatic Control Focus"
msgstr "Automaattinen kohdistuksen ohjaus"
@@ -15509,131 +17120,245 @@ msgid "Footer"
msgstr "Alatunniste"
#. TZUZQ
-#: svx/uiconfig/ui/imapdialog.ui:148
+#: svx/uiconfig/ui/imapdialog.ui:145
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Käytä"
+#. QH65f
+#: svx/uiconfig/ui/imapdialog.ui:149
+msgctxt "imapdialog|extended_tip|TBI_APPLY"
+msgid "Applies the changes that you made to the image map."
+msgstr "Kuvakarttaan tehdyt muutokset otetaan käyttöön."
+
#. HG5FA
-#: svx/uiconfig/ui/imapdialog.ui:161
+#: svx/uiconfig/ui/imapdialog.ui:163
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Avaa..."
+#. BBFxi
+#: svx/uiconfig/ui/imapdialog.ui:167
+msgctxt "imapdialog|extended_tip|TBI_OPEN"
+msgid "Loads an existing image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format."
+msgstr ""
+
#. FhXsi
-#: svx/uiconfig/ui/imapdialog.ui:174
+#: svx/uiconfig/ui/imapdialog.ui:181
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Tallenna..."
+#. znbDS
+#: svx/uiconfig/ui/imapdialog.ui:185
+msgctxt "imapdialog|extended_tip|TBI_SAVEAS"
+msgid "Saves the image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format."
+msgstr ""
+
#. zicE4
-#: svx/uiconfig/ui/imapdialog.ui:187
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Sulje"
#. jYnn6
-#: svx/uiconfig/ui/imapdialog.ui:199
+#: svx/uiconfig/ui/imapdialog.ui:211
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Valitse"
+#. eFg49
+#: svx/uiconfig/ui/imapdialog.ui:215
+msgctxt "imapdialog|extended_tip|TBI_SELECT"
+msgid "Selects a hotspot in the image map for editing."
+msgstr "Valitaan kuvakartan avainalue muokattavaksi."
+
#. MNb9P
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:229
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Suorakulmio"
+#. EYDzs
+#: svx/uiconfig/ui/imapdialog.ui:233
+msgctxt "imapdialog|extended_tip|TBI_RECT"
+msgid "Draws a rectangular hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open."
+msgstr ""
+
#. CxNuP
-#: svx/uiconfig/ui/imapdialog.ui:225
+#: svx/uiconfig/ui/imapdialog.ui:247
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipsi"
+#. UEtoB
+#: svx/uiconfig/ui/imapdialog.ui:251
+msgctxt "imapdialog|extended_tip|TBI_CIRCLE"
+msgid "Draws an elliptical hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open."
+msgstr ""
+
#. SGPH5
-#: svx/uiconfig/ui/imapdialog.ui:238
+#: svx/uiconfig/ui/imapdialog.ui:265
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Monikulmio"
+#. DCcTE
+#: svx/uiconfig/ui/imapdialog.ui:269
+msgctxt "imapdialog|extended_tip|TBI_POLY"
+msgid "Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open."
+msgstr ""
+
#. zUUCB
-#: svx/uiconfig/ui/imapdialog.ui:251
+#: svx/uiconfig/ui/imapdialog.ui:283
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Vapaamuotoinen monikulmio"
+#. jqx5a
+#: svx/uiconfig/ui/imapdialog.ui:287
+msgctxt "imapdialog|extended_tip|TBI_FREEPOLY"
+msgid "Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open."
+msgstr ""
+
#. kG6AK
-#: svx/uiconfig/ui/imapdialog.ui:264
+#: svx/uiconfig/ui/imapdialog.ui:301
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Muokkaa pisteitä"
+#. vjFcb
+#: svx/uiconfig/ui/imapdialog.ui:305
+msgctxt "imapdialog|extended_tip|TBI_POLYEDIT"
+msgid "Lets you change the shape of the selected hotspot by editing the anchor points."
+msgstr "Muutetaan valitun kuuman alueen muotoa muokkaamalla nurkkapisteitä."
+
#. 2oDGD
-#: svx/uiconfig/ui/imapdialog.ui:277
+#: svx/uiconfig/ui/imapdialog.ui:319
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Siirrä pisteitä"
+#. ZEetx
+#: svx/uiconfig/ui/imapdialog.ui:323
+msgctxt "imapdialog|extended_tip|TBI_POLYMOVE"
+msgid "Lets you move the individual anchor points of the selected hotspot."
+msgstr "Siirretään yksittäistä, valitun kuuman alueen kulmapistettä."
+
#. c9fFa
-#: svx/uiconfig/ui/imapdialog.ui:290
+#: svx/uiconfig/ui/imapdialog.ui:337
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Lisää pisteitä"
+#. 77x67
+#: svx/uiconfig/ui/imapdialog.ui:341
+msgctxt "imapdialog|extended_tip|TBI_POLYINSERT"
+msgid "Adds an anchor point where you click on the outline of the hotspot."
+msgstr "Lisätään kulmapiste napsauttamalla kuuman alueen suunnitellulla ääriviivalla."
+
#. tuCNB
-#: svx/uiconfig/ui/imapdialog.ui:303
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Poista pisteet"
+#. 6FfFj
+#: svx/uiconfig/ui/imapdialog.ui:359
+msgctxt "imapdialog|extended_tip|TBI_POLYDELETE"
+msgid "Deletes the selected anchor point."
+msgstr "Poistetaan valittu kulmapiste."
+
#. TcAdh
-#: svx/uiconfig/ui/imapdialog.ui:316
+#: svx/uiconfig/ui/imapdialog.ui:373
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Kumoa "
#. UnkbT
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:386
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Tee uudelleen"
#. bc2XY
-#: svx/uiconfig/ui/imapdialog.ui:342
+#: svx/uiconfig/ui/imapdialog.ui:399
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiivinen"
+#. S7JcF
+#: svx/uiconfig/ui/imapdialog.ui:403
+msgctxt "imapdialog|extended_tip|TBI_ACTIVE"
+msgid "Disables or enables the hyperlink for the selected hotspot. A disabled hotspot is transparent."
+msgstr "Poistetaan käytöstä tai otetaan käyttöön valitun avainalueen hyperlinkki. Käyttämätön kuuma alue on läpinäkyvä."
+
#. AjSFD
-#: svx/uiconfig/ui/imapdialog.ui:355
+#: svx/uiconfig/ui/imapdialog.ui:417
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makrot..."
+#. AhhJV
+#: svx/uiconfig/ui/imapdialog.ui:421
+msgctxt "imapdialog|extended_tip|TBI_MACRO"
+msgid "Lets you assign a macro that runs when you click the selected hotspot in a browser."
+msgstr "Kytketään makro, joka käynnistyy, kun kuuma alue valitaan selaimessa."
+
#. WS3NJ
-#: svx/uiconfig/ui/imapdialog.ui:368
+#: svx/uiconfig/ui/imapdialog.ui:435
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Ominaisuudet..."
+#. CBpCj
+#: svx/uiconfig/ui/imapdialog.ui:439
+msgctxt "imapdialog|extended_tip|TBI_PROPERTY"
+msgid "Allows you to define the properties of the selected hotspot."
+msgstr "Valinnalla voi määritellä valitun avainalueen ominaisuuksia."
+
#. r8L58
-#: svx/uiconfig/ui/imapdialog.ui:394
+#: svx/uiconfig/ui/imapdialog.ui:466
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Osoite:"
#. KFcWk
-#: svx/uiconfig/ui/imapdialog.ui:415
+#: svx/uiconfig/ui/imapdialog.ui:487
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Kehys:"
+#. iEBEB
+#: svx/uiconfig/ui/imapdialog.ui:504
+msgctxt "imapdialog|extended_tip|text"
+msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser."
+msgstr ""
+
#. 5BPAy
-#: svx/uiconfig/ui/imapdialog.ui:464
+#: svx/uiconfig/ui/imapdialog.ui:541
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Teksti:"
+#. DoDLD
+#: svx/uiconfig/ui/imapdialog.ui:563
+msgctxt "imapdialog|extended_tip|url"
+msgid "Enter the URL for the file that you want to open when you click the selected hotspot."
+msgstr ""
+
+#. CnDFH
+#: svx/uiconfig/ui/imapdialog.ui:603
+msgctxt "imapdialog|extended_tip|container"
+msgid "Displays the image map, so that you can click and edit the hotspots."
+msgstr "Kuvakartta esitetään niin, että avainkohtia voi napsauttaa ja muokata."
+
+#. FkpS8
+#: svx/uiconfig/ui/imapdialog.ui:634
+msgctxt "imapdialog|extended_tip|ImapDialog"
+msgid "Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots."
+msgstr ""
+
#. aHyrG
#: svx/uiconfig/ui/imapmenu.ui:12
msgctxt "imapmenu|url"
@@ -15694,17 +17419,17 @@ msgctxt "imapmenu|delete"
msgid "_Delete"
msgstr "Poista"
-#. 3bV69
-#: svx/uiconfig/ui/inspectortextpanel.ui:27
-msgctxt "inspectortextpanel|fontnamelabel"
-msgid "Font Name"
-msgstr "Fontin nimi"
+#. HbmVD
+#: svx/uiconfig/ui/inspectortextpanel.ui:61
+msgctxt "inspectortextpanel|property"
+msgid "Properties"
+msgstr "Ominaisuudet"
-#. Tza4X
-#: svx/uiconfig/ui/inspectortextpanel.ui:95
-msgctxt "inspectortextpanel|fontsizelabel"
-msgid "Font Size"
-msgstr "Fonttikoko"
+#. RyWCg
+#: svx/uiconfig/ui/inspectortextpanel.ui:77
+msgctxt "inspectortextpanel|value"
+msgid "Values"
+msgstr "Arvot"
#. kCqGA
#: svx/uiconfig/ui/lightingwindow.ui:58
@@ -15761,7 +17486,7 @@ msgid "_Ask when linking a graphic"
msgstr "Kysy linkitettäessä kuvaa"
#. GFDF2
-#: svx/uiconfig/ui/mediaplayback.ui:22
+#: svx/uiconfig/ui/mediaplayback.ui:20
msgctxt "mediaplayback|label1"
msgid "Playback:"
msgstr "Toisto:"
@@ -15773,7 +17498,7 @@ msgid "Seek:"
msgstr "Haku:"
#. VVSDZ
-#: svx/uiconfig/ui/mediaplayback.ui:50
+#: svx/uiconfig/ui/mediaplayback.ui:52
msgctxt "mediaplayback|label3"
msgid "Volume:"
msgstr "Äänenvoimakkuus:"
@@ -15785,173 +17510,335 @@ msgid "Namespaces for Forms"
msgstr "Lomakkeiden nimiavaruudet"
#. WaBQW
-#: svx/uiconfig/ui/namespacedialog.ui:119
+#: svx/uiconfig/ui/namespacedialog.ui:116
msgctxt "namespacedialog|add"
msgid "_Add..."
msgstr "Lisää..."
+#. XwHs9
+#: svx/uiconfig/ui/namespacedialog.ui:123
+msgctxt "namespacedialog|extended_tip|add"
+msgid "Adds a new namespace to the list."
+msgstr "Lisätään uusi nimiavaruus luetteloon."
+
#. PQJdj
-#: svx/uiconfig/ui/namespacedialog.ui:133
+#: svx/uiconfig/ui/namespacedialog.ui:135
msgctxt "namespacedialog|edit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. sxDyG
+#: svx/uiconfig/ui/namespacedialog.ui:142
+msgctxt "namespacedialog|extended_tip|edit"
+msgid "Edits the selected namespace."
+msgstr "Muokataan valittua nimiavaruutta."
+
+#. 6EYf8
+#: svx/uiconfig/ui/namespacedialog.ui:161
+msgctxt "namespacedialog|extended_tip|delete"
+msgid "Deletes the selected namespace."
+msgstr "Valittu nimiavaruus poistetaan."
+
#. VNMFK
-#: svx/uiconfig/ui/namespacedialog.ui:190
+#: svx/uiconfig/ui/namespacedialog.ui:201
msgctxt "namespacedialog|prefix"
msgid "Prefix"
msgstr "Etuliite"
#. AZm4M
-#: svx/uiconfig/ui/namespacedialog.ui:203
+#: svx/uiconfig/ui/namespacedialog.ui:214
msgctxt "namespacedialog|url"
msgid "URL"
msgstr "URL-osoite"
+#. c6DzL
+#: svx/uiconfig/ui/namespacedialog.ui:225
+msgctxt "namespacedialog|extended_tip|namespaces"
+msgid "Lists the currently defined namespaces for the form."
+msgstr "Luettelossa on lomakkeen nykyisin määritellyt nimiavaruudet."
+
#. 7hgpE
-#: svx/uiconfig/ui/namespacedialog.ui:228
+#: svx/uiconfig/ui/namespacedialog.ui:244
msgctxt "namespacedialog|label1"
msgid "Namespaces"
msgstr "Nimiavaruudet"
+#. HD9wB
+#: svx/uiconfig/ui/navigationbar.ui:128
+msgctxt "navigationbar|first"
+msgid "First"
+msgstr "Ensimmäinen"
+
+#. mX6CE
+#: svx/uiconfig/ui/navigationbar.ui:149
+msgctxt "navigationbar|prev"
+msgid "Previous"
+msgstr "Edellinen"
+
+#. ggpok
+#: svx/uiconfig/ui/navigationbar.ui:170
+msgctxt "navigationbar|next"
+msgid "Next"
+msgstr "Seuraava"
+
+#. E3c7E
+#: svx/uiconfig/ui/navigationbar.ui:190
+msgctxt "navigationbar|last"
+msgid "Last"
+msgstr "Viimeinen"
+
+#. GbURX
+#: svx/uiconfig/ui/navigationbar.ui:210
+msgctxt "navigationbar|new"
+msgid "New"
+msgstr "Uusi"
+
#. Z8rca
#: svx/uiconfig/ui/optgridpage.ui:74
msgctxt "optgridpage|usegridsnap"
msgid "_Snap to grid"
msgstr "Kohdista ruudukkoon"
+#. bYzG9
+#: svx/uiconfig/ui/optgridpage.ui:83
+msgctxt "extended_tip|usegridsnap"
+msgid "Specifies whether to move frames, drawing elements, and controls only between grid points."
+msgstr "Merkitsemällä määrätään, että kehyksiä, piirroselementtejä tai ohjausobjekteja siirretään vain ruudukon pisteiden välillä."
+
#. nQZB9
-#: svx/uiconfig/ui/optgridpage.ui:89
+#: svx/uiconfig/ui/optgridpage.ui:94
msgctxt "optgridpage|gridvisible"
msgid "_Visible grid"
msgstr "Näkyvä ruudukko"
+#. nxP8s
+#: svx/uiconfig/ui/optgridpage.ui:103
+msgctxt "extended_tip|gridvisible"
+msgid "Specifies whether to display the grid."
+msgstr ""
+
#. qpLqx
-#: svx/uiconfig/ui/optgridpage.ui:110
+#: svx/uiconfig/ui/optgridpage.ui:120
msgctxt "optgridpage|label1"
msgid "Grid"
msgstr "Ruudukko"
+#. GhA8G
+#: svx/uiconfig/ui/optgridpage.ui:168
+msgctxt "extended_tip|mtrflddrawx"
+msgid "Defines the unit of measure for the spacing between grid points on the X-axis."
+msgstr "Määritetään kohdistusruudukon ruudun leveyden numeroarvo mittayksiköissä."
+
+#. fPCcF
+#: svx/uiconfig/ui/optgridpage.ui:186
+msgctxt "extended_tip|mtrflddrawy"
+msgid "Defines the grid points spacing in the desired unit of measurement on the Y-axis."
+msgstr "Määritetään kohdistusruudukon ruudun korkeus vallitsevissa mittayksiköissä."
+
#. LEFVP
-#: svx/uiconfig/ui/optgridpage.ui:179
+#: svx/uiconfig/ui/optgridpage.ui:199
msgctxt "optgridpage|flddrawx"
msgid "H_orizontal:"
msgstr "Vaakataso:"
#. 63XA8
-#: svx/uiconfig/ui/optgridpage.ui:193
+#: svx/uiconfig/ui/optgridpage.ui:213
msgctxt "optgridpage|flddrawy"
msgid "_Vertical:"
msgstr "Pystytaso:"
#. BE8cX
-#: svx/uiconfig/ui/optgridpage.ui:205
+#: svx/uiconfig/ui/optgridpage.ui:225
msgctxt "optgridpage|synchronize"
msgid "Synchronize a_xes"
msgstr "Synkronoi akselit"
+#. TFU5G
+#: svx/uiconfig/ui/optgridpage.ui:235
+msgctxt "extended_tip|synchronize"
+msgid "Specifies whether to change the current grid settings symmetrically."
+msgstr "Määritetään ruudukon asetusmuutokset symmetrisiksi."
+
#. We62K
-#: svx/uiconfig/ui/optgridpage.ui:228
+#: svx/uiconfig/ui/optgridpage.ui:253
msgctxt "optgridpage|label2"
msgid "Resolution"
msgstr "Tarkkuus"
+#. QBM3z
+#: svx/uiconfig/ui/optgridpage.ui:300
+msgctxt "extended_tip|numflddivisionx"
+msgid "Specify the number of intermediate spaces between grid points on the X-axis."
+msgstr "Määritetään kohdistusruudukon pisteiden välisten välien määrä yhdellä ruudulla x-akselin suuntaan."
+
#. jt7BC
-#: svx/uiconfig/ui/optgridpage.ui:283
+#: svx/uiconfig/ui/optgridpage.ui:313
msgctxt "optgridpage|label4"
msgid "space(s)"
msgstr "väli(t)"
+#. hNLHu
+#: svx/uiconfig/ui/optgridpage.ui:340
+msgctxt "extended_tip|numflddivisiony"
+msgid "Specify the number of intermediate spaces between grid points on the Y-axis."
+msgstr "Määritetään kohdistusruudukon pisteiden välisten välien määrä yhdellä ruudulla y-akselin suuntaan."
+
#. hGSLw
-#: svx/uiconfig/ui/optgridpage.ui:318
+#: svx/uiconfig/ui/optgridpage.ui:353
msgctxt "optgridpage|label5"
msgid "space(s)"
msgstr "väli(t)"
#. NiUFW
-#: svx/uiconfig/ui/optgridpage.ui:336
+#: svx/uiconfig/ui/optgridpage.ui:371
msgctxt "optgridpage|divisionx"
msgid "Horizont_al:"
msgstr "Vaakatasossa:"
#. EXXsP
-#: svx/uiconfig/ui/optgridpage.ui:350
+#: svx/uiconfig/ui/optgridpage.ui:385
msgctxt "optgridpage|divisiony"
msgid "V_ertical:"
msgstr "Pystytasossa:"
#. DnrET
-#: svx/uiconfig/ui/optgridpage.ui:368
+#: svx/uiconfig/ui/optgridpage.ui:403
msgctxt "optgridpage|label3"
msgid "Subdivision"
msgstr "Alajako"
#. Bk6ie
-#: svx/uiconfig/ui/optgridpage.ui:413
+#: svx/uiconfig/ui/optgridpage.ui:448
msgctxt "optgridpage|snaphelplines"
msgid "To snap lines"
msgstr "Kohdistusviivoihin"
+#. R4rYx
+#: svx/uiconfig/ui/optgridpage.ui:457
+msgctxt "extended_tip|snaphelplines"
+msgid "Snaps the edge of a dragged object to the nearest snap line when you release the mouse."
+msgstr ""
+
#. YkLQN
-#: svx/uiconfig/ui/optgridpage.ui:428
+#: svx/uiconfig/ui/optgridpage.ui:468
msgctxt "optgridpage|snapborder"
msgid "To the _page margins"
msgstr "Sivun marginaaleihin"
+#. ifSGq
+#: svx/uiconfig/ui/optgridpage.ui:477
+msgctxt "extended_tip|snapborder"
+msgid "Specifies whether to align the contour of the graphic object to the nearest page margin."
+msgstr ""
+
#. GhDiX
-#: svx/uiconfig/ui/optgridpage.ui:443
+#: svx/uiconfig/ui/optgridpage.ui:488
msgctxt "optgridpage|snapframe"
msgid "To object _frame"
msgstr "Objektin kehykseen"
+#. n3JDW
+#: svx/uiconfig/ui/optgridpage.ui:497
+msgctxt "extended_tip|snapframe"
+msgid "Specifies whether to align the contour of the graphic object to the border of the nearest graphic object."
+msgstr ""
+
#. akbks
-#: svx/uiconfig/ui/optgridpage.ui:458
+#: svx/uiconfig/ui/optgridpage.ui:508
msgctxt "optgridpage|snappoints"
msgid "To obje_ct points"
msgstr "Objektipisteisiin"
+#. BCxLX
+#: svx/uiconfig/ui/optgridpage.ui:517
+msgctxt "extended_tip|snappoints"
+msgid "Specifies whether to align the contour of the graphic object to the points of the nearest graphic object."
+msgstr ""
+
+#. rY7Uu
+#: svx/uiconfig/ui/optgridpage.ui:539
+msgctxt "extended_tip|mtrfldsnaparea"
+msgid "Defines the snap distance between the mouse pointer and the object contour. %PRODUCTNAME Impress snaps to a snap point if the mouse pointer is nearer than the distance selected in the Snap range control."
+msgstr "Määritetään kohdistusetäisyys hiiren osoittimen ja objektin ääriviivan välillä. %PRODUCTNAME Impress kohdistaa kohdistuspisteisiin, jos hiiren osoitin on lähempänä kuin Kohdistusalue-arvo."
+
#. FekAR
-#: svx/uiconfig/ui/optgridpage.ui:492
+#: svx/uiconfig/ui/optgridpage.ui:552
msgctxt "optgridpage|label7"
msgid "_Snap range:"
msgstr "Kohdistusalue:"
#. 77X8u
-#: svx/uiconfig/ui/optgridpage.ui:516
+#: svx/uiconfig/ui/optgridpage.ui:576
msgctxt "optgridpage|label6"
msgid "Snap"
msgstr "Kohdista"
#. MVezU
-#: svx/uiconfig/ui/optgridpage.ui:550
+#: svx/uiconfig/ui/optgridpage.ui:610
msgctxt "optgridpage|ortho"
msgid "_When creating or moving objects"
msgstr "Objekteja luotaessa tai siirrettäessä"
+#. sCZdK
+#: svx/uiconfig/ui/optgridpage.ui:619
+msgctxt "extended_tip|ortho"
+msgid "Specifies that graphic objects are restricted vertically, horizontally or diagonally (45°) when creating or moving them."
+msgstr "Merkinnällä määrätään, että graafisten objektien suunta rajoitetaan luotaessa tai siirrettäessä pystysuuntaiseksi, vaakasuuntaiseksi tai lävistäjän suuntaiseksi (45°)."
+
#. SK5Pc
-#: svx/uiconfig/ui/optgridpage.ui:565
+#: svx/uiconfig/ui/optgridpage.ui:630
msgctxt "optgridpage|bigortho"
msgid "_Extend edges"
msgstr "Pidemmän sivun mukaan"
+#. UxXn5
+#: svx/uiconfig/ui/optgridpage.ui:639
+msgctxt "extended_tip|bigortho"
+msgid "Specifies that a square is created based on the longer side of a rectangle when the Shift key is pressed before you release the mouse button. This also applies to an ellipse (a circle will be created based on the longest diameter of the ellipse). When the Extend edges box is not marked, a square or a circle will be created based on the shorter side or diameter."
+msgstr "Merkinnällä määrätään, että kun Vaihto-näppäintä painetaan suorakulmiota vedettäessä ennen hiiren vapauttamista, neliö luodaan pitemmän sivun mukaisesti. Tätä sovelletaan myös ellipseihin (ympyrä luodaan ellipsin pitemmän halkaisijan perusteella). Kun Pitemmän sivun mukaan -ruutu ei ole merkitty, neliö tai ympyrä luodaan lyhyemmän sivun tai halkaisijan perusteella."
+
+#. UmDxR
+#: svx/uiconfig/ui/optgridpage.ui:665
+msgctxt "extended_tip|mtrfldangle"
+msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control."
+msgstr ""
+
#. a6oQ8
-#: svx/uiconfig/ui/optgridpage.ui:601
+#: svx/uiconfig/ui/optgridpage.ui:676
msgctxt "optgridpage|rotate"
msgid "When ro_tating:"
msgstr "Kierrettäessä:"
+#. 8qf9r
+#: svx/uiconfig/ui/optgridpage.ui:688
+msgctxt "extended_tip|rotate"
+msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control."
+msgstr ""
+
+#. xEPJC
+#: svx/uiconfig/ui/optgridpage.ui:706
+msgctxt "extended_tip|mtrfldbezangle"
+msgid "Defines the angle for point reduction."
+msgstr "Määritetään pisteen pienennyksen kulma."
+
#. hEA4g
-#: svx/uiconfig/ui/optgridpage.ui:634
+#: svx/uiconfig/ui/optgridpage.ui:719
msgctxt "optgridpage|label9"
msgid "Point reducti_on:"
msgstr "Pisteen pienennys:"
#. JZEyB
-#: svx/uiconfig/ui/optgridpage.ui:658
+#: svx/uiconfig/ui/optgridpage.ui:743
msgctxt "optgridpage|label8"
msgid "Constrain Objects"
msgstr "Kohdistuksen rajoitus"
+#. AWmiJ
+#: svx/uiconfig/ui/optgridpage.ui:765
+msgctxt "extended_tip|OptGridPage"
+msgid "Specifies the settings for the configurable grid on your document pages. This grid helps you determine the exact position of your objects. You can also set this grid in line with the \"magnetic\" snap grid."
+msgstr "Määritetään asiakirjasivujen kohdistusruudukon asetuksia. Tämä ruudukko auttaa objektien täsmällisessä asemoinnissa. Ruudukkoon voi myös kohdistaa \"magneettisesti\"."
+
#. rYzct
#: svx/uiconfig/ui/paralinespacingcontrol.ui:17
msgctxt "paralinespacingcontrol|spacing_1"
@@ -16085,30 +17972,54 @@ msgctxt "passwd|oldpassL"
msgid "_Password:"
msgstr "Salasana:"
+#. UmNe7
+#: svx/uiconfig/ui/passwd.ui:127
+msgctxt "passwd|extended_tip|oldpassEntry"
+msgid "Enter the current password for the selected library."
+msgstr "Syötä nykyinen, valitun kirjaston salasana."
+
#. FkYnV
-#: svx/uiconfig/ui/passwd.ui:140
+#: svx/uiconfig/ui/passwd.ui:145
msgctxt "passwd|oldpass"
msgid "Old Password"
msgstr "Vanha salasana"
+#. p9pCC
+#: svx/uiconfig/ui/passwd.ui:189
+msgctxt "passwd|extended_tip|newpassEntry"
+msgid "Enter a new password for the selected library."
+msgstr "Anna valitulle kirjastolle uusi salasana."
+
+#. QF45Y
+#: svx/uiconfig/ui/passwd.ui:208
+msgctxt "passwd|extended_tip|confirmpassEntry"
+msgid "Reenter the new password for the selected library."
+msgstr "Syötä uudestaan valitun kirjaston uusi salasana."
+
#. YkcuU
-#: svx/uiconfig/ui/passwd.ui:206
+#: svx/uiconfig/ui/passwd.ui:221
msgctxt "passwd|label4"
msgid "Pa_ssword:"
msgstr "Salasana:"
#. 2KH4V
-#: svx/uiconfig/ui/passwd.ui:220
+#: svx/uiconfig/ui/passwd.ui:235
msgctxt "passwd|label5"
msgid "Confi_rm:"
msgstr "Vahvista:"
#. dPuKB
-#: svx/uiconfig/ui/passwd.ui:238
+#: svx/uiconfig/ui/passwd.ui:253
msgctxt "passwd|label2"
msgid "New Password"
msgstr "Uusi salasana"
+#. Mc5RM
+#: svx/uiconfig/ui/passwd.ui:285
+msgctxt "passwd|extended_tip|PasswordDialog"
+msgid "Protects the selected library with a password."
+msgstr "Toiminnolla suojataan valittu kirjasto salasanalla."
+
#. FCDr9
#: svx/uiconfig/ui/presetmenu.ui:12
msgctxt "presetmenu|rename"
@@ -16287,189 +18198,284 @@ msgctxt "redlinefilterpage|date"
msgid "_Date:"
msgstr "_Päivämäärä:"
+#. WcSXk
+#: svx/uiconfig/ui/redlinefilterpage.ui:45
+msgctxt "redlinefilterpage|extended_tip|date"
+msgid "Filters the list of changes according to the date and the time that you specify."
+msgstr ""
+
#. EnyT2
-#: svx/uiconfig/ui/redlinefilterpage.ui:51
+#: svx/uiconfig/ui/redlinefilterpage.ui:56
msgctxt "redlinefilterpage|author"
msgid "_Author:"
msgstr "Tekijä:"
+#. NEMLa
+#: svx/uiconfig/ui/redlinefilterpage.ui:65
+msgctxt "redlinefilterpage|extended_tip|author"
+msgid "Filters the list of changes according to the name of the author that you select from the list."
+msgstr ""
+
#. G36HS
-#: svx/uiconfig/ui/redlinefilterpage.ui:66
+#: svx/uiconfig/ui/redlinefilterpage.ui:76
msgctxt "redlinefilterpage|comment"
msgid "C_omment:"
msgstr "Huomautus:"
+#. Rj9J4
+#: svx/uiconfig/ui/redlinefilterpage.ui:88
+msgctxt "redlinefilterpage|extended_tip|comment"
+msgid "Filters the comments of the changes according to the keyword(s) that you enter."
+msgstr ""
+
#. gPhYL
-#: svx/uiconfig/ui/redlinefilterpage.ui:92
+#: svx/uiconfig/ui/redlinefilterpage.ui:107
msgctxt "redlinefilterpage|commentedit-atkobject"
msgid "Comment"
msgstr "Huomautus"
+#. QXgua
+#: svx/uiconfig/ui/redlinefilterpage.ui:108
+msgctxt "redlinefilterpage|extended_tip|commentedit"
+msgid "Filters the comments of the changes according to the keyword(s) that you enter."
+msgstr ""
+
#. 3joBm
-#: svx/uiconfig/ui/redlinefilterpage.ui:103
+#: svx/uiconfig/ui/redlinefilterpage.ui:119
msgctxt "redlinefilterpage|range"
msgid "_Range:"
msgstr "_Alue:"
-#. fdw75
+#. HVCDF
#: svx/uiconfig/ui/redlinefilterpage.ui:128
+msgctxt "redlinefilterpage|extended_tip|range"
+msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)."
+msgstr ""
+
+#. fdw75
+#: svx/uiconfig/ui/redlinefilterpage.ui:149
msgctxt "redlinefilterpage|actionlist-atkobject"
msgid "Action"
msgstr "Toiminto"
+#. uqMjh
+#: svx/uiconfig/ui/redlinefilterpage.ui:150
+msgctxt "redlinefilterpage|extended_tip|actionlist"
+msgid "Filters the list of changes according to the type of change that you select in the Action box."
+msgstr ""
+
#. c4doe
-#: svx/uiconfig/ui/redlinefilterpage.ui:139
+#: svx/uiconfig/ui/redlinefilterpage.ui:161
msgctxt "redlinefilterpage|action"
msgid "A_ction:"
msgstr "_Toiminto:"
+#. r2yHr
+#: svx/uiconfig/ui/redlinefilterpage.ui:170
+msgctxt "redlinefilterpage|extended_tip|action"
+msgid "Filters the list of changes according to the type of change that you select in the Action box."
+msgstr ""
+
#. r9bBY
-#: svx/uiconfig/ui/redlinefilterpage.ui:164
+#: svx/uiconfig/ui/redlinefilterpage.ui:191
msgctxt "redlinefilterpage|authorlist-atkobject"
msgid "Author"
msgstr "Tekijä"
+#. QaTuC
+#: svx/uiconfig/ui/redlinefilterpage.ui:192
+msgctxt "redlinefilterpage|extended_tip|authorlist"
+msgid "Filters the list of changes according to the name of the author that you select from the list."
+msgstr ""
+
#. mGrjp
-#: svx/uiconfig/ui/redlinefilterpage.ui:191
+#: svx/uiconfig/ui/redlinefilterpage.ui:219
msgctxt "redlinefilterpage|rangeedit-atkobject"
msgid "Range"
msgstr "Alue"
+#. B4t2S
+#: svx/uiconfig/ui/redlinefilterpage.ui:220
+msgctxt "redlinefilterpage|extended_tip|rangeedit"
+msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)."
+msgstr ""
+
#. CcvJU
-#: svx/uiconfig/ui/redlinefilterpage.ui:208
+#: svx/uiconfig/ui/redlinefilterpage.ui:237
msgctxt "redlinefilterpage|dotdotdot|tooltip_text"
msgid "Set reference"
msgstr "Määritä viite"
#. g7HYA
-#: svx/uiconfig/ui/redlinefilterpage.ui:236
+#: svx/uiconfig/ui/redlinefilterpage.ui:265
msgctxt "redlinefilterpage|datecond"
msgid "earlier than"
msgstr "ennen kuin"
#. XsdmM
-#: svx/uiconfig/ui/redlinefilterpage.ui:237
+#: svx/uiconfig/ui/redlinefilterpage.ui:266
msgctxt "redlinefilterpage|datecond"
msgid "since"
msgstr "alkaen"
#. BAiQ7
-#: svx/uiconfig/ui/redlinefilterpage.ui:238
+#: svx/uiconfig/ui/redlinefilterpage.ui:267
msgctxt "redlinefilterpage|datecond"
msgid "equal to"
msgstr "yhtä suuri kuin"
#. dxxQ9
-#: svx/uiconfig/ui/redlinefilterpage.ui:239
+#: svx/uiconfig/ui/redlinefilterpage.ui:268
msgctxt "redlinefilterpage|datecond"
msgid "not equal to"
msgstr "eri suuri kuin"
#. pGgae
-#: svx/uiconfig/ui/redlinefilterpage.ui:240
+#: svx/uiconfig/ui/redlinefilterpage.ui:269
msgctxt "redlinefilterpage|datecond"
msgid "between"
msgstr "välillä"
#. tFbU9
-#: svx/uiconfig/ui/redlinefilterpage.ui:241
+#: svx/uiconfig/ui/redlinefilterpage.ui:270
msgctxt "redlinefilterpage|datecond"
msgid "since saving"
msgstr "tallennuksesta"
#. EEzm5
-#: svx/uiconfig/ui/redlinefilterpage.ui:248
+#: svx/uiconfig/ui/redlinefilterpage.ui:277
msgctxt "redlinefilterpage|datecond-atkobject"
msgid "Date Condition"
msgstr "Päivämääräehto"
+#. qf5wZ
+#: svx/uiconfig/ui/redlinefilterpage.ui:278
+msgctxt "redlinefilterpage|extended_tip|datecond"
+msgid "Filters the list of changes according to the date and the time that you specify."
+msgstr ""
+
#. Z2Wv3
-#: svx/uiconfig/ui/redlinefilterpage.ui:270
+#: svx/uiconfig/ui/redlinefilterpage.ui:300
msgctxt "redlinefilterpage|and"
msgid "a_nd"
msgstr "ja"
#. VCH68
-#: svx/uiconfig/ui/redlinefilterpage.ui:291
+#: svx/uiconfig/ui/redlinefilterpage.ui:321
msgctxt "redlinefilterpage|startdate-atkobject"
msgid "Start Date"
msgstr "Aloituspäivämäärä"
+#. NScn6
+#: svx/uiconfig/ui/redlinefilterpage.ui:322
+msgctxt "redlinefilterpage|extended_tip|startdate"
+msgid "Filters the list of changes according to the date and the time that you specify."
+msgstr ""
+
#. CyQhk
-#: svx/uiconfig/ui/redlinefilterpage.ui:311
+#: svx/uiconfig/ui/redlinefilterpage.ui:342
msgctxt "redlinefilterpage|starttime-atkobject"
msgid "Start Time"
msgstr "Aloitusaika"
+#. K2ohk
+#: svx/uiconfig/ui/redlinefilterpage.ui:343
+msgctxt "redlinefilterpage|extended_tip|starttime"
+msgid "Filters the list of changes according to the date and the time that you specify."
+msgstr ""
+
#. TbDDR
-#: svx/uiconfig/ui/redlinefilterpage.ui:326
+#: svx/uiconfig/ui/redlinefilterpage.ui:358
msgctxt "redlinefilterpage|startclock|tooltip_text"
msgid "Set current time and date"
msgstr "Aseta nykyinen aika ja päivämäärä"
#. YE4kc
-#: svx/uiconfig/ui/redlinefilterpage.ui:346
+#: svx/uiconfig/ui/redlinefilterpage.ui:378
msgctxt "redlinefilterpage|enddate-atkobject"
msgid "End Date"
msgstr "Lopetuspäivämäärä"
+#. BF8D3
+#: svx/uiconfig/ui/redlinefilterpage.ui:379
+msgctxt "redlinefilterpage|extended_tip|enddate"
+msgid "Filters the list of changes according to the date and the time that you specify."
+msgstr ""
+
#. jbLhY
-#: svx/uiconfig/ui/redlinefilterpage.ui:366
+#: svx/uiconfig/ui/redlinefilterpage.ui:399
msgctxt "redlinefilterpage|endtime-atkobject"
msgid "End Time"
msgstr "Lopetusaika"
+#. GnJ9o
+#: svx/uiconfig/ui/redlinefilterpage.ui:400
+msgctxt "redlinefilterpage|extended_tip|endtime"
+msgid "Filters the list of changes according to the date and the time that you specify."
+msgstr ""
+
#. PAFLU
-#: svx/uiconfig/ui/redlinefilterpage.ui:381
+#: svx/uiconfig/ui/redlinefilterpage.ui:415
msgctxt "redlinefilterpage|endclock|tooltip_text"
msgid "Set current time and date"
msgstr "Aseta nykyinen aika ja päivämäärä"
+#. efdRD
+#: svx/uiconfig/ui/redlinefilterpage.ui:441
+msgctxt "redlinefilterpage|extended_tip|RedlineFilterPage"
+msgid "Filters the list of changes according to the date and the time that you specify."
+msgstr ""
+
#. p8TCX
-#: svx/uiconfig/ui/redlineviewpage.ui:71 svx/uiconfig/ui/redlineviewpage.ui:180
+#: svx/uiconfig/ui/redlineviewpage.ui:69 svx/uiconfig/ui/redlineviewpage.ui:175
msgctxt "redlineviewpage|action"
msgid "Action"
msgstr "Toiminto"
#. j2BA9
-#: svx/uiconfig/ui/redlineviewpage.ui:86
+#: svx/uiconfig/ui/redlineviewpage.ui:84
msgctxt "redlineviewpage|position"
msgid "Position"
msgstr "Sijainti"
#. BCWpJ
-#: svx/uiconfig/ui/redlineviewpage.ui:101
-#: svx/uiconfig/ui/redlineviewpage.ui:200
+#: svx/uiconfig/ui/redlineviewpage.ui:99 svx/uiconfig/ui/redlineviewpage.ui:195
msgctxt "redlineviewpage|author"
msgid "Author"
msgstr "Tekijä"
#. tFbAs
-#: svx/uiconfig/ui/redlineviewpage.ui:116
-#: svx/uiconfig/ui/redlineviewpage.ui:215
+#: svx/uiconfig/ui/redlineviewpage.ui:114
+#: svx/uiconfig/ui/redlineviewpage.ui:210
msgctxt "redlineviewpage|date"
msgid "Date"
msgstr "Päivämäärä"
#. p8a2G
-#: svx/uiconfig/ui/redlineviewpage.ui:131
-#: svx/uiconfig/ui/redlineviewpage.ui:230
+#: svx/uiconfig/ui/redlineviewpage.ui:129
+#: svx/uiconfig/ui/redlineviewpage.ui:225
msgctxt "redlineviewpage|comment"
msgid "Comment"
msgstr "Huomautus"
#. nUz2M
-#: svx/uiconfig/ui/redlineviewpage.ui:146
+#: svx/uiconfig/ui/redlineviewpage.ui:144
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
msgstr "Muutokset"
#. pGEZv
-#: svx/uiconfig/ui/redlineviewpage.ui:245
+#: svx/uiconfig/ui/redlineviewpage.ui:240
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
msgstr "Muutokset"
+#. ePj3x
+#: svx/uiconfig/ui/redlineviewpage.ui:252
+msgctxt "redlineviewpage|extended_tip|RedlineViewPage"
+msgid "Accept or reject individual changes."
+msgstr "Hyväksytään tai hylätään yksittäiset muutokset."
+
#. EunTG
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
@@ -16741,221 +18747,257 @@ msgid "Block selection"
msgstr "Pystylohkon valintatila"
#. vo2WC
-#: svx/uiconfig/ui/sidebararea.ui:52
+#: svx/uiconfig/ui/sidebararea.ui:53
msgctxt "sidebararea|transparencyslider|tooltip_text"
msgid "Specify 0% for fully opaque through 100% for fully transparent."
msgstr "Valitse arvo väliltä 0 % (täysin peittävä) - 100 % (täysin läpinäkyvä)."
#. RBwTW
-#: svx/uiconfig/ui/sidebararea.ui:68
+#: svx/uiconfig/ui/sidebararea.ui:69
msgctxt "sidebararea|settransparency|tooltip_text"
msgid "Specify 0% for fully opaque through 100% for fully transparent."
msgstr "Valitse arvo väliltä 0 % (täysin peittävä) - 100 % (täysin läpinäkyvä)."
#. iA8W8
-#: svx/uiconfig/ui/sidebararea.ui:72
+#: svx/uiconfig/ui/sidebararea.ui:73
msgctxt "sidebararea|settransparency-atkobject"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. CNKBs
-#: svx/uiconfig/ui/sidebararea.ui:93
+#: svx/uiconfig/ui/sidebararea.ui:94
msgctxt "sidebararea|filllabel|tooltip_text"
msgid "Fill:"
msgstr "Täyttö:"
#. WwgXW
-#: svx/uiconfig/ui/sidebararea.ui:94
+#: svx/uiconfig/ui/sidebararea.ui:95
msgctxt "sidebararea|filllabel"
msgid "_Fill:"
msgstr "Täyttö:"
#. AtBee
-#: svx/uiconfig/ui/sidebararea.ui:107
+#: svx/uiconfig/ui/sidebararea.ui:108
msgctxt "sidebararea|fillstylearea|tooltip_text"
msgid "Select the fill type to apply."
msgstr "Valitse käytettävä täyttötyyppi."
#. wprqq
-#: svx/uiconfig/ui/sidebararea.ui:110
+#: svx/uiconfig/ui/sidebararea.ui:111
msgctxt "sidebararea|fillstylearea-atkobject"
msgid "Fill Type"
msgstr "Täyttötyyppi"
#. eBXqH
-#: svx/uiconfig/ui/sidebararea.ui:127
+#: svx/uiconfig/ui/sidebararea.ui:128
msgctxt "sidebararea|gradientstyle|tooltip_text"
msgid "Select the gradient style."
msgstr "Valitse liukuvärjäyksen tyyli."
#. okAe3
-#: svx/uiconfig/ui/sidebararea.ui:130
+#: svx/uiconfig/ui/sidebararea.ui:131
msgctxt "sidebararea|gradientstyle"
msgid "Linear"
msgstr "Lineaarinen"
#. oyiN5
-#: svx/uiconfig/ui/sidebararea.ui:131
+#: svx/uiconfig/ui/sidebararea.ui:132
msgctxt "sidebararea|gradientstyle"
msgid "Axial"
msgstr "Aksiaalinen"
#. vVAfq
-#: svx/uiconfig/ui/sidebararea.ui:132
+#: svx/uiconfig/ui/sidebararea.ui:133
msgctxt "sidebararea|gradientstyle"
msgid "Radial"
msgstr "Säteittäinen"
#. 8G3MN
-#: svx/uiconfig/ui/sidebararea.ui:133
+#: svx/uiconfig/ui/sidebararea.ui:134
msgctxt "sidebararea|gradientstyle"
msgid "Ellipsoid"
msgstr "Ellipsoidi"
#. UHZgP
-#: svx/uiconfig/ui/sidebararea.ui:134
+#: svx/uiconfig/ui/sidebararea.ui:135
msgctxt "sidebararea|gradientstyle"
msgid "Quadratic"
msgstr "Neliön muotoinen"
#. GknV3
-#: svx/uiconfig/ui/sidebararea.ui:135
+#: svx/uiconfig/ui/sidebararea.ui:136
msgctxt "sidebararea|gradientstyle"
msgid "Square"
msgstr "Neliö"
#. zAPDV
-#: svx/uiconfig/ui/sidebararea.ui:139
+#: svx/uiconfig/ui/sidebararea.ui:140
msgctxt "sidebararea|gradientstyle-atkobject"
msgid "Gradient Type"
msgstr "Liukuvärjäyksen tyyppi"
#. yG7qD
-#: svx/uiconfig/ui/sidebararea.ui:151
+#: svx/uiconfig/ui/sidebararea.ui:152
msgctxt "sidebararea|bmpimport"
msgid "_Import"
msgstr "Tuo"
#. egzhb
-#: svx/uiconfig/ui/sidebararea.ui:185
+#: svx/uiconfig/ui/sidebararea.ui:186
msgctxt "sidebararea|color|tooltip_text"
msgid "Select the color to apply."
msgstr "Valitse käytettävä väri."
#. UPF58
-#: svx/uiconfig/ui/sidebararea.ui:204
+#: svx/uiconfig/ui/sidebararea.ui:205
msgctxt "sidebararea|fillattrhb|tooltip_text"
msgid "Select the effect to apply."
msgstr "Valitse käytettävä tehoste."
#. EiCFo
-#: svx/uiconfig/ui/sidebararea.ui:223
+#: svx/uiconfig/ui/sidebararea.ui:221
msgctxt "sidebararea|fillattrhb-atkobject"
msgid "Hatching/Bitmap"
msgstr "Viivoitus/bittikartta"
#. 6ziwq
-#: svx/uiconfig/ui/sidebararea.ui:238
+#: svx/uiconfig/ui/sidebararea.ui:236
msgctxt "sidebararea|fillgrad1|tooltip_text"
msgid "Fill gradient from."
msgstr "Liukuvärjäyksen alkuväri"
#. UE2EH
-#: svx/uiconfig/ui/sidebararea.ui:262
+#: svx/uiconfig/ui/sidebararea.ui:261
msgctxt "sidebararea|gradangle|tooltip_text"
msgid "Select the gradient angle."
msgstr "Valitse liukuvärjäyksen kulma."
#. fuzvt
-#: svx/uiconfig/ui/sidebararea.ui:267
+#: svx/uiconfig/ui/sidebararea.ui:265
msgctxt "sidebararea|gradangle-atkobject"
msgid "Gradient angle"
msgstr "Liukuvärjäyksen kulma"
#. FjG3M
-#: svx/uiconfig/ui/sidebararea.ui:281
+#: svx/uiconfig/ui/sidebararea.ui:279
msgctxt "sidebararea|fillgrad2|tooltip_text"
msgid "Fill gradient to."
msgstr "Liukuvärjäyksen loppuväri"
#. VnsM7
-#: svx/uiconfig/ui/sidebararea.ui:298
+#: svx/uiconfig/ui/sidebararea.ui:297
msgctxt "sidebararea|transparencylabel|tooltip_text"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. RZtCX
-#: svx/uiconfig/ui/sidebararea.ui:299
+#: svx/uiconfig/ui/sidebararea.ui:298
msgctxt "sidebararea|transparencylabel"
msgid "_Transparency:"
msgstr "Läpinäkyvyys:"
#. hrKBN
-#: svx/uiconfig/ui/sidebararea.ui:312
+#: svx/uiconfig/ui/sidebararea.ui:311
msgctxt "sidebararea|transtype|tooltip_text"
msgid "Select the type of transparency to apply."
msgstr "Valitse käytettävä läpinäkyvyystyyppi."
#. qG4kJ
-#: svx/uiconfig/ui/sidebararea.ui:314
+#: svx/uiconfig/ui/sidebararea.ui:313
msgctxt "sidebararea|transtype"
msgid "None"
msgstr "Ei mitään"
#. AAqxT
-#: svx/uiconfig/ui/sidebararea.ui:315
+#: svx/uiconfig/ui/sidebararea.ui:314
msgctxt "sidebararea|transtype"
msgid "Solid"
msgstr "Yhtenäinen"
#. GzSAp
-#: svx/uiconfig/ui/sidebararea.ui:316
+#: svx/uiconfig/ui/sidebararea.ui:315
msgctxt "sidebararea|transtype"
msgid "Linear"
msgstr "Lineaarinen"
#. vXTqG
-#: svx/uiconfig/ui/sidebararea.ui:317
+#: svx/uiconfig/ui/sidebararea.ui:316
msgctxt "sidebararea|transtype"
msgid "Axial"
msgstr "Aksiaalinen"
#. 7BS94
-#: svx/uiconfig/ui/sidebararea.ui:318
+#: svx/uiconfig/ui/sidebararea.ui:317
msgctxt "sidebararea|transtype"
msgid "Radial"
msgstr "Säteittäinen"
#. tvpBz
-#: svx/uiconfig/ui/sidebararea.ui:319
+#: svx/uiconfig/ui/sidebararea.ui:318
msgctxt "sidebararea|transtype"
msgid "Ellipsoid"
msgstr "Ellipsoidi"
#. RWDy2
-#: svx/uiconfig/ui/sidebararea.ui:320
+#: svx/uiconfig/ui/sidebararea.ui:319
msgctxt "sidebararea|transtype"
msgid "Quadratic"
msgstr "Neliön muotoinen"
#. ozP7p
-#: svx/uiconfig/ui/sidebararea.ui:321
+#: svx/uiconfig/ui/sidebararea.ui:320
msgctxt "sidebararea|transtype"
msgid "Square"
msgstr "Neliö"
#. J46j4
-#: svx/uiconfig/ui/sidebararea.ui:325
+#: svx/uiconfig/ui/sidebararea.ui:324
msgctxt "sidebararea|transtype-atkobject"
msgid "Transparency Type"
msgstr "Läpinäkyvyyden tyyppi"
#. 8hBpk
-#: svx/uiconfig/ui/sidebararea.ui:346
+#: svx/uiconfig/ui/sidebararea.ui:344
msgctxt "sidebararea|gradient|tooltip_text"
msgid "Specify the variation of gradient transparency."
msgstr "Valitse liukuvan läpinäkyvyyden tarkemmat asetukset."
+#. oWCjG
+#: svx/uiconfig/ui/sidebareffect.ui:53
+msgctxt "sidebarglow|radius"
+msgid "Radius:"
+msgstr "Säde:"
+
+#. bEFFC
+#: svx/uiconfig/ui/sidebareffect.ui:79
+msgctxt "sidebarglow|color"
+msgid "Color:"
+msgstr "Väri:"
+
+#. EvWsM
+#: svx/uiconfig/ui/sidebareffect.ui:111
+msgctxt "sidebarglow|transparency"
+msgid "Transparency:"
+msgstr "Läpinäkyvyys:"
+
+#. K7L6F
+#: svx/uiconfig/ui/sidebareffect.ui:141
+msgctxt "sidebarglow|glow"
+msgid "Glow"
+msgstr ""
+
+#. SABEF
+#: svx/uiconfig/ui/sidebareffect.ui:176
+msgctxt "sidebarsoftedge|radius"
+msgid "Radius:"
+msgstr "Säde:"
+
+#. KRr2U
+#: svx/uiconfig/ui/sidebareffect.ui:206
+msgctxt "sidebarsoftedge|softedge"
+msgid "Soft Edge"
+msgstr ""
+
#. BEqw7
#: svx/uiconfig/ui/sidebarempty.ui:24
msgctxt "sidebarempty|RID_SIDEBAR_EMPTY_PANEL_TEXT"
@@ -16963,167 +19005,107 @@ msgid "Properties for the task that you are performing are not available for the
msgstr "Nyt työn alla olevalle tehtävälle ei ole saatavilla muokattavia ominaisuuksia."
#. ED99f
-#: svx/uiconfig/ui/sidebargallery.ui:106
+#: svx/uiconfig/ui/sidebargallery.ui:108
msgctxt "sidebargallery|RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr ""
-#. qkjNj
-#: svx/uiconfig/ui/sidebargallery.ui:119
-msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME"
-msgid "New Theme..."
-msgstr "Uusi teema..."
-
#. wqE5z
-#: svx/uiconfig/ui/sidebargallery.ui:156
+#: svx/uiconfig/ui/sidebargallery.ui:304
msgctxt "sidebargallery|RID_SVXSTR_GALLERY_ICONVIEW"
msgid "Icon View"
msgstr "Kuvakenäkymä"
#. TZSrQ
-#: svx/uiconfig/ui/sidebargallery.ui:161 svx/uiconfig/ui/sidebargallery.ui:180
+#: svx/uiconfig/ui/sidebargallery.ui:309 svx/uiconfig/ui/sidebargallery.ui:328
msgctxt "sidebargallery|RID_SVXSTR_GALLERY_THEMEITEMS"
msgid "Theme Items"
msgstr ""
#. FLH5B
-#: svx/uiconfig/ui/sidebargallery.ui:175
+#: svx/uiconfig/ui/sidebargallery.ui:323
msgctxt "sidebargallery|RID_SVXSTR_GALLERY_LISTVIEW"
msgid "Detailed View"
msgstr "Tiedot"
-#. oWCjG
-#: svx/uiconfig/ui/sidebarglow.ui:43
-msgctxt "sidebarglow|radius"
-msgid "Radius:"
-msgstr "Säde:"
-
-#. bEFFC
-#: svx/uiconfig/ui/sidebarglow.ui:69
-msgctxt "sidebarglow|color"
-msgid "Color:"
-msgstr "Väri:"
+#. YDmBa
+#: svx/uiconfig/ui/sidebargallery.ui:354
+msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME"
+msgid "New..."
+msgstr ""
-#. EvWsM
-#: svx/uiconfig/ui/sidebarglow.ui:100
-msgctxt "sidebarglow|transparency"
-msgid "Transparency:"
-msgstr "Läpinäkyvyys:"
+#. RfChe
+#: svx/uiconfig/ui/sidebargallery.ui:373
+msgctxt "sidebargallery|btnMoreGalleries"
+msgid "Add more galleries via extension"
+msgstr ""
#. BdPh5
-#: svx/uiconfig/ui/sidebargraphic.ui:71
+#: svx/uiconfig/ui/sidebargraphic.ui:50
msgctxt "sidebargraphic|brightnesslabel"
msgid "_Brightness:"
msgstr "Kirkkaus:"
#. X5Qk5
-#: svx/uiconfig/ui/sidebargraphic.ui:85
+#: svx/uiconfig/ui/sidebargraphic.ui:64
msgctxt "sidebargraphic|setbrightness|tooltip_text"
msgid "Specify the luminance of the graphic."
msgstr "Määritä kuvan luminanssi."
#. DQXTc
-#: svx/uiconfig/ui/sidebargraphic.ui:89
+#: svx/uiconfig/ui/sidebargraphic.ui:69
msgctxt "sidebargraphic|setbrightness-atkobject"
msgid "Brightness"
msgstr "Kirkkaus"
#. FnFeA
-#: svx/uiconfig/ui/sidebargraphic.ui:102
+#: svx/uiconfig/ui/sidebargraphic.ui:82
msgctxt "sidebargraphic|contrastlabel"
msgid "_Contrast:"
msgstr "Kontrasti:"
#. zTZpz
-#: svx/uiconfig/ui/sidebargraphic.ui:116
+#: svx/uiconfig/ui/sidebargraphic.ui:96
msgctxt "sidebargraphic|setcontrast|tooltip_text"
msgid "Specify the degree of difference between the lightest and darkest parts of the graphic."
msgstr "Aseta kuvan vaaleiden ja tummien osien välinen kirkkausero."
#. zJs2p
-#: svx/uiconfig/ui/sidebargraphic.ui:120
+#: svx/uiconfig/ui/sidebargraphic.ui:101
msgctxt "sidebargraphic|setcontrast-atkobject"
msgid "Contrast"
msgstr "Kontrasti"
#. 6cABJ
-#: svx/uiconfig/ui/sidebargraphic.ui:133
+#: svx/uiconfig/ui/sidebargraphic.ui:114
msgctxt "sidebargraphic|colorlmodelabel"
msgid "Color _mode:"
msgstr "Väritila:"
#. Rj5UQ
-#: svx/uiconfig/ui/sidebargraphic.ui:149
+#: svx/uiconfig/ui/sidebargraphic.ui:131
msgctxt "sidebargraphic|setcolormode-atkobject"
msgid "Color mode"
msgstr "Väritila"
#. bzPBa
-#: svx/uiconfig/ui/sidebargraphic.ui:162
+#: svx/uiconfig/ui/sidebargraphic.ui:144
msgctxt "sidebargraphic|transparencylabel"
msgid "_Transparency:"
msgstr "Läpinäkyvyys:"
#. YNFDX
-#: svx/uiconfig/ui/sidebargraphic.ui:176
+#: svx/uiconfig/ui/sidebargraphic.ui:158
msgctxt "sidebargraphic|setgraphtransparency|tooltip_text"
msgid "Specify the percentage of transparency; 0% is fully opaque and 100% is fully transparent."
msgstr "Määritä läpinäkyvyysprosentti. 0 % on täysin peittävä ja 100 % on täysin läpinäkyvä."
#. GAw6e
-#: svx/uiconfig/ui/sidebargraphic.ui:180
+#: svx/uiconfig/ui/sidebargraphic.ui:163
msgctxt "sidebargraphic|setgraphtransparency-atkobject"
msgid "Transparency"
msgstr "Läpinäkyvyys"
-#. JgKWp
-#: svx/uiconfig/ui/sidebargraphic.ui:212
-msgctxt "sidebargraphic|setred|tooltip_text"
-msgid "Red"
-msgstr "Punainen"
-
-#. fGACH
-#: svx/uiconfig/ui/sidebargraphic.ui:216
-msgctxt "sidebargraphic|setred-atkobject"
-msgid "Red"
-msgstr "Punainen"
-
-#. EB3md
-#: svx/uiconfig/ui/sidebargraphic.ui:255
-msgctxt "sidebargraphic|setgreen|tooltip_text"
-msgid "Green"
-msgstr "Vihreä"
-
-#. tnEBW
-#: svx/uiconfig/ui/sidebargraphic.ui:259
-msgctxt "sidebargraphic|setgreen-atkobject"
-msgid "Green"
-msgstr "Vihreä"
-
-#. QsZtm
-#: svx/uiconfig/ui/sidebargraphic.ui:299
-msgctxt "sidebargraphic|setblue|tooltip_text"
-msgid "Blue"
-msgstr "Sininen"
-
-#. jUwam
-#: svx/uiconfig/ui/sidebargraphic.ui:303
-msgctxt "sidebargraphic|setblue-atkobject"
-msgid "Blue"
-msgstr "Sininen"
-
-#. JkRhR
-#: svx/uiconfig/ui/sidebargraphic.ui:342
-msgctxt "sidebargraphic|setgamma|tooltip_text"
-msgid "Specify the gamma value that affects the brightness of the midtone values."
-msgstr "Aseta gamma-arvo, joka vaikuttaa kuvan keskitummien värien kirkkauteen."
-
-#. Bf469
-#: svx/uiconfig/ui/sidebargraphic.ui:347
-msgctxt "sidebargraphic|setgamma-atkobject"
-msgid "Gamma value"
-msgstr "Gamma-arvo"
-
#. rBdfj
#: svx/uiconfig/ui/sidebarline.ui:36
msgctxt "sidebarline|widthlabel"
@@ -17143,127 +19125,127 @@ msgid "Select the style of the line."
msgstr "Valitse viivan tyyli."
#. JA5zE
-#: svx/uiconfig/ui/sidebarline.ui:104
+#: svx/uiconfig/ui/sidebarline.ui:103
msgctxt "sidebarline|widthlabel"
msgid "_Width:"
msgstr "Leveys:"
#. HokBv
-#: svx/uiconfig/ui/sidebarline.ui:118
+#: svx/uiconfig/ui/sidebarline.ui:117
msgctxt "sidebarline|width|tooltip_text"
msgid "Select the width of the line."
msgstr "Valitse viivan leveys."
#. hqTEs
-#: svx/uiconfig/ui/sidebarline.ui:147
+#: svx/uiconfig/ui/sidebarline.ui:146
msgctxt "sidebarline|colorlabel"
msgid "_Color:"
msgstr "Väri:"
#. oEqwH
-#: svx/uiconfig/ui/sidebarline.ui:161
+#: svx/uiconfig/ui/sidebarline.ui:160
msgctxt "sidebarline|color|tooltip_text"
msgid "Select the color of the line."
msgstr "Valitse viivan väri."
#. JbEBs
-#: svx/uiconfig/ui/sidebarline.ui:171
+#: svx/uiconfig/ui/sidebarline.ui:170
msgctxt "sidebarline|setcolor|tooltip_text"
msgid "Select the color of the line."
msgstr "Valitse viivan väri."
#. XiUKD
-#: svx/uiconfig/ui/sidebarline.ui:191
+#: svx/uiconfig/ui/sidebarline.ui:190
msgctxt "sidebarline|translabel"
msgid "_Transparency:"
msgstr "Läpinäkyvyys:"
#. t32c8
-#: svx/uiconfig/ui/sidebarline.ui:205
+#: svx/uiconfig/ui/sidebarline.ui:204
msgctxt "sidebarline|linetransparency|tooltip_text"
msgid "Specify the transparency of the line."
msgstr "Aseta viivan läpinäkyvyys."
#. kDWvG
-#: svx/uiconfig/ui/sidebarline.ui:209
+#: svx/uiconfig/ui/sidebarline.ui:208
msgctxt "sidebarline|linetransparency-atkobject"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. AZukk
-#: svx/uiconfig/ui/sidebarline.ui:252
+#: svx/uiconfig/ui/sidebarline.ui:239
msgctxt "sidebarline|cornerlabel"
msgid "_Corner style:"
msgstr "Kulmatyyli:"
#. DhDzF
-#: svx/uiconfig/ui/sidebarline.ui:266
+#: svx/uiconfig/ui/sidebarline.ui:253
msgctxt "sidebarline|edgestyle|tooltip_text"
msgid "Select the style of the edge connections."
msgstr "Valitse viivan kulmien tyyli."
#. CUdXF
-#: svx/uiconfig/ui/sidebarline.ui:268
+#: svx/uiconfig/ui/sidebarline.ui:256
msgctxt "sidebarline|edgestyle"
msgid "Rounded"
msgstr "Pyöristetty"
#. jPD2D
-#: svx/uiconfig/ui/sidebarline.ui:269
+#: svx/uiconfig/ui/sidebarline.ui:257
msgctxt "sidebarline|edgestyle"
msgid "- none -"
msgstr "- ei mitään -"
#. MuNWz
-#: svx/uiconfig/ui/sidebarline.ui:270
+#: svx/uiconfig/ui/sidebarline.ui:258
msgctxt "sidebarline|edgestyle"
msgid "Mitered"
msgstr "Jiiri"
#. Dftrf
-#: svx/uiconfig/ui/sidebarline.ui:271
+#: svx/uiconfig/ui/sidebarline.ui:259
msgctxt "sidebarline|edgestyle"
msgid "Beveled"
msgstr "Viistetty"
#. EG2LW
-#: svx/uiconfig/ui/sidebarline.ui:275
+#: svx/uiconfig/ui/sidebarline.ui:263
msgctxt "sidebarline|edgestyle-atkobject"
msgid "Corner Style"
msgstr "Kulmatyyli"
#. rHzFD
-#: svx/uiconfig/ui/sidebarline.ui:288
+#: svx/uiconfig/ui/sidebarline.ui:276
msgctxt "sidebarline|caplabel"
msgid "Ca_p style:"
msgstr "Viivanpään tyyli:"
#. PbDF7
-#: svx/uiconfig/ui/sidebarline.ui:302
+#: svx/uiconfig/ui/sidebarline.ui:290
msgctxt "sidebarline|linecapstyle|tooltip_text"
msgid "Select the style of the line caps."
msgstr "Valitse viivanpäiden tyyli."
#. 9qZVm
-#: svx/uiconfig/ui/sidebarline.ui:304
+#: svx/uiconfig/ui/sidebarline.ui:293
msgctxt "sidebarline|linecapstyle"
msgid "Flat"
msgstr "Tasainen"
#. AK2DH
-#: svx/uiconfig/ui/sidebarline.ui:305
+#: svx/uiconfig/ui/sidebarline.ui:294
msgctxt "sidebarline|linecapstyle"
msgid "Round"
msgstr "Pyöreä"
#. 52VUc
-#: svx/uiconfig/ui/sidebarline.ui:306
+#: svx/uiconfig/ui/sidebarline.ui:295
msgctxt "sidebarline|linecapstyle"
msgid "Square"
msgstr "Neliö"
#. AxAHn
-#: svx/uiconfig/ui/sidebarline.ui:310
+#: svx/uiconfig/ui/sidebarline.ui:299
msgctxt "sidebarline|linecapstyle-atkobject"
msgid "Cap Style"
msgstr "Viivanpäiden tyyli"
@@ -17299,300 +19281,306 @@ msgid "Spacing"
msgstr "Välit"
#. wp4PE
-#: svx/uiconfig/ui/sidebarparagraph.ui:282
+#: svx/uiconfig/ui/sidebarparagraph.ui:284
msgctxt "sidebarparagraph|aboveparaspacing|tooltip_text"
msgid "Above Paragraph Spacing"
msgstr "Väli kappaleen yllä"
#. 3qyED
-#: svx/uiconfig/ui/sidebarparagraph.ui:288
+#: svx/uiconfig/ui/sidebarparagraph.ui:290
msgctxt "sidebarparagraph|aboveparaspacing-atkobject"
msgid "Above Paragraph Spacing"
msgstr "Väli kappaleen alla"
#. 5MAGg
-#: svx/uiconfig/ui/sidebarparagraph.ui:328
+#: svx/uiconfig/ui/sidebarparagraph.ui:332
msgctxt "sidebarparagraph|belowparaspacing|tooltip_text"
msgid "Below Paragraph Spacing"
msgstr "Väli kappaleen yllä"
#. D6uqC
-#: svx/uiconfig/ui/sidebarparagraph.ui:334
+#: svx/uiconfig/ui/sidebarparagraph.ui:338
msgctxt "sidebarparagraph|belowparaspacing-atkobject"
msgid "Below Paragraph Spacing"
msgstr "Väli kappaleen alla"
#. EK89C
-#: svx/uiconfig/ui/sidebarparagraph.ui:362
+#: svx/uiconfig/ui/sidebarparagraph.ui:367
msgctxt "sidebarparagraph|setlinespacing|tooltip_text"
msgid "Line Spacing"
msgstr "Riviväli"
#. dao3E
-#: svx/uiconfig/ui/sidebarparagraph.ui:394
+#: svx/uiconfig/ui/sidebarparagraph.ui:399
msgctxt "sidebarparagraph|indentlabel"
msgid "_Indent:"
msgstr "Sisennys:"
#. JDD6B
-#: svx/uiconfig/ui/sidebarparagraph.ui:409
+#: svx/uiconfig/ui/sidebarparagraph.ui:414
msgctxt "sidebarparagraph|indent|tooltip_text"
msgid "Indent"
msgstr "Sisennys"
#. mpMaQ
-#: svx/uiconfig/ui/sidebarparagraph.ui:417
+#: svx/uiconfig/ui/sidebarparagraph.ui:422
msgctxt "sidebarparagraph|increaseindent|tooltip_text"
msgid "Increase Indent"
msgstr "Lisää sisennystä"
#. MqE6b
-#: svx/uiconfig/ui/sidebarparagraph.ui:429
+#: svx/uiconfig/ui/sidebarparagraph.ui:434
msgctxt "sidebarparagraph|decreaseindent|tooltip_text"
msgid "Decrease Indent"
msgstr "Vähennä sisennystä"
#. nEeZ4
-#: svx/uiconfig/ui/sidebarparagraph.ui:441
+#: svx/uiconfig/ui/sidebarparagraph.ui:446
msgctxt "sidebarparagraph|hangingindent|tooltip_text"
msgid "Switch to Hanging Indent"
msgstr "Vaihda riippuvaan sisennykseen"
#. A6fEZ
-#: svx/uiconfig/ui/sidebarparagraph.ui:479
+#: svx/uiconfig/ui/sidebarparagraph.ui:486
msgctxt "sidebarparagraph|beforetextindent|tooltip_text"
msgid "Before Text Indent"
msgstr "Ennen tekstin sisennystä"
#. F4XDM
-#: svx/uiconfig/ui/sidebarparagraph.ui:485
+#: svx/uiconfig/ui/sidebarparagraph.ui:492
msgctxt "sidebarparagraph|beforetextindent-atkobject"
msgid "Before Text Indent"
msgstr "Sisennys ennen tekstiä"
#. 7FYqL
-#: svx/uiconfig/ui/sidebarparagraph.ui:525
+#: svx/uiconfig/ui/sidebarparagraph.ui:534
msgctxt "sidebarparagraph|aftertextindent|tooltip_text"
msgid "After Text Indent"
msgstr "Tekstin sisennyksen jälkeen"
#. AaRox
-#: svx/uiconfig/ui/sidebarparagraph.ui:531
+#: svx/uiconfig/ui/sidebarparagraph.ui:540
msgctxt "sidebarparagraph|aftertextindent-atkobject"
msgid "After Text Indent"
msgstr "Sisennys tekstin jälkeen"
#. aMMo9
-#: svx/uiconfig/ui/sidebarparagraph.ui:571
+#: svx/uiconfig/ui/sidebarparagraph.ui:582
msgctxt "sidebarparagraph|firstlineindent|tooltip_text"
msgid "First Line Indent"
msgstr "Ensimmäisen rivin sisennys"
#. sBmb4
-#: svx/uiconfig/ui/sidebarparagraph.ui:577
+#: svx/uiconfig/ui/sidebarparagraph.ui:588
msgctxt "sidebarparagraph|firstlineindent-atkobject"
msgid "First Line Indent"
msgstr "Ensimmäisen rivin sisennys"
#. EjiLR
-#: svx/uiconfig/ui/sidebarparagraph.ui:622
+#: svx/uiconfig/ui/sidebarparagraph.ui:633
msgctxt "sidebarparagraph|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
msgstr "Luettelomerkit ja numerointi"
#. aFsx7
-#: svx/uiconfig/ui/sidebarparagraph.ui:659
+#: svx/uiconfig/ui/sidebarparagraph.ui:670
msgctxt "sidebarparagraph|backgroundcolor|tooltip_text"
msgid "Paragraph Background Color"
msgstr "Kappaleen taustaväri"
#. 5HiLZ
-#: svx/uiconfig/ui/sidebarpossize.ui:47
+#: svx/uiconfig/ui/sidebarpossize.ui:50
msgctxt "sidebarpossize|horizontallabel"
msgid "Position _X:"
msgstr "Sijainti X:"
#. DqemA
-#: svx/uiconfig/ui/sidebarpossize.ui:61
+#: svx/uiconfig/ui/sidebarpossize.ui:65
msgctxt "sidebarpossize|horizontalpos|tooltip_text"
msgid "Enter the value for the horizontal position."
msgstr "Aseta objektin sijainti vaakasuunnassa."
#. e3DxA
-#: svx/uiconfig/ui/sidebarpossize.ui:66
+#: svx/uiconfig/ui/sidebarpossize.ui:70
msgctxt "sidebarpossize|horizontalpos"
msgid "Horizontal"
msgstr "Vaakasuunta"
#. CzgZb
-#: svx/uiconfig/ui/sidebarpossize.ui:79
+#: svx/uiconfig/ui/sidebarpossize.ui:83
msgctxt "sidebarpossize|verticallabel"
msgid "Position _Y:"
msgstr "Sijainti Y:"
#. 8jhK2
-#: svx/uiconfig/ui/sidebarpossize.ui:93
+#: svx/uiconfig/ui/sidebarpossize.ui:98
msgctxt "sidebarpossize|verticalpos|tooltip_text"
msgid "Enter the value for the vertical position."
msgstr "Aseta objektin sijainti pystysuunnassa."
#. EYEMR
-#: svx/uiconfig/ui/sidebarpossize.ui:97
+#: svx/uiconfig/ui/sidebarpossize.ui:102
msgctxt "sidebarpossize|verticalpos"
msgid "Vertical"
msgstr "Pystysuunta"
#. maEbF
-#: svx/uiconfig/ui/sidebarpossize.ui:110
+#: svx/uiconfig/ui/sidebarpossize.ui:115
msgctxt "sidebarpossize|widthlabel"
msgid "_Width:"
msgstr "Leveys:"
#. AfcEf
-#: svx/uiconfig/ui/sidebarpossize.ui:124
+#: svx/uiconfig/ui/sidebarpossize.ui:130
msgctxt "sidebarpossize|selectwidth|tooltip_text"
msgid "Enter a width for the selected object."
msgstr "Anna valitun objektin leveys."
#. 9j3cM
-#: svx/uiconfig/ui/sidebarpossize.ui:129
+#: svx/uiconfig/ui/sidebarpossize.ui:135
msgctxt "sidebarpossize|selectwidth"
msgid "Width"
msgstr "Leveys"
#. BrACQ
-#: svx/uiconfig/ui/sidebarpossize.ui:142
+#: svx/uiconfig/ui/sidebarpossize.ui:148
msgctxt "sidebarpossize|heightlabel"
msgid "H_eight:"
msgstr "Korkeus:"
#. 6iopt
-#: svx/uiconfig/ui/sidebarpossize.ui:156
+#: svx/uiconfig/ui/sidebarpossize.ui:163
msgctxt "sidebarpossize|selectheight|tooltip_text"
msgid "Enter a height for the selected object."
msgstr "Anna valitun objektin korkeus."
#. Z9wXF
-#: svx/uiconfig/ui/sidebarpossize.ui:161
+#: svx/uiconfig/ui/sidebarpossize.ui:168
msgctxt "sidebarpossize|selectheight"
msgid "Height"
msgstr "Korkeus"
+#. dJdfn
+#: svx/uiconfig/ui/sidebarpossize.ui:180
+msgctxt "sidebarpossize|transparencylabel"
+msgid "Transparency:"
+msgstr "Läpinäkyvyys:"
+
#. nLGDu
-#: svx/uiconfig/ui/sidebarpossize.ui:172
+#: svx/uiconfig/ui/sidebarpossize.ui:190
msgctxt "sidebarpossize|ratio"
msgid "_Keep ratio"
msgstr "Säilytä mittasuhteet"
#. 2ka9i
-#: svx/uiconfig/ui/sidebarpossize.ui:176
+#: svx/uiconfig/ui/sidebarpossize.ui:194
msgctxt "sidebarpossize|ratio|tooltip_text"
msgid "Maintain proportions when you resize the selected object."
msgstr "Valitun objektin kokoa muutettaessa sen suhteet säilytetään."
#. L8ALA
-#: svx/uiconfig/ui/sidebarpossize.ui:196
+#: svx/uiconfig/ui/sidebarpossize.ui:209
msgctxt "sidebarpossize|arrangelabel"
msgid "_Arrange:"
msgstr "Järjestä:"
#. JViFZ
-#: svx/uiconfig/ui/sidebarpossize.ui:211 svx/uiconfig/ui/sidebarpossize.ui:270
-#: svx/uiconfig/ui/sidebarpossize.ui:506 svx/uiconfig/ui/sidebarpossize.ui:554
+#: svx/uiconfig/ui/sidebarpossize.ui:230 svx/uiconfig/ui/sidebarpossize.ui:289
+#: svx/uiconfig/ui/sidebarpossize.ui:503 svx/uiconfig/ui/sidebarpossize.ui:551
msgctxt "sidebarpossize|arrangetoolbar"
msgid "Arrange"
msgstr "Järjestä"
#. GPEEC
-#: svx/uiconfig/ui/sidebarpossize.ui:319
+#: svx/uiconfig/ui/sidebarpossize.ui:332
msgctxt "sidebarpossize|fliplabel"
msgid "_Flip:"
msgstr "Käännä:"
-#. SBiLG
-#: svx/uiconfig/ui/sidebarpossize.ui:342
-msgctxt "sidebarpossize|flipvertical|tooltip_text"
-msgid "Flip the selected object vertically."
-msgstr "Käännä valittu objekti pystysuunnassa."
-
-#. sAzF5
-#: svx/uiconfig/ui/sidebarpossize.ui:354
-msgctxt "sidebarpossize|fliphorizontal|tooltip_text"
-msgid "Flip the selected object horizontally."
-msgstr "Käännä valittu objekti vaakasuunnassa."
+#. oBCCy
+#: svx/uiconfig/ui/sidebarpossize.ui:346
+msgctxt "sidebarpossize|rotationlabel"
+msgid "_Rotation:"
+msgstr "Kierto:"
#. G7xCD
-#: svx/uiconfig/ui/sidebarpossize.ui:373
+#: svx/uiconfig/ui/sidebarpossize.ui:371
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Kiertokulma"
#. 5ZwVL
-#: svx/uiconfig/ui/sidebarpossize.ui:381
+#: svx/uiconfig/ui/sidebarpossize.ui:379
msgctxt "sidebarpossize|orientationcontrol"
msgid "Rotation"
msgstr "Kierto"
-#. oBCCy
-#: svx/uiconfig/ui/sidebarpossize.ui:407
-msgctxt "sidebarpossize|rotationlabel"
-msgid "_Rotation:"
-msgstr "Kierto:"
-
#. 3EB6B
-#: svx/uiconfig/ui/sidebarpossize.ui:424
+#: svx/uiconfig/ui/sidebarpossize.ui:394
msgctxt "sidebarpossize|rotation|tooltip_text"
msgid "Select the angle for rotation."
msgstr "Aseta kiertokulma."
+#. SBiLG
+#: svx/uiconfig/ui/sidebarpossize.ui:420
+msgctxt "sidebarpossize|flipvertical|tooltip_text"
+msgid "Flip the selected object vertically."
+msgstr "Käännä valittu objekti pystysuunnassa."
+
+#. sAzF5
+#: svx/uiconfig/ui/sidebarpossize.ui:432
+msgctxt "sidebarpossize|fliphorizontal|tooltip_text"
+msgid "Flip the selected object horizontally."
+msgstr "Käännä valittu objekti vaakasuunnassa."
+
#. EEFuY
-#: svx/uiconfig/ui/sidebarpossize.ui:465
+#: svx/uiconfig/ui/sidebarpossize.ui:460
msgctxt "sidebarpossize|btnEditChart"
msgid "Edit Chart"
msgstr "Muokkaa kaaviota"
#. GfsLe
-#: svx/uiconfig/ui/sidebarpossize.ui:491
+#: svx/uiconfig/ui/sidebarpossize.ui:482
msgctxt "sidebarpossize|alignlabel"
msgid "Alig_n:"
msgstr "Tasaus:"
#. osqQf
-#: svx/uiconfig/ui/sidebarshadow.ui:47
+#: svx/uiconfig/ui/sidebarshadow.ui:53
msgctxt "sidebarshadow|angle"
msgid "Angle:"
msgstr "Kulma:"
#. n7wff
-#: svx/uiconfig/ui/sidebarshadow.ui:61
+#: svx/uiconfig/ui/sidebarshadow.ui:67
msgctxt "sidebarshadow|distance"
msgid "Distance:"
msgstr "Etäisyys:"
#. RFRDq
-#: svx/uiconfig/ui/sidebarshadow.ui:87
+#: svx/uiconfig/ui/sidebarshadow.ui:93
msgctxt "sidebarshadow|color"
msgid "Color:"
msgstr "Väri:"
+#. hVt3k
+#: svx/uiconfig/ui/sidebarshadow.ui:125
+msgctxt "sidebarshadow|blur_label"
+msgid "Blur:"
+msgstr "Sumennus:"
+
#. SLW9V
-#: svx/uiconfig/ui/sidebarshadow.ui:118
+#: svx/uiconfig/ui/sidebarshadow.ui:151
msgctxt "sidebarshadow|transparency_label"
msgid "Transparency:"
msgstr "Läpinäkyvyys:"
#. 9TCg8
-#: svx/uiconfig/ui/sidebarshadow.ui:204
+#: svx/uiconfig/ui/sidebarshadow.ui:237
msgctxt "sidebarshadow|SHOW_SHADOW"
msgid "Enable"
msgstr "Ota käyttöön"
-#. SABEF
-#: svx/uiconfig/ui/sidebarsoftedge.ui:38
-msgctxt "sidebarsoftedge|radius"
-msgid "Radius:"
-msgstr "Säde:"
-
#. dZf2D
#: svx/uiconfig/ui/stylemenu.ui:12
msgctxt "stylemenu|update"
@@ -17605,6 +19593,18 @@ msgctxt "stylemenu|edit"
msgid "Edit Style..."
msgstr "Muokkaa tyyliä..."
+#. Fn4qj
+#: svx/uiconfig/ui/stylespreview.ui:86
+msgctxt "stylespreview|up"
+msgid "Previous"
+msgstr "Edellinen"
+
+#. XiCNc
+#: svx/uiconfig/ui/stylespreview.ui:111
+msgctxt "stylespreview|down"
+msgid "Next"
+msgstr "Seuraava"
+
#. nQGet
#: svx/uiconfig/ui/surfacewindow.ui:37
msgctxt "surfacewindow|RID_SVXSTR_WIREFRAME"
@@ -17816,35 +19816,41 @@ msgid "_More Options..."
msgstr "Lisää valintoja..."
#. QWLND
-#: svx/uiconfig/ui/xformspage.ui:25
+#: svx/uiconfig/ui/xformspage.ui:36
msgctxt "xformspage|TBI_ITEM_ADD"
msgid "Add Item"
msgstr "Lisää nimike"
#. Xe3ES
-#: svx/uiconfig/ui/xformspage.ui:38
+#: svx/uiconfig/ui/xformspage.ui:50
msgctxt "xformspage|TBI_ITEM_ADD_ELEMENT"
msgid "Add Element"
msgstr "Lisää elementti"
#. 4AVyV
-#: svx/uiconfig/ui/xformspage.ui:51
+#: svx/uiconfig/ui/xformspage.ui:64
msgctxt "xformspage|TBI_ITEM_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Lisää määrite"
#. FcS4D
-#: svx/uiconfig/ui/xformspage.ui:64
+#: svx/uiconfig/ui/xformspage.ui:78
msgctxt "xformspage|TBI_ITEM_EDIT"
msgid "Edit"
msgstr "Muokkaa"
#. FDkCU
-#: svx/uiconfig/ui/xformspage.ui:77
+#: svx/uiconfig/ui/xformspage.ui:102
msgctxt "xformspage|TBI_ITEM_REMOVE"
msgid "Delete"
msgstr "Poista"
+#. GDyBp
+#: svx/uiconfig/ui/xformspage.ui:113
+msgctxt "xformspage|extended_tip|toolbar"
+msgid "Specifies the data structure of the current XForms document."
+msgstr "Määritetään käsiteltävän XForms-asiakirjan tietorakenne."
+
#. LMM8D
#: svx/uiconfig/ui/xmlsecstatmenu.ui:12
msgctxt "xmlsecstatmenu|signatures"
@@ -17857,44 +19863,68 @@ msgctxt "zoommenu|page"
msgid "Entire Page"
msgstr "Koko sivu"
+#. mA9bZ
+#: svx/uiconfig/ui/zoommenu.ui:16
+msgctxt "zoommenu|extended_tip|page"
+msgid "Displays the entire page on your screen."
+msgstr ""
+
#. gZGXQ
-#: svx/uiconfig/ui/zoommenu.ui:20
+#: svx/uiconfig/ui/zoommenu.ui:25
msgctxt "zoommenu|width"
msgid "Page Width"
msgstr "Sivun leveys"
+#. U6FvZ
+#: svx/uiconfig/ui/zoommenu.ui:29
+msgctxt "zoommenu|extended_tip|width"
+msgid "Displays the complete width of the document page. The top and bottom edges of the page may not be visible."
+msgstr ""
+
#. ZQxa5
-#: svx/uiconfig/ui/zoommenu.ui:28
+#: svx/uiconfig/ui/zoommenu.ui:38
msgctxt "zoommenu|optimal"
msgid "Optimal View"
msgstr "Optimaalinen näkymä"
+#. Ya8B2
+#: svx/uiconfig/ui/zoommenu.ui:42
+msgctxt "zoommenu|extended_tip|optimal"
+msgid "Resizes the display to fit the width of the text in the document at the moment the command is started."
+msgstr ""
+
#. tMYhp
-#: svx/uiconfig/ui/zoommenu.ui:36
+#: svx/uiconfig/ui/zoommenu.ui:51
msgctxt "zoommenu|50"
msgid "50%"
msgstr "50 %"
#. B3psf
-#: svx/uiconfig/ui/zoommenu.ui:44
+#: svx/uiconfig/ui/zoommenu.ui:59
msgctxt "zoommenu|75"
msgid "75%"
msgstr "75 %"
#. RWH6b
-#: svx/uiconfig/ui/zoommenu.ui:52
+#: svx/uiconfig/ui/zoommenu.ui:67
msgctxt "zoommenu|100"
msgid "100%"
msgstr "100 %"
+#. RBixH
+#: svx/uiconfig/ui/zoommenu.ui:71
+msgctxt "zoommenu|extended_tip|100"
+msgid "Displays the document at its actual size."
+msgstr ""
+
#. DjAKP
-#: svx/uiconfig/ui/zoommenu.ui:60
+#: svx/uiconfig/ui/zoommenu.ui:80
msgctxt "zoommenu|150"
msgid "150%"
msgstr "150 %"
#. C5wCF
-#: svx/uiconfig/ui/zoommenu.ui:68
+#: svx/uiconfig/ui/zoommenu.ui:88
msgctxt "zoommenu|200"
msgid "200%"
msgstr "200 %"
diff --git a/source/fi/sw/messages.po b/source/fi/sw/messages.po
index 10afb35ce77..46816a224b8 100644
--- a/source/fi/sw/messages.po
+++ b/source/fi/sw/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-14 19:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/fi/>\n"
@@ -76,20 +76,38 @@ msgctxt "STR_TEXT_FORMATTING_CONVEYS_MEANING"
msgid "The text formatting conveys additional meaning."
msgstr ""
-#. UWv4T
+#. MXVBm
+#: sw/inc/AccessibilityCheckStrings.hrc:26
+msgctxt "STR_NON_INTERACTIVE_FORMS"
+msgid "An input form is not interactive."
+msgstr ""
+
+#. Z6sHT
#: sw/inc/AccessibilityCheckStrings.hrc:27
+msgctxt "STR_FLOATING_TEXT"
+msgid "Avoid floating text."
+msgstr ""
+
+#. 77aXx
+#: sw/inc/AccessibilityCheckStrings.hrc:28
+msgctxt "STR_HEADING_IN_TABLE"
+msgid "Tables must not contain headings."
+msgstr ""
+
+#. UWv4T
+#: sw/inc/AccessibilityCheckStrings.hrc:30
msgctxt "STR_DOCUMENT_DEFAULT_LANGUAGE"
msgid "Document default language is not set"
msgstr "Asiakirjan oletuskieltä ei ole asetettu"
#. CgEBJ
-#: sw/inc/AccessibilityCheckStrings.hrc:28
+#: sw/inc/AccessibilityCheckStrings.hrc:31
msgctxt "STR_STYLE_NO_LANGUAGE"
msgid "Style '%STYLE_NAME%' has no language set"
msgstr "Tyylin '%STYLE_NAME%' kieltä ei ole asetettu"
#. FG4Vn
-#: sw/inc/AccessibilityCheckStrings.hrc:29
+#: sw/inc/AccessibilityCheckStrings.hrc:32
msgctxt "STR_DOCUMENT_TITLE"
msgid "Document title is not set"
msgstr ""
@@ -575,6 +593,1349 @@ msgctxt "fldrefpage|liststore1"
msgid "Numbered Paragraphs"
msgstr "Numeroidut kappaleet"
+#. YUbUQ
+#. --------------------------------------------------------------------
+#. Description: API names for Paragraph, Character
+#. and Text cursor properties
+#. --------------------------------------------------------------------
+#. Format names
+#: sw/inc/inspectorproperties.hrc:31
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Color"
+msgstr ""
+
+#. 5Btdu
+#: sw/inc/inspectorproperties.hrc:32
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Border Distance"
+msgstr ""
+
+#. sKjYr
+#: sw/inc/inspectorproperties.hrc:33
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Inner Line Width"
+msgstr ""
+
+#. yrAyD
+#: sw/inc/inspectorproperties.hrc:34
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Line Distance"
+msgstr ""
+
+#. jS4tt
+#: sw/inc/inspectorproperties.hrc:35
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Line Style"
+msgstr ""
+
+#. noNDX
+#: sw/inc/inspectorproperties.hrc:36
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Line Width"
+msgstr ""
+
+#. MVL7X
+#: sw/inc/inspectorproperties.hrc:37
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Outer Line Width"
+msgstr ""
+
+#. c7Qfp
+#: sw/inc/inspectorproperties.hrc:38
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bottom Border"
+msgstr ""
+
+#. EWncC
+#: sw/inc/inspectorproperties.hrc:39
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bottom Border Distance"
+msgstr ""
+
+#. rLqgx
+#: sw/inc/inspectorproperties.hrc:40
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Break Type"
+msgstr ""
+
+#. kFMbA
+#: sw/inc/inspectorproperties.hrc:41
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Category"
+msgstr ""
+
+#. cd79Y
+#: sw/inc/inspectorproperties.hrc:42
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Cell"
+msgstr ""
+
+#. JzYHd
+#: sw/inc/inspectorproperties.hrc:43
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Auto Escapement"
+msgstr ""
+
+#. sGjrW
+#: sw/inc/inspectorproperties.hrc:44
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Auto Kerning"
+msgstr ""
+
+#. jP3gx
+#: sw/inc/inspectorproperties.hrc:45
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Auto Style Name"
+msgstr ""
+
+#. BB8yt
+#: sw/inc/inspectorproperties.hrc:46
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Back Color"
+msgstr ""
+
+#. op3aQ
+#: sw/inc/inspectorproperties.hrc:47
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Back Transparent"
+msgstr ""
+
+#. a6CtM
+#: sw/inc/inspectorproperties.hrc:48
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Border Distance"
+msgstr ""
+
+#. CGu8x
+#: sw/inc/inspectorproperties.hrc:49
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Bottom Border"
+msgstr ""
+
+#. s75ej
+#: sw/inc/inspectorproperties.hrc:50
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Bottom Border Distance"
+msgstr ""
+
+#. pZwAM
+#: sw/inc/inspectorproperties.hrc:51
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Case Map"
+msgstr ""
+
+#. AxVck
+#: sw/inc/inspectorproperties.hrc:52
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Color"
+msgstr ""
+
+#. FBN8b
+#: sw/inc/inspectorproperties.hrc:53
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Combine is On"
+msgstr ""
+
+#. 5kpZt
+#: sw/inc/inspectorproperties.hrc:54
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Combine Prefix"
+msgstr ""
+
+#. nq7ZN
+#: sw/inc/inspectorproperties.hrc:55
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Combine Suffix"
+msgstr ""
+
+#. EYEqN
+#: sw/inc/inspectorproperties.hrc:56
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Contoured"
+msgstr ""
+
+#. ZBAH9
+#: sw/inc/inspectorproperties.hrc:57
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Crossed Out"
+msgstr ""
+
+#. gABwu
+#: sw/inc/inspectorproperties.hrc:58
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Difference Height"
+msgstr ""
+
+#. ccULG
+#: sw/inc/inspectorproperties.hrc:59
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Difference Height Asian"
+msgstr ""
+
+#. LVABm
+#: sw/inc/inspectorproperties.hrc:60
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Difference Height Complex"
+msgstr ""
+
+#. B2CTr
+#: sw/inc/inspectorproperties.hrc:61
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Emphasis"
+msgstr ""
+
+#. bXxkA
+#: sw/inc/inspectorproperties.hrc:62
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Escapement"
+msgstr ""
+
+#. QikGB
+#: sw/inc/inspectorproperties.hrc:63
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Escapement Height"
+msgstr ""
+
+#. t2UDu
+#: sw/inc/inspectorproperties.hrc:64
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Flash"
+msgstr ""
+
+#. XXqBJ
+#: sw/inc/inspectorproperties.hrc:65
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Char Set"
+msgstr ""
+
+#. ZonDP
+#: sw/inc/inspectorproperties.hrc:66
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Char Set Asian"
+msgstr ""
+
+#. qrfZA
+#: sw/inc/inspectorproperties.hrc:67
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Char Set Complex"
+msgstr ""
+
+#. CGEVw
+#: sw/inc/inspectorproperties.hrc:68
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Family"
+msgstr ""
+
+#. bYGhE
+#: sw/inc/inspectorproperties.hrc:69
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Family Asian"
+msgstr ""
+
+#. 72RGq
+#: sw/inc/inspectorproperties.hrc:70
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Family Complex"
+msgstr ""
+
+#. Ef9Rc
+#: sw/inc/inspectorproperties.hrc:71
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Name"
+msgstr ""
+
+#. EcTvq
+#: sw/inc/inspectorproperties.hrc:72
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Name Asian"
+msgstr ""
+
+#. jrLqT
+#: sw/inc/inspectorproperties.hrc:73
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Name Complex"
+msgstr ""
+
+#. WtA4i
+#: sw/inc/inspectorproperties.hrc:74
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Pitch"
+msgstr ""
+
+#. kHGrk
+#: sw/inc/inspectorproperties.hrc:75
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Pitch Asian"
+msgstr ""
+
+#. KVfXe
+#: sw/inc/inspectorproperties.hrc:76
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Pitch Complex"
+msgstr ""
+
+#. CQWM3
+#: sw/inc/inspectorproperties.hrc:77
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Style Name"
+msgstr ""
+
+#. h6gAC
+#: sw/inc/inspectorproperties.hrc:78
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Style Name Asian"
+msgstr ""
+
+#. Tm4Rb
+#: sw/inc/inspectorproperties.hrc:79
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Font Style Name Complex"
+msgstr ""
+
+#. AQzKB
+#: sw/inc/inspectorproperties.hrc:80
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Height"
+msgstr ""
+
+#. zqVBR
+#: sw/inc/inspectorproperties.hrc:81
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Height Asian"
+msgstr ""
+
+#. FNnH2
+#: sw/inc/inspectorproperties.hrc:82
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Height Complex"
+msgstr ""
+
+#. 3DzPD
+#: sw/inc/inspectorproperties.hrc:83
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Hidden"
+msgstr ""
+
+#. TkovG
+#: sw/inc/inspectorproperties.hrc:84
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Highlight"
+msgstr ""
+
+#. T44dN
+#: sw/inc/inspectorproperties.hrc:85
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Interoperability Grab Bag"
+msgstr ""
+
+#. EzwnG
+#: sw/inc/inspectorproperties.hrc:86
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Kerning"
+msgstr ""
+
+#. CFpCB
+#: sw/inc/inspectorproperties.hrc:87
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Left Border"
+msgstr ""
+
+#. ZZNYY
+#: sw/inc/inspectorproperties.hrc:88
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Left Border Distance"
+msgstr ""
+
+#. ZAkB6
+#: sw/inc/inspectorproperties.hrc:89
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Locale"
+msgstr ""
+
+#. Ju3fR
+#: sw/inc/inspectorproperties.hrc:90
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Locale Asian"
+msgstr ""
+
+#. sA8Rk
+#: sw/inc/inspectorproperties.hrc:91
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Locale Complex"
+msgstr ""
+
+#. AAvjB
+#: sw/inc/inspectorproperties.hrc:92
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char No Hyphenation"
+msgstr ""
+
+#. ioDYE
+#: sw/inc/inspectorproperties.hrc:93
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Overline"
+msgstr ""
+
+#. GBMFT
+#: sw/inc/inspectorproperties.hrc:94
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Overline Color"
+msgstr ""
+
+#. 5y7T3
+#: sw/inc/inspectorproperties.hrc:95
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Overline Has Color"
+msgstr ""
+
+#. BEeWf
+#: sw/inc/inspectorproperties.hrc:96
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Posture"
+msgstr ""
+
+#. yTFRk
+#: sw/inc/inspectorproperties.hrc:97
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Posture Asian"
+msgstr ""
+
+#. 8WG25
+#: sw/inc/inspectorproperties.hrc:98
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Posture Complex"
+msgstr ""
+
+#. yuK3c
+#: sw/inc/inspectorproperties.hrc:99
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Property Height"
+msgstr ""
+
+#. j4w85
+#: sw/inc/inspectorproperties.hrc:100
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Property Height Asian"
+msgstr ""
+
+#. C5Ds3
+#: sw/inc/inspectorproperties.hrc:101
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Property Height Complex"
+msgstr ""
+
+#. ABhRa
+#: sw/inc/inspectorproperties.hrc:102
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Relief"
+msgstr ""
+
+#. BsxCo
+#: sw/inc/inspectorproperties.hrc:103
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Right Border"
+msgstr ""
+
+#. jrnRf
+#: sw/inc/inspectorproperties.hrc:104
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Right Border Distance"
+msgstr ""
+
+#. UEpDe
+#: sw/inc/inspectorproperties.hrc:105
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Rotation"
+msgstr ""
+
+#. jwSQF
+#: sw/inc/inspectorproperties.hrc:106
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Rotation is Fit To Line"
+msgstr ""
+
+#. cYG7T
+#: sw/inc/inspectorproperties.hrc:107
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Scale Width"
+msgstr ""
+
+#. WFuSd
+#: sw/inc/inspectorproperties.hrc:108
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Shading Value"
+msgstr ""
+
+#. 9sRCG
+#: sw/inc/inspectorproperties.hrc:109
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Shadow Format"
+msgstr ""
+
+#. tKjaF
+#: sw/inc/inspectorproperties.hrc:110
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Shadowed"
+msgstr ""
+
+#. H9st9
+#: sw/inc/inspectorproperties.hrc:111
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Strikeout"
+msgstr ""
+
+#. zrLCN
+#: sw/inc/inspectorproperties.hrc:112
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Style Name"
+msgstr ""
+
+#. PN2pE
+#: sw/inc/inspectorproperties.hrc:113
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Style Names"
+msgstr ""
+
+#. rq2fu
+#: sw/inc/inspectorproperties.hrc:114
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Top Border"
+msgstr ""
+
+#. SNLiC
+#: sw/inc/inspectorproperties.hrc:115
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Top Border Distance"
+msgstr ""
+
+#. ZoAde
+#: sw/inc/inspectorproperties.hrc:116
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Transparence"
+msgstr ""
+
+#. CAJEC
+#: sw/inc/inspectorproperties.hrc:117
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Underline"
+msgstr ""
+
+#. yGPLz
+#: sw/inc/inspectorproperties.hrc:118
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Underline Color"
+msgstr ""
+
+#. HmfPF
+#: sw/inc/inspectorproperties.hrc:119
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Underline Has Color"
+msgstr ""
+
+#. QRCs4
+#: sw/inc/inspectorproperties.hrc:120
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Weight"
+msgstr ""
+
+#. EwWk2
+#: sw/inc/inspectorproperties.hrc:121
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Weight Asian"
+msgstr ""
+
+#. nxNQB
+#: sw/inc/inspectorproperties.hrc:122
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Weight Complex"
+msgstr ""
+
+#. D4T2M
+#: sw/inc/inspectorproperties.hrc:123
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Char Word Mode"
+msgstr ""
+
+#. z8NA6
+#: sw/inc/inspectorproperties.hrc:124
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Continuing Previous Tree"
+msgstr ""
+
+#. 4BCE7
+#: sw/inc/inspectorproperties.hrc:125
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Display Name"
+msgstr ""
+
+#. JXrsY
+#: sw/inc/inspectorproperties.hrc:126
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Document Index"
+msgstr ""
+
+#. A3nea
+#: sw/inc/inspectorproperties.hrc:127
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Document Index Mark"
+msgstr ""
+
+#. XgFaZ
+#: sw/inc/inspectorproperties.hrc:128
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Drop Cap Char Style Name"
+msgstr ""
+
+#. BtV5G
+#: sw/inc/inspectorproperties.hrc:129
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Drop Cap Format"
+msgstr ""
+
+#. SnMZX
+#: sw/inc/inspectorproperties.hrc:130
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Drop Cap Whole Word"
+msgstr ""
+
+#. LXhoV
+#: sw/inc/inspectorproperties.hrc:131
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Endnote"
+msgstr ""
+
+#. YmvFY
+#: sw/inc/inspectorproperties.hrc:132
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Background"
+msgstr ""
+
+#. TvMCc
+#: sw/inc/inspectorproperties.hrc:133
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap"
+msgstr ""
+
+#. GWWrC
+#: sw/inc/inspectorproperties.hrc:134
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Logical Size"
+msgstr ""
+
+#. r2Aif
+#: sw/inc/inspectorproperties.hrc:135
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Mode"
+msgstr ""
+
+#. FZtcW
+#: sw/inc/inspectorproperties.hrc:136
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Name"
+msgstr ""
+
+#. C4jU5
+#: sw/inc/inspectorproperties.hrc:137
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Offset X"
+msgstr ""
+
+#. w2UVD
+#: sw/inc/inspectorproperties.hrc:138
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Offset Y"
+msgstr ""
+
+#. ZTKw7
+#: sw/inc/inspectorproperties.hrc:139
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Position Offset X"
+msgstr ""
+
+#. BVBvB
+#: sw/inc/inspectorproperties.hrc:140
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Position Offset Y"
+msgstr ""
+
+#. CzVxv
+#: sw/inc/inspectorproperties.hrc:141
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Rectangle Point"
+msgstr ""
+
+#. GrmLm
+#: sw/inc/inspectorproperties.hrc:142
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Size X"
+msgstr ""
+
+#. stSMW
+#: sw/inc/inspectorproperties.hrc:143
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Size Y"
+msgstr ""
+
+#. zJV5G
+#: sw/inc/inspectorproperties.hrc:144
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Stretch"
+msgstr ""
+
+#. HMq2D
+#: sw/inc/inspectorproperties.hrc:145
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap Tile"
+msgstr ""
+
+#. 6iSjs
+#: sw/inc/inspectorproperties.hrc:146
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Bitmap URL"
+msgstr ""
+
+#. Fd28G
+#: sw/inc/inspectorproperties.hrc:147
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Color"
+msgstr ""
+
+#. neFA2
+#: sw/inc/inspectorproperties.hrc:148
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Color2"
+msgstr ""
+
+#. 72i4Q
+#: sw/inc/inspectorproperties.hrc:149
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Gradient"
+msgstr ""
+
+#. uWcQT
+#: sw/inc/inspectorproperties.hrc:150
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Gradient Name"
+msgstr ""
+
+#. uazQm
+#: sw/inc/inspectorproperties.hrc:151
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Gradient Step Count"
+msgstr ""
+
+#. bTjNu
+#: sw/inc/inspectorproperties.hrc:152
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Hatch"
+msgstr ""
+
+#. YCBtr
+#: sw/inc/inspectorproperties.hrc:153
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Hatch Name"
+msgstr ""
+
+#. GbQPt
+#: sw/inc/inspectorproperties.hrc:154
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Style"
+msgstr ""
+
+#. tFYmZ
+#: sw/inc/inspectorproperties.hrc:155
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Transparence"
+msgstr ""
+
+#. H9v5s
+#: sw/inc/inspectorproperties.hrc:156
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Transparence Gradient"
+msgstr ""
+
+#. pZH4P
+#: sw/inc/inspectorproperties.hrc:157
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Fill Transparence Gradient Name"
+msgstr ""
+
+#. WqmBo
+#: sw/inc/inspectorproperties.hrc:158
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Follow Style"
+msgstr ""
+
+#. 32Vgt
+#: sw/inc/inspectorproperties.hrc:159
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Footnote"
+msgstr ""
+
+#. NuA4J
+#: sw/inc/inspectorproperties.hrc:160
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Hidden"
+msgstr ""
+
+#. TwGWU
+#: sw/inc/inspectorproperties.hrc:161
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Hyperlink Events"
+msgstr ""
+
+#. XU6P3
+#: sw/inc/inspectorproperties.hrc:162
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Hyperlink Name"
+msgstr ""
+
+#. qRBxH
+#: sw/inc/inspectorproperties.hrc:163
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Hyperlink Target"
+msgstr ""
+
+#. BoFLZ
+#: sw/inc/inspectorproperties.hrc:164
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Hyperlink URL"
+msgstr ""
+
+#. CbvLt
+#: sw/inc/inspectorproperties.hrc:165
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Is Auto Update"
+msgstr ""
+
+#. DYXxe
+#: sw/inc/inspectorproperties.hrc:166
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Is Physical"
+msgstr ""
+
+#. AdAo8
+#: sw/inc/inspectorproperties.hrc:167
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Left Border"
+msgstr ""
+
+#. tAqBG
+#: sw/inc/inspectorproperties.hrc:168
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Left Border Distance"
+msgstr ""
+
+#. 9cGvH
+#: sw/inc/inspectorproperties.hrc:169
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "List Auto Format"
+msgstr ""
+
+#. fBeTS
+#: sw/inc/inspectorproperties.hrc:170
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "List Id"
+msgstr ""
+
+#. b73Zq
+#: sw/inc/inspectorproperties.hrc:171
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "List Label String"
+msgstr ""
+
+#. n9DQD
+#: sw/inc/inspectorproperties.hrc:172
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Nested Text Content"
+msgstr ""
+
+#. AzBDm
+#: sw/inc/inspectorproperties.hrc:173
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Numbering is Number"
+msgstr ""
+
+#. WsqfF
+#: sw/inc/inspectorproperties.hrc:174
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Numbering Level"
+msgstr ""
+
+#. CEkBY
+#: sw/inc/inspectorproperties.hrc:175
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Numbering Rules"
+msgstr ""
+
+#. nTMoh
+#: sw/inc/inspectorproperties.hrc:176
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Numbering Start Value"
+msgstr ""
+
+#. KYbBB
+#: sw/inc/inspectorproperties.hrc:177
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Numbering Style Name"
+msgstr ""
+
+#. zrVDM
+#: sw/inc/inspectorproperties.hrc:178
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Outline Content Visible"
+msgstr ""
+
+#. NNuo4
+#: sw/inc/inspectorproperties.hrc:179
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Outline Level"
+msgstr ""
+
+#. syTbJ
+#: sw/inc/inspectorproperties.hrc:180
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Page Desc Name"
+msgstr ""
+
+#. wLGct
+#: sw/inc/inspectorproperties.hrc:181
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Page Number Offset"
+msgstr ""
+
+#. ryHzy
+#: sw/inc/inspectorproperties.hrc:182
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Page Style Name"
+msgstr "Sivutyylin nimi"
+
+#. UyyB6
+#: sw/inc/inspectorproperties.hrc:183
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Rsid"
+msgstr ""
+
+#. xqcEV
+#: sw/inc/inspectorproperties.hrc:184
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Adjust"
+msgstr ""
+
+#. SyTxG
+#: sw/inc/inspectorproperties.hrc:185
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Auto Style Name"
+msgstr ""
+
+#. WHaym
+#: sw/inc/inspectorproperties.hrc:186
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Back Color"
+msgstr ""
+
+#. uKmB5
+#: sw/inc/inspectorproperties.hrc:187
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Back Graphic"
+msgstr ""
+
+#. f6RGz
+#: sw/inc/inspectorproperties.hrc:188
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Back Graphic Filter"
+msgstr ""
+
+#. Yy5RY
+#: sw/inc/inspectorproperties.hrc:189
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Back Graphic Location"
+msgstr ""
+
+#. MLDdK
+#: sw/inc/inspectorproperties.hrc:190
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Back Graphic URL"
+msgstr ""
+
+#. HkGF3
+#: sw/inc/inspectorproperties.hrc:191
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Back Transparent"
+msgstr ""
+
+#. TuYLo
+#: sw/inc/inspectorproperties.hrc:192
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Bottom Margin"
+msgstr ""
+
+#. r5BAb
+#: sw/inc/inspectorproperties.hrc:193
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Bottom Margin Relative"
+msgstr ""
+
+#. rCWLX
+#: sw/inc/inspectorproperties.hrc:194
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Chapter Numbering Level"
+msgstr ""
+
+#. GLxXC
+#: sw/inc/inspectorproperties.hrc:195
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Conditional Style Name"
+msgstr ""
+
+#. AFGoP
+#: sw/inc/inspectorproperties.hrc:196
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Context Margin"
+msgstr ""
+
+#. dpsFJ
+#: sw/inc/inspectorproperties.hrc:197
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Expand Single Word"
+msgstr ""
+
+#. iD2DL
+#: sw/inc/inspectorproperties.hrc:198
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para First Line Indent"
+msgstr ""
+
+#. wCMnF
+#: sw/inc/inspectorproperties.hrc:199
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para First Line Indent Relative"
+msgstr ""
+
+#. z47wS
+#: sw/inc/inspectorproperties.hrc:200
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Hyphenation Max Hyphens"
+msgstr ""
+
+#. nFxKY
+#: sw/inc/inspectorproperties.hrc:201
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Hyphenation Max Leading Chars"
+msgstr ""
+
+#. agdzD
+#: sw/inc/inspectorproperties.hrc:202
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Hyphenation Max Trailing Chars"
+msgstr ""
+
+#. hj7Fp
+#: sw/inc/inspectorproperties.hrc:203
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Hyphenation No Caps"
+msgstr ""
+
+#. 4bemD
+#: sw/inc/inspectorproperties.hrc:204
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Interop Grab Bag"
+msgstr ""
+
+#. fCGA4
+#: sw/inc/inspectorproperties.hrc:205
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para is Auto First Line Indent"
+msgstr ""
+
+#. Q68Bx
+#: sw/inc/inspectorproperties.hrc:206
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para is Character Distance"
+msgstr ""
+
+#. FGVAd
+#: sw/inc/inspectorproperties.hrc:207
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para is Connect Border"
+msgstr ""
+
+#. tBy9h
+#: sw/inc/inspectorproperties.hrc:208
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para is Forbidden Rules"
+msgstr ""
+
+#. yZZSA
+#: sw/inc/inspectorproperties.hrc:209
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para is Hanging Punctuation"
+msgstr ""
+
+#. dDgrE
+#: sw/inc/inspectorproperties.hrc:210
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para is Hyphenation"
+msgstr ""
+
+#. mHDWE
+#: sw/inc/inspectorproperties.hrc:211
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para is Numbering Restart"
+msgstr ""
+
+#. Mnm2C
+#: sw/inc/inspectorproperties.hrc:212
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Keep Together"
+msgstr ""
+
+#. 8Z5AP
+#: sw/inc/inspectorproperties.hrc:213
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Last Line Adjust"
+msgstr ""
+
+#. 6CaHh
+#: sw/inc/inspectorproperties.hrc:214
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Left Margin"
+msgstr ""
+
+#. ZDnZk
+#: sw/inc/inspectorproperties.hrc:215
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Left Margin Relative"
+msgstr ""
+
+#. G43XB
+#: sw/inc/inspectorproperties.hrc:216
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Line Number Count"
+msgstr ""
+
+#. EjnTM
+#: sw/inc/inspectorproperties.hrc:217
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Line Number Start Value"
+msgstr ""
+
+#. eo9RR
+#: sw/inc/inspectorproperties.hrc:218
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Line Spacing"
+msgstr ""
+
+#. kczeF
+#: sw/inc/inspectorproperties.hrc:219
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Orphans"
+msgstr ""
+
+#. FmuG6
+#: sw/inc/inspectorproperties.hrc:220
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Register Mode Active"
+msgstr ""
+
+#. Kwp9H
+#: sw/inc/inspectorproperties.hrc:221
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Right Margin"
+msgstr ""
+
+#. r2ao2
+#: sw/inc/inspectorproperties.hrc:222
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Right Margin Relative"
+msgstr ""
+
+#. FC9mA
+#: sw/inc/inspectorproperties.hrc:223
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Shadow Format"
+msgstr ""
+
+#. VXwD2
+#: sw/inc/inspectorproperties.hrc:224
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Split"
+msgstr ""
+
+#. gXoCF
+#: sw/inc/inspectorproperties.hrc:225
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Style Name"
+msgstr ""
+
+#. sekLv
+#: sw/inc/inspectorproperties.hrc:226
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Tab Stops"
+msgstr ""
+
+#. reW9Y
+#: sw/inc/inspectorproperties.hrc:227
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Top Margin"
+msgstr ""
+
+#. wHuj4
+#: sw/inc/inspectorproperties.hrc:228
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Top Margin Relative"
+msgstr ""
+
+#. pUjFj
+#: sw/inc/inspectorproperties.hrc:229
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para User Defined Attributes"
+msgstr ""
+
+#. WvA9C
+#: sw/inc/inspectorproperties.hrc:230
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Vertical Alignment"
+msgstr ""
+
+#. u8Jc6
+#: sw/inc/inspectorproperties.hrc:231
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Para Widows"
+msgstr ""
+
+#. cdw2Q
+#: sw/inc/inspectorproperties.hrc:232
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Reference Mark"
+msgstr ""
+
+#. NDEck
+#: sw/inc/inspectorproperties.hrc:233
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Right Border"
+msgstr ""
+
+#. 6rs9g
+#: sw/inc/inspectorproperties.hrc:234
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Right Border Distance"
+msgstr ""
+
+#. XYhSX
+#: sw/inc/inspectorproperties.hrc:235
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Rsid"
+msgstr ""
+
+#. Uoosp
+#: sw/inc/inspectorproperties.hrc:236
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Ruby Adjust"
+msgstr ""
+
+#. 3WwCU
+#: sw/inc/inspectorproperties.hrc:237
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Ruby Char Style Name"
+msgstr ""
+
+#. DqMAX
+#: sw/inc/inspectorproperties.hrc:238
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Ruby is Above"
+msgstr ""
+
+#. w8jgs
+#: sw/inc/inspectorproperties.hrc:239
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Ruby Position"
+msgstr ""
+
+#. ZREEa
+#: sw/inc/inspectorproperties.hrc:240
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Ruby Text"
+msgstr ""
+
+#. tJEtt
+#: sw/inc/inspectorproperties.hrc:241
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Snap to Grid"
+msgstr ""
+
+#. oDk6s
+#: sw/inc/inspectorproperties.hrc:242
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Style Interop Grab Bag"
+msgstr ""
+
+#. PV65u
+#: sw/inc/inspectorproperties.hrc:243
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Text Field"
+msgstr ""
+
+#. a6k8F
+#: sw/inc/inspectorproperties.hrc:244
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Text Frame"
+msgstr ""
+
+#. CNyuR
+#: sw/inc/inspectorproperties.hrc:245
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Text Paragraph"
+msgstr ""
+
+#. nTTEM
+#: sw/inc/inspectorproperties.hrc:246
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Text Section"
+msgstr ""
+
+#. VCADG
+#: sw/inc/inspectorproperties.hrc:247
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Text Table"
+msgstr ""
+
+#. hDjMA
+#: sw/inc/inspectorproperties.hrc:248
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Text User Defined Attributes"
+msgstr ""
+
+#. ZG6rS
+#: sw/inc/inspectorproperties.hrc:249
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Top Border"
+msgstr ""
+
+#. 6qBJD
+#: sw/inc/inspectorproperties.hrc:250
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Top Border Distance"
+msgstr ""
+
+#. RwtPi
+#: sw/inc/inspectorproperties.hrc:251
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Unvisited Char Style Name"
+msgstr ""
+
+#. xcMEF
+#: sw/inc/inspectorproperties.hrc:252
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Visited Char Style Name"
+msgstr ""
+
+#. YiBym
+#: sw/inc/inspectorproperties.hrc:253
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Writing Mode"
+msgstr ""
+
#. QBR3s
#: sw/inc/mmaddressblockpage.hrc:27
msgctxt "RA_SALUTATION"
@@ -1505,15 +2866,15 @@ msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr "Kuva"
-#. BuhZ8
+#. CxADu
#: sw/inc/strings.hrc:144
-msgctxt "STR_POOLCOLL_JAKETADRESS"
+msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr ""
-#. P7MCv
+#. PvoVz
#: sw/inc/strings.hrc:145
-msgctxt "STR_POOLCOLL_SENDADRESS"
+msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr ""
@@ -1808,9 +3169,9 @@ msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "Oikea sivu"
-#. M9CLK
+#. dKCfD
#: sw/inc/strings.hrc:196
-msgctxt "STR_POOLPAGE_JAKET"
+msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr ""
@@ -4362,1090 +5723,1138 @@ msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
-#. 9Fipd
+#. WSZn8
+#: sw/inc/strings.hrc:646
+msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
+msgid "Toggle Outline Content Visibility"
+msgstr ""
+
+#. CwzRG
#: sw/inc/strings.hrc:647
+msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
+msgid "hold Ctrl or right-click to include sub levels"
+msgstr ""
+
+#. 2Ndnj
+#: sw/inc/strings.hrc:648
+msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
+msgid "Click to Toggle Outline Content Visibility"
+msgstr ""
+
+#. rkD8H
+#: sw/inc/strings.hrc:649
+msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
+msgid "right-click to include sub levels"
+msgstr ""
+
+#. JZgRD
+#: sw/inc/strings.hrc:650
+msgctxt "STR_OUTLINE_CONTENT"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. oBH6y
+#: sw/inc/strings.hrc:651
+msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
+msgid "Toggle"
+msgstr ""
+
+#. 7UQPv
+#: sw/inc/strings.hrc:652
+msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
+msgid "Show All"
+msgstr ""
+
+#. ZUuCQ
+#: sw/inc/strings.hrc:653
+msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
+msgid "Hide All"
+msgstr ""
+
+#. 9Fipd
+#: sw/inc/strings.hrc:655
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr "Laajenna kaikki"
#. FxGVt
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:656
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:657
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Lisää hyperlinkkinä"
#. sdfGe
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:658
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Lisää linkkinä"
#. Suaiz
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:659
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Lisää kopiona"
#. VgdhT
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:660
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Näytä"
#. 3VXp5
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:661
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Aktiivinen ikkuna"
#. fAAUc
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:662
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "piilotettu"
#. 3VWjq
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:663
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "aktiivinen"
#. YjPvg
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:664
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "ei käytössä"
#. tBPKU
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:665
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Muokkaa..."
#. ppC87
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:666
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "Päivitä"
#. 44Esc
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:667
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Muokkaa"
#. w3ZrD
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:668
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Muokkaa linkkiä"
#. xyPWE
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:669
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Lisää"
#. AT9SS
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:670
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "Hakemisto"
#. MnBLc
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:671
msgctxt "STR_FILE"
msgid "File"
msgstr "Tiedosto"
#. DdBgh
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:672
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Uusi asiakirja"
#. aV9Uy
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:673
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Teksti"
#. 5rD3D
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:674
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Poista"
#. 9MrsU
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:675
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "Poista"
#. A28Rb
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:676
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Valinta"
#. gRBxA
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:677
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Hakemistot"
#. WKwLS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:678
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Linkit"
#. TaaJK
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:679
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Kaikki"
#. HpMeb
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:681
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "piilotettu"
#. XcCnB
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:682
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Tiedostoa ei löytynyt: "
#. UC53U
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:684
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:686
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Vasen: "
#. EiXF2
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:687
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". Oikea: "
#. UFpVa
-#: sw/inc/strings.hrc:680
+#: sw/inc/strings.hrc:688
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Sisä: "
#. XE7Wb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:689
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". Ulko: "
#. 3A8Vg
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:690
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". Ylä: "
#. dRhyZ
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:691
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". Ala: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:694
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Sivu"
#. AeDYh
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:695
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Viiva"
#. kfJG6
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:696
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Tekijä"
#. gejqG
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:697
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** Syntaksivirhe **"
#. q6dUT
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:698
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** Jako nollalla **"
#. HSo6d
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:699
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** Virheellinen sulkeiden käyttö **"
#. jcNfg
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:700
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** Potenssifunktion ylivuoto **"
#. C453V
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:701
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** Ylivuoto **"
#. KEQfz
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:702
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** Virhe **"
#. hxrg9
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:703
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** Virheellinen lauseke **"
#. 2yBhF
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:704
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "Virhe: Viitteen lähdettä ei löydy"
#. jgRW7
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:705
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Ei mitään"
#. KRD6s
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:706
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(kiinteä)"
#. FCRUB
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:707
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:708
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Aakkosellinen hakemisto"
#. GDCRF
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:709
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Käyttäjän määrittämä"
#. vnaNc
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:710
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Sisällysluettelo"
#. BESjb
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:711
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Lähdeluettelo"
#. ZFBUD
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:712
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Sitaatti"
#. WAs8q
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:713
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Taulukkoluettelo"
#. NFzTx
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:714
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Objektiluettelo"
#. mSyms
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:715
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Kuvaluettelo"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:717
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Pääotsikko"
#. ziEpC
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:718
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Aihe"
#. FCVZS
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:719
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Avainsanat"
#. kHC7q
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:720
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Huomautukset"
#. i6psX
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:721
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Luotu"
#. L2Bxp
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:722
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Muokattu"
#. D2YKS
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:723
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Edellinen tulostus"
#. QtuZM
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:724
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Versionumero"
#. YDFbi
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:725
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Kokonaismuokkausaika"
#. EpZ9C
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:726
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "Muunna $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:727
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "Muunna ensin $(ARG1)"
#. eQtGV
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:728
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "Muunna seuraavaksi $(ARG1)"
#. aBwxC
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:729
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Lehtiartikkeli"
#. di8ud
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:730
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Kirja"
#. GD5KJ
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:731
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Esitteet"
#. mfFSf
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:732
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Konferenssijulkaisut"
#. Et2Px
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:733
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Kirjan katkelma"
#. ys2B8
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:734
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Kirjan katkelma ja otsikko"
#. mdEqj
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:735
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Konferenssijulkaisut"
#. jNmVD
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:736
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Päiväkirja"
#. M3xkM
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:737
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Tekninen asiakirja"
#. EJAj4
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:738
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Tutkielma"
#. NoUCv
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:739
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Sekalaiset"
#. qNGGE
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Väitöskirja"
#. L7W7R
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Konferenssijulkaisut"
#. X8bGG
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:742
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Tutkimusraportti"
#. 4dDC9
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Julkaisematon"
#. Gb38d
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "Sähköposti"
#. 9HKD6
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "Web-asiakirja"
#. qA449
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Käyttäjän määrittämä1"
#. nyzxz
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Käyttäjän määrittämä2"
#. cCFTF
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Käyttäjän määrittämä3"
#. mrqJC
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Käyttäjän määrittämä4"
#. fFs86
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Käyttäjän määrittämä5"
#. nsCwi
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Lyhyt nimi"
#. CpKgc
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Tyyppi"
#. kUGDr
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Osoite"
#. DquVQ
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Huomautus"
#. sduuV
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Tekijä(t)"
#. fXvz6
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Kirjan otsikko"
#. c8PFE
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Luku"
#. GXqxF
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Laitos"
#. p7A3p
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Muokkaaja"
#. aAFEz
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "Julkaisutyyppi"
#. 8DwdJ
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "Instituutio"
#. VWNxy
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Päiväkirja"
#. Da4fW
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Kuukausi"
#. SdSBt
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Huomautus"
#. MZYpD
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Luku"
#. ZB7Go
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "Organisaatio"
#. C4CdP
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Sivut"
#. yFPFa
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Julkaisija"
#. d9u3p
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Yliopisto"
#. Qxsdb
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Sarjan nimi"
#. YhXPg
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Pääotsikko"
#. qEBhL
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Raportin tyyppi"
#. Sij9w
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Osan numero"
#. K8miv
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Vuosi"
#. pFMSV
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL-osoite"
#. xFG3c
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Käyttäjän määrittämä1"
#. wtDyU
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Käyttäjän määrittämä2"
#. VH3Se
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Käyttäjän määrittämä3"
#. twuKb
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Käyttäjän määrittämä4"
#. WAo7Z
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Käyttäjän määrittämä5"
#. 3r6Wg
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. eFnnx
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:783
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Muokkaa hakemistomerkintää"
#. EHTHH
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:784
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Lisää hakemistomerkintä"
#. D2gkA
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:785
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "Asiakirja sisältää jo lähdeluettelomerkinnän, mutta siinä on eri tiedot. Haluatko muokata olemassa olevia merkintöjä?"
#. mK84T
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:787
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Huomautukset"
#. fwecS
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:788
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Näytä huomautukset"
#. HkUvy
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:789
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Piilota huomautukset"
#. FcmEy
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:791
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Pikavalinnan nimi on jo käytössä. Valitse jokin muu nimi."
#. VhMST
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:792
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Poistetaanko automaattinen teksti?"
#. E5MLr
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:793
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Poistetaan luokka "
#. qndNh
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:794
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:795
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "Automaattinen teksti :"
#. ChetY
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:796
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Tallenna automaattinen teksti"
#. QxAiF
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:797
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Tiedostossa ei ole automaattista tekstiä."
#. sG8Xt
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:798
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "Omat automaattiset tekstit"
#. GaoqR
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:800
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Automaattista tekstiä pikavalinnalle '%1' ei löytynyt."
#. MwUEP
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:801
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "Taulukkoa, jossa ei ole yhtään riviä tai solua, ei voi lisätä"
#. AawM4
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:802
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Taulukkoa ei voi lisätä, koska se on liian iso"
#. GGo8i
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:803
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Automaattista tekstiä ei voitu luoda."
#. DCPSB
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:804
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "Pyydetty leikepöydän muoto ei ole käytettävissä."
#. YxCCF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:805
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION -tekstiasiakirja"
#. 8ygN3
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:806
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Kuva (%PRODUCTNAME %PRODUCTVERSION -tekstiasiakirja)"
#. ewPPB
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:807
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Objekti (%PRODUCTNAME %PRODUCTVERSION -tekstiasiakirja)"
#. 9VEc3
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:808
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE-linkki)"
#. svrE7
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:810
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Kaikki huomautukset"
#. YGNN4
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:811
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Kaikki huomautukset"
#. GDH49
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:812
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Huomautukset tekijältä "
#. RwAcm
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:813
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(ei päivämäärää)"
#. ytxKG
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:814
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(ei tekijää)"
#. nAwMG
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:815
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Vastaus viestiin $1"
#. CVVa6
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:817
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Muokkaa osoitelohkoa"
#. njGGA
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:818
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Mukautettu tervehdys (miehille)"
#. ZVuKY
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:819
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Mukautettu tervehdys (naisille)"
#. h4yuq
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:820
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Tervehdyksen kentät"
#. kWhqT
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:821
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Lisää tervehdykseen"
#. hvF3V
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:822
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Poista tervehdyksestä"
#. A6XaR
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:823
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. ~Vedä tervehdyksen kentät alla olevaan laatikkoon"
#. 4VJWL
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:824
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Tervehdys"
#. Vj6XT
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:825
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Välimerkki"
#. bafeG
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:826
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Teksti"
#. tt6sA
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:827
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "Kohdista osoitelistan kentät tervehdyksiin."
#. zrUsN
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:828
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Tervehdyksen esikatselu"
#. 2UVE6
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:829
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Osoitelohkon kentät"
#. Bd6pd
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:830
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Tervehdyksen kentät"
#. 9krzf
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:831
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Vastaa kenttää:"
#. oahCQ
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:832
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Esikatselu"
#. ijdxe
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:833
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:835
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " ei vielä täsmännyt "
#. Y6FhG
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:836
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Kaikki tiedostot"
#. 7cNjh
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:837
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Osoitelistat (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:838
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:839
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:840
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:841
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:842
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:843
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:844
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Teksti (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:845
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Välimerkein muotoiltua tekstiä (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:846
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:848
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -5457,91 +6866,91 @@ msgstr ""
"Haluatko syöttää sähköpostitilin tiedot nyt?"
#. r9BVg
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:849
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "%PRODUCTNAME osoitelista (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:851
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "Valitse asiakirja pohjaksi"
#. FiUyK
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:852
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "Valitse asiakirjan tyyppi"
#. QwrpS
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:853
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "Lisää osoitelohko"
#. omRZF
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:854
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "Valitse osoitelista"
#. YrDuD
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:855
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "Luo tervehdys"
#. tTr4B
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:856
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "Säädä asettelua"
#. S4p5M
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:857
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "Sulje pois vastaanottaja"
#. N5YUH
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:858
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Valmis"
#. L5FEG
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:859
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Joukkokirjeen ohjattu luonti"
#. CEhZj
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:861
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Taulu"
#. v9hEB
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:862
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Kysely"
#. HxGAu
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:864
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Jatketaanko tarkistusta asiakirjan alusta?"
#. gE7CA
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:865
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Oikoluku on valmis."
#. 2SuqF
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:866
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr "Sanastoa ei ole saatavilla"
@@ -5551,252 +6960,252 @@ msgstr "Sanastoa ei ole saatavilla"
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:872
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Päivämäärä"
#. V9cQp
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:873
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Aika"
#. 2zgWi
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:874
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Tiedoston nimi"
#. FdSaU
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:875
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Tietokannan nimi"
#. XZADh
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:876
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Luku"
#. wYWy2
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:877
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "Sivunumero"
#. EXC6N
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:878
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Tilastotiedot"
#. EW86G
-#: sw/inc/strings.hrc:871
+#: sw/inc/strings.hrc:879
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Tekijä"
#. 5aFak
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:880
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Mallit"
#. 3wdud
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:881
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Lähettäjä"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:883
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Määritä muuttuja"
#. ckA26
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:884
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Näytä muuttuja"
#. Fjzgu
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:885
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Lisää kaava"
#. AXoAT
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:886
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Syöttökenttä"
#. VfqNE
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:887
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Syöttökenttä (muuttuja)"
#. E8JAd
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:888
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Syöttökenttä (käyttäjä)"
#. 8LGEQ
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:889
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "Ehdollinen teksti"
#. jrZ7i
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:890
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE-kenttä"
#. 9WAT9
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:891
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Suorita makro"
#. qEBxa
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:892
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Numeroalue"
#. ACE5s
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:893
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Määritä sivumuuttuja"
#. ayB3N
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:894
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Näytä sivumuuttuja"
#. DBM4P
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:895
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "Lataa URL-osoite"
#. LJFF5
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:896
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Paikanvaraaja"
#. zZCg6
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:897
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Yhdistä merkit"
#. 9MGU6
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:898
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Valintaluettelo"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:900
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Määritä viite"
#. FJ2X8
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:901
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Lisää viite"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:903
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "Joukkokirjeen kenttä"
#. JP2DU
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:904
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Seuraava tietue"
#. GizhA
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:905
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Mikä tahansa tietue"
#. aMGxm
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:906
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Tietueen numero"
#. DtYzi
-#: sw/inc/strings.hrc:899
+#: sw/inc/strings.hrc:907
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Edellinen sivu"
#. UCSej
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:908
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Seuraava sivu"
#. M8Fac
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:909
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Piiloteksti"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:911
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Käyttäjäkenttä"
#. XELYN
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:912
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Huomautus"
#. MB6kt
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:913
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Komentosarja"
#. BWU6A
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:914
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Lähdeluettelomerkintä"
#. 7EGCR
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:915
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Piilotettu kappale"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:917
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "Asiakirjatiedot"
@@ -5805,87 +7214,87 @@ msgstr "Asiakirjatiedot"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:921
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Päivämäärä"
#. qMCEh
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:922
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Kiinteä päivämäärä"
#. AXmyw
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:923
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Aika"
#. 6dxVs
-#: sw/inc/strings.hrc:916
+#: sw/inc/strings.hrc:924
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Kiinteä kellonaika"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:918
+#: sw/inc/strings.hrc:926
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Taulukot"
#. 7qW4K
-#: sw/inc/strings.hrc:919
+#: sw/inc/strings.hrc:927
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Merkit"
#. zDRCp
-#: sw/inc/strings.hrc:920
+#: sw/inc/strings.hrc:928
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Sanat"
#. 2wgLC
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:929
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Kappaleet"
#. JPGG7
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:930
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Kuva"
#. CzoFh
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:931
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Objektit"
#. bDG6R
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:932
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Sivut"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:934
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "Automaattinen DDE"
#. xPP2E
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:935
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "Manuaalinen DDE"
#. spdXd
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:936
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[Teksti]"
@@ -5894,103 +7303,103 @@ msgstr "[Teksti]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:941
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Yritys"
#. WWxTK
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:942
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Etunimi"
#. 4tdAc
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:943
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Sukunimi"
#. xTV7n
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:944
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Nimikirjaimet"
#. AKD3k
-#: sw/inc/strings.hrc:937
+#: sw/inc/strings.hrc:945
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Katuosoite"
#. ErMju
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:946
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Maa"
#. ESbkx
-#: sw/inc/strings.hrc:939
+#: sw/inc/strings.hrc:947
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Postinumero"
#. WDAc2
-#: sw/inc/strings.hrc:940
+#: sw/inc/strings.hrc:948
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Postitoimipaikka"
#. pg7MV
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:949
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Ammatti"
#. DwLhZ
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:950
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Asema"
#. LDTdu
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:951
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Puh. (Koti)"
#. JBZyj
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Puh. (Työ)"
#. 5EmGH
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Faksi"
#. AtN9J
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "Sähköposti"
#. 6GBRm
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Osavaltio"
#. pbrdQ
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:956
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "ei käytössä"
#. wC8SE
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:957
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "käytössä"
@@ -6000,37 +7409,37 @@ msgstr "käytössä"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:962
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Tiedoston nimi"
#. RBpz3
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:963
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Tiedoston nimi ilman tunnistetta"
#. BCzy8
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:964
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Polku/tiedosto"
#. ChFwM
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:965
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Polku"
#. eEaBE
-#: sw/inc/strings.hrc:958
+#: sw/inc/strings.hrc:966
msgctxt "FMT_FF_UI_NAME"
msgid "Style"
msgstr "Tyyli"
#. ANM2H
-#: sw/inc/strings.hrc:959
+#: sw/inc/strings.hrc:967
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Luokka"
@@ -6039,25 +7448,25 @@ msgstr "Luokka"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:971
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Luvun nimi"
#. tnLqE
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:972
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Luvun numero"
#. qGEAs
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:973
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "Luvun numero ilman erotinta"
#. WFA5R
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:974
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Luvun numero ja nimi"
@@ -6066,55 +7475,55 @@ msgstr "Luvun numero ja nimi"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:978
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:979
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:980
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:981
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:982
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Roomalaiset (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:983
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Roomalaiset (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:984
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Arabialaiset (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:985
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Sivutyylinä"
#. xBKwZ
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:986
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Teksti"
@@ -6123,13 +7532,13 @@ msgstr "Teksti"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:990
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Nimi"
#. RCnZb
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:991
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Nimikirjaimet"
@@ -6138,49 +7547,49 @@ msgstr "Nimikirjaimet"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:987
+#: sw/inc/strings.hrc:995
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Järjestelmä"
#. qKXLW
-#: sw/inc/strings.hrc:988
+#: sw/inc/strings.hrc:996
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Teksti"
#. E86ZD
-#: sw/inc/strings.hrc:989
+#: sw/inc/strings.hrc:997
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Nimi"
#. FB3Rp
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:998
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Teksti"
#. KiBai
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:999
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Kaava"
#. 9AsdS
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:1000
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Teksti"
#. GokUf
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Tietokanta"
#. UBADL
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Järjestelmä"
@@ -6189,19 +7598,19 @@ msgstr "Järjestelmä"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Tekijä"
#. aqFVp
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Aika"
#. FaZKx
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Päivämäärä"
@@ -6210,79 +7619,79 @@ msgstr "Päivämäärä"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "Viite"
#. L7dK7
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "Sivu"
#. MaB3q
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1014
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Luku"
#. 8FciB
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1015
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "Ylhäällä/alhaalla"
#. Vq8mj
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1016
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "Sivutyylinä"
#. CQitd
-#: sw/inc/strings.hrc:1009
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Luokka ja numero"
#. BsvCn
-#: sw/inc/strings.hrc:1010
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Kuvateksti"
#. P7wiX
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Numerointi"
#. QBGit
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Numero"
#. CGkV7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Numero (ei ylätasoja)"
#. XgSb3
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Numero (kaikki tasot)"
#. zQTNF
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "Artikkeli a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "Artikkeli A/Az + "
@@ -6291,31 +7700,31 @@ msgstr "Artikkeli A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Teksti"
#. rAQoE
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Taulukko"
#. biUa2
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Kehys"
#. 7mkZb
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Kuva"
#. GgbFY
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Objekti"
@@ -6324,1475 +7733,1475 @@ msgstr "Objekti"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1037
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~Ehto"
#. X9cqJ
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1038
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Sitten, Muuten"
#. bo8yF
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1039
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE-lause"
#. LixXA
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1040
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "~Piilotettu teksti"
#. EX3bJ
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1041
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "Makron n~imi"
#. dNZtd
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1042
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~Viite"
#. bfRPa
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1043
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "~Merkit"
#. j2G5G
-#: sw/inc/strings.hrc:1036
+#: sw/inc/strings.hrc:1044
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "S~iirtymä"
#. vEgGo
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1045
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Arvo"
#. YQesU
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1046
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Kaava"
#. Eq5xq
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1047
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Muokattu"
#. 32NzA
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1049
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[Käyttäjän määrittämä]"
#. dYQTU
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1051
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "V.etäisyys"
#. xELZY
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1052
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "P.etäisyys"
#. F9Ldz
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1053
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Leveys"
#. rdxcb
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1054
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Korkeus"
#. DQm2h
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1055
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Vasen marginaali"
#. imDMU
-#: sw/inc/strings.hrc:1048
+#: sw/inc/strings.hrc:1056
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Ylämarginaali"
#. ayQss
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1057
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Palstat"
#. 3moLd
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1058
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Rivit"
#. XWMSH
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1060
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "Sana- ja merkkimäärä. Napsauta avataksesi sanamääräikkunan."
#. nxGNq
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1061
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "Yhden sivun näkymä"
#. 57ju6
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1062
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "Usean sivun näkymä"
#. tbig8
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Kirjanäkymä"
#. xBHUG
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1064
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "Sivunumero asiakirjassa. Napsauta avataksesi Siirry sivulle -valintaikkunan tai napsauta oikealla painikkeella avataksesi kirjanmerkkiluettelon."
#. XaF3v
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1065
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "Sivunumero asiakirjassa (Sivunumero tulostetussa asiakirjassa). Napsauta avataksesi Siirry sivulle -valintaikkunan."
#. EWtd2
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1066
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "Sivutyyli. Napsauta oikealla painikkeella muuttaaksesi tyyliä tai napsauta avataksesi tyyli-ikkunan."
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1069
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "Anfangikoko"
#. PLAVt
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1070
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "rivit"
#. sg6Za
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1071
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Ei anfangeja"
#. gueRC
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1072
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Ei sivunvaihtoa"
#. G3CQN
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1073
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "Älä peilaa"
#. MVEk8
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Käännä pystysuunnassa"
#. Dns6t
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1075
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Käännä vaakasuunnassa"
#. ZUKCy
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "Vaaka- ja pystysuuntainen käännös"
#. LoQic
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1077
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ peilaa vaakasuunnassa parillisilla sivuilla"
#. kbnTf
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1078
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Merkkityyli"
#. D99ZJ
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1079
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Ei merkkityyliä"
#. fzG3P
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1080
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Alatunniste"
#. 9RCsQ
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1081
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Ei alatunnistetta"
#. zFTin
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1082
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Ylätunniste"
#. PcYEB
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1083
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Ei ylätunnistetta"
-#. Zm8cr
-#: sw/inc/strings.hrc:1076
+#. 8Jgfg
+#: sw/inc/strings.hrc:1084
msgctxt "STR_SURROUND_IDEAL"
-msgid "Optimal wrap"
-msgstr "Optimaalinen rivitys"
+msgid "Optimal"
+msgstr ""
-#. whxC3
-#: sw/inc/strings.hrc:1077
+#. HEuGy
+#: sw/inc/strings.hrc:1085
msgctxt "STR_SURROUND_NONE"
-msgid "No wrap"
-msgstr "Ei rivitystä"
+msgid "None"
+msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1086
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "Läpi"
-#. gS6sZ
-#: sw/inc/strings.hrc:1079
+#. ypvD6
+#: sw/inc/strings.hrc:1087
msgctxt "STR_SURROUND_PARALLEL"
-msgid "Parallel wrap"
-msgstr "Samansuuntainen rivitys"
+msgid "Parallel"
+msgstr ""
-#. tmVqi
-#: sw/inc/strings.hrc:1080
+#. hyEQ5
+#: sw/inc/strings.hrc:1088
msgctxt "STR_SURROUND_LEFT"
-msgid "Left wrap"
-msgstr "Rivitys vasemmalle"
+msgid "Before"
+msgstr ""
-#. 3tBBF
-#: sw/inc/strings.hrc:1081
+#. bGBtQ
+#: sw/inc/strings.hrc:1089
msgctxt "STR_SURROUND_RIGHT"
-msgid "Right wrap"
-msgstr "Rivitä oikealle"
+msgid "After"
+msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1090
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(Vain ankkuri)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Leveys:"
#. 2GYT7
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1092
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Kiinteä korkeus:"
#. QrFMi
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1093
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "Korkeus vähintään:"
#. kLiYd
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1094
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "kappaleeseen"
#. bEavs
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1095
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr "merkkiin"
#. hDUSa
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1096
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "sivulle"
#. JMHRz
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1097
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "X-koordinaatti:"
#. oCZWW
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1098
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Y-koordinaatti:"
#. YNKE6
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1099
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "ylhäällä"
#. GPTAu
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1100
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Keskitetty pystysuunnassa"
#. fcpTS
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1101
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "pohjalla"
#. 37hos
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1102
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Rivin yläreuna"
#. MU7hC
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1103
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Keskitetty rivi"
#. ZvEq7
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1104
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Rivin alareuna"
#. X9utp
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1105
msgctxt "STR_REGISTER_ON"
msgid "Register-true"
msgstr "Rivirekisteri"
#. YDuHJ
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1106
msgctxt "STR_REGISTER_OFF"
msgid "Not register-true"
msgstr "Ei rivirekisteriä"
#. 4RL9X
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1107
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "oikealla"
#. wzGK7
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1108
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Keskitetty vaakataso"
#. ngRmB
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1109
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "vasemmalla"
#. JyHkM
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1110
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "sisällä"
#. iXSZZ
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1111
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "ulkopuolella"
#. kDY9Z
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1112
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Täysi leveys"
#. Hvn8D
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1113
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Palstat"
#. 6j6TA
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1114
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Erottimen leveys:"
#. dvdDt
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1115
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Suurin alaviiteala:"
#. BWqF3
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1116
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Muokattavissa kirjoitussuojatuissa asiakirjoissa"
#. SCL5F
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1117
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Jaa"
#. AETHf
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1118
msgctxt "STR_NUMRULE_ON"
msgid "Numbering"
msgstr "Numerointi"
#. 7HmsY
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1119
msgctxt "STR_NUMRULE_OFF"
msgid "no numbering"
msgstr "ei numerointia"
#. QDaFk
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1120
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "linkitetty kohteeseen "
#. rWmT8
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1121
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "ja "
#. H2Kwq
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Laske rivit"
#. yjSiJ
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1123
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "ei rivien laskemista"
#. HE4BV
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "aloita rivilaskenta uudelleen määrityksellä: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Kirkkaus: "
#. sNxPE
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1126
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Punainen: "
#. u73NC
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1127
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Vihreä: "
#. qQsPp
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1128
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Sininen: "
#. BS4nZ
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1129
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Kontrasti: "
#. avJBK
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1130
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Gamma: "
#. HQCJZ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1131
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Läpinäkyvyys: "
#. 5jDK3
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1132
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Käännä"
#. DVSAx
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1133
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "älä käännä"
#. Z7tXB
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Grafiikkatila: "
#. RXuUF
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1135
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Vakio"
#. kbALJ
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1136
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Harmaasävyt"
#. eSHEj
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1137
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Mustavalkoinen"
#. tABTr
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1138
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Vesileima"
#. 8SwC3
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1139
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Kierto"
#. hWEeF
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1140
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Ei ruudukkoa"
#. HEuEv
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Ruudukko (vain rivit)"
#. VFgMq
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1142
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Ruudukko (rivit ja merkit)"
#. VRJrB
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1143
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Seuraa tekstin rivitystä"
#. Sb3Je
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1144
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Älä seuraa tekstin rivitystä"
#. yXFKP
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1145
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Yhdistä reunat"
#. vwHbS
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Älä yhdistä reunoja"
#. 3874B
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1148
msgctxt "ST_TBL"
msgid "Table"
msgstr "Taulukko"
#. PCNdr
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1149
msgctxt "ST_FRM"
msgid "Text Frame"
msgstr "Tekstikehys"
#. Fsnm6
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1150
msgctxt "ST_PGE"
msgid "Page"
msgstr "Sivu"
#. pKFCz
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1151
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Piirros"
#. amiSY
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1152
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Ohjausobjekti"
#. GEw9u
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1153
msgctxt "ST_REG"
msgid "Section"
msgstr "Osa"
#. bEiyL
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1154
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Kirjanmerkki"
#. 6gXCo
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1155
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Kuva"
#. d5eSc
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1156
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE-objekti"
#. h5QQ8
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1157
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Otsikot"
#. Cbktp
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1158
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Valinta"
#. nquvS
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1159
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Alaviite"
#. GpAUo
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1160
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Muistutus"
#. nDFKa
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1161
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Huomautus"
#. qpbDE
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1162
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Toista haku"
#. ipxfH
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1163
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "Hakemistomerkintä"
#. sfmff
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1164
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Taulukkokaava"
#. DtkuT
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1165
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Väärä taulukkokaava"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1167
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Seuraava taulukko"
#. vPiab
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1168
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next text frame"
msgstr "Seuraava tekstikehys"
#. M4BCA
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1169
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Seuraava sivu"
#. UWeq4
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1170
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Seuraava piirros"
#. ZVCrD
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1171
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Seuraava ohjausobjekti"
#. NGAqr
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1172
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Seuraava osa"
#. Mwcvm
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1173
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Seuraava kirjanmerkki"
#. xbxDs
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1174
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Seuraava kuva"
#. 4ovAF
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1175
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Seuraava OLE-objekti"
#. YzK6w
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1176
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Seuraava otsikko"
#. skdRc
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1177
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Seuraava valinta"
#. RBFga
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1178
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Seuraava alaviite"
#. GNLrx
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Seuraava muistutus"
#. mFCfp
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Seuraava huomautus"
#. gbnwp
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Jatka hakua eteenpäin"
#. TXYkA
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1182
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Seuraava hakemistomerkintä"
#. EyvbV
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Edellinen taulukko"
#. ygrTh
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1184
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous text frame"
msgstr "Edellinen tekstikehys"
#. eQPFD
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1185
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Edellinen sivu"
#. p5jbU
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Edellinen piirros"
#. 2WMmZ
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Edellinen ohjausobjekti"
#. 6uGDP
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1188
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Edellinen osa"
#. YYCtk
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Edellinen kirjanmerkki"
#. nFLdX
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Edellinen kuva"
#. VuxvB
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Edellinen OLE-objekti"
#. QSuct
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Edellinen otsikko"
#. CzLBr
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Edellinen valinta"
#. B7PoL
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Edellinen alaviite"
#. AgtLD
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Edellinen muistutus"
#. GJQ6F
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Edellinen huomautus"
#. GWnfD
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Jatka hakua taaksepäin"
#. uDtcG
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Edellinen hakemistomerkintä"
#. VR6DX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Edellinen taulukon kaava"
#. GqESF
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Seuraava taulukon kaava"
#. gBgxo
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Edellinen virheellinen taulukon kaava"
#. UAon9
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Seuraava virheellinen taulukon kaava"
#. hSYa3
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1204
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Lisätty"
#. LnFkq
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1205
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Poistettu"
#. cTNEn
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1206
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Muotoiltu"
#. YWr7C
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1207
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Taulukko muuttunut"
#. 6xVDN
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1208
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Käytetyt kappaletyylit"
#. 32AND
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1209
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Kappalemuotoilu muuttunut"
#. wLDkj
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1210
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Rivi lisätty"
#. Eb5Gb
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1211
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Rivi poistettu"
#. i5ZJt
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1212
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Solu lisätty"
#. 4gE3z
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1213
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Solu poistettu"
#. DRCyp
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1214
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Loppuviite: "
#. qpW2q
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1215
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Alaviite: "
#. 3RFUd
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1216
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s-napsauta avataksesi toimintotunnistevalikon"
#. QCD36
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1217
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Ylätunniste (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1218
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Ensimmäisen sivun ylätunniste (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1219
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Vasemman sivun ylätunniste (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1220
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Oikean sivun ylätunniste (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1221
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Alatunniste (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1222
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Ensimmäisen sivun alatunniste (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1223
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Vasemman sivun alatunniste (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1224
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Oikean sivun alatunniste (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1225
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Poista ylätunniste..."
#. wL3Fr
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1226
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Muotoile ylätunniste..."
#. DrAUe
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1227
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Poista alatunniste..."
#. 9Xgou
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1228
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Muotoile alatunniste..."
#. ApT5B
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1230
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "Kiinnitä taulukko"
#. uvDKE
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1232
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Kuvatiedostoa ei voi avata"
#. iJuAv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1233
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Kuvatiedostoa ei voi lukea"
#. Bwwho
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1234
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Tuntematon kuvatiedostomuoto"
#. bfog5
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1235
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Tätä kuvatiedoston versiota ei tueta"
#. xy4Vm
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1236
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Kuvasuodatinta ei löytynyt"
#. tEqyq
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1237
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Muisti ei riitä kuvan lisäämiseen."
#. 5ihue
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1238
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Lisää kuva"
#. GWzLN
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Huomautus: "
#. CoJc8
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Lisäys"
#. dfMEF
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Poisto"
#. NytQQ
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Automaattinen korjaus"
#. YRAQL
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1243
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1244
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Taulukon muutokset"
#. PzfQF
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Käytetyt kappaletyylit"
#. sgEbW
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Sivu "
#. 3DpEx
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1247
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Sivu %1 / %2"
#. HSbzS
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1248
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Sivu %1 / %2 (Sivu %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1249
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr "Sivu %1 / %2 (tulostettava sivu %3 / %4)"
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1251
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Kappale"
#. aAtmp
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1252
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Kuva"
#. UBDMK
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1253
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-objekti"
#. xEWbo
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1254
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Kehys"
#. hfJns
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1255
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Taulukko"
#. GRqNY
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1256
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Taulukon rivi"
#. CDQY4
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1257
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Taulukon solu"
#. 2Db9T
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1258
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Sivu"
#. 63FuG
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1259
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Ylätunniste"
#. aDuAY
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1260
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Alatunniste"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1263
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML -asiakirja"
#. y2GBv
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1265
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Otsikko"
#. AipGR
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1266
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Erotin"
#. CoSEf
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1267
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Taso "
#. JdTF4
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1268
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Tiedostoa %1 hakemistopolusta %2 ei löytynyt."
#. zRWDZ
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1269
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Käyttäjän määrittämä hakemisto"
#. t5uWs
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1270
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<Ei mitään>"
#. vSSnJ
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1271
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<Ei mitään>"
#. NSx98
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1272
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1273
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "M#"
#. 8EgTx
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1274
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "M"
#. gxt8B
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1275
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "S"
#. pGAb4
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1276
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1277
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "LI"
#. XWaFn
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1278
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LA"
#. xp6D6
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1279
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LL"
#. AogDK
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1280
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Luvun numero"
#. FH365
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1282
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Merkintä"
#. xZjtZ
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1283
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Sarkainkohta"
#. aXW8y
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1284
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Teksti"
#. MCUd2
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1285
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Sivunumero"
#. pXqw3
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1286
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Luvun tiedot"
#. DRBSD
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1287
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Hyperlinkin alku"
#. Ytn5g
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1288
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Hyperlinkin loppu"
#. hRo3J
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Lähdeluettelomerkintä: "
#. ZKG5v
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1290
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Merkkityyli: "
#. d9BES
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1291
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Jäsennä tekstiä"
#. kwoGP
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1292
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Napsauta Ctrl+Alt+A siirtääksesi kohdistimen muihin toimenpiteisiin"
#. Avm9y
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1293
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Napsauta vasenta tai oikeaa nuolinäppäintä valitaksesi jäsennystyökalun"
#. 59eRi
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1294
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "Napsatau Ctrl+Alt+B siirtääksesi kohdistimen takaisin nykyiseen jäsennystyökaluun"
#. 8AagG
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1295
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Aakkostetun hakemiston (*.sdi) luontitiedosto"
@@ -7801,259 +9210,259 @@ msgstr "Aakkostetun hakemiston (*.sdi) luontitiedosto"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1300
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Perusviiva ~ylhäällä"
#. 5GiEA
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1301
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~Perusviiva alhaalla"
#. sdyVF
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1302
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "~Keskitetty perusviiva"
#. NAXyZ
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1303
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Lisää objekti"
#. 5C6Rc
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1304
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Muokkaa objektia"
#. 3QFYB
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1305
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Malli: "
#. oUhnK
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1306
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Reunat"
#. T2SH2
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1307
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Tausta"
#. K6Yvs
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Kappaletyyli: "
#. Fsanh
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Käsiteltävälle sivulle ei voi lisätä sivunumeroa. Parillisia numeroita voi käyttää vasemmanpuoleisilla sivuilla, parittomia numeroita oikeanpuoleisilla."
#. VZnJf
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1312
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION -perusasiakirja"
#. kWe9j
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1314
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "Tiedostojen yhdistäminen tuhoaa nykyisen osan sisällön. Kytketäänkö kuitenkin?"
#. dLuAF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1315
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Annettu salasana on virheellinen."
#. oUR7Y
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1316
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Salasanaa ei ole määritetty."
#. GBVqD
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1318
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Tavutus valmis"
#. rZBXF
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1319
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Ei mikään (ei oikolukua)"
#. Z8EjG
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1320
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Palauta oletuskieli"
#. YEXdS
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1321
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Lisää..."
#. QecQ3
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1322
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Ohita"
#. aaiBM
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1323
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Selitys..."
#. kSDGu
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1325
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Tarkista erityisalueet -toiminto on poistettu käytöstä. Tarkistetaanko kuitenkin?"
#. KiAdJ
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1326
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Asiakirjoja ei voitu yhdistää."
#. FqsCt
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1327
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "%PRODUCTNAME Basea tarvitaan joukkokirjetoiminnon käyttämiseen, mutta sitä ei ole asennettu."
#. wcuf4
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Lähdettä ei voi ladata."
#. K9qMS
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1329
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Faksitulostinta ei ole määritetty kohdassa Työkalut/Asetukset/%1/Tulostus."
#. XWQ8w
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1330
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML-asiakirja"
#. qVZBx
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1331
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Tekstiasiakirja"
#. qmmPU
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1332
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Lähdettä ei määritetty."
#. 2LgDJ
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1333
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Taso "
#. AcAD8
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1334
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Jäsennys "
#. DE9FZ
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1335
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Muokkaa ala- tai loppuviitettä"
#. EzBCZ
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1336
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Etsittävä korvattu XX kertaa."
#. fgywB
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1337
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Rivi "
#. GUc4a
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1338
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Palsta "
#. yMyuo
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1339
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~Vie lähde..."
#. ywFCb
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1340
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Vie kopio lähteestä..."
#. BT3M3
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1342
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Jatka"
#. ZR9aw
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1343
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Lähetetään kohteeseen: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1344
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Lähetys onnistui"
#. fmHmE
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1345
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Lähetys epäonnistui"
#. yAAPM
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1347
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "YRITYS;CR;ETUNIMI; ;SUKUNIMI;CR;OSOITE;CR;POSTITOIMIPAIKKA; ;OSAVALTIO; ;POSTINUMERO;CR;MAA;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1349
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Tekstikaava"
#. RmBFW
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1351
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -8062,7 +9471,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1357
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "Asiakirjan luokitus on muuttunut, koska kappaleen luokitustaso on korkeampi"
@@ -8071,121 +9480,121 @@ msgstr "Asiakirjan luokitus on muuttunut, koska kappaleen luokitustaso on korkea
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1362
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Kelvollinen "
#. xAKRC
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1363
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Epäkelpo"
#. pDAHz
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1364
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Epäkelpo allekirjoitus"
#. etEEx
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1365
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Allekirjoittanut"
#. BK7ub
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1366
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Kappaleen allekirjoitus"
#. kZKCf
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1368
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Käyntikortit"
#. ECFij
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1370
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "Sähköpostin asetukset"
#. PwrB9
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1372
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Lisää"
#. NL48o
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1373
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Poista"
#. PW4Bz
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1374
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Määritteet"
#. yfgiq
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1376
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Etsittävä termi"
#. fhLzk
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1377
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Vaihtoehtoinen merkintä"
#. gD4D3
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1378
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1. avain"
#. BFszo
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1379
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2. avain"
#. EoAB8
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1380
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Huomautus"
#. Shstx
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1381
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Sama kirjainkoko"
#. 8Cjvb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1382
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Vain sana"
#. zD8rb
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1383
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Kyllä"
#. 4tTop
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1384
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Ei"
#. KhKwa
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1386
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Mukautettu"
@@ -8323,29 +9732,47 @@ msgid "Create AutoAbstract"
msgstr "Luo automaattinen tiivistelmä"
#. fWdjM
-#: sw/uiconfig/swriter/ui/abstractdialog.ui:121
+#: sw/uiconfig/swriter/ui/abstractdialog.ui:118
msgctxt "abstractdialog|label2"
msgid "Included outline levels"
msgstr "Sisällytetyt jäsennystasot"
#. 8rYwZ
-#: sw/uiconfig/swriter/ui/abstractdialog.ui:136
+#: sw/uiconfig/swriter/ui/abstractdialog.ui:133
msgctxt "abstractdialog|label3"
msgid "Paragraphs per level"
msgstr "Kappaleita tasolla"
#. CZFAS
-#: sw/uiconfig/swriter/ui/abstractdialog.ui:151
+#: sw/uiconfig/swriter/ui/abstractdialog.ui:148
msgctxt "abstractdialog|label4"
msgid "The abstract contains the selected number of paragraphs from the included outline levels."
msgstr "Tiivistelmässä on valittu määrä kappaleita sisällytetyistä jäsennystasoista."
+#. zeoic
+#: sw/uiconfig/swriter/ui/abstractdialog.ui:169
+msgctxt "abstractdialog|extended_tip|outlines"
+msgid "Enter the extent of the outline levels to be copied to the new document."
+msgstr "Annetaan uuteen asiakirjaan kopioitavien jäsennystasojen syvyys."
+
+#. ELZAp
+#: sw/uiconfig/swriter/ui/abstractdialog.ui:186
+msgctxt "abstractdialog|extended_tip|paras"
+msgid "Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading."
+msgstr "Määrätään otsikoiden jälkeisten tiivistelmään tukevien kappaleiden enimmäismäärä."
+
#. G6YVz
-#: sw/uiconfig/swriter/ui/abstractdialog.ui:196
+#: sw/uiconfig/swriter/ui/abstractdialog.ui:203
msgctxt "abstractdialog|label1"
msgid "Properties"
msgstr "Ominaisuudet"
+#. 3UKNA
+#: sw/uiconfig/swriter/ui/abstractdialog.ui:228
+msgctxt "abstractdialog|extended_tip|AbstractDialog"
+msgid "Copies the headings and a number of subsequent paragraphs in the active document to a new AutoAbstract text document. An AutoAbstract is useful for obtaining an overview of long documents."
+msgstr ""
+
#. rFSF5
#: sw/uiconfig/swriter/ui/addentrydialog.ui:8
msgctxt "addentrydialog|AddEntryDialog"
@@ -8371,59 +9798,119 @@ msgid "New Address Block"
msgstr "Uusi osoitelohko"
#. J5BXC
-#: sw/uiconfig/swriter/ui/addressblockdialog.ui:130
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:127
msgctxt "addressblockdialog|addressesft"
msgid "Address _elements"
msgstr "Osoitteiden kentät"
+#. BFZo7
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:172
+msgctxt "addressblockdialog|extended_tip|addresses"
+msgid "Select a field and drag the field to the other list."
+msgstr "Valitaan kenttä ja vedetään se toiseen luetteloon."
+
#. mQ55L
-#: sw/uiconfig/swriter/ui/addressblockdialog.ui:186
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:188
msgctxt "addressblockdialog|addressdestft"
msgid "1. Drag address elements here"
msgstr "1. Vedä osoitekentät tähän"
#. FPtPs
-#: sw/uiconfig/swriter/ui/addressblockdialog.ui:209
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:211
msgctxt "addressblockdialog|up|tooltip_text"
msgid "Move up"
msgstr "Siirrä ylöspäin"
+#. HGrvF
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:215
+msgctxt "addressblockdialog|extended_tip|up"
+msgid "Select an item in the list and click an arrow button to move the item."
+msgstr "Luettelosta valittua kohdetta siirretään nuolipainikkeista napsauttaen nuolen suuntaan."
+
#. WaKFt
-#: sw/uiconfig/swriter/ui/addressblockdialog.ui:222
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:229
msgctxt "addressblockdialog|left|tooltip_text"
msgid "Move left"
msgstr "Siirrä vasemmalle"
+#. gW9cV
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:233
+msgctxt "addressblockdialog|extended_tip|left"
+msgid "Select an item in the list and click an arrow button to move the item."
+msgstr "Luettelosta valittua kohdetta siirretään nuolipainikkeista napsauttaen nuolen suuntaan."
+
#. 8SHCH
-#: sw/uiconfig/swriter/ui/addressblockdialog.ui:235
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:247
msgctxt "addressblockdialog|right|tooltip_text"
msgid "Move right"
msgstr "Siirrä oikealle"
+#. 8J9sd
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:251
+msgctxt "addressblockdialog|extended_tip|right"
+msgid "Select an item in the list and click an arrow button to move the item."
+msgstr "Luettelosta valittua kohdetta siirretään nuolipainikkeista napsauttaen nuolen suuntaan."
+
#. 3qGSH
-#: sw/uiconfig/swriter/ui/addressblockdialog.ui:248
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:265
msgctxt "addressblockdialog|down|tooltip_text"
msgid "Move down"
msgstr "Siirrä alaspäin"
+#. FFgmC
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:269
+msgctxt "addressblockdialog|extended_tip|down"
+msgid "Select an item in the list and click an arrow button to move the item."
+msgstr "Luettelosta valittua kohdetta siirretään nuolipainikkeista napsauttaen nuolen suuntaan."
+
#. VeEDs
-#: sw/uiconfig/swriter/ui/addressblockdialog.ui:281
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:303
msgctxt "addressblockdialog|label3"
msgid "Preview"
msgstr "Esikatselu"
#. pAsvT
-#: sw/uiconfig/swriter/ui/addressblockdialog.ui:295
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:317
msgctxt "addressblockdialog|customft"
msgid "2. Customi_ze salutation"
msgstr "2. Muokkaa tervehdystä"
+#. T3QBj
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:340
+msgctxt "addressblockdialog|extended_tip|custom"
+msgid "Select a value from the list for the salutation and the punctuation mark fields."
+msgstr "Valitaan luettelosta arvo tervehdys- ja välimerkkikenttään."
+
+#. X4p3v
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:371
+msgctxt "addressblockdialog|extended_tip|addressdest"
+msgid "Arrange the fields by drag-and-drop or use the arrow buttons."
+msgstr "Kenttiä järjestellään vetämällä ja pudottamalla tai nuolipainikkeilla."
+
+#. ZJVnT
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:404
+msgctxt "addressblockdialog|extended_tip|addrpreview"
+msgid "Displays a preview of the first database record with the current salutation layout."
+msgstr "Esikatsellaan tietokannan ensimmäistä tietuetta käsillä olevan tervehdyksen asetteluin."
+
#. HQ7GB
-#: sw/uiconfig/swriter/ui/addressblockdialog.ui:391
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:428
msgctxt "addressblockdialog|fromaddr|tooltip_text"
msgid "Remove from address"
msgstr "Poista osoitteesta"
+#. JDRCu
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:432
+msgctxt "addressblockdialog|extended_tip|fromaddr"
+msgid "Removes the selected field from the other list."
+msgstr "Poistetaan valittu kenttä toisesta luettelosta."
+
+#. GzXkX
+#: sw/uiconfig/swriter/ui/addressblockdialog.ui:449
+msgctxt "addressblockdialog|extended_tip|toaddr"
+msgid "Adds the selected field from the list of salutation elements to the other list. You can add a field more than once."
+msgstr "Lisätään valittu kenttä Osoitteiden kentät -luettelosta toiseen luetteloon. Sama kenttä on lisättävissä useampaan kertaan."
+
#. WAm7A
#: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:7
msgctxt "alreadyexistsdialog|AlreadyExistsDialog"
@@ -8466,26 +9953,44 @@ msgctxt "annotationmenu|unresolve"
msgid "Unresolve"
msgstr "Palauta ratkaisemattomaksi"
-#. qAYam
+#. FYnEB
#: sw/uiconfig/swriter/ui/annotationmenu.ui:42
+msgctxt "annotationmenu|resolvethread"
+msgid "Resolve Thread"
+msgstr ""
+
+#. gE5Sy
+#: sw/uiconfig/swriter/ui/annotationmenu.ui:50
+msgctxt "annotationmenu|unresolvethread"
+msgid "Unresolve Thread"
+msgstr ""
+
+#. qAYam
+#: sw/uiconfig/swriter/ui/annotationmenu.ui:58
msgctxt "annotationmenu|delete"
msgid "Delete _Comment"
msgstr "Poista huomautus"
+#. 9ZUko
+#: sw/uiconfig/swriter/ui/annotationmenu.ui:66
+msgctxt "annotationmenu|deletethread"
+msgid "Delete _Comment Thread"
+msgstr ""
+
#. z2NAS
-#: sw/uiconfig/swriter/ui/annotationmenu.ui:50
+#: sw/uiconfig/swriter/ui/annotationmenu.ui:74
msgctxt "annotationmenu|deleteby"
msgid "Delete _All Comments by $1"
msgstr "Poista käyttäjän $1 huomautukset"
#. 8WjDG
-#: sw/uiconfig/swriter/ui/annotationmenu.ui:58
+#: sw/uiconfig/swriter/ui/annotationmenu.ui:82
msgctxt "annotationmenu|deleteall"
msgid "_Delete All Comments"
msgstr "Poista kaikki huomautukset"
#. GaWL2
-#: sw/uiconfig/swriter/ui/annotationmenu.ui:66
+#: sw/uiconfig/swriter/ui/annotationmenu.ui:90
msgctxt "annotationmenu|formatall"
msgid "Format All Comments..."
msgstr "Muotoile kaikki huomautukset..."
@@ -8497,55 +10002,91 @@ msgid "ASCII Filter Options"
msgstr "ASCII-suodatusasetukset"
#. qa99e
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:104
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:101
msgctxt "asciifilterdialog|label2"
msgid "_Character set:"
msgstr "_Merkistö:"
#. jU5eB
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:118
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:115
msgctxt "asciifilterdialog|fontft"
msgid "Default fonts:"
msgstr "Oletusfontit:"
#. UauRo
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:132
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:129
msgctxt "asciifilterdialog|languageft"
msgid "Lan_guage:"
msgstr "_Kieli:"
#. EH9oq
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:146
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:143
msgctxt "asciifilterdialog|label5"
msgid "_Paragraph break:"
msgstr "_Kappalevaihto:"
+#. rYJMs
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:158
+msgctxt "asciifilterdialog|extended_tip|charset"
+msgid "Specifies the character set of the file for export or import."
+msgstr "Määritetään tiedoston merkistö vietäessä tai tuotaessa."
+
+#. gabV8
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:174
+msgctxt "asciifilterdialog|extended_tip|font"
+msgid "By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing."
+msgstr "Oletusfonttimäärityksellä määritetään, että teksti pitää esittää määrätyllä fontilla. Oletusfontit voi valita vain tuotaessa."
+
#. Vd7Uv
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:184
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:191
msgctxt "asciifilterdialog|crlf"
msgid "_CR & LF"
msgstr "_CR & LF"
-#. WuYz5
+#. ZEa5G
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:201
+msgctxt "asciifilterdialog|extended_tip|crlf"
+msgid "Produces a \"Carriage Return\" and a \"Linefeed\". This option is the default."
+msgstr "Käytetään \"CR\"- ja \"LF\"-koodia. Tämä on oletuksena."
+
+#. WuYz5
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:213
msgctxt "asciifilterdialog|cr"
msgid "C_R"
msgstr "C_R"
+#. nurFX
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:224
+msgctxt "asciifilterdialog|extended_tip|cr"
+msgid "Produces a \"Carriage Return\" as the paragraph break."
+msgstr "Käytetään \"CR\"-koodia kappaleen vaihtona."
+
#. 9ckGF
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:219
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:236
msgctxt "asciifilterdialog|lf"
msgid "_LF"
msgstr "_LF"
+#. K5KDB
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:247
+msgctxt "asciifilterdialog|extended_tip|lf"
+msgid "Produces a \"Linefeed\" as the paragraph break."
+msgstr "Käytetään \"LF\"-koodia kappaleen vaihtona."
+
+#. jWeWy
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:277
+msgctxt "asciifilterdialog|extended_tip|language"
+msgid "Specifies the language of the text, if this has not already been defined. This setting is only available when importing."
+msgstr "Määritetään tekstin kieli, ellei sitä jo ole määrätty. Asetus on käytettävissä vain tuotaessa."
+
#. BMvpA
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:261
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:288
msgctxt "asciifilterdialog|includebom"
msgid "Include byte-order mark"
msgstr "Sisällytä tavujärjestysmerkki (BOM)"
#. B2ofV
-#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:284
+#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:311
msgctxt "asciifilterdialog|label1"
msgid "Properties"
msgstr "Ominaisuudet"
@@ -8563,35 +10104,53 @@ msgid "Match Fields"
msgstr "Vastaavat kentät"
#. J2Cz3
-#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:88
+#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:85
msgctxt "assignfieldsdialog|MATCHING_LABEL"
msgid "Assign the fields from your data source to match the address elements."
msgstr "Kohdista osoitelistan kentät osoitekenttiin."
+#. 5V34F
+#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:157
+msgctxt "assignfieldsdialog|extended_tip|FIELDS"
+msgid "Select a field name in your database for each logical address element."
+msgstr ""
+
#. B8UUd
-#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:185
+#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:187
msgctxt "assignfieldsdialog|ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Osoitteiden kentät"
#. xLK6U
-#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:197
+#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:199
msgctxt "assignfieldsdialog|ST_PREVIEW"
msgid "Preview"
msgstr "Esikatselu"
#. iGH2C
-#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:210
+#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:212
msgctxt "assignfieldsdialog|ST_MATCHESTO"
msgid "Matches to field"
msgstr "Vastaa kenttää"
#. maVoT
-#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:236
+#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:238
msgctxt "assignfieldsdialog|PREVIEW_LABEL"
msgid "Address block preview"
msgstr "Osoitelohkon esikatselu"
+#. vHo84
+#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:265
+msgctxt "assignfieldsdialog|extended_tip|PREVIEW"
+msgid "Displays a preview of the values of the first data record."
+msgstr "Esikatsellaan tietokannan ensimmäistä tietuetta."
+
+#. VHDRJ
+#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:298
+msgctxt "assignfieldsdialog|extended_tip|AssignFieldsDialog"
+msgid "Matches the logical field names of the layout dialog to the field names in your database when you create new address blocks or salutations."
+msgstr ""
+
#. RhjgE
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:92
msgctxt "assignstylesdialog|AssignStylesDialog"
@@ -8599,41 +10158,59 @@ msgid "Assign Styles"
msgstr "Määritä tyylit"
#. JVyGG
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:204
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:200
msgctxt "assignstylesdialog|left|tooltip_text"
msgid "Promote level"
msgstr ""
#. szu9U
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:207
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:204
msgctxt "assignstylesdialog|left-atkobject"
msgid "Left"
msgstr "Vasen"
+#. KurCF
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:205
+msgctxt "assignstylesdialog|extended_tip|left"
+msgid "Moves the selected paragraph style up one level in the index hierarchy."
+msgstr "Siirretään valittu kappaletyyliä hakemistohierarkiassa yksi taso ylemmäksi."
+
#. ScVY5
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:223
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:220
msgctxt "assignstylesdialog|right|tooltip_text"
msgid "Demote level"
msgstr ""
#. 6aqvE
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:226
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:224
msgctxt "assignstylesdialog|right-atkobject"
msgid "Right"
msgstr "Oikea"
+#. vmpZc
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:225
+msgctxt "assignstylesdialog|extended_tip|right"
+msgid "Moves the selected paragraph style down one level in the index hierarchy."
+msgstr "Siirretään valittu kappaletyyliä hakemistohierarkiassa yksi taso alemmaksi."
+
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:272
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Tyyli"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:464
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:463
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Tyylit"
+#. sr78E
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:488
+msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
+msgid "Creates index entries from specific paragraph styles."
+msgstr "Luodaan hakemistomerkinnät määrätystä kappaletyylistä."
+
#. hDDjU
#: sw/uiconfig/swriter/ui/attachnamedialog.ui:7
msgctxt "attachnamedialog|AttachNameDialog"
@@ -8670,80 +10247,146 @@ msgctxt "authenticationsettingsdialog|authentication"
msgid "The outgoing mail server (SMTP) requires au_thentication"
msgstr "Lähettävä sähköpostipalvelin (SMTP) vaatii tunnistautumisen"
+#. G5XjW
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:100
+msgctxt "extended_tip|authentication"
+msgid "Enables the authentication that is required to send email by SMTP."
+msgstr ""
+
#. 5F7CW
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:107
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:112
msgctxt "authenticationsettingsdialog|separateauthentication"
msgid "The outgoing mail server (SMTP) requires _separate authentication"
msgstr "Lähettävä palvelin (SMTP) vaatii erillisen tunnistautumisen"
+#. kYrGM
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:123
+msgctxt "extended_tip|separateauthentication"
+msgid "Select if your SMTP server requires a user name and password."
+msgstr "Valitaan, jos käytetty SMTP-palvelin vaatii käyttäjätunnuksen ja salasanan."
+
#. 4Y4mH
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:128
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:138
msgctxt "authenticationsettingsdialog|label1"
msgid "Outgoing mail server:"
msgstr "Lähettävä sähköpostipalvelin:"
+#. ySAX7
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:156
+msgctxt "extended_tip|username"
+msgid "Enter the user name for the SMTP server."
+msgstr "Annetaan käyttäjätunnus SMTP-palvelimelle."
+
#. G9RDY
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:155
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:170
msgctxt "authenticationsettingsdialog|username_label"
msgid "_User name:"
msgstr "Käyttäjätunnus:"
+#. FZBkD
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:191
+msgctxt "extended_tip|outpassword"
+msgid "Enter the password for the user name."
+msgstr "Annetaan käyttäjätunnusta vastaava salasana."
+
#. Sd4zx
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:185
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:205
msgctxt "authenticationsettingsdialog|outpassword_label"
msgid "_Password:"
msgstr "Salasana:"
#. ALCGF
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:197
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:217
msgctxt "authenticationsettingsdialog|smtpafterpop"
msgid "The outgoing mail server uses the same authentication as the _incoming mail server"
msgstr "Lähettävä sähköpostipalvelin käyttää samaa tunnistamista kuin vastaanottava sähköpostipalvelin"
+#. ZEBYd
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:229
+msgctxt "extended_tip|smtpafterpop"
+msgid "Select if you are required to first read your email before you can send email."
+msgstr ""
+
#. hguDR
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:219
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:244
msgctxt "authenticationsettingsdialog|label2"
msgid "Incoming mail server:"
msgstr "Vastaanottava sähköpostipalvelin:"
+#. 4SQU2
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:262
+msgctxt "extended_tip|server"
+msgid "Enter the server name of your POP 3 or IMAP mail server."
+msgstr "Annetaan POP3- tai IMAP-postipalvelimen nimi."
+
#. 2Kevy
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:246
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:276
msgctxt "authenticationsettingsdialog|server_label"
msgid "Server _name:"
msgstr "Palvelimen nimi:"
+#. 4PEvE
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:295
+msgctxt "extended_tip|port"
+msgid "Enter the port on the POP3 or IMAP server."
+msgstr "Annetaan POP3- tai IMAP-palvelimen portti."
+
#. DVAwX
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:273
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:308
msgctxt "authenticationsettingsdialog|port_label"
msgid "P_ort:"
msgstr "Portti:"
#. RjbdV
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:288
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:323
msgctxt "authenticationsettingsdialog|label3"
msgid "Type:"
msgstr "Tyyppi:"
#. o6FWC
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:298
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:333
msgctxt "authenticationsettingsdialog|pop3"
msgid "_POP3"
msgstr "POP3"
+#. J8eWz
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:343
+msgctxt "extended_tip|pop3"
+msgid "Specifies that the incoming mail server uses POP 3."
+msgstr "Määrätään, että vastaanottava sähköpostipalvelin käyttää POP3-protokollaa."
+
#. b9FGk
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:314
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:354
msgctxt "authenticationsettingsdialog|imap"
msgid "_IMAP"
msgstr "IMAP"
+#. hLU78
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:365
+msgctxt "extended_tip|imap"
+msgid "Specifies that the incoming mail server uses IMAP."
+msgstr "Määrätään, että vastaanottava sähköpostipalvelin käyttää IMAP-protokollaa."
+
+#. 6rQFw
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:383
+msgctxt "extended_tip|inusername"
+msgid "Enter the user name for the IMAP server."
+msgstr "Annetaan käyttäjätunnus IMAP-palvelimelle."
+
+#. YWCC2
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:403
+msgctxt "extended_tip|inpassword"
+msgid "Enter the password."
+msgstr "Anettaan salasana."
+
#. eEGih
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:362
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:417
msgctxt "authenticationsettingsdialog|inusername_label"
msgid "Us_er name:"
msgstr "Käyttäjätunnus:"
#. hKcZx
-#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:377
+#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:432
msgctxt "authenticationsettingsdialog|inpassword_label"
msgid "Pass_word:"
msgstr "Salasana:"
@@ -8754,252 +10397,474 @@ msgctxt "autoformattable|AutoFormatTableDialog"
msgid "AutoFormat"
msgstr "Automaattinen muotoilu"
+#. tCRU9
+#: sw/uiconfig/swriter/ui/autoformattable.ui:39
+msgctxt "autoformattable|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
+#. V6Tpf
+#: sw/uiconfig/swriter/ui/autoformattable.ui:60
+msgctxt "autoformattable|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. NTY8D
+#: sw/uiconfig/swriter/ui/autoformattable.ui:133
+msgctxt "autoformattable|extended_tip|preview"
+msgid "Displays a preview of the current selection."
+msgstr ""
+
+#. q7HjF
+#: sw/uiconfig/swriter/ui/autoformattable.ui:175
+msgctxt "autoformattable|extended_tip|formatlb"
+msgid "Lists the available formatting styles for tables. Click the format that you want to apply, and then click OK."
+msgstr "Luettelossa on taulukoille saatavilla olevat muotoilutyylit. Napsautetaan sovellettavaa muotoilua ja hyväksytään OK:lla."
+
+#. s8u6x
+#: sw/uiconfig/swriter/ui/autoformattable.ui:208
+msgctxt "autoformattable|extended_tip|add"
+msgid "Adds a new table style to the list."
+msgstr "Lisätään uusi taulukkotyyli luetteloon."
+
+#. DYbCK
+#: sw/uiconfig/swriter/ui/autoformattable.ui:227
+msgctxt "autoformattable|extended_tip|remove"
+msgid "Deletes the selected element or elements after confirmation."
+msgstr "Poistetaan valittu määrä osatekijöitä vahvistuskyselyn jälkeen."
+
#. YNp3m
-#: sw/uiconfig/swriter/ui/autoformattable.ui:209
+#: sw/uiconfig/swriter/ui/autoformattable.ui:239
msgctxt "autoformattable|rename"
msgid "Rename"
msgstr "Nimeä uudelleen"
#. SEACv
-#: sw/uiconfig/swriter/ui/autoformattable.ui:234
+#: sw/uiconfig/swriter/ui/autoformattable.ui:264
msgctxt "autoformattable|label1"
msgid "Format"
msgstr "Muotoilu"
#. ZVWaV
-#: sw/uiconfig/swriter/ui/autoformattable.ui:267
+#: sw/uiconfig/swriter/ui/autoformattable.ui:297
msgctxt "autoformattable|numformatcb"
msgid "Number format"
msgstr "Luvun muoto"
+#. yPuEA
+#: sw/uiconfig/swriter/ui/autoformattable.ui:306
+msgctxt "autoformattable|extended_tip|numformatcb"
+msgid "Includes numbering formats in the selected table style."
+msgstr "Valittuun taulukkotyyliin sisällytetään numeeristen lukujen muotoilut."
+
#. 6jMct
-#: sw/uiconfig/swriter/ui/autoformattable.ui:282
+#: sw/uiconfig/swriter/ui/autoformattable.ui:317
msgctxt "autoformattable|bordercb"
msgid "Borders"
msgstr "Reunat"
+#. AM2ZR
+#: sw/uiconfig/swriter/ui/autoformattable.ui:326
+msgctxt "autoformattable|extended_tip|bordercb"
+msgid "Includes border styles in the selected table style."
+msgstr "Valittuun taulukkotyyliin sisällytetään reunatyylit."
+
#. FV6mC
-#: sw/uiconfig/swriter/ui/autoformattable.ui:297
+#: sw/uiconfig/swriter/ui/autoformattable.ui:337
msgctxt "autoformattable|fontcb"
msgid "Font"
msgstr "Fontti"
+#. PiYBP
+#: sw/uiconfig/swriter/ui/autoformattable.ui:346
+msgctxt "autoformattable|extended_tip|fontcb"
+msgid "Includes font formatting in the selected table style."
+msgstr "Valittuun taulukkotyyliin sisällytetään fonttien muotoilut."
+
#. BG3bD
-#: sw/uiconfig/swriter/ui/autoformattable.ui:312
+#: sw/uiconfig/swriter/ui/autoformattable.ui:357
msgctxt "autoformattable|patterncb"
msgid "Pattern"
msgstr "Kuvio"
+#. ajZHg
+#: sw/uiconfig/swriter/ui/autoformattable.ui:366
+msgctxt "autoformattable|extended_tip|patterncb"
+msgid "Includes background styles in the selected table style."
+msgstr "Valittuun taulukkotyyliin sisällytetään taustatyylit."
+
#. iSuf5
-#: sw/uiconfig/swriter/ui/autoformattable.ui:327
+#: sw/uiconfig/swriter/ui/autoformattable.ui:377
msgctxt "autoformattable|alignmentcb"
msgid "Alignment"
msgstr "Tasaus"
+#. YDQmL
+#: sw/uiconfig/swriter/ui/autoformattable.ui:386
+msgctxt "autoformattable|extended_tip|alignmentcb"
+msgid "Includes alignment settings in the selected table style."
+msgstr "Valittuun taulukkotyyliin sisällytetään kohdistusasetukset."
+
#. pR75z
-#: sw/uiconfig/swriter/ui/autoformattable.ui:351
+#: sw/uiconfig/swriter/ui/autoformattable.ui:406
msgctxt "autoformattable|label2"
msgid "Formatting"
msgstr "Muotoilu"
+#. DFUNM
+#: sw/uiconfig/swriter/ui/autoformattable.ui:439
+msgctxt "autoformattable|extended_tip|AutoFormatTableDialog"
+msgid "Automatically applies formats to the current table, including fonts, shading, and borders."
+msgstr ""
+
#. RoSFi
#: sw/uiconfig/swriter/ui/autotext.ui:12
msgctxt "autotext|new"
msgid "_New"
msgstr "_Uusi"
+#. 58pFi
+#: sw/uiconfig/swriter/ui/autotext.ui:16
+msgctxt "autotext|extended_tip|new"
+msgid "Creates a new AutoText category using the name that you entered in the Name box."
+msgstr "Luodaan uusi automaattisten tekstien luokka, jolle käytetään Luokka-ruutuun kirjoitettua nimeä."
+
#. 25P7a
-#: sw/uiconfig/swriter/ui/autotext.ui:20
+#: sw/uiconfig/swriter/ui/autotext.ui:25
msgctxt "autotext|newtext"
msgid "New (text only)"
msgstr "Uusi (vain teksti)"
+#. s5n2E
+#: sw/uiconfig/swriter/ui/autotext.ui:29
+msgctxt "autotext|extended_tip|newtext"
+msgid "Creates a new AutoText entry only from the text in the selection that you made in the current document. Graphics, tables and other objects are not included. You must first enter a name before you see this command."
+msgstr "Luodaan uusi automaattisen tekstin merkintä vain käsiteltävän asiakirjan valinta-alueen tekstiosuudesta. Mukaan ei oteta kuvia, taulukoita, eikä muita objekteja. Nimeäminen pitää tehdä ennen kuin tämä komento on käytettävissä."
+
#. YWzFB
-#: sw/uiconfig/swriter/ui/autotext.ui:28
+#: sw/uiconfig/swriter/ui/autotext.ui:38
msgctxt "autotext|copy"
msgid "_Copy"
msgstr "Kopioi"
+#. sCRvE
+#: sw/uiconfig/swriter/ui/autotext.ui:42
+msgctxt "autotext|extended_tip|copy"
+msgid "Copies the selected AutoText to the clipboard."
+msgstr "Kopioidaan valittu automaattinen teksti leikepöydälle."
+
#. MxnC4
-#: sw/uiconfig/swriter/ui/autotext.ui:36
+#: sw/uiconfig/swriter/ui/autotext.ui:51
msgctxt "autotext|replace"
msgid "Replace"
msgstr "Korvaa"
+#. DDAC8
+#: sw/uiconfig/swriter/ui/autotext.ui:55
+msgctxt "autotext|extended_tip|replace"
+msgid "Replaces the contents of the selected AutoText entry with the selection that was made in the current document."
+msgstr "Korvataan luettelosta valittu automaattinen teksti käsiteltävän asiakirjan valinnalla."
+
#. KEn5J
-#: sw/uiconfig/swriter/ui/autotext.ui:44
+#: sw/uiconfig/swriter/ui/autotext.ui:64
msgctxt "autotext|replacetext"
msgid "Rep_lace (text only)"
msgstr "Kor_vaa (vain teksti)"
#. 9d3fF
-#: sw/uiconfig/swriter/ui/autotext.ui:52
+#: sw/uiconfig/swriter/ui/autotext.ui:72
msgctxt "autotext|rename"
msgid "Rename..."
msgstr "Nimeä uudelleen..."
+#. Bd2zf
+#: sw/uiconfig/swriter/ui/autotext.ui:76
+msgctxt "autotext|extended_tip|rename"
+msgid "Changes the name of the selected AutoText category to the name that you enter in the Name box."
+msgstr "Valitun automaattisen tekstin luokan nimi vaihdetaan Luokka-ruutuun kirjoitettuun nimeen."
+
#. 2g8DF
-#: sw/uiconfig/swriter/ui/autotext.ui:60
+#: sw/uiconfig/swriter/ui/autotext.ui:85
msgctxt "autotext|delete"
msgid "_Delete"
msgstr "_Poista"
#. WZNHC
-#: sw/uiconfig/swriter/ui/autotext.ui:74
+#: sw/uiconfig/swriter/ui/autotext.ui:99
msgctxt "autotext|edit"
msgid "_Edit"
msgstr "_Muokkaa"
+#. iakGZ
+#: sw/uiconfig/swriter/ui/autotext.ui:103
+msgctxt "autotext|extended_tip|edit"
+msgid "Opens the selected AutoText entry for editing in a separate document. Make the changes that you want, choose File - Save AutoText, and then choose File - Close."
+msgstr "Avataan valitulle tekstileikkeelle erillinen asiakirja muokkaamista varten. Tehdään tarvittavat muutokset, valitaan Tiedosto - Tallenna automaattinen teksti ja valitaan sitten Tiedosto - Sulje."
+
#. Kg5xa
-#: sw/uiconfig/swriter/ui/autotext.ui:88
+#: sw/uiconfig/swriter/ui/autotext.ui:118
msgctxt "autotext|macro"
msgid "_Macro..."
msgstr "_Makro..."
+#. Eum5k
+#: sw/uiconfig/swriter/ui/autotext.ui:122
+msgctxt "autotext|extended_tip|macro"
+msgid "Opens the Assign Macro dialog, where you attach a macro to the selected AutoText entry."
+msgstr "Avataan Liitä makro -valintaikkuna, jossa makro voidaan kytkeä valittuun tekstileikkeen merkintään."
+
#. oKb9y
-#: sw/uiconfig/swriter/ui/autotext.ui:102
+#: sw/uiconfig/swriter/ui/autotext.ui:137
msgctxt "autotext|import"
msgid "_Import..."
msgstr "_Tuo..."
+#. MVT2K
+#: sw/uiconfig/swriter/ui/autotext.ui:141
+msgctxt "autotext|extended_tip|import"
+msgid "Opens a dialog where you can select the MS 97/2000/XP Word document or template, containing the AutoText entries that you want to import."
+msgstr "Avataan valintaikkuna, jossa voidaan valita MS 97/2000/XP Word -asiakirja tai -malli, jossa on tuotavia tekstileikkeitä."
+
#. WDD5f
-#: sw/uiconfig/swriter/ui/autotext.ui:118
+#: sw/uiconfig/swriter/ui/autotext.ui:158
msgctxt "autotext|AutoTextDialog"
msgid "AutoText"
msgstr "Automaattinen teksti"
#. VuRG2
-#: sw/uiconfig/swriter/ui/autotext.ui:137
+#: sw/uiconfig/swriter/ui/autotext.ui:174
msgctxt "autotext|autotext"
msgid "AutoTe_xt"
msgstr "Autom._teksti"
+#. kDwAj
+#: sw/uiconfig/swriter/ui/autotext.ui:186
+msgctxt "autotext|extended_tip|autotext"
+msgid "Click to display additional AutoText commands, for example, to create a new AutoText entry from a text selection in the current document."
+msgstr "Napsautetaan esille toiminnon lisäkomennot, esimerkiksi uuden tekstileikemerkinnän luomiseksi käsiteltävän asiakirjan tekstivalinnasta."
+
#. hXXv3
-#: sw/uiconfig/swriter/ui/autotext.ui:156
+#: sw/uiconfig/swriter/ui/autotext.ui:198
msgctxt "autotext|categories"
msgid "Cat_egories..."
msgstr "Luokat..."
+#. t3kjh
+#: sw/uiconfig/swriter/ui/autotext.ui:205
+msgctxt "autotext|extended_tip|categories"
+msgid "Adds, renames, or deletes AutoText categories."
+msgstr "Lisätään, nimetään uudestaan tai poistetaan automaattisen tekstin luokkia."
+
#. 6fErD
-#: sw/uiconfig/swriter/ui/autotext.ui:170
+#: sw/uiconfig/swriter/ui/autotext.ui:217
msgctxt "autotext|path"
msgid "_Path..."
msgstr "_Polku..."
+#. JzGXV
+#: sw/uiconfig/swriter/ui/autotext.ui:224
+msgctxt "autotext|extended_tip|path"
+msgid "Opens the Edit Paths dialog, where you can select the directory to store AutoText."
+msgstr "Avataan Valitse polut -valintaikkuna, jossa voidaan valita kansio, johon automaattinen teksti talletetaan."
+
#. DCz3b
-#: sw/uiconfig/swriter/ui/autotext.ui:198
+#: sw/uiconfig/swriter/ui/autotext.ui:250
msgctxt "autotext|insert"
msgid "_Insert"
msgstr "_Lisää"
#. VsqAk
-#: sw/uiconfig/swriter/ui/autotext.ui:262
+#: sw/uiconfig/swriter/ui/autotext.ui:314
msgctxt "autotext|relfile"
msgid "_File system"
msgstr "Tiedostojärjestelmä"
+#. UXSeo
+#: sw/uiconfig/swriter/ui/autotext.ui:323
+msgctxt "autotext|extended_tip|relfile"
+msgid "Links to AutoText directories on your computer are relative."
+msgstr "Automaattisissa teksteissä esiintyvät tietokoneen sisäiset (hyper)linkit ovat suhteellisia."
+
#. MCtWy
-#: sw/uiconfig/swriter/ui/autotext.ui:277
+#: sw/uiconfig/swriter/ui/autotext.ui:334
msgctxt "autotext|relnet"
msgid "Inter_net"
msgstr "Internet"
+#. KnzU2
+#: sw/uiconfig/swriter/ui/autotext.ui:343
+msgctxt "autotext|extended_tip|relnet"
+msgid "Links to files on the Internet are relative."
+msgstr "Tekstien linkit tiedostoihin kotisivun palvelimella ovat suhteellisia."
+
#. LEwb8
-#: sw/uiconfig/swriter/ui/autotext.ui:298
+#: sw/uiconfig/swriter/ui/autotext.ui:360
msgctxt "autotext|label1"
msgid "Save Links Relative To"
msgstr "Linkkien tallennussuhde"
#. 95dBG
-#: sw/uiconfig/swriter/ui/autotext.ui:326
+#: sw/uiconfig/swriter/ui/autotext.ui:388
msgctxt "autotext|inserttip"
msgid "_Display remainder of name as suggestion while typing"
msgstr "_Ehdota nimeä kirjoitettaessa"
#. GdqFE
-#: sw/uiconfig/swriter/ui/autotext.ui:351
+#: sw/uiconfig/swriter/ui/autotext.ui:413
msgctxt "autotext|nameft"
msgid "Name:"
msgstr "Nimi:"
#. Ji8CJ
-#: sw/uiconfig/swriter/ui/autotext.ui:364
+#: sw/uiconfig/swriter/ui/autotext.ui:426
msgctxt "autotext|shortnameft"
msgid "Shortcut:"
msgstr "Pikavalinta:"
+#. ZrcM8
+#: sw/uiconfig/swriter/ui/autotext.ui:444
+msgctxt "autotext|extended_tip|name"
+msgid "Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click Rename. To create a new category, type a name, and then click New."
+msgstr "Esitetään valitun automaattisen tekstin luokan nimi. Luokan nimen vaihtamiseksi kirjoitetaan uusi nimi ja napsautetaan sitten Nimeä uudelleen -painiketta. Uuden luokan luomiseksi kirjoitetaan nimi ja sitten napsautetaan Uusi-painiketta."
+
+#. Ye7DD
+#: sw/uiconfig/swriter/ui/autotext.ui:463
+msgctxt "autotext|extended_tip|shortname"
+msgid "Displays the shortcut for the selected AutoText entry. If you are creating a new AutoText entry, type the shortcut that you want to use for the entry."
+msgstr "Esillä on valitun automaattisen tekstin lyhennekoodi. Kun luodaan uusi automaattinen teksti, sille voidaan kirjoittaan käytettävä pikavalinta."
+
#. NBAos
-#: sw/uiconfig/swriter/ui/autotext.ui:442
+#: sw/uiconfig/swriter/ui/autotext.ui:513
msgctxt "autotext|category-atkobject"
msgid "Category"
msgstr "Luokka"
#. gxCjR
-#: sw/uiconfig/swriter/ui/autotext.ui:477
+#: sw/uiconfig/swriter/ui/autotext.ui:548
msgctxt "autotext|example-atkobject"
msgid "Preview"
msgstr "Esikatselu"
+#. 2FEex
+#: sw/uiconfig/swriter/ui/autotext.ui:584
+msgctxt "autotext|extended_tip|AutoTextDialog"
+msgid "Creates, edits, or inserts AutoText. You can store formatted text, text with graphics, tables, and fields as AutoText. To quickly insert AutoText, type the shortcut for the AutoText in your document, and then press F3."
+msgstr "Luodaan, muokataan ja lisätään automaattisia tekstejä. Muotoiltu teksti, kuvien, taulukoiden ja kenttien tekstit voidaan tallentaa automaattisina tekstileikkeinä. Tekstileikkeet lisätään sujuvasti asiakirjaan kirjoittamalla automaattisen tekstin pikavalintakoodi ja painamalla sitten F3-näppäintä."
+
#. bBcSd
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
msgctxt "bibliographyentry|BibliographyEntryDialog"
msgid "Insert Bibliography Entry"
msgstr "Lisää lähdeluettelomerkintä"
-#. sQJ4e
+#. XnbFd
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:42
+msgctxt "bibliographyentry|extended_tip|new"
+msgid "Opens the Define Bibliography Entry 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 Tools - Bibliography Database."
+msgstr "Avataan Määritä lähdeluettelomerkintä -valintaikkuna, jossa voidaan luoda uusi kirjallisuusviitteen tietue. Tämä tietue tallennetaan vain asiakirjaan. Tietueen lisäämiseksi lähdeluettelotietokantaan valitaan Työkalut - Lähdeluettelotietokanta."
+
+#. xHxhn
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:61
+msgctxt "bibliographyentry|extended_tip|edit"
+msgid "Opens the Define Bibliography Entry dialog where you can edit the selected bibliography record."
+msgstr "Avataan Määritä lähdeluettelomerkintä -valintaikkuna, jossa voidaan muokata kirjallisuus- eli lähdeviitteen tietuetta."
+
+#. zo8CS
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:80
+msgctxt "bibliographyentry|extended_tip|close"
+msgid "Closes the dialog."
+msgstr "Suljetaan valintaikkuna."
+
+#. sQJ4e
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:92
msgctxt "bibliographyentry|insert"
msgid "Insert"
msgstr "Lisää"
+#. rUZwC
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:100
+msgctxt "bibliographyentry|extended_tip|insert"
+msgid "Inserts the bibliographic reference into the document. If you created a new record, you must also insert it as an entry, otherwise the record is lost when you close the document."
+msgstr "Lisätään lähde- eli kirjallisuusviite asiakirjaan. Kun luodaan uusi tietue, se pitää myös lisästä merkintänä, muuten tietue menetetään, kun asiakirja tallennetaan."
+
#. JT2A7
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:95
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:112
msgctxt "bibliographyentry|modify"
msgid "Apply"
msgstr "Käytä"
#. EhmoG
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:135
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:152
msgctxt "bibliographyentry|frombibliography"
msgid "Bibliography Database"
msgstr ""
+#. TyGCb
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:162
+msgctxt "bibliographyentry|extended_tip|frombibliography"
+msgid "Inserts a reference from the bibliography database."
+msgstr "Lisätään viite lähdeluettelotietokannasta."
+
#. BFK8W
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:151
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:173
msgctxt "bibliographyentry|fromdocument"
msgid "Document Content"
msgstr ""
+#. m4Ynn
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:183
+msgctxt "bibliographyentry|extended_tip|fromdocument"
+msgid "Inserts a reference from the bibliography records that are stored in the current document."
+msgstr "Lisätään viite lähdeluettelotietueesta, joka on talletettu käsiteltävään asiakirjaan."
+
#. AhW2w
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:173
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:200
msgctxt "bibliographyentry|label1"
msgid "Bibliography Source"
msgstr ""
#. 5BLqy
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:208
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:235
msgctxt "bibliographyentry|label2"
msgid "Author"
msgstr "Tekijä"
#. AMDy4
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:220
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:247
msgctxt "bibliographyentry|label3"
msgid "Title"
msgstr "Otsikko"
+#. VPXDb
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:284
+msgctxt "bibliographyentry|extended_tip|entrylb"
+msgid "Select the short name of the bibliography record that you want to insert."
+msgstr "Valitaan lisättävän lähdeviitteen lyhytnimi."
+
+#. YYgLc
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:300
+msgctxt "bibliographyentry|extended_tip|entryed"
+msgid "Select the short name of the bibliography record that you want to insert."
+msgstr "Valitaan lisättävän lähdeviitteen lyhytnimi."
+
#. AAmDi
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:276
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:313
msgctxt "bibliographyentry|label5"
msgid "Short name"
msgstr "Lyhyt nimi"
#. voQD7
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:297
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:334
msgctxt "bibliographyentry|label4"
msgid "Entry"
msgstr "Merkintä"
+#. 3trf6
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:358
+msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
+msgid "Inserts a bibliography reference."
+msgstr "Lisätään kirjallisuusviite."
+
#. 7gBGN
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:8
msgctxt "bulletsandnumbering|BulletsAndNumberingDialog"
@@ -9055,31 +10920,31 @@ msgid "Customize"
msgstr "Mukauta"
#. rK9Jk
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:30
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:29
msgctxt "businessdatapage|label5"
msgid "Company:"
msgstr "Yritys:"
#. MnnUx
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:44
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:43
msgctxt "businessdatapage|streetft"
msgid "Slogan:"
msgstr "Iskulause:"
#. AgVpM
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:58
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:57
msgctxt "businessdatapage|countryft"
msgid "Co_untry/state:"
msgstr "Maa/osavaltio:"
#. E22ms
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:72
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:71
msgctxt "businessdatapage|label8"
msgid "Position:"
msgstr "Asema:"
#. F7gdj
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:86
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:85
msgctxt "businessdatapage|phoneft"
msgid "Fa_x:"
msgstr "Faksi:"
@@ -9091,7 +10956,7 @@ msgid "Home telephone number"
msgstr "Kotipuhelinnumero"
#. KJFn7
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:105
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:104
msgctxt "businessdatapage|faxft"
msgid "Homepage/email:"
msgstr "Kotisivu / sähköposti:"
@@ -9102,90 +10967,180 @@ msgctxt "businessdatapage|company-atkobject"
msgid "First name"
msgstr "Etunimi"
+#. Lw69w
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:128
+msgctxt "extended tip | company"
+msgid "Type the name of your company in this field."
+msgstr ""
+
#. 7PLeB
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:156
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:157
msgctxt "businessdatapage|position-atkobject"
msgid "Title"
msgstr "Tehtävä"
+#. QGc4K
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:158
+msgctxt "extended tip | position"
+msgid "Type your position in the company in this field."
+msgstr ""
+
#. KckUP
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:184
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:186
msgctxt "businessdatapage|fax-atkobject"
msgid "Home telephone number"
msgstr "Kotipuhelinnumero"
+#. hCy4G
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:187
+msgctxt "extended tip | fax"
+msgid "Type company fax number in this field."
+msgstr ""
+
#. iGBqW
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:214
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:217
msgctxt "businessdatapage|url-atkobject"
msgid "Fax number"
msgstr "Faksinumero"
+#. RshDE
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:218
+msgctxt "extended tips | url"
+msgid "Company homepage"
+msgstr ""
+
#. JBxqb
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:231
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:235
msgctxt "businessdatapage|email-atkobject"
msgid "email address"
msgstr "sähköpostiosoite"
+#. 6qLuv
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:236
+msgctxt "extended tip | email"
+msgid "Type your company email address."
+msgstr ""
+
#. CCKWa
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:251
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:255
msgctxt "businessdatapage|eastnameft"
msgid "Company 2nd line:"
msgstr "Yritys, 2. rivi:"
#. EFGLj
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:273
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:278
msgctxt "businessdatapage|company2-atkobject"
msgid "Last name"
msgstr "Sukunimi"
+#. MrShX
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:279
+msgctxt "extended tips | company2"
+msgid "Company second line"
+msgstr ""
+
#. Po3B3
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:293
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:298
msgctxt "businessdatapage|icityft"
msgid "_Zip/city:"
msgstr "Postinro/Toimipaikka:"
#. sZyRB
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:315
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:321
msgctxt "businessdatapage|icity-atkobject"
msgid "City"
msgstr "Postitoimipaikka"
+#. tD9Hi
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:322
+msgctxt "extended tip | icity"
+msgid "Type the company city"
+msgstr ""
+
#. ytCQe
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:332
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:339
msgctxt "businessdatapage|izip-atkobject"
msgid "Zip code"
msgstr "Postinumero"
+#. K9T4A
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:340
+msgctxt "extended tip | izip"
+msgid "Type company ZIP in this field."
+msgstr ""
+
+#. iVLAA
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:368
+msgctxt "extended tips | slogan"
+msgid "Company slogan"
+msgstr ""
+
+#. GAi2c
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:397
+msgctxt "extended tips | country"
+msgid "Company country"
+msgstr ""
+
+#. ZFNQd
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:414
+msgctxt "extended tip | state"
+msgid "Type company state."
+msgstr ""
+
#. yvuE2
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:411
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:433
msgctxt "businessdatapage|titleft1"
msgid "Phone/mobile:"
msgstr "Puhelin/Matkapuhelin:"
#. jNfw4
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:434
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:457
msgctxt "businessdatapage|phone-atkobject"
msgid "Title"
msgstr "Tehtävä"
+#. Cbfw6
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:458
+msgctxt "extended tips | phone"
+msgid "Type business phone"
+msgstr ""
+
#. BGbZN
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:451
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:475
msgctxt "businessdatapage|mobile-atkobject"
msgid "Position"
msgstr "Asema"
+#. ppLsf
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:476
+msgctxt "extended tips | mobile"
+msgid "Type company mobile"
+msgstr ""
+
#. 9TjDF
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:471
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:495
msgctxt "businessdatapage|streetft1"
msgid "Street:"
msgstr "Katuosoite:"
+#. A4FvA
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:518
+msgctxt "extended tip | street"
+msgid "Type the name of company street in this field."
+msgstr ""
+
#. RTBTC
-#: sw/uiconfig/swriter/ui/businessdatapage.ui:511
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:541
msgctxt "businessdatapage|label1"
msgid "Business Data"
msgstr "Liiketiedot"
+#. rNSTC
+#: sw/uiconfig/swriter/ui/businessdatapage.ui:549
+msgctxt "businessdatapage|extended_tip|BusinessDataPage"
+msgid "Contains contact information for business cards that use a layout from a 'Business Card, Work' category. Business card layouts are selected on the Business Cards tab."
+msgstr "Sisältää yhteystietoja käyntikorttiin, jossa käytetään 'Business Card, Work' -luokan asettelua. Käyntikorttien asettelut valitaan Käyntikortit-välilehdeltä."
+
#. EtgDz
#: sw/uiconfig/swriter/ui/cannotsavelabeldialog.ui:7
msgctxt "cannotsavelabeldialog|CannotSaveLabelDialog"
@@ -9216,62 +11171,86 @@ msgctxt "captionoptions|CaptionOptionsDialog"
msgid "Caption Options"
msgstr "Kuvaotsikon asetukset"
+#. 7wX9n
+#: sw/uiconfig/swriter/ui/captionoptions.ui:110
+msgctxt "captionoptions|extended_tip|level"
+msgid "Select the number of outline levels from the top of the chapter hierarchy down to include in the caption label."
+msgstr "Valitaan kuvaselitteeseen sisällytettävä jäsennystasojen lukumäärä."
+
+#. PDD8Q
+#: sw/uiconfig/swriter/ui/captionoptions.ui:127
+msgctxt "captionoptions|extended_tip|separator"
+msgid "Enter the character that you want to insert between the chapter number and the caption number."
+msgstr "Syötetään merkki, joka lisätään luvun numeron ja kuvatekstin numeron väliin."
+
#. 2h7sy
-#: sw/uiconfig/swriter/ui/captionoptions.ui:133
+#: sw/uiconfig/swriter/ui/captionoptions.ui:140
msgctxt "captionoptions|label5"
msgid "_Level:"
msgstr "_Taso:"
#. 3istp
-#: sw/uiconfig/swriter/ui/captionoptions.ui:147
+#: sw/uiconfig/swriter/ui/captionoptions.ui:154
msgctxt "captionoptions|label6"
msgid "_Separator:"
msgstr "E_rotin:"
#. ycswr
-#: sw/uiconfig/swriter/ui/captionoptions.ui:165
+#: sw/uiconfig/swriter/ui/captionoptions.ui:172
msgctxt "captionoptions|label1"
msgid "Numbering Captions by Chapter"
msgstr "Otsikoiden numerointi luvuittain"
#. dCyRP
-#: sw/uiconfig/swriter/ui/captionoptions.ui:202
+#: sw/uiconfig/swriter/ui/captionoptions.ui:209
msgctxt "captionoptions|label4"
msgid "Character style:"
msgstr "Merkkityyli:"
+#. VgKQC
+#: sw/uiconfig/swriter/ui/captionoptions.ui:226
+msgctxt "captionoptions|extended_tip|style"
+msgid "Specifies the character style."
+msgstr "Valitaan merkkityyli."
+
#. cwobC
-#: sw/uiconfig/swriter/ui/captionoptions.ui:225
+#: sw/uiconfig/swriter/ui/captionoptions.ui:237
msgctxt "captionoptions|border_and_shadow"
msgid "_Apply border and shadow"
msgstr "Käytä reunaa ja varjoa"
+#. 6tDNR
+#: sw/uiconfig/swriter/ui/captionoptions.ui:247
+msgctxt "captionoptions|extended_tip|border_and_shadow"
+msgid "Applies the border and shadow of the object to the caption frame."
+msgstr "Käytetään reunaa ja varjoa kuvatekstin objektin kehykseen."
+
#. 2Fy5S
-#: sw/uiconfig/swriter/ui/captionoptions.ui:248
+#: sw/uiconfig/swriter/ui/captionoptions.ui:265
msgctxt "captionoptions|label2"
msgid "Category and Frame Format"
msgstr "Luokka- ja kehysmuotoilu"
#. 3aLfJ
-#: sw/uiconfig/swriter/ui/captionoptions.ui:285
+#: sw/uiconfig/swriter/ui/captionoptions.ui:302
msgctxt "captionoptions|label7"
msgid "Caption order:"
msgstr "Otsikkojärjestys:"
#. CKCuY
-#: sw/uiconfig/swriter/ui/captionoptions.ui:301
+#: sw/uiconfig/swriter/ui/captionoptions.ui:318
msgctxt "captionoptions|liststore1"
msgid "Category first"
msgstr "Luokka ensin"
#. gETja
-#: sw/uiconfig/swriter/ui/captionoptions.ui:302
+#: sw/uiconfig/swriter/ui/captionoptions.ui:319
msgctxt "captionoptions|liststore1"
msgid "Numbering first"
msgstr "Numerointi ensin"
#. cET3M
-#: sw/uiconfig/swriter/ui/captionoptions.ui:318
+#: sw/uiconfig/swriter/ui/captionoptions.ui:335
msgctxt "captionoptions|label3"
msgid "Caption"
msgstr "Kuvaotsikko"
@@ -9282,72 +11261,138 @@ msgctxt "cardmediumpage|address"
msgid "Address"
msgstr "Osoite"
+#. t4NQo
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:72
+msgctxt "cardmediumpage|extended_tip|address"
+msgid "Creates a label with your return address. Text that is currently in the Label text box is overwritten."
+msgstr "Luo tarran määritellyllä palautusosoitteella. Teksti, joka jo on Tarran teksti -ikkunassa, pyyhkiytyy pois."
+
#. HH2Su
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:81
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:86
msgctxt "cardmediumpage|label2"
msgid "Label text:"
msgstr "Tarran teksti:"
+#. RczQE
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:117
+msgctxt "cardmediumpage|extended_tip|textview"
+msgid "Enter the text that you want to appear on the label. You can also insert a database field."
+msgstr "Kirjoitetaan tarran teksti. Voidaan myös lisätä tietokannan kenttä."
+
#. xjPBY
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:141
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:151
msgctxt "cardmediumpage|label4"
msgid "Database:"
msgstr "Tietokanta:"
+#. 7shgK
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:168
+msgctxt "cardmediumpage|extended_tip|database"
+msgid "Select the database that you want to use as the data source for your label."
+msgstr ""
+
#. G2Vhh
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:179
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:194
msgctxt "cardmediumpage|label7"
msgid "Table:"
msgstr "Taulu:"
+#. MbB43
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:211
+msgctxt "cardmediumpage|extended_tip|table"
+msgid "Select the database table containing the field(s) that you want to use in your label."
+msgstr "Valitaan tietokannan taulu, jossa olevia kenttiä käytetään tarralla."
+
#. LB3gM
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:217
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:237
msgctxt "cardmediumpage|label8"
msgid "Database field:"
msgstr "Tietokannan kenttä:"
+#. sRwht
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:254
+msgctxt "cardmediumpage|extended_tip|field"
+msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box."
+msgstr ""
+
#. VfLpb
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:255
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:280
msgctxt "cardmediumpage|insert|tooltip_text"
msgid "Insert"
msgstr "Lisää"
+#. nF3rB
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:286
+msgctxt "cardmediumpage|extended_tip|insert"
+msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box."
+msgstr ""
+
#. Y9YPN
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:273
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:303
msgctxt "cardmediumpage|label6"
msgid "Inscription"
msgstr "Liiteteksti"
#. iFCWn
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:320
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:350
msgctxt "cardmediumpage|continuous"
msgid "_Continuous"
msgstr "Jatkuva"
+#. ZHCJD
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:360
+msgctxt "cardmediumpage|extended_tip|continuous"
+msgid "Prints labels on continuous paper."
+msgstr "Tulostetaan tarrat jatkuvalle lomakkeelle."
+
#. iqG7v
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:336
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:371
msgctxt "cardmediumpage|sheet"
msgid "_Sheet"
msgstr "Arkki"
#. Z5Zyq
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:368
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:403
msgctxt "cardmediumpage|label5"
msgid "Brand:"
msgstr "Tuotemerkki:"
#. BDZFL
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:382
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:417
msgctxt "cardmediumpage|label3"
msgid "_Type:"
msgstr "Tyyppi:"
+#. h9Uch
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:435
+msgctxt "cardmediumpage|extended_tip|brand"
+msgid "Select the brand of paper that you want to use."
+msgstr "Valitaan käytettävän paperin merkki."
+
+#. T3wp9
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:452
+msgctxt "cardmediumpage|extended_tip|type"
+msgid "Select the size format that you want to use. The available formats depend on the brand on what you selected in the Brand list. If you want to use a custom label format, select [User], and then click the Format tab to define the format."
+msgstr "Valitaan käytettävä mitoitus. Valinnanvara riippuu tehdystä Tuotemerkki-luettelon valinnasta. Jos muokataan käytettävän tarran kokoa, valitaan ensin [Käyttäjän määrittämä] ja sitten Muotoilu-välilehti, jossa määritellään koko ja muoto."
+
+#. DCFRk
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:480
+msgctxt "cardmediumpage|extended_tip|formatinfo"
+msgid "The paper type and the dimensions of the business card are displayed at the bottom of the Format area."
+msgstr ""
+
#. 3zCCN
-#: sw/uiconfig/swriter/ui/cardmediumpage.ui:457
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:507
msgctxt "cardmediumpage|label1"
msgid "Format"
msgstr "Muotoilu"
+#. WtDzB
+#: sw/uiconfig/swriter/ui/cardmediumpage.ui:522
+msgctxt "cardmediumpage|extended_tip|CardMediumPage"
+msgid "Specify the label text and choose the paper size for the label."
+msgstr "Määritetään tarran teksti ja valitaan tarra-arkin koko."
+
#. J96RD
#: sw/uiconfig/swriter/ui/ccdialog.ui:8
msgctxt "ccdialog|CCDialog"
@@ -9355,25 +11400,37 @@ msgid "Copy To"
msgstr "Kopio"
#. AHAbG
-#: sw/uiconfig/swriter/ui/ccdialog.ui:105
+#: sw/uiconfig/swriter/ui/ccdialog.ui:102
msgctxt "ccdialog|label2"
msgid "_Cc:"
msgstr "Kopio:"
#. LKsro
-#: sw/uiconfig/swriter/ui/ccdialog.ui:119
+#: sw/uiconfig/swriter/ui/ccdialog.ui:116
msgctxt "ccdialog|label3"
msgid "_Bcc:"
msgstr "Piilokopio:"
#. VBFED
-#: sw/uiconfig/swriter/ui/ccdialog.ui:133
+#: sw/uiconfig/swriter/ui/ccdialog.ui:130
msgctxt "ccdialog|label4"
msgid "Note: Separate email addresses with a semicolon (;)."
msgstr "Huom: Erota sähköpostiosoitteet puolipistein (;)."
+#. GFwkE
+#: sw/uiconfig/swriter/ui/ccdialog.ui:148
+msgctxt "ccdialog|extended_tip|cc"
+msgid "Enter the recipients of email copies, separated by a semicolon (;)."
+msgstr ""
+
+#. BCsoU
+#: sw/uiconfig/swriter/ui/ccdialog.ui:165
+msgctxt "ccdialog|extended_tip|bcc"
+msgid "Enter the recipients of email blind copies, separated by a semicolon (;)."
+msgstr ""
+
#. P3CcW
-#: sw/uiconfig/swriter/ui/ccdialog.ui:175
+#: sw/uiconfig/swriter/ui/ccdialog.ui:182
msgctxt "ccdialog|label1"
msgid "Send a Copy of This Mail To..."
msgstr "Lähetä kopio tästä postista..."
@@ -9456,36 +11513,90 @@ msgctxt "charurlpage|eventpb"
msgid "Events..."
msgstr "Tapahtumat..."
+#. QKCzL
+#: sw/uiconfig/swriter/ui/charurlpage.ui:94
+msgctxt "charurlpage|extended_tip|eventpb"
+msgid "Specify an event that triggers when you click the hyperlink."
+msgstr "Määritetään tapahtuma, joka liipaistaan hyperlinkkiä napsautettaessa."
+
+#. MhJbE
+#: sw/uiconfig/swriter/ui/charurlpage.ui:111
+msgctxt "charurlpage|extended_tip|urled"
+msgid "Enter a URL for the file that you want to open when you click the hyperlink."
+msgstr "Annetaan sen tiedoston URL-osoite, joka avataan, kun hyperlinkkiä napsautetaan."
+
+#. YGnoF
+#: sw/uiconfig/swriter/ui/charurlpage.ui:128
+msgctxt "charurlpage|extended_tip|nameed"
+msgid "Enter a name for the hyperlink."
+msgstr "Nimetään hyperlinkki."
+
+#. grQbi
+#: sw/uiconfig/swriter/ui/charurlpage.ui:145
+msgctxt "charurlpage|extended_tip|texted"
+msgid "Enter the text that you want to display for the hyperlink."
+msgstr "Kirjoitetaan hyperlinkissä näkyvä teksti."
+
#. BmLb8
-#: sw/uiconfig/swriter/ui/charurlpage.ui:136
+#: sw/uiconfig/swriter/ui/charurlpage.ui:156
msgctxt "charurlpage|urlpb"
msgid "Browse..."
msgstr "Selaa..."
+#. 4276D
+#: sw/uiconfig/swriter/ui/charurlpage.ui:163
+msgctxt "charurlpage|extended_tip|urlpb"
+msgid "Locate the file that you want to link to, and then click Open."
+msgstr "Paikallistetaan linkitettävä tiedosto ja napsautetaan sitten Avaa-painiketta."
+
+#. ha6rk
+#: sw/uiconfig/swriter/ui/charurlpage.ui:185
+msgctxt "charurlpage|extended_tip|targetfrmlb"
+msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list."
+msgstr "Annetaan sen kehyksen nimi, johon tiedosto avautuu tai valitaan määritelty nimi luettelosta."
+
#. CQvaG
-#: sw/uiconfig/swriter/ui/charurlpage.ui:187
+#: sw/uiconfig/swriter/ui/charurlpage.ui:217
msgctxt "charurlpage|label32"
msgid "Hyperlink"
msgstr "Hyperlinkki"
#. FCyhD
-#: sw/uiconfig/swriter/ui/charurlpage.ui:222
+#: sw/uiconfig/swriter/ui/charurlpage.ui:252
msgctxt "charurlpage|label34"
msgid "Visited links:"
msgstr "Avatut linkit:"
#. EvDaT
-#: sw/uiconfig/swriter/ui/charurlpage.ui:236
+#: sw/uiconfig/swriter/ui/charurlpage.ui:266
msgctxt "charurlpage|label10"
msgid "Unvisited links:"
msgstr "Avaamattomat linkit:"
+#. CqHA6
+#: sw/uiconfig/swriter/ui/charurlpage.ui:282
+msgctxt "charurlpage|extended_tip|visitedlb"
+msgid "Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar."
+msgstr ""
+
+#. w7Cdu
+#: sw/uiconfig/swriter/ui/charurlpage.ui:297
+msgctxt "charurlpage|extended_tip|unvisitedlb"
+msgid "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 Styles icon on the Formatting toolbar."
+msgstr ""
+
#. 43fvG
-#: sw/uiconfig/swriter/ui/charurlpage.ui:274
+#: sw/uiconfig/swriter/ui/charurlpage.ui:314
msgctxt "charurlpage|label33"
msgid "Character Styles"
msgstr "Merkkityylit"
+#. bF2cC
+#: sw/uiconfig/swriter/ui/charurlpage.ui:329
+msgctxt "charurlpage|extended_tip|CharURLPage"
+msgid "Assigns a new hyperlink or edits the selected hyperlink."
+msgstr "Määritetään uusi hyperlinkki tai muokataan valittua hyperlinkkiä."
+
#. 3mgNE
#: sw/uiconfig/swriter/ui/columndialog.ui:8
msgctxt "columndialog|ColumnDialog"
@@ -9498,144 +11609,240 @@ msgctxt "columnpage|autowidth"
msgid "Auto_Width"
msgstr "Automaattinen _leveys"
+#. 2gD9K
+#: sw/uiconfig/swriter/ui/columnpage.ui:96
+msgctxt "columnpage|extended_tip|autowidth"
+msgid "Creates columns of equal width."
+msgstr "Luodaan samanlevyiset palstat."
+
#. FNRLQ
-#: sw/uiconfig/swriter/ui/columnpage.ui:120
+#: sw/uiconfig/swriter/ui/columnpage.ui:125
msgctxt "columnpage|columnft"
msgid "Column:"
msgstr "Palsta:"
#. iB9AT
-#: sw/uiconfig/swriter/ui/columnpage.ui:178
+#: sw/uiconfig/swriter/ui/columnpage.ui:183
msgctxt "columnpage|widthft"
msgid "Width:"
msgstr "Leveys:"
+#. 4jPyG
+#: sw/uiconfig/swriter/ui/columnpage.ui:210
+msgctxt "columnpage|extended_tip|width3mf"
+msgid "Enter the width of the column."
+msgstr "Syötetään palstan leveys."
+
+#. ForRd
+#: sw/uiconfig/swriter/ui/columnpage.ui:233
+msgctxt "columnpage|extended_tip|width2mf"
+msgid "Enter the width of the column."
+msgstr "Syötetään palstan leveys."
+
+#. hrHx7
+#: sw/uiconfig/swriter/ui/columnpage.ui:256
+msgctxt "columnpage|extended_tip|width1mf"
+msgid "Enter the width of the column."
+msgstr "Syötetään palstan leveys."
+
#. nD3AU
-#: sw/uiconfig/swriter/ui/columnpage.ui:246
+#: sw/uiconfig/swriter/ui/columnpage.ui:269
msgctxt "columnpage|distft"
msgid "Spacing:"
msgstr "Välit:"
+#. rneea
+#: sw/uiconfig/swriter/ui/columnpage.ui:300
+msgctxt "columnpage|extended_tip|spacing1mf"
+msgid "Enter the amount of space that you want to leave between the columns."
+msgstr "Annetaan kahden vierekkäisen palstan keskinäisen välin suuruus."
+
+#. CwCXd
+#: sw/uiconfig/swriter/ui/columnpage.ui:322
+msgctxt "columnpage|extended_tip|spacing2mf"
+msgid "Enter the amount of space that you want to leave between the columns."
+msgstr "Annetaan kahden vierekkäisen palstan keskinäisen välin suuruus."
+
+#. j8J9w
+#: sw/uiconfig/swriter/ui/columnpage.ui:349
+msgctxt "columnpage|extended_tip|back"
+msgid "Moves the column display one column to the left."
+msgstr "Siirretään palstanäkymää palsta vasemmalle."
+
+#. EDA5k
+#: sw/uiconfig/swriter/ui/columnpage.ui:369
+msgctxt "columnpage|extended_tip|next"
+msgid "Moves the column display one column to the right."
+msgstr "Siirretään palstanäkymää palsta oikealle."
+
#. Xn7wn
-#: sw/uiconfig/swriter/ui/columnpage.ui:360
+#: sw/uiconfig/swriter/ui/columnpage.ui:405
msgctxt "columnpage|label4"
msgid "Width and Spacing"
msgstr "Leveys ja välit"
#. aBAZn
-#: sw/uiconfig/swriter/ui/columnpage.ui:397
+#: sw/uiconfig/swriter/ui/columnpage.ui:442
msgctxt "columnpage|linestyleft"
msgid "St_yle:"
msgstr "T_yyli:"
#. iTh5i
-#: sw/uiconfig/swriter/ui/columnpage.ui:411
+#: sw/uiconfig/swriter/ui/columnpage.ui:456
msgctxt "columnpage|linewidthft"
msgid "_Width:"
msgstr "Leveys:"
#. fEm38
-#: sw/uiconfig/swriter/ui/columnpage.ui:425
+#: sw/uiconfig/swriter/ui/columnpage.ui:470
msgctxt "columnpage|lineheightft"
msgid "H_eight:"
msgstr "Korkeus:"
#. vKEyi
-#: sw/uiconfig/swriter/ui/columnpage.ui:439
+#: sw/uiconfig/swriter/ui/columnpage.ui:484
msgctxt "columnpage|lineposft"
msgid "_Position:"
msgstr "_Sijainti:"
+#. yhqBe
+#: sw/uiconfig/swriter/ui/columnpage.ui:507
+msgctxt "columnpage|extended_tip|linestylelb"
+msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"."
+msgstr "Valitaan palstojen välisen erotinviivan muotoilutyyli. Mikäli viivaa ei käytetä, valitaan \"Ei mitään\"."
+
#. DcSGt
-#: sw/uiconfig/swriter/ui/columnpage.ui:471
+#: sw/uiconfig/swriter/ui/columnpage.ui:521
msgctxt "columnpage|lineposlb"
msgid "Top"
msgstr "Yläreuna"
#. MKcWL
-#: sw/uiconfig/swriter/ui/columnpage.ui:472
+#: sw/uiconfig/swriter/ui/columnpage.ui:522
msgctxt "columnpage|lineposlb"
msgid "Centered"
msgstr "Keskitetty"
#. CxCJF
-#: sw/uiconfig/swriter/ui/columnpage.ui:473
+#: sw/uiconfig/swriter/ui/columnpage.ui:523
msgctxt "columnpage|lineposlb"
msgid "Bottom"
msgstr "Alareuna"
+#. Akv5r
+#: sw/uiconfig/swriter/ui/columnpage.ui:527
+msgctxt "columnpage|extended_tip|lineposlb"
+msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%."
+msgstr "Valitaan erotinviivan pystykohdistus. Tämä vaihtoehto on saatavilla vain, jos Korkeus-arvo on pienempi kuin 100%."
+
+#. FMShH
+#: sw/uiconfig/swriter/ui/columnpage.ui:544
+msgctxt "columnpage|extended_tip|lineheightmf"
+msgid "Enter the length of the separator line as a percentage of the height of the column area."
+msgstr "Annetaan erotinviivan pituus prosentteina palstoitetun alueen korkeudesta."
+
#. kkGNR
-#: sw/uiconfig/swriter/ui/columnpage.ui:525
+#: sw/uiconfig/swriter/ui/columnpage.ui:587
msgctxt "columnpage|linecolorft"
msgid "_Color:"
msgstr "Väri:"
#. 9o7DQ
-#: sw/uiconfig/swriter/ui/columnpage.ui:561
+#: sw/uiconfig/swriter/ui/columnpage.ui:623
msgctxt "columnpage|label11"
msgid "Separator Line"
msgstr "Erotinviiva"
#. 7SaDT
-#: sw/uiconfig/swriter/ui/columnpage.ui:612
+#: sw/uiconfig/swriter/ui/columnpage.ui:674
msgctxt "columnpage|label3"
msgid "Columns:"
msgstr "Palstat:"
+#. aF466
+#: sw/uiconfig/swriter/ui/columnpage.ui:692
+msgctxt "columnpage|extended_tip|colsnf"
+msgid "Enter the number of columns that you want in the page, frame, or section."
+msgstr "Annetaan käytettävä palstojen lukumäärä sivun tyylille, kehykselle tai osalle."
+
#. X9vG6
-#: sw/uiconfig/swriter/ui/columnpage.ui:646
+#: sw/uiconfig/swriter/ui/columnpage.ui:714
msgctxt "columnpage|balance"
msgid "Evenly distribute contents _to all columns"
msgstr "_Jaa sisältö tasaisesti kaikkiin palstoihin"
+#. BYYDE
+#: sw/uiconfig/swriter/ui/columnpage.ui:723
+msgctxt "columnpage|extended_tip|balance"
+msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically."
+msgstr "Jaetaan teksti monipalstaisissa osissa. Teksti rivitetään kaikissa palstoissa samalle korkeudelle. Osan korkeus säätyy tarpeen mukaisesti."
+
#. bV6Pg
-#: sw/uiconfig/swriter/ui/columnpage.ui:669
+#: sw/uiconfig/swriter/ui/columnpage.ui:742
msgctxt "columnpage|liststore2"
msgid "Selection"
msgstr "Valinta"
#. qA5MH
-#: sw/uiconfig/swriter/ui/columnpage.ui:670
+#: sw/uiconfig/swriter/ui/columnpage.ui:743
msgctxt "columnpage|liststore2"
msgid "Current Section"
msgstr "Nykyinen osa"
#. VSvpa
-#: sw/uiconfig/swriter/ui/columnpage.ui:671
+#: sw/uiconfig/swriter/ui/columnpage.ui:744
msgctxt "columnpage|liststore2"
msgid "Selected section"
msgstr "Valittu osa"
#. Mo9GL
-#: sw/uiconfig/swriter/ui/columnpage.ui:672
+#: sw/uiconfig/swriter/ui/columnpage.ui:745
msgctxt "columnpage|liststore2"
msgid "Frame"
msgstr "Kehys"
#. mBmAm
-#: sw/uiconfig/swriter/ui/columnpage.ui:673
+#: sw/uiconfig/swriter/ui/columnpage.ui:746
msgctxt "columnpage|liststore2"
msgid "Page Style: "
msgstr "Sivutyyli: "
+#. F7MQT
+#: sw/uiconfig/swriter/ui/columnpage.ui:750
+msgctxt "columnpage|extended_tip|applytolb"
+msgid "Select the item that you want to apply the column layout to."
+msgstr "Valitaan kohde, jonka palstan taittoa asetellaan."
+
#. AJFqx
-#: sw/uiconfig/swriter/ui/columnpage.ui:685
+#: sw/uiconfig/swriter/ui/columnpage.ui:763
msgctxt "columnpage|applytoft"
msgid "_Apply to:"
msgstr "_Käytä:"
#. rzBnm
-#: sw/uiconfig/swriter/ui/columnpage.ui:711
+#: sw/uiconfig/swriter/ui/columnpage.ui:789
msgctxt "columnpage|textdirectionft"
msgid "Text _direction:"
msgstr "_Tekstin suunta:"
+#. dcDde
+#: sw/uiconfig/swriter/ui/columnpage.ui:833
+msgctxt "columnpage|extended_tip|valueset"
+msgid "Enter the number of columns that you want in the page, frame, or section."
+msgstr "Annetaan käytettävä palstojen lukumäärä sivun tyylille, kehykselle tai osalle."
+
#. fEbMc
-#: sw/uiconfig/swriter/ui/columnpage.ui:767
+#: sw/uiconfig/swriter/ui/columnpage.ui:850
msgctxt "columnpage|label2"
msgid "Settings"
msgstr "Asetukset"
+#. 3dGYz
+#: sw/uiconfig/swriter/ui/columnpage.ui:904
+msgctxt "columnpage|extended_tip|ColumnPage"
+msgid "Specifies the number of columns and the column layout for a page style, frame, or section."
+msgstr "Määritetään palstojen lukumäärä ja taitto sivun tyylille, kehykselle tai osalle."
+
#. gVCEJ
#: sw/uiconfig/swriter/ui/columnwidth.ui:15
msgctxt "columnwidth|ColumnWidthDialog"
@@ -9654,206 +11861,254 @@ msgctxt "columnwidth|label3"
msgid "Width:"
msgstr "Leveys:"
+#. RaBTY
+#: sw/uiconfig/swriter/ui/columnwidth.ui:137
+msgctxt "columnwidth|extended_tip|column"
+msgid "Enter the column number of the column you want to change the width of."
+msgstr "Annetaan sen sarakkeen numero, jonka leveyttä muutetaan."
+
+#. mATJY
+#: sw/uiconfig/swriter/ui/columnwidth.ui:154
+msgctxt "columnwidth|extended_tip|width"
+msgid "Enter the width that you want for the selected column(s)."
+msgstr "Annetaan leveys valituille sarakkeille."
+
#. A9Zr4
-#: sw/uiconfig/swriter/ui/columnwidth.ui:161
+#: sw/uiconfig/swriter/ui/columnwidth.ui:171
msgctxt "columnwidth|label1"
msgid "Width"
msgstr "Leveys"
+#. PKRsa
+#: sw/uiconfig/swriter/ui/columnwidth.ui:196
+msgctxt "columnwidth|extended_tip|ColumnWidthDialog"
+msgid "Changes the width of the selected column(s)."
+msgstr "Muutetaan valittujen sarakkeiden leveyttä."
+
#. zF38j
#: sw/uiconfig/swriter/ui/conditionpage.ui:57
msgctxt "conditionpage|condstyle"
msgid "_Conditional Style"
msgstr "Ehdollinen tyyli"
+#. 3pzaG
+#: sw/uiconfig/swriter/ui/conditionpage.ui:70
+msgctxt "conditionpage|extended_tip|condstyle"
+msgid "Check this box to define a new style as a conditional style."
+msgstr "Tämä ruudun merkinnällä määritetään uusi tyyli ehdolliseksi tyyliksi."
+
#. X8yvA
-#: sw/uiconfig/swriter/ui/conditionpage.ui:99
+#: sw/uiconfig/swriter/ui/conditionpage.ui:104
msgctxt "conditionpage|contextft"
msgid "Context"
msgstr "Konteksti"
#. y3tzD
-#: sw/uiconfig/swriter/ui/conditionpage.ui:112
+#: sw/uiconfig/swriter/ui/conditionpage.ui:117
msgctxt "conditionpage|usedft"
msgid "Applied Styles"
msgstr "Käytetyt tyylit"
+#. htGue
+#: sw/uiconfig/swriter/ui/conditionpage.ui:131
+msgctxt "conditionpage|extended_tip|links"
+msgid "Here you can see the %PRODUCTNAME predefined contexts, including outline levels 1 to 10, numbering/bullets levels 1 to 10, table header, table contents, section, border, footnote, header and footer."
+msgstr "Tässä kohdassa näkyvät %PRODUCTNAMEn esimääritellyt kontekstit, mukaan lukien jäsennystasot 1 ...10, luetelmatasot 1 ... 10, taulukon ylätunniste, taulukon sisältö, osa, kehys, alaviite, ylätunniste ja alatunniste."
+
+#. nDZqL
+#: sw/uiconfig/swriter/ui/conditionpage.ui:160
+msgctxt "conditionpage|extended_tip|remove"
+msgid "Click here to remove the current context assigned to the selected style."
+msgstr "Napauta tästä painikkeesta poistaaksesi käsiteltävän kontekstin ja valitun tyylin yhteyden."
+
+#. U248V
+#: sw/uiconfig/swriter/ui/conditionpage.ui:180
+msgctxt "conditionpage|extended_tip|apply"
+msgid "Click Apply to apply the selected Paragraph Style to the defined context."
+msgstr ""
+
#. xC6d7
-#: sw/uiconfig/swriter/ui/conditionpage.ui:208
+#: sw/uiconfig/swriter/ui/conditionpage.ui:228
msgctxt "conditionpage|styleft"
msgid "Paragraph Styles"
msgstr "Kappaletyylit"
+#. BAsYG
+#: sw/uiconfig/swriter/ui/conditionpage.ui:239
+msgctxt "conditionpage|extended_tip|styles"
+msgid "A list of all Paragraph Styles which can be assigned to a context is contained in the list box."
+msgstr "Luettelo kaikista kontekstiin käytettävissä olevista kappaletyyleistä on tässä luetteloruudussa."
+
#. xExAz
-#: sw/uiconfig/swriter/ui/conditionpage.ui:232
+#: sw/uiconfig/swriter/ui/conditionpage.ui:257
msgctxt "conditionpage|filter"
msgid "Table Header"
msgstr "Taulukon ylätunniste"
#. wmRS4
-#: sw/uiconfig/swriter/ui/conditionpage.ui:233
+#: sw/uiconfig/swriter/ui/conditionpage.ui:258
msgctxt "conditionpage|filter"
msgid "Table"
msgstr "Taulukko"
#. pwWnz
-#: sw/uiconfig/swriter/ui/conditionpage.ui:234
+#: sw/uiconfig/swriter/ui/conditionpage.ui:259
msgctxt "conditionpage|filter"
msgid "Frame"
msgstr "Kehys"
#. C9Z9x
-#: sw/uiconfig/swriter/ui/conditionpage.ui:235
+#: sw/uiconfig/swriter/ui/conditionpage.ui:260
msgctxt "conditionpage|filter"
msgid "Section"
msgstr "Osa"
#. aABdW
-#: sw/uiconfig/swriter/ui/conditionpage.ui:236
+#: sw/uiconfig/swriter/ui/conditionpage.ui:261
msgctxt "conditionpage|filter"
msgid "Footnote"
msgstr "Alaviite"
#. HKU28
-#: sw/uiconfig/swriter/ui/conditionpage.ui:237
+#: sw/uiconfig/swriter/ui/conditionpage.ui:262
msgctxt "conditionpage|filter"
msgid "Endnote"
msgstr "Loppuviite"
#. YyCDy
-#: sw/uiconfig/swriter/ui/conditionpage.ui:238
+#: sw/uiconfig/swriter/ui/conditionpage.ui:263
msgctxt "conditionpage|filter"
msgid "Header"
msgstr "Ylätunniste"
#. EbBvm
-#: sw/uiconfig/swriter/ui/conditionpage.ui:239
+#: sw/uiconfig/swriter/ui/conditionpage.ui:264
msgctxt "conditionpage|filter"
msgid "Footer"
msgstr "Alatunniste"
#. L2Vr5
-#: sw/uiconfig/swriter/ui/conditionpage.ui:240
+#: sw/uiconfig/swriter/ui/conditionpage.ui:265
msgctxt "conditionpage|filter"
msgid " 1st Outline Level"
msgstr " 1. jäsennystaso"
#. GTJPN
-#: sw/uiconfig/swriter/ui/conditionpage.ui:241
+#: sw/uiconfig/swriter/ui/conditionpage.ui:266
msgctxt "conditionpage|filter"
msgid " 2nd Outline Level"
msgstr " 2. jäsennystaso"
#. VKBoL
-#: sw/uiconfig/swriter/ui/conditionpage.ui:242
+#: sw/uiconfig/swriter/ui/conditionpage.ui:267
msgctxt "conditionpage|filter"
msgid " 3rd Outline Level"
msgstr " 3. jäsennystaso"
#. a9TaD
-#: sw/uiconfig/swriter/ui/conditionpage.ui:243
+#: sw/uiconfig/swriter/ui/conditionpage.ui:268
msgctxt "conditionpage|filter"
msgid " 4th Outline Level"
msgstr " 4. jäsennystaso"
#. dXE2C
-#: sw/uiconfig/swriter/ui/conditionpage.ui:244
+#: sw/uiconfig/swriter/ui/conditionpage.ui:269
msgctxt "conditionpage|filter"
msgid " 5th Outline Level"
msgstr " 5. jäsennystaso"
#. hCaZr
-#: sw/uiconfig/swriter/ui/conditionpage.ui:245
+#: sw/uiconfig/swriter/ui/conditionpage.ui:270
msgctxt "conditionpage|filter"
msgid " 6th Outline Level"
msgstr " 6. jäsennystaso"
#. eY5Fy
-#: sw/uiconfig/swriter/ui/conditionpage.ui:246
+#: sw/uiconfig/swriter/ui/conditionpage.ui:271
msgctxt "conditionpage|filter"
msgid " 7th Outline Level"
msgstr " 7. jäsennystaso"
#. KbZgs
-#: sw/uiconfig/swriter/ui/conditionpage.ui:247
+#: sw/uiconfig/swriter/ui/conditionpage.ui:272
msgctxt "conditionpage|filter"
msgid " 8th Outline Level"
msgstr " 8. jäsennystaso"
#. L5C8x
-#: sw/uiconfig/swriter/ui/conditionpage.ui:248
+#: sw/uiconfig/swriter/ui/conditionpage.ui:273
msgctxt "conditionpage|filter"
msgid " 9th Outline Level"
msgstr " 9. jäsennystaso"
#. xNPpQ
-#: sw/uiconfig/swriter/ui/conditionpage.ui:249
+#: sw/uiconfig/swriter/ui/conditionpage.ui:274
msgctxt "conditionpage|filter"
msgid "10th Outline Level"
msgstr "10. jäsennystaso"
#. TwnWg
-#: sw/uiconfig/swriter/ui/conditionpage.ui:250
+#: sw/uiconfig/swriter/ui/conditionpage.ui:275
msgctxt "conditionpage|filter"
msgid " 1st Numbering Level"
msgstr " 1. numerointitaso"
#. 7feZ8
-#: sw/uiconfig/swriter/ui/conditionpage.ui:251
+#: sw/uiconfig/swriter/ui/conditionpage.ui:276
msgctxt "conditionpage|filter"
msgid " 2nd Numbering Level"
msgstr " 2. numerointitaso"
#. DJYAU
-#: sw/uiconfig/swriter/ui/conditionpage.ui:252
+#: sw/uiconfig/swriter/ui/conditionpage.ui:277
msgctxt "conditionpage|filter"
msgid " 3rd Numbering Level"
msgstr " 3. numerointitaso"
#. m74yD
-#: sw/uiconfig/swriter/ui/conditionpage.ui:253
+#: sw/uiconfig/swriter/ui/conditionpage.ui:278
msgctxt "conditionpage|filter"
msgid " 4th Numbering Level"
msgstr " 4. numerointitaso"
#. C8dZW
-#: sw/uiconfig/swriter/ui/conditionpage.ui:254
+#: sw/uiconfig/swriter/ui/conditionpage.ui:279
msgctxt "conditionpage|filter"
msgid " 5th Numbering Level"
msgstr " 5. numerointitaso"
#. Uw4C8
-#: sw/uiconfig/swriter/ui/conditionpage.ui:255
+#: sw/uiconfig/swriter/ui/conditionpage.ui:280
msgctxt "conditionpage|filter"
msgid " 6th Numbering Level"
msgstr " 6. numerointitaso"
#. LvdBi
-#: sw/uiconfig/swriter/ui/conditionpage.ui:256
+#: sw/uiconfig/swriter/ui/conditionpage.ui:281
msgctxt "conditionpage|filter"
msgid " 7th Numbering Level"
msgstr " 7. numerointitaso"
#. E8kfm
-#: sw/uiconfig/swriter/ui/conditionpage.ui:257
+#: sw/uiconfig/swriter/ui/conditionpage.ui:282
msgctxt "conditionpage|filter"
msgid " 8th Numbering Level"
msgstr " 8. numerointitaso"
#. e7Lo5
-#: sw/uiconfig/swriter/ui/conditionpage.ui:258
+#: sw/uiconfig/swriter/ui/conditionpage.ui:283
msgctxt "conditionpage|filter"
msgid " 9th Numbering Level"
msgstr " 9. numerointitaso"
#. kAtfy
-#: sw/uiconfig/swriter/ui/conditionpage.ui:259
+#: sw/uiconfig/swriter/ui/conditionpage.ui:284
msgctxt "conditionpage|filter"
msgid "10th Numbering Level"
msgstr "10. numerointitaso"
#. AniaD
-#: sw/uiconfig/swriter/ui/conditionpage.ui:282
+#: sw/uiconfig/swriter/ui/conditionpage.ui:307
msgctxt "conditionpage|label11"
msgid "Options"
msgstr "Asetukset"
@@ -9865,95 +12120,161 @@ msgid "Convert Table to Text"
msgstr "Muunna taulukko tekstiksi"
#. iArsw
-#: sw/uiconfig/swriter/ui/converttexttable.ui:115
+#: sw/uiconfig/swriter/ui/converttexttable.ui:112
msgctxt "converttexttable|tabs"
msgid "Tabs"
msgstr "Sarkaimet"
+#. 9aKdG
+#: sw/uiconfig/swriter/ui/converttexttable.ui:123
+msgctxt "converttexttable|extended_tip|tabs"
+msgid "Converts the text to a table using tabs as column markers."
+msgstr "Muunnetaan teksti taulukoksi käyttäen sarkaimia sarakemerkkeinä."
+
#. uPkEG
-#: sw/uiconfig/swriter/ui/converttexttable.ui:132
+#: sw/uiconfig/swriter/ui/converttexttable.ui:134
msgctxt "converttexttable|semicolons"
msgid "Semicolons"
msgstr "Puolipisteet"
+#. GqN6W
+#: sw/uiconfig/swriter/ui/converttexttable.ui:144
+msgctxt "converttexttable|extended_tip|semicolons"
+msgid "Converts the text to a table using semi-colons (;) as column markers."
+msgstr "Muunnetaan teksti taulukoksi käyttäen puolipisteitä (;) sarakemerkkeinä."
+
#. fucq3
-#: sw/uiconfig/swriter/ui/converttexttable.ui:149
+#: sw/uiconfig/swriter/ui/converttexttable.ui:156
msgctxt "converttexttable|paragraph"
msgid "Paragraph"
msgstr "Kappale"
+#. 4fBB3
+#: sw/uiconfig/swriter/ui/converttexttable.ui:166
+msgctxt "converttexttable|extended_tip|paragraph"
+msgid "Converts the text to a table using paragraphs as column markers."
+msgstr "Muunnetaan teksti taulukoksi käyttäen kappaleen merkkejä sarakemerkkeinä."
+
#. zN6Mx
-#: sw/uiconfig/swriter/ui/converttexttable.ui:165
+#: sw/uiconfig/swriter/ui/converttexttable.ui:177
msgctxt "converttexttable|other"
msgid "Other:"
msgstr "Muu:"
-#. GQnda
+#. 27JXH
#: sw/uiconfig/swriter/ui/converttexttable.ui:190
+msgctxt "converttexttable|extended_tip|other"
+msgid "Converts the text to a table using the character that you type in the box as a column marker."
+msgstr "Muunnetaan teksti taulukoksi käyttäen oheiseen ruutuun kirjoitettavaa merkkiä sarakemerkkinä."
+
+#. GQnda
+#: sw/uiconfig/swriter/ui/converttexttable.ui:207
msgctxt "converttexttable|othered"
msgid ","
msgstr ","
#. rmBim
-#: sw/uiconfig/swriter/ui/converttexttable.ui:196
+#: sw/uiconfig/swriter/ui/converttexttable.ui:213
msgctxt "converttexttable|othered-atkobject"
msgid "Symbol"
msgstr "Symboli"
+#. G5obG
+#: sw/uiconfig/swriter/ui/converttexttable.ui:214
+msgctxt "converttexttable|extended_tip|othered"
+msgid "Type the character that you want to use as a column marker."
+msgstr "Kirjoitetaan sarakemerkkinä käytettävä merkki."
+
#. apGyF
-#: sw/uiconfig/swriter/ui/converttexttable.ui:207
+#: sw/uiconfig/swriter/ui/converttexttable.ui:225
msgctxt "converttexttable|keepcolumn"
msgid "Equal width for all columns"
msgstr "Yhtä suuret sarakeleveydet"
+#. xLjLr
+#: sw/uiconfig/swriter/ui/converttexttable.ui:234
+msgctxt "converttexttable|extended_tip|keepcolumn"
+msgid "Creates columns of equal width, regardless of the position of the column marker."
+msgstr "Luodaan tasaleveät sarakkeet riippumatta sarakemerkkien sijainnista."
+
#. UbhJY
-#: sw/uiconfig/swriter/ui/converttexttable.ui:229
+#: sw/uiconfig/swriter/ui/converttexttable.ui:252
msgctxt "converttexttable|label1"
msgid "Separate Text At"
msgstr "Tekstin erottelu"
#. VDaHH
-#: sw/uiconfig/swriter/ui/converttexttable.ui:262
+#: sw/uiconfig/swriter/ui/converttexttable.ui:285
msgctxt "converttexttable|headingcb"
msgid "Heading"
msgstr "Otsikko"
+#. dqVGr
+#: sw/uiconfig/swriter/ui/converttexttable.ui:294
+msgctxt "converttexttable|extended_tip|headingcb"
+msgid "Formats the first row of the new table as a heading."
+msgstr "Muotoillaan uuden taulukon ensimmäinen rivi otsikoksi."
+
#. XqGoL
-#: sw/uiconfig/swriter/ui/converttexttable.ui:277
+#: sw/uiconfig/swriter/ui/converttexttable.ui:305
msgctxt "converttexttable|repeatheading"
msgid "Repeat heading"
msgstr "Toista otsikko"
+#. YhBhC
+#: sw/uiconfig/swriter/ui/converttexttable.ui:316
+msgctxt "converttexttable|extended_tip|repeatheading"
+msgid "Repeats the table header on each page that the table spans."
+msgstr "Taulukon otsikko toistuu taulukossa jatkosivuillakin."
+
#. URvME
-#: sw/uiconfig/swriter/ui/converttexttable.ui:294
+#: sw/uiconfig/swriter/ui/converttexttable.ui:327
msgctxt "converttexttable|dontsplitcb"
msgid "Don't split table"
msgstr "Älä jaa taulukkoa"
+#. FA8WG
+#: sw/uiconfig/swriter/ui/converttexttable.ui:336
+msgctxt "converttexttable|extended_tip|dontsplitcb"
+msgid "Does not divide the table across pages."
+msgstr "Taulukkoa ei jaeta useammalle sivulle."
+
#. XaNbS
-#: sw/uiconfig/swriter/ui/converttexttable.ui:318
+#: sw/uiconfig/swriter/ui/converttexttable.ui:356
msgctxt "converttexttable|label3"
msgid "The first "
msgstr "Ensimmäiset "
#. iXL3d
-#: sw/uiconfig/swriter/ui/converttexttable.ui:331
+#: sw/uiconfig/swriter/ui/converttexttable.ui:369
msgctxt "converttexttable|label4"
msgid "rows"
msgstr "riviä"
#. C9QkD
-#: sw/uiconfig/swriter/ui/converttexttable.ui:359
+#: sw/uiconfig/swriter/ui/converttexttable.ui:397
msgctxt "converttexttable|autofmt"
msgid "AutoFormat..."
msgstr "Automaattinen muotoilu..."
+#. ArFSS
+#: sw/uiconfig/swriter/ui/converttexttable.ui:402
+msgctxt "converttexttable|extended_tip|autofmt"
+msgid "Opens the AutoFormat dialog, where you can select a predefined layout for table."
+msgstr "Avataan Taulukkotyyli-valintaikkuna, jossa voidaan valita automaattinen muotoilu ja asettelu taulukolle."
+
#. Jsmkz
-#: sw/uiconfig/swriter/ui/converttexttable.ui:376
+#: sw/uiconfig/swriter/ui/converttexttable.ui:419
msgctxt "converttexttable|label2"
msgid "Options"
msgstr "Asetukset"
+#. kUb8Q
+#: sw/uiconfig/swriter/ui/converttexttable.ui:451
+msgctxt "converttexttable|extended_tip|ConvertTextTableDialog"
+msgid "Converts the selected text into a table, or the selected table into text."
+msgstr "Muunnetaan valittu teksti taulukoksi tai valittu taulukko tekstiksi."
+
#. FxaLn
#: sw/uiconfig/swriter/ui/createaddresslist.ui:13
msgctxt "createaddresslist|CreateAddressList"
@@ -9961,65 +12282,137 @@ msgid "New Address List"
msgstr "Uusi osoitelista"
#. eTJmA
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:100
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:97
msgctxt "createaddresslist|ADDRESS_INFORMATION"
msgid "Address Information"
msgstr "Osoitetiedot"
+#. KnL9j
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:159
+msgctxt "createaddresslist|extended_tip|CONTAINER"
+msgid "Enter or edit the field contents for each mail merge recipient."
+msgstr "Täytetään tai muokataan kunkin joukkokirjeen vastaanottajan kenttien sisältöjä."
+
#. UKKXX
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:181
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:183
msgctxt "createaddresslist|VIEW_ENTRIES"
msgid "Sho_w entry number"
msgstr "Näytä osoitteen numero"
#. DhAsp
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:201
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:203
msgctxt "createaddresslist|START"
msgid "|<"
msgstr "|<"
+#. cwkzK
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:209
+msgctxt "createaddresslist|extended_tip|START"
+msgid "Click the buttons to navigate through the records or enter a record number to display a record."
+msgstr "Painikkeita napsauttamalla siirrytään tietueissa tai syötetään näytettävän tietueen numero."
+
#. XAhXo
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:213
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:220
msgctxt "createaddresslist|PREV"
msgid "<"
msgstr "<"
+#. M7ApL
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:226
+msgctxt "createaddresslist|extended_tip|PREV"
+msgid "Click the buttons to navigate through the records or enter a record number to display a record."
+msgstr "Painikkeita napsauttamalla siirrytään tietueissa tai syötetään näytettävän tietueen numero."
+
#. BFEtt
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:225
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:237
msgctxt "createaddresslist|END"
msgid ">|"
msgstr ">|"
+#. gEQXQ
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:243
+msgctxt "createaddresslist|extended_tip|END"
+msgid "Click the buttons to navigate through the records or enter a record number to display a record."
+msgstr "Painikkeita napsauttamalla siirrytään tietueissa tai syötetään näytettävän tietueen numero."
+
#. vzQvB
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:237
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:254
msgctxt "createaddresslist|NEXT"
msgid ">"
msgstr ">"
+#. AQAb9
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:260
+msgctxt "createaddresslist|extended_tip|NEXT"
+msgid "Click the buttons to navigate through the records or enter a record number to display a record."
+msgstr "Painikkeita napsauttamalla siirrytään tietueissa tai syötetään näytettävän tietueen numero."
+
+#. r6T84
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:282
+msgctxt "createaddresslist|extended_tip|SETNOSB"
+msgid "Click the buttons to navigate through the records or enter a record number to display a record."
+msgstr "Painikkeita napsauttamalla siirrytään tietueissa tai syötetään näytettävän tietueen numero."
+
+#. KdhEt
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:299
+msgctxt "createaddresslist|extended_tip|SETNOED"
+msgid "Click the buttons to navigate through the records or enter a record number to display a record."
+msgstr "Painikkeita napsauttamalla siirrytään tietueissa tai syötetään näytettävän tietueen numero."
+
#. hPwMj
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:311
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:343
msgctxt "createaddresslist|NEW"
msgid "_New"
msgstr "_Uusi"
+#. dUNG3
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:350
+msgctxt "createaddresslist|extended_tip|NEW"
+msgid "Adds a new blank record to the address list."
+msgstr "Lisätään uusi tyhjä tietue osoitelistaan."
+
#. jt8fG
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:325
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:362
msgctxt "createaddresslist|DELETE"
msgid "_Delete"
msgstr "Poista"
+#. 9BCh5
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:369
+msgctxt "createaddresslist|extended_tip|DELETE"
+msgid "Deletes the selected record."
+msgstr "Poistetaan valittu tietue."
+
#. TDMA8
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:339
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:381
msgctxt "createaddresslist|FIND"
msgid "_Find..."
msgstr "Etsi..."
+#. hiYxd
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:388
+msgctxt "createaddresslist|extended_tip|FIND"
+msgid "Opens the Find Entry dialog. You can leave the dialog open while you edit the entries."
+msgstr "Avataan Hae osoite -valintaikkuna. Valintaikkuna voidaan jättää avoimeksi merkintöjä muokattaessa."
+
#. rTdBt
-#: sw/uiconfig/swriter/ui/createaddresslist.ui:353
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:400
msgctxt "createaddresslist|CUSTOMIZE"
msgid "C_ustomize..."
msgstr "Mukauta..."
+#. Y965L
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:407
+msgctxt "createaddresslist|extended_tip|CUSTOMIZE"
+msgid "Opens the Customize Address List dialog where you can rearrange, rename, add, and delete fields."
+msgstr "Avataan Muokkaa osoitelistaa -valintaikkuna, jossa voidaan järjestellä, nimetä uudestaan, lisätä ja poistaa kenttiä."
+
+#. DG4y3
+#: sw/uiconfig/swriter/ui/createaddresslist.ui:442
+msgctxt "createaddresslist|extended_tip|CreateAddressList"
+msgid "Enter new addresses or edit the addresses for mail merge documents."
+msgstr ""
+
#. bZoQN
#: sw/uiconfig/swriter/ui/createauthorentry.ui:8
msgctxt "createauthorentry|CreateAuthorEntryDialog"
@@ -10027,11 +12420,17 @@ msgid "Define Bibliography Entry"
msgstr "Määritä lähdeluettelomerkintä"
#. UvJRD
-#: sw/uiconfig/swriter/ui/createauthorentry.ui:192
+#: sw/uiconfig/swriter/ui/createauthorentry.ui:189
msgctxt "createauthorentry|label1"
msgid "Entry Data"
msgstr "Merkintätiedot"
+#. CVuYp
+#: sw/uiconfig/swriter/ui/createauthorentry.ui:214
+msgctxt "createauthorentry|extended_tip|CreateAuthorEntryDialog"
+msgid "Change the content of a bibliography entry."
+msgstr "Muutetaan lähdeviitteen sisältöä."
+
#. iuN5j
#: sw/uiconfig/swriter/ui/createautomarkdialog.ui:8
msgctxt "createautomarkdialog|CreateAutomarkDialog"
@@ -10039,11 +12438,17 @@ msgid "Edit Concordance File"
msgstr "Muokkaa vastaavuustiedostoa"
#. RDVeW
-#: sw/uiconfig/swriter/ui/createautomarkdialog.ui:107
+#: sw/uiconfig/swriter/ui/createautomarkdialog.ui:104
msgctxt "createautomarkdialog|label1"
msgid "Entries"
msgstr "Merkinnät"
+#. cyCFm
+#: sw/uiconfig/swriter/ui/createautomarkdialog.ui:129
+msgctxt "createautomarkdialog|extended_tip|CreateAutomarkDialog"
+msgid "Create or edit a list of words to include in an Alphabetical Index."
+msgstr "Luodaan tai muokataan aakkoselliseen hakemistoon sisältyvää sanaluetteloa."
+
#. 7dr3i
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:26
msgctxt "customizeaddrlistdialog|CustomizeAddrListDialog"
@@ -10051,23 +12456,47 @@ msgid "Customize Address List"
msgstr "Muokkaa osoitelistaa"
#. Mfeh7
-#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:114
+#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:110
msgctxt "customizeaddrlistdialog|add"
msgid "_Add..."
msgstr "Lisää..."
+#. aU2jL
+#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:117
+msgctxt "customizeaddrlistdialog|extended_tip|add"
+msgid "Inserts a new text field."
+msgstr "Lisätään uusi tekstikenttä."
+
+#. zesMS
+#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:136
+msgctxt "customizeaddrlistdialog|extended_tip|delete"
+msgid "Deletes the selected field."
+msgstr "Valittu kenttä poistetaan."
+
#. 8TKnG
-#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:142
+#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:148
msgctxt "customizeaddrlistdialog|rename"
msgid "_Rename..."
msgstr "Nimeä uudelleen..."
+#. 8QggP
+#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:155
+msgctxt "customizeaddrlistdialog|extended_tip|rename"
+msgid "Renames the selected text field."
+msgstr "Nimetään uudelleen valittu tekstikenttä."
+
#. RRdew
-#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:171
+#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:182
msgctxt "customizeaddrlistdialog|label1"
msgid "A_ddress list elements:"
msgstr "Osoitelistan kentät:"
+#. AxRrt
+#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:224
+msgctxt "customizeaddrlistdialog|extended_tip|treeview"
+msgid "Select the fields that you want to move, delete, or rename."
+msgstr "Valitaan kentät, joita aiotaan siirtää, poistaa tai nimetä uudestaan."
+
#. Bmbc2
#: sw/uiconfig/swriter/ui/datasourcesunavailabledialog.ui:7
msgctxt "datasourcesunavailabledialog|DataSourcesUnavailableDialog"
@@ -10104,62 +12533,123 @@ msgctxt "dropcapspage|checkCB_SWITCH"
msgid "_Display drop caps"
msgstr "Näytä anfangit"
+#. PEHkg
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:68
+msgctxt "dropcapspage|extended_tip|checkCB_SWITCH"
+msgid "Applies the drop cap settings to the selected paragraph."
+msgstr "Ruutu merkittynä upotetun alkukirjaimen asetuksia käytetään valittuun kappaleeseen."
+
#. CXZcp
-#: sw/uiconfig/swriter/ui/dropcapspage.ui:75
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:80
msgctxt "dropcapspage|checkCB_WORD"
msgid "_Whole word"
msgstr "Koko sana"
+#. x9AVP
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:89
+msgctxt "dropcapspage|extended_tip|checkCB_WORD"
+msgid "Displays the first letter of the first word in the paragraph as a drop cap, and the remaining letters of the word as large type."
+msgstr "Ruutu merkittynä kappaleen ensimmäisen sana ensimmäinen kirjain esitetään anfangina ja loput sanan kirjaimet suurikokoisina."
+
#. YEaFN
-#: sw/uiconfig/swriter/ui/dropcapspage.ui:93
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:103
msgctxt "dropcapspage|labelFT_DROPCAPS"
msgid "Number of _characters:"
msgstr "Merkkien määrä:"
#. 5R57p
-#: sw/uiconfig/swriter/ui/dropcapspage.ui:107
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:117
msgctxt "dropcapspage|labelTXT_LINES"
msgid "_Lines:"
msgstr "Rivit:"
#. fx3xM
-#: sw/uiconfig/swriter/ui/dropcapspage.ui:121
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:131
msgctxt "dropcapspage|labelTXT_DISTANCE"
msgid "_Space to text:"
msgstr "Etäisyys tekstistä:"
+#. hsw2F
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:150
+#, fuzzy
+msgctxt "dropcapspage|extended_tip|spinFLD_DROPCAPS"
+msgid "Enter the number of characters to convert to drop caps."
+msgstr "Annetaan anfangeiksi muunnettavien merkkien lukumäärä. "
+
+#. mTJvq
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:168
+msgctxt "dropcapspage|extended_tip|spinFLD_LINES"
+msgid "Enter the number of lines that you want the drop cap to extend downward from the first line of the paragraph. Shorter paragraphs will not get drop caps."
+msgstr "Annetaan rivien lukumäärä, joille anfangi ulottuu kappaleen ensimmäiseltä riviltä alaspäin. Annettua rivimäärää lyhyempiin kappaleisiin ei tule anfangia näkyviin."
+
+#. tZURF
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:187
+msgctxt "dropcapspage|extended_tip|spinFLD_DISTANCE"
+msgid "Enter the amount of space to leave between the drop caps and the rest of the text in the paragraph."
+msgstr "Annetaan sen välin suuruuden, joka jää anfangien ja kappaleen muun tekstin väliin."
+
#. PQ6xG
-#: sw/uiconfig/swriter/ui/dropcapspage.ui:179
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:204
msgctxt "dropcapspage|labelFL_SETTING"
msgid "Settings"
msgstr "Asetukset"
#. 9ApzK
-#: sw/uiconfig/swriter/ui/dropcapspage.ui:213
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:238
msgctxt "dropcapspage|labelTXT_TEXT"
msgid "_Text:"
msgstr "Teksti:"
#. MdKAS
-#: sw/uiconfig/swriter/ui/dropcapspage.ui:227
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:252
msgctxt "dropcapspage|labelTXT_TEMPLATE"
msgid "Character st_yle:"
msgstr "Merkkityyli:"
+#. rmFud
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:270
+msgctxt "dropcapspage|extended_tip|entryEDT_TEXT"
+msgid "Enter the text that you want to display as drop caps instead of the first letters of the paragraph."
+msgstr "Annetaan teksti, jonka halutaan näkyvän anfangina kappaleen ensimmäisten kirjainten asemesta."
+
+#. eTLND
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:285
+msgctxt "dropcapspage|extended_tip|comboBOX_TEMPLATE"
+msgid "Select the formatting style that you want to apply to the drop caps."
+msgstr "Valitaan anfangiin käytettävä muotoilutyyli."
+
#. tAmQu
-#: sw/uiconfig/swriter/ui/dropcapspage.ui:267
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:302
msgctxt "dropcapspage|labelFL_CONTENT"
msgid "Contents"
msgstr "Sisältö"
+#. Rk5EJ
+#: sw/uiconfig/swriter/ui/dropcapspage.ui:358
+msgctxt "dropcapspage|extended_tip|DropCapPage"
+msgid "Formats the first letter of a paragraph with a large capital letter, that can span several lines. The paragraph must span at least as many lines as you specify in the Lines box."
+msgstr "Muotoillaan kappaleen ensimmäinen kirjain suurikokoiseksi kirjaimeksi, joka voi ulottua useammalle riville. Kappaleen tulee ulottua vähintään yhtä monelle riville kuin Rivit-ruudussa määritetään."
+
#. dkjDS
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:16
msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Syöttökenttä "
+#. USGaG
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:58
+msgctxt "dropdownfielddialog|extended_tip|next"
+msgid "Closes the current Input list and displays the next, if available."
+msgstr ""
+
+#. Ct7px
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:83
+msgctxt "dropdownfielddialog|extended_tip|edit"
+msgid "Displays the Edit Fields: Functions dialog, where you can edit the Input list."
+msgstr ""
+
#. k3yMJ
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:217
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Muokkaa"
@@ -10200,30 +12690,66 @@ msgctxt "editcategories|EditCategoriesDialog"
msgid "Edit Categories"
msgstr "Muokkaa luokkia"
+#. 2CmpG
+#: sw/uiconfig/swriter/ui/editcategories.ui:42
+msgctxt "editcategories|extended_tip|new"
+msgid "Creates a new AutoText category using the name that you entered in the Name box."
+msgstr "Luodaan uusi automaattisten tekstien luokka, jolle käytetään Luokka-ruutuun kirjoitettua nimeä."
+
#. ckaZS
-#: sw/uiconfig/swriter/ui/editcategories.ui:67
+#: sw/uiconfig/swriter/ui/editcategories.ui:69
msgctxt "editcategories|rename"
msgid "_Rename"
msgstr "_Nimeä uudelleen"
+#. HmC7z
+#: sw/uiconfig/swriter/ui/editcategories.ui:77
+msgctxt "editcategories|extended_tip|rename"
+msgid "Changes the name of the selected AutoText category to the name that you enter in the Name box."
+msgstr "Valitun automaattisen tekstin luokan nimi vaihdetaan Luokka-ruutuun kirjoitettuun nimeen."
+
#. 29qRx
-#: sw/uiconfig/swriter/ui/editcategories.ui:146
+#: sw/uiconfig/swriter/ui/editcategories.ui:153
msgctxt "editcategories|label3"
msgid "Selection list"
msgstr "Valintaluettelo"
+#. 2L9md
+#: sw/uiconfig/swriter/ui/editcategories.ui:211
+msgctxt "editcategories|extended_tip|group"
+msgid "Lists the existing AutoText categories and the corresponding paths."
+msgstr "Luettelossa on automaattisen tekstin luokat ja niitä vastaavat polut."
+
+#. XgP6M
+#: sw/uiconfig/swriter/ui/editcategories.ui:230
+msgctxt "editcategories|extended_tip|pathlb"
+msgid "Displays the current path to the directory where the selected AutoText category files are stored. If you are creating an AutoText category, select where you want to store the category files."
+msgstr "Näkyvillä on nykyinen polku kansioon, johon valitun automaattisen tekstin luokan tiedostot ovat talletettu. Jos ollaan luomassa luokkaa, valitaan talletettavien luokan tiedostojen kansio."
+
#. 94dZM
-#: sw/uiconfig/swriter/ui/editcategories.ui:226
+#: sw/uiconfig/swriter/ui/editcategories.ui:243
msgctxt "editcategories|label2"
msgid "Path"
msgstr "Polku"
#. zaAUf
-#: sw/uiconfig/swriter/ui/editcategories.ui:240
+#: sw/uiconfig/swriter/ui/editcategories.ui:257
msgctxt "editcategories|label1"
msgid "Category"
msgstr "Luokka"
+#. k4DHd
+#: sw/uiconfig/swriter/ui/editcategories.ui:275
+msgctxt "editcategories|extended_tip|name"
+msgid "Displays the name of the selected AutoText category. To change the name of the category, type a new name, and then click Rename. To create a new category, type a name, and then click New."
+msgstr "Esitetään valitun automaattisen tekstin luokan nimi. Luokan nimen vaihtamiseksi kirjoitetaan uusi nimi ja napsautetaan sitten Nimeä uudelleen -painiketta. Uuden luokan luomiseksi kirjoitetaan nimi ja sitten napsautetaan Uusi-painiketta."
+
+#. saGoB
+#: sw/uiconfig/swriter/ui/editcategories.ui:306
+msgctxt "editcategories|extended_tip|EditCategoriesDialog"
+msgid "Adds, renames, or deletes AutoText categories."
+msgstr "Lisätään, nimetään uudestaan tai poistetaan automaattisen tekstin luokkia."
+
#. uQE9B
#: sw/uiconfig/swriter/ui/editfielddialog.ui:18
msgctxt "editfielddialog|EditFieldDialog"
@@ -10231,29 +12757,53 @@ msgid "Edit Fields"
msgstr "Muokkaa kenttiä"
#. kgAD5
-#: sw/uiconfig/swriter/ui/editfielddialog.ui:99
+#: sw/uiconfig/swriter/ui/editfielddialog.ui:96
msgctxt "editfielddialog|prev_tip"
msgid "Previous field of same type"
msgstr "Edellinen saman tyypin kenttä"
+#. rnvem
+#: sw/uiconfig/swriter/ui/editfielddialog.ui:103
+msgctxt "editfielddialog|extended_tip|prev"
+msgid "Edit field contents."
+msgstr ""
+
#. T4GAj
-#: sw/uiconfig/swriter/ui/editfielddialog.ui:115
+#: sw/uiconfig/swriter/ui/editfielddialog.ui:117
msgctxt "editfielddialog|next_tip"
msgid "Next field of same type"
msgstr "Seuraava saman tyypin kenttä"
+#. zBjeG
+#: sw/uiconfig/swriter/ui/editfielddialog.ui:122
+msgctxt "editfielddialog|extended_tip|next"
+msgid "Edit field contents."
+msgstr ""
+
#. Gg5FB
-#: sw/uiconfig/swriter/ui/editfielddialog.ui:126
+#: sw/uiconfig/swriter/ui/editfielddialog.ui:133
msgctxt "editfielddialog|edit"
msgid "_Edit"
msgstr "_Muokkaa"
#. LJAnh
-#: sw/uiconfig/swriter/ui/editfielddialog.ui:131
+#: sw/uiconfig/swriter/ui/editfielddialog.ui:138
msgctxt "editfielddialog|edit_tip"
msgid "Edit variable field content"
msgstr ""
+#. uMDvE
+#: sw/uiconfig/swriter/ui/editfielddialog.ui:143
+msgctxt "editfielddialog|extended_tip|edit"
+msgid "Edit field contents."
+msgstr ""
+
+#. Lds2R
+#: sw/uiconfig/swriter/ui/editfielddialog.ui:175
+msgctxt "editfielddialog|extended_tip|EditFieldDialog"
+msgid "Edit field contents."
+msgstr ""
+
#. cL2RH
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:18
msgctxt "editsectiondialog|EditSectionDialog"
@@ -10261,113 +12811,197 @@ msgid "Edit Sections"
msgstr "Muokkaa osia"
#. JhRAC
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:68
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:65
msgctxt "editsectiondialog|options"
msgid "_Options..."
msgstr "Asetukset..."
+#. 8SFsS
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:87
+msgctxt "editsectiondialog|extended_tip|remove"
+msgid "Removes the selected section from the document, and inserts the contents of the section into the document."
+msgstr "Poistetaan valittu osa asiakirjasta ja lisätään osan sisältö asiakirjaan."
+
+#. aqo5i
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:157
+msgctxt "editsectiondialog|extended_tip|curname"
+msgid "Type a name for the new section."
+msgstr "Kirjoitetaan uuden osan nimi."
+
+#. qwvCU
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:205
+msgctxt "editsectiondialog|extended_tip|tree"
+msgid "Type the name of the section that you want to edit, or click a name in the Section list."
+msgstr "Kirjoitetaan muokattavan osan nimi tai napsautetaan nimeä Osa-luettelossa."
+
#. hQmDw
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:212
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:224
msgctxt "editsectiondialog|label1"
msgid "Section"
msgstr "Osa"
#. 6HhHy
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:255
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:267
msgctxt "editsectiondialog|link"
msgid "_Link"
msgstr "_Linkitä"
+#. hDHGK
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:278
+msgctxt "editsectiondialog|extended_tip|link"
+msgid "Inserts the contents of another document or section from another document in the current section."
+msgstr "Lisätään toisen asiakirjan sisältö tai osa käsiteltävään osaan."
+
#. AtCiy
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:272
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:289
msgctxt "editsectiondialog|dde"
msgid "DD_E"
msgstr "DDE"
+#. Mpbee
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:300
+msgctxt "editsectiondialog|extended_tip|dde"
+msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected."
+msgstr "Luodaan DDE-linkki. Merkitään tämä valintaruutu ja syötetään sitten käytettävä DDE-komento. DDE-asetus on käytettävissä vain, jos Linkitä-valintaruutu on merkitty."
+
#. kuxD5
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:302
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:324
msgctxt "editsectiondialog|file"
msgid "Browse..."
msgstr "Selaa..."
+#. YSbbe
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:331
+msgctxt "editsectiondialog|extended_tip|file"
+msgid "Locate the file that you want to insert as a link, and then click Insert."
+msgstr "Paikallistetaan linkkinä lisättävä tiedosto ja napsautetaan sitten Lisää."
+
+#. KpDNG
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:348
+msgctxt "editsectiondialog|extended_tip|filename"
+msgid "Enter the path and the filename for the file that you want to insert, or click the Browse button to locate the file."
+msgstr ""
+
#. Bc8Ga
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:329
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:361
msgctxt "editsectiondialog|sectionft"
msgid "_Section"
msgstr "_Osa"
+#. SpkZg
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:385
+msgctxt "editsectiondialog|extended_tip|section"
+msgid "Select the section in the file that you want to insert as a link."
+msgstr "Valitaan linkkinä lisättävän tiedoston osa."
+
#. FaKhg
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:367
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:404
msgctxt "editsectiondialog|filenameft"
msgid "_File name"
msgstr "_Tiedoston nimi"
#. NTQ7u
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:382
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:419
msgctxt "editsectiondialog|ddeft"
msgid "DDE _Command"
msgstr "DDE-komento"
#. MxWBb
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:415
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:452
msgctxt "editsectiondialog|label8"
msgid "Link"
msgstr "Linkki"
#. fjAM8
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:452
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:489
msgctxt "editsectiondialog|protect"
msgid "_Protect"
msgstr "Suojaa"
+#. jjkoL
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:501
+msgctxt "editsectiondialog|extended_tip|protect"
+msgid "Prevents the selected section from being edited."
+msgstr "Estetään valitun osan muokkaaminen."
+
#. cCKhF
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:480
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:522
msgctxt "editsectiondialog|withpassword"
msgid "Wit_h password"
msgstr "Käytä sala_sanaa"
+#. hAHNw
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:535
+msgctxt "editsectiondialog|extended_tip|withpassword"
+msgid "Protects the selected section with a password. The password must have a minimum of 5 characters."
+msgstr "Valittu osa suojataan salasanoin. Salasanan vähimmäispituus on 5 merkkiä."
+
#. FqGwf
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:499
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:546
msgctxt "editsectiondialog|password"
msgid "Password..."
msgstr "Salasana..."
+#. PYhAa
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:556
+msgctxt "editsectiondialog|extended_tip|password"
+msgid "Opens a dialog where you can change the current password."
+msgstr "Avataan valintaikkuna, jossa käytössä oleva salasana voidaan vaihtaa."
+
#. Vb88z
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:529
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:581
msgctxt "editsectiondialog|label6"
msgid "Write Protection"
msgstr "Kirjoitussuojaus"
#. W4aLX
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:566
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:618
msgctxt "editsectiondialog|hide"
msgid "Hide"
msgstr "Piilota"
+#. 5jWJ7
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:629
+msgctxt "editsectiondialog|extended_tip|hide"
+msgid "Hides and prevents the selected section from being printed."
+msgstr "Valittu osa piilotetaan ja estetään tulostumasta."
+
#. YR5xA
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:597
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:654
msgctxt "editsectiondialog|conditionft"
msgid "_With Condition"
msgstr "Ehdolla"
+#. yHCZA
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:673
+msgctxt "editsectiondialog|extended_tip|condition"
+msgid "Enter the condition that must be met to hide the section."
+msgstr "Annetaan ehto, jonka pitää täyttyä osan piilottamiseksi."
+
#. tnwHD
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:636
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:698
msgctxt "editsectiondialog|label4"
msgid "Hide"
msgstr "Piilota"
#. CGPxC
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:672
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:734
msgctxt "editsectiondialog|editinro"
msgid "E_ditable in read-only document"
msgstr "_Muokattavissa myös kirjoitussuojatuissa asiakirjoissa"
#. ndfNc
-#: sw/uiconfig/swriter/ui/editsectiondialog.ui:695
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:757
msgctxt "editsectiondialog|label9"
msgid "Properties"
msgstr "Ominaisuudet"
+#. BjqYr
+#: sw/uiconfig/swriter/ui/editsectiondialog.ui:796
+msgctxt "editsectiondialog|extended_tip|EditSectionDialog"
+msgid "Sets the properties of the section."
+msgstr ""
+
#. Sy8Ao
#: sw/uiconfig/swriter/ui/endnotepage.ui:40
msgctxt "endnotepage|label19"
@@ -10392,84 +13026,180 @@ msgctxt "endnotepage|label25"
msgid "After"
msgstr "Jälkeen"
+#. KWe5V
+#: sw/uiconfig/swriter/ui/endnotepage.ui:91
+msgctxt "endnotepage|extended_tip|offsetnf"
+msgid "Enter the number for the first endnote in the document."
+msgstr "Anna asiakirjan ensimmäisen loppuviitteen järjestysnumero."
+
+#. kEbXn
+#: sw/uiconfig/swriter/ui/endnotepage.ui:107
+msgctxt "endnotepage|extended_tip|prefix"
+msgid "Enter the text that you want to display in front of the endnote number in the note text."
+msgstr "Anna teksti, joka näytetään loppuviitteen järjestysnumeron edessä viitteen tekstissä."
+
+#. UFXFD
+#: sw/uiconfig/swriter/ui/endnotepage.ui:123
+msgctxt "endnotepage|extended_tip|suffix"
+msgid "Enter the text that you want to display after the endnote number in the note text."
+msgstr "Anna teksti, joka näytetään loppuviitteen järjestysnumeron perässä viitteen tekstissä."
+
+#. Fby7r
+#: sw/uiconfig/swriter/ui/endnotepage.ui:138
+msgctxt "endnotepage|extended_tip|numberinglb"
+msgid "Enter the number for the first endnote in the document."
+msgstr "Anna asiakirjan ensimmäisen loppuviitteen järjestysnumero."
+
#. C5Z3B
-#: sw/uiconfig/swriter/ui/endnotepage.ui:135
+#: sw/uiconfig/swriter/ui/endnotepage.ui:155
msgctxt "endnotepage|label26"
msgid "Autonumbering"
msgstr "Automaattinen numerointi"
#. JFJDU
-#: sw/uiconfig/swriter/ui/endnotepage.ui:169
+#: sw/uiconfig/swriter/ui/endnotepage.ui:189
msgctxt "endnotepage|label20"
msgid "Paragraph"
msgstr "Kappale"
#. bDDBx
-#: sw/uiconfig/swriter/ui/endnotepage.ui:181
+#: sw/uiconfig/swriter/ui/endnotepage.ui:201
msgctxt "endnotepage|pagestyleft"
msgid "Page"
msgstr "Sivu"
+#. zHbGd
+#: sw/uiconfig/swriter/ui/endnotepage.ui:216
+msgctxt "endnotepage|extended_tip|parastylelb"
+msgid "Select the paragraph style for the endnote text. Only special styles can be selected."
+msgstr ""
+
+#. 3CM3n
+#: sw/uiconfig/swriter/ui/endnotepage.ui:232
+msgctxt "endnotepage|extended_tip|pagestylelb"
+msgid "Select the page style that you want to use for endnotes."
+msgstr "Valitse loppuviitteille käytettävä sivutyyli."
+
#. taDmw
-#: sw/uiconfig/swriter/ui/endnotepage.ui:215
+#: sw/uiconfig/swriter/ui/endnotepage.ui:245
msgctxt "endnotepage|label27"
msgid "Text area"
msgstr "Tekstialue"
#. GwJMG
-#: sw/uiconfig/swriter/ui/endnotepage.ui:227
+#: sw/uiconfig/swriter/ui/endnotepage.ui:257
msgctxt "endnotepage|label28"
msgid "Endnote area"
msgstr "Loppuviitealue"
+#. DdZed
+#: sw/uiconfig/swriter/ui/endnotepage.ui:272
+msgctxt "endnotepage|extended_tip|charanchorstylelb"
+msgid "Select the character style that you want to use for endnote anchors in the text area of your document."
+msgstr "Valitaan merkkityyli, jota käytetään loppuviitteen ankkurissa asiakirjan tekstialueella."
+
+#. p8rDB
+#: sw/uiconfig/swriter/ui/endnotepage.ui:288
+msgctxt "endnotepage|extended_tip|charstylelb"
+msgid "Select the character style that you want to use for the endnote numbers in the endnote area."
+msgstr "Valitaan merkkityyli, jota käytetään loppuviitteen numerolle loppuviitealueella."
+
#. mUJmG
-#: sw/uiconfig/swriter/ui/endnotepage.ui:265
+#: sw/uiconfig/swriter/ui/endnotepage.ui:305
msgctxt "endnotepage|label23"
msgid "Styles"
msgstr "Tyylit"
+#. evnAx
+#: sw/uiconfig/swriter/ui/endnotepage.ui:319
+msgctxt "endnotepage|extended_tip|EndnotePage"
+msgid "Specifies the formatting for endnotes."
+msgstr "Määritetään ala- ja loppuviitteen muotoilu."
+
+#. eMZQa
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:47
+msgctxt "envaddresspage|extended_tip|addredit"
+msgid "Enter the delivery address."
+msgstr ""
+
#. Ate7u
-#: sw/uiconfig/swriter/ui/envaddresspage.ui:58
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:63
msgctxt "envaddresspage|label2"
msgid "Addr_essee"
msgstr "Saaja"
#. ZEtSY
-#: sw/uiconfig/swriter/ui/envaddresspage.ui:91
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:96
msgctxt "envaddresspage|label4"
msgid "Database"
msgstr "Tietokanta"
+#. nHjzm
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:113
+msgctxt "envaddresspage|extended_tip|database"
+msgid "Select the database containing the address data that you want to insert."
+msgstr "Valitaan tietokanta, jossa on lisättävät osoitetiedot."
+
#. hSE39
-#: sw/uiconfig/swriter/ui/envaddresspage.ui:129
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:139
msgctxt "envaddresspage|label7"
msgid "Table"
msgstr "Taulukko"
+#. GSeM5
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:156
+msgctxt "envaddresspage|extended_tip|table"
+msgid "Select the database table containing the address data that you want to insert."
+msgstr "Valitaan tietokannan taulu, jossa on lisättävät osoitetiedot."
+
#. ng4U7
-#: sw/uiconfig/swriter/ui/envaddresspage.ui:167
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:182
msgctxt "envaddresspage|label8"
msgid "Database field"
msgstr "Tietokantakenttä"
+#. GeGpt
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:199
+msgctxt "envaddresspage|extended_tip|field"
+msgid "Select the database field containing the address data that you want to insert, and then click the left arrow button. The data is added to the address box containing the cursor."
+msgstr "Valitaan tietokannan kenttä, jossa on lisättävä osoiterivi ja napsautetaan sitten nuolipainiketta. Tiedot lisätään osoiteruutuun, jossa kohdistin on."
+
#. GDUFX
-#: sw/uiconfig/swriter/ui/envaddresspage.ui:205
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:225
msgctxt "envaddresspage|insert|tooltip_text"
msgid "Insert"
msgstr "Lisää"
+#. xYXzg
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:231
+msgctxt "envaddresspage|extended_tip|insert"
+msgid "Select the database field containing the address data that you want to insert, and then click the left arrow button. The data is added to the address box containing the cursor."
+msgstr "Valitaan tietokannan kenttä, jossa on lisättävä osoiterivi ja napsautetaan sitten nuolipainiketta. Tiedot lisätään osoiteruutuun, jossa kohdistin on."
+
+#. 9BZRZ
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:279
+msgctxt "envaddresspage|extended_tip|senderedit"
+msgid "Includes a return address on the envelope. Select the Sender check box, and then enter the return address."
+msgstr ""
+
#. t3YBo
-#: sw/uiconfig/swriter/ui/envaddresspage.ui:262
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:292
msgctxt "envaddresspage|sender"
msgid "_Sender"
msgstr "Lähettäjä"
#. 82EGX
-#: sw/uiconfig/swriter/ui/envaddresspage.ui:304
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:334
msgctxt "envaddresspage|preview-atkobject"
msgid "Preview"
msgstr "Esikatselu"
+#. jdjqJ
+#: sw/uiconfig/swriter/ui/envaddresspage.ui:352
+msgctxt "envaddresspage|extended_tip|EnvAddressPage"
+msgid "Enter the delivery and return addresses for the envelope. You can also insert address fields from a database, for example from the Addresses database."
+msgstr "Kirjoitetaan kirjeen jakelu- ja palautusosoitteet. Osoitekentät voidaan lisätä myös tietokannasta, esimerkiksi osoitteiden tietokannasta."
+
#. HTUgZ
#: sw/uiconfig/swriter/ui/envdialog.ui:8
msgctxt "envdialog|EnvDialog"
@@ -10536,228 +13266,324 @@ msgctxt "envformatpage|paragraph2"
msgid "P_aragraph..."
msgstr "Kappale..."
+#. uXLxV
+#: sw/uiconfig/swriter/ui/envformatpage.ui:129
+msgctxt "envformatpage|extended_tip|leftaddr"
+msgid "Enter the amount of space that you want to leave between the left edge of the envelope and the addressee field."
+msgstr "Annetaan kirjekuoren vasemman reunan ja osoitekentän välin suuruus."
+
+#. 8jw6r
+#: sw/uiconfig/swriter/ui/envformatpage.ui:147
+msgctxt "envformatpage|extended_tip|topaddr"
+msgid "Enter the amount of space that you want to leave between the top edge of the envelope and the addressee field."
+msgstr "Annetaan kirjekuoren yläreunan reunan ja osoitekentän välin suuruus."
+
#. WXNci
-#: sw/uiconfig/swriter/ui/envformatpage.ui:156
+#: sw/uiconfig/swriter/ui/envformatpage.ui:166
msgctxt "envformatpage|label5"
msgid "from left"
msgstr "vasemmalta"
#. 8N9EG
-#: sw/uiconfig/swriter/ui/envformatpage.ui:183
+#: sw/uiconfig/swriter/ui/envformatpage.ui:193
msgctxt "envformatpage|label6"
msgid "from top"
msgstr "ylhäältä"
#. NCir9
-#: sw/uiconfig/swriter/ui/envformatpage.ui:216
+#: sw/uiconfig/swriter/ui/envformatpage.ui:226
msgctxt "envformatpage|label7"
msgid "Format"
msgstr "Muotoilu"
#. NJJAN
-#: sw/uiconfig/swriter/ui/envformatpage.ui:228
+#: sw/uiconfig/swriter/ui/envformatpage.ui:238
msgctxt "envformatpage|addredit"
msgid "Edit"
msgstr "Muokkaa"
+#. Ayz4D
+#: sw/uiconfig/swriter/ui/envformatpage.ui:249
+msgctxt "envformatpage|extended_tip|addredit"
+msgid "Click and choose the text formatting style for the addressee field that you want to edit."
+msgstr "Napsauta ja valitse tekstin muotoilutapa muokattavalle osoitekentälle."
+
#. uXzTX
-#: sw/uiconfig/swriter/ui/envformatpage.ui:257
+#: sw/uiconfig/swriter/ui/envformatpage.ui:272
msgctxt "envformatpage|label4"
msgid "Position"
msgstr "Sijainti"
#. qpdME
-#: sw/uiconfig/swriter/ui/envformatpage.ui:268
+#: sw/uiconfig/swriter/ui/envformatpage.ui:283
msgctxt "envformatpage|label1"
msgid "Addressee"
msgstr "Saaja"
+#. 3KoFc
+#: sw/uiconfig/swriter/ui/envformatpage.ui:342
+msgctxt "envformatpage|extended_tip|leftsender"
+msgid "Enter the amount of space that you want to leave between the left edge of the envelope and the sender field."
+msgstr "Annetaan kirjekuoren vasemman reunan ja lähettäjäkentän välin suuruus."
+
+#. DSKXB
+#: sw/uiconfig/swriter/ui/envformatpage.ui:360
+msgctxt "envformatpage|extended_tip|topsender"
+msgid "Enter the amount of space that you want to leave between the top edge of the envelope and the sender field."
+msgstr "Annetaan kirjekuoren yläreunan ja lähettäjäkentän välin suuruus."
+
#. VjJGu
-#: sw/uiconfig/swriter/ui/envformatpage.ui:354
+#: sw/uiconfig/swriter/ui/envformatpage.ui:379
msgctxt "envformatpage|label8"
msgid "from left"
msgstr "vasemmalta"
#. BkPGQ
-#: sw/uiconfig/swriter/ui/envformatpage.ui:381
+#: sw/uiconfig/swriter/ui/envformatpage.ui:406
msgctxt "envformatpage|label9"
msgid "from top"
msgstr "ylhäältä"
#. E6Zha
-#: sw/uiconfig/swriter/ui/envformatpage.ui:414
+#: sw/uiconfig/swriter/ui/envformatpage.ui:439
msgctxt "envformatpage|label10"
msgid "Format"
msgstr "Muotoilu"
#. k4avK
-#: sw/uiconfig/swriter/ui/envformatpage.ui:426
+#: sw/uiconfig/swriter/ui/envformatpage.ui:451
msgctxt "envformatpage|senderedit"
msgid "Edit"
msgstr "Muokkaa"
+#. 8yXaA
+#: sw/uiconfig/swriter/ui/envformatpage.ui:462
+msgctxt "envformatpage|extended_tip|senderedit"
+msgid "Click and choose the text formatting style for the sender field that you want to edit."
+msgstr "Napsauta ja valitse tekstin muotoilutapa muokattavalle lähettäjäkentälle."
+
#. 7uAao
-#: sw/uiconfig/swriter/ui/envformatpage.ui:455
+#: sw/uiconfig/swriter/ui/envformatpage.ui:485
msgctxt "envformatpage|label11"
msgid "Position"
msgstr "Sijainti"
#. 9kDF2
-#: sw/uiconfig/swriter/ui/envformatpage.ui:466
+#: sw/uiconfig/swriter/ui/envformatpage.ui:496
msgctxt "envformatpage|label2"
msgid "Sender"
msgstr "Lähettäjä"
#. 6Czdy
-#: sw/uiconfig/swriter/ui/envformatpage.ui:509
+#: sw/uiconfig/swriter/ui/envformatpage.ui:539
msgctxt "envformatpage|label12"
msgid "F_ormat"
msgstr "Muotoilu"
#. Ay9BJ
-#: sw/uiconfig/swriter/ui/envformatpage.ui:523
+#: sw/uiconfig/swriter/ui/envformatpage.ui:553
msgctxt "envformatpage|label13"
msgid "_Width"
msgstr "Leveys"
#. juYHj
-#: sw/uiconfig/swriter/ui/envformatpage.ui:537
+#: sw/uiconfig/swriter/ui/envformatpage.ui:567
msgctxt "envformatpage|label14"
msgid "_Height"
msgstr "Korkeus"
+#. SmCXR
+#: sw/uiconfig/swriter/ui/envformatpage.ui:587
+msgctxt "envformatpage|extended_tip|width"
+msgid "Enter the width of the envelope."
+msgstr "Annetaan kirjekuoren leveys."
+
+#. xVPdi
+#: sw/uiconfig/swriter/ui/envformatpage.ui:606
+msgctxt "envformatpage|extended_tip|height"
+msgid "Enter the height of the envelope."
+msgstr "Annetaan kirjekuoren korkeus."
+
+#. g3nMo
+#: sw/uiconfig/swriter/ui/envformatpage.ui:621
+msgctxt "envformatpage|extended_tip|format"
+msgid "Select the envelope size that want, or select \"User Defined\", and then enter the width and the height of the custom size."
+msgstr "Valitaan sopiva kirjekuoren koko, tai valitaan \"Käyttäjän määrittämä\" ja sitten syötetään mukautetun koon leveys ja korkeus."
+
#. 6nRvd
-#: sw/uiconfig/swriter/ui/envformatpage.ui:597
+#: sw/uiconfig/swriter/ui/envformatpage.ui:642
msgctxt "envformatpage|preview-atkobject"
msgid "Preview"
msgstr "Esikatselu"
#. C6GDB
-#: sw/uiconfig/swriter/ui/envformatpage.ui:614
+#: sw/uiconfig/swriter/ui/envformatpage.ui:659
msgctxt "envformatpage|label3"
msgid "Size"
msgstr "Koko"
+#. pujVp
+#: sw/uiconfig/swriter/ui/envformatpage.ui:673
+msgctxt "envformatpage|extended_tip|EnvFormatPage"
+msgid "Specifies the layout and the dimension of the envelope."
+msgstr "Määrätään kirjekuoren asettelu ja ulkomitat."
+
#. MaML5
#: sw/uiconfig/swriter/ui/envprinterpage.ui:103
msgctxt "envprinterpage|top"
msgid "_Print from top"
msgstr "Tulosta alusta"
+#. Z8GPF
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:113
+msgctxt "envprinterpage|extended_tip|top"
+msgid "Feeds the envelope with the print side face up in the printer tray."
+msgstr "Syötetään kirjekuori etupuoli ylöspäin paperilokeroon."
+
#. GbGdf
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:120
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:125
msgctxt "envprinterpage|bottom"
msgid "Print from _bottom"
msgstr "Tulosta lopusta"
+#. zCFHE
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:135
+msgctxt "envprinterpage|extended_tip|bottom"
+msgid "Feeds the envelope with the print side face down in the printer tray."
+msgstr "Syötetään kirjekuori etupuoli alaspäin paperilokeroon."
+
#. JKEJA
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:139
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:149
msgctxt "envprinterpage|label3"
msgid "_Shift right"
msgstr "Siirrä oikealle"
#. 6yGCw
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:153
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:163
msgctxt "envprinterpage|label4"
msgid "Shift _down"
msgstr "Siirrä alas"
+#. aNjCh
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:182
+msgctxt "envprinterpage|extended_tip|right"
+msgid "Enter the amount to shift the print area to the right."
+msgstr "Annetaan mitta tulostusalueen siirrokselle oikealle."
+
+#. LYacC
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:200
+msgctxt "envprinterpage|extended_tip|down"
+msgid "Enter the amount to shift the print area down."
+msgstr "Annetaan mitta tulostusalueen siirrokselle alas."
+
#. z5tvD
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:198
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:218
msgctxt "envprinterpage|horileftl|tooltip_text"
msgid "Horizontal Left"
msgstr "Vaakasuunnassa vasemmalla"
#. EqZR7
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:214
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:234
msgctxt "envprinterpage|horicenterl|tooltip_text"
msgid "Horizontal Center"
msgstr "Vaakasuunnassa keskellä"
#. CCD94
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:230
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:250
msgctxt "envprinterpage|horirightl|tooltip_text"
msgid "Horizontal Right"
msgstr "Vaakasuunnassa oikealla"
#. odBTo
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:246
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:266
msgctxt "envprinterpage|vertleftl|tooltip_text"
msgid "Vertical Left"
msgstr "Pystysuunnassa vasemmalla"
#. HKeFF
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:262
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:282
msgctxt "envprinterpage|vertcenterl|tooltip_text"
msgid "Vertical Center"
msgstr "Pystysuunnassa keskellä"
#. tC3Re
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:278
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:298
msgctxt "envprinterpage|vertrightl|tooltip_text"
msgid "Vertical Right"
msgstr "Pystysuunnassa oikealla"
#. CzGUJ
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:306
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:326
msgctxt "envprinterpage|horileftu|tooltip_text"
msgid "Horizontal Left"
msgstr "Vaakasuunnassa vasemmalla"
#. tdktA
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:322
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:342
msgctxt "envprinterpage|horicenteru|tooltip_text"
msgid "Horizontal Center"
msgstr "Vaakasuunnassa keskellä"
#. MRjTn
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:338
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:358
msgctxt "envprinterpage|horirightu|tooltip_text"
msgid "Horizontal Right"
msgstr "Vaakasuunnassa oikealla"
#. AMfA3
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:354
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:374
msgctxt "envprinterpage|vertleftu|tooltip_text"
msgid "Vertical Left"
msgstr "Pystysuunnassa vasemmalla"
#. NPzAL
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:370
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:390
msgctxt "envprinterpage|vertcenteru|tooltip_text"
msgid "Vertical Center"
msgstr "Pystysuunnassa keskellä"
#. sEMMZ
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:386
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:406
msgctxt "envprinterpage|vertrightu|tooltip_text"
msgid "Vertical Right"
msgstr "Pystysuunnassa oikealla"
#. ZZ3Am
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:412
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:432
msgctxt "envprinterpage|label1"
msgid "Envelope Orientation"
msgstr "Kirjekuoren asento"
#. 7F8Pv
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:447
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr "Asetukset..."
+#. jyNbK
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:474
+msgctxt "envprinterpage|extended_tip|setup"
+msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgstr "Avataan Tulostimen asetukset -valintaikkuna, josta käsin voidaan määrittää tulostimen lisäasetukset, kuten arkkikoko ja -suunta."
+
#. AKs6U
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:463
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:488
msgctxt "envprinterpage|printername"
msgid "Printer Name"
msgstr "Tulostimen nimi"
#. SAqJz
-#: sw/uiconfig/swriter/ui/envprinterpage.ui:481
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:506
msgctxt "envprinterpage|label2"
msgid "Current Printer"
msgstr "Nykyinen tulostin"
+#. UfkX3
+#: sw/uiconfig/swriter/ui/envprinterpage.ui:521
+msgctxt "envprinterpage|extended_tip|EnvPrinterPage"
+msgid "Set the print options for the envelope."
+msgstr "Tehdään kirjeen tulostusasetukset."
+
#. mEd2Q
#: sw/uiconfig/swriter/ui/exchangedatabases.ui:28
msgctxt "exchangedatabases|ExchangeDatabasesDialog"
@@ -10765,31 +13591,37 @@ msgid "Exchange Databases"
msgstr "Vaihda tietokannat"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:44
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Määritä"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:129
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:126
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Käytössä olevat tietokannat"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:143
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:140
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "Käytettävissä olevat tietokannat"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:152
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Selaa..."
+#. HvR9A
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:160
+msgctxt "exchangedatabases|extended_tip|browse"
+msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
+msgstr "Avataan tiedostojen avaamisikkuna tietokantatiedoston (*.odb) valitsemiseksi. Valittu tiedosto lisätään Käytettävissä olevat tietokannat -luetteloon."
+
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:173
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:175
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -10798,18 +13630,36 @@ msgstr ""
"Käytä tätä valintaikkunaa korvatessasi tietokantoja, joihin sinulla on pääsy. Korvaa tietokannat asiakirjasi tietokantakenttien avulla. Voit kerrallaan tehdä vain yhden muutoksen. Monivalinta on mahdollista luettelossa vasemmalla.\n"
"Käytä selauspainiketta valitaksesi tietokantatiedoston."
+#. QCPQK
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:229
+msgctxt "exchangedatabases|extended_tip|inuselb"
+msgid "Lists the databases that are currently in use."
+msgstr "Luettelossa on parhaillaan käytetyt tietokannat."
+
+#. FSFCM
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:281
+msgctxt "exchangedatabases|extended_tip|availablelb"
+msgid "Lists the databases that are registered in %PRODUCTNAME."
+msgstr "Luettelo niistä tietokannoista, jotka on rekisteröity %PRODUCTNAME:ssa."
+
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:293
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:303
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Vaihda tietokannat"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:315
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:325
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Asiakirjassa käytetty tietokanta:"
+#. ZiC8Q
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:371
+msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
+msgid "Change the data sources for the current document."
+msgstr "Vaihdetaan käsiteltävän asiakirjan tietolähteet."
+
#. tmLFC
#: sw/uiconfig/swriter/ui/fielddialog.ui:8
msgctxt "fielddialog|FieldDialog"
@@ -10817,383 +13667,738 @@ msgid "Fields"
msgstr "Kentät"
#. AQXDA
-#: sw/uiconfig/swriter/ui/fielddialog.ui:40
+#: sw/uiconfig/swriter/ui/fielddialog.ui:37
msgctxt "fielddialog|ok"
msgid "_Insert"
msgstr "_Lisää"
+#. AYDUA
+#: sw/uiconfig/swriter/ui/fielddialog.ui:46
+msgctxt "fielddialog|extended_tip|ok"
+msgid "Inserts the selected field at the current cursor position in the document. To close the dialog, click the Close button."
+msgstr "Lisätään valittu kenttä kohdistimen kohdalle asiakirjaan. Valintaikkunan sulkemiseksi napsautetaan Sulje-painiketta."
+
+#. AVAfz
+#: sw/uiconfig/swriter/ui/fielddialog.ui:65
+msgctxt "fielddialog|extended_tip|cancel"
+msgid "Closes the dialog."
+msgstr "Suljetaan valintaikkuna."
+
#. kViDy
-#: sw/uiconfig/swriter/ui/fielddialog.ui:135
+#: sw/uiconfig/swriter/ui/fielddialog.ui:142
msgctxt "fielddialog|document"
msgid "Document"
msgstr "Asiakirja"
#. 2wy3C
-#: sw/uiconfig/swriter/ui/fielddialog.ui:181
+#: sw/uiconfig/swriter/ui/fielddialog.ui:188
msgctxt "fielddialog|ref"
msgid "Cross-references"
msgstr "Ristiviittaukset"
#. QqVAq
-#: sw/uiconfig/swriter/ui/fielddialog.ui:228
+#: sw/uiconfig/swriter/ui/fielddialog.ui:235
msgctxt "fielddialog|functions"
msgid "Functions"
msgstr "Toiminnot"
#. Fg9q6
-#: sw/uiconfig/swriter/ui/fielddialog.ui:275
+#: sw/uiconfig/swriter/ui/fielddialog.ui:282
msgctxt "fielddialog|docinfo"
msgid "DocInformation"
msgstr "Asiakirjatiedot"
#. xAEwa
-#: sw/uiconfig/swriter/ui/fielddialog.ui:322
+#: sw/uiconfig/swriter/ui/fielddialog.ui:329
msgctxt "fielddialog|variables"
msgid "Variables"
msgstr "Muuttujat"
#. mBEV8
-#: sw/uiconfig/swriter/ui/fielddialog.ui:369
+#: sw/uiconfig/swriter/ui/fielddialog.ui:376
msgctxt "fielddialog|database"
msgid "Database"
msgstr "Tietokanta"
+#. k3pNp
+#: sw/uiconfig/swriter/ui/fielddialog.ui:403
+msgctxt "fielddialog|extended_tip|FieldDialog"
+msgid "Inserts a field at the current cursor position."
+msgstr "Lisätään kenttä kohdistimen kohdalle."
+
+#. yfE3P
+#: sw/uiconfig/swriter/ui/findentrydialog.ui:33
+msgctxt "findentrydialog|extended_tip|find"
+msgid "Displays the next record that contains the search text."
+msgstr "Näytetään seuraava tietue, jossa on haettava teksti."
+
#. veaSC
-#: sw/uiconfig/swriter/ui/findentrydialog.ui:91
+#: sw/uiconfig/swriter/ui/findentrydialog.ui:95
msgctxt "findentrydialog|label1"
msgid "F_ind"
msgstr "Etsi"
+#. svGxx
+#: sw/uiconfig/swriter/ui/findentrydialog.ui:113
+msgctxt "findentrydialog|extended_tip|entry"
+msgid "Enter the search term."
+msgstr "Annetaan hakutermi."
+
#. CHJAa
-#: sw/uiconfig/swriter/ui/findentrydialog.ui:126
+#: sw/uiconfig/swriter/ui/findentrydialog.ui:135
msgctxt "findentrydialog|findin"
msgid "Find _only in"
msgstr "Etsi vain"
+#. vXdjr
+#: sw/uiconfig/swriter/ui/findentrydialog.ui:147
+#, fuzzy
+msgctxt "findentrydialog|extended_tip|findin"
+msgid "Restricts the search to one data field."
+msgstr "Rajoitetaan haku yhteen tietokenttään."
+
+#. LA7X8
+#: sw/uiconfig/swriter/ui/findentrydialog.ui:166
+msgctxt "findentrydialog|extended_tip|area"
+msgid "Select the data field where you want to search for the text."
+msgstr ""
+
+#. FQuFW
+#: sw/uiconfig/swriter/ui/findentrydialog.ui:200
+msgctxt "findentrydialog|extended_tip|FindEntryDialog"
+msgid "Searches for a record or recipient in the mail merge address list."
+msgstr ""
+
+#. x6NKD
+#: sw/uiconfig/swriter/ui/flddbpage.ui:93
+msgctxt "flddbpage|extended_tip|type"
+msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
+msgstr "Luettelossa on saatavilla olevat kenttien tyypit. Kentän lisäämiseksi asiakirjaan, napsautetaan kentän tyyppiä, napsautetaan kenttää Valitse-luettelossa ja napsautetaan sitten Lisää-painiketta."
+
#. A5HF3
-#: sw/uiconfig/swriter/ui/flddbpage.ui:101
+#: sw/uiconfig/swriter/ui/flddbpage.ui:106
msgctxt "flddbpage|label1"
msgid "_Type"
msgstr "Tyyppi"
#. EdyCS
-#: sw/uiconfig/swriter/ui/flddbpage.ui:130
+#: sw/uiconfig/swriter/ui/flddbpage.ui:135
msgctxt "flddbpage|label5"
msgid "_Condition"
msgstr "Ehto"
+#. AoBvb
+#: sw/uiconfig/swriter/ui/flddbpage.ui:152
+msgctxt "flddbpage|extended_tip|condition"
+msgid "For fields linked to a condition, enter the criteria here."
+msgstr "Ehtoon linkitettäville kentille annetaan peruste tässä."
+
+#. 8Xd25
+#: sw/uiconfig/swriter/ui/flddbpage.ui:179
+msgctxt "flddbpage|extended_tip|recnumber"
+msgid "Enter the number of the record that you want to insert when the condition that you specify is met."
+msgstr "Annetaan ehdon täyttyessä lisättävän tietueen numero."
+
#. WnvGZ
-#: sw/uiconfig/swriter/ui/flddbpage.ui:177
+#: sw/uiconfig/swriter/ui/flddbpage.ui:192
msgctxt "flddbpage|label4"
msgid "Record number"
msgstr "Tietueen numero"
-#. TUHAR
-#: sw/uiconfig/swriter/ui/flddbpage.ui:277
+#. 6LT6q
+#: sw/uiconfig/swriter/ui/flddbpage.ui:283
+msgctxt "flddbpage|extended_tip|select"
+msgid "Select the database table or the database query that you want the field to refer to."
+msgstr "Valitaan tietokannan taulu tai tietokantakysely, jonka tietueisiin kentät viittaavat."
+
+#. BfZZA
+#: sw/uiconfig/swriter/ui/flddbpage.ui:296
msgctxt "flddbpage|label2"
-msgid "Database s_election"
-msgstr "Tietokantavalinta"
+msgid "Database S_election"
+msgstr ""
#. JeBVb
-#: sw/uiconfig/swriter/ui/flddbpage.ui:302
+#: sw/uiconfig/swriter/ui/flddbpage.ui:321
msgctxt "flddbpage|browseft"
msgid "Add database file"
msgstr "Lisää tietokantatiedosto"
#. qGJaf
-#: sw/uiconfig/swriter/ui/flddbpage.ui:314
+#: sw/uiconfig/swriter/ui/flddbpage.ui:333
msgctxt "flddbpage|browse"
msgid "Browse..."
msgstr "Selaa..."
+#. FnCPc
+#: sw/uiconfig/swriter/ui/flddbpage.ui:339
+msgctxt "flddbpage|extended_tip|browse"
+msgid "Opens a file open dialog where you can select a database file (*.odb). The selected file is added to the Databases Selection list."
+msgstr "Avataan tiedoston avaamiseen ikkuna, jossa voidaan valita tietokantatiedosto (*.odb). Valittu tiedosto lisätään Tietokantavalinta-luetteloon."
+
#. n7J6N
-#: sw/uiconfig/swriter/ui/flddbpage.ui:353
+#: sw/uiconfig/swriter/ui/flddbpage.ui:377
msgctxt "flddbpage|fromdatabasecb"
msgid "From database"
msgstr "Tietokannasta"
+#. VB696
+#: sw/uiconfig/swriter/ui/flddbpage.ui:387
+msgctxt "flddbpage|extended_tip|fromdatabasecb"
+msgid "Uses the format defined in the selected database."
+msgstr "Käytetään valitussa tietokannassa määritettyä muotoilua."
+
#. 2eALF
-#: sw/uiconfig/swriter/ui/flddbpage.ui:370
+#: sw/uiconfig/swriter/ui/flddbpage.ui:399
msgctxt "flddbpage|userdefinedcb"
msgid "User-defined"
msgstr "Käyttäjän määrittämä"
-#. LFxBU
+#. ExYpF
+#: sw/uiconfig/swriter/ui/flddbpage.ui:412
+msgctxt "flddbpage|extended_tip|userdefinedcb"
+msgid "Applies the format that you select in the List of user-defined formats."
+msgstr "Käytetään käyttäjän määrittämien muotoilujen luettelosta valittua muotoilua."
+
+#. FRBDf
#: sw/uiconfig/swriter/ui/flddbpage.ui:432
+msgctxt "flddbpage|extended_tip|format"
+msgid "Lists the available user-defined formats."
+msgstr ""
+
+#. mY32p
+#: sw/uiconfig/swriter/ui/flddbpage.ui:452
+msgctxt "flddbpage|extended_tip|numformat"
+msgid "Lists the available user-defined formats."
+msgstr ""
+
+#. LFxBU
+#: sw/uiconfig/swriter/ui/flddbpage.ui:476
msgctxt "flddbpage|label3"
msgid "Format"
msgstr "Muotoilu"
+#. t94px
+#: sw/uiconfig/swriter/ui/flddocinfopage.ui:82
+msgctxt "flddocinfopage|extended_tip|type"
+msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
+msgstr "Luettelossa on saatavilla olevat kenttien tyypit. Kentän lisäämiseksi asiakirjaan, napsautetaan kentän tyyppiä, napsautetaan kenttää Valitse-luettelossa ja napsautetaan sitten Lisää-painiketta."
+
#. 5B97z
-#: sw/uiconfig/swriter/ui/flddocinfopage.ui:91
+#: sw/uiconfig/swriter/ui/flddocinfopage.ui:95
msgctxt "flddocinfopage|label1"
msgid "_Type"
msgstr "Tyyppi"
-#. jT7yX
-#: sw/uiconfig/swriter/ui/flddocinfopage.ui:160
+#. GAgPa
+#: sw/uiconfig/swriter/ui/flddocinfopage.ui:156
+msgctxt "flddocinfopage|extended_tip|select"
+msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
+msgstr "Luettelossa on saatavilla olevat Tyyppi-luettelosta valitun kenttätyypin kentät. Kentän lisäämiseksi napsautetaan ensin kenttää ja napsautetaan sitten Lisää-painiketta."
+
+#. xAe8o
+#: sw/uiconfig/swriter/ui/flddocinfopage.ui:169
msgctxt "flddocinfopage|label2"
-msgid "S_elect"
-msgstr "Valitse"
+msgid "_Select"
+msgstr ""
-#. q97LZ
+#. oGvBL
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:237
+msgctxt "flddocinfopage|extended_tip|format"
+msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
+msgstr "Napsautetaan valitussa kentässä käytettävää muotoilua tai napsautetaan \"Lisämuotoilut\"-riviä muotoilun mukauttamiseksi."
+
+#. yAc6z
+#: sw/uiconfig/swriter/ui/flddocinfopage.ui:251
msgctxt "flddocinfopage|fixed"
-msgid "_Fixed content"
-msgstr "Kiinteä sisältö"
+msgid "Fi_xed content"
+msgstr ""
+
+#. BojDo
+#: sw/uiconfig/swriter/ui/flddocinfopage.ui:260
+msgctxt "flddocinfopage|extended_tip|fixed"
+msgid "Inserts the field as static content, that is, the field cannot be updated."
+msgstr "Lisätään kenttä muuttumattomin sisällöin, eli kenttää ei voi päivittää."
-#. Djee2
-#: sw/uiconfig/swriter/ui/flddocinfopage.ui:259
+#. 3JnCq
+#: sw/uiconfig/swriter/ui/flddocinfopage.ui:278
msgctxt "flddocinfopage|label3"
-msgid "F_ormat"
-msgstr "Muotoilu"
+msgid "_Format"
+msgstr ""
+
+#. BmH6G
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:103
+msgctxt "flddocumentpage|extended_tip|type"
+msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
+msgstr "Luettelossa on saatavilla olevat kenttien tyypit. Kentän lisäämiseksi asiakirjaan, napsautetaan kentän tyyppiä, napsautetaan kenttää Valitse-luettelossa ja napsautetaan sitten Lisää-painiketta."
#. pmEvX
-#: sw/uiconfig/swriter/ui/flddocumentpage.ui:111
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:116
msgctxt "flddocumentpage|label1"
msgid "_Type"
msgstr "Tyyppi"
-#. SNFfD
-#: sw/uiconfig/swriter/ui/flddocumentpage.ui:180
+#. dfKEF
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:177
+msgctxt "flddocumentpage|extended_tip|select"
+msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
+msgstr "Luettelossa on saatavilla olevat Tyyppi-luettelosta valitun kenttätyypin kentät. Kentän lisäämiseksi napsautetaan ensin kenttää ja napsautetaan sitten Lisää-painiketta."
+
+#. hnWF4
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:190
msgctxt "flddocumentpage|label2"
-msgid "S_elect"
-msgstr "Valitse"
+msgid "_Select"
+msgstr ""
+
+#. xtXnr
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:266
+msgctxt "flddocumentpage|extended_tip|format"
+msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
+msgstr "Napsautetaan valitussa kentässä käytettävää muotoilua tai napsautetaan \"Lisämuotoilut\"-riviä muotoilun mukauttamiseksi."
-#. PDWxq
-#: sw/uiconfig/swriter/ui/flddocumentpage.ui:311
+#. DXvK2
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:326
msgctxt "flddocumentpage|label3"
-msgid "F_ormat"
-msgstr "Muotoilu"
+msgid "_Format"
+msgstr ""
-#. tQodx
-#: sw/uiconfig/swriter/ui/flddocumentpage.ui:327
+#. k7KnK
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:342
msgctxt "flddocumentpage|fixed"
-msgid "_Fixed content"
-msgstr "Kiinteä sisältö"
+msgid "Fi_xed content"
+msgstr ""
+
+#. TjKiH
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:351
+msgctxt "flddocumentpage|extended_tip|fixed"
+msgid "Inserts the field as static content, that is, the field cannot be updated."
+msgstr "Lisätään kenttä muuttumattomin sisällöin, eli kenttää ei voi päivittää."
-#. CJVfj
-#: sw/uiconfig/swriter/ui/flddocumentpage.ui:349
+#. A7VDm
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:369
msgctxt "flddocumentpage|levelft"
-msgid "Level"
+msgid "_Level"
msgstr ""
-#. j7fjs
+#. VX38D
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:386
+msgctxt "flddocumentpage|extended_tip|level"
+msgid "Select the chapter heading level that you want to include in the selected field."
+msgstr "Valitaan luvun otsikkotaso, joka sisällytetään valittuun kenttään."
+
+#. PjBqv
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:403
+msgctxt "flddocumentpage|extended_tip|offset"
+msgid "Enter the offset that you want to apply to a date or time field."
+msgstr "Annetaan päivämäärä- tai kellonaikakentissä käytetty poikkeutus."
+
+#. j7fjs
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:416
msgctxt "flddocumentpage|daysft"
msgid "Offs_et in days"
msgstr "Siirtymä päivinä"
#. QRcQF
-#: sw/uiconfig/swriter/ui/flddocumentpage.ui:400
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:430
msgctxt "flddocumentpage|minutesft"
msgid "Offs_et in minutes"
msgstr "Siirtymä minuutteina"
#. mENqn
-#: sw/uiconfig/swriter/ui/flddocumentpage.ui:425
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:455
msgctxt "flddocumentpage|valueft"
msgid "_Value"
msgstr "Arvo"
+#. GbjDM
+#: sw/uiconfig/swriter/ui/flddocumentpage.ui:472
+msgctxt "flddocumentpage|extended_tip|value"
+msgid "Enter the offset value that you want to apply to a page number field, for example \"+1\"."
+msgstr "Annetaan poikkeutusarvo, jota käytetään sivunumerokentässä, esimerkiksi \"+1\"."
+
+#. DMTgW
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:84
+msgctxt "fldfuncpage|extended_tip|type"
+msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
+msgstr "Luettelossa on saatavilla olevat kenttien tyypit. Kentän lisäämiseksi asiakirjaan, napsautetaan kentän tyyppiä, napsautetaan kenttää Valitse-luettelossa ja napsautetaan sitten Lisää-painiketta."
+
#. GvXix
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:100
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:97
msgctxt "fldfuncpage|label1"
msgid "_Type"
msgstr "Tyyppi"
-#. m9TLn
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:170
+#. vSCUW
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:167
msgctxt "fldfuncpage|label4"
-msgid "S_elect"
-msgstr "Valitse"
+msgid "_Select"
+msgstr ""
-#. 8Gwjn
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:240
+#. b3UqC
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:229
+msgctxt "fldfuncpage|extended_tip|format"
+msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
+msgstr "Napsautetaan valitussa kentässä käytettävää muotoilua tai napsautetaan \"Lisämuotoilut\"-riviä muotoilun mukauttamiseksi."
+
+#. AYXG3
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:242
msgctxt "fldfuncpage|label2"
-msgid "F_ormat"
-msgstr "Muotoilu"
+msgid "_Format"
+msgstr ""
#. CGoTS
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:264
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:266
msgctxt "fldfuncpage|macro"
msgid "_Macro..."
msgstr "Makro..."
+#. pHLUT
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:274
+msgctxt "fldfuncpage|extended_tip|macro"
+msgid "Opens the Macro Selector, where you can choose the macro that will run when you click the selected field in the document."
+msgstr "Avataan Makron valinta, jossa voidaan valita kenttää napsautettaessa asiakirjassa suoritettava makro."
+
#. cyE7z
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:286
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:293
msgctxt "fldfuncpage|valueft"
msgid "_Value"
msgstr "Arvo"
+#. wUCw8
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:311
+msgctxt "fldfuncpage|extended_tip|value"
+msgid "Sets additional function parameters for fields. The type of parameter depends on the field type that you select."
+msgstr ""
+
#. Wm4pw
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:324
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:336
msgctxt "fldfuncpage|nameft"
msgid "Na_me"
msgstr "Nimi"
#. KyA2D
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:362
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:374
msgctxt "fldfuncpage|cond1ft"
msgid "Then"
msgstr "Sitten"
+#. bByDc
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:392
+msgctxt "fldfuncpage|extended_tip|cond1"
+msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box."
+msgstr ""
+
#. VjhuY
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:399
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:416
msgctxt "fldfuncpage|cond2ft"
msgid "Else"
msgstr "Muutoin"
+#. EACKA
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:434
+msgctxt "fldfuncpage|extended_tip|cond2"
+msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box."
+msgstr ""
+
#. ALCUE
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:442
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:464
msgctxt "fldfuncpage|itemft"
msgid "It_em"
msgstr "Kohta"
+#. zERBz
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:482
+msgctxt "fldfuncpage|extended_tip|item"
+msgid "Enter a new item."
+msgstr "Kirjoitetaan uusi kohta."
+
+#. F6LmM
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:507
+msgctxt "fldfuncpage|extended_tip|add"
+msgid "Adds the Item to the list."
+msgstr "Lisätään kohta listalle."
+
#. 4KX6H
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:493
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:525
msgctxt "fldfuncpage|listitemft"
msgid "Items on _list"
msgstr "Kohdat listassa"
+#. KegJr
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:568
+msgctxt "fldfuncpage|extended_tip|listitems"
+msgid "Lists the items. The topmost item is shown in the document."
+msgstr "Kohtien lista näkyy tässä. Ylin kohta näkyy asiakirjassa."
+
+#. 2GZLS
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:597
+msgctxt "fldfuncpage|extended_tip|remove"
+msgid "Removes the selected item from the list."
+msgstr "Poistetaan valittu kohde listalta."
+
#. 4oMDF
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:567
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:609
msgctxt "fldfuncpage|up"
msgid "Move _Up"
msgstr "Siirrä ylemmäs"
+#. JwuHf
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:616
+msgctxt "fldfuncpage|extended_tip|up"
+msgid "Moves the selected item up in the list."
+msgstr "Painikkeella siirretään valittua kohdetta listalla ylöspäin."
+
#. 5EA2P
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:581
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:628
msgctxt "fldfuncpage|down"
msgid "Move Do_wn"
msgstr "Siirrä alemmas"
+#. 8tg3f
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:635
+msgctxt "fldfuncpage|extended_tip|down"
+msgid "Moves the selected item down in the list."
+msgstr "Painikkeella siirretään valittua kohdetta listalla alaspäin."
+
#. 52SQ6
-#: sw/uiconfig/swriter/ui/fldfuncpage.ui:608
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:660
msgctxt "fldfuncpage|listnameft"
msgid "Na_me"
msgstr "Nimi"
+#. QGMno
+#: sw/uiconfig/swriter/ui/fldfuncpage.ui:678
+msgctxt "fldfuncpage|extended_tip|listname"
+msgid "Enter a unique name for the Input list."
+msgstr "Annetaan valintaluettelolle yksilöllinen nimi."
+
+#. knXRc
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:106
+msgctxt "fldrefpage|extended_tip|type"
+msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Selection list, and then click Insert."
+msgstr "Luettelossa on saatavilla olevat kenttätyypit. Viitekentän lisäämiseksi asiakirjaan napsautetaan kentän tyyppiä, napsautetaan Valinta-luettelossa kohdekenttää, valitaan viitteen esitystapa ja lopuksi napsautetaan Lisää-painiketta"
+
#. xiiPJ
-#: sw/uiconfig/swriter/ui/fldrefpage.ui:114
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:119
msgctxt "fldrefpage|label1"
msgid "_Type"
msgstr "Tyyppi"
+#. vhEDd
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:180
+msgctxt "fldrefpage|extended_tip|format"
+msgid "Select the format that you want to use for the selected reference field."
+msgstr "Valitaan valitussa viitekentässä käytettävä esitystapa."
+
#. FGEEw
-#: sw/uiconfig/swriter/ui/fldrefpage.ui:183
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:193
msgctxt "fldrefpage|label3"
msgid "Insert _reference to"
msgstr "Lisää viite kohteeseen"
#. bjLoy
-#: sw/uiconfig/swriter/ui/fldrefpage.ui:227
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:237
msgctxt "fldrefpage|label4"
msgid "Selection"
msgstr "Valinta"
#. kRzkp
-#: sw/uiconfig/swriter/ui/fldrefpage.ui:250
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:260
msgctxt "fldrefpage|filter"
msgid "Filter Selection"
msgstr "Suodattimen valinta"
+#. jJX5W
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:326
+msgctxt "fldrefpage|extended_tip|selecttip"
+msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click Insert."
+msgstr ""
+
+#. BFEfh
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:371
+msgctxt "fldrefpage|extended_tip|select"
+msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click Insert."
+msgstr ""
+
#. AXSpR
-#: sw/uiconfig/swriter/ui/fldrefpage.ui:370
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:390
msgctxt "fldrefpage|label2"
msgid "S_election"
msgstr "Valinta"
#. 49DaT
-#: sw/uiconfig/swriter/ui/fldrefpage.ui:397
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:417
msgctxt "fldrefpage|valueft"
msgid "_Value"
msgstr "Arvo"
+#. w3coQ
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:436
+msgctxt "fldrefpage|extended_tip|value"
+msgid "Enter the contents that you want to add to a user-defined fields."
+msgstr "Ruudussa näkyy käyttäjäkenttään lisättävä sisältö."
+
#. FyGMM
-#: sw/uiconfig/swriter/ui/fldrefpage.ui:424
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:449
msgctxt "fldrefpage|nameft"
msgid "Na_me"
msgstr "Nimi"
+#. oQ5CV
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:467
+msgctxt "fldrefpage|extended_tip|name"
+msgid "Type the name of the user-defined field that you want to create."
+msgstr "Kirjoitetaan luotavan käyttäjän määrittämän kentän nimi."
+
+#. NYEnx
+#: sw/uiconfig/swriter/ui/fldrefpage.ui:499
+msgctxt "fldrefpage|extended_tip|FieldRefPage"
+msgid "This is where you insert the references or referenced fields into the current document. References are referenced fields within the same document or within sub-documents of a master document."
+msgstr "Tässä lisätään viitteet tai viitekentät käsiteltävään asiakirjaan. Viitteet ovat viitekenttiä saman asiakirjan tai perusasiakirjan osa-asiakirjan sisällä."
+
+#. EMeve
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:111
+msgctxt "fldvarpage|extended_tip|type"
+msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
+msgstr "Luettelossa on saatavilla olevat kenttien tyypit. Kentän lisäämiseksi asiakirjaan, napsautetaan kentän tyyppiä, napsautetaan kenttää Valitse-luettelossa ja napsautetaan sitten Lisää-painiketta."
+
#. MYGxL
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:119
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:124
msgctxt "fldvarpage|label1"
msgid "_Type"
msgstr "Tyyppi"
-#. HY4FY
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:203
+#. YfUrq
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:200
+msgctxt "fldvarpage|extended_tip|select"
+msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
+msgstr "Luettelossa on saatavilla olevat Tyyppi-luettelosta valitun kenttätyypin kentät. Kentän lisäämiseksi napsautetaan ensin kenttää ja napsautetaan sitten Lisää-painiketta."
+
+#. JFbpp
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:213
msgctxt "fldvarpage|label2"
-msgid "S_elect"
-msgstr "Valitse"
+msgid "_Select"
+msgstr ""
+
+#. ZuuQf
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:305
+msgctxt "fldvarpage|extended_tip|numformat"
+msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
+msgstr "Napsautetaan valitussa kentässä käytettävää muotoilua tai napsautetaan \"Lisämuotoilut\"-riviä muotoilun mukauttamiseksi."
-#. cpbP3
+#. xFAmF
#: sw/uiconfig/swriter/ui/fldvarpage.ui:350
+msgctxt "fldvarpage|extended_tip|format"
+msgid "In the Format list, define if the value is inserted as text or a number."
+msgstr "Muotoilu-luettelossa määritetään lisätäänkö arvo tekstinä vai numerona."
+
+#. WRjtn
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:370
msgctxt "fldvarpage|label3"
-msgid "F_ormat"
-msgstr "Muotoilu"
+msgid "_Format"
+msgstr ""
#. qPpKb
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:367
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:387
msgctxt "fldvarpage|invisible"
msgid "Invisi_ble"
msgstr "Näkymätön"
+#. 4SBL9
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:396
+msgctxt "fldvarpage|extended_tip|invisible"
+msgid "Hides the field contents in the document."
+msgstr ""
+
#. hapyp
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:405
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:430
msgctxt "fldvarpage|label5"
msgid "_Level"
msgstr "Taso"
-#. KVCWm
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:418
+#. tLcUz
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:443
msgctxt "fldvarpage|separatorft"
-msgid "_Separator"
+msgid "Se_parator"
msgstr "Erotin"
#. wrAG3
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:458
msgctxt "fldvarpage|level"
msgid "None"
msgstr "Ei mitään"
+#. g5LQE
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:462
+msgctxt "fldvarpage|extended_tip|level"
+msgid "Choose the heading or chapter level at which to restart numbering in the document."
+msgstr "Valitaan asiakirjan otsikko- tai lukutaso, josta numerointi aloitetaan uudestaan."
+
#. ECBav
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:447
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:477
msgctxt "fldvarpage|separator"
msgid "."
msgstr "."
+#. srMN9
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:480
+msgctxt "fldvarpage|extended_tip|separator"
+msgid "Type the character that you want to use as a separator between the heading or chapter levels."
+msgstr "Annetaan otsikko- tai lukutasoilla käytettävä erotinmerkki."
+
#. cVMoJ
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:462
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:497
msgctxt "fldvarpage|label4"
msgid "Numbering by Chapter"
msgstr "Numerointi luvuittain"
#. ibirK
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:501
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:536
msgctxt "fldvarpage|nameft"
msgid "Na_me"
msgstr "Nimi"
+#. JdsEc
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:554
+msgctxt "fldvarpage|extended_tip|name"
+msgid "Type the name of the user-defined field that you want to create."
+msgstr "Kirjoitetaan luotavan käyttäjän määrittämän kentän nimi."
+
#. 5qBE2
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:527
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:567
msgctxt "fldvarpage|valueft"
msgid "_Value"
msgstr "Arvo"
+#. Gvpef
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:586
+msgctxt "fldvarpage|extended_tip|value"
+msgid "Enter the contents that you want to add to a user-defined field."
+msgstr "Annetaan käyttäjäkenttään lisättävä sisältö."
+
#. BLiKH
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:561
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:606
msgctxt "fldvarpage|apply|tooltip_text"
msgid "Apply"
msgstr "Käytä"
+#. iLGxP
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:611
+msgctxt "fldvarpage|extended_tip|apply"
+msgid "Adds the user-defined field to the Select list."
+msgstr ""
+
#. GKfDe
-#: sw/uiconfig/swriter/ui/fldvarpage.ui:575
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:625
msgctxt "fldvarpage|delete|tooltip_text"
msgid "Delete"
msgstr "Poista"
+#. bGYju
+#: sw/uiconfig/swriter/ui/fldvarpage.ui:630
+msgctxt "fldvarpage|extended_tip|delete"
+msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
+msgstr ""
+
#. 27v8z
#: sw/uiconfig/swriter/ui/floatingnavigation.ui:35
msgctxt "floatingnavigation|ST_TBL"
@@ -11321,7 +14526,7 @@ msgid "Synchronize"
msgstr "Synkronoi"
#. ooBrL
-#: sw/uiconfig/swriter/ui/floatingsync.ui:37
+#: sw/uiconfig/swriter/ui/floatingsync.ui:34
msgctxt "floatingsync|sync"
msgid "Synchronize Labels"
msgstr "Synkronoi osoitetarrat"
@@ -11350,84 +14555,150 @@ msgctxt "footnoteareapage|maxheightpage"
msgid "_Not larger than page area"
msgstr "E_i sivualuetta suurempi"
+#. GSJFc
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:77
+msgctxt "footnoteareapage|extended_tip|maxheightpage"
+msgid "Automatically adjusts the height of the footnote area depending on the number of footnotes."
+msgstr ""
+
#. FA6CC
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:84
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:89
msgctxt "footnoteareapage|maxheight"
msgid "Maximum footnote _height"
msgstr "Ala_viitteen korkeus enintään"
+#. bC7yH
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:103
+msgctxt "footnoteareapage|extended_tip|maxheight"
+msgid "Sets a maximum height for the footnote area. Enable this option, then enter the height."
+msgstr ""
+
#. YKAGh
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:107
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:117
msgctxt "footnoteareapage|label3"
msgid "Space to text"
msgstr "Etäisyys tekstistä"
+#. 3gM96
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:138
+msgctxt "footnoteareapage|extended_tip|spacetotext"
+msgid "Enter the amount of space to leave between the bottom page margin and the first line of text in the footnote area."
+msgstr ""
+
+#. BEuKg
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:161
+msgctxt "footnoteareapage|extended_tip|maxheightsb"
+msgid "Enter the maximum height for the footnote area."
+msgstr ""
+
#. G6Dar
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:156
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:178
msgctxt "footnoteareapage|label1"
msgid "Footnote Area"
msgstr "Alaviitealue"
#. nD6YA
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:195
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:217
msgctxt "footnoteareapage|label4"
msgid "_Position"
msgstr "_Sijainti"
#. fzkPB
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:210
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:232
msgctxt "footnoteareapage|label5"
msgid "_Style"
msgstr "Tyyl_i"
#. 7X5cr
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:225
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:247
msgctxt "footnoteareapage|label6"
msgid "_Thickness"
msgstr "Paksuus"
#. myPFY
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:240
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:262
msgctxt "footnoteareapage|label7"
msgid "_Color"
msgstr "V_äri"
#. xdT9F
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:255
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:277
msgctxt "footnoteareapage|label8"
msgid "_Length"
msgstr "_Pituus"
#. F3nWG
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:270
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:292
msgctxt "footnoteareapage|label9"
msgid "_Spacing to footnote contents"
msgstr "_Etäisyys alaviitteiden sisällöstä"
#. uZuEN
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:287
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:309
msgctxt "footnoteareapage|position"
msgid "Left"
msgstr "Vasen"
#. dqnpa
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:288
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:310
msgctxt "footnoteareapage|position"
msgid "Centered"
msgstr "Keskitetty"
#. eMfVA
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:289
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:311
msgctxt "footnoteareapage|position"
msgid "Right"
msgstr "Oikea"
+#. WGvV6
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:315
+msgctxt "footnoteareapage|extended_tip|position"
+msgid "Select the horizontal alignment for the line that separates the main text from the footnote area."
+msgstr ""
+
+#. sD8YC
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:339
+msgctxt "footnoteareapage|extended_tip|style"
+msgid "Select the formatting style for the separator line. If you do not want a separator line, choose \"None\"."
+msgstr ""
+
+#. aHwK5
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:363
+msgctxt "footnoteareapage|extended_tip|color"
+msgid "Select the color of the separator line."
+msgstr ""
+
+#. vJxuj
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:382
+msgctxt "footnoteareapage|extended_tip|length"
+msgid "Enter the length of the separator line as a percentage of the page width area."
+msgstr ""
+
+#. FBKJE
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:402
+msgctxt "footnoteareapage|extended_tip|spacingtocontents"
+msgid "Enter the amount of space to leave between the separator line and the first line of the footnote area."
+msgstr ""
+
+#. Fnt7q
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:422
+msgctxt "footnoteareapage|extended_tip|thickness"
+msgid "Select the thickness of the separator line."
+msgstr ""
+
#. bUbrX
-#: sw/uiconfig/swriter/ui/footnoteareapage.ui:384
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:439
msgctxt "footnoteareapage|label2"
msgid "Separator Line"
msgstr "Erotinviiva"
+#. vxKGo
+#: sw/uiconfig/swriter/ui/footnoteareapage.ui:454
+msgctxt "footnoteareapage|extended_tip|FootnoteAreaPage"
+msgid "Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document."
+msgstr ""
+
#. PAqDe
#: sw/uiconfig/swriter/ui/footnotepage.ui:40
msgctxt "footnotepage|label6"
@@ -11470,168 +14741,337 @@ msgctxt "footnotepage|pospagecb"
msgid "End of page"
msgstr "Sivun loppuun"
+#. zqfGN
+#: sw/uiconfig/swriter/ui/footnotepage.ui:123
+msgctxt "footnotepage|extended_tip|pospagecb"
+msgid "Displays footnotes at the bottom of the page."
+msgstr "Alaviitteet esitetään sivun alaosassa."
+
#. 8zwoB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:129
+#: sw/uiconfig/swriter/ui/footnotepage.ui:134
msgctxt "footnotepage|posdoccb"
msgid "End of document"
msgstr "Asiakirjan loppuun"
+#. xvD3V
+#: sw/uiconfig/swriter/ui/footnotepage.ui:147
+msgctxt "footnotepage|extended_tip|posdoccb"
+msgid "Displays footnotes at the end of the document as endnotes."
+msgstr "Alaviitteet esitetään asiakirjan lopussa erillisenä loppuviitesarjanaan."
+
+#. BGVTw
+#: sw/uiconfig/swriter/ui/footnotepage.ui:164
+msgctxt "footnotepage|extended_tip|offsetnf"
+msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box."
+msgstr "Annetaan asiakirjan ensimmäisen alaviitteen numero. Tämä vaihtoehto on saatavilla vain, jos Lasketaan-ruudussa on valittu \"Asiakirjassa\"."
+
#. RWgzD
-#: sw/uiconfig/swriter/ui/footnotepage.ui:163
+#: sw/uiconfig/swriter/ui/footnotepage.ui:178
msgctxt "footnotepage|liststore1"
msgid "Per page"
msgstr "Sivulla"
#. MELvZ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:164
+#: sw/uiconfig/swriter/ui/footnotepage.ui:179
msgctxt "footnotepage|liststore1"
msgid "Per chapter"
msgstr "Luvussa"
#. oD7zV
-#: sw/uiconfig/swriter/ui/footnotepage.ui:165
+#: sw/uiconfig/swriter/ui/footnotepage.ui:180
msgctxt "footnotepage|liststore1"
msgid "Per document"
msgstr "Asiakirjassa"
-#. Gzv4E
+#. BDrKx
+#: sw/uiconfig/swriter/ui/footnotepage.ui:184
+msgctxt "footnotepage|extended_tip|countinglb"
+msgid "Select the numbering option for the footnotes."
+msgstr "Valitaan alaviitteen numerointivaihtoehto."
+
+#. 7GqFA
+#: sw/uiconfig/swriter/ui/footnotepage.ui:200
+msgctxt "footnotepage|extended_tip|prefix"
+msgid "Enter the text that you want to display in front of the footnote number in the note text."
+msgstr "Annetaan teksti, joka näkyy alaviitteen numeron edellä viitetekstissä."
+
+#. 7rE4w
#: sw/uiconfig/swriter/ui/footnotepage.ui:216
+msgctxt "footnotepage|extended_tip|suffix"
+msgid "Enter the text that you want to display after the footnote number in the note text."
+msgstr "Annetaan teksti, joka näkyy alaviitteen numeron jälkeen viitetekstissä."
+
+#. wXK75
+#: sw/uiconfig/swriter/ui/footnotepage.ui:231
+msgctxt "footnotepage|extended_tip|numberinglb"
+msgid "Select the numbering style that you want to use."
+msgstr "Valitaan käytettävä numerointityyli."
+
+#. Gzv4E
+#: sw/uiconfig/swriter/ui/footnotepage.ui:251
msgctxt "footnotepage|label3"
msgid "Autonumbering"
msgstr "Automaattinen numerointi"
#. NRpEM
-#: sw/uiconfig/swriter/ui/footnotepage.ui:252
+#: sw/uiconfig/swriter/ui/footnotepage.ui:287
msgctxt "footnotepage|label17"
msgid "End of footnote"
msgstr "Alaviitteen loppu"
#. cQefG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:264
+#: sw/uiconfig/swriter/ui/footnotepage.ui:299
msgctxt "footnotepage|label18"
msgid "Start of next page"
msgstr "Seuraavan sivun aloitus"
+#. 6FoaF
+#: sw/uiconfig/swriter/ui/footnotepage.ui:316
+msgctxt "footnotepage|extended_tip|contfromed"
+msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". %PRODUCTNAME Writer automatically inserts the number of the previous page."
+msgstr "Annetaan teksti, joka näkyy sivulla, jonne alaviitteet jatkuvat, esimerkiksi \"Jatkoa sivulta \". %PRODUCTNAME Writer lisää automaattisesti edellisen sivun numeron."
+
+#. PM3nD
+#: sw/uiconfig/swriter/ui/footnotepage.ui:334
+#, fuzzy
+msgctxt "footnotepage|extended_tip|conted"
+msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". %PRODUCTNAME Writer automatically inserts the number of the following page."
+msgstr "Annetaan teksti, joka näkyy, kun alaviitteet jatkuvat seuraavalle sivulle, esimerkiksi \"Jatkuu sivulla \". %PRODUCTNAME Writer lisää automaattisesti seuraavan sivun numeron. "
+
#. ZEhG2
-#: sw/uiconfig/swriter/ui/footnotepage.ui:306
+#: sw/uiconfig/swriter/ui/footnotepage.ui:351
msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Jatkoilmoitus"
#. jHwyG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:340
+#: sw/uiconfig/swriter/ui/footnotepage.ui:385
msgctxt "footnotepage|label4"
msgid "Paragraph"
msgstr "Kappale"
#. 95fCg
-#: sw/uiconfig/swriter/ui/footnotepage.ui:352
+#: sw/uiconfig/swriter/ui/footnotepage.ui:397
msgctxt "footnotepage|pagestyleft"
msgid "Page"
msgstr "Sivu"
+#. RFDnB
+#: sw/uiconfig/swriter/ui/footnotepage.ui:412
+msgctxt "footnotepage|extended_tip|parastylelb"
+msgid "Select the paragraph style for the footnote text. Only special styles can be selected."
+msgstr ""
+
+#. bhosj
+#: sw/uiconfig/swriter/ui/footnotepage.ui:428
+msgctxt "footnotepage|extended_tip|pagestylelb"
+msgid "Select the page style that you want to use for footnotes."
+msgstr "Valitaan alaviitteille käytettävä sivutyyli."
+
+#. ESqR9
+#: sw/uiconfig/swriter/ui/footnotepage.ui:444
+msgctxt "footnotepage|extended_tip|charanchorstylelb"
+msgid "Select the character style that you want to use for footnote anchors in the text area of your document."
+msgstr "Valitaan merkkityyli, jota käytetään alaviitteen ankkurissa asiakirjan tekstialueella."
+
+#. EfWvJ
+#: sw/uiconfig/swriter/ui/footnotepage.ui:460
+msgctxt "footnotepage|extended_tip|charstylelb"
+msgid "Select the character style that you want to use for the footnote numbers in the footnote area."
+msgstr "Valitaan merkkityyli, jota käytetään alaviitteen numerolle alaviitealueella."
+
#. ZP5bQ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:408
+#: sw/uiconfig/swriter/ui/footnotepage.ui:473
msgctxt "footnotepage|label15"
msgid "Text area"
msgstr "Tekstialue"
#. aYFwJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:420
+#: sw/uiconfig/swriter/ui/footnotepage.ui:485
msgctxt "footnotepage|label16"
msgid "Footnote area"
msgstr "Alaviitealue"
#. j8ZuF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:436
+#: sw/uiconfig/swriter/ui/footnotepage.ui:501
msgctxt "footnotepage|label12"
msgid "Styles"
msgstr "Tyylit"
+#. soD9k
+#: sw/uiconfig/swriter/ui/footnotepage.ui:515
+msgctxt "footnotepage|extended_tip|FootnotePage"
+msgid "Specifies the formatting for footnotes."
+msgstr ""
+
#. MV5EC
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Aloita numerointi uudestaan"
+#. iDDoD
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:65
+msgctxt "footnotesendnotestabpage|extended_tip|ftnntnum"
+msgid "Restarts the footnote numbering at the number that you specify."
+msgstr "Aloitetaan alaviitteiden numerointi määritettävästä numerosta uudestaan."
+
+#. Buptq
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:89
+msgctxt "footnotesendnotestabpage|extended_tip|ftnoffset"
+msgid "Enter the number that you want to assign the footnote."
+msgstr "Määrätään loppuviitteelle aloitusnumero."
+
#. GVtFs
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:103
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Aloitus:"
#. kCEFz
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:121
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Mukautettu muoto"
+#. qkpCB
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:152
+msgctxt "footnotesendnotestabpage|extended_tip|ftnsuffix"
+msgid "Enter the text that you want to display after the footnote number."
+msgstr "Annetaan teksti, joka tulee näkymään alaviitenumeron jälkeen."
+
#. JzjqC
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:165
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Jälkeen:"
+#. 5FUmu
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:181
+msgctxt "footnotesendnotestabpage|extended_tip|ftnnumviewbox"
+msgid "Select the numbering style for the footnotes."
+msgstr "Valitaan alaviitteiden numerointityyli."
+
+#. 7RJB2
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+msgctxt "footnotesendnotestabpage|extended_tip|ftnprefix"
+msgid "Enter the text that you want to display in front of the footnote number."
+msgstr "Annetaan teksti, joka tulee näkymään alaviitenumeron edessä."
+
#. MFBgR
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:213
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Ennen:"
#. ovwSj
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:237
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Kerää tekstin loppuun"
+#. uTqgF
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:247
+msgctxt "footnotesendnotestabpage|extended_tip|ftnntattextend"
+msgid "Adds footnotes at the end of the section. If the section spans more than one page, the footnotes are added to the bottom of the page on which the footnote anchors appear."
+msgstr "Lisätään alaviitteet osan loppuun. Jos sivu ulottuu useammalle sivulle, alaviitteet lisätään aina sen sivun alaosaan, jolla alaviitteiden ankkurit esiintyvät."
+
#. J8Vb4
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:264
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Alaviitteet"
#. AUkwM
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:301
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Kerää osan loppuun"
+#. KH5Xn
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:311
+msgctxt "footnotesendnotestabpage|extended_tip|endntattextend"
+msgid "Adds endnotes at the end of the section."
+msgstr "Lisätään loppuviitteet osan loppuun."
+
#. KFFRg
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:330
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Aloita numerointi uudestaan"
+#. DjWbC
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:340
+msgctxt "footnotesendnotestabpage|extended_tip|endntnum"
+msgid "Restarts the endnote numbering at the number that you specify."
+msgstr "Aloitetaan loppuviitteiden numerointi määritettävästä numerosta uudestaan."
+
+#. CjnZB
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:364
+msgctxt "footnotesendnotestabpage|extended_tip|endoffset"
+msgid "Enter the number that you want to assign the endnote."
+msgstr "Määrätään loppuviitteelle aloitusnumero."
+
#. 3vUD5
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Aloitus:"
#. aZvRb
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:396
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Mukautettu muoto"
+#. MuLkn
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:407
+msgctxt "footnotesendnotestabpage|extended_tip|endntnumfmt"
+msgid "Specifies a custom numbering format for endnotes."
+msgstr "Määritetään loppuviitteen mukautettu numerointimuoto."
+
+#. ye4DA
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:432
+msgctxt "footnotesendnotestabpage|extended_tip|endsuffix"
+msgid "Enter the text that you want to display after the endnote number."
+msgstr "Annetaan teksti, joka tulee näkymään loppuviitenumeron jälkeen."
+
#. GmatM
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:445
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Jälkeen:"
+#. vSp7c
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:461
+msgctxt "footnotesendnotestabpage|extended_tip|endnumviewbox"
+msgid "Select the numbering style for the endnotes."
+msgstr "Valitaan loppuviitteiden numerointityyli."
+
+#. kWheg
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:479
+msgctxt "footnotesendnotestabpage|extended_tip|endprefix"
+msgid "Enter the text that you want to display in front of the endnote number"
+msgstr "Annetaan teksti, joka tulee näkymään loppuviitenumeron edessä."
+
#. iFELv
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:493
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Ennen:"
#. VC57B
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:523
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Loppuviitteet"
+#. NNwDC
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:538
+msgctxt "footnotesendnotestabpage|extended_tip|FootnotesEndnotesTabPage"
+msgid "Specifies where footnotes and endnotes are displayed as well as their numbering formats."
+msgstr ""
+
#. GzLJU
#: sw/uiconfig/swriter/ui/formatsectiondialog.ui:8
msgctxt "formatsectiondialog|FormatSectionDialog"
@@ -11674,102 +15114,186 @@ msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Leveys"
+#. wKDPo
+#: sw/uiconfig/swriter/ui/formattablepage.ui:109
+msgctxt "formattablepage|extended_tip|name"
+msgid "Enter an internal name for the table. You can use this name to quickly locate the table in the Navigator."
+msgstr "Annetaan taulukolle sisäisesti käytetty nimi. Nimeä voi käyttää taulukon helppoon paikallistamiseen rakenneselaimessa."
+
#. FUTdi
-#: sw/uiconfig/swriter/ui/formattablepage.ui:120
+#: sw/uiconfig/swriter/ui/formattablepage.ui:125
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Suhteellinen"
+#. mFN9w
+#: sw/uiconfig/swriter/ui/formattablepage.ui:134
+msgctxt "formattablepage|extended_tip|relwidth"
+msgid "Displays the width of the table as a percentage of the page width."
+msgstr "Esitetään taulukon leveysmitat prosentteina sivun leveydestä."
+
+#. YioP3
+#: sw/uiconfig/swriter/ui/formattablepage.ui:152
+msgctxt "formattablepage|extended_tip|widthmf"
+msgid "Enter the width of the table."
+msgstr "Annetaan taulukon leveys."
+
#. FCGH6
-#: sw/uiconfig/swriter/ui/formattablepage.ui:160
+#: sw/uiconfig/swriter/ui/formattablepage.ui:175
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Ominaisuudet"
#. ZAykg
-#: sw/uiconfig/swriter/ui/formattablepage.ui:195
+#: sw/uiconfig/swriter/ui/formattablepage.ui:210
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Vase_n"
#. u9DFD
-#: sw/uiconfig/swriter/ui/formattablepage.ui:210
+#: sw/uiconfig/swriter/ui/formattablepage.ui:225
msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Oi_kea"
#. rJya4
-#: sw/uiconfig/swriter/ui/formattablepage.ui:226
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Ylhäällä"
#. i3rjD
-#: sw/uiconfig/swriter/ui/formattablepage.ui:241
+#: sw/uiconfig/swriter/ui/formattablepage.ui:256
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Alhaalla"
-#. 9zfaR
+#. YngSM
+#: sw/uiconfig/swriter/ui/formattablepage.ui:275
+msgctxt "formattablepage|extended_tip|leftmf"
+msgid "Enter the amount of space that you want to leave between the left page margin and the edge of the table."
+msgstr "Annetaan sen välin suuruus, joka jää vasemman marginaalin ja taulukon reunan väliin."
+
+#. j5BBD
+#: sw/uiconfig/swriter/ui/formattablepage.ui:293
+msgctxt "formattablepage|extended_tip|rightmf"
+msgid "Enter the amount of space that you want to leave between the right page margin and the edge of the table."
+msgstr "Annetaan sen välin suuruus, joka jää oikeanpuoleisen marginaalin ja taulukon reunan väliin."
+
+#. Aff4C
#: sw/uiconfig/swriter/ui/formattablepage.ui:311
+msgctxt "formattablepage|extended_tip|abovemf"
+msgid "Enter the amount of space that you want to leave between the top edge of the table and the text above the table."
+msgstr "Annetaan taulukon yläreunan ja yläpuolella olevan tekstin välin suuruus."
+
+#. 5f47L
+#: sw/uiconfig/swriter/ui/formattablepage.ui:329
+msgctxt "formattablepage|extended_tip|belowmf"
+msgid "Enter the amount of space that you want to leave between the bottom edge of the table and the text below the table."
+msgstr "Annetaan taulukon alareunan ja alapuolella olevan tekstin välin suuruus."
+
+#. 9zfaR
+#: sw/uiconfig/swriter/ui/formattablepage.ui:346
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Välit"
#. SL8ot
-#: sw/uiconfig/swriter/ui/formattablepage.ui:349
+#: sw/uiconfig/swriter/ui/formattablepage.ui:384
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomaattinen"
+#. RhGRy
+#: sw/uiconfig/swriter/ui/formattablepage.ui:394
+msgctxt "formattablepage|extended_tip|full"
+msgid "Extends the table horizontally to the left and to the right page margins."
+msgstr "Taulukko ulottuu vaakasuunnassa vasempaan ja oikeaan marginaaliin."
+
#. hYcCM
-#: sw/uiconfig/swriter/ui/formattablepage.ui:365
+#: sw/uiconfig/swriter/ui/formattablepage.ui:405
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Vasen"
+#. dmVkC
+#: sw/uiconfig/swriter/ui/formattablepage.ui:415
+msgctxt "formattablepage|extended_tip|left"
+msgid "Aligns the left edge of the table to the left page margin."
+msgstr "Taulukon vasen reuna tasataan vasempaan marginaaliin."
+
#. DCS6Q
-#: sw/uiconfig/swriter/ui/formattablepage.ui:381
+#: sw/uiconfig/swriter/ui/formattablepage.ui:426
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Va_semmalta"
+#. BAehY
+#: sw/uiconfig/swriter/ui/formattablepage.ui:436
+msgctxt "formattablepage|extended_tip|fromleft"
+msgid "Aligns the left edge of the table to the indent that you enter in the Left box in the Spacing area."
+msgstr "Taulukon vasen reuna tasataan sisennykseen, jonka arvo annetaan Välit-alueen Vasen-ruutuun."
+
#. 83zCa
-#: sw/uiconfig/swriter/ui/formattablepage.ui:397
+#: sw/uiconfig/swriter/ui/formattablepage.ui:447
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Oikea"
+#. ezLvi
+#: sw/uiconfig/swriter/ui/formattablepage.ui:457
+msgctxt "formattablepage|extended_tip|right"
+msgid "Aligns the right edge of the table to the right page margin."
+msgstr "Taulukon oikea reuna tasataan sivun oikeanpuoleiseen marginaaliin."
+
#. kMsAJ
-#: sw/uiconfig/swriter/ui/formattablepage.ui:413
+#: sw/uiconfig/swriter/ui/formattablepage.ui:468
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Keskitä"
+#. j2nPx
+#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+msgctxt "formattablepage|extended_tip|center"
+msgid "Centers the table horizontally on the page."
+msgstr "Taulukko keskitetään sivulle vaakasuunnassa."
+
#. 52nix
-#: sw/uiconfig/swriter/ui/formattablepage.ui:429
+#: sw/uiconfig/swriter/ui/formattablepage.ui:489
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manuaalinen"
+#. nWCcJ
+#: sw/uiconfig/swriter/ui/formattablepage.ui:499
+msgctxt "formattablepage|extended_tip|free"
+msgid "Horizontally aligns the table based on the values that you enter in the Left and Right boxes in the Spacing area."
+msgstr "Taulukko kohdistetaan vaakasuunnassa Välit-alueen Vasen- ja Oikea-kenttiin annettujen arvojen mukaisesti."
+
#. pYDMp
-#: sw/uiconfig/swriter/ui/formattablepage.ui:452
+#: sw/uiconfig/swriter/ui/formattablepage.ui:517
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Tasaus"
#. eZcBo
-#: sw/uiconfig/swriter/ui/formattablepage.ui:491
+#: sw/uiconfig/swriter/ui/formattablepage.ui:556
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Tekstin suunta"
#. 6Yw3x
-#: sw/uiconfig/swriter/ui/formattablepage.ui:519
+#: sw/uiconfig/swriter/ui/formattablepage.ui:584
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Ominaisuudet "
+#. NDs9y
+#: sw/uiconfig/swriter/ui/formattablepage.ui:598
+msgctxt "formattablepage|extended_tip|FormatTablePage"
+msgid "Specify the size, position, spacing, and alignment options for the selected table."
+msgstr "Tehdään valitulle taulukolle koon, sijainnin, välistyksen ja tasauksen määritykset."
+
#. y8Bai
#: sw/uiconfig/swriter/ui/framedialog.ui:8
msgctxt "framedialog|FrameDialog"
@@ -11830,336 +15354,588 @@ msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
+#. PaXf9
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:52
+msgctxt "frmaddpage|extended_tip|name"
+msgid "Enter a name for the selected item."
+msgstr "Nimetään valittu kohde."
+
+#. DFFRx
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:70
+msgctxt "frmaddpage|extended_tip|altname"
+msgid "Enter the text to display in a web browser when the selected item is unavailable. Alternate text is also used to assist people with disabilities."
+msgstr "Annetaan teksti, joka esitetään nettiselaimessa, kun kohde ei ole saatavilla. Vaihtoehtoinen teksti voi auttaa myös vammaisia."
+
#. kJNV9
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:73
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:83
msgctxt "frmaddpage|name_label"
msgid "_Name:"
msgstr "Nimi:"
#. tpcqF
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:87
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:97
msgctxt "frmaddpage|altname_label"
msgid "_Alternative (Text only):"
msgstr "Vaihtoehtoinen (vain teksti):"
#. j25pX
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:103
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:113
msgctxt "frmaddpage|prev"
msgid "<None>"
msgstr "<Ei mitään>"
-#. pwAz4
+#. 453ri
#: sw/uiconfig/swriter/ui/frmaddpage.ui:117
+msgctxt "frmaddpage|extended_tip|prev"
+msgid "Displays the item (object, graphic, or frame) that comes before the current item in a linked sequence. To add or change the previous link, select a name from the list. If you are linking frames, the current frame and the target frame must be empty."
+msgstr "Näytetään kohde (objekti, kuva tai kehys), joka tulee ennen käsillä olevaa kohdetta linkitetyssä järjestyksessä. Edellisen linkin lisäämiseksi tai muuttamiseksi valitaan nimi luettelosta. Jos linkitetään kehyksiä, käsiteltävän kehyksen ja kohdekehyksen pitää olla tyhjiä."
+
+#. pwAz4
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:132
msgctxt "frmaddpage|next"
msgid "<None>"
msgstr "<Ei mitään>"
+#. k9LmN
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:136
+msgctxt "frmaddpage|extended_tip|next"
+msgid "Displays the item (object, graphic, or frame) that comes after the current item in a linked sequence. To add or change the next link, select a name from the list. If you are a linking frames, the target frame must be empty."
+msgstr "Näytetään kohde (objekti, kuva tai kehys), joka tulee käsillä olevan kohteen jälkeen linkitetyssä järjestyksessä. Seuraavan linkin lisäämiseksi tai muuttamiseksi valitaan nimi luettelosta. Jos linkitetään kehyksiä, kohdekehyksen pitää olla tyhjä."
+
#. Da3D4
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:129
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:149
msgctxt "frmaddpage|prev_label"
msgid "_Previous link:"
msgstr "Edellinen linkki:"
#. PcwqA
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:143
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:163
msgctxt "frmaddpage|next_label"
msgid "_Next link:"
msgstr "Seuraava linkki:"
#. cdFEu
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:157
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:177
msgctxt "frmaddpage|description_label"
msgid "_Description:"
msgstr "Kuvaus:"
#. CfXQR
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:198
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:218
msgctxt "frmaddpage|label1"
msgid "Names"
msgstr "Nimet"
#. WCaFa
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:230
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:250
msgctxt "frmaddpage|protectcontent"
msgid "_Contents"
msgstr "Sisältö"
+#. FrDqV
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:259
+msgctxt "frmaddpage|extended_tip|protectcontent"
+msgid "Prevents changes to the contents of the selected item."
+msgstr "Estetään valitun kohteen sisällön muutokset."
+
#. tHFEc
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:245
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:270
msgctxt "frmaddpage|protectframe"
msgid "P_osition"
msgstr "Sijainti"
+#. skuDE
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:279
+msgctxt "frmaddpage|extended_tip|protectframe"
+msgid "Locks the position of the selected item in the current document."
+msgstr "Lukitaan valitun kohteen sijainti käsiteltävässä asiakirjassa."
+
#. MJfL4
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:260
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:290
msgctxt "frmaddpage|protectsize"
msgid "_Size"
msgstr "Koko"
+#. FEkTC
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:299
+msgctxt "frmaddpage|extended_tip|protectsize"
+msgid "Locks the size of the selected item."
+msgstr "Lukitaan valitun kohteen koko."
+
#. JoBc6
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:281
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:316
msgctxt "frmaddpage|label8"
msgid "Protect"
msgstr "Suojaa"
#. 5BBdP
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:314
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:349
msgctxt "frmaddpage|label2"
msgid "_Vertical alignment"
msgstr "Pystytasaus"
#. fzvfP
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:327
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:362
msgctxt "frmaddpage|liststore"
msgid "Top"
msgstr "Yläreuna"
#. Mz6Ss
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:328
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:363
msgctxt "frmaddpage|liststore"
msgid "Centered"
msgstr "Keskitetty"
#. qpZAw
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:329
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:364
msgctxt "frmaddpage|liststore"
msgid "Bottom"
msgstr "Alareuna"
+#. AAw2F
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:368
+msgctxt "frmaddpage|extended_tip|vertalign"
+msgid "Specifies the vertical alignment of the frame's content. Mainly it means text content, but it also affects tables and other objects anchored to the text area (anchored as character, to character or to paragraph), for example frames, graphics or drawings."
+msgstr "Määrää kehyksen sisällön pystysuuntaisen tasauksen. Pääasiassa tämä vaikuttaa tekstisisältöön, mutta myös taulukoihin ja muihin tekstiin ankkuroituihin objekteihin (merkkinä, merkkiin tai kappaleeseen ankkuroituihin) kuten esimerkiksi kehyksiin, kuviin tai piirroksiin."
+
#. 2weJX
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:345
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:385
msgctxt "frmaddpage|label7"
msgid "Content Alignment"
msgstr "Sisällön tasaus"
#. ikzFT
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:381
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:421
msgctxt "frmaddpage|editinreadonly"
msgid "_Editable in read-only document"
msgstr "Muokattavissa kirjoitussuojatussa asiakirjassa"
+#. GM7gD
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:430
+msgctxt "frmaddpage|extended_tip|editinreadonly"
+msgid "Allows you to edit the contents of a frame in a document that is read-only (write-protected)."
+msgstr "Sallitaan kehyksen sisällön muokkaaminen vain luettavassa asiakirjassa (kirjoitussuojattu)."
+
#. vmiHE
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:397
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:442
msgctxt "frmaddpage|printframe"
msgid "Prin_t"
msgstr "Tulosta"
+#. URLpE
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:451
+msgctxt "frmaddpage|extended_tip|printframe"
+msgid "Includes the selected item when you print the document."
+msgstr "Valittu kohde tulostuu asiakirjassa."
+
+#. ZSv3T
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:468
+msgctxt "frmaddpage|extended_tip|textflow"
+msgid "Specifies the preferred text flow direction in a frame. To use the default text flow settings for the page, select Use superordinate object settings from the list."
+msgstr "Määritetään tekstin ensisijainen kirjoitussuunta kehyksessä. Sivun oletuskirjoitussuunnan asetusten käyttämiseksi, valitaan luettelosta Käytä ensisijaista objektiasetusta."
+
#. ph8JN
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:426
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:481
msgctxt "frmaddpage|textflow_label"
msgid "_Text direction:"
msgstr "Tekstin suunta:"
#. MvNvt
-#: sw/uiconfig/swriter/ui/frmaddpage.ui:444
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:499
msgctxt "frmaddpage|label3"
msgid "Properties"
msgstr "Ominaisuudet"
+#. 7Eswq
+#: sw/uiconfig/swriter/ui/frmaddpage.ui:514
+msgctxt "frmaddpage|extended_tip|FrameAddPage"
+msgid "Specifies properties for the selected object, graphic or frame."
+msgstr ""
+
+#. up2BK
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:79
+msgctxt "frmtypepage|extended_tip|width"
+msgid "Enter the width that you want for the selected object."
+msgstr ""
+
#. LVvrB
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:85
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:90
msgctxt "frmtypepage|autowidth"
msgid "AutoSize"
msgstr "Automaattinen korkeus"
+#. br57s
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:100
+msgctxt "frmtypepage|extended_tip|autowidth"
+msgid "Automatically adjusts the width or height of a frame to match the contents of the frame. If you want, you can specify a minimum width or minimum height for the frame."
+msgstr "Kehyksen leveys tai korkeus säätyy kehyksen sisältöä vastaavasti. Tarvittaessa kehykselle voidaan määrittää vähimmäisleveys tai vähimmäiskorkeus."
+
#. FApNw
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:109
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:119
msgctxt "frmtypepage|autowidthft"
msgid "_Width (at least)"
msgstr "Leveys (vähintään)"
#. gULKP
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:123
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:133
msgctxt "frmtypepage|widthft"
msgid "_Width"
msgstr "Leveys"
#. 77XjV
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:146
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:156
msgctxt "frmtypepage|relwidth"
msgid "Relat_ive to"
msgstr "Suhteessa"
+#. H3kKU
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:169
+msgctxt "frmtypepage|extended_tip|relwidth"
+msgid "Calculates the width of the selected object as a percentage of the width of the page text area."
+msgstr "Lasketaan valitun objektin leveys prosentteina sivun tekstialan leveydestä."
+
+#. CDRCF
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:186
+msgctxt "frmtypepage|extended_tip|relwidthrelation"
+msgid "Decides what 100% width means: either text area (excluding margins) or the entire page (including margins)."
+msgstr "Määrää, mitä 100% leveys tarkoittaa: joko tekstialuetta (ei marginaaleja) tai koko sivua (marginaalit mukaan lukien)."
+
+#. nAbJb
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:224
+msgctxt "frmtypepage|extended_tip|height"
+msgid "Enter the height that you want for the selected object."
+msgstr ""
+
#. U2yc9
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:210
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:235
msgctxt "frmtypepage|autoheight"
msgid "AutoSize"
msgstr "Automaattinen korkeus"
+#. X7XFK
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:245
+msgctxt "frmtypepage|extended_tip|autoheight"
+msgid "Automatically adjusts the width or height of a frame to match the contents of the frame. If you want, you can specify a minimum width or minimum height for the frame."
+msgstr "Kehyksen leveys tai korkeus säätyy kehyksen sisältöä vastaavasti. Tarvittaessa kehykselle voidaan määrittää vähimmäisleveys tai vähimmäiskorkeus."
+
#. Rvr7b
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:234
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:264
msgctxt "frmtypepage|autoheightft"
msgid "H_eight (at least)"
msgstr "Korkeus (vähintään)"
#. TNaFa
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:248
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:278
msgctxt "frmtypepage|heightft"
msgid "H_eight"
msgstr "Korkeus"
#. uN2DT
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:271
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:301
msgctxt "frmtypepage|relheight"
msgid "Re_lative to"
msgstr "Suhteessa"
+#. 6BmoJ
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:314
+msgctxt "frmtypepage|extended_tip|relheight"
+msgid "Calculates the height of the selected object as a percentage of the height of the page text area."
+msgstr "Lasketaan valitun objektin korkeus prosentteina sivun tekstialan korkeudesta."
+
+#. rgwPm
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:331
+msgctxt "frmtypepage|extended_tip|relheightrelation"
+msgid "Decides what 100% height means: either text area (excluding margins) or the entire page (including margins)."
+msgstr "Määrää, mitä 100% korkeus tarkoittaa: joko tekstialuetta (ei marginaaleja) tai koko sivua (marginaalit mukaan lukien)."
+
#. htCBL
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:316
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:356
msgctxt "frmtypepage|ratio"
msgid "_Keep ratio"
msgstr "Säilytä mittasuhteet"
+#. RGWEJ
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:365
+msgctxt "frmtypepage|extended_tip|ratio"
+msgid "Maintains the height and width ratio when you change the width or the height setting."
+msgstr ""
+
#. rMhep
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:331
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:376
msgctxt "frmtypepage|origsize"
msgid "_Original Size"
msgstr "Alkuperäinen koko"
+#. 4ZHrz
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:384
+msgctxt "frmtypepage|extended_tip|origsize"
+msgid "Resets the size settings of the selected object to the original values."
+msgstr "Painikkeella palautetaan kokoasetukset valitun objektin alkuperäisiin arvoihin."
+
#. Z2CJB
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:351
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:401
msgctxt "frmtypepage|label2"
msgid "Size"
msgstr "Koko"
#. EwYPL
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:407
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:457
msgctxt "frmtypepage|topage"
msgid "To _page"
msgstr "Sivulle"
+#. bnxYw
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:467
+msgctxt "frmtypepage|extended_tip|topage"
+msgid "Anchors the selection to the current page."
+msgstr ""
+
#. MMqAf
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:423
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:478
msgctxt "frmtypepage|topara"
msgid "To paragrap_h"
msgstr "Kappaleeseen"
+#. zuY6M
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:488
+msgctxt "frmtypepage|extended_tip|topara"
+msgid "Anchors the selection to the current paragraph."
+msgstr ""
+
#. yX6rK
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:439
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:499
msgctxt "frmtypepage|tochar"
msgid "To cha_racter"
msgstr "Merkkiin"
+#. CKgCn
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:509
+msgctxt "frmtypepage|extended_tip|tochar"
+msgid "Anchors the selection to a character."
+msgstr ""
+
#. C9xQY
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:455
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:520
msgctxt "frmtypepage|aschar"
msgid "_As character"
msgstr "Merkkinä"
+#. idwGi
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:530
+msgctxt "frmtypepage|extended_tip|aschar"
+msgid "Anchors the selection as character. The height of the current line is resized to match the height of the selection."
+msgstr ""
+
#. TGg8f
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:471
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:541
msgctxt "frmtypepage|toframe"
msgid "To _frame"
msgstr "Kehykseen"
#. 3DgCP
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:493
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:563
msgctxt "frmtypepage|label1"
msgid "Anchor"
msgstr "Ankkuri"
#. 7RCJH
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:533
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:603
msgctxt "frmtypepage|horiposft"
msgid "Hori_zontal"
msgstr "Vaakataso"
#. ytvmN
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:547
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:617
msgctxt "frmtypepage|horibyft"
msgid "b_y"
msgstr "etäisyys"
#. EEXr7
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:561
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:631
msgctxt "frmtypepage|vertbyft"
msgid "by"
msgstr "etäisyys"
#. NW7Se
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:575
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:645
msgctxt "frmtypepage|horitoft"
msgid "_to"
msgstr "kohde"
+#. jg9kn
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:664
+msgctxt "frmtypepage|extended_tip|byhori"
+msgid "Enter the amount of space to leave between the left edge of the selected object and the reference point that you select in the To box."
+msgstr ""
+
+#. ATVDy
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:679
+msgctxt "frmtypepage|extended_tip|horianchor"
+msgid "Select the reference point for the selected horizontal alignment option."
+msgstr ""
+
+#. Mzkkm
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:694
+msgctxt "frmtypepage|extended_tip|horipos"
+msgid "Select the horizontal alignment option for the object."
+msgstr ""
+
#. jATQG
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:622
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:707
msgctxt "frmtypepage|vertposft"
msgid "_Vertical"
msgstr "Pystytasossa"
+#. mcsH8
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:723
+msgctxt "frmtypepage|extended_tip|vertpos"
+msgid "Select the vertical alignment option for the object."
+msgstr ""
+
+#. BcA3U
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:741
+msgctxt "frmtypepage|extended_tip|byvert"
+msgid "Enter the amount of space to leave between the top edge of the selected object and the reference point that you select in the To box."
+msgstr ""
+
#. nJyJE
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:659
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:754
msgctxt "frmtypepage|verttoft"
msgid "t_o"
msgstr "kohde"
+#. Aw5J8
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:770
+msgctxt "frmtypepage|extended_tip|vertanchor"
+msgid "Select the reference point for the selected vertical alignment option."
+msgstr ""
+
#. WwDCp
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:681
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:781
msgctxt "frmtypepage|mirror"
msgid "_Mirror on even pages"
msgstr "Peilaa parillisilla sivuilla"
+#. Nftff
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:791
+msgctxt "frmtypepage|extended_tip|mirror"
+msgid "Reverses the current horizontal alignment settings on even pages."
+msgstr ""
+
#. PFJMP
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:803
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
msgstr "Pidä tekstin rajojen sisällä"
+#. 55hUf
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:813
+msgctxt "frmtypepage|extended_tip|followtextflow"
+msgid "Keeps the selected object within the layout boundaries of the text that the object is anchored to. To place the selected object anywhere in your document, do not select this option."
+msgstr ""
+
#. cAiUp
-#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:831
msgctxt "frmtypepage|label11"
msgid "Position"
msgstr "Sijainti"
+#. DHEeZ
+#: sw/uiconfig/swriter/ui/frmtypepage.ui:845
+msgctxt "frmtypepage|extended_tip|FrameTypePage"
+msgid "Specifies the size and the position of the selected object or frame on a page."
+msgstr ""
+
+#. gnpwK
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:44
+msgctxt "frmurlpage|extended_tip|url"
+msgid "Enter the complete path to the file that you want to open."
+msgstr "Annetaan avattavan tiedoston koko polku."
+
+#. ZsUyb
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:61
+msgctxt "frmurlpage|extended_tip|name"
+msgid "Enter a name for the hyperlink."
+msgstr "Nimetään hyperlinkki."
+
#. rJNqX
-#: sw/uiconfig/swriter/ui/frmurlpage.ui:65
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:75
msgctxt "frmurlpage|url_label"
msgid "_URL:"
msgstr "URL-osoite:"
#. DHeCW
-#: sw/uiconfig/swriter/ui/frmurlpage.ui:79
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:89
msgctxt "frmurlpage|name_label"
msgid "_Name:"
msgstr "Nimi:"
#. F3UJE
-#: sw/uiconfig/swriter/ui/frmurlpage.ui:93
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:103
msgctxt "frmurlpage|frame_label"
msgid "_Frame:"
msgstr "Kehys:"
#. CC42B
-#: sw/uiconfig/swriter/ui/frmurlpage.ui:111
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:121
msgctxt "frmurlpage|search"
msgid "_Browse..."
msgstr "Selaa..."
+#. S44B2
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:128
+msgctxt "frmurlpage|extended_tip|search"
+msgid "Locate the file that you want the hyperlink to open, and then click Open."
+msgstr "Paikallistetaan tiedosto, jonka hyperlinkki tulee avaamaan ja napsautetaan sitten Avaa-painiketta."
+
+#. N7zSV
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:158
+msgctxt "frmurlpage|extended_tip|frame"
+msgid "Specify the name of the frame where you want to open the targeted file."
+msgstr "Määritetään kehyksen nimi, johon kohdetiedosto avataan."
+
#. ADpZK
-#: sw/uiconfig/swriter/ui/frmurlpage.ui:156
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:176
msgctxt "frmurlpage|label1"
msgid "Link to"
msgstr "Linkki kohteeseen"
#. sE5GK
-#: sw/uiconfig/swriter/ui/frmurlpage.ui:194
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:214
msgctxt "frmurlpage|server"
msgid "_Server-side image map"
msgstr "Palvelimella toteutettu kuvakartta"
+#. b7kPv
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:224
+msgctxt "frmurlpage|extended_tip|server"
+msgid "Uses a server-side image map."
+msgstr "Käytetään palvelinpuolen kuvakarttaa."
+
#. MWxs6
-#: sw/uiconfig/swriter/ui/frmurlpage.ui:210
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:235
msgctxt "frmurlpage|client"
msgid "_Client-side image map"
msgstr "Selaimessa toteutettu kuvakartta"
+#. FxBbu
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:245
+msgctxt "frmurlpage|extended_tip|client"
+msgid "Uses the image map that you created for the selected object."
+msgstr "Käytetään kuvakarttaa, joka on luotu valitulle objektille."
+
#. Y49PK
-#: sw/uiconfig/swriter/ui/frmurlpage.ui:232
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:262
msgctxt "frmurlpage|label2"
msgid "Image Map"
msgstr "Kuvakartta"
+#. SB3EF
+#: sw/uiconfig/swriter/ui/frmurlpage.ui:277
+msgctxt "frmurlpage|extended_tip|FrameURLPage"
+msgid "Specify the properties of the hyperlink for the selected graphic, frame or OLE object."
+msgstr ""
+
#. kyPYk
#: sw/uiconfig/swriter/ui/gotopagedialog.ui:8
msgctxt "gotopagedialog|GotoPageDialog"
@@ -12208,14 +15984,26 @@ msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Osan jälkeen"
+#. u3NDD
+#: sw/uiconfig/swriter/ui/indentpage.ui:90
+msgctxt "indentpage|extended_tip|before"
+msgid "Specifies the indents before the section, at the left margin."
+msgstr "Määritetään osan sisennys vasemmasta marginaalista."
+
+#. sBtvo
+#: sw/uiconfig/swriter/ui/indentpage.ui:108
+msgctxt "indentpage|extended_tip|after"
+msgid "Specifies the indents after the section, at the right margin."
+msgstr "Määritetään osan sisennys oikeasta marginaalista."
+
#. rrGkM
-#: sw/uiconfig/swriter/ui/indentpage.ui:115
+#: sw/uiconfig/swriter/ui/indentpage.ui:125
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Sisennä"
#. TZCZv
-#: sw/uiconfig/swriter/ui/indentpage.ui:155
+#: sw/uiconfig/swriter/ui/indentpage.ui:165
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Esimerkki"
@@ -12226,98 +16014,128 @@ msgctxt "indexentry|IndexEntryDialog"
msgid "Insert Index Entry"
msgstr "Lisää hakemistomerkintä"
+#. 8dTXx
+#: sw/uiconfig/swriter/ui/indexentry.ui:80
+msgctxt "indexentry|extended_tip|delete"
+msgid "Deletes the selected entry from the index. The entry text in the document is not deleted."
+msgstr "Poistetaan valittu merkintä hakemistosta. Merkintätekstiä ei poisteta asiakirjasta."
+
#. UAN8C
-#: sw/uiconfig/swriter/ui/indexentry.ui:90
+#: sw/uiconfig/swriter/ui/indexentry.ui:92
msgctxt "indexentry|insert"
msgid "Insert"
msgstr "Lisää"
#. qbAWn
-#: sw/uiconfig/swriter/ui/indexentry.ui:170
+#: sw/uiconfig/swriter/ui/indexentry.ui:172
msgctxt "indexentry|typeft"
msgid "Index"
msgstr "Hakemisto"
#. goQoK
-#: sw/uiconfig/swriter/ui/indexentry.ui:196
+#: sw/uiconfig/swriter/ui/indexentry.ui:198
msgctxt "indexentry|new|tooltip_text"
msgid "New User-defined Index"
msgstr "Uusi käyttäjän määrittämä hakemisto"
#. zTEFk
-#: sw/uiconfig/swriter/ui/indexentry.ui:212
+#: sw/uiconfig/swriter/ui/indexentry.ui:214
msgctxt "indexentry|label3"
msgid "Entry"
msgstr "Merkintä"
#. jcbjL
-#: sw/uiconfig/swriter/ui/indexentry.ui:228
+#: sw/uiconfig/swriter/ui/indexentry.ui:230
msgctxt "indexentry|key1ft"
msgid "1st key"
msgstr "1. avain"
#. B47KE
-#: sw/uiconfig/swriter/ui/indexentry.ui:244
+#: sw/uiconfig/swriter/ui/indexentry.ui:246
msgctxt "indexentry|key2ft"
msgid "2nd key"
msgstr "2. avain"
#. ReqDn
-#: sw/uiconfig/swriter/ui/indexentry.ui:259
+#: sw/uiconfig/swriter/ui/indexentry.ui:261
msgctxt "indexentry|levelft"
msgid "Level"
msgstr "Taso"
#. QybEJ
-#: sw/uiconfig/swriter/ui/indexentry.ui:289
+#: sw/uiconfig/swriter/ui/indexentry.ui:291
msgctxt "indexentry|phonetic0ft"
msgid "Phonetic reading"
msgstr "Foneettinen lukutapa"
#. JCtnw
-#: sw/uiconfig/swriter/ui/indexentry.ui:305
+#: sw/uiconfig/swriter/ui/indexentry.ui:307
msgctxt "indexentry|phonetic1ft"
msgid "Phonetic reading"
msgstr "Foneettinen lukutapa"
#. C6FQC
-#: sw/uiconfig/swriter/ui/indexentry.ui:321
+#: sw/uiconfig/swriter/ui/indexentry.ui:323
msgctxt "indexentry|phonetic2ft"
msgid "Phonetic reading"
msgstr "Foneettinen lukutapa"
#. JbXGT
-#: sw/uiconfig/swriter/ui/indexentry.ui:406
+#: sw/uiconfig/swriter/ui/indexentry.ui:408
msgctxt "indexentry|sync|tooltip_text"
msgid "Update entry from selection"
msgstr "Päivitä merkintä valinnasta"
#. B5PWe
-#: sw/uiconfig/swriter/ui/indexentry.ui:452
+#: sw/uiconfig/swriter/ui/indexentry.ui:454
msgctxt "indexentry|mainentrycb"
msgid "Main entry"
msgstr "Päämerkintä"
#. 4QfoT
-#: sw/uiconfig/swriter/ui/indexentry.ui:467
+#: sw/uiconfig/swriter/ui/indexentry.ui:469
msgctxt "indexentry|applytoallcb"
msgid "Apply to all similar texts"
msgstr "Käytä kaikissa samanlaisissa teksteissä"
#. ZdMSz
-#: sw/uiconfig/swriter/ui/indexentry.ui:482
+#: sw/uiconfig/swriter/ui/indexentry.ui:484
msgctxt "indexentry|searchcasesensitivecb"
msgid "Match case"
msgstr "Sama kirjainkoko"
#. 8Q9RW
-#: sw/uiconfig/swriter/ui/indexentry.ui:498
+#: sw/uiconfig/swriter/ui/indexentry.ui:500
msgctxt "indexentry|searchcasewordonlycb"
msgid "Whole words only"
msgstr "Vain kokonaiset sanat"
+#. Vd86J
+#: sw/uiconfig/swriter/ui/indexentry.ui:535
+msgctxt "indexentry|extended_tip|previous"
+msgid "Jumps to the previous index entry of the same type in the document."
+msgstr "Hypätään asiakirjan edelliseen samantyyppiseen hakemistomerkintään."
+
+#. WsgJC
+#: sw/uiconfig/swriter/ui/indexentry.ui:554
+msgctxt "indexentry|extended_tip|next"
+msgid "Jumps to the next index entry of the same type in the document."
+msgstr "Hypätään asiakirjan seuraavaan samantyyppiseen hakemistomerkintään."
+
+#. GEB3A
+#: sw/uiconfig/swriter/ui/indexentry.ui:573
+msgctxt "indexentry|extended_tip|first"
+msgid "Jumps to the first index entry of the same type in the document."
+msgstr "Hypätään asiakirjan ensimmäiseen samantyyppiseen hakemistomerkintään."
+
+#. AKiAd
+#: sw/uiconfig/swriter/ui/indexentry.ui:592
+msgctxt "indexentry|extended_tip|last"
+msgid "Jumps to the last index entry of the same type in the document."
+msgstr "Hypätään asiakirjan viimeiseen samantyyppiseen hakemistomerkintään."
+
#. dLE2B
-#: sw/uiconfig/swriter/ui/indexentry.ui:600
+#: sw/uiconfig/swriter/ui/indexentry.ui:622
msgctxt "indexentry|label1"
msgid "Selection"
msgstr "Valinta"
@@ -12358,180 +16176,390 @@ msgctxt "inputfielddialog|InputFieldDialog"
msgid "Review Fields"
msgstr "Tarkista kentät"
+#. YpSqb
+#: sw/uiconfig/swriter/ui/inputfielddialog.ui:51
+msgctxt "inputfielddialog|extended_tip|next"
+msgid "Jumps to the next input field in the document."
+msgstr "Hypätään seuraavaan asiakirjan syöttökenttään."
+
#. m9uWN
-#: sw/uiconfig/swriter/ui/inputfielddialog.ui:131
+#: sw/uiconfig/swriter/ui/inputfielddialog.ui:133
msgctxt "inputfielddialog|inputfieldname"
msgid "Reference:"
msgstr "Viite:"
+#. c3zXj
+#: sw/uiconfig/swriter/ui/inputfielddialog.ui:173
+msgctxt "inputfielddialog|extended_tip|text"
+msgid "This box displays the name that you entered in the Reference box on the Functions or Variables tab of the Fields dialog. The box underneath displays the contents of the field."
+msgstr ""
+
+#. KcGwQ
+#: sw/uiconfig/swriter/ui/inputfielddialog.ui:204
+msgctxt "inputfielddialog|extended_tip|InputFieldDialog"
+msgid "Inserts a text field that you can open and edit by clicking it in the document."
+msgstr "Lisätään tekstikenttä, joka voidaan avata ja muokata napsauttamalla kenttää asiakirjassa."
+
#. ywLfx
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:12
msgctxt "inputwinmenu|sum"
msgid "Sum"
msgstr "Summa"
+#. AaqnZ
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:16
+msgctxt "inputwinmenu|extended_tip|sum"
+msgid "Calculates the sum of the selected cells."
+msgstr ""
+
#. gscMt
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:20
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:25
msgctxt "inputwinmenu|round"
msgid "Round"
msgstr "Pyöristä"
+#. ZtNLr
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:29
+msgctxt "inputwinmenu|extended_tip|round"
+msgid "Rounds a number to the specified decimal places."
+msgstr ""
+
#. 9nA3q
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:28
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:38
msgctxt "inputwinmenu|phd"
msgid "Percent"
msgstr "Prosenttia"
+#. AE86C
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:42
+msgctxt "inputwinmenu|extended_tip|phd"
+msgid "Calculates a percentage"
+msgstr ""
+
#. P9tJv
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:36
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:51
msgctxt "inputwinmenu|sqrt"
msgid "Square Root"
msgstr "Neliöjuuri"
+#. vANCd
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:55
+msgctxt "inputwinmenu|extended_tip|sqrt"
+msgid "Calculates the square root."
+msgstr ""
+
#. cfE6B
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:44
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:64
msgctxt "inputwinmenu|pow"
msgid "Power"
msgstr "Potenssimääritys"
+#. AoEVB
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:68
+msgctxt "inputwinmenu|extended_tip|pow"
+msgid "Calculates the power of a number."
+msgstr ""
+
#. dMv5S
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:52
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:77
msgctxt "inputwinmenu|operators"
msgid "Operators"
msgstr "Operaattorit"
#. WBzwp
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:62
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:87
msgctxt "inputwinmenu||"
msgid "List Separator"
msgstr "Luetteloerotin"
+#. enQAA
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:91
+msgctxt "inputwinmenu|extended_tip||"
+msgid "Separates the elements in a list."
+msgstr ""
+
#. VXGUH
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:70
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:100
msgctxt "inputwinmenu|eq"
msgid "Equal"
msgstr "Yhtäsuuri"
+#. Z6CEY
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:104
+msgctxt "inputwinmenu|extended_tip|eq"
+msgid "Checks if selected values are equal."
+msgstr ""
+
#. g3ARG
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:78
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:113
msgctxt "inputwinmenu|neq"
msgid "Not Equal"
msgstr "Erisuuri"
+#. BnSN9
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:117
+msgctxt "inputwinmenu|extended_tip|neq"
+msgid "Tests for inequality between selected values."
+msgstr ""
+
#. 9y6jk
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:86
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:126
msgctxt "inputwinmenu|leq"
msgid "Less Than or Equal"
msgstr "Pienempi tai yhtäsuuri kuin"
+#. YGjJn
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:130
+msgctxt "inputwinmenu|extended_tip|leq"
+msgid "Tests for values less than or equal to a specified value."
+msgstr ""
+
#. mDjkK
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:94
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:139
msgctxt "inputwinmenu|geq"
msgid "Greater Than or Equal"
msgstr "Suurempi tai yhtäsuuri kuin"
+#. BRptY
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:143
+msgctxt "inputwinmenu|extended_tip|geq"
+msgid "Tests for values greater than or equal to a specified value"
+msgstr ""
+
#. FBmuE
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:102
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:152
msgctxt "inputwinmenu|l"
msgid "Less"
msgstr "Pienempi"
+#. rXGGi
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:156
+msgctxt "inputwinmenu|extended_tip|l"
+msgid "Tests for values less than a specified value"
+msgstr ""
+
#. WUGeb
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:110
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:165
msgctxt "inputwinmenu|g"
msgid "Greater"
msgstr "Suurempi"
+#. 5Fdnk
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:169
+msgctxt "inputwinmenu|extended_tip|g"
+msgid "Tests for values greater than a specified value"
+msgstr ""
+
#. ufZCg
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:124
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:184
msgctxt "inputwinmenu|or"
msgid "Boolean Or"
msgstr "Boolen ehto TAI"
+#. mYhii
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:188
+msgctxt "inputwinmenu|extended_tip|or"
+msgid "Tests for values matching the Boolean OR"
+msgstr ""
+
#. kqdjD
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:132
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:197
msgctxt "inputwinmenu|xor"
msgid "Boolean Xor"
msgstr "Boolen ehto XTAI"
+#. CEcTo
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:201
+msgctxt "inputwinmenu|extended_tip|xor"
+msgid "Tests for values matching the Boolean exclusive OR"
+msgstr ""
+
#. eXMSG
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:140
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:210
msgctxt "inputwinmenu|and"
msgid "Boolean And"
msgstr "Boolen ehto JA"
+#. DfomB
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:214
+msgctxt "inputwinmenu|extended_tip|and"
+msgid "Tests for values matching the Boolean AND"
+msgstr ""
+
#. 6fFN5
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:148
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:223
msgctxt "inputwinmenu|not"
msgid "Boolean Not"
msgstr "Boolen ehto EI"
+#. 2hhtQ
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:227
+msgctxt "inputwinmenu|extended_tip|not"
+msgid "Tests for values matching the Boolean NOT"
+msgstr ""
+
+#. 8EE7z
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:236
+msgctxt "inputwinmenu|extended_tip|operators"
+msgid "You can insert various operators in your formula."
+msgstr ""
+
#. F26qr
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:160
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:245
msgctxt "inputwinmenu|statistics"
msgid "Statistical Functions"
msgstr "Tilastofunktiot"
#. 6DuVf
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:170
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:255
msgctxt "inputwinmenu|mean"
msgid "Mean"
msgstr "Keskiarvo"
+#. CUZQE
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:259
+msgctxt "inputwinmenu|extended_tip|mean"
+msgid "Calculates the arithmetic mean of the values in an area or a list."
+msgstr ""
+
#. nSYdA
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:178
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:268
msgctxt "inputwinmenu|min"
msgid "Minimum"
msgstr "Minimi"
+#. GUdHA
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:272
+msgctxt "inputwinmenu|extended_tip|min"
+msgid "Calculates the minimum value in an area or a list."
+msgstr ""
+
#. nEGnR
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:186
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:281
msgctxt "inputwinmenu|max"
msgid "Maximum"
msgstr "Maksimi"
+#. pYAHv
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:285
+msgctxt "inputwinmenu|extended_tip|max"
+msgid "Calculates the maximum value in an area or a list."
+msgstr ""
+
+#. PRJyk
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:294
+msgctxt "inputwinmenu|count"
+msgid "Count"
+msgstr ""
+
+#. 3VBfQ
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:302
+msgctxt "inputwinmenu|product"
+msgid "Product"
+msgstr ""
+
+#. DRxEW
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:310
+msgctxt "inputwinmenu|extended_tip|statistics"
+msgid "You can choose from the following statistical functions:"
+msgstr ""
+
#. vEC7B
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:198
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:319
msgctxt "inputwinmenu|functions"
msgid "Functions"
msgstr "Funktiot"
#. CGyzt
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:208
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:329
msgctxt "inputwinmenu|sin"
msgid "Sine"
msgstr "Sini"
+#. W6GYs
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:333
+msgctxt "inputwinmenu|extended_tip|sin"
+msgid "Calculates the sine in radians"
+msgstr ""
+
#. EGGzK
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:216
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:342
msgctxt "inputwinmenu|cos"
msgid "Cosine"
msgstr "Kosini"
+#. wzQrz
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:346
+msgctxt "inputwinmenu|extended_tip|cos"
+msgid "Calculates the cosine in radians."
+msgstr ""
+
#. nbqKZ
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:224
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:355
msgctxt "inputwinmenu|tag"
msgid "Tangent"
msgstr "Tangentti"
+#. LNEBV
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:359
+msgctxt "inputwinmenu|extended_tip|tag"
+msgid "Calculates the tangent in radians."
+msgstr ""
+
#. PUrKG
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:232
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:368
msgctxt "inputwinmenu|asin"
msgid "Arcsine"
msgstr "Arkussini"
+#. Fuemd
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:372
+msgctxt "inputwinmenu|extended_tip|asin"
+msgid "Calculates the arc sine in radians."
+msgstr ""
+
#. 4VKJB
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:240
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:381
msgctxt "inputwinmenu|acos"
msgid "Arccosine"
msgstr "Arkuskosini"
+#. Z62GN
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:385
+msgctxt "inputwinmenu|extended_tip|acos"
+msgid "Calculates the arc cosine in radians."
+msgstr ""
+
#. QB8fF
-#: sw/uiconfig/swriter/ui/inputwinmenu.ui:248
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:394
msgctxt "inputwinmenu|atan"
msgid "Arctangent"
msgstr "Arkustangentti"
+#. d9Bc3
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:398
+msgctxt "inputwinmenu|extended_tip|atan"
+msgid "Calculates the arc tangent in radians."
+msgstr ""
+
+#. mQRGG
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:413
+msgctxt "inputwinmenu|abs"
+msgid "Abs"
+msgstr ""
+
+#. wmZwk
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:421
+msgctxt "inputwinmenu|sign"
+msgid "Sign"
+msgstr ""
+
+#. ytZBB
+#: sw/uiconfig/swriter/ui/inputwinmenu.ui:429
+msgctxt "inputwinmenu|extended_tip|functions"
+msgid "You can choose from the following trigonometric functions:"
+msgstr ""
+
#. nnGmr
#: sw/uiconfig/swriter/ui/insertautotextdialog.ui:16
msgctxt "insertautotextdialog|InsertAutoTextDialog"
@@ -12550,84 +16578,102 @@ msgctxt "insertbookmark|InsertBookmarkDialog"
msgid "Bookmark"
msgstr "Kirjanmerkki"
+#. fofuv
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:106
+msgctxt "insertbookmark|extended_tip|name"
+msgid "Type the name of the bookmark that you want to create. Then press Insert."
+msgstr ""
+
#. zocpL
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:115
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:117
msgctxt "insertbookmark|insert"
msgid "Insert"
msgstr "Lisää"
#. 56gF6
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:132
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:134
msgctxt "insertbookmark|name"
msgid "Name:"
msgstr "Nimi:"
#. LyrCp
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:143
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:145
msgctxt "insertbookmark|hide"
msgid "H_ide"
msgstr "Piilota"
#. FCkPS
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:162
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:164
msgctxt "insertbookmark|condlabel"
msgid "_Condition:"
msgstr "Ehto:"
#. ACcov
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:190
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:192
msgctxt "insertbookmark|bookmarks"
msgid "_Bookmarks:"
msgstr "Kirjanmerkit:"
#. XbAhB
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:223
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:225
msgctxt "insertbookmark|page"
msgid "Page"
msgstr "Sivu"
#. gmKKz
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:237
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:239
msgctxt "insertbookmark|name"
msgid "Name"
msgstr "Nimi"
#. fXQTX
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:251
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:253
msgctxt "insertbookmark|text"
msgid "Text"
msgstr "Teksti"
#. ha65m
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:265
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:267
msgctxt "insertbookmark|hidden"
msgid "Hidden"
msgstr "Piilotettu"
#. M7eFG
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:279
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:281
msgctxt "insertbookmark|condition"
msgid "Condition"
msgstr "Ehto"
#. aZFEd
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:324
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:326
msgctxt "insertbookmark|goto"
msgid "Go to"
msgstr "Siirry kirjanmerkkiin"
#. AfRGE
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:338
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:340
msgctxt "insertbookmark|delete"
msgid "Delete"
msgstr "Poista"
+#. 2XZ5g
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:346
+msgctxt "insertbookmark|extended_tip|delete"
+msgid "To delete a bookmark, select the bookmark and click the Delete button. No confirmation dialog will follow."
+msgstr ""
+
#. hvWfd
-#: sw/uiconfig/swriter/ui/insertbookmark.ui:352
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:359
msgctxt "insertbookmark|rename"
msgid "Rename"
msgstr "Nimeä uudelleen"
+#. gb2CC
+#: sw/uiconfig/swriter/ui/insertbookmark.ui:389
+msgctxt "insertbookmark|extended_tip|InsertBookmarkDialog"
+msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time."
+msgstr ""
+
#. ydP4q
#: sw/uiconfig/swriter/ui/insertbreak.ui:14
msgctxt "insertbreak|BreakDialog"
@@ -12712,6 +16758,12 @@ msgctxt "insertbreak|label1"
msgid "Type"
msgstr "Tyyppi"
+#. fYmmW
+#: sw/uiconfig/swriter/ui/insertbreak.ui:278
+msgctxt "insertbreak|extended_tip|BreakDialog"
+msgid "Inserts a manual line break, column break or a page break at the current cursor position."
+msgstr "Lisätään pakotettu rivin-, palstan tai sivunvaihto kohdistimen kohdalle."
+
#. C4mDz
#: sw/uiconfig/swriter/ui/insertcaption.ui:8
msgctxt "insertcaption|InsertCaptionDialog"
@@ -12719,79 +16771,122 @@ msgid "Insert Caption"
msgstr "Lisää kuvaotsikko"
#. 6ZfLA
-#: sw/uiconfig/swriter/ui/insertcaption.ui:27
+#: sw/uiconfig/swriter/ui/insertcaption.ui:24
msgctxt "insertcaption|auto"
msgid "Auto..."
msgstr "Automaattiset otsikot..."
+#. eNMYS
+#: sw/uiconfig/swriter/ui/insertcaption.ui:30
+msgctxt "insertcaption|extended_tip|auto"
+msgid "Opens the Caption dialog. It has the same information as the dialog you get by menu %PRODUCTNAME Writer - AutoCaption in the Options dialog box."
+msgstr "Avataan toinen Kuvaotsikko-valintaikkuna. Siinä on samat tiedot kuin Asetukset-valintaikkunan %PRODUCTNAME Writer - Automaattiotsikointi -lehdellä."
+
#. CsBbW
-#: sw/uiconfig/swriter/ui/insertcaption.ui:40
+#: sw/uiconfig/swriter/ui/insertcaption.ui:42
msgctxt "insertcaption|options"
msgid "Options..."
msgstr "Asetukset..."
#. goGzf
-#: sw/uiconfig/swriter/ui/insertcaption.ui:139
+#: sw/uiconfig/swriter/ui/insertcaption.ui:141
msgctxt "insertcaption|label1"
msgid "Caption"
msgstr "Kuvaotsikko"
#. 8q2o6
-#: sw/uiconfig/swriter/ui/insertcaption.ui:177
+#: sw/uiconfig/swriter/ui/insertcaption.ui:179
msgctxt "insertcaption|numbering_label"
msgid "Numbering:"
msgstr "Numerointi:"
#. wgBgg
-#: sw/uiconfig/swriter/ui/insertcaption.ui:191
+#: sw/uiconfig/swriter/ui/insertcaption.ui:193
msgctxt "insertcaption|separator_label"
msgid "Separator:"
msgstr "Erotin:"
#. ofzxE
-#: sw/uiconfig/swriter/ui/insertcaption.ui:205
+#: sw/uiconfig/swriter/ui/insertcaption.ui:207
msgctxt "insertcaption|position_label"
msgid "Position:"
msgstr "Sijainti:"
+#. 8tB3F
+#: sw/uiconfig/swriter/ui/insertcaption.ui:223
+msgctxt "insertcaption|extended_tip|numbering"
+msgid "Select the type of numbering that you want to use in the caption."
+msgstr "Valitaan kuvatekstissä käytettävä numerointitapa."
+
#. JuwVi
-#: sw/uiconfig/swriter/ui/insertcaption.ui:231
+#: sw/uiconfig/swriter/ui/insertcaption.ui:238
msgctxt "insertcaption|separator_edit"
msgid ": "
msgstr ": "
+#. oYaak
+#: sw/uiconfig/swriter/ui/insertcaption.ui:241
+msgctxt "insertcaption|extended_tip|separator_edit"
+msgid "Enter optional text characters to appear between the number and the caption text."
+msgstr "Annetaan valinnainen merkki, joka tulee numeron ja Kuvaotsikko-ruudun tekstin väliin."
+
#. 3QKNx
-#: sw/uiconfig/swriter/ui/insertcaption.ui:243
+#: sw/uiconfig/swriter/ui/insertcaption.ui:255
msgctxt "insertcaption|num_separator"
msgid "Numbering separator:"
msgstr "Numerointierotin:"
#. BaojC
-#: sw/uiconfig/swriter/ui/insertcaption.ui:258
+#: sw/uiconfig/swriter/ui/insertcaption.ui:270
msgctxt "insertcaption|num_separator_edit"
msgid ". "
msgstr ". "
+#. VTK2Z
+#: sw/uiconfig/swriter/ui/insertcaption.ui:273
+msgctxt "insertcaption|extended_tip|num_separator_edit"
+msgid "Type the text that you want to appear after the caption number."
+msgstr "Kirjoitetaan seliteteksti, joka tulee kuvanumeron jälkeen."
+
+#. DS3Qi
+#: sw/uiconfig/swriter/ui/insertcaption.ui:289
+msgctxt "insertcaption|extended_tip|position"
+msgid "Adds the caption above or below the selected item. This option is only available for some objects."
+msgstr "Lisätään kuvateksti valitun kohteen ylä- tai alapuolelle. Tämä vaihtoehto on käytettävissä vain joillekin objekteille."
+
#. QAJ9Q
-#: sw/uiconfig/swriter/ui/insertcaption.ui:281
+#: sw/uiconfig/swriter/ui/insertcaption.ui:303
msgctxt "insertcaption|label4"
msgid "Category:"
msgstr "Luokka:"
+#. LySa4
+#: sw/uiconfig/swriter/ui/insertcaption.ui:325
+#, fuzzy
+msgctxt "insertcaption|extended_tip|category"
+msgid "Select the caption category, or type a name to create a new category. The category text appears before the caption number in the caption label. Each predefined caption category is formatted with a paragraph style of the same name."
+msgstr "Valitaan kuvatekstin eli -otsikon luokka tai kirjoitetaan uuden luotavan luokan nimi. Luokkateksti näkyy kuvatekstissä oletuksena ennen kuvan numeroa. Kukin esimääritelty kuvatekstin luokka on muotoilut saman nimisellä kappaletyylillä. "
+
#. rJDNR
-#: sw/uiconfig/swriter/ui/insertcaption.ui:315
+#: sw/uiconfig/swriter/ui/insertcaption.ui:342
msgctxt "insertcaption|label2"
msgid "Properties"
msgstr "Ominaisuudet"
#. Pg34D
-#: sw/uiconfig/swriter/ui/insertcaption.ui:368
+#: sw/uiconfig/swriter/ui/insertcaption.ui:395
msgctxt "insertcaption|label3"
msgid "Preview"
msgstr "Esikatselu"
+#. oeQRS
+#: sw/uiconfig/swriter/ui/insertcaption.ui:429
+msgctxt "insertcaption|extended_tip|InsertCaptionDialog"
+msgid "Adds a numbered caption to a selected image, table, chart, frame, or shape."
+msgstr ""
+
#. 5k8HB
-#: sw/uiconfig/swriter/ui/insertcaption.ui:412
+#: sw/uiconfig/swriter/ui/insertcaption.ui:447
msgctxt "insertcaption|liststore1"
msgid "[None]"
msgstr "[Ei mitään]"
@@ -12803,91 +16898,214 @@ msgid "Insert Database Columns"
msgstr "Lisää tietokantasarakkeet"
#. SLAeD
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:144
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:141
msgctxt "insertdbcolumnsdialog|label1"
msgid "Insert data as:"
msgstr "Lisää tiedot muodossa:"
#. fahdL
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:162
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:159
msgctxt "insertdbcolumnsdialog|astable"
msgid "T_able"
msgstr "Taulu"
+#. FpaRE
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:169
+msgctxt "insertdbcolumnsdialog|extended_tip|astable"
+msgid "Inserts data selected from the data source browser into the document as a table."
+msgstr "Lisätään tietolähdeselaimesta valittu aineisto asiakirjaan taulukkona."
+
#. 8JSFQ
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:178
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:180
msgctxt "insertdbcolumnsdialog|asfields"
msgid "_Fields"
msgstr "Kentät"
+#. o9vrZ
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:190
+msgctxt "insertdbcolumnsdialog|extended_tip|asfields"
+msgid "Inserts data selected from the data source browser into the document as fields."
+msgstr "Lisätään tietolähdeselaimesta valittu aineisto asiakirjaan kenttinä."
+
#. vzNne
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:194
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:201
msgctxt "insertdbcolumnsdialog|astext"
msgid "_Text"
msgstr "Teksti"
+#. dYQPq
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:211
+msgctxt "insertdbcolumnsdialog|extended_tip|astext"
+msgid "Inserts data selected from the data source browser into the document as text."
+msgstr "Lisätään tietolähdeselaimesta valittu aineisto asiakirjaan tekstinä."
+
#. mbu6k
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:246
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:258
msgctxt "insertdbcolumnsdialog|label4"
msgid "Database _columns"
msgstr "Tietokannan sarakkeet"
#. q5Z9N
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:260
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:272
msgctxt "insertdbcolumnsdialog|tablecolft"
msgid "Tab_le column(s)"
msgstr "Taulun sarakkeet"
+#. GJeoX
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:298
+msgctxt "insertdbcolumnsdialog|extended_tip|allright"
+msgid "Moves all listed database fields into the Table column(s) list box."
+msgstr "Siirretään kaikki luettelon tietokantakentät Taulun sarakkeet -luetteloruutuun."
+
+#. 36dFc
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:316
+#, fuzzy
+msgctxt "insertdbcolumnsdialog|extended_tip|oneright"
+msgid "Moves the selected database field into the Table column(s) list box."
+msgstr "Siirretään valittu tietokantakenttä Taulun sarakkeet -luetteloruutuun. "
+
+#. bGF2A
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:334
+msgctxt "insertdbcolumnsdialog|extended_tip|toedit"
+msgid "Moves the fields that you selected in the Database columns list box into the selection field."
+msgstr "Siirretään kentät, jotka on valittu Tietokannan sarakkeet -luetteloruudussa, valintakentälle."
+
+#. 2NBVw
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:352
+msgctxt "insertdbcolumnsdialog|extended_tip|oneleft"
+msgid "Removes the selected database field from the Table column(s) list box"
+msgstr "Poistetaan valittu tietokantakenttä Taulun sarakkeet -luetteloruudusta."
+
+#. V2tM7
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:371
+msgctxt "insertdbcolumnsdialog|extended_tip|allleft"
+msgid "Removes all database fields from the Table column(s) list box."
+msgstr "Poistetaan kaikki tietokantakentät Taulun sarakkeet -luetteloruudusta."
+
+#. BFk6U
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:428
+msgctxt "insertdbcolumnsdialog|extended_tip|tablecols"
+msgid "Lists all database columns to be inserted into the document."
+msgstr "Luettelossa on kaikki tietokantasarakkeet, joita ollaan lisäämässä asiakirjaan."
+
+#. BBDKG
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:455
+msgctxt "insertdbcolumnsdialog|extended_tip|textview"
+msgid "Lists the database columns that you selected to be inserted into the document. You can also enter text here. This text will be also inserted into the document."
+msgstr "Luettelo asiakirjaan lisättävistä tietokannan sarakkeista. Tähän voidaan myös kirjoittaa ja kirjoitus lisätään asiakirjaan."
+
+#. wFeTt
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:513
+msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
+msgid "Specifies the database columns to be inserted into the text table."
+msgstr "Määritetään tekstitaulukkoon lisättävät tietokantasarakkeet."
+
+#. XmaQd
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:558
+msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
+msgid "Select the database columns that you want to insert it in the document."
+msgstr "Valitaan tietokannan sarakkeet, jotka aiotaan lisätä asiakirjaan."
+
#. DJStE
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:570
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:627
msgctxt "insertdbcolumnsdialog|tableheading"
msgid "Insert table heading"
msgstr "Lisää taulun otsikko"
+#. t6EBC
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:636
+msgctxt "insertdbcolumnsdialog|extended_tip|tableheading"
+msgid "Specifies whether to insert a heading line for the columns in the text table."
+msgstr "Merkinnällä määrätään, että sarakeotsikoille tulee rivi tekstitaulukkoon."
+
#. wEgCa
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:585
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:647
msgctxt "insertdbcolumnsdialog|columnname"
msgid "Apply column _name"
msgstr "Käytä sarakkeen nimeä"
+#. CXxAf
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:657
+msgctxt "insertdbcolumnsdialog|extended_tip|columnname"
+msgid "Uses the field names of the database table as headings for each of the text table columns."
+msgstr "Merkinnällä määrätään, että tekstitaulukon sarakeotsikkorivillä käytetään tietokantataulun sarakeotsikoiden tekstejä."
+
#. Aeipk
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:601
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:668
msgctxt "insertdbcolumnsdialog|rowonly"
msgid "Create row only"
msgstr "Luo vain rivi"
+#. CEFVA
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:679
+msgctxt "insertdbcolumnsdialog|extended_tip|rowonly"
+msgid "Inserts an empty heading line into the text table."
+msgstr "Merkinnällä määrätään, että tekstitaulukkoon lisätään otsikkorivi tyhjänä."
+
#. oJMmt
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:618
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:690
msgctxt "insertdbcolumnsdialog|tableformat"
msgid "Pr_operties..."
msgstr "Ominaisuudet..."
+#. s2Yfx
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:697
+msgctxt "insertdbcolumnsdialog|extended_tip|tableformat"
+msgid "Opens the Table Format dialog, which enables you to define the table properties such as borders, background, and column width."
+msgstr "Avataan Taulukon muotoilu -valintaikkuna, jossa voidaan määritellä taulukon ominaisuuksia, kuten reunat,tausta ja sarakeleveys."
+
#. EyALm
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:631
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:708
msgctxt "insertdbcolumnsdialog|autoformat"
msgid "Aut_oFormat..."
msgstr "Autom. muotoilu..."
+#. uc3tJ
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:715
+#, fuzzy
+msgctxt "insertdbcolumnsdialog|extended_tip|autoformat"
+msgid "Opens the AutoFormat dialog, in which you can select format styles that are immediately applied when inserting the table."
+msgstr "Avataan automaattiseen muotoiluun Taulukkotyyli-valintaikkuna, jossa voidaan määritellä lisättävässä taulukossa käytettävä muotoilutyyli."
+
#. Ab7c7
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:646
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:728
msgctxt "insertdbcolumnsdialog|parastylelabel"
msgid "Paragraph _style:"
msgstr "Kappaletyyli:"
+#. mTErr
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:748
+#, fuzzy
+msgctxt "insertdbcolumnsdialog|extended_tip|parastyle"
+msgid "This is where you can select other Paragraph Styles to apply to the paragraph you want to insert into the document."
+msgstr "Tässä voidaan valita lisättävälle aineistolle oma kappaleen tyylinsä käytettäväksi asiakirjassa."
+
#. seYaw
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:686
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:773
msgctxt "insertdbcolumnsdialog|fromdatabase"
msgid "From _database"
msgstr "Tietokannasta"
+#. FWyqG
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:783
+msgctxt "insertdbcolumnsdialog|extended_tip|fromdatabase"
+msgid "Accepts the database formats."
+msgstr "Hyväksytään tietokannassa käytetty muotoilu."
+
#. sDwyx
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:702
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:794
msgctxt "insertdbcolumnsdialog|userdefined"
msgid "_User-defined"
msgstr "Käyttäjän määrittämä"
+#. KRqrf
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:807
+msgctxt "insertdbcolumnsdialog|extended_tip|userdefined"
+msgid "Specifies a format from the list, if the format information of certain data fields is not accepted."
+msgstr "Jos tiettyjen kenttien muotoilutietoja ei käytetä, niiden muotoilu määritetään luettelosta."
+
#. 7HFcY
-#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:747
+#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:844
msgctxt "insertdbcolumnsdialog|label3"
msgid "Format"
msgstr "Muotoilu"
@@ -12899,101 +17117,210 @@ msgid "Insert Footnote/Endnote"
msgstr "Lisää ala- tai loppuviite"
#. PLsmF
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:44
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:42
msgctxt "insertfootnote|prev"
msgid "Previous footnote/endnote"
msgstr "Edellinen ala- tai loppuviite"
+#. LdyGB
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
+msgctxt "insertfootnote|extended_tip|prev"
+msgid "Moves to the previous footnote or endnote anchor in the document."
+msgstr "Siirrytään asiakirjassa edelliseen ala- tai loppuviitemerkintään."
+
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:56
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr "Seuraava ala- tai loppuviite"
+#. 5uMgu
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
+msgctxt "insertfootnote|extended_tip|next"
+msgid "Moves to the next footnote or endnote anchor in the document."
+msgstr "Siirrytään asiakirjassa seuraavaan ala- tai loppuviitemerkintään."
+
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:150
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:160
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "Automaattinen"
+#. 5B8vB
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:171
+msgctxt "insertfootnote|extended_tip|automatic"
+msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
+msgstr "Määrätään lisättäville ala- tai loppuviitteille juoksevat numerot."
+
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:183
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr "Merkki:"
+#. KuhfJ
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:197
+msgctxt "insertfootnote|extended_tip|character"
+msgid "Choose this option to define a character or symbol for the current footnote."
+msgstr ""
+
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:200
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:220
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "Merkki"
+#. BPv7S
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:221
+msgctxt "insertfootnote|extended_tip|characterentry"
+msgid "Choose this option to define a character or symbol for the current footnote."
+msgstr ""
+
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:211
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:232
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "Valitse…"
+#. XDgLr
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:240
+#, fuzzy
+msgctxt "insertfootnote|extended_tip|choosecharacter"
+msgid "Inserts a special character as a footnote or endnote anchor."
+msgstr "Lisätään erikoismerkki ala- tai loppuviitteen merkinnäksi."
+
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:231
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:257
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "Numerointi"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:264
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "Alaviite"
+#. Kn3DE
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:301
+msgctxt "insertfootnote|extended_tip|footnote"
+msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
+msgstr "Lisätään asiakirjaan alaviitteen merkintä kohdistimen kohdalle ja alaviitteen teksti sivun alareunaan."
+
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:282
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "Loppuviite"
+#. smdRn
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:324
+msgctxt "insertfootnote|extended_tip|endnote"
+msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
+msgstr "Lisätään asiakirjaan loppuviitteen merkintä kohdistimen kohdalle ja loppuviitteen teksti asiakirjan loppuun."
+
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:306
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:342
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "Tyyppi"
+#. 4uq24
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:374
+msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
+msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
+msgstr ""
+
#. ApbYD
#: sw/uiconfig/swriter/ui/insertscript.ui:18
msgctxt "insertscript|InsertScriptDialog"
msgid "Insert Script"
msgstr "Lisää komentosarja"
+#. H6Gmd
+#: sw/uiconfig/swriter/ui/insertscript.ui:47
+msgctxt "insertscript|extended_tip|previous"
+msgid "Jump to Previous Script."
+msgstr "Hyppää edelliseen komentosarjaan"
+
+#. xDqL5
+#: sw/uiconfig/swriter/ui/insertscript.ui:64
+msgctxt "insertscript|extended_tip|next"
+msgid "Jump to Next Script."
+msgstr "Hyppää seuraavaan komentosarjaan"
+
#. JbTo2
-#: sw/uiconfig/swriter/ui/insertscript.ui:136
+#: sw/uiconfig/swriter/ui/insertscript.ui:146
msgctxt "insertscript|label1"
msgid "Script type:"
msgstr "Komentosarjatyyppi:"
#. u2JVC
-#: sw/uiconfig/swriter/ui/insertscript.ui:148
+#: sw/uiconfig/swriter/ui/insertscript.ui:158
msgctxt "insertscript|scripttype"
msgid "JavaScript"
msgstr "JavaScript"
+#. tUjiC
+#: sw/uiconfig/swriter/ui/insertscript.ui:161
+msgctxt "insertscript|extended_tip|scripttype"
+msgid "Enter the type of script that you want to insert."
+msgstr "Annetaan lisättävän komentosarjan tyyppi."
+
#. GFmMH
-#: sw/uiconfig/swriter/ui/insertscript.ui:158
+#: sw/uiconfig/swriter/ui/insertscript.ui:173
msgctxt "insertscript|url"
msgid "URL:"
msgstr "URL-osoite:"
+#. sYT47
+#: sw/uiconfig/swriter/ui/insertscript.ui:184
+msgctxt "insertscript|extended_tip|url"
+msgid "Adds a link to a script file. Click the URL radio button, and then enter the link in the box. You can also click the Browse button, locate the file, and then click Insert."
+msgstr "Lisätään linkki komentosarjatiedostoon. Napsautetaan URL-osoite-valintanappia ja syötetään sitten linkki ruutuun. Myös selauspainiketta (...) voidaan napsauttaa, paikallistaa tiedosto ja sitten napsauttaa Lisää-painiketta."
+
+#. v7yUw
+#: sw/uiconfig/swriter/ui/insertscript.ui:201
+msgctxt "insertscript|extended_tip|urlentry"
+msgid "Adds a link to a script file. Click the URL radio button, and then enter the link in the box. You can also click the Browse button, locate the file, and then click Insert."
+msgstr "Lisätään linkki komentosarjatiedostoon. Napsautetaan URL-osoite-valintanappia ja syötetään sitten linkki ruutuun. Myös selauspainiketta (...) voidaan napsauttaa, paikallistaa tiedosto ja sitten napsauttaa Lisää-painiketta."
+
#. 9XGDv
-#: sw/uiconfig/swriter/ui/insertscript.ui:187
+#: sw/uiconfig/swriter/ui/insertscript.ui:212
msgctxt "insertscript|browse"
msgid "Browse…"
msgstr "Selaa…"
+#. rFmHc
+#: sw/uiconfig/swriter/ui/insertscript.ui:219
+msgctxt "insertscript|extended_tip|browse"
+msgid "Locate the script file that you want to link to, and then click Insert."
+msgstr "Paikallistetaan linkitettävä komentosarjatiedosto ja napsautetaan sitten Lisää-painiketta."
+
#. pmdTa
-#: sw/uiconfig/swriter/ui/insertscript.ui:200
+#: sw/uiconfig/swriter/ui/insertscript.ui:230
msgctxt "insertscript|text"
msgid "Text:"
msgstr "Teksti:"
+#. D694K
+#: sw/uiconfig/swriter/ui/insertscript.ui:241
+msgctxt "insertscript|extended_tip|text"
+msgid "Enter the script code that you want to insert."
+msgstr "Kirjoitetaan lisättävä komentosarja."
+
+#. 8GXCG
+#: sw/uiconfig/swriter/ui/insertscript.ui:266
+msgctxt "insertscript|extended_tip|textentry"
+msgid "Enter the script code that you want to insert."
+msgstr "Kirjoitetaan lisättävä komentosarja."
+
+#. nSrqS
+#: sw/uiconfig/swriter/ui/insertscript.ui:303
+msgctxt "insertscript|extended_tip|InsertScriptDialog"
+msgid "Inserts a script at the current cursor position in an HTML or text document."
+msgstr "Lisätään komentosarja HTML- tai tekstiasiakirjaan kohdistimen kohdalle."
+
#. hqFAX
#: sw/uiconfig/swriter/ui/insertsectiondialog.ui:8
msgctxt "insertsectiondialog|InsertSectionDialog"
@@ -13048,66 +17375,138 @@ msgctxt "inserttable|ok"
msgid "Insert"
msgstr "Lisää"
+#. AzYkF
+#: sw/uiconfig/swriter/ui/inserttable.ui:61
+msgctxt "inserttable|extended_tip|ok"
+msgid "Saves all changes and closes dialog."
+msgstr ""
+
+#. M4Bgm
+#: sw/uiconfig/swriter/ui/inserttable.ui:80
+msgctxt "inserttable|extended_tip|cancel"
+msgid "Closes dialog and discards all changes."
+msgstr ""
+
+#. zNdax
+#: sw/uiconfig/swriter/ui/inserttable.ui:151
+msgctxt "inserttable|extended_tip|nameedit"
+msgid "Enter a name for the table."
+msgstr "Nimetään taulukko."
+
#. nrFC2
-#: sw/uiconfig/swriter/ui/inserttable.ui:150
+#: sw/uiconfig/swriter/ui/inserttable.ui:165
msgctxt "inserttable|label3"
msgid "_Name:"
msgstr "_Nimi:"
#. ScZyw
-#: sw/uiconfig/swriter/ui/inserttable.ui:164
+#: sw/uiconfig/swriter/ui/inserttable.ui:179
msgctxt "inserttable|3"
msgid "_Columns:"
msgstr "Sarakkeita:"
+#. AWrBU
+#: sw/uiconfig/swriter/ui/inserttable.ui:199
+msgctxt "inserttable|extended_tip|colspin"
+msgid "Enter the number of columns that you want in the table."
+msgstr "Annetaan taulukkoon tulevien sarakkeiden lukumäärä."
+
#. f3nKw
-#: sw/uiconfig/swriter/ui/inserttable.ui:192
+#: sw/uiconfig/swriter/ui/inserttable.ui:212
msgctxt "inserttable|4"
msgid "_Rows:"
msgstr "Rivejä:"
+#. TFLFE
+#: sw/uiconfig/swriter/ui/inserttable.ui:232
+msgctxt "inserttable|extended_tip|rowspin"
+msgid "Enter the number of rows that you want in the table."
+msgstr "Annetaan taulukkoon tulevien rivien lukumäärä."
+
#. M2tGB
-#: sw/uiconfig/swriter/ui/inserttable.ui:224
+#: sw/uiconfig/swriter/ui/inserttable.ui:249
msgctxt "inserttable|label1"
msgid "General"
msgstr "Yleiset"
#. dYEPP
-#: sw/uiconfig/swriter/ui/inserttable.ui:262
+#: sw/uiconfig/swriter/ui/inserttable.ui:287
msgctxt "inserttable|headercb"
msgid "Hea_ding"
msgstr "Otsikko"
+#. EZBnS
+#: sw/uiconfig/swriter/ui/inserttable.ui:296
+msgctxt "inserttable|extended_tip|headercb"
+msgid "Includes a heading row in the table."
+msgstr "Taulukkoon tulee otsikkorivi."
+
#. 7obXo
-#: sw/uiconfig/swriter/ui/inserttable.ui:277
+#: sw/uiconfig/swriter/ui/inserttable.ui:307
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
msgstr "Toista otsikkorivit uusilla sivuilla"
+#. LdEem
+#: sw/uiconfig/swriter/ui/inserttable.ui:319
+msgctxt "inserttable|extended_tip|repeatcb"
+msgid "Repeats the heading of the table at the top of subsequent page if the table spans more than one page."
+msgstr "Taulukon otsikkorivi toistetaan niillä sivuilla, joille taulukko jatkuu."
+
#. EkDeF
-#: sw/uiconfig/swriter/ui/inserttable.ui:295
+#: sw/uiconfig/swriter/ui/inserttable.ui:330
msgctxt "inserttable|dontsplitcb"
msgid "Don’t _split table over pages"
msgstr "Älä jaa taulukkoa usealle sivulle"
+#. rGaCK
+#: sw/uiconfig/swriter/ui/inserttable.ui:339
+msgctxt "inserttable|extended_tip|dontsplitcb"
+msgid "Prevents the table from spanning more than one page."
+msgstr "Merkintä estää taulukon jatkumisen useammalle sivulle."
+
+#. NveMH
+#: sw/uiconfig/swriter/ui/inserttable.ui:364
+msgctxt "inserttable|extended_tip|repeatheaderspin"
+msgid "Select the number of rows that you want to use for the heading."
+msgstr "Määrätään otsikon rivimäärä."
+
#. kkA32
-#: sw/uiconfig/swriter/ui/inserttable.ui:332
+#: sw/uiconfig/swriter/ui/inserttable.ui:377
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
msgstr "Otsikkorivejä:"
#. D26kf
-#: sw/uiconfig/swriter/ui/inserttable.ui:355
+#: sw/uiconfig/swriter/ui/inserttable.ui:400
msgctxt "inserttable|label2"
msgid "Options"
msgstr "Asetukset"
+#. GRq9m
+#: sw/uiconfig/swriter/ui/inserttable.ui:443
+msgctxt "inserttable|extended_tip|previewinstable"
+msgid "Displays a preview of the current selection."
+msgstr ""
+
+#. QDdwV
+#: sw/uiconfig/swriter/ui/inserttable.ui:485
+msgctxt "inserttable|extended_tip|formatlbinstable"
+msgid "Select a predefined style for the new table."
+msgstr ""
+
#. 9FGjK
-#: sw/uiconfig/swriter/ui/inserttable.ui:449
+#: sw/uiconfig/swriter/ui/inserttable.ui:504
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
msgstr "Tyylit"
+#. qHExF
+#: sw/uiconfig/swriter/ui/inserttable.ui:536
+msgctxt "inserttable|extended_tip|InsertTableDialog"
+msgid "Inserts a table into the 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 ""
+
#. b4mJy
#: sw/uiconfig/swriter/ui/labeldialog.ui:8
msgctxt "labeldialog|LabelDialog"
@@ -13120,42 +17519,54 @@ msgctxt "labeldialog|ok"
msgid "_New Document"
msgstr "Uusi asiakirja"
+#. HF8VF
+#: sw/uiconfig/swriter/ui/labeldialog.ui:34
+msgctxt "labeldialog|extended_tip|ok"
+msgid "Creates a new document for editing."
+msgstr "Luodaan uusi asiakirja muokattavaksi."
+
#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:135
+#: sw/uiconfig/swriter/ui/labeldialog.ui:140
msgctxt "labeldialog|medium"
msgid "Medium"
msgstr "Materiaali"
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:181
+#: sw/uiconfig/swriter/ui/labeldialog.ui:186
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "Osoitetarrat"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:204
+#: sw/uiconfig/swriter/ui/labeldialog.ui:233
msgctxt "labeldialog|private"
msgid "Private"
msgstr "Henkilökohtainen"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:251
+#: sw/uiconfig/swriter/ui/labeldialog.ui:280
msgctxt "labeldialog|business"
msgid "Business"
msgstr "Liiketoiminta"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:298
+#: sw/uiconfig/swriter/ui/labeldialog.ui:327
msgctxt "labeldialog|format"
msgid "Format"
msgstr "Muotoilu"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:345
+#: sw/uiconfig/swriter/ui/labeldialog.ui:374
msgctxt "labeldialog|options"
msgid "Options"
msgstr "Asetukset"
+#. uB6wE
+#: sw/uiconfig/swriter/ui/labeldialog.ui:401
+msgctxt "labeldialog|extended_tip|LabelDialog"
+msgid "Allows you to create labels. Labels are created in a text document."
+msgstr ""
+
#. ZNbvM
#: sw/uiconfig/swriter/ui/labelformatpage.ui:35
msgctxt "labelformatpage|label1"
@@ -13222,60 +17633,168 @@ msgctxt "labelformatpage|save"
msgid "_Save..."
msgstr "Tallenna..."
+#. DEEfq
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:181
+msgctxt "labelformatpage|extended_tip|save"
+msgid "Saves the current label or business card format."
+msgstr "Tallennetaan käsiteltävän tarra- tai käyntikorttiarkin tyyppi (tarramuoto)."
+
+#. CSycD
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:199
+msgctxt "labelformatpage|extended_tip|hori"
+msgid "Displays the distance between the left edges of adjacent labels or business cards. If you are defining a custom format, enter a value here."
+msgstr "Kenttä esittää vierekkäisten tarrojen tai käyntikorttien etäisyyden vasemmasta reunasta vasempaan reunaan. Käyttäjän määrittämä mitta syötetään tähän."
+
+#. wKgmD
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:216
+msgctxt "labelformatpage|extended_tip|vert"
+msgid "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."
+msgstr "Kentässä näkyy allekkaisten tarrojen tai käyntikorttien etäisyys yläreunasta yläreunaan arkilla. Käyttäjän määrittämä mitta syötetään tähän."
+
+#. iSpdv
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:233
+msgctxt "labelformatpage|extended_tip|width"
+msgid "Displays the width for the label or the business card. If you are defining a custom format, enter a value here."
+msgstr "Kentässä näkyy tarran tai käyntikortin leveys. Käyttäjän määrittämä mitta syötetään tähän."
+
+#. WGJFY
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:250
+msgctxt "labelformatpage|extended_tip|height"
+msgid "Displays the height for the label or business card. If you are defining a custom format, enter a value here."
+msgstr "Kentässä näkyy tarran tai käyntikortin korkeus. Käyttäjän määrittämä mitta syötetään tähän."
+
+#. tGisE
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:267
+msgctxt "labelformatpage|extended_tip|left"
+msgid "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."
+msgstr "Kentän arvo on etäisyys paperin vasemmasta reunasta ensimmäisen tarran tai käyntikortin vasempaan reunaan. Käyttäjän määrittämä mitta syötetään tähän."
+
+#. aMAV5
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:284
+msgctxt "labelformatpage|extended_tip|top"
+msgid "Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here."
+msgstr "Kentän arvo on etäisyys paperin yläreunasta ensimmäisen tarran tai käyntikortin yläreunaan. Käyttäjän määrittämä mitta syötetään tähän."
+
+#. tzdCa
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:301
+msgctxt "labelformatpage|extended_tip|cols"
+msgid "Enter the number of labels or business cards that you want to span the width of the page."
+msgstr "Kirjoitetaan rinnakkaisten tarrojen tai käyntikorttien lukumäärä (palstamäärä) paperin leveyssuunnassa."
+
+#. CeSdu
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:318
+msgctxt "labelformatpage|extended_tip|rows"
+msgid "Enter the number of labels or business cards that you want to span the height of the page."
+msgstr "Kirjoitetaan allekkaisten tarrojen tai käyntikorttien lukumäärä paperin pystysuunnassa."
+
+#. ecGH2
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:402
+msgctxt "labelformatpage|extended_tip|type"
+msgid "Enter or select a label type."
+msgstr "Kirjoitetaan tai valitaan tarratyyppi."
+
+#. Uhwgr
+#: sw/uiconfig/swriter/ui/labelformatpage.ui:420
+msgctxt "labelformatpage|extended_tip|LabelFormatPage"
+msgid "Set paper formatting options."
+msgstr "Tehdään arkin muotoilumääritykset."
+
#. E9bCh
#: sw/uiconfig/swriter/ui/labeloptionspage.ui:47
msgctxt "labeloptionspage|entirepage"
msgid "_Entire page"
msgstr "Koko sivu"
+#. wrdGY
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:57
+msgctxt "labeloptionspage|extended_tip|entirepage"
+msgid "Creates a full page of labels or business cards."
+msgstr ""
+
#. cDFub
-#: sw/uiconfig/swriter/ui/labeloptionspage.ui:64
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:69
msgctxt "labeloptionspage|singlelabel"
msgid "_Single label"
msgstr "Yksittäinen tarra"
+#. 5Jtrz
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:80
+msgctxt "labeloptionspage|extended_tip|singlelabel"
+msgid "Prints a single label or business card on a page."
+msgstr ""
+
#. MfBnH
-#: sw/uiconfig/swriter/ui/labeloptionspage.ui:93
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:103
msgctxt "labeloptionspage|label4"
msgid "Colu_mn"
msgstr "Sarake"
+#. rg2vY
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:121
+msgctxt "labeloptionspage|extended_tip|cols"
+msgid "Enter the number of labels or business cards that you want to have in a row on your page."
+msgstr "Annetaan yksittäistulostettavan tarran tai kortin palsta arkilla."
+
#. 9xfPc
-#: sw/uiconfig/swriter/ui/labeloptionspage.ui:130
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:145
msgctxt "labeloptionspage|label5"
msgid "Ro_w"
msgstr "Rivi"
+#. Td3uW
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:163
+msgctxt "labeloptionspage|extended_tip|rows"
+msgid "Enter the number of rows of labels or business cards that you want to have on your page."
+msgstr "Annetaan yksittäin tulostettavan tarran tai kortin rivinumero tarroina arkilla."
+
#. dPmJF
-#: sw/uiconfig/swriter/ui/labeloptionspage.ui:166
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:186
msgctxt "labeloptionspage|synchronize"
msgid "Synchroni_ze contents"
msgstr "Synkronoi sisältö"
+#. ZNG3x
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:195
+msgctxt "labeloptionspage|extended_tip|synchronize"
+msgid "Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the Synchronize Labels button."
+msgstr ""
+
#. 97jZe
-#: sw/uiconfig/swriter/ui/labeloptionspage.ui:188
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:213
msgctxt "labeloptionspage|label1"
msgid "Distribute"
msgstr "Jaa"
#. f57xo
-#: sw/uiconfig/swriter/ui/labeloptionspage.ui:223
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:248
msgctxt "labeloptionspage|setup"
msgid "Setup..."
msgstr "Asetukset..."
+#. eBLwT
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:255
+msgctxt "labeloptionspage|extended_tip|setup"
+msgid "Opens the Printer Setup dialog."
+msgstr ""
+
#. ePWUe
-#: sw/uiconfig/swriter/ui/labeloptionspage.ui:239
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:269
msgctxt "labeloptionspage|printername"
msgid "Printer Name"
msgstr "Tulostimen nimi"
#. GoP4B
-#: sw/uiconfig/swriter/ui/labeloptionspage.ui:257
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:287
msgctxt "labeloptionspage|label2"
msgid "Printer"
msgstr "Tulostin"
+#. BxCVt
+#: sw/uiconfig/swriter/ui/labeloptionspage.ui:302
+msgctxt "labeloptionspage|extended_tip|LabelOptionsPage"
+msgid "Sets additional options for your labels or business cards, including text synchronization and printer settings."
+msgstr "Tehdään lisämäärityksiä tarroille ja käyntikorteilla, mukaan luettuna tekstin synkronointi ja tulostinasetukset."
+
#. PQHNf
#: sw/uiconfig/swriter/ui/linenumbering.ui:27
msgctxt "linenumbering|LineNumberingDialog"
@@ -13283,197 +17802,323 @@ msgid "Line Numbering"
msgstr "Rivien numerointi"
#. fUTMR
-#: sw/uiconfig/swriter/ui/linenumbering.ui:105
+#: sw/uiconfig/swriter/ui/linenumbering.ui:102
msgctxt "linenumbering|shownumbering"
msgid "Show numbering"
msgstr "Näytä numerointi"
+#. brVav
+#: sw/uiconfig/swriter/ui/linenumbering.ui:112
+msgctxt "linenumbering|extended_tip|shownumbering"
+msgid "Adds line numbers to the current document."
+msgstr "Lisätään rivinumerot käsiteltävään asiakirjaan."
+
#. GCj2M
-#: sw/uiconfig/swriter/ui/linenumbering.ui:148
+#: sw/uiconfig/swriter/ui/linenumbering.ui:150
msgctxt "linenumbering|characterstyle"
msgid "Character style:"
msgstr "Merkkityyli:"
#. nHiTU
-#: sw/uiconfig/swriter/ui/linenumbering.ui:162
+#: sw/uiconfig/swriter/ui/linenumbering.ui:164
msgctxt "linenumbering|format"
msgid "Format:"
msgstr "Muotoilu:"
#. PCFPj
-#: sw/uiconfig/swriter/ui/linenumbering.ui:174
+#: sw/uiconfig/swriter/ui/linenumbering.ui:176
msgctxt "linenumbering|position"
msgid "Position:"
msgstr "Sijainti:"
#. EFB9m
-#: sw/uiconfig/swriter/ui/linenumbering.ui:188
+#: sw/uiconfig/swriter/ui/linenumbering.ui:190
msgctxt "linenumbering|spacing"
msgid "Spacing:"
msgstr "Välit:"
#. NZABV
-#: sw/uiconfig/swriter/ui/linenumbering.ui:202
+#: sw/uiconfig/swriter/ui/linenumbering.ui:204
msgctxt "linenumbering|interval"
msgid "Interval:"
msgstr "Väli:"
+#. 4WhHD
+#: sw/uiconfig/swriter/ui/linenumbering.ui:220
+msgctxt "linenumbering|extended_tip|styledropdown"
+msgid "Select the formatting style that you want to use for the line numbers."
+msgstr "Valitaan rivinumeroille käytettävä muotoilutyyli."
+
+#. tvmW5
+#: sw/uiconfig/swriter/ui/linenumbering.ui:236
+msgctxt "linenumbering|extended_tip|formatdropdown"
+msgid "Select the numbering style that you want to use."
+msgstr "Valitaan käytettävä numerointityyli."
+
#. ntwJw
-#: sw/uiconfig/swriter/ui/linenumbering.ui:239
+#: sw/uiconfig/swriter/ui/linenumbering.ui:251
msgctxt "linenumbering|positionstore"
msgid "Left"
msgstr "Vasen"
#. 3BCVp
-#: sw/uiconfig/swriter/ui/linenumbering.ui:240
+#: sw/uiconfig/swriter/ui/linenumbering.ui:252
msgctxt "linenumbering|positionstore"
msgid "Right"
msgstr "Oikea"
#. yBNwG
-#: sw/uiconfig/swriter/ui/linenumbering.ui:241
+#: sw/uiconfig/swriter/ui/linenumbering.ui:253
msgctxt "linenumbering|positionstore"
msgid "Inner"
msgstr "Sisempi"
#. 8ReZp
-#: sw/uiconfig/swriter/ui/linenumbering.ui:242
+#: sw/uiconfig/swriter/ui/linenumbering.ui:254
msgctxt "linenumbering|positionstore"
msgid "Outer"
msgstr "Ulompi"
+#. hhv5t
+#: sw/uiconfig/swriter/ui/linenumbering.ui:258
+msgctxt "linenumbering|extended_tip|positiondropdown"
+msgid "Select where you want the line numbers to appear."
+msgstr "Valitaan, missä kohdassa rivinumerot näkyvät."
+
+#. 34vWC
+#: sw/uiconfig/swriter/ui/linenumbering.ui:277
+msgctxt "linenumbering|extended_tip|spacingspin"
+msgid "Enter the amount of space that you want to leave between the line numbers and the text."
+msgstr "Annetaan sen välin suuruuden, joka jää rivinumeron ja tekstin väliin."
+
+#. mPYiA
+#: sw/uiconfig/swriter/ui/linenumbering.ui:299
+msgctxt "linenumbering|extended_tip|intervalspin"
+msgid "Enter the counting interval for the line numbers."
+msgstr "Annetaan rivinumeroiden näkyvä askelväli."
+
#. YatD8
-#: sw/uiconfig/swriter/ui/linenumbering.ui:286
+#: sw/uiconfig/swriter/ui/linenumbering.ui:313
msgctxt "linenumbering|intervallines"
msgid "lines"
msgstr "riviä"
#. i8DYH
-#: sw/uiconfig/swriter/ui/linenumbering.ui:310
+#: sw/uiconfig/swriter/ui/linenumbering.ui:337
msgctxt "linenumbering|view"
msgid "View"
msgstr "Näytä"
#. D8TER
-#: sw/uiconfig/swriter/ui/linenumbering.ui:344
+#: sw/uiconfig/swriter/ui/linenumbering.ui:371
msgctxt "linenumbering|text"
msgid "Text:"
msgstr "Teksti:"
#. Lsj2A
-#: sw/uiconfig/swriter/ui/linenumbering.ui:358
+#: sw/uiconfig/swriter/ui/linenumbering.ui:385
msgctxt "linenumbering|every"
msgid "Every:"
msgstr "Toistoväli:"
+#. fwXBB
+#: sw/uiconfig/swriter/ui/linenumbering.ui:404
+msgctxt "linenumbering|extended_tip|textentry"
+msgid "Enter the text that you want to use as a separator."
+msgstr "Syötetään teksti, jota käytetään rivinumeroiden välissä."
+
+#. Cugqr
+#: sw/uiconfig/swriter/ui/linenumbering.ui:426
+msgctxt "linenumbering|extended_tip|linesspin"
+msgid "Enter the number of lines to leave between the separators."
+msgstr "Annetaan erottimen toistumiselle rivimäärä."
+
#. u6G7c
-#: sw/uiconfig/swriter/ui/linenumbering.ui:403
+#: sw/uiconfig/swriter/ui/linenumbering.ui:440
msgctxt "linenumbering|lines"
msgid "lines"
msgstr "riviä"
#. Toub5
-#: sw/uiconfig/swriter/ui/linenumbering.ui:427
+#: sw/uiconfig/swriter/ui/linenumbering.ui:464
msgctxt "linenumbering|separator"
msgid "Separator"
msgstr "Erotin"
#. aDAQE
-#: sw/uiconfig/swriter/ui/linenumbering.ui:459
+#: sw/uiconfig/swriter/ui/linenumbering.ui:496
msgctxt "linenumbering|blanklines"
msgid "Blank lines"
msgstr "Tyhjät rivit"
+#. bmBtx
+#: sw/uiconfig/swriter/ui/linenumbering.ui:506
+msgctxt "linenumbering|extended_tip|blanklines"
+msgid "Includes empty paragraphs in the line count."
+msgstr "Tyhjät kappaleet lasketaan rivimäärään."
+
#. qnnhG
-#: sw/uiconfig/swriter/ui/linenumbering.ui:476
+#: sw/uiconfig/swriter/ui/linenumbering.ui:518
msgctxt "linenumbering|linesintextframes"
msgid "Lines in text frames"
msgstr "Rivit tekstikehyksissä"
+#. ShHR5
+#: sw/uiconfig/swriter/ui/linenumbering.ui:527
+msgctxt "linenumbering|extended_tip|linesintextframes"
+msgid "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."
+msgstr ""
+
#. tAaU6
-#: sw/uiconfig/swriter/ui/linenumbering.ui:492
+#: sw/uiconfig/swriter/ui/linenumbering.ui:539
msgctxt "linenumbering|showfooterheadernumbering"
msgid "Include header and footer"
msgstr "Sisällytä ylä- ja alatunnisteet"
#. FPgbW
-#: sw/uiconfig/swriter/ui/linenumbering.ui:508
+#: sw/uiconfig/swriter/ui/linenumbering.ui:555
msgctxt "linenumbering|restarteverynewpage"
msgid "Restart every new page"
msgstr "Aloita alusta sivun vaihtuessa"
+#. khfKF
+#: sw/uiconfig/swriter/ui/linenumbering.ui:564
+msgctxt "linenumbering|extended_tip|restarteverynewpage"
+msgid "Restarts line numbering at the top of each page in the document."
+msgstr "Rivinumerointi on sivukohtainen koko asiakirjassa."
+
#. xBGhA
-#: sw/uiconfig/swriter/ui/linenumbering.ui:531
+#: sw/uiconfig/swriter/ui/linenumbering.ui:583
msgctxt "linenumbering|count"
msgid "Count"
msgstr "Laske"
+#. 9Pyhz
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:48
+msgctxt "extended_tip|displayname"
+msgid "Enter your name."
+msgstr "Kirjoita oma nimesi."
+
+#. Sqhr9
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:65
+msgctxt "extended_tip|address"
+msgid "Enter your email address for replies."
+msgstr ""
+
+#. yBLGV
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:82
+msgctxt "extended_tip|replyto"
+msgid "Enter the address to use for email replies."
+msgstr ""
+
#. nfWNf
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:81
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:96
msgctxt "mailconfigpage|displayname_label"
msgid "_Your name:"
msgstr "Koko nimi:"
#. 9BEvE
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:95
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:110
msgctxt "mailconfigpage|address_label"
msgid "_Email address:"
msgstr "_Sähköpostiosoite:"
#. 9rEdp
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:106
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:121
msgctxt "mailconfigpage|replytocb"
msgid "Send replies to _different email address"
msgstr "Lähetä vastaukset eri osoitteeseen"
+#. jAywn
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:130
+msgctxt "extended_tip|replytocb"
+msgid "Uses the email address that you enter in the Reply address text box as the reply-to email address."
+msgstr ""
+
#. AESca
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:124
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:144
msgctxt "mailconfigpage|replyto_label"
msgid "_Reply address:"
msgstr "Vastausosoite:"
#. 5KJrn
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:144
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:164
msgctxt "mailconfigpage|label1"
msgid "User Information"
msgstr "Käyttäjätiedot"
+#. FUCZ9
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:205
+msgctxt "extended_tip|server"
+msgid "Enter the SMTP server name."
+msgstr "Kirjoitetaan SMTP-palvelimen nimi."
+
#. zeoLy
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:200
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:225
msgctxt "mailconfigpage|serverauthentication"
msgid "Ser_ver Authentication…"
msgstr "Palvelimelle tunnistautuminen…"
+#. iERhR
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:233
+msgctxt "extended_tip|serverauthentication"
+msgid "Opens the Server Authentication dialog where you can specify the server authentication settings for secure email."
+msgstr ""
+
+#. AqgAF
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:256
+msgctxt "extended_tip|port"
+msgid "Enter the SMTP port."
+msgstr "Annetaan SMTP-portti."
+
#. UU5RG
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:236
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:271
msgctxt "mailconfigpage|server_label"
msgid "_Server name:"
msgstr "Palvelimen nimi:"
#. BNGrw
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:250
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:285
msgctxt "mailconfigpage|port_label"
msgid "_Port:"
msgstr "Portti:"
#. RihCy
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:261
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:296
msgctxt "mailconfigpage|secure"
msgid "_Use secure connection (SSL)"
msgstr "Käytä suojattua yhteyttä (SSL)"
+#. CoPAE
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:306
+msgctxt "extended_tip|secure"
+msgid "When available, uses a secure connection to send emails."
+msgstr ""
+
#. U82eq
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:285
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:325
msgctxt "mailconfigpage|test"
msgid "_Test Settings"
msgstr "Kokeile asetuksia"
+#. tezBK
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:332
+msgctxt "extended_tip|test"
+msgid "Opens the Test Account Settings dialog to test the current settings."
+msgstr "Avataan Testaa tunnuksen asetuksia -valintaikkuna asetettujen asetusten testaamiseen."
+
#. msmFF
-#: sw/uiconfig/swriter/ui/mailconfigpage.ui:317
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:362
msgctxt "mailconfigpage|label2"
msgid "Outgoing Server (SMTP) Settings"
msgstr "Lähettävän sähköpostipalvelimen (SMTP) asetukset"
+#. 5yzqi
+#: sw/uiconfig/swriter/ui/mailconfigpage.ui:377
+msgctxt "extended_tip|MailConfigPage"
+msgid "Specifies the user information and server settings for when you send form letters as email messages."
+msgstr ""
+
#. RyDB6
#: sw/uiconfig/swriter/ui/mailmerge.ui:16
msgctxt "mailmerge|MailmergeDialog"
@@ -13481,155 +18126,245 @@ msgid "Mail Merge"
msgstr "Joukkokirje"
#. GwH4i
-#: sw/uiconfig/swriter/ui/mailmerge.ui:138
+#: sw/uiconfig/swriter/ui/mailmerge.ui:135
msgctxt "mailmerge|all"
msgid "_All"
msgstr "Kaikki"
+#. 5JC4B
+#: sw/uiconfig/swriter/ui/mailmerge.ui:145
+msgctxt "mailmerge|extended_tip|all"
+msgid "Processes all the records from the database."
+msgstr "Käsitellään kaikki tietokannan tietueet."
+
#. HZJS2
-#: sw/uiconfig/swriter/ui/mailmerge.ui:155
+#: sw/uiconfig/swriter/ui/mailmerge.ui:157
msgctxt "mailmerge|selected"
msgid "_Selected records"
msgstr "Valitut tietueet"
+#. K9dSC
+#: sw/uiconfig/swriter/ui/mailmerge.ui:167
+msgctxt "mailmerge|extended_tip|selected"
+msgid "Processes only the marked records from the database. This option is only available when you have previously marked the necessary records in the database."
+msgstr "Käsitellään vain tietokannan merkityt tietueet. Tämä vaihtoehto on käytettävissä vain, kun aiemmin on merkitty tarvittavat tietokannan tietueet."
+
#. VCERP
-#: sw/uiconfig/swriter/ui/mailmerge.ui:177
+#: sw/uiconfig/swriter/ui/mailmerge.ui:184
msgctxt "mailmerge|rbfrom"
msgid "_From:"
msgstr "Lähde:"
+#. AEMgx
+#: sw/uiconfig/swriter/ui/mailmerge.ui:194
+msgctxt "mailmerge|extended_tip|rbfrom"
+msgid "Specify the number of the first record to be printed."
+msgstr ""
+
+#. ACUEE
+#: sw/uiconfig/swriter/ui/mailmerge.ui:213
+msgctxt "mailmerge|extended_tip|from"
+msgid "Specify the number of the first record to be printed."
+msgstr ""
+
#. kSjcA
-#: sw/uiconfig/swriter/ui/mailmerge.ui:210
+#: sw/uiconfig/swriter/ui/mailmerge.ui:227
msgctxt "mailmerge|label3"
msgid "_To:"
msgstr "Kohteeseen:"
+#. sUXJo
+#: sw/uiconfig/swriter/ui/mailmerge.ui:246
+msgctxt "mailmerge|extended_tip|to"
+msgid "Specify the number of the last record to be printed."
+msgstr ""
+
#. 8ZDzD
-#: sw/uiconfig/swriter/ui/mailmerge.ui:249
+#: sw/uiconfig/swriter/ui/mailmerge.ui:271
msgctxt "mailmerge|recordslabel"
msgid "Records"
msgstr "Tietueet"
#. 9MNVA
-#: sw/uiconfig/swriter/ui/mailmerge.ui:289
+#: sw/uiconfig/swriter/ui/mailmerge.ui:311
msgctxt "mailmerge|printer"
msgid "_Printer"
msgstr "Tulostin"
+#. rMZGy
+#: sw/uiconfig/swriter/ui/mailmerge.ui:321
+msgctxt "mailmerge|extended_tip|printer"
+msgid "Prints the form letters."
+msgstr "Tulostetaan joukkokirje tulostimelle."
+
#. UeS6C
-#: sw/uiconfig/swriter/ui/mailmerge.ui:306
+#: sw/uiconfig/swriter/ui/mailmerge.ui:333
msgctxt "mailmerge|electronic"
msgid "_Electronic"
msgstr "Sähköinen"
#. 5ZWAB
-#: sw/uiconfig/swriter/ui/mailmerge.ui:323
+#: sw/uiconfig/swriter/ui/mailmerge.ui:350
msgctxt "mailmerge|file"
msgid "File"
msgstr "Tiedosto"
+#. fS96j
+#: sw/uiconfig/swriter/ui/mailmerge.ui:360
+msgctxt "mailmerge|extended_tip|file"
+msgid "Saves the form letters in files."
+msgstr "Tallennetaan joukkokirje tiedostoiksi."
+
#. o3LR6
-#: sw/uiconfig/swriter/ui/mailmerge.ui:347
+#: sw/uiconfig/swriter/ui/mailmerge.ui:379
msgctxt "mailmerge|singlejobs"
msgid "_Single print jobs"
msgstr "Yksittäiset tulostustyöt"
#. p6r4G
-#: sw/uiconfig/swriter/ui/mailmerge.ui:395
+#: sw/uiconfig/swriter/ui/mailmerge.ui:427
msgctxt "mailmerge|generate"
msgid "Generate file name from _database"
msgstr "Luo tiedoston nimi kohteesta"
+#. KEEvW
+#: sw/uiconfig/swriter/ui/mailmerge.ui:436
+msgctxt "mailmerge|extended_tip|generate"
+msgid "Generate each file name from data contained in a database."
+msgstr ""
+
#. nw8Ax
-#: sw/uiconfig/swriter/ui/mailmerge.ui:414
+#: sw/uiconfig/swriter/ui/mailmerge.ui:451
msgctxt "mailmerge|fieldlabel"
msgid "Field:"
msgstr "Kenttä:"
#. 7YFc9
-#: sw/uiconfig/swriter/ui/mailmerge.ui:427
+#: sw/uiconfig/swriter/ui/mailmerge.ui:464
msgctxt "mailmerge|pathlabel"
msgid "_Path:"
msgstr "Polku:"
#. Qmqis
-#: sw/uiconfig/swriter/ui/mailmerge.ui:442
+#: sw/uiconfig/swriter/ui/mailmerge.ui:479
msgctxt "mailmerge|fileformatlabel"
msgid "F_ile format:"
msgstr "Tiedostomuoto:"
+#. y8TZP
+#: sw/uiconfig/swriter/ui/mailmerge.ui:495
+msgctxt "mailmerge|extended_tip|field"
+msgid "Uses the content of the selected database field as the file name for the form letter."
+msgstr ""
+
+#. GLPxA
+#: sw/uiconfig/swriter/ui/mailmerge.ui:511
+msgctxt "mailmerge|extended_tip|fileformat"
+msgid "Select the file format to store the resulting document."
+msgstr ""
+
+#. JFCAP
+#: sw/uiconfig/swriter/ui/mailmerge.ui:530
+msgctxt "mailmerge|extended_tip|pathpb"
+msgid "Opens the Select Path dialog."
+msgstr "Avataan Valitse polku -valintaikkuna."
+
+#. mqhEz
+#: sw/uiconfig/swriter/ui/mailmerge.ui:546
+msgctxt "mailmerge|extended_tip|path"
+msgid "Specifies the path to store the form letters."
+msgstr "Määrätään kirjeiden tallennuspolku."
+
#. Bjh2Z
-#: sw/uiconfig/swriter/ui/mailmerge.ui:504
+#: sw/uiconfig/swriter/ui/mailmerge.ui:561
msgctxt "mailmerge|subjectlabel"
msgid "_Subject:"
msgstr "A_ihe:"
#. bqGD8
-#: sw/uiconfig/swriter/ui/mailmerge.ui:532
+#: sw/uiconfig/swriter/ui/mailmerge.ui:589
msgctxt "mailmerge|attachmentslabel"
msgid "Attachments:"
msgstr "Liitteet:"
#. nFGt3
-#: sw/uiconfig/swriter/ui/mailmerge.ui:573
+#: sw/uiconfig/swriter/ui/mailmerge.ui:630
msgctxt "mailmerge|mailformatlabel"
msgid "Mail format:"
msgstr "Sähköpostin muoto:"
#. f5arv
-#: sw/uiconfig/swriter/ui/mailmerge.ui:594
+#: sw/uiconfig/swriter/ui/mailmerge.ui:651
msgctxt "mailmerge|html"
msgid "HTM_L"
msgstr "HTML"
#. aqcBi
-#: sw/uiconfig/swriter/ui/mailmerge.ui:610
+#: sw/uiconfig/swriter/ui/mailmerge.ui:667
msgctxt "mailmerge|rtf"
msgid "RT_F"
msgstr "RTF"
#. aDQVK
-#: sw/uiconfig/swriter/ui/mailmerge.ui:626
+#: sw/uiconfig/swriter/ui/mailmerge.ui:683
msgctxt "mailmerge|swriter"
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer"
#. CnEBu
-#: sw/uiconfig/swriter/ui/mailmerge.ui:642
+#: sw/uiconfig/swriter/ui/mailmerge.ui:699
msgctxt "mailmerge|passwd-check"
msgid "Save with password"
msgstr "Tallenna salasanalla"
#. FFSYA
-#: sw/uiconfig/swriter/ui/mailmerge.ui:659
+#: sw/uiconfig/swriter/ui/mailmerge.ui:716
msgctxt "mailmerge|passwd-label"
msgid "Password field:"
msgstr "Salasanakenttä:"
#. LDBbz
-#: sw/uiconfig/swriter/ui/mailmerge.ui:721
+#: sw/uiconfig/swriter/ui/mailmerge.ui:778
msgctxt "mailmerge|singledocument"
msgid "S_ave as single document"
msgstr "Tallenna yksittäisenä asiakirjana"
+#. EFAPN
+#: sw/uiconfig/swriter/ui/mailmerge.ui:788
+msgctxt "mailmerge|extended_tip|singledocument"
+msgid "Create one big document containing all data records."
+msgstr ""
+
#. mdC58
-#: sw/uiconfig/swriter/ui/mailmerge.ui:738
+#: sw/uiconfig/swriter/ui/mailmerge.ui:800
msgctxt "mailmerge|individualdocuments"
msgid "Sa_ve as individual documents"
msgstr "Tallenna erillisinä asiakirjoina"
+#. VvLBo
+#: sw/uiconfig/swriter/ui/mailmerge.ui:810
+msgctxt "mailmerge|extended_tip|individualdocuments"
+msgid "Create one document for every one data record."
+msgstr ""
+
#. bAuH5
-#: sw/uiconfig/swriter/ui/mailmerge.ui:763
+#: sw/uiconfig/swriter/ui/mailmerge.ui:830
msgctxt "mailmerge|savemergeddoclabel"
msgid "Save Merged Document"
msgstr "Tallenna yhdistetty asiakirja"
#. hNH8a
-#: sw/uiconfig/swriter/ui/mailmerge.ui:784
+#: sw/uiconfig/swriter/ui/mailmerge.ui:851
msgctxt "mailmerge|outputlabel"
msgid "Output"
msgstr "Tuloste"
+#. sQ3GC
+#: sw/uiconfig/swriter/ui/mailmerge.ui:890
+msgctxt "mailmerge|extended_tip|MailmergeDialog"
+msgid "The Mail Merge dialog helps you in printing and saving form letters."
+msgstr ""
+
#. SjjnV
#: sw/uiconfig/swriter/ui/mailmergedialog.ui:8
msgctxt "mailmergedialog|MailMergeDialog"
@@ -13703,19 +18438,19 @@ msgid "Author"
msgstr "Tekijä"
#. GisU3
-#: sw/uiconfig/swriter/ui/managechangessidebar.ui:192
+#: sw/uiconfig/swriter/ui/managechangessidebar.ui:193
msgctxt "managechangessidebar|writerdate"
msgid "Date"
msgstr "Päivämäärä"
#. FuCGu
-#: sw/uiconfig/swriter/ui/managechangessidebar.ui:200
+#: sw/uiconfig/swriter/ui/managechangessidebar.ui:202
msgctxt "managechangessidebar|writerdesc"
msgid "Comment"
msgstr "Huomautus"
#. 2HuG3
-#: sw/uiconfig/swriter/ui/managechangessidebar.ui:208
+#: sw/uiconfig/swriter/ui/managechangessidebar.ui:211
msgctxt "managechangessidebar|writerposition"
msgid "Document Position"
msgstr "Sijainti asiakirjassa"
@@ -13852,114 +18587,180 @@ msgctxt "mergetabledialog|label1"
msgid "Mode"
msgstr "Tila"
+#. wCSht
+#: sw/uiconfig/swriter/ui/mergetabledialog.ui:158
+msgctxt "mergetabledialog|extended_tip|MergeTableDialog"
+msgid "Combines two consecutive tables into a single table. The tables must be directly next to each other and not separated by an empty paragraph."
+msgstr ""
+
#. M7mkx
#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:61
msgctxt "mmaddressblockpage|addresslist"
msgid "Select A_ddress List..."
msgstr "Valitse osoitelista..."
+#. 7vUgG
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:68
+msgctxt "mmaddressblockpage|extended_tip|addresslist"
+msgid "Opens the Select Address List dialog, where you can choose a data source for the addresses, add new addresses, or type in a new address list."
+msgstr "Avataan Valitse osoitelista -valintaikkuna, jossa voidaan valita osoitteiden tietolähde, lisätä uusia osoitteita tai kirjoittaa uusi osoitelista."
+
#. kG8DG
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:74
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:79
msgctxt "mmaddressblockpage|differentlist"
msgid "Select Different A_ddress List..."
msgstr "Valitse eri osoitelista..."
#. Sb7nE
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:95
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:100
msgctxt "mmaddressblockpage|currentaddress"
msgid "Current address list: %1"
msgstr "Valittu osoitelista: %1"
#. 8JF4w
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:115
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:120
msgctxt "mmaddressblockpage|label2"
msgid "Select the address list containing the address data you want to use. This data is needed to create the address block."
msgstr "Valitse osoitelista, joka sisältää haluamasi osoitetiedot. Tietoja tarvitaan osoitelohkon luomiseen."
#. EwS5S
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:131
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:136
msgctxt "mmaddressblockpage|label3"
msgid "1."
msgstr "1."
#. DNaP6
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:160
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:165
msgctxt "mmaddressblockpage|assign"
msgid "Match _Fields..."
msgstr "Vastaavat kentät..."
+#. seTsD
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:173
+msgctxt "mmaddressblockpage|extended_tip|assign"
+msgid "Opens the Match Fields dialog."
+msgstr "Avataan Vastaavat kentät -valintaikkuna."
+
#. jBqUV
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:183
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:193
msgctxt "mmaddressblockpage|label4"
msgid "Match the field name used in the mail merge to the column headers in your data source."
msgstr "Täsmää joukkopostin luonnissa käytetty kentän nimi tietolähteen saraketunnisteisiin."
#. WGCk4
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:199
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:209
msgctxt "mmaddressblockpage|settingsft1"
msgid "3."
msgstr "3."
#. 2rEHZ
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:232
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:242
msgctxt "mmaddressblockpage|settingsft"
msgid "2."
msgstr "2."
#. KNMW6
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:244
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:254
msgctxt "mmaddressblockpage|address"
msgid "_This document shall contain an address block"
msgstr "Tähän asiakirjaan tulee osoitelohko"
+#. 5KBsc
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:263
+msgctxt "mmaddressblockpage|extended_tip|address"
+msgid "Adds an address block to the mail merge document."
+msgstr "Lisätään osoitelohko joukkokirjeasiakirjaan."
+
#. XGCEE
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:280
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:295
msgctxt "mmaddressblockpage|settings"
msgid "_More..."
msgstr "Lisää..."
+#. irYyv
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:303
+msgctxt "mmaddressblockpage|extended_tip|settings"
+msgid "Opens the Select Address Block dialog."
+msgstr "Avataan Valitse osoitelohko -valintaikkuna."
+
+#. uu6BK
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:332
+msgctxt "mmaddressblockpage|extended_tip|settingspreview"
+msgid "Select the address block layout that you want to use."
+msgstr "Valitaan käytettävä osoitelohkon asettelu."
+
#. 6UxZF
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:328
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:353
msgctxt "mmaddressblockpage|hideempty"
msgid "_Suppress lines with just empty fields"
msgstr "Älä näytä rivejä joilla vain tyhjiä kenttiä"
+#. icdn5
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:362
+msgctxt "mmaddressblockpage|extended_tip|hideempty"
+msgid "Enable to leave empty lines out of the address."
+msgstr "Merkintä sallii tyhjien rivien jättämisen pois osoitteista."
+
+#. K73zi
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:426
+msgctxt "mmaddressblockpage|extended_tip|addresspreview"
+msgid "Shows a preview of the address block template filled with data."
+msgstr ""
+
#. de4LB
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:414
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:449
msgctxt "mmaddressblockpage|prev|tooltip_text"
msgid "Preview Previous Address Block"
msgstr "Edellisen osoitelohkon esikatselu"
+#. Eh2p9
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:453
+msgctxt "mmaddressblockpage|extended_tip|prev"
+msgid "Use the browse buttons to preview the information from the previous or next data record."
+msgstr "Selauspainikkeita käytetään edellisen tai seuraavan tietueen tietojen esikatseluun."
+
#. VJLVC
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:427
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:467
msgctxt "mmaddressblockpage|next|tooltip_text"
msgid "Preview Next Address Block"
msgstr "Seuraavan osoitelohkon esikatselu"
+#. 9sK8G
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:471
+msgctxt "mmaddressblockpage|extended_tip|next"
+msgid "Use the browse buttons to preview the information from the previous or next data record."
+msgstr "Selauspainikkeita käytetään edellisen tai seuraavan tietueen tietojen esikatseluun."
+
#. 5FAA9
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:440
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:485
msgctxt "mmaddressblockpage|documentindex"
msgid "Document: %1"
msgstr "Asiakirja: %1"
#. JmEkU
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:473
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:518
msgctxt "mmaddressblockpage|label6"
msgid "Check if the address data matches correctly."
msgstr "Tarkista että osoitteet vastaavat osoitelistaa."
#. Ek9hx
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:488
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:533
msgctxt "mmaddressblockpage|settingsft2"
msgid "4."
msgstr "4."
#. Atojr
-#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:517
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:562
msgctxt "mmaddressblockpage|label1"
msgid "Insert Address Block"
msgstr "Lisää osoitelohko"
+#. 6vUFE
+#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:577
+msgctxt "mmaddressblockpage|extended_tip|MMAddressBlockPage"
+msgid "Specify the recipients for the mail merge document as well as the layout of the address block."
+msgstr ""
+
#. qr3dv
#: sw/uiconfig/swriter/ui/mmcreatingdialog.ui:7
msgctxt "mmcreatingdialog|MMCreatingDialog"
@@ -14002,78 +18803,126 @@ msgctxt "mmlayoutpage|top"
msgid "2.00"
msgstr "2,00"
+#. XTEnY
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:99
+msgctxt "mmlayoutpage|extended_tip|top"
+msgid "Enter the amount of space to leave between the top edge of the page and the top edge of the address block."
+msgstr "Annetaan sivun yläreunan ja osoitelohkon yläreunan välin suuruus."
+
#. j3QQH
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:116
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:121
msgctxt "mmlayoutpage|align"
msgid "Align to text body"
msgstr "Tasaa leipätekstiin"
+#. BE4cD
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:130
+msgctxt "mmlayoutpage|extended_tip|align"
+msgid "Aligns the frame that contains the address block to the left page margin."
+msgstr "Kohdistetaan osoitelohkon sisältävä kehys vasempaan marginaaliin."
+
+#. nXTWc
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:155
+msgctxt "mmlayoutpage|extended_tip|left"
+msgid "Enter the amount of space to leave between the left edge of the page and the left edge of the address block."
+msgstr "Annetaan sivun vasemman marginaalin ja osoitelohkon vasemman reunan välin suuruus."
+
#. FwgfG
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:159
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:174
msgctxt "mmlayoutpage|leftft"
msgid "From _left"
msgstr "Vasemmalta"
#. hFZkG
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:196
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:211
msgctxt "mmlayoutpage|label2"
msgid "Address Block Position"
msgstr "Osoitelohkon paikka"
#. RXuEV
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:230
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:245
msgctxt "mmlayoutpage|label4"
msgid "Move"
msgstr "Siirrä"
#. tdpVa
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:244
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:259
msgctxt "mmlayoutpage|label5"
msgid "Move"
msgstr "Siirrä"
#. 8RH52
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:256
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:271
msgctxt "mmlayoutpage|up"
msgid "_Up"
msgstr "Ylös"
+#. UAeYJ
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:278
+msgctxt "mmlayoutpage|extended_tip|up"
+msgid "Moves the salutation up."
+msgstr "Siirretään tervehdystä ylemmäksi."
+
#. toRE2
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:269
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:289
msgctxt "mmlayoutpage|down"
msgid "_Down"
msgstr "Alas"
+#. JErEG
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:296
+msgctxt "mmlayoutpage|extended_tip|down"
+msgid "Moves the salutation down."
+msgstr "Siirretään tervehdystä alemmaksi."
+
#. smDgJ
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:288
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:313
msgctxt "mmlayoutpage|label3"
msgid "Salutation Position"
msgstr "Tervehdyksen paikka"
#. FsBFC
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:323
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:348
msgctxt "mmlayoutpage|label7"
msgid "_Zoom"
msgstr "Zoomaus"
#. kF4Eb
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:338
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:363
msgctxt "mmlayoutpage|zoom"
msgid "Entire page"
msgstr "Koko sivu"
+#. qaDqV
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:367
+msgctxt "mmlayoutpage|extended_tip|zoom"
+msgid "Select a magnification for the print preview."
+msgstr "Valitaan tulostuksen esikatselun suurennus."
+
#. WB6v3
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:375
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:405
msgctxt "mmlayoutpage|example-atkobject"
msgid "Preview"
msgstr "Esikatselu"
+#. bh5DE
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:406
+msgctxt "mmlayoutpage|extended_tip|example"
+msgid "Provides a preview of the salutation positioning on the page."
+msgstr ""
+
#. 2EvMJ
-#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:402
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:433
msgctxt "mmlayoutpage|label1"
msgid "Adjust Layout of Address Block and Salutation"
msgstr "Säädä osoitelohkon ja tervehdyksen asettelua"
+#. 8ACbf
+#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:448
+msgctxt "mmlayoutpage|extended_tip|MMLayoutPage"
+msgid "Specify the position of the address blocks and salutations on the documents."
+msgstr ""
+
#. 9J5W4
#: sw/uiconfig/swriter/ui/mmmailbody.ui:8
msgctxt "mmmailbody|MailBodyDialog"
@@ -14081,71 +18930,137 @@ msgid "Email Message"
msgstr "Sähköpostiviesti"
#. NdBGD
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:90
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:87
msgctxt "mmmailbody|bodyft"
msgid "Write your message here"
msgstr "Kirjoita viestisi tähän"
+#. FNsFU
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:115
+msgctxt "mmmailbody|extended_tip|bodymle"
+msgid "Enter the main text of the email."
+msgstr ""
+
#. AEVTw
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:138
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:140
msgctxt "mmmailbody|greeting"
msgid "This email should contain a salutation"
msgstr "Tämän sähköpostiviestin tulisi sisältää tervehdys"
+#. FFQ3x
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:149
+msgctxt "mmmailbody|extended_tip|greeting"
+msgid "Adds a salutation to the email."
+msgstr ""
+
#. i7T9E
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:167
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:174
msgctxt "mmmailbody|generalft"
msgid "General salutation"
msgstr "Yleinen tervehdys"
+#. fB4pf
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:198
+msgctxt "mmmailbody|extended_tip|general"
+msgid "Select the default greeting to use if a personalized salutation cannot be created."
+msgstr "Valitaan yleinen tervehdys, jos sukupuolikohtaista tervehdystä ei käytetä."
+
#. FbDGH
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:219
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:231
msgctxt "mmmailbody|femalefi"
msgid "Address list field indicating a female recipient"
msgstr "Osoitelistan kenttä naispuolisten tunnistukseen"
#. CGRhM
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:232
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:244
msgctxt "mmmailbody|femaleft"
msgid "_Female"
msgstr "Nainen"
#. AsBWM
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:246
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:258
msgctxt "mmmailbody|maleft"
msgid "_Male"
msgstr "Mies"
#. bXB8d
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:260
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:272
msgctxt "mmmailbody|femalecolft"
msgid "Field name"
msgstr "Kentän nimi"
#. 4z8EE
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:273
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:285
msgctxt "mmmailbody|femalefieldft"
msgid "Field value"
msgstr "Kentän arvo"
#. BNLQL
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:284
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:296
msgctxt "mmmailbody|newfemale"
msgid "_New..."
msgstr "Uusi..."
+#. FUyzo
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:304
+msgctxt "mmmailbody|extended_tip|newfemale"
+msgid "Opens the Custom Salutation dialog for a female recipient."
+msgstr "Avataan Mukautettu tervehdys -valintaikkuna naispuolisille vastaanottajille."
+
#. iDifX
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:298
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:315
msgctxt "mmmailbody|newmale"
msgid "N_ew..."
msgstr "Uusi..."
+#. MPBju
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:323
+msgctxt "mmmailbody|extended_tip|newmale"
+msgid "Opens the Custom Salutation dialog for a male recipient."
+msgstr "Avataan Mukautettu tervehdys -valintaikkuna miespuolisille vastaanottajille."
+
+#. qEdFG
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:340
+msgctxt "mmmailbody|extended_tip|female"
+msgid "Select the personalized greeting for a female recipient."
+msgstr "Valitaan naispuolisen vastaanottajan tervehdys."
+
+#. 6Fqxk
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:357
+msgctxt "mmmailbody|extended_tip|male"
+msgid "Select the personalized greeting for a male recipient."
+msgstr "Valitaan miespuolisen vastaanottajan tervehdys."
+
+#. DEff3
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:374
+msgctxt "mmmailbody|extended_tip|femalecol"
+msgid "Select the field name of the address database field that contains the gender information."
+msgstr "Valitaan osoitetietokannan kenttä, jossa on sukupuolet erotteleva tieto."
+
+#. GNvsR
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:398
+msgctxt "mmmailbody|extended_tip|femalefield"
+msgid "Select the field value that indicates the gender of the recipient."
+msgstr "Valitaan kentän arvo, josta tunnistetaan naispuolinen vastaanottaja."
+
#. K6a9E
-#: sw/uiconfig/swriter/ui/mmmailbody.ui:381
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:423
msgctxt "mmmailbody|personalized"
msgid "Insert personalized salutation"
msgstr "Lisää vastaanottajakohtainen tervehdys"
+#. vyKar
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:432
+msgctxt "mmmailbody|extended_tip|personalized"
+msgid "Adds a personalized salutation. To use the default salutation, clear this check box."
+msgstr "Käytetään nais- ja miespuolisen vastaanottajan tervehdyksiä. Yleisen tervehdyksen käyttämiseksi tämä valintaruutu tyhjennetään."
+
+#. 4GXww
+#: sw/uiconfig/swriter/ui/mmmailbody.ui:480
+msgctxt "mmmailbody|extended_tip|MailBodyDialog"
+msgid "Type the message and the salutation for files that you send as email attachments."
+msgstr ""
+
#. Zqr7R
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:43
msgctxt "mmoutputtypepage|letterft"
@@ -14164,125 +19079,227 @@ msgctxt "mmoutputtypepage|letter"
msgid "_Letter"
msgstr "Kirje"
+#. rAnN7
+#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:90
+msgctxt "mmoutputtypepage|extended_tip|letter"
+msgid "Creates a printable mail merge document."
+msgstr "Luodaan tulostettava joukkokirje-asiakirja."
+
#. 7oDY3
-#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:96
+#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:101
msgctxt "mmoutputtypepage|email"
msgid "_Email message"
msgstr "Sähköpostiviesti"
+#. Sr8EB
+#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:111
+msgctxt "mmoutputtypepage|extended_tip|email"
+msgid "Creates mail merge documents that you can send as an email message or an email attachment."
+msgstr ""
+
#. roGWt
-#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:136
+#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:146
msgctxt "mmoutputtypepage|label1"
msgid "What Type of Document Do You Want to Create?"
msgstr "Minkä tyyppisen asiakirjan haluat luoda?"
+#. cCE2r
+#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:161
+msgctxt "mmoutputtypepage|extended_tip|MMOutputTypePage"
+msgid "Specify the type of mail merge document to create."
+msgstr ""
+
#. 4jmu8
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:18
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:19
msgctxt "mmresultemaildialog|MMResultEmailDialog"
msgid "Email merged document"
msgstr "Lähetä joukkokirje sähköpostina"
#. gT9YY
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:37
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:35
msgctxt "mmresultemaildialog|ok"
msgid "Send Documents"
msgstr "Lähetä asiakirjat"
+#. GNwFE
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:43
+msgctxt "mmresultemaildialog|extended_tip|ok"
+msgid "Click to start sending emails."
+msgstr ""
+
#. cNmQk
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:118
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:121
msgctxt "mmresultemaildialog|mailtoft"
msgid "T_o"
msgstr "Vastaanottaja"
+#. QByD6
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:138
+msgctxt "mmresultemaildialog|extended_tip|mailto"
+msgid "Select the database field that contains the email address of the recipient."
+msgstr ""
+
#. H6VrM
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:141
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:149
msgctxt "mmresultemaildialog|copyto"
msgid "_Copy to..."
msgstr "Kopio..."
-#. HAvs3
+#. RsFBa
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:156
+msgctxt "mmresultemaildialog|extended_tip|copyto"
+msgid "Opens the Copy To dialog where you can specify one or more CC or BCC addresses."
+msgstr ""
+
+#. HAvs3
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:169
msgctxt "mmresultemaildialog|subjectft"
msgid "S_ubject"
msgstr "Aihe"
+#. 8ZZt9
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:187
+msgctxt "mmresultemaildialog|extended_tip|subject"
+msgid "Enter the subject line for the email messages."
+msgstr ""
+
#. DRHXR
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:182
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:200
msgctxt "mmresultemaildialog|sendasft"
msgid "Sen_d as"
msgstr "Lähettäjä"
#. FUKtT
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:198
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:216
msgctxt "mmresultemaildialog|liststore1"
msgid "OpenDocument Text"
msgstr "OpenDocument-tekstiasiakirja"
#. MUQ4h
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:199
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:217
msgctxt "mmresultemaildialog|liststore1"
msgid "Adobe PDF-Document"
msgstr "Adoben PDF-asiakirja"
#. LpGGz
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:200
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:218
msgctxt "mmresultemaildialog|liststore1"
msgid "Microsoft Word Document"
msgstr "Microsoft Word -asiakirja"
#. xSrmF
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:201
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:219
msgctxt "mmresultemaildialog|liststore1"
msgid "HTML Message"
msgstr "HTML-viesti"
#. eCCZz
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:202
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:220
msgctxt "mmresultemaildialog|liststore1"
msgid "Plain Text"
msgstr "Pelkkä teksti"
+#. AzGMf
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:224
+msgctxt "mmresultemaildialog|extended_tip|sendas"
+msgid "Select the mail format for the email messages."
+msgstr ""
+
#. A25u6
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:212
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:235
msgctxt "mmresultemaildialog|sendassettings"
msgid "Pr_operties..."
msgstr "Ominaisuudet..."
+#. ebnCM
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:243
+msgctxt "mmresultemaildialog|extended_tip|sendassettings"
+msgid "Opens the E-Mail Message dialog where you can enter the email message for the mail merge files that are sent as attachments."
+msgstr ""
+
+#. TePCV
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:256
+msgctxt "mmresultemaildialog|passwordft"
+msgid "Password"
+msgstr "Salasana"
+
+#. AEF8w
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:279
+msgctxt "mmresultemaildialog|passwordcb"
+msgid "Save with password"
+msgstr ""
+
+#. vHPkv
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:325
+msgctxt "mmresultemaildialog|extended_tip|attach"
+msgid "Shows the name of the attachment."
+msgstr ""
+
#. Z6zpg
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:258
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:336
msgctxt "mmresultemaildialog|attachft"
msgid "Name of the a_ttachment"
msgstr "Liitteen nimi"
-#. xx2Kz
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:278
+#. 3JkpG
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:356
msgctxt "mmresultemaildialog|label2"
-msgid "Email options"
-msgstr "Sähköpostiasetukset"
+msgid "Email Options"
+msgstr ""
#. kCBDz
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:310
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:388
msgctxt "mmresultemaildialog|sendallrb"
msgid "S_end all documents"
msgstr "Lähetä kaikki asiakirjat"
+#. FxrTt
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:398
+msgctxt "mmresultemaildialog|extended_tip|sendallrb"
+msgid "Select to send emails to all recipients."
+msgstr ""
+
#. EN8Jh
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:332
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:415
msgctxt "mmresultemaildialog|fromrb"
msgid "_From"
msgstr "Lähde"
+#. kdkiA
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:428
+msgctxt "mmresultemaildialog|extended_tip|fromrb"
+msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
+msgstr ""
+
#. S2Qdz
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:353
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:441
msgctxt "mmresultemaildialog|toft"
msgid "_To"
msgstr "Kohteeseen"
-#. kTAEG
-#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:406
+#. mDfQb
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:462
+msgctxt "mmresultemaildialog|extended_tip|from"
+msgid "Enter the number of the first record to include in the mail merge."
+msgstr ""
+
+#. pk5wo
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:480
+msgctxt "mmresultemaildialog|extended_tip|to"
+msgid "Enter the number of the last record to include in the mail merge."
+msgstr ""
+
+#. F8VuK
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:504
msgctxt "mmresultemaildialog|label1"
-msgid "Send records"
-msgstr "Lähetä tietueet"
+msgid "Send Records"
+msgstr ""
+
+#. 6VhcE
+#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:529
+msgctxt "mmresultemaildialog|extended_tip|MMResultEmailDialog"
+msgid "Sends the mail merge output as email messages to all or some recipients."
+msgstr ""
#. rD68U
#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:20
@@ -14296,47 +19313,95 @@ msgctxt "mmresultprintdialog|ok"
msgid "Print Documents"
msgstr "Tulosta asiakirjat"
+#. 9za3k
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:44
+msgctxt "mmresultprintdialog|extended_tip|ok"
+msgid "Prints the mail merge documents."
+msgstr ""
+
#. juZiE
-#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:112
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:117
msgctxt "mmresultprintdialog|printerft"
msgid "_Printer"
msgstr "Tulostin"
+#. BbUuA
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:134
+msgctxt "mmresultprintdialog|extended_tip|printers"
+msgid "Select the printer."
+msgstr ""
+
#. SBDzy
-#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:135
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:145
msgctxt "mmresultprintdialog|printersettings"
msgid "P_roperties..."
msgstr "Ominaisuudet..."
-#. NDTNG
-#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:154
+#. gBzam
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:152
+msgctxt "mmresultprintdialog|extended_tip|printersettings"
+msgid "Changes the printer properties."
+msgstr ""
+
+#. ScCmz
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:169
msgctxt "mmresultprintdialog|label2"
-msgid "Printer options"
-msgstr "Tulostimen asetukset"
+msgid "Printer Options"
+msgstr ""
#. VemES
-#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:190
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:205
msgctxt "mmresultprintdialog|printallrb"
msgid "Print _all documents"
msgstr "Tulosta kaikki asiakirjat"
+#. EnbGk
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:216
+msgctxt "mmresultprintdialog|extended_tip|printallrb"
+msgid "Prints documents for all recipients."
+msgstr ""
+
#. 4fHrU
-#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:215
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:235
msgctxt "mmresultprintdialog|fromrb"
msgid "_From"
msgstr "Lähde"
+#. tKUPY
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:248
+msgctxt "mmresultprintdialog|extended_tip|fromrb"
+msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
+msgstr ""
+
#. 9nnCK
-#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:236
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:261
msgctxt "mmresultprintdialog|toft"
msgid "_To"
msgstr "Kohteeseen"
-#. FBtVF
-#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:289
+#. pVf6R
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:282
+msgctxt "mmresultprintdialog|extended_tip|from"
+msgid "Enter the number of the first record to include in the mail merge."
+msgstr ""
+
+#. yGCUN
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:300
+msgctxt "mmresultprintdialog|extended_tip|to"
+msgid "Enter the number of the last record to include in the mail merge."
+msgstr ""
+
+#. bqADL
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:324
msgctxt "mmresultprintdialog|label1"
-msgid "Print records"
-msgstr "Tulosta tietueet"
+msgid "Print Records"
+msgstr ""
+
+#. ZZ5p9
+#: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:349
+msgctxt "mmresultprintdialog|extended_tip|MMResultPrintDialog"
+msgid "Prints the mail merge output for all or some recipients."
+msgstr ""
#. XPDJt
#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:22
@@ -14345,40 +19410,82 @@ msgid "Save merged document"
msgstr "Tallenna joukkokirje"
#. htZAM
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:41
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:38
msgctxt "mmresultsavedialog|ok"
msgid "Save Documents"
msgstr "Tallenna asiakirjat"
+#. H5YKR
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:46
+msgctxt "mmresultsavedialog|extended_tip|ok"
+msgid "Saves the documents."
+msgstr ""
+
#. yQdjt
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:115
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:117
msgctxt "mmresultsavedialog|singlerb"
msgid "S_ave as a single large document"
msgstr "Tallenna yhtenä suurena asiakirjana"
+#. bZcqe
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:127
+msgctxt "mmresultsavedialog|extended_tip|singlerb"
+msgid "Saves the merged document as a single file."
+msgstr ""
+
#. ZVJLJ
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:131
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:138
msgctxt "mmresultsavedialog|individualrb"
msgid "Sa_ve as individual documents"
msgstr "Tallenna erillisinä asiakirjoina"
+#. BNcaB
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:148
+msgctxt "mmresultsavedialog|extended_tip|individualrb"
+msgid "Saves the merged document as a separate file for each recipient. The file names of the documents are constructed from the name that you enter, followed by an underscore, and the number of the current record."
+msgstr ""
+
#. xRGbs
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:152
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:164
msgctxt "mmresultsavedialog|fromrb"
msgid "_From"
msgstr "Lähde"
+#. gvAQf
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:177
+msgctxt "mmresultsavedialog|extended_tip|fromrb"
+msgid "Selects a range of records starting at the record number in the From box and ending at the record number in the To box."
+msgstr ""
+
#. LGEwR
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:173
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:190
msgctxt "mmresultsavedialog|toft"
msgid "_To"
msgstr "Kohteeseen"
-#. CWcMU
-#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:225
+#. XML8V
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:211
+msgctxt "mmresultsavedialog|extended_tip|from"
+msgid "Enter the number of the first record to include in the mail merge."
+msgstr ""
+
+#. dAWiB
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:229
+msgctxt "mmresultsavedialog|extended_tip|to"
+msgid "Enter the number of the last record to include in the mail merge."
+msgstr ""
+
+#. g3Knf
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:252
msgctxt "mmresultsavedialog|label2"
-msgid "Save As options"
-msgstr "Tallennusasetukset"
+msgid "Save As Options"
+msgstr ""
+
+#. 2BCiE
+#: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:277
+msgctxt "mmresultsavedialog|extended_tip|MMResultSaveDialog"
+msgid "Save the mail merge output to file."
+msgstr ""
#. Vd4X6
#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:59
@@ -14392,138 +19499,276 @@ msgctxt "mmsalutationpage|assign"
msgid "_Match fields..."
msgstr "Vastaavat kentät..."
+#. TdGGG
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:87
+msgctxt "mmsalutationpage|extended_tip|assign"
+msgid "Opens the Match Fields dialog."
+msgstr "Avataan Vastaavat kentät -valintaikkuna."
+
+#. CDmVL
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:117
+msgctxt "mmsalutationpage|extended_tip|preview"
+msgid "Displays a preview of the salutation."
+msgstr "Esikatsellaan tervehdystä."
+
#. NUC5G
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:130
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:140
msgctxt "mmsalutationpage|prev|tooltip_text"
msgid "Preview Previous Address Block"
msgstr "Edellisen osoitelohkon esikatselu"
+#. WUhJW
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:144
+msgctxt "mmsalutationpage|extended_tip|prev"
+msgid "Use the browse buttons to preview the information from the previous or next data record."
+msgstr "Selauspainikkeita käytetään edellisen tai seuraavan tietueen tietojen esikatseluun."
+
#. 5CDnR
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:143
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:158
msgctxt "mmsalutationpage|next|tooltip_text"
msgid "Preview Next Address Block"
msgstr "Seuraavan osoitelohkon esikatselu"
+#. rnqbV
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:162
+msgctxt "mmsalutationpage|extended_tip|next"
+msgid "Use the browse buttons to preview the information from the previous or next data record."
+msgstr "Selauspainikkeita käytetään edellisen tai seuraavan tietueen tietojen esikatseluun."
+
#. rS3A8
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:156
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:176
msgctxt "mmsalutationpage|documentindex"
msgid "Document: %1"
msgstr "Asiakirja: %1"
#. rWpBq
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:190
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:210
msgctxt "mmsalutationpage|greeting"
msgid "This document should contain a salutation"
msgstr "Asiakirja sisältää tervehdyksen"
-#. DDB2B
+#. zPnZa
#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:219
+msgctxt "mmsalutationpage|extended_tip|greeting"
+msgid "Adds a salutation."
+msgstr "Lisätään tervehdys."
+
+#. DDB2B
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:244
msgctxt "mmsalutationpage|generalft"
msgid "General salutation"
msgstr "Yleinen tervehdys"
+#. 7Snab
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:267
+msgctxt "mmsalutationpage|extended_tip|general"
+msgid "Select the default salutation that is used when you do not specify a personalized salutation."
+msgstr "Valitaan oletustervehdys, jota käytetään, ellei sukupuolen mukaista tervehdystä määritetä."
+
#. CegBx
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:270
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:300
msgctxt "mmsalutationpage|femalefi"
msgid "Address list field indicating a female recipient"
msgstr "Osoitelistan kenttä naispuolisten tunnistukseen"
#. Gu5tC
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:283
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:313
msgctxt "mmsalutationpage|femaleft"
msgid "_Female"
msgstr "Nainen"
#. Rmtni
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:297
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:327
msgctxt "mmsalutationpage|maleft"
msgid "_Male"
msgstr "Mies"
#. dUuiH
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:311
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:341
msgctxt "mmsalutationpage|femalecolft"
msgid "Field name"
msgstr "Kentän nimi"
#. cFDEw
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:325
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:355
msgctxt "mmsalutationpage|femalefieldft"
msgid "Field value"
msgstr "Kentän arvo"
#. YCdbP
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:337
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:367
msgctxt "mmsalutationpage|newfemale"
msgid "_New..."
msgstr "Uusi..."
+#. iQETJ
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:375
+msgctxt "mmsalutationpage|extended_tip|newfemale"
+msgid "Opens the Custom Salutation (Female recipient) dialog."
+msgstr "Avataan Mukautettu tervehdys -valintaikkuna naispuolisille vastaanottajille."
+
#. R5QR8
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:351
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:386
msgctxt "mmsalutationpage|newmale"
msgid "N_ew..."
msgstr "Uusi..."
+#. ACYDN
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:394
+msgctxt "mmsalutationpage|extended_tip|newmale"
+msgid "Opens the Custom Salutation (Male recipient) dialog."
+msgstr "Avataan Mukautettu tervehdys -valintaikkuna miespuolisille vastaanottajille."
+
+#. fAUfC
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:411
+msgctxt "mmsalutationpage|extended_tip|female"
+msgid "Select the personalized greeting for a female recipient."
+msgstr "Valitaan naispuolisen vastaanottajan tervehdys."
+
+#. 9oaEY
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:428
+msgctxt "mmsalutationpage|extended_tip|male"
+msgid "Select the personalized greeting for a male recipient."
+msgstr "Valitaan miespuolisen vastaanottajan tervehdys."
+
+#. YvzLW
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:445
+msgctxt "mmsalutationpage|extended_tip|femalecol"
+msgid "Select the field name of the address database field that contains the gender information."
+msgstr "Valitaan osoitetietokannan kenttä, jossa on sukupuolet erotteleva tieto."
+
+#. QxevE
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:468
+msgctxt "mmsalutationpage|extended_tip|femalefield"
+msgid "Select the field value that indicates the gender of the recipient."
+msgstr "Valitaan kentän arvo, josta tunnistetaan naispuolinen vastaanottaja."
+
#. AXiog
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:433
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:493
msgctxt "mmsalutationpage|personalized"
msgid "Insert personalized salutation"
msgstr "Lisää vastaanottajakohtainen tervehdys"
+#. YZcw2
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:502
+msgctxt "mmsalutationpage|extended_tip|personalized"
+msgid "Adds a personalized salutation to the mail merge document. To use the default salutation, clear this check box."
+msgstr "Lisätään sukupuolen mukainen tervehdys joukkokirjeasiakirjaan. Oletustervehdyksen käyttämiseksi tämä valintaruutu tyhjennetään."
+
#. nbXMj
-#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:474
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:539
msgctxt "mmsalutationpage|label1"
msgid "Create a Salutation"
msgstr "Luo tervehdys"
+#. wMLEZ
+#: sw/uiconfig/swriter/ui/mmsalutationpage.ui:554
+msgctxt "mmsalutationpage|extended_tip|MMSalutationPage"
+msgid "Specify the properties for the salutation."
+msgstr ""
+
#. TC3eL
#: sw/uiconfig/swriter/ui/mmselectpage.ui:31
msgctxt "mmselectpage|currentdoc"
msgid "Use the current _document"
msgstr "Käytä nykyistä asiakirjaa"
+#. EUVtU
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:41
+msgctxt "mmselectpage|extended_tip|currentdoc"
+msgid "Uses the current Writer document as the base for the mail merge document."
+msgstr "Käytetään käsiteltävää Writerin asiakirjaa joukkokirjeen pohjana."
+
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:47
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:52
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Luo uusi asiakirja"
+#. XY8FU
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:62
+msgctxt "mmselectpage|extended_tip|newdoc"
+msgid "Creates a new Writer document to use for the mail merge."
+msgstr "Luodaan uusi Writerin asiakirja käytettäväksi joukkokirjeessä."
+
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:63
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:73
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Aloita valmiista asiakirjasta"
+#. MFqCS
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:84
+msgctxt "mmselectpage|extended_tip|loaddoc"
+msgid "Select an existing Writer document to use as the base for the mail merge document."
+msgstr "Valitaan olemassa oleva Writerin asiakirja käytettäväksi pohjana joukkokirjeessä."
+
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:80
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:95
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Aloita asiakirjan mallista"
+#. BxBQF
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:106
+msgctxt "mmselectpage|extended_tip|template"
+msgid "Select the template that you want to create your mail merge document with."
+msgstr "Valitaan malli, josta joukkokirjeasiakirja luodaan."
+
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:97
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:117
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "Aloita viimeksi tallennetusta asiakirjasta"
+#. xomYf
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:127
+msgctxt "mmselectpage|extended_tip|recentdoc"
+msgid "Use an existing mail merge document as the base for a new mail merge document."
+msgstr "Käytetään olemassa olevaan joukkokirjeasiakirjaa pohjana uudelle joukkokirjeelle."
+
+#. JMgbV
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:143
+msgctxt "mmselectpage|extended_tip|recentdoclb"
+msgid "Select the document."
+msgstr "Valitaan asiakirja."
+
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:124
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:154
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "Selaa..."
+#. i7inE
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:163
+msgctxt "mmselectpage|extended_tip|browsedoc"
+msgid "Locate the Writer document that you want to use, and then click Open."
+msgstr "Paikallista Writerin asiakirja, jota aiot käyttää ja napsauta sitten Avaa."
+
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:139
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:174
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "Selaa..."
+#. CdmfM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:183
+msgctxt "mmselectpage|extended_tip|browsetemplate"
+msgid "Opens a template selector dialog."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:160
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Valitse asiakirja pohjaksi joukkokirjeeseen"
+#. Hpca5
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:215
+msgctxt "mmselectpage|extended_tip|MMSelectPage"
+msgid "Specify the document that you want to use as a base for the mail merge document."
+msgstr ""
+
#. CDQgx
#: sw/uiconfig/swriter/ui/mmsendmails.ui:22
msgctxt "mmsendmails|SendMailsDialog"
@@ -14542,11 +19787,11 @@ msgctxt "mmsendmails|label3"
msgid "The connection to the outgoing mail server has been established"
msgstr "Yhteys otettu lähtevän sähköpostin palvelimeen"
-#. riE4F
+#. g5EaC
#: sw/uiconfig/swriter/ui/mmsendmails.ui:113
msgctxt "mmsendmails|label1"
-msgid "Connection status"
-msgstr "Yhteyden tila"
+msgid "Connection Status"
+msgstr ""
#. s8CDU
#: sw/uiconfig/swriter/ui/mmsendmails.ui:162
@@ -14584,11 +19829,11 @@ msgctxt "mmsendmails|label5"
msgid "Details"
msgstr "Tiedot"
-#. xbUsZ
+#. aPUCS
#: sw/uiconfig/swriter/ui/mmsendmails.ui:306
msgctxt "mmsendmails|label2"
-msgid "Transfer status"
-msgstr "Lähetyksen tila"
+msgid "Transfer Status"
+msgstr ""
#. c2i5B
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26
@@ -14698,26 +19943,32 @@ msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "Poista kaikki"
-#. EBK2E
+#. QeLGW
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
+msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
+msgid "Outline Content Visibility"
+msgstr ""
+
+#. EBK2E
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223
msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:251
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
@@ -14770,152 +20021,284 @@ msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Pohjan näyttö päälle/pois"
+#. bavit
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:263
+msgctxt "navigatorpanel|extended_tip|contenttoggle"
+msgid "Switches between master view and normal view if a master document is open."
+msgstr "Vuorotellaan perusasiakirja- ja normaalinäkymää, jos perusasiakirja on auki."
+
+#. aVJn7
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:336
+msgctxt "navigatorpanel|spinbutton|tooltip_text"
+msgid "Go to Page"
+msgstr ""
+
+#. avLGA
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:339
+msgctxt "navigatorpanel|extended_tip|spinbutton"
+msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
+msgstr ""
+
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:355
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:366
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Sisällön selailunäkymä"
+#. RCE5p
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:370
+msgctxt "navigatorpanel|extended_tip|root"
+msgid "Switches between the display of all categories in the Navigator and the selected category."
+msgstr ""
+
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:377
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:393
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Ylätunniste"
+#. yZHED
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:397
+msgctxt "navigatorpanel|extended_tip|header"
+msgid "Moves the cursor to the header, or from the header to the document text area."
+msgstr ""
+
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:389
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:410
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Alatunniste"
+#. 5BVYB
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+msgctxt "navigatorpanel|extended_tip|footer"
+msgid "Moves the cursor to the footer, or from the footer to the document text area."
+msgstr ""
+
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:401
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:427
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ankkuri<->Teksti"
+#. vwcpF
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:431
+msgctxt "navigatorpanel|extended_tip|anchor"
+msgid "Jumps between the footnote text and the footnote anchor."
+msgstr ""
+
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:413
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:444
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Määritä muistutus"
+#. d2Bnv
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:448
+msgctxt "navigatorpanel|extended_tip|reminder"
+msgid "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 Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
+msgstr "Toimintoa napsautetaan muistutuksen asettamiseksi kohdistimen kohdalle. Enintään viisi muistutusta on asetettavissa. Muistutukseen hyppäämiseksi napsautetaan Siirtyminen-kuvaketta, Siirtyminen-ikkunassa napsautetaan Muistutus-kuvaketta ja napsautetaan sitten Edellinen- tai Seuraava-nuolipainiketta."
+
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:435
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:471
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Otsikkotasojen näyttö"
+#. dJcmy
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+msgctxt "navigatorpanel|extended_tip|headings"
+msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
+msgstr ""
+
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:459
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:500
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Luetteloruutu käytössä / poissa käytöstä"
+#. y7YBB
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:504
+msgctxt "navigatorpanel|extended_tip|listbox"
+msgid "Shows or hides the Navigator list."
+msgstr ""
+
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:527
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Korota tasoa"
+#. dvQYH
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:531
+msgctxt "navigatorpanel|extended_tip|promote"
+msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
+msgstr ""
+
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:493
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:544
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Alenna tasoa"
+#. NHBAZ
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+msgctxt "navigatorpanel|extended_tip|demote"
+msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
+msgstr ""
+
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:505
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:561
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Siirrä luku ylemmälle tasolle"
+#. mwCBQ
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:565
+msgctxt "navigatorpanel|extended_tip|chapterup"
+msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
+msgstr ""
+
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:517
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:578
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Siirrä luku alemmalle tasolle"
+#. sGNbn
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:582
+msgctxt "navigatorpanel|extended_tip|chapterdown"
+msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
+msgstr ""
+
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:539
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:605
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Vetotila"
+#. 9cuar
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+msgctxt "navigatorpanel|extended_tip|dragmode"
+msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
+msgstr ""
+
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:570
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:641
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Asiakirja"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:573
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiivinen ikkuna"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:658
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:729
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Pohjan näyttö päälle/pois"
+#. AoCVA
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:733
+msgctxt "navigatorpanel|extended_tip|globaltoggle"
+msgid "Switches between master view and normal view if a master document is open."
+msgstr "Vuorotellaan perusasiakirja- ja normaalinäkymää, jos perusasiakirja on auki."
+
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:680
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:756
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Muokkaa"
+#. phQFB
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:760
+msgctxt "navigatorpanel|extended_tip|edit"
+msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
+msgstr ""
+
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:773
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Päivitä"
+#. FEEGn
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+msgctxt "navigatorpanel|extended_tip|update"
+msgid "Click and choose the contents that you want to update."
+msgstr "Napsautetaan ja valitaan päivitettävä sisältötyyppi."
+
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:704
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:790
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Lisää"
+#. 9kmNw
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:794
+msgctxt "navigatorpanel|extended_tip|insert"
+msgid "Inserts a file, an index, or a new document into the master document."
+msgstr "Perusasiakirjaan lisätään tiedosto, hakemisto tai uusi asiakirja."
+
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:726
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:817
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Tallenna myös sisältö"
+#. KBDdA
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+msgctxt "navigatorpanel|extended_tip|save"
+msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
+msgstr ""
+
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:748
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Siirrä ylemmäs"
+#. rEFCS
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
+msgctxt "navigatorpanel|extended_tip|moveup"
+msgid "Moves the selection up one position in the Navigator list."
+msgstr ""
+
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:760
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:861
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Siirrä alemmas"
+#. Cs7D9
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+msgctxt "navigatorpanel|extended_tip|movedown"
+msgid "Moves the selection down one position in the Navigator list."
+msgstr ""
+
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:858
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:964
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Valinta"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:866
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:972
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:874
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:980
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Linkit"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:882
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:988
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Kaikki"
@@ -14957,181 +20340,181 @@ msgid "~File"
msgstr "~Tiedosto"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4769
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4567
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Koti"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4857
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4655
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Koti"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6015
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5813
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Lisää"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6123
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5921
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Lisää"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7217
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7015
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Asettelu"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7303
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7101
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Asettelu"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8034
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7832
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Viittaukset"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8119
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7917
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Viittauk~set"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9056
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8854
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Ta_rkista"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9142
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8940
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Ta~rkista"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10012
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9810
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Näytä"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10098
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9896
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Näytä"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11278
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11076
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tau_lukko"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11363
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11161
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Tau~lukko"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12541
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12339
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ku_va"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12641
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12439
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ku~va"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13802
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Piirrä"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13912
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Piirrä"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14806
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekti"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15094
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14892
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekti"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15899
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15697
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16006
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15804
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16459
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16257
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Tul_osta"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16542
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16340
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Tul_osta"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17377
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17175
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Lomak_e"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17462
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17260
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Lomak~e"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17519
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17317
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Lisäosa"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17593
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17391
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Lisäosa"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18573
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18371
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ty_ökalut"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18658
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18456
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ty~ökalut"
@@ -15545,230 +20928,230 @@ msgid "_Menu"
msgstr "_Valikko"
#. CSzSh
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3040
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3054
msgctxt "notebookbar_groupedbar_full|MenubarAction"
msgid "Menubar"
msgstr "Valikkorivi"
#. 2S8D3
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3869
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3883
msgctxt "notebookbar_groupedbar_full|MenuButton"
msgid "_Menu"
msgstr "_Valikko"
#. mCwjN
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3922
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3936
msgctxt "notebookbar_groupedbar_full|ToolsButton"
msgid "_Tools"
msgstr "Ty_ökalut"
#. pkdoB
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3977
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3991
msgctxt "notebookbar_groupedbar_full|HelpButton"
msgid "_Help"
msgstr "_Ohje"
#. eks5K
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4085
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4099
msgctxt "notebookbar_groupedbar_full|FileButton"
msgid "_File"
msgstr "_Tiedosto"
#. cfLmD
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4323
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4337
msgctxt "notebookbar_groupedbar_full|EditButton"
msgid "_Edit"
msgstr "_Muokkaa"
#. 3GXeo
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4520
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6320
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4534
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6334
msgctxt "notebookbar_groupedbar_full|StyleButton"
msgid "St_yles"
msgstr "T_yylit"
#. hEZAZ
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4806
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6606
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9488
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4820
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6620
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9502
msgctxt "notebookbar_groupedbar_full|FormatButton"
msgid "F_ormat"
msgstr "Muotoilu"
#. RFMpm
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5145
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6945
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9753
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5159
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6959
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9767
msgctxt "notebookbar_groupedbar_full|ParagraphButton"
msgid "_Paragraph"
msgstr "_Kappale"
#. TSKQ8
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5384
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10084
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5398
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10098
msgctxt "notebookbar_groupedbar_full|InsertButton"
msgid "_Insert"
msgstr "_Lisää"
#. F9WAK
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5613
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8258
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5627
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8272
msgctxt "notebookbar_groupedbar_full|ReferenceButton"
msgid "Referen_ce"
msgstr "Viite"
#. 8XawJ
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5815
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8624
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5829
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8638
msgctxt "notebookbar_groupedbar_full|ReviewButton"
msgid "_Review"
msgstr "Ta_rkista"
#. Pfwpq
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5965
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9190
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9930
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15010
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16090
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5979
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9204
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9944
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15024
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16104
msgctxt "notebookbar_groupedbar_full|ViewButton"
msgid "_View"
msgstr "_Näytä"
#. q6NwY
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6141
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16267
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6155
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16281
msgctxt "notebookbar_groupedbar_full|FormButton"
msgid "Fo_rm"
msgstr "Lomak_e"
#. XNJZd
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7170
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7184
msgctxt "notebookbar_groupedbar_full|TableButton"
msgid "T_able"
msgstr "T_aulukko"
#. ao9tD
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7369
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7383
msgctxt "notebookbar_groupedbar_full|RowsColumnsButton"
msgid "R_ows"
msgstr "Rivit"
#. CGLeG
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7571
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7585
msgctxt "notebookbar_groupedbar_full|MergeButton"
msgid "_Merge"
msgstr "Yhdistä"
#. XSx69
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7800
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7814
msgctxt "notebookbar_groupedbar_full|SelectButton"
msgid "Sele_ct"
msgstr "Valitse"
#. NZWw8
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8029
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8043
msgctxt "notebookbar_groupedbar_full|CalculateButton"
msgid "_Calc"
msgstr ""
#. cyjNn
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8395
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8409
msgctxt "notebookbar_groupedbar_full|LanguageButton"
msgid "_Language"
msgstr "_Kieli"
#. GFyTQ
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8837
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8851
msgctxt "notebookbar_groupedbar_full|CommentsButton"
msgid "_Comments"
msgstr "_Huomautukset"
#. mvE4u
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9040
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9054
msgctxt "notebookbar_groupedbar_full|CompareButton"
msgid "Com_pare"
msgstr "Vertaa"
#. YtBAd
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10414
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10428
msgctxt "notebookbar_groupedbar_full|DrawButton"
msgid "D_raw"
msgstr "_Piirrä"
#. gPK7A
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10725
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12583
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14115
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15475
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10739
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12597
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14129
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15489
msgctxt "notebookbar_groupedbar_full|ArrangeButton"
msgid "_Arrange"
msgstr "Järjestä"
#. dkXBa
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11443
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11457
msgctxt "notebookbar_groupedbar_full|DrawEditButton"
msgid "_Edit"
msgstr "_Muokkaa"
#. 4jpsG
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11628
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13642
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14860
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15940
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11642
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13656
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14874
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15954
msgctxt "notebookbar_groupedbar_full|GridButton"
msgid "_Grid"
msgstr "_Ruudukko"
#. 4BrBg
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11830
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11844
msgctxt "notebookbar_groupedbar_full|GroupButton"
msgid "Grou_p"
msgstr "Ryhmittele"
#. rDBLq
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12007
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12021
msgctxt "notebookbar_groupedbar_full|3DButton"
msgid "3_D"
msgstr "3_D"
#. fDD7F
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12304
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12318
msgctxt "notebookbar_groupedbar_full|GraphicButton"
msgid "Image"
msgstr "Kuva"
#. hpbGC
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13288
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13302
msgctxt "notebookbar_groupedbar_full|ColorButton"
msgid "C_olor"
msgstr "V_äri"
#. DzzAv
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13818
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13832
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
msgstr "Objekti"
#. W7NR4
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14697
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14711
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "F_rame"
msgstr "Kehys"
#. DhFZG
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15178
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15192
msgctxt "notebookbar_groupedbar_full|MediaButton"
msgid "_Media"
msgstr "_Media"
#. LRxDK
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:17050
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:17064
msgctxt "notebookbar_groupedbar_full|PrintMenuButton"
msgid "Slide Layout"
msgstr "Dian asettelu"
#. 8J3Bt
-#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:17535
+#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:17549
msgctxt "notebookbar_groupedbar_full|PrintMenuButton"
msgid "_Print"
msgstr "Tul_osta"
@@ -16181,8 +21564,20 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr "Tallenna nimellä"
+#. GuCPt
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:142
+msgctxt "numberingnamedialog|extended_tip|form"
+msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgstr "Napsauta numerointityyliä luettelossa ja anna sitten nimi tyylille. Numerot vastaavat sitä jäsennystasoa, jolle tyyli on määritetty."
+
+#. YeQcD
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:160
+msgctxt "numberingnamedialog|extended_tip|entry"
+msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgstr "Napsauta numerointityyliä luettelossa ja anna sitten nimi tyylille. Numerot vastaavat sitä jäsennystasoa, jolle tyyli on määritetty."
+
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:167
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:177
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr "Muotoilu"
@@ -16259,72 +21654,132 @@ msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr "Taso 10"
+#. chMYQ
+#: sw/uiconfig/swriter/ui/numparapage.ui:74
+msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
+msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
+msgstr ""
+
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:92
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr "Jäsennys"
#. 9PSzB
-#: sw/uiconfig/swriter/ui/numparapage.ui:127
+#: sw/uiconfig/swriter/ui/numparapage.ui:132
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_Numbering style:"
msgstr "Numerointityyli:"
#. ABT2q
-#: sw/uiconfig/swriter/ui/numparapage.ui:148
+#: sw/uiconfig/swriter/ui/numparapage.ui:153
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "Ei mikään"
+#. yJFDn
+#: sw/uiconfig/swriter/ui/numparapage.ui:157
+msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
+msgid "Select the Numbering Style that you want to apply to the paragraph."
+msgstr ""
+
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:159
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr "Muokkaa tyyliä"
+#. 5yJM2
+#: sw/uiconfig/swriter/ui/numparapage.ui:175
+msgctxt "numparapage|extended_tip|editnumstyle"
+msgid "Edit the properties of the selected numbering style."
+msgstr ""
+
#. ckwd7
-#: sw/uiconfig/swriter/ui/numparapage.ui:186
+#: sw/uiconfig/swriter/ui/numparapage.ui:201
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart at this paragraph"
msgstr "A_loita alusta tämän kappaleen kohdalla"
+#. SCaCA
+#: sw/uiconfig/swriter/ui/numparapage.ui:213
+msgctxt "numparapage|extended_tip|checkCB_NEW_START"
+msgid "Restarts the numbering at the current paragraph."
+msgstr ""
+
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:214
+#: sw/uiconfig/swriter/ui/numparapage.ui:234
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr "Aloita numerolla:"
+#. 2Vb8v
+#: sw/uiconfig/swriter/ui/numparapage.ui:248
+msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
+msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
+msgstr ""
+
+#. GmF7H
+#: sw/uiconfig/swriter/ui/numparapage.ui:273
+msgctxt "numparapage|extended_tip|spinNF_NEW_START"
+msgid "Enter the number that you want to assign to the paragraph."
+msgstr ""
+
#. ELqaC
-#: sw/uiconfig/swriter/ui/numparapage.ui:268
+#: sw/uiconfig/swriter/ui/numparapage.ui:298
msgctxt "numparapage|label2"
msgid "Numbering"
msgstr "Numerointi"
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:301
+#: sw/uiconfig/swriter/ui/numparapage.ui:331
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr "_Sisällytä tämä kappale rivinumerointiin"
+#. mhtFH
+#: sw/uiconfig/swriter/ui/numparapage.ui:342
+msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
+msgid "Includes the current paragraph in the line numbering."
+msgstr ""
+
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:319
+#: sw/uiconfig/swriter/ui/numparapage.ui:354
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "Aloi_ta alusta tämän kappaleen kohdalla"
+#. YhNoE
+#: sw/uiconfig/swriter/ui/numparapage.ui:365
+msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
+msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
+msgstr ""
+
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:352
+#: sw/uiconfig/swriter/ui/numparapage.ui:392
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr "Aloita numerolla:"
+#. CMbmy
+#: sw/uiconfig/swriter/ui/numparapage.ui:418
+msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
+msgid "Enter the number at which to restart the line numbering"
+msgstr ""
+
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:398
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "Rivien numerointi"
+#. Ac5sU
+#: sw/uiconfig/swriter/ui/numparapage.ui:458
+msgctxt "numparapage|extended_tip|NumParaPage"
+msgid "Adds or removes outline level, numbering, or bullets from the paragraph. You can also select the style of numbering to use, and reset the numbering in a numbered list."
+msgstr ""
+
#. jHKFJ
#: sw/uiconfig/swriter/ui/objectdialog.ui:8
msgctxt "objectdialog|ObjectDialog"
@@ -16409,68 +21864,122 @@ msgctxt "optcaptionpage|label18"
msgid "Position:"
msgstr "Sijainti:"
+#. Hf6An
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:136
+msgctxt "extended_tip|position"
+msgid "Determines the position of the caption with respect to the object."
+msgstr "Määritetään kuvatekstin sijainti suhteessa objektiin."
+
+#. Js4cD
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:154
+msgctxt "extended_tip|separator"
+msgid "Defines the character to be displayed after the number of the heading or chapter level."
+msgstr "Määrätään merkki, joka esitetään luokkatekstin ja numeroinnin jälkeen."
+
#. SxBrV
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:160
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:170
msgctxt "optcaptionpage|numseparator"
msgid ". "
msgstr ". "
+#. ABAAE
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:185
+msgctxt "extended_tip|numbering"
+msgid "Specifies the type of numbering required."
+msgstr "Määrätään vaadittu numerointitapa."
+
+#. H5DQS
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:209
+msgctxt "extended_tip|category"
+msgid "Specifies the category of the selected object."
+msgstr "Määrätään valitun objektin luokka."
+
#. eFbC3
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:206
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:226
msgctxt "optcaptionpage|label2"
msgid "Caption"
msgstr "Kuvaotsikko"
#. viZwe
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:243
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:263
msgctxt "optcaptionpage|label4"
msgid "Level:"
msgstr "Taso:"
#. R78ig
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:257
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:277
msgctxt "optcaptionpage|label6"
msgid "Separator:"
msgstr "Erotin:"
+#. FUzqu
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:296
+msgctxt "extended_tip|chapseparator"
+msgid "Defines the character to be displayed after the number of the heading or chapter level."
+msgstr "Määrätään merkki, joka esitetään luokkatekstin ja numeroinnin jälkeen."
+
#. FmxD9
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:287
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:312
msgctxt "optcaptionpage|level"
msgid "None"
msgstr "Ei mitään"
+#. yKguf
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:316
+msgctxt "extended_tip|level"
+msgid "Specifies the headings or chapter levels where you want the numbering to start."
+msgstr "Määritetään otsikointi- tai lukutasot, joilta kuvatekstien numerointi alkaa."
+
#. UgMg6
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:303
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:333
msgctxt "optcaptionpage|label11"
msgid "Numbering Captions by Chapter"
msgstr "Otsikoiden numerointi luvuittain"
#. 6QFaH
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:340
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:370
msgctxt "optcaptionpage|label3"
msgid "Character style:"
msgstr "Merkkityyli:"
#. tbQPU
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:356
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:386
msgctxt "optcaptionpage|charstyle"
msgid "None"
msgstr "Ei mitään"
+#. rMSSd
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:390
+msgctxt "extended_tip|charstyle"
+msgid "Specifies the character style of the caption paragraph."
+msgstr ""
+
#. 9nDHG
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:366
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:401
msgctxt "optcaptionpage|applyborder"
msgid "Apply border and shadow"
msgstr "Lisää reuna ja varjostus"
+#. J9Bv9
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:410
+msgctxt "extended_tip|applyborder"
+msgid "Applies the border and shadow of the object to the caption frame."
+msgstr "Käytetään reunaa ja varjoa kuvatekstin objektin kehykseen."
+
#. Xxb3U
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:388
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:428
msgctxt "optcaptionpage|label10"
msgid "Category and Frame Format"
msgstr "Luokka- ja kehysmuotoilu"
+#. LqNnK
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:516
+msgctxt "extended_tip|objects"
+msgid "Select the object type for which the AutoCaption settings are to be valid."
+msgstr "Valitaan merkitsemällä objektityypit, joille automaattisten, ohjelmallisten kuvatekstien eli -otsikoiden asetukset ovat voimassa."
+
#. RBGFT
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:484
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:529
msgctxt "optcaptionpage|label1"
msgid ""
"Add captions automatically\n"
@@ -16480,23 +21989,29 @@ msgstr ""
"kun lisätään:"
#. kUskc
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:547
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:592
msgctxt "optcaptionpage|captionorder"
msgid "Category first"
msgstr "Luokka ensin"
#. AiEA9
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:548
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:593
msgctxt "optcaptionpage|captionorder"
msgid "Numbering first"
msgstr "Numerointi ensin"
#. gB7ua
-#: sw/uiconfig/swriter/ui/optcaptionpage.ui:558
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:603
msgctxt "optcaptionpage|label13"
msgid "Caption Order"
msgstr "Otsikkojärjestys"
+#. C8mhn
+#: sw/uiconfig/swriter/ui/optcaptionpage.ui:630
+msgctxt "extended_tip|OptCaptionPage"
+msgid "Select the object type for which the AutoCaption settings are to be valid."
+msgstr "Valitaan merkitsemällä objektityypit, joille automaattisten, ohjelmallisten kuvatekstien eli -otsikoiden asetukset ovat voimassa."
+
#. VhREB
#: sw/uiconfig/swriter/ui/optcomparison.ui:37
msgctxt "optcomparison|auto"
@@ -16551,11 +22066,11 @@ msgctxt "optcompatpage|globalcompatoptions"
msgid "Reorganize Form menu to have it MS compatible"
msgstr "Järjestä Lomake-valikko MS-yhteensopivaksi"
-#. d98tc
+#. hKp8C
#: sw/uiconfig/swriter/ui/optcompatpage.ui:138
msgctxt "optcompatpage|label2"
-msgid "Global compatibility options"
-msgstr "Yleiset yhteensopivuusasetukset"
+msgid "Global Compatibility Options"
+msgstr ""
#. KC3YE
#: sw/uiconfig/swriter/ui/optcompatpage.ui:233
@@ -16659,12 +22174,24 @@ msgctxt "optcompatpage|default"
msgid "Use as _Default"
msgstr "Aseta oletukseksi"
+#. SfroE
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:266
+msgctxt "extended_tip|default"
+msgid "Click to use the current settings on this tab page as the default for further sessions with %PRODUCTNAME."
+msgstr "Painiketta napsauttamalla otetaan nykyiset välilehden asetukset oletuksena käyttöön myöhemmille %PRODUCTNAME-istunnoille."
+
#. XAXU2
-#: sw/uiconfig/swriter/ui/optcompatpage.ui:278
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:283
msgctxt "optcompatpage|label11"
msgid "Compatibility options for “%DOCNAME”"
msgstr "Yhteensopivuusvalinnat asiakirjalle “%DOCNAME”"
+#. u6ih3
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:298
+msgctxt "extended_tip|OptCompatPage"
+msgid "Specifies compatibility settings for text documents. These options help in fine-tuning %PRODUCTNAME when importing Microsoft Word documents."
+msgstr "Määritetään tekstiasiakirjojen yhteensopivuusasetukset. %PRODUCTNAME hienosäädetään näillä asetuksilla Microsoft Word -asiakirjoja vietäessä."
+
#. kHud8
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:39
msgctxt "optfonttabpage|font_label"
@@ -16707,248 +22234,435 @@ msgctxt "optfonttabpage|index_label"
msgid "_Index:"
msgstr "Hakemisto:"
+#. ymmxp
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:145
+#, fuzzy
+msgctxt "extended_tip|standardbox"
+msgid "Specifies the font to be used for the Default Paragraph Style."
+msgstr "Määrätään Oletus-kappaletyylissä käytettävä fontti."
+
+#. C8bAt
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:168
+msgctxt "extended_tip|titlebox"
+msgid "Specifies the font to be used for headings."
+msgstr "Määrätään otsikoissa käytettävä fontti."
+
+#. hEhde
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:191
+msgctxt "extended_tip|listbox"
+msgid "Specifies the fonts for lists and numbering and all derived styles."
+msgstr "Määrätään luetteloiden, luetelmien ja kaikkien johdettujen tyylien fontti."
+
+#. oxAeB
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:214
+msgctxt "extended_tip|labelbox"
+msgid "Specifies the font used for the captions of images and tables."
+msgstr "Määrätään kuva- ja taulukkotekstien fontti."
+
+#. v8res
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:237
+msgctxt "extended_tip|idxbox"
+msgid "Specifies the font used for indexes, alphabetical indexes, and tables of contents."
+msgstr "Määrätään fontti, jota käytetään indekseissä, aakkosellisissa hakemistoissa ja sisällysluetteloissa."
+
+#. VwA36
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:259
+msgctxt "extended_tip|standardheight"
+msgid "Specifies the size of the font."
+msgstr "Määrätään fonttikoko."
+
+#. B9rgK
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:281
+msgctxt "extended_tip|titleheight"
+msgid "Specifies the size of the font."
+msgstr "Määrätään fonttikoko."
+
+#. cRRCw
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:303
+msgctxt "extended_tip|listheight"
+msgid "Specifies the size of the font."
+msgstr "Määrätään fonttikoko."
+
+#. eNpiB
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:325
+msgctxt "extended_tip|labelheight"
+msgid "Specifies the size of the font."
+msgstr "Määrätään fonttikoko."
+
+#. DAzgw
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:347
+msgctxt "extended_tip|indexheight"
+msgid "Specifies the size of the font."
+msgstr "Määrätään fonttikoko."
+
#. 7EQZ8
-#: sw/uiconfig/swriter/ui/optfonttabpage.ui:317
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:367
msgctxt "optfonttabpage|label1"
msgid "Basic Fonts (%1)"
msgstr "Perusfontit (%1)"
#. 6aJB2
-#: sw/uiconfig/swriter/ui/optfonttabpage.ui:340
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:390
msgctxt "optfonttabpage|standard"
msgid "_Default"
msgstr "Oletus"
+#. VezyG
+#: sw/uiconfig/swriter/ui/optfonttabpage.ui:411
+msgctxt "extended_tip|OptFontTabPage"
+msgid "Specifies the settings for the basic fonts in your documents."
+msgstr "Tehdään asiakirjan perusfonttien asetukset."
+
#. pPiqe
#: sw/uiconfig/swriter/ui/optformataidspage.ui:36
msgctxt "optformataidspage|paragraph"
msgid "Pa_ragraph end"
msgstr "Kappaleen loppu"
+#. oDTBA
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:45
+msgctxt "extended_tip|paragraph"
+msgid "Specifies whether paragraph delimiters are displayed. The paragraph delimiters also contain paragraph format information."
+msgstr "Merkinnällä määrätään, että kappaleen erottimet näkyvät. Kappaleen erottimissa on myös kappaleen muotoilutietoja."
+
#. jBMu5
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:51
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:56
msgctxt "optformataidspage|hyphens"
msgid "Soft h_yphens"
msgstr "Tavutusvihjeet"
+#. D9auF
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:65
+msgctxt "extended_tip|hyphens"
+msgid "Specifies whether soft hyphens (called also as optional or discretionary hyphens) are displayed. These are hidden user-defined delimiters that you enter within a word by pressing Ctrl+Hyphen(-). Words with soft hyphens are only separated at the end of a line at the point where a soft hyphen has been inserted, irrespective of whether the automatic hyphenation is activated or deactivated."
+msgstr ""
+
#. GTJrw
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:66
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:76
msgctxt "optformataidspage|spaces"
msgid "Spac_es"
msgstr "Välit"
+#. rubDd
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:85
+msgctxt "extended_tip|spaces"
+msgid "Specifies whether to represent every space in the text with a dot."
+msgstr "Merkinnällä määrätään, että jokainen välilyönti esitetään tekstissä pisteellä."
+
#. A3QMx
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:81
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:96
msgctxt "optformataidspage|nonbreak"
msgid "Non-breaking s_paces"
msgstr "Sitovat välilyönnit"
+#. jd36B
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:105
+msgctxt "extended_tip|nonbreak"
+msgid "Specifies that non-breaking spaces are shown as gray boxes. Non-breaking spaces are not broken at the end of a line and are entered with the Ctrl+Shift+Spacebar shortcut keys."
+msgstr ""
+
#. HyAaY
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:96
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:116
msgctxt "optformataidspage|tabs"
msgid "Tabs"
msgstr "Sarkaimet"
+#. GM6S5
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:125
+msgctxt "extended_tip|tabs"
+msgid "Specifies that tab stops are displayed as small arrows."
+msgstr "Merkinnällä määrätään, että sarkaimet esitetään pienillä nuolilla."
+
#. rBxLK
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:111
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:136
msgctxt "optformataidspage|break"
msgid "Brea_ks"
msgstr "Vaihdot"
+#. smjwV
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:145
+msgctxt "extended_tip|break"
+msgid "Displays all line breaks inserted with the Shift+Enter shortcut. These breaks create a new line, but do not start a new paragraph."
+msgstr "Merkinnällä määrätään näytettäväksi kaikki Vaihto+Enter -pikanäppäimellä lisätyt rivinvaihdot. Nämä rivinvaihdot luovat uuden rivin, mutta eivät aloita uutta kappaletta."
+
#. wy3SL
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:126
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:156
msgctxt "optformataidspage|hiddentext"
msgid "Hidden characters"
msgstr "Piilotetut merkit"
+#. qAMSs
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:165
+msgctxt "extended_tip|hiddentext"
+msgid "Displays text that uses the character format \"hidden\", when View - Formatting Marks is enabled."
+msgstr ""
+
#. ubosK
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:141
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:176
msgctxt "optformataidspage|bookmarks"
msgid "Bookmarks"
msgstr "Kirjanmerkit"
#. 3RWMe
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:214
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:248
msgctxt "optformataidspage|bookmarks_label|tooltip_text"
msgid ""
"| indicates a point bookmark\n"
"[ ] indicate the start and end of a bookmark on a text range"
msgstr ""
-#. XzAvH
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:236
+#. FGSCJ
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:271
msgctxt "optformataidspage|displayfl"
-msgid "Display formatting"
-msgstr "Näytä muotoilu"
+msgid "Display Formatting"
+msgstr ""
#. ufN3R
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:267
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:302
msgctxt "optformataidspage|mathbaseline"
msgid "Math baseline alignment"
msgstr "Kaavaobjektit tekstirivin mukaan"
#. tFDwg
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:288
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:323
msgctxt "optformataidspage|layoutopt"
msgid "Layout Assistance"
msgstr "Asetteluavut"
#. s9cDX
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:319
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:354
msgctxt "optformataidspage|cursoronoff"
msgid "_Direct cursor"
msgstr "Suora kohdistin"
+#. AoLf5
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:363
+msgctxt "extended_tip|cursoronoff"
+msgid "Activates the direct cursor."
+msgstr ""
+
#. 8eyNs
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:342
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:382
msgctxt "optformataidspage|fillmode"
msgid "Insert:"
msgstr "Lisää:"
#. ACvNA
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:359
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:399
msgctxt "optformataidspage|filltab"
msgid "Tabs"
msgstr "Sarkaimet"
#. CgFKr
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:360
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:400
msgctxt "optformataidspage|filltabandspace"
msgid "Tabs and spaces"
msgstr "Sarkaimet ja välilyönnit"
#. 5FinN
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:361
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:401
msgctxt "optformataidspage|fillspace"
msgid "Spaces"
msgstr "Välilyönnit"
#. mSGUr
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:362
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:402
msgctxt "optformataidspage|fillindent"
msgid "Left paragraph margin"
msgstr "Kappaleen vasen marginaali"
#. 7REyM
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:363
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:403
msgctxt "optformataidspage|fillmargin"
msgid "Paragraph alignment"
msgstr "Kappaleen tasaus"
#. zGjgi
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:386
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:426
msgctxt "optformataidspage|cursorlabel"
msgid "Direct Cursor"
msgstr "Suora kohdistin"
#. A7s4f
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:417
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:457
msgctxt "optformataidspage|cursorinprot"
msgid "Enable cursor"
msgstr "Ota kohdistin käyttöön"
+#. Qor9X
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:466
+msgctxt "extended_tip|cursorinprot"
+msgid "Specifies that you can set the cursor in a protected area, but cannot make any changes."
+msgstr "Merkinnällä määrätään, että kohdistin voidaan asettaa suojatulle alueelle, vaikka muutoksia ei voikaan tehdä."
+
#. nfGAn
-#: sw/uiconfig/swriter/ui/optformataidspage.ui:438
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:483
msgctxt "optformataidspage|cursoropt"
msgid "Protected Areas"
msgstr "Suojatut alueet"
+#. npuVw
+#: sw/uiconfig/swriter/ui/optformataidspage.ui:504
+msgctxt "extended_tip|OptFormatAidsPage"
+msgid "In %PRODUCTNAME text and HTML documents, defines the display for certain characters and for the direct cursor."
+msgstr "%PRODUCTNAMEn teksti- ja HTML-asiakirjoille määritellään tiettyjen merkkien näkyvyys ja suoran kohdistimen asetukset."
+
#. V9Ahc
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:46
msgctxt "optgeneralpage|updatefields"
msgid "_Fields"
msgstr "Kentät"
+#. SobJt
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:55
+msgctxt "extended_tip|updatefields"
+msgid "The contents of all fields are updated automatically whenever the screen contents are displayed as new. Even with this box unchecked, some fields are updated each time a special condition takes place."
+msgstr "Kenttien sisältö päivittyy aina, kun näytön sisältö esitetään uutena. Vaikka tämä ruutu olisi merkitsemättä, eräät kentät päivitetään erityistilanteissa."
+
#. gGD6o
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:61
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|updatecharts"
msgid "_Charts"
msgstr "Kaaviot"
+#. xA9SL
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:75
+msgctxt "extended_tip|updatecharts"
+msgid "Specifies whether to automatically update charts. Whenever a Writer table cell value changes and the cursor leaves that cell, the chart that displays the cell value is updated automatically."
+msgstr "Merkinnällä määrätään, että kaaviot ovat päivittyviä. Milloin tahansa Writerin taulukon solun arvo muuttuu ja kohdistin siirtyy solusta, solun arvon esittävä kaavio päivittyy samalla."
+
#. GfsZW
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:82
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:92
msgctxt "optgeneralpage|label2"
msgid "Automatically Update"
msgstr "Päivitä automaattisesti"
#. CD9es
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:115
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:125
msgctxt "optgeneralpage|always"
msgid "_Always"
msgstr "Aina"
+#. 3WiMS
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:135
+msgctxt "extended_tip|always"
+msgid "Always updates links while loading a document, and only if the document is in a trusted file location or the global security level is Low (Not recommended)."
+msgstr ""
+
#. UAGDA
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:131
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:146
msgctxt "optgeneralpage|onrequest"
msgid "_On request"
msgstr "Pyynnöstä"
+#. 56ADF
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:156
+msgctxt "extended_tip|onrequest"
+msgid "Updates links only on request while loading a document."
+msgstr "Linkit päivitetään vain pyynnöstä asiakirjaa avattaessa."
+
#. sbk3q
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:147
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:167
msgctxt "optgeneralpage|never"
msgid "_Never"
msgstr "Ei koskaan"
+#. zCHEF
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:177
+msgctxt "extended_tip|never"
+msgid "Links are never updated while loading a document."
+msgstr "Linkit eivät päivity asiakirjaa avattaessa."
+
#. 7WCku
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:169
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:194
msgctxt "optgeneralpage|label1"
msgid "Update Links when Loading"
msgstr "Päivitä linkit ladattaessa"
#. BnMCi
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:209
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:234
msgctxt "optgeneralpage|label5"
msgid "_Measurement unit:"
msgstr "Mittayksikkö:"
+#. pFfju
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:252
+msgctxt "extended_tip|metric"
+msgid "Specifies the unit of measurement for text documents."
+msgstr "Määrätään tekstiasiakirjojen mittayksikkö."
+
#. TjFaE
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:235
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|tablabel"
msgid "_Tab stops:"
msgstr "Sarkaimet:"
+#. ptDvH
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:287
+msgctxt "extended_tip|tab"
+msgid "Specifies the spacing between the individual tab stops."
+msgstr "Määrätään yksittäisten sarkainten väli."
+
#. 4c98s
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:274
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:309
msgctxt "optgeneralpage|usecharunit"
msgid "_Enable char unit"
msgstr "Ota käyttöön merkkiyksikkö"
+#. BSsXz
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:319
+msgctxt "extended_tip|usecharunit"
+msgid "When this setting is enabled, the measurement units of indents and spacing on Format - Paragraph - Indents & Spacing tab will be character (ch) and line."
+msgstr "Kun tämä asetus on käytössä, sisennysten ja välien mittayksiköt välilehdellä Muotoilu - Kappale - Sisennykset ja välit ovat merkki (ch) ja rivi."
+
#. Ktgd2
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:290
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:330
msgctxt "optgeneralpage|squaremode"
msgid "_Use square page mode for text grid"
msgstr "Neliön muotoinen sivu tekstiruudukkoa käytettäessä"
+#. FJBNS
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:340
+msgctxt "extended_tip|squaremode"
+msgid "When this setting is enabled, the text grid will look like square page."
+msgstr "Kun tämä asetus on valittuna, tekstiruudukko näyttää neliönmuotoiselta sivulta."
+
#. BCtAD
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:318
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:363
msgctxt "optgeneralpage|label3"
msgid "Settings"
msgstr "Asetukset"
#. PdMCE
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:361
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:406
msgctxt "optgeneralpage|label7"
msgid "_Additional separators:"
msgstr "Ylimääräiset erotinmerkit:"
#. 9pDAg
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:395
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:440
msgctxt "optgeneralpage|standardizedpageshow"
msgid "Show standardized page count"
msgstr "Näytä sivumäärä standardisivuina"
#. qJ4Fr
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:422
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:467
msgctxt "optgeneralpage|labelstandardpages"
msgid "Characters per standardized page:"
msgstr "Merkkien määrä standardisivulla:"
#. dgznZ
-#: sw/uiconfig/swriter/ui/optgeneralpage.ui:469
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:514
msgctxt "optgeneralpage|label4"
msgid "Word Count"
msgstr "Sanamäärä"
+#. qfBtq
+#: sw/uiconfig/swriter/ui/optgeneralpage.ui:529
+msgctxt "extended_tip|OptGeneralPage"
+msgid "Specifies general settings for text documents."
+msgstr "Määritetään tekstiasiakirjojen yleiset asetukset."
+
#. G6aHC
#: sw/uiconfig/swriter/ui/optredlinepage.ui:37
msgctxt "optredlinepage|insert_label"
@@ -17027,440 +22741,668 @@ msgctxt "optredlinepage|insert"
msgid "Background color"
msgstr "Taustaväri"
+#. 8cWtT
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:81
+msgctxt "extended_tip|insert"
+msgid "Specifies how changes in the document are displayed when text is inserted."
+msgstr "Määritetään, miten esitetään asiakirjassa tekstin lisäysmuutos."
+
#. mGEfK
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:99
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:104
msgctxt "optredlinepage|insertcolor-atkobject"
msgid "Color of Insertions"
msgstr "Lisäysten väri"
+#. NHubs
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:105
+msgctxt "extended_tip|insertcolor"
+msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by %PRODUCTNAME, then modified to match to the author of each change."
+msgstr "Myös kunkin nauhoitetun muutostyypin osoitusväri voidaan valita. Kun luettelosta valitaan ehto \"Tekijän mukaan\", värin määrää %PRODUCTNAME. Väri muuttuu sitten vastaamaan kutakin muutoksen tekijää."
+
#. aCEwk
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:144
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:150
msgctxt "optredlinepage|label2"
msgid "Insertions"
msgstr "Lisäykset"
#. FFvMK
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:182
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:188
msgctxt "optredlinepage|deleted_label"
msgid "Attri_butes:"
msgstr "Määritteet:"
#. CzQcF
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:196
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:202
msgctxt "optredlinepage|deletedcolor_label"
msgid "Col_or:"
msgstr "Väri:"
+#. JsEJx
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:219
+msgctxt "extended_tip|deleted"
+msgid "Specifies how changes in the document are displayed when text is deleted. If you record text deletions, the text is displayed with the selected attribute (for example, strikethrough) and is not deleted."
+msgstr "Määritetään, miten esitetään asiakirjassa tekstin poistomuutos. Jos tekstin poistot nauhoitetaan, teksti näytetään valituin määrein (esimerkiksi yliviivattuna) eikä sitä poisteta."
+
#. P2XbL
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:231
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:242
msgctxt "optredlinepage|deletedcolor-atkobject"
msgid "Color of Deletions"
msgstr "Poistojen väri"
+#. w84gW
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:243
+msgctxt "extended_tip|deletedcolor"
+msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by %PRODUCTNAME, then modified to match to the author of each change."
+msgstr "Myös kunkin nauhoitetun muutostyypin osoitusväri voidaan valita. Kun luettelosta valitaan ehto \"Tekijän mukaan\", värin määrää %PRODUCTNAME. Väri muuttuu sitten vastaamaan kutakin muutoksen tekijää."
+
#. 3FpZy
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:276
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:288
msgctxt "optredlinepage|label3"
msgid "Deletions"
msgstr "Poistot"
#. qhZhQ
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:314
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:326
msgctxt "optredlinepage|changed_label"
msgid "Attrib_utes:"
msgstr "Määritteet:"
#. 3pALq
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:328
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:340
msgctxt "optredlinepage|changedcolor_label"
msgid "Colo_r:"
msgstr "Väri:"
+#. hFSia
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:357
+msgctxt "extended_tip|changed"
+msgid "Defines how changes to text attributes are displayed in the document. These changes affect attributes such as bold, italic or underline."
+msgstr "Määritetään, miten esitetään asiakirjassa tekstin määreiden muutokset. Nämä muutokset koskevat sellaisia määreitä kuin lihavointi, kursivointi tai alleviivaus."
+
#. QUmdP
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:363
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:380
msgctxt "optredlinepage|changedcolor-atkobject"
msgid "Color of Changed Attributes"
msgstr "Muutettujen ominaisuuksien väri"
+#. ZmSyG
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:381
+msgctxt "extended_tip|changedcolor"
+msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by %PRODUCTNAME, then modified to match to the author of each change."
+msgstr "Myös kunkin nauhoitetun muutostyypin osoitusväri voidaan valita. Kun luettelosta valitaan ehto \"Tekijän mukaan\", värin määrää %PRODUCTNAME. Väri muuttuu sitten vastaamaan kutakin muutoksen tekijää."
+
#. ZqYdk
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:408
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:426
msgctxt "optredlinepage|label4"
msgid "Changed Attributes"
msgstr "Muutetut määritteet"
#. E9g4Y
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:456
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:474
msgctxt "optredlinepage|markcolor-atkobject"
msgid "Color of Mark"
msgstr "Merkinnän väri"
+#. RrcPw
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:475
+msgctxt "extended_tip|markcolor"
+msgid "Specifies the color for highlighting the changed lines in the text."
+msgstr "Määritetään muutettujen rivien korostusväri tekstissä."
+
#. iLgeg
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:469
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:488
msgctxt "optredlinepage|markpos_label"
msgid "Mar_k:"
msgstr "Merkintä:"
#. paCGy
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:483
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:502
msgctxt "optredlinepage|markcolor_label"
msgid "_Color:"
msgstr "Väri:"
#. T9Fd9
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:527
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:546
msgctxt "optredlinepage|markpos"
msgid "[None]"
msgstr "[Ei mitään]"
#. gj7eD
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:528
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:547
msgctxt "optredlinepage|markpos"
msgid "Left margin"
msgstr "Vasen marginaali"
#. CMzw9
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:529
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:548
msgctxt "optredlinepage|markpos"
msgid "Right margin"
msgstr "Oikea marginaali"
#. g4YX6
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:530
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:549
msgctxt "optredlinepage|markpos"
msgid "Outer margin"
msgstr "Ulkomarginaali"
#. SxANq
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:531
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:550
msgctxt "optredlinepage|markpos"
msgid "Inner margin"
msgstr "Sisämarginaali"
+#. zf4X2
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:554
+msgctxt "extended_tip|markpos"
+msgid "Defines if and where changed lines in the document are marked."
+msgstr "Määritetään, merkitäänkö ja minne asiakirjassa muutetut rivit."
+
#. CEWpA
-#: sw/uiconfig/swriter/ui/optredlinepage.ui:547
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:571
msgctxt "optredlinepage|label5"
msgid "Lines Changed"
msgstr "Muutetut rivit"
+#. ZgDSi
+#: sw/uiconfig/swriter/ui/optredlinepage.ui:585
+msgctxt "extended_tip|OptRedLinePage"
+msgid "Defines the appearance of changes in the document."
+msgstr "Määritetään asiakirjan muutosten esittämistapa."
+
#. yqco2
#: sw/uiconfig/swriter/ui/opttablepage.ui:64
msgctxt "opttablepage|header"
msgid "H_eading"
msgstr "Otsikko"
+#. 4qFFB
+#: sw/uiconfig/swriter/ui/opttablepage.ui:73
+msgctxt "extended_tip|header"
+msgid "Specifies that the first row of the table is formatted with the \"Table heading\" Paragraph Style."
+msgstr "Merkinnällä määrätään, että taulukon ensimmäinen rivi muotoillaan \"Taulukon otsikko\" -kappaletyylillä."
+
#. pUDwB
-#: sw/uiconfig/swriter/ui/opttablepage.ui:79
+#: sw/uiconfig/swriter/ui/opttablepage.ui:84
msgctxt "opttablepage|repeatheader"
msgid "Re_peat on each page"
msgstr "Toista joka sivulla"
+#. bUgvP
+#: sw/uiconfig/swriter/ui/opttablepage.ui:94
+msgctxt "extended_tip|repeatheader"
+msgid "Specifies whether the table heading is carried over onto the new page after a page break."
+msgstr "Merkinnällä määrätään, että taulukon otsikko toistetaan uudella sivulla taulukon jatkuessa sivun vaihdon jälkeen."
+
#. h87BD
-#: sw/uiconfig/swriter/ui/opttablepage.ui:95
+#: sw/uiconfig/swriter/ui/opttablepage.ui:105
msgctxt "opttablepage|dontsplit"
msgid "_Do not split"
msgstr "Älä jaa taulukkoa eri sivuille"
+#. N7b3p
+#: sw/uiconfig/swriter/ui/opttablepage.ui:114
+msgctxt "extended_tip|dontsplit"
+msgid "Specifies that tables are not split by any type of text flow break."
+msgstr ""
+
#. DF6g4
-#: sw/uiconfig/swriter/ui/opttablepage.ui:110
+#: sw/uiconfig/swriter/ui/opttablepage.ui:125
msgctxt "opttablepage|border"
msgid "B_order"
msgstr "Reunus"
+#. qkQei
+#: sw/uiconfig/swriter/ui/opttablepage.ui:134
+msgctxt "extended_tip|border"
+msgid "Specifies that table cells have a border by default."
+msgstr "Merkinnällä määrätään, että oletuksena taulukon soluilla on reuna."
+
#. tDqM4
-#: sw/uiconfig/swriter/ui/opttablepage.ui:131
+#: sw/uiconfig/swriter/ui/opttablepage.ui:151
msgctxt "opttablepage|label1"
msgid "New Table Defaults"
msgstr "Uuden taulukon oletusvalinnat"
#. WYbaB
-#: sw/uiconfig/swriter/ui/opttablepage.ui:167
+#: sw/uiconfig/swriter/ui/opttablepage.ui:187
msgctxt "opttablepage|numformatting"
msgid "_Number recognition"
msgstr "Lukujen tunnistus"
+#. 8Bg9h
+#: sw/uiconfig/swriter/ui/opttablepage.ui:196
+msgctxt "extended_tip|numformatting"
+msgid "Specifies that numbers in a text table are recognized and formatted as numbers."
+msgstr ""
+
#. U6v8M
-#: sw/uiconfig/swriter/ui/opttablepage.ui:182
+#: sw/uiconfig/swriter/ui/opttablepage.ui:207
msgctxt "opttablepage|numfmtformatting"
msgid "N_umber format recognition"
msgstr "Numeromuodon tunnistus"
+#. 7CocC
+#: sw/uiconfig/swriter/ui/opttablepage.ui:217
+msgctxt "extended_tip|numfmtformatting"
+msgid "If Number format recognition is not marked, only input in the format that has been set at the cell is accepted. Any other input resets the format to Text."
+msgstr "Jos Numeromuodon tunnistus ei ole merkitty, vain soluun asetetun muotoilun mukaiset syötteet hyväksytään. Muut syötteet palauttavat muotoilun tekstiksi."
+
#. b6GGr
-#: sw/uiconfig/swriter/ui/opttablepage.ui:198
+#: sw/uiconfig/swriter/ui/opttablepage.ui:228
msgctxt "opttablepage|numalignment"
msgid "_Alignment"
msgstr "Tasaus"
+#. dBHyT
+#: sw/uiconfig/swriter/ui/opttablepage.ui:238
+msgctxt "extended_tip|numalignment"
+msgid "Specifies that numbers are always bottom right aligned in the cell."
+msgstr "Merkinnällä määrätään, että luvut ovat aina kohdistettu solussa alaoikealle."
+
#. AWFT8
-#: sw/uiconfig/swriter/ui/opttablepage.ui:220
+#: sw/uiconfig/swriter/ui/opttablepage.ui:255
msgctxt "opttablepage|label2"
msgid "Input in Tables"
msgstr "Taulukon arvojen syöttö"
#. LhnNT
-#: sw/uiconfig/swriter/ui/opttablepage.ui:273
+#: sw/uiconfig/swriter/ui/opttablepage.ui:308
msgctxt "opttablepage|label10"
msgid "Behavior of rows/columns"
msgstr "Rivien ja sarakkeiden käyttäytyminen"
#. oW7XW
-#: sw/uiconfig/swriter/ui/opttablepage.ui:284
+#: sw/uiconfig/swriter/ui/opttablepage.ui:319
msgctxt "opttablepage|fix"
msgid "_Fixed"
msgstr "Kiinteä"
+#. jBrSY
+#: sw/uiconfig/swriter/ui/opttablepage.ui:330
+msgctxt "extended_tip|fix"
+msgid "Specifies that changes to a row or column only affect the corresponding adjacent area."
+msgstr "Määritetään, että rivien tai sarakkeiden muutokset vaikuttavat vain viereisellä alueella."
+
#. YH3A4
-#: sw/uiconfig/swriter/ui/opttablepage.ui:301
+#: sw/uiconfig/swriter/ui/opttablepage.ui:341
msgctxt "opttablepage|fixprop"
msgid "Fi_xed, proportional"
msgstr "Kiinteä, suhteellinen"
+#. zDqF9
+#: sw/uiconfig/swriter/ui/opttablepage.ui:353
+msgctxt "extended_tip|fixprop"
+msgid "Specifies that changes to a row or column have an effect on the entire table."
+msgstr "Määritetään, että rivien tai sarakkeiden muutokset vaikuttavat koko taulukossa."
+
#. 4GG2h
-#: sw/uiconfig/swriter/ui/opttablepage.ui:319
+#: sw/uiconfig/swriter/ui/opttablepage.ui:364
msgctxt "opttablepage|var"
msgid "_Variable"
msgstr "Vaihtuva"
+#. TFEkh
+#: sw/uiconfig/swriter/ui/opttablepage.ui:376
+msgctxt "extended_tip|var"
+msgid "Specifies that changes to a row or column affect the table size."
+msgstr "Määritetään, että rivien tai sarakkeiden muutokset vaikuttavat taulukon kokoon."
+
#. LE694
-#: sw/uiconfig/swriter/ui/opttablepage.ui:340
+#: sw/uiconfig/swriter/ui/opttablepage.ui:390
msgctxt "opttablepage|label11"
msgid "Changes affect the adjacent area only"
msgstr "Muutokset vaikuttavat vain vierekkäiseen alueeseen"
#. P5dLC
-#: sw/uiconfig/swriter/ui/opttablepage.ui:357
+#: sw/uiconfig/swriter/ui/opttablepage.ui:407
msgctxt "opttablepage|label12"
msgid "Changes affect the entire table"
msgstr "Muutokset vaikuttavat koko taulukkoon"
#. DoB9R
-#: sw/uiconfig/swriter/ui/opttablepage.ui:373
+#: sw/uiconfig/swriter/ui/opttablepage.ui:423
msgctxt "opttablepage|label13"
msgid "Changes affect the table size"
msgstr "Muutokset vaikuttavat taulukon kokoon"
#. juzyR
-#: sw/uiconfig/swriter/ui/opttablepage.ui:410
+#: sw/uiconfig/swriter/ui/opttablepage.ui:460
msgctxt "opttablepage|label4"
msgid "Move cells"
msgstr "Siirrä soluja"
+#. ycXkN
+#: sw/uiconfig/swriter/ui/opttablepage.ui:478
+msgctxt "extended_tip|rowmove"
+msgid "Specifies the value to be used for moving a row."
+msgstr "Määritetään riville käytettävä siirtomatka."
+
+#. mikqQ
+#: sw/uiconfig/swriter/ui/opttablepage.ui:496
+msgctxt "extended_tip|colmove"
+msgid "Specifies the value to be used for moving a column."
+msgstr "Määritetään sarakkeelle käytettävä siirtomatka."
+
#. bmvCF
-#: sw/uiconfig/swriter/ui/opttablepage.ui:450
+#: sw/uiconfig/swriter/ui/opttablepage.ui:510
msgctxt "opttablepage|label5"
msgid "_Row:"
msgstr "Rivi:"
#. bb7Uf
-#: sw/uiconfig/swriter/ui/opttablepage.ui:465
+#: sw/uiconfig/swriter/ui/opttablepage.ui:525
msgctxt "opttablepage|label6"
msgid "_Column:"
msgstr "Sarake:"
+#. MwaG6
+#: sw/uiconfig/swriter/ui/opttablepage.ui:560
+msgctxt "extended_tip|rowinsert"
+msgid "Specifies the default value for inserting rows."
+msgstr "Määritetään rivien lisäämisen oletusmitta."
+
+#. nbrx9
+#: sw/uiconfig/swriter/ui/opttablepage.ui:578
+msgctxt "extended_tip|colinsert"
+msgid "Specifies the default value for inserting columns."
+msgstr "Määritetään sarakkeiden lisäämisen oletusmitta."
+
#. hoDuN
-#: sw/uiconfig/swriter/ui/opttablepage.ui:522
+#: sw/uiconfig/swriter/ui/opttablepage.ui:592
msgctxt "opttablepage|label15"
msgid "Ro_w:"
msgstr "Rivi:"
#. pBM3d
-#: sw/uiconfig/swriter/ui/opttablepage.ui:537
+#: sw/uiconfig/swriter/ui/opttablepage.ui:607
msgctxt "opttablepage|label16"
msgid "Colu_mn:"
msgstr "Sarake:"
#. KcBp8
-#: sw/uiconfig/swriter/ui/opttablepage.ui:551
+#: sw/uiconfig/swriter/ui/opttablepage.ui:621
msgctxt "opttablepage|label14"
msgid "Insert cell"
msgstr "Lisää solu"
#. WG9hA
-#: sw/uiconfig/swriter/ui/opttablepage.ui:581
+#: sw/uiconfig/swriter/ui/opttablepage.ui:651
msgctxt "opttablepage|label3"
msgid "Keyboard Handling"
msgstr "Taulukon käsittely näppäimistöllä"
+#. XKdEA
+#: sw/uiconfig/swriter/ui/opttablepage.ui:666
+msgctxt "extended_tip|OptTablePage"
+msgid "Defines the attributes of tables in text documents."
+msgstr "Määritetään tekstiasiakirjojen taulukoiden määreet."
+
#. mq4U3
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:12
msgctxt "outlinenumbering|form1"
msgid "Untitled 1"
msgstr "Nimetön 1"
+#. bheE8
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:16
+msgctxt "outlinenumbering|extended_tip|form1"
+msgid "Select the predefined numbering style that you want to assign to the selected outline level."
+msgstr "Valitaan esimääritelty numerointityyli, joka määritetään valitulle jäsennystasolle."
+
#. stM8e
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:20
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:25
msgctxt "outlinenumbering|form2"
msgid "Untitled 2"
msgstr "Nimetön 2"
#. Sbvhz
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:28
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:33
msgctxt "outlinenumbering|form3"
msgid "Untitled 3"
msgstr "Nimetön 3"
#. Dsuic
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:36
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:41
msgctxt "outlinenumbering|form4"
msgid "Untitled 4"
msgstr "Nimetön 4"
#. FcNJ7
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:44
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:49
msgctxt "outlinenumbering|form5"
msgid "Untitled 5"
msgstr "Nimetön 5"
#. RZ5wa
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:52
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:57
msgctxt "outlinenumbering|form6"
msgid "Untitled 6"
msgstr "Nimetön 6"
#. 7nVF5
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:60
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:65
msgctxt "outlinenumbering|form7"
msgid "Untitled 7"
msgstr "Nimetön 7"
#. YyuRY
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:68
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:73
msgctxt "outlinenumbering|form8"
msgid "Untitled 8"
msgstr "Nimetön 8"
#. yeNqB
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:76
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:81
msgctxt "outlinenumbering|form9"
msgid "Untitled 9"
msgstr "Nimetön 9"
#. KqFzs
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:90
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:95
msgctxt "outlinenumbering|saveas"
msgid "Save _As..."
msgstr "Tallenna ni_mellä..."
+#. ABAWF
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:99
+msgctxt "outlinenumbering|extended_tip|saveas"
+msgid "Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document."
+msgstr ""
+
+#. N5MWJ
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:106
+msgctxt "outlinenumbering|extended_tip|form"
+msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgstr "Napsauta numerointityyliä luettelossa ja anna sitten nimi tyylille. Numerot vastaavat sitä jäsennystasoa, jolle tyyli on määritetty."
+
#. d2QaP
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:98
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:113
msgctxt "outlinenumbering|OutlineNumberingDialog"
msgid "Chapter Numbering"
msgstr "Lukujen numerointi"
#. pBP94
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:115
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:130
msgctxt "outlinenumbering|user"
msgid "L_oad/Save"
msgstr "_Lataa/tallenna"
#. A4kyF
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:244
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:259
msgctxt "outlinenumbering|numbering"
msgid "Numbering"
msgstr "Numerointi"
#. eTpmZ
-#: sw/uiconfig/swriter/ui/outlinenumbering.ui:290
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:305
msgctxt "outlinenumbering|position"
msgid "Position"
msgstr "Sijainti"
+#. HBEFF
+#: sw/uiconfig/swriter/ui/outlinenumbering.ui:332
+msgctxt "outlinenumbering|extended_tip|OutlineNumberingDialog"
+msgid "Specifies the number format and the hierarchy for chapter numbering in the current document."
+msgstr "Määritetään käsiteltävän asiakirjan kappalenumeroinnin muotoilu ja hierarkia."
+
+#. soxpF
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:73
+msgctxt "outlinenumberingpage|extended_tip|level"
+msgid "Click the chapter and outline level that you want to modify, and then specify the numbering options for the level."
+msgstr ""
+
#. 2ibio
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:81
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:86
msgctxt "outlinenumberingpage|label1"
msgid "Level"
msgstr "Taso"
#. JfB3i
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:117
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:122
msgctxt "outlinenumberingpage|label3"
msgid "Paragraph style:"
msgstr "Kappaletyyli:"
+#. FwDCj
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:139
+msgctxt "outlinenumberingpage|extended_tip|style"
+msgid "Select the paragraph style that you want to assign to the selected chapter and outline level."
+msgstr ""
+
#. nrfyA
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:142
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:152
msgctxt "outlinenumberingpage|label4"
msgid "Number:"
msgstr "Numerointi:"
#. 8yV7Q
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:156
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:166
msgctxt "outlinenumberingpage|label5"
msgid "Character style:"
msgstr "Merkkityyli:"
#. Az7ML
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:170
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:180
msgctxt "outlinenumberingpage|sublevelsft"
msgid "Show sublevels:"
msgstr "Näytä alatasot:"
+#. aWDKX
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:197
+msgctxt "outlinenumberingpage|extended_tip|numbering"
+msgid "Select the numbering style that you want to apply to the selected outline level."
+msgstr "Valikoidaan valitulle jäsennystasolle käytettävä numerointityyli."
+
+#. wN4Vr
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:213
+msgctxt "outlinenumberingpage|extended_tip|charstyle"
+msgid "Select the format of the numbering character."
+msgstr "Valitaan numerointimerkin muoto."
+
+#. 5A5fh
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:233
+msgctxt "outlinenumberingpage|extended_tip|sublevelsnf"
+msgid "Select the number of outline levels to include in the chapter numbering. For example, select \"3\" to display three levels of chapter numbering: 1.1.1"
+msgstr "Valitaan lukunumerointiin sisällytettävien jäsennystasojen lukumäärä. Valitsemalla esimerkiksi \"3\" esitetään kolmitasoinen lukunumerointi: 1.1.1"
+
#. XVzhy
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:221
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:246
msgctxt "outlinenumberingpage|label10"
msgid "Start at:"
msgstr "Aloitus:"
+#. QSg9A
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:265
+msgctxt "outlinenumberingpage|extended_tip|startat"
+msgid "Enter the number that you want to restart the chapter numbering at."
+msgstr "Annetaan numero, josta lukujen numerointi alkaa."
+
#. YoP59
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:252
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:282
msgctxt "outlinenumberingpage|label2"
msgid "Numbering"
msgstr "Numerointi"
#. bFwTy
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:306
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:336
msgctxt "outlinenumberingpage|label17"
msgid "Preview"
msgstr "Esikatselu"
+#. xVDF2
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:375
+msgctxt "outlinenumberingpage|extended_tip|prefix"
+msgid "Enter the text that you want to display before the chapter number."
+msgstr "Annetaan teksti, joka näkyy luvun numeron edessä."
+
+#. 4zvdF
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:392
+msgctxt "outlinenumberingpage|extended_tip|suffix"
+msgid "Enter the text that you want to display after the chapter number."
+msgstr "Annetaan teksti, joka näkyy luvun numeron jälkeen."
+
#. zoAuC
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:365
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:405
msgctxt "outlinenumberingpage|label8"
msgid "Before:"
msgstr "Ennen:"
#. 3KmsV
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:379
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:419
msgctxt "outlinenumberingpage|label9"
msgid "After:"
msgstr "Jälkeen:"
#. Vmmga
-#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:397
+#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:437
msgctxt "outlinenumberingpage|label7"
msgid "Separator"
msgstr "Erotin"
+#. DC268
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:93
+msgctxt "outlinepositionpage|extended_tip|levellb"
+msgid "Select the level(s) that you want to modify."
+msgstr ""
+
#. aBYaM
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:101
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:106
msgctxt "outlinepositionpage|1"
msgid "Level"
msgstr "Taso"
#. uiBLi
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:140
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:145
msgctxt "outlinepositionpage|numalign"
msgid "Numbering alignment:"
msgstr "Numeroinnin tasaus:"
#. 7C7M7
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:156
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:161
msgctxt "outlinepositionpage|liststore1"
msgid "Left"
msgstr "Vasen"
#. W4eDj
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:157
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:162
msgctxt "outlinepositionpage|liststore1"
msgid "Centered"
msgstr "Keskitetty"
#. gRaNm
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:158
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:163
msgctxt "outlinepositionpage|liststore1"
msgid "Right"
msgstr "Oikea"
+#. CPWPU
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:167
+msgctxt "outlinepositionpage|extended_tip|numalignlb"
+msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
+msgstr "Asetetaan numerointisymboleiden kohdistus. Valitaan \"Vasen\", kun numerointisymboli tasataan alkamaan välittömästi \"Tasattu etäisyydelle\" -sijainnista. Valitaan \"Oikea\", kun symboli tasataan päättymään \"Tasattu etäisyydelle\" -sijaintiin. Valitaan \"Keskitetty \", kun symboli keskitetään \"Tasattu etäisyydelle\" -sijaintiin nähden."
+
#. DCbYC
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:170
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:180
msgctxt "outlinepositionpage|numdist"
msgid ""
"Minimum space between\n"
@@ -17469,92 +23411,152 @@ msgstr ""
"Numeroinnin ja tekstin\n"
"välillä vähintään:"
+#. qNaWE
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:201
+msgctxt "outlinepositionpage|extended_tip|numdistmf"
+msgid "The alignment of the numbering symbol is adjusted to get the desired minimum space. If it is not possible because the numbering area is not wide enough, then the start of the text is adjusted."
+msgstr ""
+
#. JdjtA
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:199
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:214
msgctxt "outlinepositionpage|numberingwidth"
msgid "Width of numbering:"
msgstr "Numeroinnin leveys:"
+#. bBUvA
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:234
+msgctxt "outlinepositionpage|extended_tip|numberingwidthmf"
+msgid "Enter the width of the numbering area. The numbering symbol can be left, center or right in this area."
+msgstr ""
+
#. aZwtj
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:225
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:245
msgctxt "outlinepositionpage|relative"
msgid "Relative"
msgstr "Suhteellinen"
+#. vqn5C
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:254
+msgctxt "outlinepositionpage|extended_tip|relative"
+msgid "Indents the current level relative to the previous level in the list hierarchy."
+msgstr ""
+
#. jBvmB
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:242
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:267
msgctxt "outlinepositionpage|indent"
msgid "Indent:"
msgstr "Sisennä:"
+#. hKehH
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:287
+msgctxt "outlinepositionpage|extended_tip|indentmf"
+msgid "Enter the amount of space to leave between the left page margin (or the left edge of the text object) and the left edge of the numbering area. If the current paragraph style uses an indent, the amount you enter here is added to the indent."
+msgstr ""
+
#. GFsnA
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:270
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:300
msgctxt "outlinepositionpage|indentat"
msgid "Indent at:"
msgstr "Sisennys:"
+#. VgG4o
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:320
+msgctxt "outlinepositionpage|extended_tip|indentatmf"
+msgid "Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line."
+msgstr "Asetetaan vasemman marginaalin ja kaikkien ensimmäistä riviä seuraavien numeroidun kappaleen rivien välinen etäisyys."
+
#. 6ZE4k
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:298
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:333
msgctxt "outlinepositionpage|num2align"
msgid "Numbering alignment:"
msgstr "Numeroinnin tasaus:"
+#. rhrGW
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:350
+msgctxt "outlinepositionpage|extended_tip|num2alignlb"
+msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
+msgstr "Asetetaan numerointisymboleiden kohdistus. Valitaan \"Vasen\", kun numerointisymboli tasataan alkamaan välittömästi \"Tasattu etäisyydelle\" -sijainnista. Valitaan \"Oikea\", kun symboli tasataan päättymään \"Tasattu etäisyydelle\" -sijaintiin. Valitaan \"Keskitetty \", kun symboli keskitetään \"Tasattu etäisyydelle\" -sijaintiin nähden."
+
#. wnCMF
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:323
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:363
msgctxt "outlinepositionpage|alignedat"
msgid "Aligned at:"
msgstr "Tasattu etäisyydelle:"
+#. kWMhW
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:383
+msgctxt "outlinepositionpage|extended_tip|alignedatmf"
+msgid "Enter the distance from the left page margin at which the numbering symbol will be aligned."
+msgstr "Annetaan etäisyys vasemmasta marginaalista, jolle numerointisymboli kohdistetaan."
+
#. 3EGPa
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:351
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:396
msgctxt "outlinepositionpage|at"
msgid "Tab stop at:"
msgstr "Sarkainkohta:"
+#. FVvCZ
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:416
+msgctxt "outlinepositionpage|extended_tip|atmf"
+msgid "If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position."
+msgstr "Jos numerointia seuraamaan valittiin sarkainkohta, ei-negatiivinen luku voidaan antaa sarkainkohdan sijainniksi."
+
#. AtJnm
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:381
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:431
msgctxt "outlinepositionpage|liststore2"
msgid "Tab stop"
msgstr "Sarkainkohta"
#. w6UaR
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:382
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:432
msgctxt "outlinepositionpage|liststore2"
msgid "Space"
msgstr "Väli"
#. E5DdF
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:383
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:433
msgctxt "outlinepositionpage|liststore2"
msgid "Nothing"
msgstr "Ei mitään"
#. p524j
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:384
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:434
msgctxt "outlinepositionpage|liststore2"
msgid "New Line"
msgstr "Rivinvaihto"
+#. AacBT
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:438
+msgctxt "outlinepositionpage|extended_tip|numfollowedbylb"
+msgid "Enter the distance from the left page margin at which the numbering symbol will be aligned."
+msgstr "Annetaan etäisyys vasemmasta marginaalista, jolle numerointisymboli kohdistetaan."
+
#. V2jvn
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:396
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:451
msgctxt "outlinepositionpage|numfollowedby"
msgid "Numbering followed by:"
msgstr "Numeron jälkeen tulee:"
#. 2AXGD
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:408
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:463
msgctxt "outlinepositionpage|standard"
msgid "Default"
msgstr "Oletus"
+#. 8fEFG
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:473
+msgctxt "outlinepositionpage|extended_tip|standard"
+msgid "Resets the indent and the spacing values to the default values."
+msgstr "Palautetaan sisennys- ja välistysarvot oletusarvoikseen."
+
#. bLuru
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:436
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:496
msgctxt "outlinepositionpage|label10"
msgid "Position and Spacing"
msgstr "Sijainti ja välit"
#. ogECa
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:485
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:545
msgctxt "outlinepositionpage|label17"
msgid "Preview"
msgstr "Esikatselu"
@@ -17638,7 +23640,7 @@ msgid "_More Options"
msgstr "Lisää valintoja"
#. tG9pB
-#: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:193
+#: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:194
msgctxt "pagecolumncontrol|moreoptions|tooltip_text"
msgid "More Options"
msgstr "Lisää valintoja"
@@ -17968,7 +23970,7 @@ msgid "Right"
msgstr "Oikea"
#. pCkgP
-#: sw/uiconfig/swriter/ui/pagestylespanel.ui:249
+#: sw/uiconfig/swriter/ui/pagestylespanel.ui:251
msgctxt "pagestylespanel|customlabel"
msgid "Custom"
msgstr "Mukautettu"
@@ -18111,78 +24113,126 @@ msgctxt "picturepage|browse"
msgid "Browse..."
msgstr "Selaa..."
+#. wtHPx
+#: sw/uiconfig/swriter/ui/picturepage.ui:43
+msgctxt "picturepage|extended_tip|browse"
+msgid "Locate the new graphic file that you want to link to, and then click Open."
+msgstr "Paikallistetaan ensin uusi linkitettävä tiedosto ja napsautetaan sitten Avaa."
+
+#. dGTfN
+#: sw/uiconfig/swriter/ui/picturepage.ui:60
+msgctxt "picturepage|extended_tip|entry"
+msgid "Displays the path to the linked graphic file. To change the link, click the Browse button and then locate the file that you want to link to."
+msgstr "Näytetään linkitetyn kuvatiedoston polku. Linkin muuttamiseksi napsautetaan ensin selaus-painiketta (...) ja paikallistetaan sitten linkitettävä tiedosto. "
+
#. PqFMY
-#: sw/uiconfig/swriter/ui/picturepage.ui:63
+#: sw/uiconfig/swriter/ui/picturepage.ui:73
msgctxt "picturepage|label1"
msgid "_File name"
msgstr "Tiedoston nimi"
#. UYzJC
-#: sw/uiconfig/swriter/ui/picturepage.ui:81
+#: sw/uiconfig/swriter/ui/picturepage.ui:91
msgctxt "picturepage|label11"
msgid "Link"
msgstr "Linkki"
#. hCVDF
-#: sw/uiconfig/swriter/ui/picturepage.ui:117
+#: sw/uiconfig/swriter/ui/picturepage.ui:127
msgctxt "picturepage|vert"
msgid "_Vertically"
msgstr "Pystytasossa"
+#. wG2bK
+#: sw/uiconfig/swriter/ui/picturepage.ui:136
+msgctxt "picturepage|extended_tip|vert"
+msgid "Flips the selected image vertically."
+msgstr ""
+
#. jwAir
-#: sw/uiconfig/swriter/ui/picturepage.ui:132
+#: sw/uiconfig/swriter/ui/picturepage.ui:147
msgctxt "picturepage|hori"
msgid "Hori_zontally"
msgstr "Vaakatasossa"
+#. DKxDV
+#: sw/uiconfig/swriter/ui/picturepage.ui:156
+msgctxt "picturepage|extended_tip|hori"
+msgid "Flips the selected image horizontally."
+msgstr ""
+
#. F3zpM
-#: sw/uiconfig/swriter/ui/picturepage.ui:147
+#: sw/uiconfig/swriter/ui/picturepage.ui:167
msgctxt "picturepage|allpages"
msgid "On all pages"
msgstr "Kaikilla sivuilla"
+#. mTETs
+#: sw/uiconfig/swriter/ui/picturepage.ui:178
+msgctxt "picturepage|extended_tip|allpages"
+msgid "Flips the selected image horizontally on all pages."
+msgstr "Peilataan valittu kuva vaakasuunnassa kaikilla sivuilla."
+
#. FX5Cn
-#: sw/uiconfig/swriter/ui/picturepage.ui:164
+#: sw/uiconfig/swriter/ui/picturepage.ui:189
msgctxt "picturepage|leftpages"
msgid "On left pages"
msgstr "Vasemmanpuoleisilla sivuilla"
+#. iPxX8
+#: sw/uiconfig/swriter/ui/picturepage.ui:200
+msgctxt "picturepage|extended_tip|leftpages"
+msgid "Flips the selected image horizontally only on even pages."
+msgstr "Peilataan valittu kuva vaakasuunnassa vain parillisilla sivuilla."
+
#. 6eLFK
-#: sw/uiconfig/swriter/ui/picturepage.ui:181
+#: sw/uiconfig/swriter/ui/picturepage.ui:211
msgctxt "picturepage|rightpages"
msgid "On right pages"
msgstr "Oikeanpuoleisilla sivuilla"
+#. XL7Y3
+#: sw/uiconfig/swriter/ui/picturepage.ui:222
+msgctxt "picturepage|extended_tip|rightpages"
+msgid "Flips the selected image horizontally only on odd pages."
+msgstr "Peilataan valittu kuva vaakasuunnassa vain parittomilla sivuilla."
+
#. M9Lxh
-#: sw/uiconfig/swriter/ui/picturepage.ui:236
+#: sw/uiconfig/swriter/ui/picturepage.ui:271
msgctxt "picturepage|label2"
msgid "Flip"
msgstr "Käännä"
#. vEJFW
-#: sw/uiconfig/swriter/ui/picturepage.ui:276
+#: sw/uiconfig/swriter/ui/picturepage.ui:311
msgctxt "picturepage|FT_ANGLE"
msgid "_Angle:"
msgstr "Kulma:"
#. hBc6G
-#: sw/uiconfig/swriter/ui/picturepage.ui:320
+#: sw/uiconfig/swriter/ui/picturepage.ui:355
msgctxt "picturepage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Kiertokulma"
#. Q6xq6
-#: sw/uiconfig/swriter/ui/picturepage.ui:333
+#: sw/uiconfig/swriter/ui/picturepage.ui:368
msgctxt "picturepage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Oletusasetukset:"
#. HpCfF
-#: sw/uiconfig/swriter/ui/picturepage.ui:358
+#: sw/uiconfig/swriter/ui/picturepage.ui:393
msgctxt "picturepage|label2"
msgid "Rotation Angle"
msgstr "Kiertokulma"
+#. UFDyD
+#: sw/uiconfig/swriter/ui/picturepage.ui:409
+msgctxt "picturepage|extended_tip|PicturePage"
+msgid "Specify the flip and the link options for the selected image."
+msgstr "Tehdään valitun kuvan kääntämis- ja linkittämisasetukset."
+
#. fSmkv
#: sw/uiconfig/swriter/ui/previewzoomdialog.ui:22
msgctxt "previewzoomdialog|PreviewZoomDialog"
@@ -18201,6 +24251,24 @@ msgctxt "previewzoomdialog|label2"
msgid "_Columns"
msgstr "_Sarakkeet"
+#. EkNU9
+#: sw/uiconfig/swriter/ui/previewzoomdialog.ui:136
+msgctxt "previewzoomdialog|extended_tip|rows"
+msgid "Defines the number of rows of pages."
+msgstr "Määrätään vierekkäisten sivujen lukumäärä näytöllä."
+
+#. 9PMpM
+#: sw/uiconfig/swriter/ui/previewzoomdialog.ui:154
+msgctxt "previewzoomdialog|extended_tip|cols"
+msgid "Defines the number of pages shown in columns."
+msgstr "Määrätään allekkaisten sivujen lukumäärä näytöllä."
+
+#. A5j6C
+#: sw/uiconfig/swriter/ui/previewzoomdialog.ui:182
+msgctxt "previewzoomdialog|extended_tip|PreviewZoomDialog"
+msgid "Defines the number of pages displayed on screen. Click the arrow next to the icon to open a grid to select the number of pages to be displayed as rows and columns in the preview."
+msgstr "Määrätään näytöllä näytettävä sivumäärä. Kuvakkeen viereistä nuolivalitsinta napsauttamalla otetaan esille ruudukko, jossa voidaan valita esikatselussa näytettävä sivumäärä vaaka- ja pystysuuntaan."
+
#. 2UCY8
#: sw/uiconfig/swriter/ui/printeroptions.ui:30
msgctxt "printeroptions|pagebackground"
@@ -18273,6 +24341,12 @@ msgctxt "printmergedialog|PrintMergeDialog"
msgid "Your document contains address database fields. Do you want to print a form letter?"
msgstr "Asiakirjasi sisältää osoitetietokannan kenttiä. Haluatko tulostaa joukkokirjeen?"
+#. LyE96
+#: sw/uiconfig/swriter/ui/printmergedialog.ui:87
+msgctxt "printmergedialog|extended_tip|PrintMergeDialog"
+msgid "When you print a document that contains database fields, a dialog asks you if you want to print a form letter. If you answer Yes, the Mail Merge dialog opens where you can select the database records to print."
+msgstr "Kun tulostetaan asiakirja, jossa on tietokantakenttiä, valintaikkunassa tiedustellaan, haluaako käyttäjä tulostaa joukkokirjeen. Jos vastataan Kyllä, avautuu Joukkokirje-valintaikkuna, jossa voidaan valita tulostettavat tietokannan tietueet."
+
#. vnSLh
#: sw/uiconfig/swriter/ui/printmonitordialog.ui:8
msgctxt "printmonitordialog|PrintMonitorDialog"
@@ -18291,158 +24365,278 @@ msgctxt "printoptionspage|graphics"
msgid "_Images and objects"
msgstr "Kuvat ja objektit"
+#. AXuCG
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:45
+msgctxt "extended_tip|graphics"
+msgid "Specifies whether the graphics of your text document are printed."
+msgstr "Merkinnällä määrätään, että tekstiasiakirjan kuvat tulostetaan."
+
#. YXZkf
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:51
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:56
msgctxt "printoptionspage|formcontrols"
msgid "Form control_s"
msgstr "Lomakkeen ohjausobjektit"
+#. awozF
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:65
+msgctxt "extended_tip|formcontrols"
+msgid "Specifies whether the form control fields of the text document are printed."
+msgstr "Merkinnällä määrätään, että tekstiasiakirjan lomakekentät tulostetaan."
+
#. Etckm
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:66
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:76
msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "Sivun tausta"
+#. ocn5F
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:85
+msgctxt "extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
+msgstr "Merkinnällä määrätään, että sivun taustaan lisätyt värit ja objektit (Muotoilu - Sivu - Tausta) sisältyvät tulostettuun asiakirjaan."
+
#. FWBUe
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:81
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:96
msgctxt "printoptionspage|inblack"
msgid "Print text in blac_k"
msgstr "Tulosta teksti mustana"
+#. W6rPX
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:105
+msgctxt "extended_tip|inblack"
+msgid "Specifies whether to always print text in black."
+msgstr "Merkinnällä määrätään, että teksti tulostetaan vain mustalla värillä."
+
#. EhvUm
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:96
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:116
msgctxt "printoptionspage|hiddentext"
msgid "Hidden te_xt"
msgstr "Piiloteksti"
+#. 5eAqy
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:125
+msgctxt "extended_tip|hiddentext"
+msgid "Enable this option to print text that is marked as hidden."
+msgstr "Asetuksen käyttö johtaa piilotetuiksi merkittyjen tekstien tulostumiseen."
+
#. AkeAw
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:111
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:136
msgctxt "printoptionspage|textplaceholder"
msgid "Text _placeholder"
msgstr "Tekstipaikanvaraaja"
+#. QfL9u
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:145
+msgctxt "extended_tip|textplaceholder"
+msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout."
+msgstr "Tämän asetuksen valinta tekee mahdolliseksi tekstin paikkamerkkien tulostumisen. Jos valinta jätetään tyhjäksi, jäävät tekstin paikkamerkkien kohdat tyhjiksi tulosteessa. "
+
#. nxmuA
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:132
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:162
msgctxt "printoptionspage|label2"
msgid "Contents"
msgstr "Sisältö"
#. UdKAr
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:163
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:193
msgctxt "printoptionspage|leftpages"
msgid "_Left pages"
msgstr "_Vasemmat sivut"
+#. AQNdC
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:202
+msgctxt "extended_tip|leftpages"
+msgid "Specifies whether to print all left (even numbered) pages of the document."
+msgstr "Merkinnällä määrätään asiakirjan kaikki vasemmat (parilliset) sivut tulostettavaksi."
+
#. UpodC
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:178
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:213
msgctxt "printoptionspage|rightpages"
msgid "_Right pages"
msgstr "Oikeat s_ivut"
+#. YNAik
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:222
+msgctxt "extended_tip|rightpages"
+msgid "Specifies whether to print all right (odd numbered) pages of the document."
+msgstr "Merkinnällä määrätään asiakirjan kaikki oikeanpuoleiset (parittomat) sivut tulostettavaksi."
+
#. yWvNR
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:193
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:233
msgctxt "printoptionspage|brochure"
msgid "Broch_ure"
msgstr "Esite"
+#. BHXQ2
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:242
+msgctxt "extended_tip|brochure"
+msgid "Select the Brochure option to print your document in brochure format."
+msgstr "Valitaan Esite-asetus asiakirjan tulostamiseksi esitemuodossa."
+
#. knHGC
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:208
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:253
msgctxt "printoptionspage|rtl"
msgid "Right to Left"
msgstr "Oikealta vasemmalle"
+#. bjysC
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:263
+msgctxt "extended_tip|rtl"
+msgid "Check to print the pages of the brochure in the correct order for a right-to-left script."
+msgstr "Merkitsemällä määrätään esitteet sivut tulostettaviksi oikeassa järjestyksessä oikealta vasemmalle kirjoitettavilla kielillä."
+
#. QTzam
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:230
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:280
msgctxt "printoptionspage|label10"
msgid "Pages"
msgstr "Sivut"
#. 6C24R
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:261
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:311
msgctxt "printoptionspage|none"
msgid "_None"
msgstr "_Ei mitään"
+#. CDv8b
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:321
+msgctxt "extended_tip|none"
+msgid "Specifies whether comments in your document are printed."
+msgstr "Määritetään asiakirjan huomautuksien tulostusta."
+
#. 6vPTt
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:277
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:332
msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "Vain _huomautukset"
+#. KsL3A
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:342
+msgctxt "extended_tip|only"
+msgid "Specifies whether comments in your document are printed."
+msgstr "Määritetään asiakirjan huomautuksien tulostusta."
+
#. n5M2U
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:293
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:353
msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "Asiakirjan _loppuun"
+#. VxM7F
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:363
+msgctxt "extended_tip|end"
+msgid "Specifies whether comments in your document are printed."
+msgstr "Määritetään asiakirjan huomautuksien tulostusta."
+
#. pRqdi
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:309
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:374
msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "_Sivun loppuun"
+#. hxM9Z
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:384
+msgctxt "extended_tip|endpage"
+msgid "Specifies whether comments in your document are printed."
+msgstr "Määritetään asiakirjan huomautuksien tulostusta."
+
#. oBR83
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:325
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:395
msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr "Marginaaliin"
+#. 7aAXX
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:405
+msgctxt "extended_tip|inmargins"
+msgid "Specifies whether comments in your document are printed."
+msgstr "Määritetään asiakirjan huomautuksien tulostusta."
+
#. VeG6V
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:347
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:422
msgctxt "printoptionspage|4"
msgid "Comments"
msgstr "Huomautukset"
-#. hWKii
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:395
+#. hwuKb
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:470
msgctxt "printoptionspage|label5"
-msgid "_Fax"
-msgstr "_Faksi"
+msgid "_Fax:"
+msgstr ""
+
+#. CFCk9
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:475
+msgctxt "extended_tip|label5"
+msgid "If you have installed fax software on your computer and wish to fax directly from the text document, select the desired fax machine."
+msgstr "Jos tietokoneelle on asennettu faksiohjelma ja tekstiasiakirja halutaan lähettää suoraan faksina, valitaan tarvittava faksilaite."
+
+#. SBVz6
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:490
+msgctxt "extended_tip|fax"
+msgid "If you have installed fax software on your computer and wish to fax directly from the text document, select the desired fax machine."
+msgstr "Jos tietokoneelle on asennettu faksiohjelma ja tekstiasiakirja halutaan lähettää suoraan faksina, valitaan tarvittava faksilaite."
#. HCEJQ
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:422
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:507
msgctxt "printoptionspage|blankpages"
msgid "Print _automatically inserted blank pages"
msgstr "Tulosta _automaattisesti lisätyt tyhjät sivut"
+#. JB64a
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:516
+msgctxt "extended_tip|blankpages"
+msgid "If this option is enabled, automatically-inserted blank pages are being printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page or not."
+msgstr "Kun tämä valinta on tehty, ohjelman lisäämät tyhjät sivut tulostetaan. Tämä on tarpeen, kun tulostetaan kaksipuoleisesti. Esimerkiksi kirjassa \"luku\"-kappaletyyli on määritelty alkavaksi aina parittomalta sivulta. Jos edellinen luku päättyy parittomalle sivulle, %PRODUCTNAME lisää parillisen tyhjän sivun. Tämä valinta ohjaa mainitun parillisen sivun tulostusta."
+
#. oSYKd
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:437
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:527
msgctxt "printoptionspage|papertray"
msgid "_Paper tray from printer settings"
msgstr "_Paperilokero tulostimen asetuksista"
+#. xGp3V
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:536
+msgctxt "extended_tip|papertray"
+msgid "For printers with multiple trays, the \"Paper tray from printer settings\" option specifies whether the paper tray used is specified by the system settings of the printer."
+msgstr "Monilokeroisissa tulostimissa \"Paperilokero tulostimen asetuksista\"-valinta määrittää, että käytetään järjestelmäasetusten mukaista paperilokeroa."
+
#. XdcEh
-#: sw/uiconfig/swriter/ui/printoptionspage.ui:458
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:553
msgctxt "printoptionspage|label1"
msgid "Other"
msgstr "Muu"
+#. VYFK7
+#: sw/uiconfig/swriter/ui/printoptionspage.ui:568
+msgctxt "extended_tip|PrintOptionsPage"
+msgid "Specifies print settings within a text or HTML document."
+msgstr "Määritetään teksti- tai HTML-asiakirjan tulostusasetukset."
+
#. APhFB
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:30
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:29
msgctxt "privateuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "Etu-/sukunimi/nimikirjaimet:"
#. wBySi
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:44
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:43
msgctxt "privateuserpage|streetft"
msgid "_Street:"
msgstr "Katuosoite:"
#. DzXD5
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:58
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:57
msgctxt "privateuserpage|countryft"
msgid "Co_untry/state:"
msgstr "Maa/osavaltio:"
#. 3R8uD
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:72
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:71
msgctxt "privateuserpage|titleft"
msgid "_Title/profession:"
msgstr "Tehtävä/ammatti:"
#. 7ehFm
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:86
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:85
msgctxt "privateuserpage|phoneft"
msgid "Fa_x:"
msgstr "Faksi:"
@@ -18454,7 +24648,7 @@ msgid "Home telephone number"
msgstr "Kotipuhelinnumero"
#. mwVrz
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:105
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:104
msgctxt "privateuserpage|faxft"
msgid "Homepage/email:"
msgstr "Kotisivu / sähköposti:"
@@ -18465,114 +24659,228 @@ msgctxt "privateuserpage|firstname-atkobject"
msgid "First name"
msgstr "Etunimi"
+#. XfEkD
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:128
+msgctxt "extended tip | firstname"
+msgid "Type your first name."
+msgstr ""
+
#. PMz3U
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:144
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:145
msgctxt "privateuserpage|lastname-atkobject"
msgid "Last name"
msgstr "Sukunimi"
+#. cWaCs
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:146
+msgctxt "extended tip | lastname"
+msgid "Type your last name."
+msgstr ""
+
#. V5DfK
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:161
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:163
msgctxt "privateuserpage|shortname-atkobject"
msgid "Initials"
msgstr "Nimikirjaimet"
+#. CYFY2
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:164
+msgctxt "extended tip | shortname"
+msgid "Type your initials."
+msgstr ""
+
#. V9RgF
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:190
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:193
msgctxt "privateuserpage|title-atkobject"
msgid "Title"
msgstr "Ammatti"
+#. 5G2ww
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:194
+msgctxt "extended tip | title"
+msgid "Type your title in this field."
+msgstr ""
+
#. FcfuU
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:207
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:211
msgctxt "privateuserpage|job-atkobject"
msgid "Position"
msgstr "Asema"
+#. 9wRE5
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:212
+msgctxt "extended tips | job"
+msgid "Type your profession"
+msgstr ""
+
#. 344nc
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:235
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:240
msgctxt "privateuserpage|fax-atkobject"
msgid "Home telephone number"
msgstr "Kotipuhelinnumero"
+#. CtsEr
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:241
+msgctxt "extended tip | fax"
+msgid "Type your fax number in this field."
+msgstr ""
+
#. GAZDK
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:265
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:271
msgctxt "privateuserpage|url-atkobject"
msgid "Fax number"
msgstr "Faksinumero"
+#. D3t8m
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:272
+msgctxt "extended tips | url"
+msgid "Enter your home page"
+msgstr ""
+
#. AnyFT
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:282
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:289
msgctxt "privateuserpage|email-atkobject"
msgid "email address"
msgstr "sähköpostiosoite"
+#. PGFMX
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:290
+msgctxt "extended tip | email"
+msgid "Type your email address."
+msgstr ""
+
#. Qxb4Q
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:302
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:309
msgctxt "privateuserpage|eastnameft"
msgid "First/last _name/initials 2:"
msgstr "Etu-/sukunimi/nimikirjaimet 2:"
#. VgiGB
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:324
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:332
msgctxt "privateuserpage|firstname2-atkobject"
msgid "Last name"
msgstr "Sukunimi"
+#. V3dvt
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:333
+msgctxt "extended tips | firstname2"
+msgid "Type your first name"
+msgstr ""
+
#. rDNHk
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:341
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:350
msgctxt "privateuserpage|lastname2-atkobject"
msgid "First name"
msgstr "Etunimi"
+#. xCEPE
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:351
+msgctxt "extended tips | lastname2"
+msgid "Type your last name "
+msgstr ""
+
#. rztbH
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:358
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:368
msgctxt "privateuserpage|shortname2-atkobject"
msgid "Initials"
msgstr "Nimikirjaimet"
+#. DNHUN
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:369
+msgctxt "extended tips | shortname2"
+msgid "Type your initials"
+msgstr ""
+
#. LGHpW
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:378
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:388
msgctxt "privateuserpage|icityft"
msgid "_Zip/city:"
msgstr "Postinro/-toimipaikka:"
#. AvWPi
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:400
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:411
msgctxt "privateuserpage|icity-atkobject"
msgid "City"
msgstr "Postitoimipaikka"
+#. knxAE
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:412
+msgctxt "extended tip | icity"
+msgid "Type the city where you live."
+msgstr ""
+
#. AZwKD
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:417
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:429
msgctxt "privateuserpage|izip-atkobject"
msgid "Zip code"
msgstr "Postinumero"
+#. 4zTys
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:430
+msgctxt "extended tip | izip"
+msgid "Type your ZIP in this field."
+msgstr ""
+
+#. VbiGF
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:458
+msgctxt "extended tip | street"
+msgid "Type the name of your street in this field."
+msgstr ""
+
+#. QmBKX
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:487
+msgctxt "extended tips | country"
+msgid "Type the country name"
+msgstr ""
+
+#. y652V
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:504
+msgctxt "extended tip | state"
+msgid "Type your state."
+msgstr ""
+
#. zGzFe
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:496
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:523
msgctxt "privateuserpage|titleft1"
msgid "Phone/mobile:"
msgstr "Puhelin/matkapuhelin:"
#. Mszj6
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:519
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:547
msgctxt "privateuserpage|phone-atkobject"
msgid "Title"
msgstr "Ammatti"
+#. XXAz3
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:548
+msgctxt "extended tips | phone"
+msgid "Type your phone number"
+msgstr ""
+
#. GThP4
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:536
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:565
msgctxt "privateuserpage|mobile-atkobject"
msgid "Position"
msgstr "Asema"
+#. CEAMw
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:566
+msgctxt "extended tips | mobile"
+msgid "Type your mobile phone number"
+msgstr ""
+
#. bGoA3
-#: sw/uiconfig/swriter/ui/privateuserpage.ui:559
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:589
msgctxt "privateuserpage|label1"
msgid "Private Data"
msgstr "Omat tiedot"
+#. TYEJf
+#: sw/uiconfig/swriter/ui/privateuserpage.ui:597
+msgctxt "privateuserpage|extended_tip|PrivateUserPage"
+msgid "Contains personal contact information for business cards. Business card layouts are selected on the Business Cards tab."
+msgstr "Sisältää henkilökohtaista tietoa käyntikorttia varten. Sen asettelu valitaan Käyntikortit-välilehdeltä."
+
#. re87U
#: sw/uiconfig/swriter/ui/querycontinuebegindialog.ui:7
msgctxt "querycontinuebegindialog|QueryContinueBeginDialog"
@@ -18655,18 +24963,36 @@ msgctxt "queryredlinedialog|cancel"
msgid "Reject All"
msgstr "Hylkää kaikki"
+#. EuUCM
+#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:32
+msgctxt "queryredlinedialog|extended_tip|cancel"
+msgid "Rejects all of the formatting changes."
+msgstr ""
+
#. cF9tc
-#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:39
+#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:44
msgctxt "queryredlinedialog|ok"
msgid "Accept All"
msgstr "Hyväksy kaikki"
+#. VDTvE
+#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:53
+msgctxt "queryredlinedialog|extended_tip|ok"
+msgid "Applies all of the formatting changes."
+msgstr ""
+
#. 2L3ML
-#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:55
+#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:65
msgctxt "queryredlinedialog|edit"
msgid "Edit Changes"
msgstr "Muokkaa muutoksia"
+#. baD9M
+#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:71
+msgctxt "queryredlinedialog|extended_tip|edit"
+msgid "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."
+msgstr ""
+
#. ZBNBq
#: sw/uiconfig/swriter/ui/queryrotateintostandarddialog.ui:7
msgctxt "queryrotateintostandarddialog|QueryRotateIntoStandardOrientationDialog"
@@ -18818,29 +25144,53 @@ msgid "Rename AutoText"
msgstr "Nimeä automaattinen teksti uudelleen"
#. X34y4
-#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:82
+#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:79
msgctxt "renameautotextdialog|label2"
msgid "Na_me"
msgstr "_Nimi"
#. FPBan
-#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:97
+#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:94
msgctxt "renameautotextdialog|label3"
msgid "_New"
msgstr "_Uusi"
+#. j3LTU
+#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:114
+msgctxt "renameautotextdialog|extended_tip|oldname"
+msgid "Displays the current name of the selected AutoText item."
+msgstr "Käsiteltävän automaattisen tekstimerkinnän nimi näkyy."
+
+#. qMN6w
+#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:133
+msgctxt "renameautotextdialog|extended_tip|newname"
+msgid "Type the new name for the selected AutoText component."
+msgstr "Valitulle automaattiselle tekstimerkinnälle kirjoitetaan uusi nimi."
+
#. 58DNf
-#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:152
+#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:159
msgctxt "renameautotextdialog|label4"
msgid "Short_cut"
msgstr "_Pikavalinta"
#. h2ovi
-#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:167
+#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:174
msgctxt "renameautotextdialog|label5"
msgid "_Shortcut"
msgstr "_Pikavalinta"
+#. hCUBD
+#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:193
+msgctxt "renameautotextdialog|extended_tip|oldsc"
+msgid "Assigns a shortcut to the selected AutoText entry."
+msgstr "Määrätään automaattisen tekstimerkinnän pikanäppäin."
+
+#. mF8sy
+#: sw/uiconfig/swriter/ui/renameautotextdialog.ui:210
+msgctxt "renameautotextdialog|extended_tip|newsc"
+msgid "Assigns a shortcut to the selected AutoText entry."
+msgstr "Määrätään automaattisen tekstimerkinnän pikanäppäin."
+
#. q7Uk2
#: sw/uiconfig/swriter/ui/renameentrydialog.ui:8
msgctxt "renameentrydialog|RenameEntryDialog"
@@ -18860,13 +25210,13 @@ msgid "Rename object: "
msgstr "Nimeä objekti uudelleen: "
#. kWc8q
-#: sw/uiconfig/swriter/ui/renameobjectdialog.ui:106
+#: sw/uiconfig/swriter/ui/renameobjectdialog.ui:103
msgctxt "renameobjectdialog|label2"
msgid "New name:"
msgstr "Uusi nimi:"
#. Yffi5
-#: sw/uiconfig/swriter/ui/renameobjectdialog.ui:136
+#: sw/uiconfig/swriter/ui/renameobjectdialog.ui:133
msgctxt "renameobjectdialog|label1"
msgid "Change Name"
msgstr "Muuta nimi"
@@ -18877,18 +25227,36 @@ msgctxt "rowheight|RowHeightDialog"
msgid "Row Height"
msgstr "Rivin korkeus"
+#. Pin62
+#: sw/uiconfig/swriter/ui/rowheight.ui:110
+msgctxt "rowheight|extended_tip|heightmf"
+msgid "Enter the height that you want for the selected row(s)."
+msgstr "Annetaan korkeus valituille riveille."
+
#. 8JFHg
-#: sw/uiconfig/swriter/ui/rowheight.ui:117
+#: sw/uiconfig/swriter/ui/rowheight.ui:122
msgctxt "rowheight|fit"
msgid "_Fit to size"
msgstr "_Sovita kokoon"
+#. FFHCd
+#: sw/uiconfig/swriter/ui/rowheight.ui:131
+msgctxt "rowheight|extended_tip|fit"
+msgid "Automatically adjusts the row height to match the contents of the cells."
+msgstr "Rivin korkeus säätyy vastaamaan solujen sisältöä."
+
#. 87zor
-#: sw/uiconfig/swriter/ui/rowheight.ui:139
+#: sw/uiconfig/swriter/ui/rowheight.ui:149
msgctxt "rowheight|label1"
msgid "Height"
msgstr "Korkeus"
+#. 2ZKqA
+#: sw/uiconfig/swriter/ui/rowheight.ui:174
+msgctxt "rowheight|extended_tip|RowHeightDialog"
+msgid "Changes the height of the selected row(s)."
+msgstr "Muutetaan valittujen rivien korkeutta."
+
#. nNUFB
#: sw/uiconfig/swriter/ui/saveashtmldialog.ui:7
msgctxt "saveashtmldialog|SaveAsHTMLDialog"
@@ -18914,23 +25282,41 @@ msgid "Save Label Format"
msgstr "Tallenna tarramuoto"
#. PkJVz
-#: sw/uiconfig/swriter/ui/savelabeldialog.ui:102
+#: sw/uiconfig/swriter/ui/savelabeldialog.ui:99
msgctxt "savelabeldialog|label2"
msgid "Brand"
msgstr "Tuotemerkki"
#. AwGvc
-#: sw/uiconfig/swriter/ui/savelabeldialog.ui:115
+#: sw/uiconfig/swriter/ui/savelabeldialog.ui:112
msgctxt "savelabeldialog|label3"
msgid "T_ype"
msgstr "Tyyppi"
+#. KX58T
+#: sw/uiconfig/swriter/ui/savelabeldialog.ui:129
+msgctxt "savelabeldialog|extended_tip|type"
+msgid "Enter or select a label type."
+msgstr "Kirjoitetaan tai valitaan tarratyyppi."
+
+#. TZRxC
+#: sw/uiconfig/swriter/ui/savelabeldialog.ui:152
+msgctxt "savelabeldialog|extended_tip|brand"
+msgid "Enter or select the desired brand."
+msgstr "Kirjoitetaan tai valitaan tuotemerkki."
+
#. vtbE3
-#: sw/uiconfig/swriter/ui/savelabeldialog.ui:162
+#: sw/uiconfig/swriter/ui/savelabeldialog.ui:169
msgctxt "savelabeldialog|label1"
msgid "Options"
msgstr "Asetukset"
+#. SfeLM
+#: sw/uiconfig/swriter/ui/savelabeldialog.ui:194
+msgctxt "savelabeldialog|extended_tip|SaveLabelDialog"
+msgid "Enter or select the desired brand."
+msgstr "Kirjoitetaan tai valitaan tuotemerkki."
+
#. J9Lnz
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:8
msgctxt "printmonitordialog|PrintMonitorDialog"
@@ -18949,102 +25335,174 @@ msgctxt "sectionpage|label4"
msgid "New Section"
msgstr "Uusi osa"
+#. Z9GeF
+#: sw/uiconfig/swriter/ui/sectionpage.ui:110
+msgctxt "sectionpage|extended_tip|section"
+msgid "Select the section in the file that you want to insert as a link."
+msgstr "Valitaan linkkinä lisättävän tiedoston osa."
+
#. fC7dS
-#: sw/uiconfig/swriter/ui/sectionpage.ui:143
+#: sw/uiconfig/swriter/ui/sectionpage.ui:148
msgctxt "sectionpage|link"
msgid "_Link"
msgstr "Linkitä"
+#. FAzSY
+#: sw/uiconfig/swriter/ui/sectionpage.ui:157
+msgctxt "sectionpage|extended_tip|link"
+msgid "Inserts the contents of another document or section from another document in the current section."
+msgstr "Lisätään toisen asiakirjan sisältö tai osa käsiteltävään osaan."
+
#. 7JfBV
-#: sw/uiconfig/swriter/ui/sectionpage.ui:158
+#: sw/uiconfig/swriter/ui/sectionpage.ui:168
msgctxt "sectionpage|dde"
msgid "DD_E"
msgstr "DDE"
+#. nGnxp
+#: sw/uiconfig/swriter/ui/sectionpage.ui:178
+msgctxt "sectionpage|extended_tip|dde"
+msgid "Creates a DDE link. Select this check box, and then enter the DDE command that you want to use. The DDE option is only available if the Link check box is selected."
+msgstr "Luodaan DDE-linkki. Merkitään tämä valintaruutu ja syötetään sitten käytettävä DDE-komento. DDE-asetus on käytettävissä vain, jos Linkitä-valintaruutu on merkitty."
+
#. KGrwG
-#: sw/uiconfig/swriter/ui/sectionpage.ui:193
+#: sw/uiconfig/swriter/ui/sectionpage.ui:208
msgctxt "sectionpage|filelabel"
msgid "_File name"
msgstr "Tiedoston nimi"
#. AYDG6
-#: sw/uiconfig/swriter/ui/sectionpage.ui:208
+#: sw/uiconfig/swriter/ui/sectionpage.ui:223
msgctxt "sectionpage|ddelabel"
msgid "DDE _command"
msgstr "DDE-komento"
#. BN2By
-#: sw/uiconfig/swriter/ui/sectionpage.ui:230
+#: sw/uiconfig/swriter/ui/sectionpage.ui:245
msgctxt "sectionpage|sectionlabel"
msgid "_Section"
msgstr "Osa"
#. UEpHN
-#: sw/uiconfig/swriter/ui/sectionpage.ui:242
+#: sw/uiconfig/swriter/ui/sectionpage.ui:257
msgctxt "sectionpage|selectfile"
msgid "Browse..."
msgstr "Selaa..."
+#. XjJAi
+#: sw/uiconfig/swriter/ui/sectionpage.ui:265
+msgctxt "sectionpage|extended_tip|selectfile"
+msgid "Locate the file that you want to insert as a link, and then click Insert."
+msgstr "Paikallistetaan linkkinä lisättävä tiedosto ja napsautetaan sitten Lisää."
+
+#. ZFBBc
+#: sw/uiconfig/swriter/ui/sectionpage.ui:284
+msgctxt "sectionpage|extended_tip|filename"
+msgid "Enter the path and the filename for the file that you want to insert, or click the Browse button to locate the file."
+msgstr ""
+
+#. QCM5c
+#: sw/uiconfig/swriter/ui/sectionpage.ui:309
+msgctxt "sectionpage|extended_tip|sectionname"
+msgid "Type a name for the new section."
+msgstr "Kirjoitetaan uuden osan nimi."
+
#. 9GJeE
-#: sw/uiconfig/swriter/ui/sectionpage.ui:305
+#: sw/uiconfig/swriter/ui/sectionpage.ui:335
msgctxt "sectionpage|label1"
msgid "Link"
msgstr "Linkki"
#. zeESA
-#: sw/uiconfig/swriter/ui/sectionpage.ui:340
+#: sw/uiconfig/swriter/ui/sectionpage.ui:370
msgctxt "sectionpage|protect"
msgid "_Protect"
msgstr "Suojaa"
+#. QFfh7
+#: sw/uiconfig/swriter/ui/sectionpage.ui:380
+msgctxt "sectionpage|extended_tip|protect"
+msgid "Prevents the selected section from being edited."
+msgstr "Estetään valitun osan muokkaaminen."
+
#. fpWcx
-#: sw/uiconfig/swriter/ui/sectionpage.ui:366
+#: sw/uiconfig/swriter/ui/sectionpage.ui:401
msgctxt "sectionpage|withpassword"
msgid "Wit_h password"
msgstr "Käytä salasanaa"
+#. 8igby
+#: sw/uiconfig/swriter/ui/sectionpage.ui:415
+msgctxt "sectionpage|extended_tip|withpassword"
+msgid "Protects the selected section with a password. The password must have a minimum of 5 characters."
+msgstr "Valittu osa suojataan salasanoin. Salasanan vähimmäispituus on 5 merkkiä."
+
#. 8ydz9
-#: sw/uiconfig/swriter/ui/sectionpage.ui:386
+#: sw/uiconfig/swriter/ui/sectionpage.ui:426
msgctxt "sectionpage|selectpassword"
msgid "Password..."
msgstr "Salasana..."
+#. nBQLQ
+#: sw/uiconfig/swriter/ui/sectionpage.ui:436
+msgctxt "sectionpage|extended_tip|selectpassword"
+msgid "Opens a dialog where you can change the current password."
+msgstr "Avataan valintaikkuna, jossa käytössä oleva salasana voidaan vaihtaa."
+
#. 4rFEh
-#: sw/uiconfig/swriter/ui/sectionpage.ui:416
+#: sw/uiconfig/swriter/ui/sectionpage.ui:461
msgctxt "sectionpage|label2"
msgid "Write Protection"
msgstr "Kirjoitussuojaus"
#. eEPSX
-#: sw/uiconfig/swriter/ui/sectionpage.ui:451
+#: sw/uiconfig/swriter/ui/sectionpage.ui:496
msgctxt "sectionpage|hide"
msgid "H_ide"
msgstr "Piilota"
+#. 483VD
+#: sw/uiconfig/swriter/ui/sectionpage.ui:506
+msgctxt "sectionpage|extended_tip|hide"
+msgid "Hides and prevents the selected section from being printed."
+msgstr "Valittu osa piilotetaan ja estetään tulostumasta."
+
#. D7G8F
-#: sw/uiconfig/swriter/ui/sectionpage.ui:481
+#: sw/uiconfig/swriter/ui/sectionpage.ui:531
msgctxt "sectionpage|condlabel"
msgid "_With Condition"
msgstr "Ehdolla"
+#. W8PCT
+#: sw/uiconfig/swriter/ui/sectionpage.ui:551
+msgctxt "sectionpage|extended_tip|withcond"
+msgid "Enter the condition that must be met to hide the section."
+msgstr "Annetaan ehto, jonka pitää täyttyä osan piilottamiseksi."
+
#. sKZmk
-#: sw/uiconfig/swriter/ui/sectionpage.ui:521
+#: sw/uiconfig/swriter/ui/sectionpage.ui:576
msgctxt "sectionpage|label3"
msgid "Hide"
msgstr "Piilota"
#. Y4tfP
-#: sw/uiconfig/swriter/ui/sectionpage.ui:549
+#: sw/uiconfig/swriter/ui/sectionpage.ui:604
msgctxt "sectionpage|editable"
msgid "E_ditable in read-only document"
msgstr "Muokattavissa myös kirjoitussuojatuissa asiakirjoissa"
#. hoFVv
-#: sw/uiconfig/swriter/ui/sectionpage.ui:564
+#: sw/uiconfig/swriter/ui/sectionpage.ui:619
msgctxt "sectionpage|label5"
msgid "Properties"
msgstr "Ominaisuudet"
+#. BLED9
+#: sw/uiconfig/swriter/ui/sectionpage.ui:639
+msgctxt "sectionpage|extended_tip|SectionPage"
+msgid "Sets the properties of the section."
+msgstr ""
+
#. F8WuK
#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:18
msgctxt "selectaddressdialog|SelectAddressDialog"
@@ -19052,71 +25510,107 @@ msgid "Select Address List"
msgstr "Valitse osoitelista"
#. uEB4J
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:98
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:95
msgctxt "selectaddressdialog|desc"
msgid "Select an address list. Click '%1' to select recipients from a different list. If you do not have an address list you can create one by clicking '%2'."
msgstr "Valitse osoitelista. Napsauta '%1' vastaanottajan valitsemiseksi toiselta listalta. Jos osoitelista puuttuu, voit luoda sen napsauttamalla '%2'."
#. WkuFD
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:121
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:118
msgctxt "selectaddressdialog|label2"
msgid "Your recipients are currently selected from:"
msgstr "Vastaanottajat valitaan listasta:"
#. omDDB
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:138
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:135
msgctxt "selectaddressdialog|add"
msgid "_Add..."
msgstr "Lisää..."
+#. vmGDA
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:142
+msgctxt "selectaddressdialog|extended_tip|add"
+msgid "Select the database file that contains the addresses that you want to use as an address list."
+msgstr "Valitaan tietokantatiedosto, jossa on osoitelistassa käytettävät osoitteet."
+
#. Xh7Pc
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:152
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:154
msgctxt "selectaddressdialog|remove"
msgid "_Remove"
msgstr "Poista"
#. dPCjU
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:166
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:168
msgctxt "selectaddressdialog|create"
msgid "_Create..."
msgstr "Luo..."
+#. Q7aPs
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:175
+msgctxt "selectaddressdialog|extended_tip|create"
+msgid "Opens the New Address List dialog, where you can create a new address list."
+msgstr "Avataan Uusi osoitelista -valintaikkuna, jossa voidaan muokata valittua osoitelistaa."
+
#. uwBMk
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:180
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:187
msgctxt "selectaddressdialog|filter"
msgid "_Filter..."
msgstr "Suodatin..."
-#. XLNrP
+#. MByRg
#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:194
+msgctxt "selectaddressdialog|extended_tip|filter"
+msgid "Opens the Standard Filter dialog , where you can apply filters to the address list to display the recipients that you want to see."
+msgstr "Avataan Oletussuodatin-valintaikkuna, jossa voidaan käyttää suodatusta osoitelistaan tarkoituksenmukaisten vastaanottajien näyttämiseksi."
+
+#. XLNrP
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:206
msgctxt "selectaddressdialog|edit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. Kp7hn
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:213
+msgctxt "selectaddressdialog|extended_tip|edit"
+msgid "Opens the New Address List dialog, where you can edit the selected address list."
+msgstr "Avataan Uusi osoitelista -valintaikkuna, jossa voidaan muokata valittua osoitelistaa."
+
#. taJUf
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:208
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:225
msgctxt "selectaddressdialog|changetable"
msgid "Change _Table..."
msgstr "Vaihda taulu..."
+#. WDUAW
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:232
+msgctxt "selectaddressdialog|extended_tip|changetable"
+msgid "Opens the Select Table dialog, where you can select another table to use for mail merge."
+msgstr "Avataan Valitse taulukko -valintaikkuna, josta voidaan valita toinen taulu käytettäväksi joukkokirjeessä."
+
#. MhA9k
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:230
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:252
msgctxt "selectaddressdialog|connecting"
msgid "Connecting to data source..."
msgstr "Yhdistetään tietolähteeseen..."
#. 9x69k
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:261
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:283
msgctxt "selectaddressdialog|name"
msgid "Name"
msgstr "Nimi"
#. sT5C5
-#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:274
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:296
msgctxt "selectaddressdialog|table"
msgid "Table"
msgstr "Taulu"
+#. aKnGF
+#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:338
+msgctxt "selectaddressdialog|extended_tip|SelectAddressDialog"
+msgid "Select the address list that you want to use for mail merge, then click OK."
+msgstr ""
+
#. qEPZL
#: sw/uiconfig/swriter/ui/selectautotextdialog.ui:16
msgctxt "selectautotextdialog|SelectAutoTextDialog"
@@ -19136,53 +25630,107 @@ msgid "Select Address Block"
msgstr "Valitse osoitelohko"
#. PaQhk
-#: sw/uiconfig/swriter/ui/selectblockdialog.ui:95
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:92
msgctxt "selectblockdialog|new"
msgid "_New..."
msgstr "Uusi..."
+#. HAcMA
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:99
+msgctxt "selectblockdialog|extended_tip|new"
+msgid "Opens the New Address Block dialog where you can define a new address block layout."
+msgstr "Avataan Uusi osoitelohko -valintaikkuna, jossa voidaan määrittää osoitteen asettelu."
+
#. z2hB7
-#: sw/uiconfig/swriter/ui/selectblockdialog.ui:109
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:111
msgctxt "selectblockdialog|edit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. TauiG
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:118
+msgctxt "selectblockdialog|extended_tip|edit"
+msgid "Opens the Edit Address Block dialog where you can edit the selected address block layout."
+msgstr ""
+
#. qcSeC
-#: sw/uiconfig/swriter/ui/selectblockdialog.ui:123
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:130
msgctxt "selectblockdialog|delete"
msgid "_Delete"
msgstr "Poista"
+#. Xv9Ub
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:137
+msgctxt "selectblockdialog|extended_tip|delete"
+msgid "Deletes the selected address block layout."
+msgstr "Poistetaan valittu osoitelohkon asettelu."
+
#. FD7A8
-#: sw/uiconfig/swriter/ui/selectblockdialog.ui:146
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:158
msgctxt "selectblockdialog|label1"
msgid "_Select your preferred address block"
msgstr "Valitse haluttu osoitelohko"
#. TJ22s
-#: sw/uiconfig/swriter/ui/selectblockdialog.ui:176
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:188
msgctxt "selectblockdialog|never"
msgid "N_ever include the country/region"
msgstr "Älä ota maata/aluetta mukaan"
+#. zCVnB
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:198
+msgctxt "selectblockdialog|extended_tip|never"
+msgid "Excludes country or regional information from the address block."
+msgstr "Osoitteesta jätetään maa- tai aluetiedot pois."
+
#. RnB8Q
-#: sw/uiconfig/swriter/ui/selectblockdialog.ui:192
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:209
msgctxt "selectblockdialog|always"
msgid "_Always include the country/region"
msgstr "Sisällytä aina maa/alue"
+#. TJHWo
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:219
+msgctxt "selectblockdialog|extended_tip|always"
+msgid "Includes country or regional information in the address block."
+msgstr "Osoitteeseen sisältyy maa- tai aluetiedot."
+
#. qMyCk
-#: sw/uiconfig/swriter/ui/selectblockdialog.ui:208
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:230
msgctxt "selectblockdialog|dependent"
msgid "Only _include the country/region if it is not:"
msgstr "Ota maa/alue mukaan, jos se ei ole:"
+#. 3jvNX
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:243
+msgctxt "selectblockdialog|extended_tip|dependent"
+msgid "Only includes country or regional information in the address block if the value differs from the value that you enter in the text box."
+msgstr "Osoitteeseen sisältyy maa- tai aluetiedot, jos se ei ole tekstiruudussa mainittu."
+
+#. FgnyP
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:264
+msgctxt "selectblockdialog|extended_tip|country"
+msgid "Enter the country/region string that shall not be printed."
+msgstr "Kirjoitetaan maa/alue, jota ei tulosteta osoitteessa."
+
#. masP6
-#: sw/uiconfig/swriter/ui/selectblockdialog.ui:249
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:281
msgctxt "selectblockdialog|label2"
msgid "Address Block Settings"
msgstr "Osoitelohkon asetukset"
+#. UE4HD
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:314
+msgctxt "selectblockdialog|extended_tip|preview"
+msgid "Select the block in the list that you want to use for mail merge addresses, and click OK."
+msgstr "Valitaan luettelosta joukkokirjeessä käytettävä osoiteasettelu ja hyväksytään OK:lla."
+
+#. JzmqG
+#: sw/uiconfig/swriter/ui/selectblockdialog.ui:346
+msgctxt "selectblockdialog|extended_tip|SelectBlockDialog"
+msgid "Select, edit, or delete an address block layout for mail merge."
+msgstr ""
+
#. 7qbh6
#: sw/uiconfig/swriter/ui/selectindexdialog.ui:16
msgctxt "selectindexdialog|SelectIndexDialog"
@@ -19195,6 +25743,12 @@ msgctxt "selectindexdialog|label1"
msgid "Selection"
msgstr "Valinta"
+#. qscPT
+#: sw/uiconfig/swriter/ui/selectindexdialog.ui:174
+msgctxt "selectindexdialog|extended_tip|SelectIndexDialog"
+msgid "Edits the selected index entry. Click in front of or in the index entry, and then choose this command."
+msgstr "Muokataan valittua hakemistomerkintää. Napsautetaan hakemistomerkinnän edessä ja valitaan sitten tämä komento."
+
#. aGPFr
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:18
msgctxt "selecttabledialog|SelectTableDialog"
@@ -19202,29 +25756,47 @@ msgid "Select Table"
msgstr "Valitse taulukko"
#. SfHVd
-#: sw/uiconfig/swriter/ui/selecttabledialog.ui:102
+#: sw/uiconfig/swriter/ui/selecttabledialog.ui:99
msgctxt "selecttabledialog|select"
msgid "The file you have selected contains more than one table. Please select the table containing the address list you want to use."
msgstr "Valitsemassasi asiakirjassa on useita taulukkoja. Valitse, mikä taulukoista sisältää haluamasi osoitelistan."
#. Fmgdg
-#: sw/uiconfig/swriter/ui/selecttabledialog.ui:139
+#: sw/uiconfig/swriter/ui/selecttabledialog.ui:136
msgctxt "selecttabledialog|column1"
msgid "Name"
msgstr "Nimi"
#. GPMBL
-#: sw/uiconfig/swriter/ui/selecttabledialog.ui:152
+#: sw/uiconfig/swriter/ui/selecttabledialog.ui:149
msgctxt "selecttabledialog|column2"
msgid "Type"
msgstr "Tyyppi"
+#. GoUkf
+#: sw/uiconfig/swriter/ui/selecttabledialog.ui:160
+msgctxt "selecttabledialog|extended_tip|table"
+msgid "Select the table that you want to use for mail merge addresses."
+msgstr "Valitaan taulu, jota käytetään joukkokirjeen osoitteissa."
+
#. uRHDQ
-#: sw/uiconfig/swriter/ui/selecttabledialog.ui:179
+#: sw/uiconfig/swriter/ui/selecttabledialog.ui:181
msgctxt "selecttabledialog|preview"
msgid "_Preview"
msgstr "Esikatselu"
+#. Wo98B
+#: sw/uiconfig/swriter/ui/selecttabledialog.ui:188
+msgctxt "selecttabledialog|extended_tip|preview"
+msgid "Opens the Mail Merge Recipients dialog."
+msgstr "Avataan Joukkokirjeen vastaanottaja -valintaikkuna."
+
+#. HvjeJ
+#: sw/uiconfig/swriter/ui/selecttabledialog.ui:224
+msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
+msgid "Select the table that you want to use for mail merge addresses."
+msgstr "Valitaan taulu, jota käytetään joukkokirjeen osoitteissa."
+
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:32
msgctxt "sidebatableedit|rowheight|tooltip_text"
@@ -19309,41 +25881,41 @@ msgctxt "sidebarwrap|label2"
msgid "Wrap:"
msgstr "Rivitys:"
-#. KrFLE
+#. CeCh8
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:73
msgctxt "sidebarwrap|wrapoff|tooltip_text"
-msgid "Wrap Off"
-msgstr ""
+msgid "None"
+msgstr "Ei mitään"
-#. bCeup
+#. BM99o
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:86
msgctxt "sidebarwrap|wrapon|tooltip_text"
-msgid "Wrap On"
-msgstr ""
+msgid "Parallel"
+msgstr "Ympärillä"
-#. wGP6B
+#. 6LvB4
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:99
msgctxt "sidebarwrap|wrapideal|tooltip_text"
-msgid "Wrap Ideal"
-msgstr ""
+msgid "Optimal"
+msgstr "Optimaalinen"
-#. JtHu6
+#. 2TrbF
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:112
-msgctxt "sidebarwrap|wrapleft|tooltip_text"
-msgid "Wrap Left"
-msgstr ""
+msgctxt "sidebarwrap|wrapbefore|tooltip_text"
+msgid "Before"
+msgstr "Ennen"
-#. rQbTA
+#. oKykv
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:125
-msgctxt "sidebarwrap|wrapright|tooltip_text"
-msgid "Wrap Right"
-msgstr ""
+msgctxt "sidebarwrap|wrapafter|tooltip_text"
+msgid "After"
+msgstr "Jälkeen"
-#. G23BK
+#. Sw6vj
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:138
msgctxt "sidebarwrap|wrapthrough|tooltip_text"
-msgid "Wrap Through"
-msgstr ""
+msgid "Through"
+msgstr "Läpi"
#. PqGRt
#: sw/uiconfig/swriter/ui/sortdialog.ui:29
@@ -19375,138 +25947,282 @@ msgctxt "sortdialog|up1"
msgid "Ascending"
msgstr "Nouseva"
+#. ASaRk
+#: sw/uiconfig/swriter/ui/sortdialog.ui:186
+msgctxt "sortdialog|extended_tip|up1"
+msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
+msgstr "Lajitellaan nousevaan järjestykseen (esimerkiksi 1, 2, 3 tai a, b, c)."
+
#. yVqST
-#: sw/uiconfig/swriter/ui/sortdialog.ui:192
+#: sw/uiconfig/swriter/ui/sortdialog.ui:197
msgctxt "sortdialog|down1"
msgid "Descending"
msgstr "Laskeva"
+#. YS8zz
+#: sw/uiconfig/swriter/ui/sortdialog.ui:211
+msgctxt "sortdialog|extended_tip|down1"
+msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
+msgstr "Lajitellaan laskevaan järjestykseen (esimerkiksi 9, 8, 7 tai z, y, x)."
+
#. P9D2w
-#: sw/uiconfig/swriter/ui/sortdialog.ui:223
+#: sw/uiconfig/swriter/ui/sortdialog.ui:233
msgctxt "sortdialog|up2"
msgid "Ascending"
msgstr "Nouseva"
+#. TMLam
+#: sw/uiconfig/swriter/ui/sortdialog.ui:246
+msgctxt "sortdialog|extended_tip|up2"
+msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
+msgstr "Lajitellaan nousevaan järjestykseen (esimerkiksi 1, 2, 3 tai a, b, c)."
+
#. haL8p
-#: sw/uiconfig/swriter/ui/sortdialog.ui:242
+#: sw/uiconfig/swriter/ui/sortdialog.ui:257
msgctxt "sortdialog|down2"
msgid "Descending"
msgstr "Laskeva"
+#. HMoq2
+#: sw/uiconfig/swriter/ui/sortdialog.ui:271
+msgctxt "sortdialog|extended_tip|down2"
+msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
+msgstr "Lajitellaan laskevaan järjestykseen (esimerkiksi 9, 8, 7 tai z, y, x)."
+
#. PHxUv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:273
+#: sw/uiconfig/swriter/ui/sortdialog.ui:293
msgctxt "sortdialog|up3"
msgid "Ascending"
msgstr "Nouseva"
+#. jL5gX
+#: sw/uiconfig/swriter/ui/sortdialog.ui:306
+msgctxt "sortdialog|extended_tip|up3"
+msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
+msgstr "Lajitellaan nousevaan järjestykseen (esimerkiksi 1, 2, 3 tai a, b, c)."
+
#. zsggE
-#: sw/uiconfig/swriter/ui/sortdialog.ui:292
+#: sw/uiconfig/swriter/ui/sortdialog.ui:317
msgctxt "sortdialog|down3"
msgid "Descending"
msgstr "Laskeva"
+#. 8LdjH
+#: sw/uiconfig/swriter/ui/sortdialog.ui:331
+msgctxt "sortdialog|extended_tip|down3"
+msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
+msgstr "Lajitellaan laskevaan järjestykseen (esimerkiksi 9, 8, 7 tai z, y, x)."
+
#. 3yLB6
-#: sw/uiconfig/swriter/ui/sortdialog.ui:318
+#: sw/uiconfig/swriter/ui/sortdialog.ui:348
msgctxt "sortdialog|key1"
msgid "Key 1"
msgstr "Avain 1"
+#. GXMCr
+#: sw/uiconfig/swriter/ui/sortdialog.ui:359
+msgctxt "sortdialog|extended_tip|key1"
+msgid "Specifies additional sorting criteria. You can also combine sort keys."
+msgstr "Määritetään lajittelun lisäperusteita. Lajitteluavaimia voi myös yhdistellä."
+
#. XDgAf
-#: sw/uiconfig/swriter/ui/sortdialog.ui:335
+#: sw/uiconfig/swriter/ui/sortdialog.ui:370
msgctxt "sortdialog|key2"
msgid "Key 2"
msgstr "Avain 2"
+#. CgEiB
+#: sw/uiconfig/swriter/ui/sortdialog.ui:380
+msgctxt "sortdialog|extended_tip|key2"
+msgid "Specifies additional sorting criteria. You can also combine sort keys."
+msgstr "Määritetään lajittelun lisäperusteita. Lajitteluavaimia voi myös yhdistellä."
+
#. 8yfoN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:351
+#: sw/uiconfig/swriter/ui/sortdialog.ui:391
msgctxt "sortdialog|key3"
msgid "Key 3"
msgstr "Avain 3"
+#. yS2ky
+#: sw/uiconfig/swriter/ui/sortdialog.ui:401
+msgctxt "sortdialog|extended_tip|key3"
+msgid "Specifies additional sorting criteria. You can also combine sort keys."
+msgstr "Määritetään lajittelun lisäperusteita. Lajitteluavaimia voi myös yhdistellä."
+
+#. pFZY3
+#: sw/uiconfig/swriter/ui/sortdialog.ui:423
+msgctxt "sortdialog|extended_tip|colsb1"
+msgid "Enter the number of the table column that you want to use as a basis for sorting."
+msgstr "Annetaan lajittelun perustana olevan sarakkeen numero."
+
+#. n2S79
+#: sw/uiconfig/swriter/ui/sortdialog.ui:445
+msgctxt "sortdialog|extended_tip|colsb2"
+msgid "Enter the number of the table column that you want to use as a basis for sorting."
+msgstr "Annetaan lajittelun perustana olevan sarakkeen numero."
+
+#. ckwsF
+#: sw/uiconfig/swriter/ui/sortdialog.ui:467
+msgctxt "sortdialog|extended_tip|colsb3"
+msgid "Enter the number of the table column that you want to use as a basis for sorting."
+msgstr "Annetaan lajittelun perustana olevan sarakkeen numero."
+
#. 5bX9W
-#: sw/uiconfig/swriter/ui/sortdialog.ui:428
+#: sw/uiconfig/swriter/ui/sortdialog.ui:488
msgctxt "sortdialog|typelb1-atkobject"
msgid "Key type"
msgstr "Avaimen tyyppi"
+#. rAGDj
+#: sw/uiconfig/swriter/ui/sortdialog.ui:489
+msgctxt "sortdialog|extended_tip|typelb1"
+msgid "Select the sorting option that you want to use."
+msgstr "Valitaan käytettävä lajittelutapa."
+
#. FxBUC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:450
+#: sw/uiconfig/swriter/ui/sortdialog.ui:511
msgctxt "sortdialog|typelb2-atkobject"
msgid "Key type"
msgstr "Avaimen tyyppi"
+#. efrcu
+#: sw/uiconfig/swriter/ui/sortdialog.ui:512
+msgctxt "sortdialog|extended_tip|typelb2"
+msgid "Select the sorting option that you want to use."
+msgstr "Valitaan käytettävä lajittelutapa."
+
#. 9D3Mg
-#: sw/uiconfig/swriter/ui/sortdialog.ui:471
+#: sw/uiconfig/swriter/ui/sortdialog.ui:533
msgctxt "sortdialog|typelb3-atkobject"
msgid "Key type"
msgstr "Avaimen tyyppi"
+#. RjtNn
+#: sw/uiconfig/swriter/ui/sortdialog.ui:534
+msgctxt "sortdialog|extended_tip|typelb3"
+msgid "Select the sorting option that you want to use."
+msgstr "Valitaan käytettävä lajittelutapa."
+
#. m3EJC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:491
+#: sw/uiconfig/swriter/ui/sortdialog.ui:554
msgctxt "sortdialog|1"
msgid "Sort Criteria"
msgstr "Lajitteluperuste"
#. dY8Rr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:531
+#: sw/uiconfig/swriter/ui/sortdialog.ui:594
msgctxt "sortdialog|columns"
msgid "Columns"
msgstr "Palstat"
+#. PviSN
+#: sw/uiconfig/swriter/ui/sortdialog.ui:604
+msgctxt "sortdialog|extended_tip|columns"
+msgid "Sorts the columns in the table according to the current sort options."
+msgstr "Lajitellaan taulukon sarakkeet asetettujen lajitteluehtojen mukaisesti."
+
#. d7odM
-#: sw/uiconfig/swriter/ui/sortdialog.ui:547
+#: sw/uiconfig/swriter/ui/sortdialog.ui:615
msgctxt "sortdialog|rows"
msgid "Rows"
msgstr "Rivit"
+#. vsSra
+#: sw/uiconfig/swriter/ui/sortdialog.ui:625
+msgctxt "sortdialog|extended_tip|rows"
+msgid "Sorts the rows in the table or the paragraphs in the selection according to the current sort options."
+msgstr "Lajitellaan kappaleet tai taulukon rivit asetettujen lajitteluehtojen mukaisesti."
+
#. C4Fuq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:569
+#: sw/uiconfig/swriter/ui/sortdialog.ui:642
msgctxt "sortdialog|label3"
msgid "Direction"
msgstr "Suunta"
#. JGBYA
-#: sw/uiconfig/swriter/ui/sortdialog.ui:602
+#: sw/uiconfig/swriter/ui/sortdialog.ui:675
msgctxt "sortdialog|tabs"
msgid "Tabs"
msgstr "Sarkaimet"
+#. dE3Av
+#: sw/uiconfig/swriter/ui/sortdialog.ui:685
+msgctxt "sortdialog|extended_tip|tabs"
+msgid "If the selected paragraphs correspond to a list separated by tabs, select this option."
+msgstr "Jos valitut kappaleet koostuvat sarkaimin erotetuista luetteloista, valitaan tämä vaihtoehto."
+
#. 7GWNt
-#: sw/uiconfig/swriter/ui/sortdialog.ui:619
+#: sw/uiconfig/swriter/ui/sortdialog.ui:697
msgctxt "sortdialog|character"
msgid "Character "
msgstr "Merkki "
+#. 9yFT9
+#: sw/uiconfig/swriter/ui/sortdialog.ui:711
+msgctxt "sortdialog|extended_tip|character"
+msgid "Enter the character that you want to use as a separator in the selected area."
+msgstr "Annetaan valitulla alueella erottimena käytettävä merkki."
+
+#. ECCA5
+#: sw/uiconfig/swriter/ui/sortdialog.ui:739
+msgctxt "sortdialog|extended_tip|separator"
+msgid "Enter the character that you want to use as a separator in the selected area."
+msgstr "Annetaan valitulla alueella erottimena käytettävä merkki."
+
#. XC5zv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:662
+#: sw/uiconfig/swriter/ui/sortdialog.ui:750
msgctxt "sortdialog|delimpb"
msgid "Select..."
msgstr "Valitse..."
+#. VhhBB
+#: sw/uiconfig/swriter/ui/sortdialog.ui:760
+msgctxt "sortdialog|extended_tip|delimpb"
+msgid "Opens the Special Characters dialog, where you can select the character that you want to use as a separator."
+msgstr "Avataan Lisää erikoismerkki -valintaikkuna, jossa voidaan valita erottimena käytettävä merkki."
+
#. BX6Mq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:690
+#: sw/uiconfig/swriter/ui/sortdialog.ui:783
msgctxt "sortdialog|label4"
msgid "Separator"
msgstr "Erotin"
+#. bBbUV
+#: sw/uiconfig/swriter/ui/sortdialog.ui:833
+msgctxt "sortdialog|extended_tip|langlb"
+msgid "Select the language that defines the sorting rules."
+msgstr "Valitaan kieli, joka määrää lajittelun."
+
#. gEcoc
-#: sw/uiconfig/swriter/ui/sortdialog.ui:746
+#: sw/uiconfig/swriter/ui/sortdialog.ui:844
msgctxt "sortdialog|label1"
msgid "Language"
msgstr "Kieli"
#. QnviQ
-#: sw/uiconfig/swriter/ui/sortdialog.ui:772
+#: sw/uiconfig/swriter/ui/sortdialog.ui:870
msgctxt "sortdialog|matchcase"
msgid "Match case"
msgstr "Sama kirjainkoko"
+#. Nd8XG
+#: sw/uiconfig/swriter/ui/sortdialog.ui:879
+msgctxt "sortdialog|extended_tip|matchcase"
+msgid "Distinguishes between uppercase and lowercase letters when you sort a table. For Asian languages special handling applies."
+msgstr "Suuraakkoset ja pienaakkoset katsotaan eri kirjaimiksi taulukkoa lajiteltaessa. Aasialaisille kielille sovelletaan erityismenettelyä."
+
#. Adw2Y
-#: sw/uiconfig/swriter/ui/sortdialog.ui:787
+#: sw/uiconfig/swriter/ui/sortdialog.ui:890
msgctxt "sortdialog|label2"
msgid "Setting"
msgstr "Asetus"
+#. pCcXF
+#: sw/uiconfig/swriter/ui/sortdialog.ui:928
+msgctxt "sortdialog|extended_tip|SortDialog"
+msgid "Sorts the selected paragraphs or table rows alphabetically or numerically."
+msgstr "Lajitellaan valitut kappaleet tai taulukon rivit aakkos- tai numerojärjestykseen."
+
#. vBG3R
#: sw/uiconfig/swriter/ui/spellmenu.ui:12
msgctxt "spellmenu|ignoreall"
@@ -19579,30 +26295,60 @@ msgctxt "splittable|copyheading"
msgid "Copy heading"
msgstr "Kopioi otsikko"
+#. ajD2B
+#: sw/uiconfig/swriter/ui/splittable.ui:105
+msgctxt "splittable|extended_tip|copyheading"
+msgid "Includes the first row of the original table as the first row of the second table."
+msgstr "Alkuperäisen taulukon ensimmäinen rivi tulee molempien taulukoiden ensimmäiseksi riviksi."
+
#. 5qZGL
-#: sw/uiconfig/swriter/ui/splittable.ui:111
+#: sw/uiconfig/swriter/ui/splittable.ui:116
msgctxt "splittable|customheadingapplystyle"
msgid "Custom heading (apply Style)"
msgstr "Mukautettu otsikko (käytä tyyliä)"
+#. eq5fU
+#: sw/uiconfig/swriter/ui/splittable.ui:126
+msgctxt "splittable|extended_tip|customheadingapplystyle"
+msgid "Inserts a blank header row in the second table that is formatted with the style of the first row in the original table."
+msgstr "Toiseen taulukkoon lisätään tyhjä otsikkorivi, joka on muotoiltu alkuperäisen taulukon ensimmäisen rivin tyylillä."
+
#. DKd7P
-#: sw/uiconfig/swriter/ui/splittable.ui:127
+#: sw/uiconfig/swriter/ui/splittable.ui:137
msgctxt "splittable|customheading"
msgid "Custom heading"
msgstr "Mukautettu otsikko"
+#. HHsCK
+#: sw/uiconfig/swriter/ui/splittable.ui:147
+msgctxt "splittable|extended_tip|customheading"
+msgid "Inserts an additional blank row in the second table."
+msgstr "Toiseen taulukkoon lisätään tyhjä otsikkorivi."
+
#. hiwak
-#: sw/uiconfig/swriter/ui/splittable.ui:143
+#: sw/uiconfig/swriter/ui/splittable.ui:158
msgctxt "splittable|noheading"
msgid "No heading"
msgstr "Ei otsikkoa"
+#. hhmK9
+#: sw/uiconfig/swriter/ui/splittable.ui:168
+msgctxt "splittable|extended_tip|noheading"
+msgid "Splits the table without copying the header row."
+msgstr "Taulukko jaetaan otsikkoriviä kopioimatta."
+
#. RrS2A
-#: sw/uiconfig/swriter/ui/splittable.ui:165
+#: sw/uiconfig/swriter/ui/splittable.ui:185
msgctxt "splittable|label1"
msgid "Mode"
msgstr "Tila"
+#. 9DBjn
+#: sw/uiconfig/swriter/ui/splittable.ui:210
+msgctxt "splittable|extended_tip|SplitTableDialog"
+msgid "Splits the current table into two separate tables at the cursor position."
+msgstr "Käsiteltävä taulukko jaetaan kahdeksi erilliseksi taulukoksi kohdistimen kohdalta."
+
#. Yqd5u
#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:16
msgctxt "statisticsinfopage|label4"
@@ -19663,12 +26409,24 @@ msgctxt "statisticsinfopage|update"
msgid "Update"
msgstr "Päivitä"
+#. LVWDd
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:255
+msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
+msgid "Displays statistics for the current file."
+msgstr ""
+
#. M4Ub9
#: sw/uiconfig/swriter/ui/stringinput.ui:73
msgctxt "stringinput|name"
msgid "Name"
msgstr "Nimi"
+#. GbGR2
+#: sw/uiconfig/swriter/ui/stringinput.ui:94
+msgctxt "stringinput|extended_tip|edit"
+msgid "Enter a name for the new AutoFormat, and then click OK."
+msgstr ""
+
#. oaeDs
#: sw/uiconfig/swriter/ui/subjectdialog.ui:7
msgctxt "subjectdialog|SubjectDialog"
@@ -19699,56 +26457,122 @@ msgctxt "tablecolumnpage|adaptwidth"
msgid "Adapt table _width"
msgstr "Sovita taulukon _leveys"
+#. fR9FX
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:75
+msgctxt "tablecolumnpage|extended_tip|adaptwidth"
+msgid "Reduces or increases table width with modified column width."
+msgstr "Kavennetaan tai levennetään taulukkoa suhteessa muutettuun sarakkeen leveyteen"
+
#. MnC6Z
-#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:81
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:86
msgctxt "tablecolumnpage|adaptcolumns"
msgid "Ad_just columns proportionally"
msgstr "_Säädä sarakkeet suhteessa"
+#. Pmoga
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:95
+msgctxt "tablecolumnpage|extended_tip|adaptcolumns"
+msgid "If possible, change in column width will be equal for each column."
+msgstr "Mahdollisuuksien mukaan sarakkeen leveyden muutos on sama kaikissa sarakkeissa."
+
#. Wyp7Q
-#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:103
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:113
msgctxt "tablecolumnpage|spaceft"
msgid "Remaining space:"
msgstr "Tilaa jäljellä:"
+#. aLn3F
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:145
+msgctxt "tablecolumnpage|extended_tip|space"
+msgid "Displays the amount of space that is available for adjusting the width of the columns. To set the width of the table, click the Table tab."
+msgstr ""
+
#. GZ93v
-#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:163
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:193
msgctxt "tablecolumnpage|width2-atkobject"
msgid "Column 2 Width"
msgstr "Palstan 2 leveys"
+#. gx7EX
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:194
+msgctxt "tablecolumnpage|extended_tip|width2"
+msgid "Enter the width that you want for the column."
+msgstr "Syötetään sarakkeen leveys."
+
#. emUrw
-#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:184
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:215
msgctxt "tablecolumnpage|width3-atkobject"
msgid "Column 3 Width"
msgstr "Palstan 3 leveys"
+#. CDpmD
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:216
+msgctxt "tablecolumnpage|extended_tip|width3"
+msgid "Enter the width that you want for the column."
+msgstr "Syötetään sarakkeen leveys."
+
#. 56Y2z
-#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:205
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:237
msgctxt "tablecolumnpage|width4-atkobject"
msgid "Column 4 Width"
msgstr "Palstan 4 leveys"
+#. BcFnA
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:238
+msgctxt "tablecolumnpage|extended_tip|width4"
+msgid "Enter the width that you want for the column."
+msgstr "Syötetään sarakkeen leveys."
+
#. ZBDu2
-#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:226
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:259
msgctxt "tablecolumnpage|width5-atkobject"
msgid "Column 5 Width"
msgstr "Palstan 5 leveys"
+#. n8XBS
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:260
+msgctxt "tablecolumnpage|extended_tip|width5"
+msgid "Enter the width that you want for the column."
+msgstr "Syötetään sarakkeen leveys."
+
#. 3eDE3
-#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:247
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:281
msgctxt "tablecolumnpage|width6-atkobject"
msgid "Column 6 Width"
msgstr "Palstan 6 leveys"
+#. MBnau
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:282
+msgctxt "tablecolumnpage|extended_tip|width6"
+msgid "Enter the width that you want for the column."
+msgstr "Syötetään sarakkeen leveys."
+
#. cLHfy
-#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:356
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:391
msgctxt "tablecolumnpage|width1-atkobject"
msgid "Column 1 Width"
msgstr "Palstan 1 leveys"
+#. 2aHhx
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:392
+msgctxt "tablecolumnpage|extended_tip|width1"
+msgid "Enter the width that you want for the column."
+msgstr "Syötetään sarakkeen leveys."
+
+#. BzYRm
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:413
+msgctxt "tablecolumnpage|extended_tip|back"
+msgid "Displays the table columns found to the left of the current column."
+msgstr "Otetaan tarvittaessa esille käsiteltävästä sarakkeesta vasemmalle olevat sarakkeet."
+
+#. bJpi8
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:433
+msgctxt "tablecolumnpage|extended_tip|next"
+msgid "Displays the table columns found to the right of the current column."
+msgstr "Otetaan tarvittaessa esille käsiteltävästä sarakkeesta oikealle olevat sarakkeet."
+
#. iJhVV
-#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:404
+#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:450
msgctxt "tablecolumnpage|label26"
msgid "Column Width"
msgstr "Sarakkeen leveys"
@@ -19760,7 +26584,7 @@ msgid "Mail Merge Recipients"
msgstr "Joukkokirjeen vastaanottajat"
#. VCi4N
-#: sw/uiconfig/swriter/ui/tablepreviewdialog.ui:62
+#: sw/uiconfig/swriter/ui/tablepreviewdialog.ui:61
msgctxt "tablepreviewdialog|description"
msgid "The list below shows the contents of: %1"
msgstr "Alla sisältö tietokannasta: %1"
@@ -19807,150 +26631,246 @@ msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Pura"
+#. LEfit
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:62
+msgctxt "tabletextflowpage|extended_tip|break"
+msgid "Select this check box, and then select the type of break that you want to associate with the table."
+msgstr "Merkitään tämä valintaruutu ja valitaan sitten taulukkoon liitettävä vaihtotyyppi."
+
#. 85dHS
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:73
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Sivu"
+#. LUPNA
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:86
+msgctxt "tabletextflowpage|extended_tip|page"
+msgid "Inserts a page break before or after the table."
+msgstr "Lisätään taulukkoa edeltävä tai seuraava sivunvaihto."
+
#. ATESc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Palsta"
+#. bU9Sj
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:110
+msgctxt "tabletextflowpage|extended_tip|column"
+msgid "Inserts a column break before or after the table on a multi-column page."
+msgstr "Lisätään taulukkoa edeltävä tai seuraava palstan vaihto monipalstaisella sivulla."
+
#. bFvFr
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:121
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "En_nen"
+#. wCFtD
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:134
+msgctxt "tabletextflowpage|extended_tip|before"
+msgid "Inserts a page or column break before the table."
+msgstr "Sivun- tai palstanvaihto lisätään taulukon edelle."
+
#. x9LiQ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:145
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Jälkeen"
-#. ZKgd9
+#. y4ECA
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
+msgctxt "tabletextflowpage|extended_tip|after"
+msgid "Inserts a page or column break after the table."
+msgstr "Sivun- tai palstanvaihto lisätään taulukon jälkeen."
+
+#. ZKgd9
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:183
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "_Sivutyylin kanssa"
+#. NMMdy
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:196
+msgctxt "tabletextflowpage|extended_tip|pagestyle"
+msgid "Applies the page style that you specify to the first page that follows the page break."
+msgstr "Määritettävää sivutyyliä käytetään sivunvaihtoa seuraavalla sivulla."
+
#. 4ifHW
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:207
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Sivunumero"
+#. b8xXZ
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
+msgctxt "tabletextflowpage|extended_tip|pagenonf"
+msgid "Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked."
+msgstr ""
+
#. 5oC83
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:248
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Sivutyylin kanssa"
+#. NENyo
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:249
+msgctxt "tabletextflowpage|extended_tip|pagestylelb"
+msgid "Select the page style that you want to apply to the first page that follows the break."
+msgstr "Valitaan sivutyyli, jota käytetään sivunvaihtoa seuraavalla sivulla."
+
#. CZpDc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:266
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Salli _taulukon jakautua useille sivuille ja sarakkeille"
+#. QXXZK
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:275
+msgctxt "tabletextflowpage|extended_tip|split"
+msgid "Allows a page break or column break between the rows of a table."
+msgstr "Sallitaan sivun- tai palstanvaihto taulukon rivien välille."
+
#. SKeze
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:286
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Salli rivin _jakautua useille sivuille ja sarakkeille"
+#. HYN9t
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:297
+msgctxt "tabletextflowpage|extended_tip|splitrow"
+msgid "Allows a page break or column break inside a row of the table."
+msgstr "Sallitaan sivun- tai palstanvaihdon jakaa taulukon rivi kahtia."
+
#. jGCyC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:308
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Si_do seuraavaan kappaleeseen"
+#. iFwuV
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:317
+msgctxt "tabletextflowpage|extended_tip|keep"
+msgid "Keeps the table and the following paragraph together when you insert the break."
+msgstr "Pidetään taulukko ja sitä seuraava kappale yhdessä vaihtoa lisättäessä ."
+
#. QAY45
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:335
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Tekstin asento"
#. JsEEP
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:349
msgctxt "tabletextflowpage|liststore1"
msgid "Horizontal"
msgstr "Vaakataso"
#. RgbAV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:350
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
msgstr "Pysty (ylhäältä alas)"
#. 7yaYB
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:351
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
msgstr "Pysty (alhaalta ylös)"
#. 5CGH9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:301
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:352
msgctxt "tabletextflowpage|liststore1"
msgid "Use superordinate object settings"
msgstr "Käytä ensisijaista objektiasetusta"
+#. FJnts
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
+msgctxt "tabletextflowpage|extended_tip|textorientation"
+msgid "Select the orientation for the text in the cells."
+msgstr ""
+
#. tWodL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:378
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "_Toista otsikko"
+#. EpMSY
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:387
+msgctxt "tabletextflowpage|extended_tip|headline"
+msgid "Repeats the table heading on a new page when the table spans more than one page."
+msgstr "Taulukon otsikko toistuu taulukossa jatkosivuillakin."
+
#. 7R7Gn
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:344
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:405
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Ensimmäiset "
#. KEVNR
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:357
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:418
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "riviä"
+#. hLzfu
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:433
+msgctxt "tabletextflowpage|extended_tip|repeatheadernf"
+msgid "Enter the number of rows to include in the heading."
+msgstr "Annetaan otsikkoon sisältyvä rivimäärä."
+
#. yLhbA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:462
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Tekstin rivitys"
#. FRUDs
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:429
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Pystytasaus"
#. YLPEL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:509
msgctxt "tabletextflowpage|liststore2"
msgid "Top"
msgstr "Yläreuna"
#. 5Pb5v
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:510
msgctxt "tabletextflowpage|liststore2"
msgid "Centered"
msgstr "Keskitetty"
#. 4aZFz
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:445
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:511
msgctxt "tabletextflowpage|liststore2"
msgid "Bottom"
msgstr "Alareuna"
+#. SwHrE
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:515
+msgctxt "tabletextflowpage|extended_tip|vertorient"
+msgid "Specify the vertical text alignment for the cells in the table."
+msgstr "Määritetään taulukon solujen tekstikohdistus pystysuunnassa."
+
#. ZtGTC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:461
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:532
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Tasaus"
+#. GJKSu
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:546
+msgctxt "tabletextflowpage|extended_tip|TableTextFlowPage"
+msgid "Set the text flow options for the text before and after the table."
+msgstr "Tehdään tekstin rivitysasetuksen taulukkoa edeltävälle tai seuraavalle tekstille."
+
#. xhDck
#: sw/uiconfig/swriter/ui/templatedialog1.ui:8
msgctxt "templatedialog1|TemplateDialog1"
@@ -20299,38 +27219,50 @@ msgctxt "testmailsettings|TestMailSettings"
msgid "Test Account Settings"
msgstr "Testaa tunnuksen asetuksia"
+#. pBore
+#: sw/uiconfig/swriter/ui/testmailsettings.ui:33
+msgctxt "extended_tip|stop"
+msgid "Click the Stop button to stop a test session manually."
+msgstr "Napsautetaan Pysäytä-painiketta koeajon pysäyttämiseksi manuaalisesti."
+
#. 4Bcop
-#: sw/uiconfig/swriter/ui/testmailsettings.ui:104
+#: sw/uiconfig/swriter/ui/testmailsettings.ui:106
msgctxt "testmailsettings|establish"
msgid "Establish network connection"
msgstr "Muodosta verkkoyhteys"
#. Fuyoe
-#: sw/uiconfig/swriter/ui/testmailsettings.ui:116
+#: sw/uiconfig/swriter/ui/testmailsettings.ui:118
msgctxt "testmailsettings|find"
msgid "Find outgoing mail server"
msgstr "Etsi lähettävä sähköpostipalvelin"
#. sVa4p
-#: sw/uiconfig/swriter/ui/testmailsettings.ui:128
+#: sw/uiconfig/swriter/ui/testmailsettings.ui:130
msgctxt "testmailsettings|result1"
msgid "Successful"
msgstr "Onnistunut"
#. DTbTU
-#: sw/uiconfig/swriter/ui/testmailsettings.ui:140
+#: sw/uiconfig/swriter/ui/testmailsettings.ui:142
msgctxt "testmailsettings|result2"
msgid "Failed"
msgstr "Epäonnistunut"
#. BU6es
-#: sw/uiconfig/swriter/ui/testmailsettings.ui:224
+#: sw/uiconfig/swriter/ui/testmailsettings.ui:226
msgctxt "testmailsettings|label8"
msgid "%PRODUCTNAME is testing the email account settings..."
msgstr "%PRODUCTNAME testaa sähköpostitilin asetuksia..."
+#. eXGU4
+#: sw/uiconfig/swriter/ui/testmailsettings.ui:278
+msgctxt "extended_tip|errors"
+msgid "In the Errors list box you can read an explanation of any errors encountered while testing the settings."
+msgstr "Virheet-luetteloruudusta voi lukea selitykset asetusten kokeilussa mahdollisesti tavatuille virheille."
+
#. TF5ap
-#: sw/uiconfig/swriter/ui/testmailsettings.ui:290
+#: sw/uiconfig/swriter/ui/testmailsettings.ui:297
msgctxt "testmailsettings|label1"
msgid "Errors"
msgstr "Virheet"
@@ -20341,96 +27273,168 @@ msgctxt "textgridpage|radioRB_NOGRID"
msgid "No grid"
msgstr "Ei ruudukkoa"
+#. E4P8y
+#: sw/uiconfig/swriter/ui/textgridpage.ui:79
+msgctxt "textgridpage|extended_tip|radioRB_NOGRID"
+msgid "Adds or removes a text grid for lines or characters to the current page style."
+msgstr "Lisätään tai poistetaan käsillä olevan sivutyylin tekstiruudukko riveiltä tai merkeiltä."
+
#. YcrB9
-#: sw/uiconfig/swriter/ui/textgridpage.ui:85
+#: sw/uiconfig/swriter/ui/textgridpage.ui:90
msgctxt "textgridpage|radioRB_LINESGRID"
msgid "Grid (lines only)"
msgstr "Ruudukko (vain rivit)"
+#. 38WhC
+#: sw/uiconfig/swriter/ui/textgridpage.ui:100
+msgctxt "textgridpage|extended_tip|radioRB_LINESGRID"
+msgid "Adds or removes a text grid for lines or characters to the current page style."
+msgstr "Lisätään tai poistetaan käsillä olevan sivutyylin tekstiruudukko riveiltä tai merkeiltä."
+
#. twnn7
-#: sw/uiconfig/swriter/ui/textgridpage.ui:101
+#: sw/uiconfig/swriter/ui/textgridpage.ui:111
msgctxt "textgridpage|radioRB_CHARSGRID"
msgid "Grid (lines and characters)"
msgstr "Ruudukko (rivit ja merkit)"
+#. YEz9Q
+#: sw/uiconfig/swriter/ui/textgridpage.ui:121
+msgctxt "textgridpage|extended_tip|radioRB_CHARSGRID"
+msgid "Adds or removes a text grid for lines or characters to the current page style."
+msgstr "Lisätään tai poistetaan käsillä olevan sivutyylin tekstiruudukko riveiltä tai merkeiltä."
+
#. vgAMo
-#: sw/uiconfig/swriter/ui/textgridpage.ui:117
+#: sw/uiconfig/swriter/ui/textgridpage.ui:132
msgctxt "textgridpage|checkCB_SNAPTOCHARS"
msgid "_Snap to characters"
msgstr "Kohdista merkkeihin"
#. FUCs3
-#: sw/uiconfig/swriter/ui/textgridpage.ui:160
+#: sw/uiconfig/swriter/ui/textgridpage.ui:175
msgctxt "textgridpage|labelGrid"
msgid "Grid"
msgstr "Ruudukko"
#. orVSu
-#: sw/uiconfig/swriter/ui/textgridpage.ui:210
+#: sw/uiconfig/swriter/ui/textgridpage.ui:225
msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr "Merkkejä rivillä:"
+#. ZvrxC
+#: sw/uiconfig/swriter/ui/textgridpage.ui:241
+msgctxt "textgridpage|extended_tip|spinNF_CHARSPERLINE"
+msgid "Enter the maximum number of characters that you want on a line."
+msgstr "Annetaan rivin enimmäismerkkimäärä."
+
#. YoUGQ
-#: sw/uiconfig/swriter/ui/textgridpage.ui:248
+#: sw/uiconfig/swriter/ui/textgridpage.ui:268
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr "Rivejä sivulla:"
+#. Y36BF
+#: sw/uiconfig/swriter/ui/textgridpage.ui:286
+msgctxt "textgridpage|extended_tip|spinNF_LINESPERPAGE"
+msgid "Enter the maximum number of lines that you want on a page."
+msgstr "Annetaan sivun enimmäisrivimäärä."
+
#. VKRDD
-#: sw/uiconfig/swriter/ui/textgridpage.ui:314
+#: sw/uiconfig/swriter/ui/textgridpage.ui:339
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
msgstr "Merkin leveys:"
#. djvBs
-#: sw/uiconfig/swriter/ui/textgridpage.ui:328
+#: sw/uiconfig/swriter/ui/textgridpage.ui:353
msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr "Suurin ruby-tekstin koko:"
+#. FxPwc
+#: sw/uiconfig/swriter/ui/textgridpage.ui:371
+msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
+msgid "Enter the font size for the Ruby text."
+msgstr "Annetaan ruby-tekstin fonttikoko."
+
#. FJFVs
-#: sw/uiconfig/swriter/ui/textgridpage.ui:355
+#: sw/uiconfig/swriter/ui/textgridpage.ui:385
msgctxt "textgridpage|labelFT_TEXTSIZE"
msgid "Max. base text size:"
msgstr "Suurin perustekstin koko:"
+#. kKNkF
+#: sw/uiconfig/swriter/ui/textgridpage.ui:403
+msgctxt "textgridpage|extended_tip|spinMF_TEXTSIZE"
+msgid "Enter the maximum base text size. A large value results in less characters per line."
+msgstr "Annetaan perustekstin enimmäiskoko. Suurilla arvoilla tuloksena on vähemmän merkkejä riville."
+
#. xFWMV
-#: sw/uiconfig/swriter/ui/textgridpage.ui:392
+#: sw/uiconfig/swriter/ui/textgridpage.ui:427
msgctxt "textgridpage|checkCB_RUBYBELOW"
msgid "Ruby text below/left from base text"
msgstr "Ruby-teksti perustekstin alla tai vasemmalla puolella"
+#. 47KKR
+#: sw/uiconfig/swriter/ui/textgridpage.ui:438
+msgctxt "textgridpage|extended_tip|checkCB_RUBYBELOW"
+msgid "Displays Ruby text to the left of or below the base text."
+msgstr "Ruby-teksti esitetään perustekstin alla tai vasemmalla puolella."
+
#. qCgRA
-#: sw/uiconfig/swriter/ui/textgridpage.ui:416
+#: sw/uiconfig/swriter/ui/textgridpage.ui:456
msgctxt "textgridpage|labelGridLayout"
msgid "Grid Layout"
msgstr "Ruudukkoasettelu"
#. qj8Gw
-#: sw/uiconfig/swriter/ui/textgridpage.ui:449
+#: sw/uiconfig/swriter/ui/textgridpage.ui:489
msgctxt "textgridpage|checkCB_DISPLAY"
msgid "Display grid"
msgstr "Näytä ruudukko"
+#. rB5ty
+#: sw/uiconfig/swriter/ui/textgridpage.ui:499
+msgctxt "textgridpage|extended_tip|checkCB_DISPLAY"
+msgid "Specifies the printing and color options of the text grid."
+msgstr "Määritetään tekstiruudukon tulostus- ja väriasetukset."
+
#. VBBaC
-#: sw/uiconfig/swriter/ui/textgridpage.ui:465
+#: sw/uiconfig/swriter/ui/textgridpage.ui:510
msgctxt "textgridpage|checkCB_PRINT"
msgid "Print grid"
msgstr "Tulosta ruudukko"
+#. kvaYD
+#: sw/uiconfig/swriter/ui/textgridpage.ui:521
+msgctxt "textgridpage|extended_tip|checkCB_PRINT"
+msgid "Specifies the printing and color options of the text grid."
+msgstr "Määritetään tekstiruudukon tulostus- ja väriasetukset."
+
#. qBUXt
-#: sw/uiconfig/swriter/ui/textgridpage.ui:485
+#: sw/uiconfig/swriter/ui/textgridpage.ui:535
msgctxt "textgridpage|labelFT_COLOR"
msgid "Grid color:"
msgstr "Ruudukon väri:"
+#. Gcv2C
+#: sw/uiconfig/swriter/ui/textgridpage.ui:559
+msgctxt "textgridpage|extended_tip|listLB_COLOR"
+msgid "Specifies the printing and color options of the text grid."
+msgstr "Määritetään tekstiruudukon tulostus- ja väriasetukset."
+
#. SxFyQ
-#: sw/uiconfig/swriter/ui/textgridpage.ui:526
+#: sw/uiconfig/swriter/ui/textgridpage.ui:582
msgctxt "textgridpage|labelFL_DISPLAY"
msgid "Grid Display"
msgstr "Ruudukon näyttäminen"
+#. F6YEz
+#: sw/uiconfig/swriter/ui/textgridpage.ui:597
+msgctxt "textgridpage|extended_tip|TextGridPage"
+msgid "Adds a text grid to the current page style. This option is only available if Asian language support is enabled under Language Settings - Languages in the Options dialog box."
+msgstr "Lisätään tekstiruudukko käsiteltävälle sivulle. Vaihtoehto on saatavilla vain, jos aasialaisten kielten tuki on otettu käyttöön Asetukset-valintaikkunan Kieliasetukset - Kielet-lehdellä."
+
#. aHkWU
#: sw/uiconfig/swriter/ui/titlepage.ui:33
msgctxt "titlepage|DLG_TITLEPAGE"
@@ -20438,95 +27442,101 @@ msgid "Title Page"
msgstr "Otsikkosivut"
#. bAzpV
-#: sw/uiconfig/swriter/ui/titlepage.ui:133
+#: sw/uiconfig/swriter/ui/titlepage.ui:130
msgctxt "titlepage|label6"
msgid "Number of title pages:"
msgstr "Otsikkosivujen määrä:"
#. cSDtn
-#: sw/uiconfig/swriter/ui/titlepage.ui:147
+#: sw/uiconfig/swriter/ui/titlepage.ui:144
msgctxt "titlepage|label7"
msgid "Place title pages at:"
msgstr "Sijoita otsikkosivut:"
#. y5Tiz
-#: sw/uiconfig/swriter/ui/titlepage.ui:195
+#: sw/uiconfig/swriter/ui/titlepage.ui:192
msgctxt "titlepage|RB_USE_EXISTING_PAGES"
msgid "Converting existing pages to title pages"
msgstr "Otsikkosivujen tekeminen nykyisistä sivuista"
#. B4uzg
-#: sw/uiconfig/swriter/ui/titlepage.ui:214
+#: sw/uiconfig/swriter/ui/titlepage.ui:211
msgctxt "titlepage|RB_INSERT_NEW_PAGES"
msgid "Insert new title pages"
msgstr "Lisää uusia otsikkosivuja"
#. 9UqEG
-#: sw/uiconfig/swriter/ui/titlepage.ui:233
+#: sw/uiconfig/swriter/ui/titlepage.ui:230
msgctxt "titlepage|RB_DOCUMENT_START"
msgid "Document start"
msgstr "asiakirjan alkuun"
#. UE6DM
-#: sw/uiconfig/swriter/ui/titlepage.ui:253
+#: sw/uiconfig/swriter/ui/titlepage.ui:250
msgctxt "titlepage|RB_PAGE_START"
msgid "Page"
msgstr "sivulle"
#. S3vFc
-#: sw/uiconfig/swriter/ui/titlepage.ui:284
+#: sw/uiconfig/swriter/ui/titlepage.ui:281
msgctxt "titlepage|label1"
msgid "Make Title Pages"
msgstr "Luo otsikkosivuja"
#. JKtfh
-#: sw/uiconfig/swriter/ui/titlepage.ui:317
+#: sw/uiconfig/swriter/ui/titlepage.ui:314
msgctxt "titlepage|CB_RESTART_NUMBERING"
msgid "Reset page numbering after title pages"
msgstr "Aloita sivunumerointi otsikkosivujen jälkeen"
#. FY2CJ
-#: sw/uiconfig/swriter/ui/titlepage.ui:345
+#: sw/uiconfig/swriter/ui/titlepage.ui:342
msgctxt "titlepage|FT_PAGE_COUNT"
msgid "Page number:"
msgstr "Sivunumero:"
#. JdY9e
-#: sw/uiconfig/swriter/ui/titlepage.ui:382
+#: sw/uiconfig/swriter/ui/titlepage.ui:379
msgctxt "titlepage|CB_SET_PAGE_NUMBER"
msgid "Set page number for first title page"
msgstr "Sivunumero ensimmäiselle otsikkosivulle"
#. TxHWZ
-#: sw/uiconfig/swriter/ui/titlepage.ui:410
+#: sw/uiconfig/swriter/ui/titlepage.ui:407
msgctxt "titlepage|FT_PAGE_PAGES"
msgid "Page number:"
msgstr "Sivunumero:"
#. nJXn9
-#: sw/uiconfig/swriter/ui/titlepage.ui:453
+#: sw/uiconfig/swriter/ui/titlepage.ui:450
msgctxt "titlepage|label2"
msgid "Page Numbering"
msgstr "Sivunumerointi"
#. rQqDD
-#: sw/uiconfig/swriter/ui/titlepage.ui:487
+#: sw/uiconfig/swriter/ui/titlepage.ui:484
msgctxt "titlepage|label4"
msgid "_Style:"
msgstr "_Tyyli:"
#. 4XAV9
-#: sw/uiconfig/swriter/ui/titlepage.ui:510
+#: sw/uiconfig/swriter/ui/titlepage.ui:507
msgctxt "titlepage|PB_PAGE_PROPERTIES"
msgid "Edit..."
msgstr "Muokkaa..."
#. puRGq
-#: sw/uiconfig/swriter/ui/titlepage.ui:529
+#: sw/uiconfig/swriter/ui/titlepage.ui:526
msgctxt "titlepage|label3"
msgid "Edit Page Properties"
msgstr "Muokkaa sivun ominaisuuksia"
+#. pGbpm
+#: sw/uiconfig/swriter/ui/titlepage.ui:558
+msgctxt "titlepage|extended_tip|DLG_TITLEPAGE"
+msgid "Insert title pages in your document."
+msgstr ""
+
#. Yk7XD
#: sw/uiconfig/swriter/ui/tocdialog.ui:8
msgctxt "tocdialog|TocDialog"
@@ -20599,246 +27609,456 @@ msgctxt "tocentriespage|all"
msgid "_All"
msgstr "Kaikki"
+#. BYrBV
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:217
+msgctxt "tocentriespage|extended_tip|all"
+msgid "Applies the current settings to all levels without closing the dialog."
+msgstr ""
+
+#. i99eQ
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:234
+msgctxt "tocentriespage|extended_tip|token"
+msgid "Displays the remainder of the Structure line."
+msgstr "Näytetään loput Rakenne-rivistä."
+
#. 6JdC4
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:250
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:260
msgctxt "tocentriespage|label5"
msgid "Character style:"
msgstr "Merkkityyli:"
#. F5Gt6
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:262
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:272
msgctxt "tocentriespage|edit"
msgid "_Edit..."
msgstr "Muokkaa..."
+#. Dzkip
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:279
+msgctxt "tocentriespage|extended_tip|edit"
+msgid "Opens a dialog where you can edit the selected character style."
+msgstr "Avataan valintaikkuna, jossa valittua merkkityyliä voidaan muokata."
+
+#. uEp6N
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:296
+msgctxt "tocentriespage|extended_tip|charstyle"
+msgid "Specify the formatting style for the selected part on the Structure line."
+msgstr "Määritetään Rakennerivin valitun osan muotoilutyyli."
+
#. 5nWPi
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:289
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:309
msgctxt "tocentriespage|fillcharft"
msgid "Fill character:"
msgstr "Täyttömerkki:"
+#. ZoYNn
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:334
+msgctxt "tocentriespage|extended_tip|fillchar"
+msgid "Select the tab leader that you want use."
+msgstr "Valitaan sarkainkohdassa käytettävä täyttömerkki."
+
#. FfEDW
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:322
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:347
msgctxt "tocentriespage|tabstopposft"
msgid "Tab stop position:"
msgstr "Sarkainkohdan sijainti:"
+#. F77Kt
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:368
+msgctxt "tocentriespage|extended_tip|tabstoppos"
+msgid "Enter the distance to leave between the left page margin and the tab stop."
+msgstr "Annetaan sivun vasemman marginaalin ja sarkaimen välin suuruus."
+
#. okgoX
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:349
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:379
msgctxt "tocentriespage|alignright"
msgid "Align right"
msgstr "Tasaa oikealle"
+#. oqERM
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:388
+msgctxt "tocentriespage|extended_tip|alignright"
+msgid "Aligns the tab stop to the right page margin."
+msgstr "Tasataan sarkainkohta oikeanpuoleiseen marginaaliin."
+
#. btD2T
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:366
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:401
msgctxt "tocentriespage|chapterentryft"
msgid "Chapter entry:"
msgstr "Luvun merkintä:"
#. ADyKA
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:383
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:418
msgctxt "tocentriespage|chapterentry"
msgid "Number range only"
msgstr "Vain numeroalue"
#. TyVE4
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:384
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:419
msgctxt "tocentriespage|chapterentry"
msgid "Description only"
msgstr "Vain kuvaus"
#. PMa3U
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:385
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:420
msgctxt "tocentriespage|chapterentry"
msgid "Number range and description"
msgstr "Numeroalue ja kuvaus"
+#. bmtXn
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:424
+msgctxt "tocentriespage|extended_tip|chapterentry"
+msgid "Select the chapter information that you want to include in the index entry."
+msgstr "Valitaan ne luvun tiedot, jotka esitetään hakemistomerkinnässä."
+
#. ZnXeV
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:397
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:437
msgctxt "tocentriespage|entryoutlinelevelft"
msgid "Evaluate up to level:"
msgstr "Syvin mukaan otettava taso:"
+#. 5RNAC
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:457
+msgctxt "tocentriespage|extended_tip|entryoutlinelevel"
+msgid "Enter the maximum hierarchy level down to which objects are shown in the generated index."
+msgstr "Annetaan hierarkkisten tasojen enimmäismäärä, joilta kohteet näytetään luotavassa hakemistossa."
+
#. qtbWw
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:425
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:470
msgctxt "tocentriespage|numberformatft"
msgid "Format:"
msgstr "Muoto:"
#. 24FSt
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:442
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:487
msgctxt "tocentriespage|numberformat"
msgid "Number"
msgstr "Luku"
#. pCUfB
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:443
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:488
msgctxt "tocentriespage|numberformat"
msgid "Number without separator"
msgstr "Luku ilman erotinmerkkiä"
+#. 5xhtc
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:492
+msgctxt "tocentriespage|extended_tip|numberformat"
+msgid "Only visible when you click the E# button in the Structure line. Select to show the chapter number with or without separator."
+msgstr "Rivi näkyy vain, kun E# -painiketta napsautetaan Rakenne-rivillä. Luvun numero esitetään erottimen kera tai ilman."
+
+#. Kty7u
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:531
+msgctxt "tocentriespage|extended_tip|authfield"
+msgid "To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click Insert."
+msgstr "Merkinnän lisäämiseksi Rakenne-riville napsautetaan merkintää, napsautetaan tyhjää ruutua Rakenne-rivillä ja sitten napsautetaan Lisää-painiketta."
+
#. D6uWP
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:495
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:550
msgctxt "tocentriespage|insert"
msgid "_Insert"
msgstr "_Lisää"
+#. sWDTV
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:557
+msgctxt "tocentriespage|extended_tip|insert"
+msgid "Adds the reference code for the selected bibliography entry to the Structure line. Select an entry in the list, click in an empty box, and then click this button."
+msgstr "Lisätään valitun lähdeviitteen viitekoodi rakenneriville. Valitaan ensin merkintä luettelosta, napsautetaan tyhjää ruutua ja sitten napsautetaan tätä painiketta."
+
#. Lc2kd
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:509
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:569
msgctxt "tocentriespage|remove"
msgid "_Remove"
msgstr "Poista"
+#. VRtAA
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:576
+msgctxt "tocentriespage|extended_tip|remove"
+msgid "Removes the selected reference code from the Structure line."
+msgstr "Poistetaan valittu viitekoodi rakenneriviltä."
+
#. UprDZ
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:523
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:588
msgctxt "tocentriespage|chapterno"
msgid "Chapter No."
msgstr "Luku nro."
+#. P87Rt
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:595
+msgctxt "tocentriespage|extended_tip|chapterno"
+msgid "Inserts the chapter number. To assign chapter numbering to a heading style, choose Tools - Chapter Numbering."
+msgstr ""
+
#. vQAWr
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:537
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:607
msgctxt "tocentriespage|entrytext"
msgid "Entry Text"
msgstr "Merkintäteksti"
+#. 7PD2u
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:613
+msgctxt "tocentriespage|extended_tip|entrytext"
+msgid "Inserts the text of the chapter heading."
+msgstr "Lisätään luvun otsikon teksti."
+
#. BQH4d
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:550
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:625
msgctxt "tocentriespage|tabstop"
msgid "Tab Stop"
msgstr "Sarkainkohta"
+#. 28QwC
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:632
+msgctxt "tocentriespage|extended_tip|tabstop"
+msgid "Inserts a tab stop. To add leader dots to the tab stop, select a character in the Fill character box. To change the position of the tab stop, enter a value in the Tab stop position box, or select the Align right check box."
+msgstr "Lisätään sarkainkohta. Edeltävien pisteiden lisäämiseksi sarkainkohtaan valitaan Täyttömerkki-ruutu. Sarkainkohtien muuttamiseksi annetaan arvo Sarkainkohdan sijainti -ruutuun tai valitaan Tasaa oikealle -valintaruutu."
+
#. Dbwdu
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:564
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:644
msgctxt "tocentriespage|chapterinfo"
msgid "_Chapter Info"
msgstr "Luvun tiedot"
+#. crNei
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:651
+msgctxt "tocentriespage|extended_tip|chapterinfo"
+msgid "Inserts chapter information, such as the chapter heading and number. Select the information that you want to display in the Chapter entry box."
+msgstr "Lisätään luvun tiedot, kuten luvun otsikko ja numero. Näytettävät tiedot valitaan Luvun merkintä -ruudussa."
+
#. AYFTR
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:578
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:663
msgctxt "tocentriespage|pageno"
msgid "Page No."
msgstr "Sivunro."
+#. Cb5dg
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:670
+msgctxt "tocentriespage|extended_tip|pageno"
+msgid "Inserts the page number of the entry."
+msgstr "Lisätään sivunumero merkintään."
+
#. 9EpS2
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:592
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:682
msgctxt "tocentriespage|hyperlink"
msgid "H_yperlink"
msgstr "Hyperlinkki"
+#. RfLp4
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:689
+msgctxt "tocentriespage|extended_tip|hyperlink"
+msgid "Creates a hyperlink for the part of the entry that you enclose by the opening (LS) and the closing (LE) hyperlink tags. On the Structure line, click in the empty box in front of the part that you want to create a hyperlink for, and then click this button. Click in the empty box after the part that you want to hyperlink, and then click this button again. All hyperlinks must be unique. Available only for a table of contents."
+msgstr "Luodaan hyperlinkki merkinnän eli rivin siitä osasta, joka jää aloittavien (LS) ja lopettavien (LE) hyperlinkin muotoilukoodien väliin. Rakenne-rivillä napautetaan tyhjää ruutua linkiksi tulevan osan edellä ja sitten napsautetaan tätä painiketta. Jatketaan napauttaen tyhjää ruutua hyperlinkkiosan jäljessä ja sitten napsautetaan taas tätä painiketta. Kaikkien hyperlinkkien tulee olla yksilöllisiä. Saatavilla vain sisällysluetteloissa."
+
#. neGrK
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:625
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:720
msgctxt "tocentriespage|label1"
msgid "Structure and Formatting"
msgstr "Rakenne"
#. 6jUXn
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:660
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:755
msgctxt "tocentriespage|reltostyle"
msgid "Tab position relati_ve to paragraph style indent"
msgstr "Sarkainkohta suhteessa kappaletyylin sisennykseen"
+#. FEBq7
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:764
+msgctxt "tocentriespage|extended_tip|reltostyle"
+msgid "Positions the tab stop relative to the \"indent from left\" value defined in the paragraph style selected on the Styles tab. Otherwise the tab stop is positioned relative to the left text margin."
+msgstr "Sijoitetaan sarkainkohta suhteessa \"sisennys vasemmalta\"-arvoon, joka on määritetty Tyylit-välilehdellä valitulle kappaletyylille. Muutoin sarkainkohta sijoitetaan suhteessa vasempaan marginaaliin."
+
#. pmiey
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:676
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:776
msgctxt "tocentriespage|commasep"
msgid "Key separated by commas"
msgstr "Pilkuilla erotettu avainsana"
+#. 7g9UD
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:785
+msgctxt "tocentriespage|extended_tip|commasep"
+msgid "Arranges the index entries on the same line, separated by commas."
+msgstr "Järjestetään hakemistomerkinnät samalle riville, pilkuin eroteltuina."
+
#. nSJnG
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:692
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:797
msgctxt "tocentriespage|alphadelim"
msgid "Alphabetical delimiter"
msgstr "Aakkosittain eroteltu"
+#. 42F3V
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:806
+msgctxt "tocentriespage|extended_tip|alphadelim"
+msgid "Uses the initial letters of the alphabetically arranged index entries as section headings."
+msgstr "Käytetään aakkosjärjestyksessä olevan hakemiston alkukirjaimia osien otsikoina."
+
#. WqEHX
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:710
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:820
msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr "Päämerkintöjen merkkityyli:"
+#. PGu5D
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:836
+msgctxt "tocentriespage|extended_tip|mainstyle"
+msgid "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 Edit - Index Entry."
+msgstr "Määritetään aakkoshakemiston päämerkintöjen muotoilutyyli. Hakemistomerkinnän muuttamiseksi päämerkinnäksi, napsautetaan asiakirjassa hakemistokentän edessä ja valitaan Muokkaa - Hakemistomerkintä."
+
#. r33aA
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:738
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:853
msgctxt "tocentriespage|label3"
msgid "Format"
msgstr "Muoto"
#. KGCpX
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:772
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:887
msgctxt "tocentriespage|sortpos"
msgid "Document _position"
msgstr "Asiakirjan sijainti"
+#. uNhBB
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:898
+msgctxt "tocentriespage|extended_tip|sortpos"
+msgid "Sorts the bibliography entries according to the position of their references in the document."
+msgstr "Lajitellaan lähdeviitteet niiden asiakirjassa sijaitsevien viittauskohtien mukaisesti."
+
#. 2b5tC
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:789
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:909
msgctxt "tocentriespage|sortcontents"
msgid "_Content"
msgstr "Sisältö"
+#. 3N4Vm
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:919
+msgctxt "tocentriespage|extended_tip|sortcontents"
+msgid "Sorts the bibliography entries by the Sort keys that you specify, for example, by author or by year of publication."
+msgstr "Lajitellaan lähdeviitteet niiden määritettävien lajitteluavaimien mukaisesti, esimerkiksi tekijän tai julkaisuvuoden mukaan."
+
#. FBuPi
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:811
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:936
msgctxt "tocentriespage|label14"
msgid "Sort by"
msgstr "Lajitteluperuste"
#. UUgEC
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:848
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:973
msgctxt "tocentriespage|label15"
msgid "_1:"
msgstr "_1:"
+#. 6trLF
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:989
+msgctxt "tocentriespage|extended_tip|key1lb"
+msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area."
+msgstr "Valitaan merkintä, jonka mukaan lähdeviitteet lajitellaan. Tämä vaihtoehto on saatavilla vain, jos valitaan Sisältö-valintanappi Lajitteluperuste-alueella."
+
#. B7NqZ
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:872
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1002
msgctxt "tocentriespage|label16"
msgid "_2:"
msgstr "_2:"
#. zXEA4
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:884
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1014
msgctxt "tocentriespage|label17"
msgid "_3:"
msgstr "_3:"
+#. oLGSi
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1030
+msgctxt "tocentriespage|extended_tip|key2lb"
+msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area."
+msgstr "Valitaan merkintä, jonka mukaan lähdeviitteet lajitellaan. Tämä vaihtoehto on saatavilla vain, jos valitaan Sisältö-valintanappi Lajitteluperuste-alueella."
+
+#. tfvwe
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1047
+msgctxt "tocentriespage|extended_tip|key3lb"
+msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area."
+msgstr "Valitaan merkintä, jonka mukaan lähdeviitteet lajitellaan. Tämä vaihtoehto on saatavilla vain, jos valitaan Sisältö-valintanappi Lajitteluperuste-alueella."
+
#. 6GYwu
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:921
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1061
msgctxt "tocentriespage|up1cb|tooltip_text"
msgid "Ascending"
msgstr "Nouseva"
+#. u7ENB
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1069
+msgctxt "tocentriespage|extended_tip|up1cb"
+msgid "Sorts the bibliography entries in ascending alphanumerical order."
+msgstr "Lähdeviitteet lajitellaan aakkosjärjestykseen, nousevasti."
+
#. TXjGy
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:938
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1083
msgctxt "tocentriespage|down1cb|tooltip_text"
msgid "Descending"
msgstr "Laskeva"
+#. vAs6a
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1091
+msgctxt "tocentriespage|extended_tip|down1cb"
+msgid "Sorts the bibliography entries in a descending alphanumerical order."
+msgstr "Lähdeviitteet lajitellaan käänteiseen aakkosjärjestykseen, laskevasti."
+
#. PJr9b
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:955
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1105
msgctxt "tocentriespage|up2cb|tooltip_text"
msgid "Ascending"
msgstr "Nouseva"
+#. xEvVo
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1113
+msgctxt "tocentriespage|extended_tip|up2cb"
+msgid "Sorts the bibliography entries in ascending alphanumerical order."
+msgstr "Lähdeviitteet lajitellaan aakkosjärjestykseen, nousevasti."
+
#. cU3GF
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:972
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1127
msgctxt "tocentriespage|up3cb|tooltip_text"
msgid "Ascending"
msgstr "Nouseva"
+#. UNCUz
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1135
+msgctxt "tocentriespage|extended_tip|up3cb"
+msgid "Sorts the bibliography entries in ascending alphanumerical order."
+msgstr "Lähdeviitteet lajitellaan aakkosjärjestykseen, nousevasti."
+
#. Ukmme
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:989
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1149
msgctxt "tocentriespage|down2cb|tooltip_text"
msgid "Descending"
msgstr "Laskeva"
+#. T3px2
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1157
+msgctxt "tocentriespage|extended_tip|down2cb"
+msgid "Sorts the bibliography entries in a descending alphanumerical order."
+msgstr "Lähdeviitteet lajitellaan käänteiseen aakkosjärjestykseen, laskevasti."
+
#. VRkA3
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:1006
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1171
msgctxt "tocentriespage|down3cb|tooltip_text"
msgid "Descending"
msgstr "Laskeva"
+#. FDVvh
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1179
+msgctxt "tocentriespage|extended_tip|down3cb"
+msgid "Sorts the bibliography entries in a descending alphanumerical order."
+msgstr "Lähdeviitteet lajitellaan käänteiseen aakkosjärjestykseen, laskevasti."
+
#. heqgT
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:1026
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1196
msgctxt "tocentriespage|label13"
msgid "Sort Keys"
msgstr "Lajitteluavaimet"
+#. HjK7t
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:1223
+msgctxt "tocentriespage|extended_tip|TocEntriesPage"
+msgid "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 Type tab."
+msgstr ""
+
#. GBk8E
#: sw/uiconfig/swriter/ui/tocindexpage.ui:19
msgctxt "tocindexpage|open"
@@ -20863,326 +28083,512 @@ msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Otsikko:"
+#. oEQSK
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:112
+msgctxt "tocindexpage|extended_tip|title"
+msgid "Enter a title for the selected index."
+msgstr "Kirjoitetaan otsikko valitulle hakemistolle."
+
#. EhUsg
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:125
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tyyppi:"
#. yfG2o
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Sisällysluettelo"
#. hP5JM
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Aakkosellinen hakemisto"
#. uL3jM
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Kuvaluettelo"
#. gijYT
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:144
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Taulukkoluettelo"
#. DuFx3
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:145
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Käyttäjän määrittämä"
#. CCQdU
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:146
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektiluettelo"
#. eXZ8E
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:147
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Lähdeluettelo"
+#. zR6VT
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:151
+msgctxt "tocindexpage|extended_tip|type"
+msgid "Select the type of index that you want to insert or edit."
+msgstr ""
+
#. 2M95E
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:162
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Suojattu manuaalisilta muutoksilta"
+#. ThHEB
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:172
+msgctxt "tocindexpage|extended_tip|readonly"
+msgid "Prevents the contents of the index from being changed."
+msgstr "Merkitsemällä ruutu estetään hakemistoon tehtävät muutokset."
+
#. qwBjz
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:190
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tyyppi ja otsikko"
#. EFkz2
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Kohteelle:"
#. BgEZQ
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:246
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Koko asiakirja"
#. E4vrG
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Luku"
+#. 49Ghe
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:251
+msgctxt "tocindexpage|extended_tip|scope"
+msgid "Select whether to create the index for the document or for the current chapter."
+msgstr "Valitaan, luodaanko hakemisto koko asiakirjalle vai käsiteltävälle luvulle."
+
#. DGY52
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:275
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Syvin mukaan otettava taso:"
+#. zaoBB
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:293
+msgctxt "tocindexpage|extended_tip|level"
+msgid "Enter the number of heading levels to include in the index."
+msgstr "Annetaan hakemistoon sisällytettävien otsikkotasojen lukumäärä."
+
#. GwFGr
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:316
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Luo hakemisto tai sisällysluettelo"
#. 36kXs
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Jäsennys"
+#. mYAiq
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:366
+msgctxt "tocindexpage|extended_tip|fromheadings"
+msgid "Creates the index using outline levels. Paragraphs formatted with one of the predefined heading styles (Heading 1-10) are added to the index."
+msgstr ""
+
#. 6RPA5
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:377
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Hakemistomerkit"
+#. sjni2
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:387
+msgctxt "tocindexpage|extended_tip|indexmarks"
+msgid "Includes the index entries that you inserted by choosing Insert - Table of Contents and Index - Index Entry in the index."
+msgstr "Hakemistoon sisällytetään hakemistomerkinnät, jotka lisätään valitsemalla Lisää - Hakemistot ja luettelot - Merkintä."
+
#. ZrB8Z
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:398
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Taulukot"
+#. 7xipZ
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:407
+msgctxt "tocindexpage|extended_tip|fromtables"
+msgid "Includes tables in the index."
+msgstr "Hakemisto kattaa taulukot."
+
#. rC8Gw
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:418
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Tekstikehykset"
+#. TotLy
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:427
+msgctxt "tocindexpage|extended_tip|fromframes"
+msgid "Includes frames in the index."
+msgstr ""
+
#. Bab7X
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:438
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Kuvat"
+#. nDFkz
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:447
+msgctxt "tocindexpage|extended_tip|fromgraphics"
+msgid "Includes graphics in the index."
+msgstr "Hakemisto kattaa kuvat."
+
#. 7f3c4
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:458
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objektit"
+#. V3UVF
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:467
+msgctxt "tocindexpage|extended_tip|fromoles"
+msgid "Includes OLE objects in the index."
+msgstr "Hakemisto kattaa OLE-objektit."
+
#. JnBBj
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:478
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Käytä lähdeluvun tasoa"
+#. LGFpn
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:488
+msgctxt "tocindexpage|extended_tip|uselevel"
+msgid "Indents table, graphic, frame, and OLE object index entries according their place in the chapter heading hierarchy."
+msgstr ""
+
#. fQbwC
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:512
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Lisätyylit"
+#. mDsDx
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:521
+msgctxt "tocindexpage|extended_tip|addstylescb"
+msgid "Includes the paragraph styles that you specify in the Assign Styles dialog as index entries. To select the paragraph styles that you want to include in the index, click the Assign Styles (...) button to the right of this box."
+msgstr ""
+
#. 46GwB
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:533
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Tyylit"
#. MfDSo
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:556
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Määritä tyylit..."
+#. FAiTL
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:567
+msgctxt "tocindexpage|extended_tip|styles"
+msgid "Opens the Assign Styles dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index."
+msgstr ""
+
#. KvQH4
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:607
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Kuvaotsikot"
+#. WZCFT
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
+msgctxt "tocindexpage|extended_tip|captions"
+msgid "Creates index entries from object captions."
+msgstr "Hakemistomerkinnät muodostetaan objektien kuvateksteistä."
+
#. zRKYU
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:628
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektien nimet"
+#. fkvwP
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:638
+msgctxt "tocindexpage|extended_tip|objnames"
+msgid "Creates index entries from object names."
+msgstr "Hakemistomerkinnät luodaan objektien nimistä."
+
#. E8n8f
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:657
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Luokka:"
+#. VADFj
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:673
+msgctxt "tocindexpage|extended_tip|category"
+msgid "Select the caption category that you want to use for the index entries."
+msgstr "Valitaan kuvatekstin luokka, jota käytetään hakemistomerkinnässä."
+
#. 7h4vk
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:686
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Näytä:"
#. AC6q4
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:701
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Lähdeviitteet"
#. CmrdM
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:702
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Luokka ja numero"
#. nvrHf
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:703
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Kuvateksti"
+#. qgQtQ
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:707
+msgctxt "tocindexpage|extended_tip|display"
+msgid "Select the part of the caption that you want to use for index entries."
+msgstr "Valitaan kuvatekstin osat, joita käytetään hakemistomerkinnässä."
+
#. BEnfa
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:737
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Luo"
+#. NZYCR
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:815
+msgctxt "tocindexpage|extended_tip|objects"
+msgid "Select the object types that you want to include in a table of objects."
+msgstr "Valitaan objektiluetteloon tulevat objektityypit."
+
#. zkDMi
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:828
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Luo seuraavista objekteista"
#. zSgta
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:865
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Sulkeet:"
#. Q9AQ5
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:877
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Numeromerkinnät"
+#. TCwcg
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:886
+msgctxt "tocindexpage|extended_tip|numberentries"
+msgid "Automatically numbers the bibliography entries."
+msgstr "Merkintä määrää, että lähdeluettelon merkinnät numeroidaan automaattisesti."
+
#. 7joDj
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:902
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Ei mitään]"
#. hpS6x
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:903
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
#. RcAuE
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:904
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
#. 68zRA
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:905
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
#. fSv5S
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
+#. kcJWC
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
+msgctxt "tocindexpage|extended_tip|brackets"
+msgid "Select the brackets that you want to enclose bibliography entries."
+msgstr "Valitaan lähdeviitteille käytettävät sulkeet."
+
#. 2M3ZW
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:927
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Merkintöjen muotoilu"
#. NGgFZ
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:968
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Yhdistä identtiset merkinnät"
+#. PaLY3
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:977
+msgctxt "tocindexpage|extended_tip|combinesame"
+msgid "Replaces identical index entries with a single entry that lists the page numbers where the entry occurs in the document. For example, the entries \"View 10, View 43\" are combined as \"View 10, 43\"."
+msgstr "Korvataan identtiset hakemistomerkinnät yhdellä merkinnällä, jossa luetellaan sivunumerot, joilla merkintä esiintyy asiakirjassa. Esimerkiksi merkinnät \"Näytä 10, Näytä 43\" yhdistetään muotoon \"Näytä 10, 43\"."
+
#. AVAFm
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:988
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with f. or _ff."
msgstr ""
+#. VJ3ZQ
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
+msgctxt "tocindexpage|extended_tip|useff"
+msgid "Replaces identical index entries that occur on the directly following page(s), with a single entry that lists the first page number and a \"f\" or \"ff\". For example, the entries \"View 10, View 11\" are combined as \"View 10f\", and \"View 10, View 11, View 12\" as \"View 10ff\". Actual appearance depends on the locale setting, but can be overridden with Sort - Language."
+msgstr ""
+
#. Uivc8
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1009
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Yhdistä merkinnällä -"
+#. A3eqB
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1019
+msgctxt "tocindexpage|extended_tip|usedash"
+msgid "Replaces identical index entries that occur on consecutive pages with a single entry and the page range where the entry occurs. For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10-12\"."
+msgstr "Korvataan identtiset hakemistomerkinnät, jotka esiintyvät peräkkäisillä sivuilla yhdellä merkinnällä ja esiintymien sivunumerovälillä. Esimerkiksi merkinnät \"Näytä 10, Näytä 11, Näytä 12\" yhdistetään merkinnäksi \"Näytä 10-12\"."
+
#. GfaT4
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1030
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Kirjainkoon erottelu"
+#. rAwSj
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
+msgctxt "tocindexpage|extended_tip|casesens"
+msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
+msgstr "Muuten identtiset merkinnät erotellaan suur- ja pienaakkosten perusteella. Aasialaisille kielille käytetään erityskäsittelyä."
+
#. e35vc
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1051
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Isot kirjaimet merkintöihin automaattisesti"
+#. CLSou
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1060
+msgctxt "tocindexpage|extended_tip|initcaps"
+msgid "Automatically capitalizes the first letter of an index entry."
+msgstr "Kaikkien hakemistomerkintöjen ensimmäiset kirjaimet tulevat suuraakkosiksi."
+
#. iyXrS
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Avainmerkit erillisinä merkintöinä"
+#. KC5tG
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1080
+msgctxt "tocindexpage|extended_tip|keyasentry"
+msgid "Inserts index keys as separate index entries."
+msgstr "Lisätään avainmerkit erillisinä hakemistomerkintöinä."
+
#. AGmXC
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1091
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Vastaavuustiedosto"
+#. nchGe
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1100
+msgctxt "tocindexpage|extended_tip|fromfile"
+msgid "Automatically marks index entries using a concordance file - a list of words to include in an index."
+msgstr "Merkitään hakemistomerkinnät automaattisesti käyttäen vastaavuustiedostoa - luetteloa sanoista, jotka tulee sisällyttää hakemistoon."
+
#. KoCwE
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1111
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Tiedosto"
+#. bm64R
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1126
+msgctxt "tocindexpage|extended_tip|file"
+msgid "Select, create, or edit a concordance file."
+msgstr "Valitaan, luodaan tai muokataan vastaavuustiedostoa."
+
#. 3F5So
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1143
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Asetukset"
#. cCW7C
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1185
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Kieli:"
+#. r3DqW
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1201
+msgctxt "tocindexpage|extended_tip|lang"
+msgid "Select the language rules to use for sorting the index entries."
+msgstr "Valitaan kieli, jonka sääntöjen mukaan hakemistomerkinnät lajitellaan."
+
#. MKA2M
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1225
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Avainlaji:"
+#. x3YvG
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1241
+msgctxt "tocindexpage|extended_tip|keytype"
+msgid "Select numeric when you want to sort numbers by value, such as in 1, 2, 12. Select alphanumeric, when you want to sort the numbers by character code, such as in 1, 12, 2."
+msgstr "Valitaan numeerinen, kun halutaan lajitella luvut arvojen mukaan, kuten 1, 2, 12. Valitaan aakkosnumeerinen, kun luvut lajitellaan merkkiperustaisesti, kuten 1, 12, 2."
+
#. Ec4gF
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1264
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Lajittele"
@@ -21199,20 +28605,50 @@ msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Kappaletyylit"
+#. ZA2sq
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:119
+msgctxt "tocstylespage|extended_tip|levels"
+msgid "Select the index level that you change the formatting of."
+msgstr "Valitaan hakemistotaso, jonka muotoilua muutetaan."
+
+#. AFBwE
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:163
+msgctxt "tocstylespage|extended_tip|styles"
+msgid "Select the paragraph style that you want to apply to the selected index level, and then click the Assign (<) button."
+msgstr "Valitaan valitulla hakemistotasolla käytettävä kappaletyyli ja napsautetaan sitten Määritä (<) -painiketta."
+
#. LGrjt
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:176
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Oletus"
+#. FW4Qu
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:185
+msgctxt "tocstylespage|extended_tip|default"
+msgid "Resets the formatting of the selected level to the \"Default\" paragraph style."
+msgstr "Palautetaan valitun tason muotoilu \"Oletus\"-kappaletyyliksi."
+
#. Dz6ag
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:196
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Muokkaa"
+#. Y9dVq
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:205
+msgctxt "tocstylespage|extended_tip|edit"
+msgid "Opens the Paragraph Style dialog, where you can modify the selected paragraph style."
+msgstr "Avataan Kappaleen tyyli -valintaikkuna, jossa valittua kappaletyyliä voidaan muuttaa."
+
+#. 4ZM9h
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:224
+msgctxt "tocstylespage|extended_tip|assign"
+msgid "Formats the selected index level with the selected paragraph style."
+msgstr "Valittu hakemistotaso muotoillaan valitulla kappaletyylillä."
+
#. ddB7L
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:247
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Määritys"
@@ -21223,114 +28659,234 @@ msgctxt "viewoptionspage|helplines"
msgid "Helplines _While Moving"
msgstr "_Apuviivat siirrettäessä"
+#. ChPAo
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:53
+msgctxt "extended_tip|helplines"
+msgid "Displays snap lines around the frames when frames are moved. You can select the Helplines While Moving option to show the exact position of the object using lineal values."
+msgstr "Esitetään apuviivat kehyksen ympärillä kehystä siirrettäessä. Valitsemalla Apuviivat siirrettäessä -asetuksen saadaan objektin täsmällinen sijainti näkyville viivaimen arvoina."
+
#. m8nZM
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:65
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:70
msgctxt "viewoptionspage|guideslabel"
msgid "Guides"
msgstr "Näytä apuviivat"
#. UvEJG
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:97
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:102
msgctxt "viewoptionspage|graphics"
msgid "_Images and objects"
msgstr "Kuvat ja objektit"
+#. tBL3z
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:111
+msgctxt "extended_tip|graphics"
+msgid "Specifies whether to display images and objects on the screen."
+msgstr ""
+
#. KFpGX
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:112
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:122
msgctxt "viewoptionspage|tables"
msgid "_Tables"
msgstr "Ta_ulut"
+#. qEwJE
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:131
+msgctxt "extended_tip|tables"
+msgid "Displays the tables contained in your document."
+msgstr "Merkinnällä määrätään, että taulukot näkyvät asiakirjassa."
+
#. jfsAp
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:127
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:142
msgctxt "viewoptionspage|drawings"
msgid "Dra_wings and controls"
msgstr "_Piirrokset ja ohjausobjektit"
+#. 9Rs4o
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:151
+msgctxt "extended_tip|drawings"
+msgid "Displays the drawings and controls contained in your document."
+msgstr "Merkinnällä määrätään, että asiakirjan sisältämät piirrokset ja ohjausobjektit ovat näkyvillä."
+
#. YonUg
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:142
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:162
msgctxt "viewoptionspage|comments"
msgid "_Comments"
msgstr "Huomautukset"
+#. PYSxn
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:171
+msgctxt "extended_tip|comments"
+msgid "Displays comments. Click a comment to edit the text. Use the context menu in Navigator to locate or delete a comment. Use the comments's context menu to delete this comment or all comments or all comments of this author."
+msgstr "Näytetään huomautukset. Tekstiä muokataan napsauttamalla huomautusta. Rakenneselaimen kohdevalikkoa käyttäen paikallistetaan tai poistetaan huomautus. Huomautuksen kohdevalikkoa käytetään kohdistetun huomautuksen, kaikkien huomautusten tai käyttäjän kaikkien huomautusten poistamiseen."
+
#. L6B3t
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:157
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:182
msgctxt "viewoptionspage|resolvedcomments"
msgid "_Resolved comments"
msgstr "Ratkaistut huomautukset"
-#. 6RQCH
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:172
-msgctxt "viewoptionspage|changestooltip"
-msgid "_Tooltips on tracked changes"
-msgstr "Työkaluvihjeet seuratuissa muutoksissa"
-
#. ZPSpD
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:192
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:203
msgctxt "viewoptionspage|displaylabel"
msgid "Display"
msgstr "Näytä"
#. Fs7Ah
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:225
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:236
msgctxt "viewoptionspage|hiddentextfield"
msgid "Hidden te_xt"
msgstr "Piiloteksti"
+#. DSCBT
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:245
+msgctxt "extended_tip|hiddentextfield"
+msgid "Displays text that is hidden by Conditional Text or Hidden Text fields."
+msgstr ""
+
#. Mbfk7
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:240
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:256
msgctxt "viewoptionspage|hiddenparafield"
msgid "Hidden p_aragraphs"
msgstr "Piilotetut kappaleet"
-#. sTXty
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:261
+#. F2W83
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:265
+msgctxt "extended_tip|hiddenparafield"
+msgid "If you have inserted text using the Hidden Paragraph field, specifies whether to display the hidden paragraph."
+msgstr ""
+
+#. hFXBr
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:282
msgctxt "viewoptionspage|fieldslabel"
-msgid "Display fields"
-msgstr "Näytä kentät"
+msgid "Display Fields"
+msgstr ""
+
+#. EiyCk
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:315
+msgctxt "viewoptionspage|changesinmargin"
+msgid "Tracked _deletions in margin"
+msgstr ""
+
+#. vvvb7
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:324
+msgctxt "extended_tip|changesinmargin"
+msgid "Displays text that is hidden by Conditional Text or Hidden Text fields."
+msgstr ""
+
+#. 6RQCH
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:335
+msgctxt "viewoptionspage|changestooltip"
+msgid "_Tooltips on tracked changes"
+msgstr "Työkaluvihjeet seuratuissa muutoksissa"
+
+#. 8no6x
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:356
+msgctxt "viewoptionspage|changeslabel"
+msgid "Display tracked changes"
+msgstr ""
+
+#. CuQqf
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:389
+msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
+msgid "_Show outline content visibility button"
+msgstr ""
+
+#. jQBeb
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:410
+msgctxt "viewoptionspage|outlinelabel"
+msgid "Outline mode"
+msgstr ""
#. YD6TK
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:306
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:455
msgctxt "viewoptionspage|smoothscroll"
msgid "S_mooth scroll"
msgstr "_Tasainen vieritys"
+#. nzZcx
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:464
+msgctxt "extended_tip|smoothscroll"
+msgid "Activates the smooth page scrolling function. "
+msgstr "Valinta aktivoi tasaisen sivun vierityksen toiminnon. "
+
#. Eehog
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:328
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:482
msgctxt "viewoptionspage|vruler"
msgid "Verti_cal ruler"
msgstr "_Pystyviivain"
+#. gBqEr
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:491
+msgctxt "extended_tip|vruler"
+msgid "Displays the vertical ruler. Select the desired measurement unit from the corresponding list."
+msgstr "Valinta näyttää pystyviivaimen. Mieleinen mittayksikkö valitaan vastaavasta luettelosta."
+
+#. VproR
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:507
+msgctxt "extended_tip|hrulercombobox"
+msgid "Displays the horizontal ruler. Select the desired measurement unit from the corresponding list."
+msgstr "Valinta näyttää vaakaviivaimen. Mieleinen mittayksikkö valitaan vastaavasta luettelosta."
+
+#. HAEGG
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:523
+msgctxt "extended_tip|vrulercombobox"
+msgid "Displays the vertical ruler. Select the desired measurement unit from the corresponding list."
+msgstr "Valinta näyttää pystyviivaimen. Mieleinen mittayksikkö valitaan vastaavasta luettelosta."
+
#. P2W3a
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:365
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:534
msgctxt "viewoptionspage|vrulerright"
msgid "Right-aligned"
msgstr "Oikealta tasattu"
+#. f4zhU
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:544
+msgctxt "extended_tip|vrulerright"
+msgid "Aligns the vertical ruler with the right border."
+msgstr "Merkinnällä määrätään pystyviivain oikeaan reunaan."
+
#. d327U
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:384
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:558
msgctxt "viewoptionspage|hruler"
msgid "Hori_zontal ruler"
msgstr "_Vaakaviivain"
+#. 3Xu8U
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:564
+msgctxt "extended_tip|hruler"
+msgid "Displays the horizontal ruler. Select the desired measurement unit from the corresponding list."
+msgstr "Valinta näyttää vaakaviivaimen. Mieleinen mittayksikkö valitaan vastaavasta luettelosta."
+
#. me2R7
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:408
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:587
msgctxt "viewoptionspage|label3"
msgid "View"
msgstr "Näytä"
+#. r6Sp2
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:624
+msgctxt "extended_tip|measureunit"
+msgid "Specifies the Unit for HTML documents."
+msgstr "Määritetään HTML-asiakirjoissa käytettävä Mittayksikkö."
+
#. Jx8xH
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:453
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:637
msgctxt "viewoptionspage|measureunitlabel"
msgid "Measurement unit"
msgstr "Mittayksikkö"
#. 3ES7A
-#: sw/uiconfig/swriter/ui/viewoptionspage.ui:468
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:652
msgctxt "viewoptionspage|settingslabel"
msgid "Settings"
msgstr "Asetukset"
+#. LZT9X
+#: sw/uiconfig/swriter/ui/viewoptionspage.ui:680
+msgctxt "extended_tip|ViewOptionsPage"
+msgid "Defines the default settings for displaying objects in your text documents and also the default settings for the window elements."
+msgstr "Määritetään objektien esittämisen oletusasetukset tekstiasiakirjoille ja myös ikkunan osien oletusasetukset."
+
#. z2dFZ
#: sw/uiconfig/swriter/ui/warndatasourcedialog.ui:7
msgctxt "warndatasourcedialog|WarnDataSourceDialog"
@@ -21369,41 +28925,77 @@ msgid "The following error occurred:"
msgstr "Tapahtui seuraava virhe::"
#. fkAeJ
-#: sw/uiconfig/swriter/ui/watermarkdialog.ui:18
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:17
msgctxt "watermarkdialog|WatermarkDialog"
msgid "Watermark"
msgstr "Vesileima"
#. XJm8B
-#: sw/uiconfig/swriter/ui/watermarkdialog.ui:105
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:101
msgctxt "watermarkdialog|TextLabel"
msgid "Text"
msgstr "Teksti"
+#. DAAyA
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:116
+msgctxt "watermarkdialog|extended_tip|TextInput"
+msgid "Enter the watermark text to be displayed as image in the page background."
+msgstr ""
+
#. Cy5bR
-#: sw/uiconfig/swriter/ui/watermarkdialog.ui:129
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:130
msgctxt "watermarkdialog|FontLabel"
msgid "Font"
msgstr "Fontti"
#. 2GHgf
-#: sw/uiconfig/swriter/ui/watermarkdialog.ui:141
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:142
msgctxt "watermarkdialog|AngleLabel"
msgid "Angle"
msgstr "Kulma"
#. B9uYT
-#: sw/uiconfig/swriter/ui/watermarkdialog.ui:153
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:154
msgctxt "watermarkdialog|TransparencyLabel"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. LGwjR
-#: sw/uiconfig/swriter/ui/watermarkdialog.ui:165
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:166
msgctxt "watermarkdialog|ColorLabel"
msgid "Color"
msgstr "Väri"
+#. CAaVN
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:183
+msgctxt "watermarkdialog|extended_tip|Angle"
+msgid "Select the rotation angle for the watermark. The text will be rotated by this angle in counterclockwise direction."
+msgstr ""
+
+#. 7hEkM
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:201
+msgctxt "watermarkdialog|extended_tip|Transparency"
+msgid "Select the transparency level for the watermark. A 0% value produces an opaque watermark and a value of 100% is totally transparent (invisible)."
+msgstr ""
+
+#. tFkYv
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:223
+msgctxt "watermarkdialog|extended_tip|Color"
+msgid "Select a color from the drop-down box."
+msgstr ""
+
+#. wf7EA
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:245
+msgctxt "watermarkdialog|extended_tip|FontBox"
+msgid "Select the font from the list."
+msgstr ""
+
+#. aYVKV
+#: sw/uiconfig/swriter/ui/watermarkdialog.ui:280
+msgctxt "watermarkdialog|extended_tip|WatermarkDialog"
+msgid "Insert a watermark text in the current page style background."
+msgstr ""
+
#. ekn6L
#: sw/uiconfig/swriter/ui/wordcount-mobile.ui:8
msgctxt "wordcount-mobile|WordCountDialog"
@@ -21463,158 +29055,272 @@ msgctxt "wordcount|WordCountDialog"
msgid "Word Count"
msgstr "Sanamäärä"
+#. sC2dm
+#: sw/uiconfig/swriter/ui/wordcount.ui:34
+msgctxt "wordcount|extended_tip|close"
+msgid "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."
+msgstr ""
+
+#. mqnk8
+#: sw/uiconfig/swriter/ui/wordcount.ui:53
+msgctxt "wordcount|extended_tip|help"
+msgid "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."
+msgstr ""
+
#. 4rhHV
-#: sw/uiconfig/swriter/ui/wordcount.ui:78
+#: sw/uiconfig/swriter/ui/wordcount.ui:85
msgctxt "wordcount|label1"
msgid "Words"
msgstr "Sanat"
#. MjCM7
-#: sw/uiconfig/swriter/ui/wordcount.ui:90
+#: sw/uiconfig/swriter/ui/wordcount.ui:97
msgctxt "wordcount|label2"
msgid "Characters including spaces"
msgstr "Merkit (sis. välit)"
#. cnynW
-#: sw/uiconfig/swriter/ui/wordcount.ui:102
+#: sw/uiconfig/swriter/ui/wordcount.ui:109
msgctxt "wordcount|label3"
msgid "Characters excluding spaces"
msgstr "Merkit (ei välejä)"
#. 2Dc8B
-#: sw/uiconfig/swriter/ui/wordcount.ui:160
+#: sw/uiconfig/swriter/ui/wordcount.ui:167
msgctxt "wordcount|label9"
msgid "Selection"
msgstr "Valinta"
#. Jy4dh
-#: sw/uiconfig/swriter/ui/wordcount.ui:175
+#: sw/uiconfig/swriter/ui/wordcount.ui:182
msgctxt "wordcount|label10"
msgid "Document"
msgstr "Asiakirja"
#. 2tUdA
-#: sw/uiconfig/swriter/ui/wordcount.ui:234
+#: sw/uiconfig/swriter/ui/wordcount.ui:241
msgctxt "wordcount|cjkcharsft"
msgid "Asian characters and Korean syllables"
msgstr "Aasialaiset merkit ja korean tavut"
#. dZmso
-#: sw/uiconfig/swriter/ui/wordcount.ui:276
+#: sw/uiconfig/swriter/ui/wordcount.ui:283
msgctxt "wordcount|standardizedpages"
msgid "Standardized pages"
msgstr "Standardisivut"
+#. mQfaX
+#: sw/uiconfig/swriter/ui/wordcount.ui:342
+msgctxt "wordcount|extended_tip|WordCountDialog"
+msgid "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."
+msgstr ""
+
#. A2jUj
#: sw/uiconfig/swriter/ui/wrapdialog.ui:8
msgctxt "wrapdialog|WrapDialog"
msgid "Wrap"
msgstr "Rivitys"
-#. nANFH
+#. wfdEu
+#: sw/uiconfig/swriter/ui/wrapdialog.ui:91
+msgctxt "wrapdialog|extended_tip|WrapDialog"
+msgid "Specify the way you want text to wrap around an object."
+msgstr ""
+
+#. kvc2L
#: sw/uiconfig/swriter/ui/wrappage.ui:57
msgctxt "wrappage|none"
-msgid "_None"
-msgstr "Ei mitään"
+msgid "_Wrap Off"
+msgstr "Rivitys pois käytöstä"
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
-#. nCu5X
-#: sw/uiconfig/swriter/ui/wrappage.ui:79
+#. VCQDF
+#: sw/uiconfig/swriter/ui/wrappage.ui:84
msgctxt "wrappage|before"
-msgid "Before"
+msgid "Be_fore"
msgstr "Ennen"
-#. KhEhR
-#: sw/uiconfig/swriter/ui/wrappage.ui:101
+#. tE9SC
+#: sw/uiconfig/swriter/ui/wrappage.ui:100
+msgctxt "wrappage|extended_tip|before"
+msgid "Wraps text on the left side of the object if there is enough space."
+msgstr ""
+
+#. g5Tik
+#: sw/uiconfig/swriter/ui/wrappage.ui:111
msgctxt "wrappage|after"
-msgid "After"
+msgid "Aft_er"
msgstr "Jälkeen"
+#. vpZfS
+#: sw/uiconfig/swriter/ui/wrappage.ui:127
+msgctxt "wrappage|extended_tip|after"
+msgid "Wraps text on the right side of the object if there is enough space."
+msgstr ""
+
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:123
+#: sw/uiconfig/swriter/ui/wrappage.ui:138
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "Ympärillä"
+#. t9xTQ
+#: sw/uiconfig/swriter/ui/wrappage.ui:154
+msgctxt "wrappage|extended_tip|parallel"
+msgid "Wraps text on all four sides of the border frame of the object."
+msgstr ""
+
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:145
+#: sw/uiconfig/swriter/ui/wrappage.ui:165
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr "Läpi"
+#. CCnhG
+#: sw/uiconfig/swriter/ui/wrappage.ui:181
+msgctxt "wrappage|extended_tip|through"
+msgid "Places the object in front of the text."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:167
+#: sw/uiconfig/swriter/ui/wrappage.ui:192
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "Optimaalinen"
+#. 4pAFL
+#: sw/uiconfig/swriter/ui/wrappage.ui:208
+msgctxt "wrappage|extended_tip|optimal"
+msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
+msgstr ""
+
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:195
+#: sw/uiconfig/swriter/ui/wrappage.ui:225
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "Asetukset"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:242
+#: sw/uiconfig/swriter/ui/wrappage.ui:272
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr "Vasen:"
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:256
+#: sw/uiconfig/swriter/ui/wrappage.ui:286
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "Oikea:"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:270
+#: sw/uiconfig/swriter/ui/wrappage.ui:300
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "Ylä:"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:284
+#: sw/uiconfig/swriter/ui/wrappage.ui:314
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "Ala:"
+#. AXBwG
+#: sw/uiconfig/swriter/ui/wrappage.ui:333
+msgctxt "wrappage|extended_tip|left"
+msgid "Enter the amount of space that you want between the left edge of the object and the text."
+msgstr "Annetaan objektin vasemman reunan ja tekstin välin suuruus."
+
+#. xChMU
+#: sw/uiconfig/swriter/ui/wrappage.ui:351
+msgctxt "wrappage|extended_tip|right"
+msgid "Enter the amount of space that you want between the right edge of the object and the text."
+msgstr "Annetaan objektin oikeanpuoleisen reunan ja tekstin välin suuruus."
+
+#. p4GHR
+#: sw/uiconfig/swriter/ui/wrappage.ui:369
+msgctxt "wrappage|extended_tip|top"
+msgid "Enter the amount of space that you want between the top edge of the object and the text."
+msgstr "Annetaan objektin yläreunan ja tekstin välin suuruus."
+
+#. GpgCP
+#: sw/uiconfig/swriter/ui/wrappage.ui:387
+msgctxt "wrappage|extended_tip|bottom"
+msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
+msgstr "Annetaan objektin alareunan ja tekstin välin suuruus."
+
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:354
+#: sw/uiconfig/swriter/ui/wrappage.ui:404
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "Välit"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:441
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "Ensimmäinen kappale"
+#. RjfUh
+#: sw/uiconfig/swriter/ui/wrappage.ui:450
+msgctxt "wrappage|extended_tip|anchoronly"
+msgid "Starts a new paragraph below the object after you press Enter."
+msgstr ""
+
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:406
+#: sw/uiconfig/swriter/ui/wrappage.ui:461
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "Taustalla"
+#. 3fHAC
+#: sw/uiconfig/swriter/ui/wrappage.ui:470
+msgctxt "wrappage|extended_tip|transparent"
+msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
+msgstr ""
+
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:421
+#: sw/uiconfig/swriter/ui/wrappage.ui:481
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "Ääriviiva"
+#. rF7PT
+#: sw/uiconfig/swriter/ui/wrappage.ui:490
+msgctxt "wrappage|extended_tip|outline"
+msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
+msgstr ""
+
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:436
+#: sw/uiconfig/swriter/ui/wrappage.ui:501
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr "Vain ulkopuoli"
+#. DNsU2
+#: sw/uiconfig/swriter/ui/wrappage.ui:510
+msgctxt "wrappage|extended_tip|outside"
+msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
+msgstr "Teksti rivitetään objektin ääriviivan mukaisesti, muttei objektin muotojen avoimiin sisäalueisiin."
+
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:451
+#: sw/uiconfig/swriter/ui/wrappage.ui:521
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr "Salli päällekäisyys"
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:472
+#: sw/uiconfig/swriter/ui/wrappage.ui:542
msgctxt "wrappage|label3"
msgid "Options"
msgstr "Asetukset"
+
+#. dsA5z
+#: sw/uiconfig/swriter/ui/wrappage.ui:562
+msgctxt "wrappage|extended_tip|WrapPage"
+msgid "Specify the way you want text to wrap around an object."
+msgstr ""
diff --git a/source/fi/uui/messages.po b/source/fi/uui/messages.po
index 4383e75d6e0..52f0698ed50 100644
--- a/source/fi/uui/messages.po
+++ b/source/fi/uui/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-09-29 12:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/uuimessages/fi/>\n"
@@ -884,6 +884,12 @@ msgctxt "filterselect|FilterSelectDialog"
msgid "Filter Selection"
msgstr "Suodattimen valinta"
+#. HoJXz
+#: uui/uiconfig/ui/filterselect.ui:137
+msgctxt "filterselect|extended_tip|filters"
+msgid "Select the import filter for the file that you want to open."
+msgstr "Valitaan tuontisuodatin avattavalle tiedostolle."
+
#. 8o9Bq
#: uui/uiconfig/ui/logindialog.ui:8
msgctxt "logindialog|LoginDialog"
@@ -1021,17 +1027,41 @@ msgid "Enter Master Password"
msgstr "Anna pääsalasana"
#. REFvG
-#: uui/uiconfig/ui/masterpassworddlg.ui:90
+#: uui/uiconfig/ui/masterpassworddlg.ui:87
msgctxt "masterpassworddlg|label1"
msgid "_Enter password:"
msgstr "Anna salasana:"
+#. bRcP4
+#: uui/uiconfig/ui/masterpassworddlg.ui:109
+msgctxt "masterpassworddlg|extended_tip|password"
+msgid "Type a password. A password is case sensitive."
+msgstr ""
+
+#. Twvfe
+#: uui/uiconfig/ui/masterpassworddlg.ui:138
+msgctxt "extended_tip|MasterPasswordDialog"
+msgid "Enter the master password to continue."
+msgstr "Jatkamista varten annetaan pääsalasana."
+
#. qAMT2
#: uui/uiconfig/ui/password.ui:8
msgctxt "password|PasswordDialog"
msgid "Set Password"
msgstr "Aseta salasana"
+#. XDzCT
+#: uui/uiconfig/ui/password.ui:118
+msgctxt "password|extended_tip|newpassEntry"
+msgid "Type a password. A password is case sensitive."
+msgstr ""
+
+#. QbKd2
+#: uui/uiconfig/ui/password.ui:136
+msgctxt "password|extended_tip|confirmpassEntry"
+msgid "Re-enter the password."
+msgstr "Annetaan sama salasana uudestaan."
+
#. ioiyr
#: uui/uiconfig/ui/setmasterpassworddlg.ui:8
msgctxt "setmasterpassworddlg|SetMasterPasswordDialog"
@@ -1039,29 +1069,47 @@ msgid "Set Master Password"
msgstr "Aseta pääsalasana"
#. eBpmB
-#: uui/uiconfig/ui/setmasterpassworddlg.ui:89
+#: uui/uiconfig/ui/setmasterpassworddlg.ui:86
msgctxt "setmasterpassworddlg|label1"
msgid "Passwords for web connections are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list."
msgstr "WWW-yhteyksien salasanat suojataan pääsalasanalla, joka on annettava kerran jokaisen istunnon aikana, jos %PRODUCTNAME tarvitsee salasanaa tallennettujen salasanojen listalta."
#. G2dce
-#: uui/uiconfig/ui/setmasterpassworddlg.ui:105
+#: uui/uiconfig/ui/setmasterpassworddlg.ui:102
msgctxt "setmasterpassworddlg|label2"
msgid "_Enter password:"
msgstr "Anna salasana:"
+#. AG7BG
+#: uui/uiconfig/ui/setmasterpassworddlg.ui:121
+msgctxt "extended_tip|password1"
+msgid "Enter the master password."
+msgstr ""
+
#. yaAhh
-#: uui/uiconfig/ui/setmasterpassworddlg.ui:133
+#: uui/uiconfig/ui/setmasterpassworddlg.ui:135
msgctxt "setmasterpassworddlg|label3"
msgid "_Reenter password:"
msgstr "Anna salasana uudelleen:"
+#. HjihJ
+#: uui/uiconfig/ui/setmasterpassworddlg.ui:155
+msgctxt "extended_tip|password2"
+msgid "Enter the master password again."
+msgstr ""
+
#. aNzdJ
-#: uui/uiconfig/ui/setmasterpassworddlg.ui:163
+#: uui/uiconfig/ui/setmasterpassworddlg.ui:170
msgctxt "setmasterpassworddlg|label4"
msgid "Caution: If you forget the master password, you will be unable to access any of the information protected by it. Passwords are case sensitive."
msgstr "Varoitus: Jos unohdat pääsalasanasi, et enää pääse käsiksi mihinkään sillä suojattuun tietoon. Salasanoissa kirjainkoolla on merkitystä."
+#. BHvee
+#: uui/uiconfig/ui/setmasterpassworddlg.ui:200
+msgctxt "setmasterpassworddlg|extended_tip|SetMasterPasswordDialog"
+msgid "Assign a master password to protect the access to a saved password."
+msgstr "Määrätään pääsalasana suojaamaan talletettuihin salasanoihin pääsyä."
+
#. dAeLu
#: uui/uiconfig/ui/simplenameclash.ui:8
msgctxt "simplenameclash|SimpleNameClashDialog"
diff --git a/source/fi/vcl/messages.po b/source/fi/vcl/messages.po
index 6eb21839154..3c476cea939 100644
--- a/source/fi/vcl/messages.po
+++ b/source/fi/vcl/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-06 20:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/vclmessages/fi/>\n"
@@ -1204,6 +1204,12 @@ msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Edellinen"
+#. urFMt
+#: vcl/inc/strings.hrc:156
+msgctxt "STR_SEPARATOR"
+msgid "Separator"
+msgstr "Erotin"
+
#. V2EuY
#. To translators: This is the first entry of a sequence of measurement unit names
#: vcl/inc/units.hrc:28
@@ -1955,11 +1961,17 @@ msgid "More Printing Options"
msgstr "Lisää tulostusvalintoja"
#. GrK8G
-#: vcl/uiconfig/ui/moreoptionsdialog.ui:71
+#: vcl/uiconfig/ui/moreoptionsdialog.ui:68
msgctxt "moreoptionsdialog|singlejobs"
msgid "Create separate print jobs for collated output"
msgstr "Luo erilliset tulostustyöt lajitellulle tulosteelle"
+#. fH75E
+#: vcl/uiconfig/ui/moreoptionsdialog.ui:76
+msgctxt "moreoptionsdialog|extended_tip|singlejobs"
+msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead."
+msgstr "Jos asetus on käytössä, luodaan jokaista lajitellun tulostustyön osaa varten erillinen tulostustyö eikä luoteta tulostimen kykyyn lajitella tulosteita."
+
#. DUavz
#: vcl/uiconfig/ui/printdialog.ui:64
msgctxt "printdialog|PrintDialog"
@@ -1967,329 +1979,509 @@ msgid "Print"
msgstr "Tulosta"
#. MLiUb
-#: vcl/uiconfig/ui/printdialog.ui:98
+#: vcl/uiconfig/ui/printdialog.ui:95
msgctxt "printdialog|moreoptions"
msgid "More Options..."
msgstr "Lisää valintoja..."
+#. x6QDA
+#: vcl/uiconfig/ui/printdialog.ui:103
+msgctxt "printdialog|extended_tip|moreoptionsbtn"
+msgid "In the More Options window you can set some additional options for the current print job."
+msgstr ""
+
#. JFBoP
-#: vcl/uiconfig/ui/printdialog.ui:113
+#: vcl/uiconfig/ui/printdialog.ui:115
msgctxt "printdialog|print"
msgid "_Print"
msgstr "Tulosta"
#. M3L4L
-#: vcl/uiconfig/ui/printdialog.ui:172
+#: vcl/uiconfig/ui/printdialog.ui:174
msgctxt "printdialog|printpreview"
msgid "Print preview"
msgstr "Tulostuksen esikatselu"
+#. 67YPm
+#: vcl/uiconfig/ui/printdialog.ui:178
+msgctxt "printdialog|extended_tip|preview"
+msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
+msgstr ""
+
#. Aq6Gv
-#: vcl/uiconfig/ui/printdialog.ui:202
+#: vcl/uiconfig/ui/printdialog.ui:209
msgctxt "printdialog|lastpage"
msgid "Last page"
msgstr "Viimeinen sivu"
#. CZQLF
-#: vcl/uiconfig/ui/printdialog.ui:217
+#: vcl/uiconfig/ui/printdialog.ui:224
msgctxt "printdialog|forward"
msgid "Next page"
msgstr "Seuraava sivu"
+#. emK9r
+#: vcl/uiconfig/ui/printdialog.ui:228
+msgctxt "printdialog|extended_tip|forward"
+msgid "Shows preview of the next page."
+msgstr ""
+
#. yyFVV
-#: vcl/uiconfig/ui/printdialog.ui:231
+#: vcl/uiconfig/ui/printdialog.ui:243
msgctxt "printdialog|totalnumpages"
msgid "/ %n"
msgstr "/ %n"
+#. c7uMG
+#: vcl/uiconfig/ui/printdialog.ui:260
+msgctxt "printdialog|extended_tip|pageedit"
+msgid "Enter the number of page to be shown in the preview."
+msgstr ""
+
#. ebceU
-#: vcl/uiconfig/ui/printdialog.ui:259
+#: vcl/uiconfig/ui/printdialog.ui:276
msgctxt "printdialog|backward"
msgid "Previous page"
msgstr "Edellinen sivu"
+#. uS5Ka
+#: vcl/uiconfig/ui/printdialog.ui:280
+msgctxt "printdialog|extended_tip|backward"
+msgid "Shows preview of the previous page."
+msgstr ""
+
#. SbgFv
-#: vcl/uiconfig/ui/printdialog.ui:274
+#: vcl/uiconfig/ui/printdialog.ui:296
msgctxt "printdialog|firstpage"
msgid "First page"
msgstr "Ensimmäinen sivu"
#. dQEY8
-#: vcl/uiconfig/ui/printdialog.ui:299
+#: vcl/uiconfig/ui/printdialog.ui:321
msgctxt "printdialog|previewbox"
msgid "Pre_view"
msgstr "Esikatselu"
+#. EpB5H
+#: vcl/uiconfig/ui/printdialog.ui:331
+msgctxt "printdialog|extended_tip|previewbox"
+msgid "Turn on or off display of the print preview."
+msgstr ""
+
+#. PD6Aj
+#: vcl/uiconfig/ui/printdialog.ui:412
+msgctxt "printdialog|extended_tip|printersbox"
+msgid "The list box shows the installed printers. Click the printer to use for the current print job. Click the Properties button to change some of the printer properties."
+msgstr ""
+
#. qgQDX
-#: vcl/uiconfig/ui/printdialog.ui:399
+#: vcl/uiconfig/ui/printdialog.ui:431
msgctxt "printdialog|labelstatus"
msgid "Status:"
msgstr "Tila:"
#. dyo2j
-#: vcl/uiconfig/ui/printdialog.ui:414
+#: vcl/uiconfig/ui/printdialog.ui:446
msgctxt "printdialog|status"
msgid "Default Printer"
msgstr "Oletustulostin"
+#. McZgQ
+#: vcl/uiconfig/ui/printdialog.ui:452
+msgctxt "printdialog|extended_tip|status"
+msgid "Shows the availability of the selected printer."
+msgstr ""
+
#. oBACQ
-#: vcl/uiconfig/ui/printdialog.ui:427
+#: vcl/uiconfig/ui/printdialog.ui:464
msgctxt "printdialog|setup"
msgid "Properties..."
msgstr "Ominaisuudet..."
+#. 89CRC
+#: vcl/uiconfig/ui/printdialog.ui:471
+msgctxt "printdialog|extended_tip|setup"
+msgid "Opens the Printer Properties dialog. The printer properties vary according to the printer that you select."
+msgstr ""
+
#. AJGau
-#: vcl/uiconfig/ui/printdialog.ui:455
+#: vcl/uiconfig/ui/printdialog.ui:497
msgctxt "printdialog|labelprinter"
msgid "Printer"
msgstr "Tulostin"
#. AyxGJ
-#: vcl/uiconfig/ui/printdialog.ui:495
+#: vcl/uiconfig/ui/printdialog.ui:537
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
msgstr "_Kaikki sivut"
+#. AQ7Ms
+#: vcl/uiconfig/ui/printdialog.ui:548
+msgctxt "printdialog|extended_tip|rbAllPages"
+msgid "Prints the entire document."
+msgstr "Tulostetaan asiakirja kokonaan."
+
#. pYtbq
-#: vcl/uiconfig/ui/printdialog.ui:513
+#: vcl/uiconfig/ui/printdialog.ui:560
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
msgstr "_Sivut:"
+#. azXfE
+#: vcl/uiconfig/ui/printdialog.ui:572
+msgctxt "printdialog|extended_tip|rbRangePages"
+msgid "Prints only the pages or slides that you specify in the Pages box."
+msgstr "Tulostetaan vain sivut tai diat, jotka on määritelty Sivut-ruudussa."
+
#. 786QC
-#: vcl/uiconfig/ui/printdialog.ui:535
+#: vcl/uiconfig/ui/printdialog.ui:587
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
msgstr "esim.: 1, 3-5, 7, 9"
-#. V3apS
-#: vcl/uiconfig/ui/printdialog.ui:544
-msgctxt "printdialog|rmEvenPages"
-msgid "_Even pages"
-msgstr "_Parilliset sivut"
-
-#. ELsCF
-#: vcl/uiconfig/ui/printdialog.ui:563
-msgctxt "printdialog|rbOddPages"
-msgid "_Odd pages"
-msgstr "Parittomat _sivut"
+#. FTtLK
+#: vcl/uiconfig/ui/printdialog.ui:590
+msgctxt "printdialog|extended_tip|pagerange"
+msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
+msgstr ""
#. Z5kiB
-#: vcl/uiconfig/ui/printdialog.ui:582
+#: vcl/uiconfig/ui/printdialog.ui:601
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
msgstr "_Valinta"
+#. UKYwM
+#: vcl/uiconfig/ui/printdialog.ui:621
+msgctxt "printdialog|includeevenodd"
+msgid "Include:"
+msgstr "Sisällytä:"
+
+#. XmeFL
+#: vcl/uiconfig/ui/printdialog.ui:637
+msgctxt "printdialog|liststore3"
+msgid "Odd and Even Pages"
+msgstr "Parittomat ja parilliset sivut"
+
+#. 49y67
+#: vcl/uiconfig/ui/printdialog.ui:638
+msgctxt "printdialog|liststore3"
+msgid "Odd Pages"
+msgstr "Parittomat sivut"
+
+#. 6CkPE
+#: vcl/uiconfig/ui/printdialog.ui:639
+msgctxt "printdialog|liststore3"
+msgid "Even Pages"
+msgstr "Parilliset sivut"
+
#. wn2kB
-#: vcl/uiconfig/ui/printdialog.ui:618
+#: vcl/uiconfig/ui/printdialog.ui:668
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
msgstr "joista tulostetaan:"
#. Cuc2u
-#: vcl/uiconfig/ui/printdialog.ui:642
+#: vcl/uiconfig/ui/printdialog.ui:692
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
msgstr "Paperin puolet:"
#. SYxRJ
-#: vcl/uiconfig/ui/printdialog.ui:657
+#: vcl/uiconfig/ui/printdialog.ui:707
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
msgstr "Tulosta yhdelle puolelle"
#. hCZPg
-#: vcl/uiconfig/ui/printdialog.ui:658
+#: vcl/uiconfig/ui/printdialog.ui:708
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
msgstr "Tulosta molemmille puolille (pitkä reuna)"
#. iqr9C
-#: vcl/uiconfig/ui/printdialog.ui:659
+#: vcl/uiconfig/ui/printdialog.ui:709
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
msgstr "Tulosta molemmille puolille (lyhyt reuna)"
+#. CKpgL
+#: vcl/uiconfig/ui/printdialog.ui:713
+msgctxt "printdialog|extended_tip|sidesbox"
+msgid "If the printer is capable of duplex printing it's possible to choose between using only one side of the paper or both."
+msgstr ""
+
#. AVv6D
-#: vcl/uiconfig/ui/printdialog.ui:672
+#: vcl/uiconfig/ui/printdialog.ui:727
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
msgstr "Kopioiden _määrä:"
+#. NwD7S
+#: vcl/uiconfig/ui/printdialog.ui:748
+msgctxt "printdialog|extended_tip|copycount"
+msgid "Enter the number of copies that you want to print."
+msgstr "Annetaan tulosteiden lukumäärä."
+
#. BT4nY
-#: vcl/uiconfig/ui/printdialog.ui:702
+#: vcl/uiconfig/ui/printdialog.ui:762
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
msgstr "Järjestys:"
#. vwjVt
-#: vcl/uiconfig/ui/printdialog.ui:714
+#: vcl/uiconfig/ui/printdialog.ui:774
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
msgstr "Tulosta k_äänteisessä järjestyksessä"
+#. svd2Q
+#: vcl/uiconfig/ui/printdialog.ui:783
+msgctxt "printdialog|extended_tip|reverseorder"
+msgid "Check to print pages in reverse order."
+msgstr "Valinta määrää, että sivut tulostetaan käänteisessä järjestyksessä."
+
#. G6QEr
-#: vcl/uiconfig/ui/printdialog.ui:735
+#: vcl/uiconfig/ui/printdialog.ui:800
msgctxt "printdialog|collate"
msgid "_Collate"
msgstr "_Lajittele"
+#. kR6bA
+#: vcl/uiconfig/ui/printdialog.ui:808
+msgctxt "printdialog|extended_tip|collate"
+msgid "Preserves the page order of the original document."
+msgstr "Säilytetään asiakirjan sivujärjestys alkuperäisenä."
+
#. R82MM
-#: vcl/uiconfig/ui/printdialog.ui:775
+#: vcl/uiconfig/ui/printdialog.ui:845
msgctxt "printdialog|rangeexpander"
msgid "_more"
msgstr "lisää"
#. ehfCG
-#: vcl/uiconfig/ui/printdialog.ui:793
+#: vcl/uiconfig/ui/printdialog.ui:863
msgctxt "printdialog|label2"
msgid "Range and Copies"
msgstr "Alue ja kopiot"
#. CBLet
-#: vcl/uiconfig/ui/printdialog.ui:834
+#: vcl/uiconfig/ui/printdialog.ui:904
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
msgstr "Suunta:"
#. U4byk
-#: vcl/uiconfig/ui/printdialog.ui:848
+#: vcl/uiconfig/ui/printdialog.ui:918
msgctxt "printdialog|labelsize"
msgid "Paper size:"
msgstr "Paperin koko:"
#. X9iBj
-#: vcl/uiconfig/ui/printdialog.ui:864
+#: vcl/uiconfig/ui/printdialog.ui:934
msgctxt "printdialog|liststore3"
msgid "Automatic"
msgstr "Automaattinen"
#. vaWZE
-#: vcl/uiconfig/ui/printdialog.ui:865
+#: vcl/uiconfig/ui/printdialog.ui:935
msgctxt "printdialog|liststore3"
msgid "Portrait"
msgstr "Pysty"
#. Qnpje
-#: vcl/uiconfig/ui/printdialog.ui:866
+#: vcl/uiconfig/ui/printdialog.ui:936
msgctxt "printdialog|liststore3"
msgid "Landscape"
msgstr "Vaaka"
+#. PkAo9
+#: vcl/uiconfig/ui/printdialog.ui:940
+msgctxt "printdialog|extended_tip|pageorientationbox"
+msgid "Select the orientation of the paper."
+msgstr "Valitaan tulostusarkin suunta."
+
+#. DSFv2
+#: vcl/uiconfig/ui/printdialog.ui:956
+msgctxt "printdialog|extended_tip|papersizebox"
+msgid "Set the paper size you would like to use. The preview will show how the document would look on a paper of the given size."
+msgstr ""
+
#. EZdsx
-#: vcl/uiconfig/ui/printdialog.ui:909
+#: vcl/uiconfig/ui/printdialog.ui:989
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
msgstr "Sivuja arkille:"
+#. ok8Lw
+#: vcl/uiconfig/ui/printdialog.ui:1002
+msgctxt "printdialog|extended_tip|pagespersheetbtn"
+msgid "Print multiple pages per sheet of paper."
+msgstr "Tulostetaan samalle arkille useita sivuja."
+
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:957
+#: vcl/uiconfig/ui/printdialog.ui:1042
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Mukautettu"
+#. duVEo
+#: vcl/uiconfig/ui/printdialog.ui:1049
+msgctxt "printdialog|extended_tip|pagespersheetbox"
+msgid "Select how many pages to print per sheet of paper."
+msgstr "Valitaan yhdelle arkille tulostettavien sivujen määrä."
+
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:973
+#: vcl/uiconfig/ui/printdialog.ui:1063
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Sivut:"
+#. X8bjE
+#: vcl/uiconfig/ui/printdialog.ui:1081
+msgctxt "printdialog|extended_tip|pagerows"
+msgid "Select number of rows."
+msgstr "Valitaan rivien määrä."
+
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:998
+#: vcl/uiconfig/ui/printdialog.ui:1093
msgctxt "printdialog|by"
msgid "by"
msgstr "kertaa"
+#. Z2EDz
+#: vcl/uiconfig/ui/printdialog.ui:1111
+msgctxt "printdialog|extended_tip|pagecols"
+msgid "Select number of columns."
+msgstr "Valitaan sarakkeiden määrä."
+
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1024
+#: vcl/uiconfig/ui/printdialog.ui:1124
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Marginaali:"
+#. QxE58
+#: vcl/uiconfig/ui/printdialog.ui:1141
+msgctxt "printdialog|extended_tip|pagemarginsb"
+msgid "Select margin between individual pages on each sheet of paper."
+msgstr "Valitaan samalle arkille tulostettavien sivujen välinen marginaali."
+
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1049
+#: vcl/uiconfig/ui/printdialog.ui:1154
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "sivujen välillä"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1061
+#: vcl/uiconfig/ui/printdialog.ui:1166
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Etäisyys:"
+#. EDFnW
+#: vcl/uiconfig/ui/printdialog.ui:1183
+msgctxt "printdialog|extended_tip|sheetmarginsb"
+msgid "Select margin between the printed pages and paper edge."
+msgstr "Valitaan tulostusalueen ja sivun reunan välinen marginaali."
+
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1086
+#: vcl/uiconfig/ui/printdialog.ui:1196
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "arkin reunaan"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1099
+#: vcl/uiconfig/ui/printdialog.ui:1209
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Järjestys:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1114
+#: vcl/uiconfig/ui/printdialog.ui:1224
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "vasemmalta oikealle, sitten alaspäin"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1115
+#: vcl/uiconfig/ui/printdialog.ui:1225
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "ylhäältä alas, sitten oikealle"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1116
+#: vcl/uiconfig/ui/printdialog.ui:1226
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "ylhäältä alas, sitten vasemmalle"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1117
+#: vcl/uiconfig/ui/printdialog.ui:1227
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "oikealta vasemmalle, sitten alaspäin"
+#. DvF8r
+#: vcl/uiconfig/ui/printdialog.ui:1231
+msgctxt "printdialog|extended_tip|orderbox"
+msgid "Select order in which pages are to be printed."
+msgstr "Valitaan sivujen tulostusjärjestys."
+
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1128
+#: vcl/uiconfig/ui/printdialog.ui:1243
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Piirrä reunus jokaisen sivun ympärille"
+#. 8aAGu
+#: vcl/uiconfig/ui/printdialog.ui:1252
+msgctxt "printdialog|extended_tip|bordercb"
+msgid "Check to draw a border around each page."
+msgstr "Jos asetus on käytössä, piirretään reunus jokaisen sivun ympärille."
+
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Esite"
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1172
+#: vcl/uiconfig/ui/printdialog.ui:1292
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Lajittelun esikatselu"
-#. bF4up
-#: vcl/uiconfig/ui/printdialog.ui:1194
+#. dePkB
+#: vcl/uiconfig/ui/printdialog.ui:1297
+msgctxt "printdialog|extended_tip|orderpreview"
+msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
+msgstr ""
+
+#. fCjdq
+#: vcl/uiconfig/ui/printdialog.ui:1319
msgctxt "printdialog|layoutexpander"
-msgid "m_ore"
-msgstr "lisää"
+msgid "M_ore"
+msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1212
+#: vcl/uiconfig/ui/printdialog.ui:1337
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Sivun asettelu"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1235
+#: vcl/uiconfig/ui/printdialog.ui:1360
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Yleiset"
+#. CzGM4
+#: vcl/uiconfig/ui/printdialog.ui:1412
+msgctxt "printdialog|extended_tip|PrintDialog"
+msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
+msgstr "Tulostetaan avoin asiakirja, valinta tai määrätyt sivut. Käsiteltävän asiakirjan tulostusasetuksia voidaan myös säätää."
+
#. 4DiAY
#: vcl/uiconfig/ui/printerdevicepage.ui:34
msgctxt "printerdevicepage|label7"
diff --git a/source/fi/wizards/source/resources.po b/source/fi/wizards/source/resources.po
index b70b7fc8f24..6129be011eb 100644
--- a/source/fi/wizards/source/resources.po
+++ b/source/fi/wizards/source/resources.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/fi/>\n"
@@ -4286,14 +4286,14 @@ msgctxt ""
msgid "Fax"
msgstr "Faksi"
-#. tDe3A
+#. jmiN2
#: resources_en_US.properties
msgctxt ""
"resources_en_US.properties\n"
"CorrespondenceFields_17\n"
"property.text"
-msgid "E-Mail"
-msgstr "Sähköposti"
+msgid "Email"
+msgstr ""
#. w7uK5
#: resources_en_US.properties
diff --git a/source/fi/xmlsecurity/messages.po b/source/fi/xmlsecurity/messages.po
index d83550cad98..6236362b688 100644
--- a/source/fi/xmlsecurity/messages.po
+++ b/source/fi/xmlsecurity/messages.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-10-23 13:37+0200\n"
+"POT-Creation-Date: 2020-10-27 12:31+0100\n"
"PO-Revision-Date: 2020-10-22 22:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/fi/>\n"
@@ -240,44 +240,68 @@ msgctxt "certdetails|value"
msgid "Value"
msgstr "Arvo"
+#. gdF9q
+#: xmlsecurity/uiconfig/ui/certdetails.ui:73
+msgctxt "extended_tip|tablecontainer"
+msgid "The Details page of the View Certificate dialog displays detailed information about the certificate."
+msgstr "Tiedot-lehdellä Näytä varmenne-valintaikkunassa esitetään yksityiskohtaisia tietoja varmenteesta."
+
+#. xcuF8
+#: xmlsecurity/uiconfig/ui/certdetails.ui:101
+msgctxt "extended_tip|valuedetails"
+msgid "Use the value list box to view values and copy them to the clipboard."
+msgstr "Käytetään arvojen luetteloruutua arvojen tarkasteluun ja leikepöydälle kopiointiin."
+
+#. JXgjT
+#: xmlsecurity/uiconfig/ui/certdetails.ui:115
+msgctxt "extended_tip|CertDetails"
+msgid "The Details page of the View Certificate dialog displays detailed information about the certificate."
+msgstr "Tiedot-lehdellä Näytä varmenne-valintaikkunassa esitetään yksityiskohtaisia tietoja varmenteesta."
+
#. UWBqm
#: xmlsecurity/uiconfig/ui/certgeneral.ui:33
msgctxt "certgeneral|label1"
msgid "Certificate Information"
msgstr "Tietoja varmenteesta"
+#. wAmPG
+#: xmlsecurity/uiconfig/ui/certgeneral.ui:46
+msgctxt "extended_tip|box1"
+msgid "The General page of the View Certificate dialog displays basic information about the certificate."
+msgstr "Yleistä-lehdellä Näytä varmenne-valintaikkunassa esitetään perustietoja varmenteesta."
+
#. WzmFd
-#: xmlsecurity/uiconfig/ui/certgeneral.ui:70
+#: xmlsecurity/uiconfig/ui/certgeneral.ui:75
msgctxt "certgeneral|hintnotrust"
msgid "This certificate is validated."
msgstr "Tämä varmenne on tarkistettu."
#. QX65E
-#: xmlsecurity/uiconfig/ui/certgeneral.ui:103
+#: xmlsecurity/uiconfig/ui/certgeneral.ui:108
msgctxt "certgeneral|issued_to"
msgid "Issued to: "
msgstr "Haltija: "
#. UzJpm
-#: xmlsecurity/uiconfig/ui/certgeneral.ui:130
+#: xmlsecurity/uiconfig/ui/certgeneral.ui:135
msgctxt "certgeneral|issued_by"
msgid "Issued by: "
msgstr "Myöntäjä: "
#. tXsEv
-#: xmlsecurity/uiconfig/ui/certgeneral.ui:156
+#: xmlsecurity/uiconfig/ui/certgeneral.ui:161
msgctxt "certgeneral|valid_from"
msgid "Valid from:"
msgstr "Kelvollinen lähtien:"
#. BFs6A
-#: xmlsecurity/uiconfig/ui/certgeneral.ui:188
+#: xmlsecurity/uiconfig/ui/certgeneral.ui:193
msgctxt "certgeneral|privatekey"
msgid "You have a private key that corresponds to this certificate."
msgstr "Hallussasi on tätä varmennetta vastaava yksityinen avain."
#. BvEdb
-#: xmlsecurity/uiconfig/ui/certgeneral.ui:207
+#: xmlsecurity/uiconfig/ui/certgeneral.ui:212
msgctxt "certgeneral|valid_to"
msgid "Valid to:"
msgstr "Kelvollinen saakka:"
@@ -294,24 +318,42 @@ msgctxt "certpage|viewcert"
msgid "View Certificate..."
msgstr "Näytä varmenne..."
+#. Dunt9
+#: xmlsecurity/uiconfig/ui/certpage.ui:92
+msgctxt "extended_tip|signatures"
+msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate."
+msgstr "Varmenteen polku -lehdellä Näytä varmenne-valintaikkunassa esitetään varmenteen sijainti ja tila."
+
#. BC28t
-#: xmlsecurity/uiconfig/ui/certpage.ui:116
+#: xmlsecurity/uiconfig/ui/certpage.ui:121
msgctxt "certpage|label2"
msgid "Certification status"
msgstr "Varmenteen tila"
+#. YTTCA
+#: xmlsecurity/uiconfig/ui/certpage.ui:147
+msgctxt "extended_tip|status"
+msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate."
+msgstr "Varmenteen polku -lehdellä Näytä varmenne-valintaikkunassa esitetään varmenteen sijainti ja tila."
+
#. Cvs6c
-#: xmlsecurity/uiconfig/ui/certpage.ui:159
+#: xmlsecurity/uiconfig/ui/certpage.ui:169
msgctxt "certpage|certok"
msgid "The certificate is OK."
msgstr "Varmenne on kelvollinen."
#. maZhh
-#: xmlsecurity/uiconfig/ui/certpage.ui:171
+#: xmlsecurity/uiconfig/ui/certpage.ui:181
msgctxt "certpage|certnotok"
msgid "The certificate could not be validated."
msgstr "Varmennetta ei saatu tarkistettua."
+#. vAj7M
+#: xmlsecurity/uiconfig/ui/certpage.ui:191
+msgctxt "extended_tip|CertPage"
+msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate."
+msgstr "Varmenteen polku -lehdellä Näytä varmenne-valintaikkunassa esitetään varmenteen sijainti ja tila."
+
#. mWRAG
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:26
msgctxt "digitalsignaturesdialog|DigitalSignaturesDialog"
@@ -319,108 +361,144 @@ msgid "Digital Signatures"
msgstr "Sähköiset allekirjoitukset"
#. Ymmij
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:91
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:88
msgctxt "digitalsignaturesdialog|dochint"
msgid "The following have signed the document content: "
msgstr "Seuraavat ovat allekirjoittaneet asiakirjan sisällön: "
#. GwzVw
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:136
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:132
msgctxt "digitalsignaturesdialog|signed"
msgid "Signed by "
msgstr "Allekirjoittanut "
#. MHrgG
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:149
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:145
#, fuzzy
msgctxt "digitalsignaturesdialog|issued"
msgid "Digital ID issued by "
msgstr "Sähköisen ID:n myöntäjä "
#. DSCb7
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:162
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:158
msgctxt "digitalsignaturesdialog|date"
msgid "Date"
msgstr "Päiväys"
#. bwK7p
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:175
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:171
msgctxt "digitalsignaturesdialog|description"
msgid "Description"
msgstr "Kuvaus"
#. E6Ypi
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:188
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:184
msgctxt "digitalsignaturesdialog|type"
msgid "Signature type"
msgstr "Allekirjoituksen tyyppi"
+#. kAb39
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:195
+msgctxt "digitalsignaturesdialog|extended_tip|signatures"
+msgid "Lists the digital signatures for the current document."
+msgstr "Nykyisen asiakirjan digitaalisten allekirjoitusten luettelo."
+
#. GAMdr
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:214
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:215
msgctxt "digitalsignaturesdialog|view"
msgid "View Certificate..."
msgstr "Näytä varmenne..."
+#. sTgVK
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:221
+msgctxt "digitalsignaturesdialog|extended_tip|view"
+msgid "Opens the View Certificate dialog."
+msgstr "Avataan Katso varmennetta -valintaikkuna."
+
#. uM8mn
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:227
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:233
msgctxt "digitalsignaturesdialog|sign"
msgid "Sign Document..."
msgstr "Allekirjoita asiakirja..."
+#. FsG4K
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:240
+msgctxt "digitalsignaturesdialog|extended_tip|sign"
+msgid "Opens the Select Certificate dialog."
+msgstr "Avataan Valitse varmenne -valintaikkuna."
+
#. hFd4m
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:241
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:252
msgctxt "digitalsignaturesdialog|remove"
msgid "Remove"
msgstr "Poista"
+#. 5DxsA
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:258
+msgctxt "digitalsignaturesdialog|extended_tip|remove"
+msgid "Removes the selected signature from the list. Removes all subsequent signatures as well, in case of PDF."
+msgstr ""
+
#. yQ9ju
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:254
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:270
msgctxt "digitalsignaturesdialog|start_certmanager"
msgid "Start Certificate Manager..."
msgstr "Avaa varmenteiden hallinta..."
#. rRYC3
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:340
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:356
msgctxt "digitalsignaturesdialog|macrohint"
msgid "The following have signed the document macro:"
msgstr "Seuraavat ovat allekirjoittaneet asiakirjan makron:"
#. tYDsR
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:352
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:368
msgctxt "digitalsignaturesdialog|packagehint"
msgid "The following have signed this package:"
msgstr "Seuraavat ovat allekirjoittaneet tämän pakkauksen:"
#. VwmFn
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:370
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:386
msgctxt "digitalsignaturesdialog|validft"
msgid "The signatures in this document are valid"
msgstr "Asiakirjassa olevat allekirjoitukset ovat kelvollisia"
#. KKLGw
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:394
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:410
msgctxt "digitalsignaturesdialog|invalidft"
msgid "The signatures in this document are invalid"
msgstr "Asiakirjassa olevat allekirjoitukset ovat epäkelpoja"
#. xN5UF
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:407
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:423
msgctxt "digitalsignaturesdialog|oldsignatureft"
msgid "At least one signature has problems: the document is only partially signed."
msgstr "Ainakin yhdessä allekirjoituksessa on ongelmia: asiakirja on allekirjoitettu vain osittain."
#. wn85z
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:420
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:436
msgctxt "digitalsignaturesdialog|notvalidatedft"
msgid "At least one signature has problems: the certificate could not be validated."
msgstr "Ainakin yhdessä allekirjoituksessa on ongelmia: varmennetta ei voitu validoida."
#. DFTZB
-#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:469
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:485
msgctxt "digitalsignaturesdialog|adescompliant"
msgid "Use AdES-compliant signature when there is a choice"
msgstr "Käytä AdES-yhteensopivaa allekirjoitusta, kun se on mahdollista"
+#. oBGag
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:495
+msgctxt "digitalsignaturesdialog|extended_tip|adescompliant"
+msgid "Prefers creating XAdES signatures for ODF and OOXML, PAdES signatures for PDF."
+msgstr ""
+
+#. znY8A
+#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:522
+msgctxt "digitalsignaturesdialog|extended_tip|DigitalSignaturesDialog"
+msgid "Adds and removes digital signatures to and from your document. You can also use the dialog to view certificates."
+msgstr "Lisätään ja poistetaan asiakirjojen digitaalisia allekirjoituksia. Valintaikkunaa voi käyttää myös varmenteiden selaamiseen."
+
#. 2qiqv
#: xmlsecurity/uiconfig/ui/macrosecuritydialog.ui:8
msgctxt "macrosecuritydialog|MacroSecurityDialog"
@@ -451,8 +529,14 @@ msgstr ""
"Makrot suoritetaan ilman erillistä hyväksyntää.\n"
"Käytä tätä vain, jos olet varma, että kaikki avattavat asiakirjat ovat turvallisia."
+#. peYqm
+#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:30
+msgctxt "extended_tip|low"
+msgid "A macro can be set to auto-start, and it can perform potentially damaging actions, as for example delete or rename files. This setting is not recommended when you open documents from other authors."
+msgstr "Makro voidaan asettaa automaattisesti käynnistyväksi ja se voi suorittaa mahdollisesti vahingollisia toimintoja, esimerkiksi poistaa tiedostoja tai muuttaa niiden nimiä. Tätä asetusta ei suositella muiden tekemiä asiakirjoja avattaessa."
+
#. F9QCX
-#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:36
+#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:41
msgctxt "securitylevelpage|med"
msgid ""
"_Medium.\n"
@@ -461,8 +545,14 @@ msgstr ""
"Keskitaso.\n"
"Kysytään hyväksyntä ennen ei-luotetuista lähteistä tulevien makrojen suoritusta."
+#. kZB2g
+#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:53
+msgctxt "extended_tip|med"
+msgid "Trusted sources can be set on the Trusted Sources tab page. Signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run. All other macros require your confirmation."
+msgstr "Luotetut tiedostosijainnit voidaan asettaa Luotetut lähteet -välilehdeltä. Vain luotetun lähteen allekirjoitettujen makrojen suorittaminen sallitaan. Tämän lisäksi suorittaminen on sallittu jokaiselle makrolle, joka on luotetusta tiedostosijainnista. Kaikki muut makrot vaativat käyttäjän vahvistuksen."
+
#. 2DyAP
-#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:54
+#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:64
msgctxt "securitylevelpage|high"
msgid ""
"H_igh.\n"
@@ -473,8 +563,14 @@ msgstr ""
"Ainoastaan luotetuista lähteistä peräisin olevat allekirjoitetut makrot suoritetaan.\n"
"Allekirjoittamattomat makrot ovat pois käytöstä."
+#. pbFLt
+#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:77
+msgctxt "extended_tip|high"
+msgid "Trusted sources can be set on the Trusted Sources tab page. Only signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run."
+msgstr "Luotetut tiedostosijainnit voidaan asettaa Luotetut lähteet -välilehdeltä. Vain luotetun lähteen allekirjoitettujen makrojen suorittaminen sallitaan. Tämän lisäksi suorittaminen on sallittu jokaiselle makrolle, joka on luotetusta tiedostosijainnista."
+
#. SDdW5
-#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:73
+#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:88
msgctxt "securitylevelpage|vhigh"
msgid ""
"_Very high.\n"
@@ -485,50 +581,92 @@ msgstr ""
"Ainoastaan luotetuista tiedostosijainneista peräisin olevien makrojen suoritus sallitaan.\n"
"Kaikki muut makrot, allekirjoitetut ja allekirjoittamattomat, ovat poissa käytöstä."
+#. UESj3
+#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:101
+msgctxt "extended_tip|vhigh"
+msgid "Trusted file locations can be set on the Trusted Sources tab page. Any macro from a trusted file location is allowed to run."
+msgstr "Luotetut tiedostosijainnit voidaan asettaa Luotetut lähteet -välilehdeltä. Suorittaminen on sallittua jokaiselle makrolle, joka on luotetusta tiedostosijainnista."
+
#. 5kj8c
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:67
msgctxt "securitytrustpage|viewcert"
msgid "_View..."
msgstr "Näytä..."
+#. c3ydP
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:74
+msgctxt "extended_tip|viewcert"
+msgid "Opens the View Certificate dialog for the selected certificate."
+msgstr "Katso varmennetta -valintaikkuna avataan valitulle varmenteelle."
+
+#. WADee
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:93
+msgctxt "extended_tip|removecert"
+msgid "Removes the selected certificate from the list of trusted certificates."
+msgstr "Poistetaan valittu varmenne luotettujen varmenteiden luettelosta."
+
#. Y7LGC
-#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:124
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:133
msgctxt "securitytrustpage|to"
msgid "Issued to"
msgstr "Haltija"
#. Exx67
-#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:137
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:146
msgctxt "securitytrustpage|by"
msgid "Issued by"
msgstr "Myöntäjä"
#. Pw4BC
-#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:150
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:159
msgctxt "securitytrustpage|date"
msgid "Expiration date"
msgstr "Päättymispäivämäärä"
+#. TGvvm
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:170
+msgctxt "extended_tip|certificates"
+msgid "Lists the trusted certificates."
+msgstr "Luettelossa on luotetut varmenteet."
+
#. xWF8D
-#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:191
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:205
msgctxt "securitytrustpage|label3"
msgid "Trusted Certificates"
msgstr "Luotetut varmenteet"
#. zSbBE
-#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:233
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:247
msgctxt "securitytrustpage|label8"
msgid "Document macros are always executed if they have been opened from one of the following locations."
msgstr "Asiakirjan makrot suoritetaan aina kun ne avataan jostakin seuraavista sijainneista."
#. TKC76
-#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:252
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:266
msgctxt "securitytrustpage|addfile"
msgid "A_dd..."
msgstr "Lisää..."
+#. 9bJoL
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:273
+msgctxt "extended_tip|addfile"
+msgid "Opens a folder selection dialog. Select a folder from which all macros are allowed to execute."
+msgstr "Avataan kansioiden valintaan ikkuna. Valitaan kansio, josta makrojen suorittaminen sallitaan."
+
+#. jSg2w
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:292
+msgctxt "extended_tip|removefile"
+msgid "Removes the selected folder from the list of trusted file locations."
+msgstr "Valittu kansio poistetaan luotettujen tiedostosijaintien luettelosta."
+
+#. yZBo6
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:343
+msgctxt "extended_tip|locations"
+msgid "Document macros are only executed if they have been opened from one of the following locations."
+msgstr "Asiakirjan makrot suoritetaan vain, mikäli ne avataan yhdestä seuraavista sijainneista."
+
#. irXcj
-#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:352
+#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:381
msgctxt "securitytrustpage|label4"
msgid "Trusted File Locations"
msgstr "Luotetut tiedostosijainnit"
@@ -540,59 +678,83 @@ msgid "Select Certificate"
msgstr "Valitse varmenne"
#. 5iWSE
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:105
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:102
msgctxt "selectcertificatedialog|sign"
msgid "Select the certificate you want to use for signing:"
msgstr "Valitse varmenne, jota haluat käyttää allekirjoittamiseen:"
#. jcCAA
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:117
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:114
msgctxt "selectcertificatedialog|encrypt"
msgid "Select the certificate you want to use for encryption:"
msgstr "Valitse varmenne, jota haluat käyttää salaukseen:"
#. 69438
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:150
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:146
msgctxt "selectcertificatedialog|issuedto"
msgid "Issued to"
msgstr "Haltija"
#. qiZ9B
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:163
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:159
msgctxt "selectcertificatedialog|issuedby"
msgid "Issued by"
msgstr "Myöntäjä"
#. 7GEah
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:176
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:172
msgctxt "selectcertificatedialog|type"
msgid "Type"
msgstr "Tyyppi"
#. BCy3f
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:189
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:185
msgctxt "selectcertificatedialog|expiration"
msgid "Expiration date"
msgstr "Päättymispäivämäärä"
#. MtTXb
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:202
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:198
msgctxt "selectcertificatedialog|usage"
msgid "Certificate usage"
msgstr "Varmenteen käyttö"
+#. ANyft
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:209
+msgctxt "selectcertificatedialog|extended_tip|signatures"
+msgid "Select the certificate that you want to digitally sign the current document with."
+msgstr "Valitaan varmenne, jolla avoin asiakirja halutaan digitaalisesti allekirjoittaa."
+
#. uwjMQ
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:221
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:222
msgctxt "selectcertificatedialog|viewcert"
msgid "View Certificate..."
msgstr "Näytä varmenne..."
+#. zqWDZ
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:229
+msgctxt "selectcertificatedialog|extended_tip|viewcert"
+msgid "Opens the View Certificate dialog where you can examine the selected certificate."
+msgstr "Avataan Katso varmennetta -valintaikkuna, jossa valittua varmennetta voidaan tutkia."
+
#. dbgmP
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:241
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:247
msgctxt "selectcertificatedialog|label2"
msgid "Description:"
msgstr "Kuvaus:"
+#. LbnAV
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:262
+msgctxt "selectcertificatedialog|extended_tip|description"
+msgid "Type a purpose for the signature."
+msgstr ""
+
+#. snAQh
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:297
+msgctxt "selectcertificatedialog|extended_tip|SelectCertificateDialog"
+msgid "Select the certificate that you want to digitally sign the current document with."
+msgstr "Valitaan varmenne, jolla avoin asiakirja halutaan digitaalisesti allekirjoittaa."
+
#. nBkSy
#: xmlsecurity/uiconfig/ui/viewcertdialog.ui:8
msgctxt "viewcertdialog|ViewCertDialog"