/* -*- 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 . */ /** * AccEditableText.cpp : Implementation of CUAccCOMApp and DLL registration. */ #include "stdafx.h" #include "AccEditableText.h" #if defined __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wnon-virtual-dtor" #endif #include #if defined __clang__ #pragma clang diagnostic pop #endif #include #include #include #include #include #include #include #include #include #include using namespace com::sun::star::accessibility; using namespace com::sun::star::uno; using namespace com::sun::star::awt; using namespace com::sun::star::beans; /** * Copy a range of text to the clipboard. * * @param startOffset the start offset of copying. * @param endOffset the end offset of copying. * @param success the boolean result to be returned. */ COM_DECLSPEC_NOTHROW STDMETHODIMP CAccEditableText::copyText(long startOffset, long endOffset) { SolarMutexGuard g; ENTER_PROTECTED_BLOCK // #CHECK XInterface# if(!pRXEdtTxt.is()) { return E_FAIL; } if ( GetXInterface()->copyText( startOffset, endOffset ) ) return S_OK; return E_FAIL; LEAVE_PROTECTED_BLOCK } /** * Deletes a range of text. * * @param startOffset the start offset of deleting. * @param endOffset the end offset of deleting. * @param success the boolean result to be returned. */ COM_DECLSPEC_NOTHROW STDMETHODIMP CAccEditableText::deleteText(long startOffset, long endOffset) { SolarMutexGuard g; ENTER_PROTECTED_BLOCK if( !pRXEdtTxt.is() ) return E_FAIL; if( GetXInterface()->deleteText( startOffset, endOffset ) ) return S_OK; return E_FAIL; LEAVE_PROTECTED_BLOCK } /** * Inserts text at a specified offset. * * @param offset the offset of inserting. * @param text the text to be inserted. * @param success the boolean result to be returned. */ COM_DECLSPEC_NOTHROW STDMETHODIMP CAccEditableText::insertText(long offset, BSTR * text) { SolarMutexGuard g; ENTER_PROTECTED_BLOCK if (text == nullptr) return E_INVALIDARG; if( !pRXEdtTxt.is() ) return E_FAIL; OUString ouStr(o3tl::toU(*text)); if( GetXInterface()->insertText( ouStr, offset ) ) return S_OK; return E_FAIL; LEAVE_PROTECTED_BLOCK } /** * Cuts a range of text to the clipboard. * * @param startOffset the start offset of cutting. * @param endOffset the end offset of cutting. * @param success the boolean result to be returned. */ COM_DECLSPEC_NOTHROW STDMETHODIMP CAccEditableText::cutText(long startOffset, long endOffset) { SolarMutexGuard g; ENTER_PROTECTED_BLOCK if( !pRXEdtTxt.is() ) return E_FAIL; if( GetXInterface()->cutText( startOffset, endOffset ) ) return S_OK; return E_FAIL; LEAVE_PROTECTED_BLOCK } /** * Pastes text from clipboard at specified offset. * * @param offset the offset of pasting. * @param success the boolean result to be returned. */ COM_DECLSPEC_NOTHROW STDMETHODIMP CAccEditableText::pasteText(long offset) { SolarMutexGuard g; ENTER_PROTECTED_BLOCK if( !pRXEdtTxt.is() ) return E_FAIL; if( GetXInterface()->pasteText( offset ) ) return S_OK; return E_FAIL; LEAVE_PROTECTED_BLOCK } /** * Replaces range of text with new text. * * @param startOffset the start offset of replacing. * @param endOffset the end offset of replacing. * @param text the replacing text. * @param success the boolean result to be returned. */ COM_DECLSPEC_NOTHROW STDMETHODIMP CAccEditableText::replaceText(long startOffset, long endOffset, BSTR * text) { SolarMutexGuard g; ENTER_PROTECTED_BLOCK // #CHECK# if (text == nullptr) return E_INVALIDARG; if( !pRXEdtTxt.is() ) return E_FAIL; OUString ouStr(o3tl::toU(*text)); if( GetXInterface()->replaceText( startOffset,endOffset, ouStr) ) return S_OK; return E_FAIL; LEAVE_PROTECTED_BLOCK } /** * Sets attributes of range of text. * * @param startOffset the start offset. * @param endOffset the end offset. * @param attributes the attribute text. * @param success the boolean result to be returned. */ COM_DECLSPEC_NOTHROW STDMETHODIMP CAccEditableText::setAttributes(long startOffset, long endOffset, BSTR * attributes) { SolarMutexGuard g; ENTER_PROTECTED_BLOCK // #CHECK# if (attributes == nullptr) return E_INVALIDARG; if( !pRXEdtTxt.is() ) return E_FAIL; OUString ouStr(o3tl::toU(*attributes)); std::vector< OUString > vecAttr; for (sal_Int32 nIndex {0}; nIndex >= 0; ) vecAttr.push_back(ouStr.getToken(0, ';', nIndex)); Sequence< PropertyValue > beanSeq(vecAttr.size()); auto beanSeqRange = asNonConstRange(beanSeq); for(std::vector::size_type i = 0; i < vecAttr.size(); i ++) { OUString attr = vecAttr[i]; sal_Int32 nPos = attr.indexOf(':'); if(nPos > -1) { OUString attrName = attr.copy(0, nPos); OUString attrValue = attr.copy(nPos + 1); beanSeqRange[i].Name = attrName; get_AnyFromOLECHAR(attrName, attrValue, beanSeqRange[i].Value); } } if( GetXInterface()->setAttributes( startOffset,endOffset, beanSeq) ) return S_OK; return E_FAIL; LEAVE_PROTECTED_BLOCK } /** * Convert attributes string to Any type. * * @param ouName the string of attribute name. * @param ouValue the string of attribute value. * @param rAny the Any object to be returned. */ void CAccEditableText::get_AnyFromOLECHAR(std::u16string_view ouName, const OUString &ouValue, Any &rAny) { if(ouName == u"CharBackColor" || ouName == u"CharColor" || ouName == u"ParaAdjust" || ouName == u"ParaFirstLineIndent" || ouName == u"ParaLeftMargin" || ouName == u"ParaRightMargin" || ouName == u"ParaTopMargin" || ouName == u"ParaBottomMargin" || ouName == u"CharFontPitch" ) { // Convert to int. // NOTE: CharFontPitch is not implemented in java file. sal_Int32 nValue = ouValue.toInt32(); rAny.setValue(&nValue, cppu::UnoType::get()); } else if(ouName == u"CharShadowed" || ouName == u"CharContoured" ) { // Convert to boolean. rAny <<= ouValue.toBoolean(); } else if(ouName == u"CharEscapement" || ouName == u"CharStrikeout" || ouName == u"CharUnderline" || ouName == u"CharFontPitch" ) { // Convert to short. short nValue = static_cast(ouValue.toInt32()); rAny.setValue(&nValue, cppu::UnoType::get()); } else if(ouName == u"CharHeight" || ouName == u"CharWeight" ) { // Convert to float. float fValue = ouValue.toFloat(); rAny.setValue(&fValue, cppu::UnoType::get()); } else if(ouName == u"CharFontName" ) { // Convert to string. rAny.setValue(&ouValue, cppu::UnoType::get()); } else if(ouName == u"CharPosture" ) { // Convert to FontSlant. css::awt::FontSlant fontSlant = static_cast(ouValue.toInt32()); rAny.setValue(&fontSlant, cppu::UnoType::get()); } else if(ouName == u"ParaTabStops" ) { // Convert to the Sequence with TabStop element. std::vector< css::style::TabStop > vecTabStop; css::style::TabStop tabStop; OUString ouSubValue; sal_Int32 pos = 0, posComma = 0; do { // Position. pos = ouValue.indexOf("Position=", pos); if(pos != -1) { posComma = ouValue.indexOf(',', pos + 9); // 9 = length of "Position=". if(posComma != -1) { ouSubValue = ouValue.copy(pos + 9, posComma - pos - 9); tabStop.Position = ouSubValue.toInt32(); pos = posComma + 1; // TabAlign. pos = ouValue.indexOf("TabAlign=", pos); if(pos != -1) { posComma = ouValue.indexOf(',', pos + 9); // 9 = length of "TabAlign=". if(posComma != -1) { ouSubValue = ouValue.copy(pos + 9, posComma - pos - 9); tabStop.Alignment = static_cast(ouSubValue.toInt32()); pos = posComma + 1; // DecimalChar. pos = ouValue.indexOf("DecimalChar=", pos); if(pos != -1) { posComma = ouValue.indexOf(',', pos + 11); // 11 = length of "TabAlign=". if(posComma != -1) { ouSubValue = ouValue.copy(pos + 11, posComma - pos - 11); tabStop.DecimalChar = ouSubValue.toChar(); pos = posComma + 1; // FillChar. pos = ouValue.indexOf("FillChar=", pos); if(pos != -1) { posComma = ouValue.indexOf(',', pos + 9); // 9 = length of "TabAlign=". if(posComma != -1) { ouSubValue = ouValue.copy(pos + 9, posComma - pos - 9); tabStop.DecimalChar = ouSubValue.toChar(); pos = posComma + 1; // Complete TabStop element. vecTabStop.push_back(tabStop); } else break; // No match comma. } else break; // No match FillChar. } else break; // No match comma. } else break; // No match DecimalChar. } else break; // No match comma. } else break; // No match TabAlign. } else break; // No match comma. } else break; // No match Position. } while(pos < ouValue.getLength()); // Dump into Sequence. int iSeqLen = (vecTabStop.size() == 0) ? 1 : vecTabStop.size(); Sequence< css::style::TabStop > seqTabStop(iSeqLen); auto pseqTabStop = seqTabStop.getArray(); if(vecTabStop.size() != 0) { // Dump every element. for(int i = 0; i < iSeqLen; i ++) { pseqTabStop[i] = vecTabStop[i]; } } else { // Create default value. pseqTabStop[0].Position = 0; pseqTabStop[0].Alignment = css::style::TabAlign_DEFAULT; pseqTabStop[0].DecimalChar = '.'; pseqTabStop[0].FillChar = ' '; } // Assign to Any object. rAny.setValue(&seqTabStop, cppu::UnoType>::get()); } else if(ouName == u"ParaLineSpacing" ) { // Parse value string. css::style::LineSpacing lineSpacing; OUString ouSubValue; sal_Int32 pos = 0, posComma = 0; pos = ouValue.indexOf("Mode=", pos); if(pos != -1) { posComma = ouValue.indexOf(',', pos + 5); // 5 = length of "Mode=". if(posComma != -1) { ouSubValue = ouValue.copy(pos + 5, posComma - pos - 5); lineSpacing.Mode = static_cast(ouSubValue.toInt32()); pos = posComma + 1; pos = ouValue.indexOf("Height=", pos); if(pos != -1) { ouSubValue = ouValue.copy(pos + 7); lineSpacing.Height = static_cast(ouSubValue.toInt32()); } else { lineSpacing.Height = sal_Int16(100); // Default height. } } else { lineSpacing.Height = sal_Int16(100); // Default height. } } else { // Default Mode and Height. lineSpacing.Mode = sal_Int16(0); lineSpacing.Height = sal_Int16(100); // Default height. } // Convert to Any object. rAny.setValue(&lineSpacing, cppu::UnoType::get()); } else { // Do nothing. sal_Int32 nDefault = 0; rAny.setValue(&nDefault, cppu::UnoType::get()); } } /** * Override of IUNOXWrapper. * * @param pXInterface the pointer of UNO interface. */ COM_DECLSPEC_NOTHROW STDMETHODIMP CAccEditableText::put_XInterface(hyper pXInterface) { // internal IUNOXWrapper - no mutex meeded ENTER_PROTECTED_BLOCK CUNOXWrapper::put_XInterface(pXInterface); //special query. if(pUNOInterface == nullptr) return E_FAIL; Reference pRContext = pUNOInterface->getAccessibleContext(); if( !pRContext.is() ) { return E_FAIL; } Reference pRXI(pRContext,UNO_QUERY); if( !pRXI.is() ) pRXEdtTxt = nullptr; else pRXEdtTxt = pRXI.get(); return S_OK; LEAVE_PROTECTED_BLOCK } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ option value='libreoffice-7-1-7'>libreoffice-7-1-7 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/fi
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-10-27 13:21:31 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-10-27 13:27:38 +0100
commit9e37d57a9ccfcba5925a14f5e29397b2fbf0e261 (patch)
tree923d39d7a6a097629adadf7944ee7f425c1c9a05 /source/fi
parenta8ebe5d6029f6a61ab29ebfbfe331b8646f6ce7d (diff)
update translations for master / 7.1.0.0 alpha1
and force-fix errors using pocheck Change-Id: Ic49ef021112516a473dac6df957ca8e4c27d2369
Diffstat (limited to 'source/fi')
-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